﻿/*
/// ------------------------------------------------------------------------------
/// :: Doctor in Palm 2020 Developed by Heloan Marinho | 19/11/2020 - 16:40
/// :: WARNING: This computer program is protected by copyright law and international treaties. 
/// :: Unauthorized duplication or distribution of this program, or any portion of it, may result 
/// :: in severe civil or criminal penalties, and will be prosecuted to the maximum extent possible
/// :: under the law.
/// :: 
/// :: v.1.0 - 19/11/2020 - Implementation.
/// ------------------------------------------------------------------------------
*/

/* ##### 00 : GENERAL  ##### */
.green-section {
    background-color: #ec2227;
}

.white-section {
    background-color: #fff;
}

.gradient-section {
    background: #fff;
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
}

.light-gray-section {
    background-color: #efeff0;
}

/*blockquote*/
blockquote.bq {
    padding: 30px;
    border-left: solid 10px #ec2227;
    font-style: italic;
    font-size: 14px;
    line-height: 30px;
    color: #999999;
    background-color: #efeff0;
}

/*links*/
a {
    color: #60606e;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

    a.link {
        position: relative;
    }

        a.link:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #ec2227;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

    a:hover, a:focus {
        color: #60606e;
        text-decoration: none;
    }

        a:hover:after {
            width: 50%;
        }

/*text*/
.poppins-text {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
}

.open-sans-text {
    font-family: "Open sans", sans-serif;
}

.white-text {
    color: white;
}

.green-text {
    color: #ec2227;
}

.gray-text {
    color: #999999;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

p {
    font-family: Montserrat, sans-serif;
}

/*buttons*/
.btn {
    height: 50px;
    line-height: 50px;
    min-width: 150px;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    padding: 0;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    outline: none !important;
}

    .btn:hover {
        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
        box-shadow: 0 0 10px rgba(0,0,0,.2);
    }

    .btn.green {
        background-color: #ec2227;
        color: #fff;
    }

    .btn.white {
        background-color: #fff;
        color: #ec2227;
        border: 1px solid #ec2227;
    }

@media (max-width: 991px) {
    .btn {
        margin: 20px 0;
    }
}

/* ##### 02.1 : FORM  ##### */

#error-form {
    display: none;
    font-weight: bold;
    color: #fff;
    background: #cb2d3e;
    background: -webkit-linear-gradient(to right, #ef473a, #cb2d3e);
    background: linear-gradient(to right, #ef473a, #cb2d3e);
}

    #error-form .message {
        padding-left: 10px;
        font-weight: normal;
    }

.form {
    padding: 20px;
    -webkit-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    width: 50%;
    margin: 0 auto;
    margin-top: 100px;
}

    #popup-form .form-header,
    .form .form-header {
        padding-top: 20px;
        border-bottom: solid 1px rgba(0,0,0,.1);
        padding-bottom: 10px;
        clear: both;
        height: 50px;
    }

    #popup-form .options,
    .form .options {
        margin-top: 20px;
        height: 75px;
    }

        #popup-form .options h5,
        .form .options h5 {
            font-weight: bold;
        }

        #popup-form .options .active,
        .form .options .active {
            background-color: #60606e !important;
            color: #fff !important;
        }

        #popup-form .options .btn-1a,
        .form .options .btn-1a {
            float: left;
            width: 49%;
        }

        #popup-form .options .btn-1b,
        .form .options .btn-1b {
            float: right;
            width: 49%;
        }

    .form .textarea {
        margin-top: 20px;
        height: 185px;
    }

        .form .textarea .textarea_1 {
            margin-top: 20px;
        }

        .form .textarea h5 {
            font-weight: bold;
        }

.processing {
    -webkit-box-shadow: initial !important;
    -moz-box-shadow: initial !important;
    box-shadow: initial !important;
    transition: width 1s;
}

/* ##### 02.1 : FORM  ##### */

/* ##### 05 : INPUTS & TEXTAREAS STYLES  ##### */
/*textarea 1*/
.textarea_1 {
    height: 150px;
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .textarea_1 textarea {
        height: 100%;
        width: 100%;
        border: 0;
        padding: 20px;
        background-color: transparent;
        float: left;
        z-index: 2;
        font-size: 14px;
        color: #9a9a9a;
        resize: none;
    }

    .textarea_1 > span {
        position: absolute;
        top: 20px;
        left: 20px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #cdcdcd;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        z-index: 1;
    }

        .textarea_1 > span.active {
            color: #ec2227;
            font-size: 10px;
            top: 0px;
            left: 5px;
            background-color: #fff;
            padding: 5px;
            border: solid 1px rgba(0,0,0,.1);
        }

        .textarea_1 > span.empty-field {
            font-size: 25px;
            margin: 0 auto;
            right: 20px;
            text-align: right;
            display: none;
        }

    .textarea_1 > div.required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 138px;
        margin-left: -4px;
        position: absolute;
        top: 5px;
    }

    .textarea_1 textarea::-webkit-scrollbar {
        width: 7px !important;
    }

    .textarea_1 textarea::-webkit-scrollbar-thumb {
        background-color: #CECECE !important;
        outline: 1px solid #CECECE !important;
    }

/*input 1*/
.input_1 {
    height: 50px;
    width: 100%;
    border: solid 1px rgba(0,0,0,.1);
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .input_1 input[type="text"], .input_1 input[type="password"] {
        height: 100%;
        width: 100%;
        border: 0;
        padding: 0 20px;
        float: left;
        position: relative;
        background-color: transparent;
        z-index: 2;
        font-size: 14px;
        color: #9a9a9a;
        outline: none;
    }

    .input_1 > span {
        position: absolute;
        top: 50%;
        left: 20px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #cdcdcd;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        z-index: 1;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
    }

        .input_1 > span.localization {
            padding-left: 30px !important;
        }

        .input_1 > span .disclaimer {
            display: none;
        }

        .input_1 > span.active {
            color: #ec2227;
            font-size: 10px;
            top: 0px;
            left: 5px;
            background-color: #fff;
            padding: 5px;
            border: solid 1px rgba(0,0,0,.1);
            z-index: 2 !important;
        }

            .input_1 > span.active .disclaimer {
                width: 25px !important;
                text-align: center !important;
                font-size: 15px !important;
                color: #60606e;
                display: block;
                position: absolute;
                top: 1px;
                left: 1px;
                height: 22px;
                border-radius: 10px 0px 10px 0px;
            }

                .input_1 > span.active .disclaimer:hover {
                    color: #ec2227;
                    transition: all .2s ease-in-out;
                }

        .input_1 > span.empty-field {
            font-size: 25px;
            margin: 0 auto;
            right: 20px;
            text-align: right;
            display: none;
        }

    .input_1 > div.required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 39px;
        margin-left: -4px;
        position: absolute;
        top: 5px;
    }

    .input_1 .flag-utc {
        width: 20px;
        height: auto;
        top: 15px;
        left: 18px;
        cursor: pointer;
        position: absolute;
    }

    .input_1 .flag-utc {
    }

.phonewrapper > input.phoneinput {
    position: relative;
    z-index: 2;
}

/*input 2*/
.input_2 {
    width: 100%;
    height: 40px;
    background-color: #ececec;
    position: relative;
}

    .input_2 > input {
        height: 100%;
        /*width: -webkit-calc(100% - 40px);*/
        width: calc(100% - 40px);
        border: 0;
        background-color: transparent;
        padding: 0 20px;
        font-family: Montserrat, sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        float: left;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

    .input_2 > button {
        height: 100%;
        width: 40px;
        border: 0;
        background-color: transparent;
    }

    .input_2 > input:focus {
        background-color: #f2f2f2;
    }

/*lookup 1, select 1, multiselect 1 and comselect 1 */
.multiselect_1,
.select_1,
.comselect_1,
.autocomplete_1,
.lookup_1 {
    height: 50px;
    width: 100%;
    border: solid 1px rgba(0,0,0,.1);
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 12px;
}

    .multiselect_1 > span,
    .select_1 > span,
    .autocomplete_1 > span,
    .comselect_1 > span,
    .lookup_1 > span {
        position: absolute;
        top: 50%;
        left: 20px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #cdcdcd;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        z-index: 1;
    }

        .multiselect_1 > span.active,
        .select_1 > span.active,
        .autocomplete_1 > span.active,
        .comselect_1 > span.active,
        .lookup_1 > span.active {
            color: #ec2227;
            font-size: 10px;
            top: 0px;
            left: 5px;
            background-color: #fff;
            padding: 5px;
            border: solid 1px rgba(0,0,0,.1);
        }

    .lookup_1 .required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 39px;
        margin-left: -4px;
        position: absolute;
        top: 5px;
    }

    .lookup_1 span.empty-field {
        color: #cdcdcd;
        font-size: 25px;
        margin: 0 auto;
        right: 30px;
        text-align: right;
        display: none;
        position: relative;
        bottom: 41px;
    }

    .multiselect_1 .required,
    .select_1 .required,
    .autocomplete_1 .required,
    .comselect_1 .required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 39px;
        margin-left: -4px;
        position: absolute;
        top: 5px;
    }

    .multiselect_1 span.empty-field,
    .select_1 span.empty-field,
    .autocomplete_1 span.empty-field,
    .comselect_1 span.empty-field {
        color: #cdcdcd;
        font-size: 25px;
        margin: 0 auto;
        right: 30px;
        text-align: right;
        display: none;
        position: absolute;
        bottom: 6px;
    }

    .multiselect_1 .selectpicker,
    .select_1 .selectpicker,
    .autocomplete_1 .selectpicker,
    .comselect_1 .selectpicker,
    .lookup_1 .selectpicker {
        display: block !important;
    }

    .multiselect_1 .dropdown-toggle,
    .select_1 .dropdown-toggle,
    .autocomplete_1 .dropdown-toggle,
    .comselect_1 .dropdown-toggle,
    .lookup_1 .dropdown-toggle {
        background-color: transparent;
        color: #CECECE;
        border: 1px;
        height: 48px;
        outline: none !important;
    }

        .multiselect_1 .dropdown-toggle:focus,
        .select_1 .dropdown-toggle:focus,
        .autocomplete_1 .dropdown-toggle:focus,
        .comselect_1 .dropdown-toggle:focus,
        .lookup_1 .dropdown-toggle:focus {
            outline: none !important;
        }

        .multiselect_1 .dropdown-toggle:hover,
        .select_1 .dropdown-toggle:hover,
        .autocomplete_1 .dropdown-toggle:hover,
        .comselect_1 .dropdown-toggle:hover,
        .lookup_1 .dropdown-toggle:hover {
            -webkit-transform: initial;
            -ms-transform: initial;
            transform: initial;
            -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
            box-shadow: 0 0 10px rgba(0,0,0,.2);
        }

        .multiselect_1 .dropdown-toggle .filter-option-inner,
        .select_1 .dropdown-toggle .filter-option-inner,
        .autocomplete_1 .dropdown-toggle .filter-option-inner,
        .comselect_1 .dropdown-toggle .filter-option-inner,
        .lookup_1 .dropdown-toggle .filter-option-inner {
            padding-left: 15px;
            color: #cdcdcd;
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden !important;
            text-overflow: ellipsis;
            max-width: 525px !important;
        }

    .multiselect_1 .dropdown-menu .open::-webkit-scrollbar,
    .select_1 .dropdown-menu .open::-webkit-scrollbar,
    .autocomplete_1 .dropdown-menu .open::-webkit-scrollbar,
    .comselect_1 .dropdown-menu .open::-webkit-scrollbar,
    .lookup_1 .dropdown-menu .open::-webkit-scrollbar {
        width: 7px !important;
    }

    .multiselect_1 .dropdown-menu .open::-webkit-scrollbar-thumb,
    .select_1 .dropdown-menu .open::-webkit-scrollbar-thumb,
    .autocomplete_1 .dropdown-menu .open::-webkit-scrollbar-thumb,
    .comselect_1 .dropdown-menu .open::-webkit-scrollbar-thumb,
    .lookup_1 .dropdown-menu .open::-webkit-scrollbar-thumb {
        background-color: #CECECE !important;
        outline: 1px solid #CECECE !important;
    }

    .multiselect_1 .dropdown-menu li a,
    .select_1 .dropdown-menu li a,
    .autocomplete_1 .dropdown-menu li a,
    .comselect_1 .dropdown-menu li a,
    .lookup_1 .dropdown-menu li a {
        text-transform: uppercase;
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-size: 14px;
        color: #CECECE;
    }

    .multiselect_1 .dropdown-menu > .active > a,
    .multiselect_1 .dropdown-menu > .active > a:focus,
    .multiselect_1 .dropdown-menu > .active > a:hover,
    .select_1 .dropdown-menu > .active > a,
    .select_1 .dropdown-menu > .active > a:focus,
    .select_1 .dropdown-menu > .active > a:hover,
    .autocomplete_1 .dropdown-menu > .active > a,
    .autocomplete_1 .dropdown-menu > .active > a:focus,
    .autocomplete_1 .dropdown-menu > .active > a:hover,
    .comselect_1 .dropdown-menu > .active > a,
    .comselect_1 .dropdown-menu > .active > a:focus,
    .comselect_1 .dropdown-menu > .active > a:hover,
    .lookup_1 .dropdown-menu > .active > a,
    .lookup_1 .dropdown-menu > .active > a:focus,
    .lookup_1 .dropdown-menu > .active > a:hover {
        color: #fff !important;
        text-decoration: none;
        background-color: #ec2227;
        outline: 0;
    }

    .multiselect_1 .bootstrap-select .no-results,
    .select_1 .bootstrap-select .no-results,
    .autocomplete_1 .bootstrap-select .no-results,
    .comselect_1 .bootstrap-select .no-results,
    .lookup_1 .bootstrap-select .no-results {
        font-size: 12px;
        background: transparent;
        padding-left: 10px;
        white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
    }

    .multiselect_1 .glyphicon,
    .select_1 .glyphicon {
        font-family: "Ionicons";
    }

    .multiselect_1 .glyphicon-ok:before,
    .select_1 .glyphicon-ok:before {
        content: "\f383" !important;
        font-size: 15px;
        font-weight: bold;
    }

.selectrealtime_1 {
    margin-top: 10px;
    border-radius: 0px 0px 10px 10px;
}

    .selectrealtime_1 button {
        border-radius: 0px 0px 10px 10px;
        text-align: center;
    }

    .selectrealtime_1 .filter-option {
        width: 100%;
        font-size: 11px;
        font-family: "Open sans", sans-serif;
        color: #60606e;
        font-weight: bold;
        text-transform: none;
    }

.bootstrap-select .dropdown-header {
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #000;
    height: 35px;
}

.bootstrap-select .dropdown-menu li a span.text {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    max-width: 100% !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

/*weekdays 1*/
.weekdays_1 {
    height: 50px;
    width: 100%;
    border: solid 1px rgba(0,0,0,.1);
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .weekdays_1 .day {
        float: left !important;
        width: 14% !important;
        color: #CECECE;
        height: 49px;
        line-height: 49px;
        text-align: center;
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        border-radius: 0;
        padding: 0;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        transition: all .2s ease-in-out;
        outline: none !important;
    }

        .weekdays_1 .day:first-child,
        .weekdays_1 .day:last-child {
            width: 15% !important;
        }

        .weekdays_1 .day:hover {
            -webkit-transform: scale(1.01);
            -ms-transform: scale(1.01);
            transform: scale(1.01);
            -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
            box-shadow: 0 0 10px rgba(0,0,0,.2);
        }

        .weekdays_1 .day.active {
            background-color: #60606e !important;
            color: #fff !important;
        }

    .weekdays_1 > span.empty-field {
        font-size: 25px;
        margin: 0 auto;
        right: 20px;
        text-align: right;
        display: none;
    }

    .weekdays_1 > div.required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 39px;
        margin-left: -4px;
        position: absolute;
        top: 5px;
    }

/*questions*/
.questions_1 {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
}

    .questions_1 .header,
    .questions_1 .header-2 {
        text-align: center;
    }

        .questions_1 .header div,
        .questions_1 .header-2 div {
            border: solid 1px rgba(0,0,0,.1);
            float: left;
            height: 30px;
            display: flex;
            align-items: center !important;
            justify-content: center !important;
            color: #fff;
            font-weight: bold;
            background-color: #ec2227;
        }

            .questions_1 .header div:first-child {
                width: 79% !important;
                margin-right: 1%;
                border-radius: 10px 0px 0px 0px;
            }

            .questions_1 .header div:last-child {
                width: 20% !important;
                border-radius: 0px 10px 0px 0px;
            }

            .questions_1 .header-2 div:first-child {
                width: 58% !important;
                margin-right: 1%;
                border-radius: 10px 0px 0px 0px;
            }

            .questions_1 .header-2 div:nth-child(2) {
                width: 20% !important;
                margin-right: 1%;
            }

            .questions_1 .header-2 div:nth-child(3) {
                width: 20% !important;
                border-radius: 0px 10px 0px 0px;
            }

    .questions_1 .noitems {
        border: solid 1px rgba(0,0,0,.1);
        height: 30px;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 5px;
        font-size: 11px;
        font-weight: bold;
    }

    .questions_1 .items .section,
    .questions_1 .items .question,
    .questions_1 .items .type,
    .questions_1 .items .position,
    .questions_1 .items .os {
        border: solid 1px rgba(0,0,0,.1);
        height: 30px;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 5px;
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
        cursor: pointer;
    }

        .questions_1 .items .question:hover,
        .questions_1 .items .type:hover,
        .questions_1 .items .os:hover {
            background-color: #60606e;
            color: #fff;
            transition: ease 0.5s;
        }

        .questions_1 .items .section,
        .questions_1 .items .question span,
        .questions_1 .items .type span {
            white-space: nowrap;
            overflow: hidden !important;
            text-overflow: ellipsis;
            padding: 10px;
        }

    .questions_1 .items .item .question:first-child {
        width: 79% !important;
        margin-right: 1%;
        /*justify-content: left;*/
    }

    .questions_1 .items .item .type:last-child,
    .questions_1 .items .item .position:last-child {
        width: 20% !important;
    }

    .questions_1 .items .section {
        width: 100% !important;
        background-color: rgba(96, 96, 110, 0.6) !important;
        color: #fff;
        font-weight: bold;
        text-transform: uppercase;
    }

        .questions_1 .items .section:hover {
            background-color: rgb(0, 217, 217) !important;
            transition: ease 0.5s;
        }

    .questions_1 .footer,
    .questions_1 .footer-select,
    #candidate_notes .footer {
        border: solid 1px rgba(0,0,0,.1);
        border-radius: 0px 0px 10px 10px;
        height: 50px;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 5px;
        font-size: 25px;
        font-weight: bold;
    }

        .questions_1 .footer div,
        #candidate_notes .footer div {
            width: 10% !important;
            text-align: center;
        }

        .questions_1 .footer svg,
        #candidate_notes .footer svg {
            opacity: 0.7;
            cursor: pointer;
        }

            .questions_1 .footer svg:hover,
            #candidate_notes .footer svg:hover {
                opacity: 1;
            }

    .questions_1 .items .task_0,
    #tasks_list .item .task_0 {
        color: #fff;
        background-color: #FBCF97;
    }

    .questions_1 .items .task_1,
    #tasks_list .item .task_1 {
        color: #fff;
        background-color: #F3CA40;
    }

    .questions_1 .items .task_2,
    #tasks_list .item .task_2 {
        color: #fff;
        background-color: #558DD7;
    }

    .questions_1 .items .task_3,
    #tasks_list .item .task_3 {
        color: #fff;
        background-color: #35E87E;
    }

    .questions_1 .items .task_4,
    #tasks_list .item .task_4 {
        color: #fff;
        background-color: #F15152;
    }

    .questions_1 #checklist_items .item .position,
    .questions_1 #job_responsibilities .item .position,
    .questions_1 #job_required .item .position,
    .questions_1 #job_desired .item .position {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        font-size: 20px;
    }

        .questions_1 #checklist_items .item .position div,
        .questions_1 #job_responsibilities .item .position div,
        .questions_1 #job_required .item .position div,
        .questions_1 #job_desired .item .position div {
            float: left;
            width: 50%;
        }

    .questions_1 #checklist_items .item .active:hover,
    .questions_1 #job_responsibilities .item .active:hover,
    .questions_1 #job_required .item .active:hover,
    .questions_1 #job_desired .item .active:hover {
        background-color: #60606e;
        color: #fff;
        transition: ease 0.5s;
    }

    .questions_1 #checklist_items .item .disabled,
    .questions_1 #job_responsibilities .item .disabled,
    .questions_1 #job_required .item .disabled,
    .questions_1 #job_desired .item .disabled {
        opacity: 0.1;
    }

        .questions_1 #checklist_items .item .disabled:hover,
        .questions_1 #job_responsibilities .item .disabled:hover .questions_1 #job_required .item .disabled:hover .questions_1 #job_desired .item .disabled:hover {
            opacity: 0.1 !important;
            cursor: default !important;
        }

    .questions_1 .osproduct .os,
    .questions_1 .oscommission .os {
        cursor: default;
    }

        .questions_1 .osproduct .os:first-child {
            width: 58% !important;
            margin-right: 1%;
        }

        .questions_1 .osproduct .os:nth-child(2) {
            width: 20% !important;
            margin-right: 1%;
        }

        .questions_1 .osproduct .os:nth-child(3) {
            width: 20% !important;
        }

        .questions_1 .oscommission .os:first-child {
            width: 79% !important;
            margin-right: 1%;
        }

        .questions_1 .oscommission .os:last-child {
            width: 20% !important;
        }

    .questions_1 .os input {
        width: 100%;
        height: 28px;
        border: none;
        text-align: center;
        color: #000;
    }

/*description*/
.description_1 {
    height: 30px;
}

    .description_1 > span {
        font-size: 11px;
    }

/*slot*/
.slot {
    display: none;
}

/*alert 1*/
.alert_1 {
    height: 30px;
}

    .alert_1 > img {
        width: 30px;
        margin-right: 5px;
        cursor: pointer;
    }

    .alert_1 > span {
        font-size: 11px;
    }

/*loading*/
.loading {
    display: none;
    text-align: center;
    margin: 0 auto;
}

.demo-animation {
    min-height: 520px;
}

    .demo-animation div {
        -webkit-transition: width 0.3s ease, margin 0.3s ease;
        -moz-transition: width 0.3s ease, margin 0.3s ease;
        -o-transition: width 0.3s ease, margin 0.3s ease;
        transition: width 0.3s ease, margin 0.3s ease;
    }

.demo {
    text-align: center;
}

    .demo .description {
        width: 100% !important;
    }

#demo-form {
    display: none;
    width: 50%;
    margin: 0 auto;
    margin-top: 50px;
}

.loading img {
    width: 100px;
}

/*autocomplete*/
.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    _width: 160px;
    padding: 4px 0;
    margin: 2px 0 0 0;
    list-style: none;
    background-color: #ffffff;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
}

.ui-menu .ui-menu-item {
    padding-left: 10px;
    padding-right: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #9a9a9a;
    opacity: 0.6;
    text-transform: uppercase;
}

.ui-menu-item > a.ui-corner-all {
    display: block;
    padding: 3px 15px;
    clear: both;
    font-weight: normal;
    line-height: 18px;
    color: #555555;
    white-space: nowrap;
}

.ui-state-hover, .ui-state-active {
    color: #ffffff;
    text-decoration: none;
    background-color: #0088cc;
    background-image: none;
}

/* ##### 12 : LOGIN ##### */

#login-form {
    -webkit-box-shadow: initial;
    -moz-box-shadow: initial;
    box-shadow: initial;
}

    #login-form .action {
        margin-top: 20px;
        width: 100%;
    }

    #login-form .new-account-title {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    #login-form .new-account-description span {
        font-weight: bold;
        color: #ec2227;
        padding: 5px;
        cursor: pointer;
        border: 1px solid;
        border-radius: 20px;
        margin-left: 2px;
        margin-right: 2px;
    }

        #login-form .new-account-description span:hover {
            background-color: #ec2227;
            color: #fff;
        }

/* ##### 13 : PICTURE IMAGE / DOCUMENT INPUT ##### */

.doc_1,
.image_1 {
    margin-top: 20px;
    margin-bottom: 10px;
    height: 38px;
}

    .doc_1 input[type=file],
    .image_1 input[type=file] {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
    }

    .image_1 .inputfile + label {
        font-size: 1.25rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
    }

    .image_1 .inputfile.has-focus + label {
        outline: 1px dotted #000;
        outline: -webkit-focus-ring-color auto 5px;
    }

    .image_1 .inputfile + label svg {
        width: 2em;
        height: 2em;
        vertical-align: middle;
        fill: #9a9a9a;
        margin-top: -0.25em;
        margin-right: 0.25em;
    }

    .image_1 .inputfile-2 + label {
        color: #9a9a9a;
        border: 2px solid currentColor;
        width: 100%;
        text-align: center;
    }

        .image_1 .inputfile-2:focus + label,
        .image_1 .inputfile-2.has-focus + label,
        .image_1 .inputfile-2 + label:hover {
            color: #ec2227;
            outline: none;
        }

    .image_1 .empty-field {
        display: none !important;
    }

    .image_1 .required {
        background-color: #d22b2b;
        width: 2px !important;
        height: 35px;
        position: absolute;
        margin-left: -3px;
        margin-top: -46px;
    }

    .image_1 .preview {
        outline: none;
        font-size: 1.25rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        cursor: pointer;
        display: inline-block;
        overflow: hidden;
        padding: 0.625rem 1.25rem;
        color: #9a9a9a;
        border: 2px solid currentColor;
        width: 100%;
        text-align: center;
        height: 38px;
        display: none;
    }

        .image_1 .preview:hover {
            color: #ec2227;
            outline: none;
        }

        .image_1 .preview label {
            cursor: pointer;
        }

        .image_1 .preview svg {
            width: 2em;
            height: 2em;
            vertical-align: middle;
            fill: #9a9a9a;
            margin-top: -0.25em;
            margin-right: 0.25em;
            cursor: pointer;
        }

    .image_1 .clear {
        width: 90% !important;
    }

    .image_1 .clear-action {
        width: 9% !important;
        margin-left: 1%;
        border-radius: 0px 10px 10px 0px;
        font-size: 8px;
        display: flex;
        align-items: center !important;
        justify-content: center !important;
    }

    .image_1 .clear-hide {
        display: none !important;
    }

/* ##### 14 : TOOLTIP ##### */

.tippy-tooltip.Campus-theme {
    background: #60606e;
    color: rgba(96, 96, 110, 0.5);
    font-size: 12px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

    .tippy-tooltip.Campus-theme .tippy-content {
        color: #fff;
    }

    .tippy-tooltip.Campus-theme .tippy-backdrop {
        background: #60606e;
    }

.tippy-tooltip.Campuslight-theme {
    background: rgba(96, 96, 110, 0.5);
    color: rgba(96, 96, 110, 0.5);
    font-size: 12px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

    .tippy-tooltip.Campuslight-theme .tippy-content {
        color: #fff;
    }

    .tippy-tooltip.Campuslight-theme .tippy-backdrop {
        background: rgba(96, 96, 110, 0.5);
    }

.tippy-tooltip.Campusdark-theme {
    background: rgba(96, 96, 110, 0.8);
    color: rgba(96, 96, 110, 0.5);
    font-size: 12px;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

    .tippy-tooltip.Campusdark-theme .tippy-content {
        color: #fff;
    }

    .tippy-tooltip.Campusdark-theme .tippy-backdrop {
        background: rgba(96, 96, 110, 0.8);
    }

.tippy-tooltip.Campusprofile-theme {
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    -webkit-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
}

    .tippy-tooltip.Campusprofile-theme .tippy-content {
        background-color: transparent;
    }

    .tippy-tooltip.Campusprofile-theme .tippy-backdrop {
        background-color: transparent;
    }

.tippy-popper[x-placement^=right],
.tippy-popper[x-placement^=left],
.tippy-popper[x-placement^=top],
.tippy-popper[x-placement^=bottom] {
    z-index: 1000000000 !important;
}

    .tippy-popper[x-placement^=right] .tippy-tooltip.Campusprofile-theme .tippy-arrow {
        border-right: 7px solid #60606e;
    }

    .tippy-popper[x-placement^=left] .tippy-tooltip.Campusprofile-theme .tippy-arrow {
        border-left: 7px solid #60606e;
    }

    .tippy-popper[x-placement^=top] .tippy-tooltip.Campusprofile-theme .tippy-arrow {
        border-top: 7px solid #60606e;
    }

    .tippy-popper[x-placement^=bottom] .tippy-tooltip.Campusprofile-theme .tippy-arrow {
        border-bottom: 7px solid #60606e;
    }

/* ##### 15 : CHECKBOX ##### */

.checkbox_1 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    .checkbox_1 div {
        width: 100% !important;
        text-align: center;
        background-color: #fff;
        color: #ec2227;
        border: solid 1px rgba(0,0,0,.1);
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 0;
        padding: 0;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        transition: all .2s ease-in-out;
        outline: none !important;
    }

        .checkbox_1 div:hover {
            -webkit-transform: scale(1.01);
            -ms-transform: scale(1.01);
            transform: scale(1.01);
            -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
            box-shadow: 0 0 10px rgba(0,0,0,.2);
        }

        .checkbox_1 div.active {
            background-color: #ec2227 !important;
            color: #fff !important;
        }

/* ##### 16 : COLORPICKER ##### */

.colorpicker_1 {
    margin-top: 20px;
}

    .colorpicker_1 .picker {
        width: 100% !important;
        text-align: center;
        background-color: #fff;
        color: #ec2227;
        border: solid 1px rgba(0,0,0,.1);
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-family: Montserrat, sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 0;
        padding: 0;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-image: none;
        transition: all .2s ease-in-out;
        outline: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .colorpicker_1 .picker:hover {
            -webkit-transform: scale(1.01);
            -ms-transform: scale(1.01);
            transform: scale(1.01);
            -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
            box-shadow: 0 0 10px rgba(0,0,0,.2);
        }

        .colorpicker_1 .picker div {
            background-color: #60606e !important;
            color: #fff;
            width: 98% !important;
            height: 90% !important;
            background: #ec2227;
            background: -webkit-linear-gradient(to bottom, rgba(0, 217, 217, 1), rgba(0, 217, 217, 0.8));
            background: linear-gradient(to bottom, rgba(0, 217, 217, 1), rgba(0, 217, 217, 0.8));
        }

.colorpicker {
    position: absolute;
    width: 565px;
    text-align: center;
}

    .colorpicker .reset-color {
        position: absolute;
        width: 30px;
        right: -5px;
        opacity: 0.3;
        cursor: pointer;
    }

        .colorpicker .reset-color:hover {
            opacity: 1;
        }

    .colorpicker .wrap-picker {
        width: 210px;
        height: 210px;
        -moz-border-radius: 200px;
        -webkit-border-radius: 200px;
        border-radius: 200px;
        -webkit-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        position: absolute;
        background: #fff;
        top: 5px;
        left: 5px;
        z-index: 0;
    }

    .colorpicker .selected-color {
        width: 100%;
        height: 220px;
        -moz-border-radius: 200px;
        -webkit-border-radius: 200px;
        border-radius: 200px;
        -webkit-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    }

#picker {
    position: relative;
    cursor: crosshair;
    float: left;
    margin: 10px;
    border: 0;
    width: 200px;
}

/* ##### 17 : MODAL BUTTON ##### */

.btn-modal {
    width: 25% !important;
    text-align: center;
    float: right;
    background-color: transparent;
    color: #ec2227;
}

    .btn-modal:hover {
        color: #60606e !important;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
        -webkit-box-shadow: initial;
        box-shadow: initial;
    }

.btn-modal-hide {
    display: none;
}

/* ##### 18 : PROGRESS BAR ##### */

.fileupload .progress {
    height: 45px;
}

.fileupload .progress-bar {
    width: 0%;
    background-color: #ec2227 !important;
    font-weight: bold;
    line-height: 45px;
}

.fileupload .indeterminate {
    float: right;
}

.fileupload .videoprocessing {
    padding-left: 10px;
    font-size: 11px;
    display: flex;
    justify-content: center;
    opacity: 0.6;
    display: none;
}

    .fileupload .videoprocessing svg {
        padding-right: 10px;
        color: #ff0000;
        font-size: 24px;
    }

/* ##### 19 : PREVIEW ##### */

.preview div.small {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    overflow: hidden;
    opacity: 0.1;
    width: 100%;
    height: 100%;
}

.preview div.wrap {
    position: absolute;
    bottom: 15px;
    text-align: center;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .preview div.wrap img {
        -webkit-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        -moz-box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
        box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.4);
    }

.preview div.simple {
    position: relative;
    bottom: 15px;
    right: 15px;
    text-align: left;
}

/* ##### 20 : TABLE COLUMNS ##### */

.logger-item,
.remove-item,
.columns {
    margin-left: 25px;
    padding-top: 20px;
}

    .report-item .item,
    .logger-item .item,
    .remove-item .item,
    .columns .item {
        height: 30px;
    }

        .report-item .item:hover,
        .logger-item .item:hover,
        .columns .item:hover {
            font-weight: bold;
        }

    .report-item .checkbox,
    .logger-item .checkbox,
    .remove-item .checkbox,
    .columns .checkbox {
        width: 20px;
        height: 20px;
        border: 1px solid #DDD;
        border-radius: 20px;
        float: left;
        clear: both;
        margin-top: initial;
        margin-bottom: initial;
        cursor: pointer;
    }

        .report-item .checkbox:hover,
        .logger-item .checkbox:hover,
        .remove-item .checkbox:hover,
        .columns .checkbox:hover {
            background-color: #ec2227;
        }

    .report-item .value,
    .logger-item .value,
    .remove-item .value,
    .columns .value {
        height: 20px;
        float: left;
        position: relative;
        padding-left: 10px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0.6;
    }

        .remove-item .value .limit {
            white-space: nowrap;
            overflow: hidden !important;
            text-overflow: ellipsis;
            width: 480px;
        }

    .report-item span,
    .logger-item span,
    .remove-item span,
    .columns span {
        margin-left: 10px;
        font-size: 11px;
    }

    .columns input[type=checkbox] + span {
        color: #919192;
    }

    .columns input[type=checkbox]:checked + span {
        color: #000;
        font-weight: bold;
    }

    .report-item .checked .checkbox,
    .logger-item .checked .checkbox,
    .remove-item .checked .checkbox,
    .columns .checked .checkbox {
        background-color: #ec2227;
    }

    .report-item .checked .value,
    .logger-item .checked .value,
    .remove-item .checked .value,
    .columns .checked .value {
        font-weight: bold;
    }

    .report-item .description,
    .logger-item .description,
    .remove-item .description {
        display: block !important;
        font-size: 12px;
        width: 350px;
    }

    .logger-item svg,
    .remove-item .icon svg {
        padding-right: 10px;
        color: #ff0000;
        width: 30px;
    }

    .columns .item .notification {
        margin-right: 5px;
    }

/* ##### 21 : IMPORT/EXPORT DATA ##### */

.import {
    width: 100%;
    height: 220px;
}

    .import .section {
        text-align: center;
        font-size: 12px;
        color: #60606e;
        padding: 58px;
        width: 49%;
        height: 100%;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        margin-top: 0 !important;
    }

        .import .section:hover {
            background-color: #ec2227;
            color: #fff !important;
            transition: all 0.3s;
        }

        .import .section div {
            cursor: pointer !important;
        }

        .import .section svg {
            font-size: 40px;
            cursor: pointer !important;
        }

        .import .section .description {
            padding-top: 10px;
            font-weight: normal;
            cursor: pointer !important;
        }

    .import .upload {
        float: left;
    }

    .import .schema {
        float: right;
    }

/* ##### 23 : USER PROFILE CARD ##### */

#user_profile_card {
    display: flex;
    justify-content: center;
    align-items: center;
}

    #user_profile_card .loading {
        width: 100%;
    }

#user_profile_card_profile_picture {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    position: relative;
    top: 4px;
}

#user_profile_card_profile_empty {
    width: 64px;
    height: 64px;
    border-radius: 64px;
    opacity: 0.6;
    position: relative;
    top: 4px;
    animation: pulse 1s infinite;
}

/* ##### 24 : RANGE SLIDER ##### */

.range-slider .bar {
    height: 20px !important;
    background-color: transparent !important;
    border: 1px solid rgba(176, 176, 183, 0.2) !important;
}

.range-slider .button {
    background-color: #ec2227 !important;
    width: 65px !important;
    height: 20px !important;
    border-radius: 0% !important;
    text-align: center !important;
    font-size: 10px !important;
    color: #fff !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    /*-khtml-user-select: none;*/
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ##### 25 : HASHTAGS ##### */

/* surrounding tag container */
.tag-editor {
    list-style-type: none;
    padding: 10px;
    padding-top: 20px;
    margin: 0;
    overflow: hidden;
    cursor: text;
    font: normal 14px sans-serif;
    color: #555;
    background: transparent;
    line-height: 20px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

    .tag-editor::-webkit-scrollbar {
        width: 7px !important;
    }

    .tag-editor::-webkit-scrollbar-thumb {
        background-color: #CECECE !important;
        outline: 1px solid #CECECE !important;
    }

    /* core styles usually need no change */
    .tag-editor li {
        display: block;
        float: left;
        overflow: hidden;
        margin: 3px 0;
        border-radius: 20px;
    }

    .tag-editor div {
        float: left;
        padding: 0 4px;
    }

    .tag-editor .placeholder {
        padding: 0 8px;
        color: #bbb;
    }

    .tag-editor .tag-editor-spacer {
        padding: 0;
        width: 8px;
        overflow: hidden;
        color: transparent;
        background: none;
    }

    .tag-editor input {
        vertical-align: inherit;
        border: 0;
        outline: none;
        padding: 0;
        margin: 0;
        cursor: text;
        font-family: inherit;
        font-weight: inherit;
        font-size: inherit;
        font-style: inherit;
        box-shadow: none;
        background: none;
        color: #444;
    }

/* hide original input field or textarea visually to allow tab navigation */
.tag-editor-hidden-src {
    position: absolute !important;
    left: -99999px;
}

/* hide IE10 "clear field" X */
.tag-editor ::-ms-clear {
    display: none;
}

/* tag style */
.tag-editor .tag-editor-tag {
    padding-left: 5px;
    color: #fff;
    background: rgba(60, 52, 94, 0.5);
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px 0 0 2px;
}

/* delete icon */
.tag-editor .tag-editor-delete {
    background: #e0eaf1;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    padding-left: 3px;
    padding-right: 4px;
}

    .tag-editor .tag-editor-delete i {
        line-height: 18px;
        display: inline-block;
    }

        .tag-editor .tag-editor-delete i:before {
            font-size: 16px;
            color: #8ba7ba;
            content: "×";
            font-style: normal;
        }

    .tag-editor .tag-editor-delete:hover i:before {
        color: #ec2227;
    }

.tag-editor .tag-editor-tag.active + .tag-editor-delete, .tag-editor .tag-editor-tag.active + .tag-editor-delete i {
    visibility: hidden;
    cursor: text;
}

.tag-editor .tag-editor-tag.active {
    background: none !important;
}

.imageloadinginprocess {
    transition: all 1s;
    opacity: 0;
}

/***
====================================================================
	Signup.
====================================================================

***/

#popup #signup-body {
    padding: initial !important;
    background: #fff url(/Assets/img/signup.jpg) 100% top no-repeat;
    background-size: cover;
    border-radius: 0px 0px 20px 20px;
}

#popup .signup-form {
    background-color: #fff;
    width: 40%;
    height: 100%;
    opacity: 0.9;
    float: right;
    border-radius: 0px 0px 20px 0px;
}

    #popup .signup-form .title {
        font-family: Montserrat, sans-serif;
        height: 100px;
        background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(11,1,72,1) 35%, rgba(11,1,153,1) 100%);
        color: #fff;
        font-size: 18px;
        display: flex;
        text-align: center;
        align-items: center;
        padding: 20px;
        justify-content: center;
    }

    #popup .signup-form input {
        font-family: Montserrat, sans-serif;
        background-color: transparent;
        border: none;
        outline: none;
        color: #000;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        vertical-align: middle;
        border-bottom: 1px solid #ddd;
        width: 90%;
        height: 48px;
        float: left;
        padding: 10px;
    }

        #popup .signup-form input::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: #9E9E9E;
        }

        #popup .signup-form input::-moz-placeholder {
            /* Firefox 19+ */
            color: #9E9E9E;
        }

        #popup .signup-form input:-ms-input-placeholder {
            /* IE 10+ */
            color: #9E9E9E;
        }

        #popup .signup-form input:-moz-placeholder {
            /* Firefox 18- */
            color: #9E9E9E;
        }

    #popup .signup-form svg {
        position: absolute;
        color: red;
        top: 15px;
        display: none;
    }

    #popup .signup-form #signup-register {
        font-family: Montserrat, sans-serif;
        color: #fff;
        width: 100%;
        height: 109px;
        border: none !important;
        background: rgb(2,0,36);
        background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(11,1,72,1) 35%, rgba(11,1,153,1) 100%);
        font-size: 20px;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        border-radius: 0px 0px 20px 0px;
    }

        #popup .signup-form #signup-register:hover {
            color: #ec2227;
            background: #fff;
        }

    #popup .signup-form .error {
        width: 10%;
        height: 48px;
        display: flex;
        text-align: center;
        align-content: center;
        justify-content: center;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

#popup .signup-warning {
    font-family: Montserrat, sans-serif;
    background-color: #fff;
    width: 60%;
    min-height: 60px;
    opacity: 0.9;
    float: left;
    text-align: left;
    color: #fff;
    padding-left: 10px;
    background-image: linear-gradient(to right top, #f00b0b, #de001c, #cb0025, #b7062a, #a30e2e);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    padding: 15px;
    display: none;
    padding-top: 23px;
}

    #popup .signup-warning .warning-icon {
        float: left;
        padding-left: 10px;
        padding-right: 10px;
    }

#popup #invalid-body {
    background-image: linear-gradient(to right top, #f00b0b, #de001c, #cb0025, #b7062a, #a30e2e);
    border-radius: 0px 0px 20px 20px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

#popup #valid-body {
    background-image: linear-gradient(to right top, #0bf05b, #00d663, #00bc66, #00a264, #00895f);
    border-radius: 0px 0px 20px 20px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

#popup .modal-header {
    background: #ec2227;
    color: #fff;
    border-radius: 20px 20px 0px 0px;
}

.modal-title {
    color: #fff;
    text-transform: none;
}

#popup .modal-content {
    border-radius: 25px;
}

#popup .vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
}

#popup .vertical-align-center {
    display: table-cell;
    vertical-align: middle;
}

#popup .modal-content {
    width: inherit;
    height: inherit;
    margin: 0 auto;
}

#popup .modal-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    background: #fff;
    color: #ec2227;
    width: 100px;
    height: 55px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 0px 0px;
    cursor: pointer;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

    #popup .modal-close:hover {
        background: #ec2227;
        color: #fff;
    }

[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-size: 14px;
    margin-left: 0px;
}

/*** 

====================================================================
	Popup
====================================================================

***/

#popup .spinner {
    margin: 0 auto;
    width: 70px;
    text-align: center;
}

.spinner > div {
    width: 18px;
    height: 18px;
    background-color: #ec2227;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.form {
    padding: 20px;
    -webkit-box-shadow: 1px 3px 10px 0 rgba(0,0,0,.4);
    -moz-box-shadow: 1px 3px 10px 0 rgba(0,0,0,.4);
    box-shadow: 1px 3px 10px 0 rgba(0,0,0,.4);
    width: 50%;
    margin: 0 auto;
    margin-top: 10px;
}

#error-form {
    display: none;
    color: #fff;
    background: #cb2d3e;
    background: -webkit-linear-gradient(to right,#ef473a,#cb2d3e);
    background: linear-gradient(to right,#ef473a,#cb2d3e);
    margin-top: 0;
}

    #error-form .message {
        padding-left: 10px;
        font-weight: 400;
    }

.gradient-section {
    background: #fff;
    background: -webkit-linear-gradient(to bottom,rgba(255,255,255,1),rgba(0,0,0,0));
    background: linear-gradient(to bottom,rgba(255,255,255,1),rgba(0,0,0,0));
}

#app-warning, #login-warning {
    margin-top: 110px !important;
    display: none;
    padding: 20px;
    width: 70%;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    color: #999;
    font-size: 18px;
}

    #app-warning div.description, #login-warning div.description {
        font-size: 11px;
        padding-top: 30px;
        width: 75%;
        margin: 0 auto;
    }

    #app-warning .stores, #login-warning .stores {
        padding-top: 30px;
        width: 146px;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    #app-warning .payment, #app-warning .salesman, #login-warning .down {
        padding-top: 30px;
        width: 100px;
    }

/*** 

====================================================================
	Password Validation.
====================================================================

***/

.password-validation {
    color: #60606e;
    font-size: 11px;
    padding: 10px;
    background: linear-gradient(to bottom,rgba(255,255,255,1),rgba(0,0,0,0));
    width: 100%;
    height: 170px;
    -webkit-box-shadow: 1px 3px 3px 0 rgba(0,0,0,.4);
    -moz-box-shadow: 1px 3px 3px 0 rgba(0,0,0,.4);
    box-shadow: 1px 3px 3px 0 rgba(0,0,0,.4);
    display: none;
}

    .password-validation .security-level {
        font-weight: 700;
        padding-bottom: 10px;
        height: 30px;
        display: flex;
        align-items: center;
    }

        .password-validation .security-level div {
            float: left;
        }

        .password-validation .security-level .strength {
            width: 200px;
            height: 100%;
            background: #ddd;
            margin-left: 10px;
            border-radius: 20px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .password-validation .requirements {
        font-weight: 700;
        padding-bottom: 10px;
        clear: both;
    }

    .password-validation .match {
        text-align: center;
        display: flex;
        align-items: center;
        line-height: 15px;
    }

        .password-validation .match span:first-child {
            font-size: 13px;
        }

        .password-validation .match span:last-child {
            padding-left: 5px;
        }

    .password-validation .active {
        color: #46c707;
    }

.password-validation-insufficient {
    background: #ece9e6;
    background: -webkit-linear-gradient(to right,#fff,#ece9e6);
    background: linear-gradient(to right,#fff,#ece9e6);
}

.password-validation-weak {
    background: #ff416c !important;
    background: -webkit-linear-gradient(to right,#ff4b2b,#ff416c) !important;
    background: linear-gradient(to right,#ff4b2b,#ff416c) !important;
    color: #fff !important;
}

.password-validation-medium {
    background: #fdc830 !important;
    background: -webkit-linear-gradient(to right,#f37335,#fdc830) !important;
    background: linear-gradient(to right,#f37335,#fdc830) !important;
    color: #fff !important;
}

.password-validation-strong {
    background: #00c6ff !important;
    background: -webkit-linear-gradient(to bottom,#0072ff,#00c6ff) !important;
    background: linear-gradient(to bottom,#0072ff,#00c6ff) !important;
    color: #fff !important;
}

#page-login.main {
    padding: 30px 0 100px;
}

/* LOGIN FORM MOBILE*/

@media (max-width: 768px) {
    #login-form {
        display: none;
    }

    #app-warning {
        display: block;
    }
}
