@import url('../../themes/common/color_green/buttons.css');

/* GLOBAL STYLING */
a {
    color: #6d469c;
    text-decoration: none;
}

a:hover {
    color: #4f2d7f;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 10px 0;
    color: #373737;
}

h1 {
    font-size: 1.5em !important;
}

h2 {
    font-size: 1.25em !important;
}

h3 {
    font-size: 1.125em !important;
}

h4 {
    font-size: 1em !important;
}

h5 {
    font-size: .5em !important;
}

h6 {
    font-size: .25em !important;
}

/* FORM STYLING */
input {

}

input[type="text"] {

}

select {

}

textarea {

}

input[type="submit"].danger, button.danger, a.button.danger {
    background: #ef2d22;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ef2d22), color-stop(100%, #618d2d));
    background-image: -webkit-linear-gradient(top, #ef2d22, #AA0B1A);
    background-image: -moz-linear-gradient(top, #ef2d22, #AA0B1A);
    background-image: -o-linear-gradient(top, #ef2d22, #AA0B1A);
    background-image: -ms-linear-gradient(top, #ef2d22, #AA0B1A);
    background-image: linear-gradient(top, #ef2d22, #AA0B1A);
    border: 1px solid #735528;
}

input[type="submit"].danger:hover, button.danger:hover, a.button.danger:hover {
    background: #618d2d;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #618d2d), color-stop(100%, #7da63f));
    background-image: -webkit-linear-gradient(top, #AA0B1A, #ef2d22);
    background-image: -moz-linear-gradient(top, #AA0B1A, #ef2d22);
    background-image: -o-linear-gradient(top, #AA0B1A, #ef2d22);
    background-image: -ms-linear-gradient(top, #AA0B1A, #ef2d22);
    background-image: linear-gradient(top, #AA0B1A, #ef2d22);
    text-decoration: none;
}

.big {
    font-weight: bold;
    font-size: medium;
}

label.block {
    display: block;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.clear-left {
    clear: left;
}

.clear-right {
    clear: right;
}

.empty {
    color: grey;
}

/* FANCY SEARCH */
.fancy-search {

}

.fancy-search label {
    display: inline-block;
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.fancy-search input[type="text"] {
    display: inline-block;
    padding: 5px;
    box-shadow: inset -3px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}

.fancy-search input[type="submit"] {
    display: inline-block;
    margin-left: -1px;
    padding: 4px;
    width: 70px;
}

.fancy-search .search-clear {
    display: inline-block;
    margin-left: 5px;
    padding: 5px 10px;
    border-radius: 50px;
    text-align: center;
}

/* PRODUCTS */
.product {
    position: relative;
    display: block;
    padding: 0 0 1px 60px;
    min-width: 300px;
    overflow: visible;
}

.product .main-image {
    position: absolute;
    top: 0;
    left: 0;
}

.product .main-image img {
    display: block;
    width: 50px;
    height: 50px;
}

.product .info {
    margin: 0 100px 30px 0;
}

.product .name {
    margin: 0 0 5px;
    font-weight: bold;
}

.product .description {
}

.product .price {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 10px;
    font-size: 16px;
}

.product .interface {
    position: absolute;
    bottom: 0;
    right: 0;
}

.product .interface ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product .interface ul li {
    display: inline-block;
}

#store-display .product .interface ul li {
    display: inline-block;
}

/* STEPS BREAKDOWN */
.breakdown {
    margin: 0 0 10px;
    padding: 0;
    background: #ffffff;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    color: #d3d3d3;
    text-align: center;
    list-style: none;
    overflow: hidden;
}

.breakdown li {
    position: relative;
    display: inline-block;
    margin: 0 15px 0 -15px;
    padding: 8px 25px 8px 10px;
    min-width: 100px;
    background: #eaeaea;
    background: -moz-linear-gradient(left, #eaeaea 0%, #ffffff 50%);
    background: -webkit-gradient(linear, left, right, color-stop(0%, #eaeaea), color-stop(50%, #ffffff));
    background: -webkit-linear-gradient(left, #eaeaea 0%, #ffffff 50%);
    background: -o-linear-gradient(left, #eaeaea 0%, #ffffff 50%);
    background: -ms-linear-gradient(left, #eaeaea 0%, #ffffff 50%);
    background: linear-gradient(left, #eaeaea 0%, #ffffff 50%);
    text-align: right;
    text-shadow: 0 1px #ffffff;
}

.breakdown li:before {
    position: absolute;
    top: 0px;
    left: -15px;
    display: inline-block;
    content: close-quote;
    width: 0;
    height: 0;
    border-top: 15px solid #eaeaea;
    border-right: none;
    border-bottom: 15px solid #eaeaea;
    border-left: 15px solid transparent;
}

.breakdown li.current {
    background: #6d469c;
    color: #ffffff;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.breakdown li.current:before {
    position: absolute;
    top: 0px;
    left: -15px;
    display: inline-block;
    content: close-quote;
    width: 0;
    height: 0;
    border-top: 15px solid #6d469c;
    border-right: none;
    border-bottom: 15px solid #6d469c;
    border-left: 15px solid transparent;
}

.breakdown li a {

}

.breakdown li a:hover {

}

/* ERROR LIST */
.errorlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.errorlist li {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 5px;
    background: #FBB3AD;
    border: 1px solid #A60700;
    border-radius: 3px;
    color: #A60700;
}

/* TOKEN */
.token {
    position: relative;
    display: block;
    margin: 0 0 5px;
    padding: 5px;
    min-width: 196px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px #6B0B0F;
    text-decoration: none;
    z-index: 2;
}

.token:hover {
    background: #1b5d8b;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1b5d8b), color-stop(100%, #2d7ca7));
    background-image: -webkit-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -moz-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -o-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -ms-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: linear-gradient(top, #1b5d8b, #2d7ca7);
}

.token:active {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
}

.token .name {
    float: left;
    padding: 2px 10px;
}

/* NEW PARTICIPANT TOKEN */
.participant.token {
    position: relative;
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

.drop .participant.token {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.participant.token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.participant.token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.participant.token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
}

.participant.token .name {
    float: left;
    padding: 2px 10px;
}

.participant.token .edit {
    float: right;
    padding: 0 5px;
}

.participant.token .edit a {
    color: #ffffff;
    font-size: 24px;
    line-height: 20px;
}

.participant.token .edit a:hover {
    color: #d8d8d8;
}

/* PROFILE TOKEN */
.profile-token {
    position: relative;
    display: block;
    margin: 0 0 5px;
    padding: 5px;
    min-width: 196px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px #6B0B0F;
    text-decoration: none;
    z-index: 2;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    overflow: hidden;
}

.profile-token:not(.ui-draggable-dragging) {
    cursor: -webkit-grab;
}

.profile-token:hover {
    background: #1b5d8b;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #1b5d8b), color-stop(100%, #2d7ca7));
    background-image: -webkit-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -moz-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -o-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: -ms-linear-gradient(top, #1b5d8b, #2d7ca7);
    background-image: linear-gradient(top, #1b5d8b, #2d7ca7);
}

.profile-token:active {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.profile-token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.profile-token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.profile-token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.profile-token .name {
    float: left;
    padding: 2px 10px;
    float: left;
    width: 150px;
    margin-top: -2px;
    height: 23px;
    overflow: hidden;
}

/* IDENTITY TOKEN */
.identity-token {
    position: relative;
    display: block;
    margin: 0 0 5px;
    padding: 5px;
    min-width: 196px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px #6B0B0F;
    text-decoration: none;
    z-index: 2;
}

.identity-token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.identity-token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.identity-token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
}

.identity-token .name {
    float: left;
    padding: 2px 0;
    min-width: 150px;
}

.identity-token .email {
    float: left;
    padding: 2px 10px;
}

.identity-token .load {
    position: absolute;
    top: 0;
    right: 0;
}

.identity-token .load a {
    display: block;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 26px;
    text-shadow: 0 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    vertical-align: middle;
}

/* PARTICIPANT TOKEN */
.participant-token {
    position: relative;
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px #6B0B0F;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

.drop .participant-token {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.participant-token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.participant-token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.participant-token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
}

.participant-token .name {
    float: left;
    padding: 2px 10px;
}

/* ORGANIZATION TOKEN */
.org-token {
    position: relative;
    display: block;
    padding: 5px;
    margin-bottom: 5px;
    height: 20px;
    background: #2d7ca7;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2d7ca7), color-stop(100%, #1b5d8b));
    background-image: -webkit-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -moz-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -o-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: -ms-linear-gradient(top, #2d7ca7, #1b5d8b);
    background-image: linear-gradient(top, #2d7ca7, #1b5d8b);
    border: 1px solid #06395c;
    border-radius: 5px;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 -1px #6B0B0F;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

.drop .org-token {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.org-token.disabled {
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset -1px 1px #aaaaaa;
    -moz-box-shadow: inset -1px 1px #aaaaaa;
    box-shadow: inset -1px 1px #aaaaaa;
    color: #fff;
    text-shadow: 0 -1px #404040;
    border: 1px solid #404040;
}

.org-token .gravatar {
    float: left;
    width: 28px;
    height: 28px;
}

.org-token .gravatar img {
    display: block;
    width: 20px;
    height: 20px;
}

.org-token .name {
    float: left;
    padding: 2px 10px;
}

.org-token .email {
    float: left;
    padding: 2px 10px;
}

.org-token .expand {
    position: absolute;
    top: 0;
    right: 0;
}

.org-token .expand a {
    display: block;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 26px;
    text-shadow: 0 2px rgba(0, 0, 0, 0.3);
    text-align: center;
    vertical-align: middle;
}

.org-token .status {
    position: absolute;
    top: 0;
    right: 30px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
}

.org-token.ready .status {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/status-complete.png) no-repeat center;
}

.org-token.warning .status
.org-token.critical .status

/* TOKEN STATUS */
  .participant-token .status {
    float: right;
    margin: -1px 30px 0 0;
    height: 22px;
    width: 22px;
}

.participant.token .status {
    float: right;
    margin: -1px 30px 0 0;
    height: 22px;
    width: 22px;
}

.complete .status {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/status-complete.png) no-repeat;
}

.incomplete .status {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/status-incomplete.png) no-repeat;
}

.invalid .status {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/status-invalid.png) no-repeat;
}

.locked .status {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/status-locked.png) no-repeat;
}

/* TOKEN INFO PANE */
.token-info {
    position: relative;
    clear: both;
    top: -15px;
    margin: 0 0 -10px 0;
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid #D3D3D3;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: auto;
    z-index: 0;
}

.token-info .save {
    text-align: center;
}

.token-info .remove {
    margin-right: 10px;
    text-align: center;
}

.token-info hr {
    margin: 0 -10px 5px;
    border: none;
    border-top: 1px solid #D3D3D3;
}

/* TOKEN BUTTON */
.token-button {
    position: relative;
    float: right;
    display: block;
    margin-top: -37px;
    padding: 0;
    width: 30px;
    height: 30px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
}

.token-button:hover {
}

.token-button .text {
    display: block;
    margin: 0;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
}

.token-button.opened .text {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/min-max.png) no-repeat top;
}

.token-button.closed .text {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/min-max.png) no-repeat bottom;
}

/* TOKEN GRIP */
.token-grip {
    position: relative;
    float: right;
    display: block;
    margin: -5px;
    padding: 0 2px;
    width: 19px;
    height: 30px;
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/grip.png) no-repeat;
}

.grip-space {
    position: relative;
    float: right;
    display: block;
    margin: -5px;
    padding: 0 2px;
    width: 19px;
    height: 30px;
}

/* EMPTY TOKEN */
.empty-token {
    position: relative;
    display: block;
    margin: 0 0 5px;
    padding: 5px;
    height: 20px;
    background: #f7f7f7;
    border: 1px solid #D3D3D3;
    border-radius: 3px;
    color: #585555;
    text-decoration: none;
    z-index: 1;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

.empty-token .name {
    float: left;
    padding: 2px 10px;
}

.empty-token .button {
    float: left;
    display: block;
    margin: -1px 0 0 0;
    width: 23px;
    height: 22px;
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/add-button.png) no-repeat top;
    text-indent: -9999px;
}

.empty-token .button:hover {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/add-button.png) no-repeat bottom;
}

/* SOCIAL MEDIA*/
/****************************************** Core */
.accordion {
    text-align: left;
    font: 'Helvetica Neue', Verdana, Arial, sans-serif;
}

.accordion > ol {
    position: relative;
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.accordion .slide > h2 {
    color: black;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
}

.accordion .slide > h2 span {
    display: block;
    width: 30px;
    height: 30px;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.accordion .slide > h2 b {
    display: inline-block;
    position: absolute;
}

.accordion .slide > h2:hover {
    cursor: pointer;
}

.accordion .slide > div {
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
    overflow: hidden;
    background: white;
}

.accordion noscript p {
    padding: 10px;
    margin: 0;
    background: white;
}

/****************************************** Basic */
.basic .slide > h2 {
    background: #333;
    color: white;
    line-height: 225%;
}

/****************************************** 2Mevents */
.social-events {
    padding: 0;
    background: #7da63f;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7da63f), color-stop(100%, #618d2d));
    background-image: -webkit-linear-gradient(top, #7da63f, #618d2d);
    background-image: -moz-linear-gradient(top, #7da63f, #618d2d);
    background-image: -o-linear-gradient(top, #7da63f, #618d2d);
    background-image: -ms-linear-gradient(top, #7da63f, #618d2d);
    background-image: linear-gradient(top, #7da63f, #618d2d);
    border: 1px solid #557328;
    border-left: none;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
}

.social-events .slide > h2 span.facebook {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/social-buttons.png) no-repeat center;
}

.social-events .slide > h2 span.twitter {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/social-buttons.png) no-repeat top;
}

.social-events .slide > h2 span.google {
    background: url(https://static.ccnbikes.com/15-09-2025--15-12-04/static/images/social-buttons.png) no-repeat bottom;
}

.social-events .slide > h2 {
    margin: 0;
    padding: 0;
    background: #7da63f;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7da63f), color-stop(100%, #618d2d));
    background-image: -webkit-linear-gradient(top, #7da63f, #618d2d);
    background-image: -moz-linear-gradient(top, #7da63f, #618d2d);
    background-image: -o-linear-gradient(top, #7da63f, #618d2d);
    background-image: -ms-linear-gradient(top, #7da63f, #618d2d);
    background-image: linear-gradient(top, #7da63f, #618d2d);
    border-right: 1px solid #557328;
    border-radius: 0;
    -webkit-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -ms-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    -o-box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset -1px 1px 0 rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
}

.social-events .slide > h2 span {
    display: block;
    margin: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    border-left: 1px solid #557328;
    text-indent: -9999px;
}

.social-events .slide > h2 b {
    background: #353535;
    color: #030303;
    text-shadow: -1px 1px 0 #5b5b5b;
}

.social-events .slide > h2.selected, .social-events .slide > h2.selected:hover {
}

.social-events .slide > h2.selected b {
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.social-events .slide > div {
    padding: 7px;
    background: #585555;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #797676), color-stop(100%, #585555));
    background-image: -webkit-linear-gradient(top, #797676, #585555);
    background-image: -moz-linear-gradient(top, #797676, #585555);
    background-image: -o-linear-gradient(top, #797676, #585555);
    background-image: -ms-linear-gradient(top, #797676, #585555);
    background-image: linear-gradient(top, #797676, #585555);
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.social-events .slide > div a {
    padding: 7px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.report_type_header {
    display: inline-block;
    width: 260px;
}