/*Radio Buttons*/
.choose-acc-type {
    width: 100%;
}

.choose-acc-type input[type=radio] {
    visibility: hidden;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

label.btn.acc-type {
    background-color: transparent;
    width: 30%;
    margin-left: 5%;
    border-radius: 5px !important;
    line-height: 30px;
    border: 1px solid #292929;
    float: left;
    margin-bottom: 20px;
}

.choose-acc-type input[type=radio]:checked + .btn {
    color: #ffffff;
    background-color: #292929;
    background-image: none;
    outline: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.choose-acc-type > input:first-child + .btn {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.choose-acc-type > input:first-child + .btn.large {
    margin-left: 0;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.choose-acc-type > .btn {
    margin-left: -1px;
}

/*------------------------------------------------------------ RADIO BUTTONS END--------------*/

/*------------------------------------------------------------ Switcher ----------------------*/
input[type="checkbox"].ios-switch {
    position: absolute;
    opacity: 0; }

/* Normal Track */
input[type="checkbox"].ios-switch + div {
    display: block;
    vertical-align: middle;
    width: 40px;
    height: 20px;
    border: 1px solid #363636;
    border-radius: 999px;
    background-color: #363636;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0 #363636;
    margin: 10px auto;
}
#sign-in-form input.ios-switch[type="checkbox"] + div,
#edit-shared-access-form input.ios-switch[type="checkbox"] + div,
#add-shared-access-form input.ios-switch[type="checkbox"] + div,
#upgrade-affiliate input.ios-switch[type="checkbox"] + div,
#incoming-pendings input.ios-switch[type="checkbox"] + div,
#settings input.ios-switch[type="checkbox"] + div{
    display: inline-block;
    margin: 10px 15px 10px 0;
}
/* Checked Track (Blue) */
input[type="checkbox"].ios-switch:checked + div {
    width: 40px;
    background-position: 0 0;
    background-color: #f5c808;
    border: 1px solid #f5c808;
    box-shadow: inset 0 0 0 10px #f5c808; }

/* Normal Knob */
input[type="checkbox"].ios-switch + div > div {
    float: left;
    width: 18px;
    height: 18px;
    border-radius: inherit;
    background: #f5c808;
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    margin-top: 0;
    margin-left: 1px; }

/* Checked Knob (Blue Style) */
input[type="checkbox"].ios-switch:checked + div > div {
    -webkit-transform: translate3d(19px, 0, 0);
    -moz-transform: translate3d(19px, 0, 0);
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px #f5c808;
}


/********************* ----------- VIOLET -------************************/
.checkbox.violet input[type="checkbox"].ios-switch {
    position: absolute;
    opacity: 0; }

/* Normal Track */
.checkbox.violet input[type="checkbox"].ios-switch + div {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 20px;
    border: 1px solid #604473;
    border-radius: 999px;
    background-color: #604473;
    -webkit-transition-duration: .4s;
    -webkit-transition-property: background-color, box-shadow;
    box-shadow: inset 0 0 0 0 #363636;
    margin: 10px 15px 10px 0; }

/* Checked Track (Blue) */
.checkbox.violet input[type="checkbox"].ios-switch:checked + div {
    width: 40px;
    background-position: 0 0;
    background-color: #f5c808;
    border: 1px solid #f5c808;
    box-shadow: inset 0 0 0 10px #f5c808; }

/* Normal Knob */
.checkbox.violet input[type="checkbox"].ios-switch + div > div {
    float: left;
    width: 18px;
    height: 18px;
    border-radius: inherit;
    background: #fff;
    -webkit-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -webkit-transition-duration: 0.4s;
    -webkit-transition-property: -webkit-transform, background-color, box-shadow;
    -moz-transition-timing-function: cubic-bezier(0.54, 1.85, 0.5, 1);
    -moz-transition-duration: 0.4s;
    -moz-transition-property: transform, background-color;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    margin-top: 0;
    margin-left: 1px; }

/* Checked Knob (Blue Style) */
.checkbox.violet input[type="checkbox"].ios-switch:checked + div > div {
    -webkit-transform: translate3d(19px, 0, 0);
    -moz-transform: translate3d(19px, 0, 0);
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px #f5c808;
}
/*------------------------------------------------------------ Switcher ----------------------*/

input {
    border-radius: 5px;
    border: none;
    padding-left: 15px;
    font-size: 14px;
    line-height: 40px;
    outline: none;
}

input.white{
    color: #6e6e6c;
    background: #ffffff;
    float: left;

}
input.white.event-name{
    background-image: url("../images/form-components/input-event-name.png");
    background-repeat: no-repeat;
    background-position: 10px 50%;
    padding-left: 35px;
    width: 330px;
    line-height: 35px;
}
input.white.event-location{
    background-image: url("../images/form-components/input-event-location.png");
    background-repeat: no-repeat;
    background-position: 10px 50%;
    padding-left: 35px;
    width: 330px;
    line-height: 35px;
}
input.white.event-date{
    background-image: url("../images/form-components/input-event-date.png");
    background-repeat: no-repeat;
    background-position: 10px 50%;
    padding-left: 35px;
    max-width: 190px;
    line-height: 35px;
}
input.gray{
    background: #363636;
    color: #818181;
    width: 100%;
    outline: none;
}
input.gray:-webkit-autofill{
    -webkit-text-fill-color: #818181;
    -webkit-box-shadow: 0 0 0 1000px #363636 inset;
}
input.gray.email{
    background-image: url("../images/form-components/input-email.png");
    background-repeat: no-repeat;
    background-position: 2px 50%;
    padding-left: 45px;
}
.gray.email-wrapper {
    background-image: url("../images/form-components/input-email.png");
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-position: 2px 50%;
    position: relative;
    left: 0;
    right: auto;
    top: -42px;
}

input.gray.password{
    background-image: url("../images/form-components/input-password.png");
    background-repeat: no-repeat;
    background-position: 2px 50%;
    padding-left: 45px;
}
.gray.password-wrapper {
    background-image: url("../images/form-components/input-password.png");
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-position: 2px 50%;
    position: relative;
    left: 0;
    right: auto;
    top: -42px;
}
div.preinput.gray.password {
    position: absolute;
    width: 42px;
    height: 42px;
    background: url("../images/form-components/input-password.png");
    background-repeat: no-repeat;
    background-position: 50%;
    z-index: 2;
}
input.gray.code{
    padding-left: 45px;
}
input.black{
    width: 100%;
    background: #2b2b2b;
    color: #f5c808;
}
input.black::-webkit-input-placeholder,
input.black::-moz-placeholder,
input.black:-moz-placeholder,
input.black:-ms-input-placeholder{
    color: #f5c808;
}
input.black:-webkit-autofill{
    -webkit-text-fill-color: #f5c808;
    -webkit-box-shadow: 0 0 0px 1000px #2b2b2b inset;
}

input.white-border{
    color: #6e6e6c;
    background: #ffffff;
    line-height: 35px;
    border: 1px solid RGBA(133, 128, 135, 0.35);
    border-radius: 3px;
    width: 100%;
}
input.white-border:-webkit-autofill{
    -webkit-text-fill-color: #6e6e6c;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}
textarea.white-border{
    color: #6e6e6c;
    background: #ffffff;
    border: 1px solid RGBA(133, 128, 135, 0.35);
    border-radius: 15px;
    resize: none;
    padding-left: 15px;
    width: 100%;
    padding-top: 10px;
    outline: none;
}
textarea.white-border:-webkit-autofill{
    -webkit-text-fill-color: #6e6e6c;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}


.checkbox label{
    padding-left: 0;
}

/******************* DETAILED SEARCH ************/
a.detailed-search{
    background: #fff url("../images/buttons/detailed-search.png") no-repeat 50%;
    height: 37px;
    width: 37px;
    display: inline-block;
    float: left;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
}

/***************** MULTI SELECT **************/
.bootstrap-select ul li:before{
    display: none;
}
.bootstrap-select .btn.dropdown-toggle.btn-default {
    background: #2b2b2b;
    border: none;
    border-radius: 5px;
    color: #f5c808;
    line-height: 23px;
    padding-left: 15px;
    width: 280px;
    padding-right: 35px;
}
.bootstrap-select .btn.dropdown-toggle.btn-default .bs-caret{
    background: url("../images/buttons/arrow-down-yellow.png");
    width: 13px;
    height: 7px;
    display: inline-block;
    background-size: cover;
}
.bootstrap-select .btn.dropdown-toggle.btn-default .bs-caret > span {
    display: none;
}
.bootstrap-select.open .btn.dropdown-toggle.btn-default {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.bootstrap-select .dropdown-menu.open {
    background: #2b2b2b;
    width: 100%;
    top: 80%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 0;
    box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li a {
    background: #2A2A2A;
    color: #fff;
    line-height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.bootstrap-select.btn-group .dropdown-menu li:last-child a {
    border-bottom: 0;
}
.bootstrap-select.btn-group .dropdown-menu li.selected a {
    color: #f5c808;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    margin-top: 11px;
}

body.checkout .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn){
    width: 100%;
}
body.checkout .bootstrap-select .btn.dropdown-toggle.btn-default{
    color: #6e6e6c;
    background: #ffffff;
    line-height: 24px;
    border: 1px solid RGBA(133, 128, 135, 0.35);
    border-radius: 3px;
    width: 100%;
}
body.checkout .bootstrap-select.open .btn.dropdown-toggle.btn-default {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
body.checkout .bootstrap-select .dropdown-menu.open {
    background: #fff;
    border: 1px solid RGBA(133, 128, 135, 0.35);
    top: 93%;
}
body.checkout .bootstrap-select.btn-group .dropdown-menu li a {
    background: #FFF;
    color: #6e6e6c;
    border-bottom: 1px solid rgba(110, 110, 108, 0.3);
}
body.checkout .bootstrap-select.btn-group .dropdown-menu li.selected a {
    color: #f5c808;
}
body.checkout .bootstrap-select.btn-group .dropdown-menu li:last-child a {
    border-bottom: 0;
}
.uploader,
.uploader input[type="file"],
.uploader .filename{
    border-radius: 5px;
    height: 39px;
}
.uploader .filename {
    padding: 8px 12px;
}
.uploader .action {
    height: 39px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.decline-form {
    position: absolute;
    bottom: 20px;
    right: 25%;
}
.decline-form .form-group {
    display: inline-block;
    margin-right: 25px;
}
#sign-in-form .form-group,
#register-form .form-group,
#password-reset-form-2 .form-group{
    height: 42px;
}
#register-form .choose-acc-type.form-group.clearfix {
    height: 50px;
}

.input-group-addon {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#upgrade-affiliate #cke_10,
#upgrade-affiliate #cke_18,
#upgrade-affiliate #cke_20,
#upgrade-affiliate #cke_24,
#upgrade-affiliate #cke_29,
#upgrade-affiliate #cke_39,
#upgrade-affiliate #cke_41 {
    display: none;
}

span.violet-checkbox-target {
    font-family: FontAwesome; /* use an icon font for the checkbox */
}
input[type='checkbox'].violet-checkbox-input{
    position: relative;
    left: -999em; /* hide the real checkbox */
}

input[type='checkbox'].violet-checkbox-input + span.violet-checkbox-target:after {
    content: "\f096"; /* In fontawesome, is an open square (fa-square-o) */
    font-size: 17px;
}
input[type='checkbox'].violet-checkbox-input:checked + span.violet-checkbox-target:after {
    content: "\f046"; /* fontawesome checked box (fa-check-square-o) */
}
span.violet-checkbox {
    display: inline-block;
    padding: 5px 10px 0;
    border-right: 1px solid rgba(128, 128, 128, 0.49);
}
span.violet-checkbox:last-child{
    border-right: 0 solid;
    margin-right: 25px;
}
label.violet-checkbox-label{
    color: #000000;
    line-height: 20px;
}
label.violet-checkbox-label span.violet-checkbox-target{
    color: #4f365b;
    font-size: 20px;
    vertical-align: bottom;
}

#search-jobs input.inline-2-inputs:last-child {
    margin-left: 0;
}
textarea.form-control {
    resize: none;
    outline: none;
}
.uploader.bg-warning {
    background-color: #6d5379;
    border-color: #6d5379;
    color: #fff;
}
form#search-notifications span.violet-checkbox {
    min-width: 100px;
}