
/*-- Custom radio buttons css --*/

.radio {
    padding-left: 5px;
}

    .radio label {
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }

        .radio label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #5bbe97;
            border-radius: 50%;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out;
            transition: border 0.15s ease-in-out;
        }

        .radio label::after {
            display: inline-block;
            position: absolute;
            content: " ";
            width: 11px;
            height: 11px;
            left: 3px;
            top: 3px;
            margin-left: -20px;
            border-radius: 50%;
            background-color: #555555;
            -webkit-transform: scale(0, 0);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
        }

    .radio input[type="radio"] {
        opacity: 0;
        z-index: 1;
    }

        .radio input[type="radio"]:focus + label::before {
            /*outline: thin dotted;
                    outline: 5px auto -webkit-focus-ring-color;*/
            outline-offset: -2px;
        }

        .radio input[type="radio"]:checked + label::after {
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        .radio input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .radio input[type="radio"]:disabled + label::before {
                cursor: not-allowed;
            }

    .radio.radio-inline {
        margin-top: 0;
    }

.radio-primary input[type="radio"] + label::after {
    background-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #337ab7;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bbe97;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bbe97;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bbe97;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}


input[type="radio"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}

input[type="radio"] .styled:checked + label::before {
    color: #fff;
}

input[type="radio"] .styled:checked + label::after {
    color: #fff;
}

/*-- //Custom radio buttons css --*/
#applicant-form .panel .panel-body .row {
    padding: 0px;
    padding-left: 10px;
}

#applicant-form .panel-default .panel-heading {
    color: #ffffff;
    background-color: #5bbe97;
    border-color: #ddd;
}

#applicant-form .panel-default {
    border-color: #5bbe97;
}

.btn-default {
    margin-right: 10px;
}

    .btn-default:hover {
        color: #333;
        background-color: transparent;
    }

.dateofbirth {
    background-color: transparent;
}

.glyphicon-calendar {
    font-size: 20px;
    margin-left: -15px;
}

.dateofbirth + .input-group-addon {
    position: absolute;
    right: 0px;
    border: 0px;
    background-color: #ffffff;
    padding: 8px 12px;
}

.paddingtop10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.add:before {
    content: "\271A";
}

.cross:before {
    content: "\2716";
}

.open > .dropdown-menu {
    max-height: 300px;
    overflow: auto;
}

.btn-primary {
    border-color: #5bbe97;
}

    .btn-primary:hover, .btn-primary:hover .fa {
        color: #5bbe97;
        background-color: transparent;
        border-color: #5bbe97;
    }

    .btn-primary:focus, .btn-primary:focus .fa {
        color: #5bbe97;
        background-color: transparent;
        border-color: #5bbe97;
    }

/*---Wizard Steps Css---*/
.wizard {
    margin: 20px auto;
    background: #fff;
}

    .wizard .nav-tabs {
        position: relative;
        margin: 0px auto;
        margin-bottom: 0;
        border-bottom-color: #e0e0e0;
    }

    .wizard > div.wizard-inner {
        position: relative;
    }

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 70px;
    height: 70px;
    line-height: 70px;
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    border: 2px solid #e0e0e0;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 25px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

    span.round-tab i {
        color: #5bbe97;
    }

.wizard li.active span.round-tab {
    background: #fff;
    border: 2px solid #5bbe97;
}

.wizard li.active span {
    font-weight: bold;
}

.wizard li span.round-tab-open {
    background: #fff;
    border: 2px solid #5bbe97;
}

.wizard li.active span.round-tab i {
    color: #5bbe97;
}

span.round-tab:hover {
    color: #5bbe97;
    border: 2px solid #5bbe97;
}

span.round-tab > img {
    margin-top: -10px;
}

.wizard .nav-tabs > li {
    width: 20%;
    text-align: center;
}

.wizard .nav-tabs li:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 0;
    margin: 0 auto;
    bottom: 0px;
    border: 5px solid transparent;
    border-bottom-color: #5bbe97;
    transition: 0.1s ease-in-out;
}

.wizard li.active:after {
    content: " ";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: #5bbe97;
}

.dropdown-menu li.active:after {
    content: "";
    position: absolute;
    left: 46%;
    opacity: 1;
    margin: 0 auto;
    bottom: 0px;
    border: 10px solid transparent;
    border-bottom-color: transparent;
}

.wizard .nav-tabs > li span {
    font-size: 12px;
}

.wizard .nav-tabs > li a {
    width: 70px;
    height: 70px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    margin-top: 5px;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 50px;
    padding: 50px 60px;
}

    .wizard .tab-pane h3 {
        font-size: 20px;
    }

.wizard h3 {
    margin-top: 0;
}

.wizard .tab-pane-content {
    margin-top: 20px;
}

.droupdownborderred, .droupdownborderred:focus {
    border-color: red !important;
}

#applicantdetails-modal .row-hr b {
    font-size: 15px;
}

.reverse-migration .btn-group-dropdown .multiselect .caret {
    position: absolute;
    right: 20px;
    top: 18px;
}

.sub_heading {
    font-size: 15px;
    padding: 5px;
    text-decoration: underline;
}

@media (max-width: 585px) {
    .wizard {
        width: 90%;
        height: auto !important;
    }

    span.round-tab {
        font-size: 16px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard .nav-tabs > li a {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .wizard li.active:after {
        content: " ";
        position: absolute;
        left: 35%;
    }
}
/*---//Wizard Steps Css---*/

/*---Applicant Member Details modal css---*/
.row-title {
    text-align: left;
    background-color: #f5f5f5;
    color: #48953f;
    padding: 10px;
}

.row-hr {
    border-bottom: 1px solid #f8f8f8;
    padding: 5px 0px;
}

.experince-form-group {
    width: 60% !important;
}

    .experince-form-group + span {
        position: absolute;
        line-height: 42px;
        padding-left: 10px;
        font-size: 14px;
    }

.imageBox .thumbBox {
    position: absolute;
    top: 49%;
    left: 50%;
    width: 130px;
    height: 130px;
    margin-top: -50px;
    margin-left: -65px;
    box-sizing: border-box;
    border: 1px solid rgb(102, 102, 102);
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
    background: none repeat scroll 0% 0% transparent;
}

.multiselect-selected-text {
    opacity: 0.7 !important;
}
/*---//Applicant Member Details modal css---*/


#dailog-message {
    line-height: 25px !important;
}

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.0em !important;
    text-align: left !important;
    width: inherit;
    padding: 0 10px;
    border-bottom: none;
}

.legendtext {
    padding-left: 15px;
}

@media only screen and (min-width: 992px) {
    .marginleft5 {
        margin-left: -5px;
    }
}

.padding10 {
    padding: 10px !important;
}

@media (min-width: 992px) {
    .modal-lg {
        width: 1100px;
    }
}

#applicantdetails-modal .modal-dialog .modal-content .modal-header {
    background-color: #5bbe97 !important;
}


@media (max-width: 987px) {
    .applicantheadings {
        display: none;
    }
}

@media (max-width: 480px) {
    .wizard .tab-pane {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }
}
