﻿/* PAGE */

.page {
    padding: 8px 26px;
    width: 100%;
}

@media (min-width: 992px) {
    .page {
        max-width: 900px;
    }
}

/* CHECKBOX */
.checkbox {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
    user-select: none;
}

    .checkbox input {
        cursor: pointer;
        height: 0;
        opacity: 0;
        position: absolute;
        width: 0;
    }

.checkmark {
    background-color: #fff;
    height: 1rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 1rem;
    border: 1px solid;
    border-color: #f76b25;
    border-radius: 2px;
}


.checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox input:checked ~ .checkmark {
    background-color: #f76b25;
}

.checkmark:after {
    content: "";
    display: none;
    position: absolute;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    border: solid white;
    border-width: 0 3px 3px 0;
    height: 9px;
    left: 4px;
    top: 0;
    transform: rotate(45deg);
    width: 4px;
}

/*RADIO*/

.radio {
    display: block;
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 1rem;
    background-color: #FFF;
    border-radius: 50%;
    border: 1px solid;
    border-color: #E8EAEB;
}

.radio:hover input ~ .radiomark {
    background-color: #ccc;
}

.radio input:checked ~ .radiomark {
    background-color: #00AFEB;
    border-color: #00AFEB;
}

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio input:checked ~ .radiomark:after {
    display: block;
}

.radio .radiomark:after {
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}

/*MENU*/

.menu {
    font-weight: 400;
}

.menu__item {
    cursor: pointer;
    padding-bottom: .80rem;
    padding-top: .80rem;
    border-bottom: 1px solid #E8EAEB;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #778187;
}

.menu__item--active, .menu__item.active {
    cursor: pointer;
    border-bottom: 1px solid #E8EAEB;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #F46F22;
    text-decoration: none !important;
}

.menu__item--wrapped {
    white-space: pre-wrap; /* css-3 */
    word-wrap: break-word; /* Internet Explorer 5.5+ */
    word-break: break-all;
    white-space: normal;
}

/*PANEL*/

.panel {
    background-color: #f2f2f2;
    padding: 1.25rem;
}

.panel--p0 {
    padding: 0;
}

.last-child\:border-b-0:last-child {
    border-bottom: 0;
}


/*wfswitch*/

.wfswitch {
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 22px;
    margin-left: 2px;
}

.wfswitch__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 20px;
    opacity: 0;
    z-index: 0;
}

.wfswitch__label {
    display: block;
    padding: 0 0 0 44px;
    cursor: pointer;
}

    .wfswitch__label:before {
        content: '';
        position: absolute;
        top: 0px;
        left: -2px;
        width: 40px;
        height: 20px;
        background-color: #A4ABAF;
        border-radius: 14px;
        z-index: 1;
        transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .wfswitch__label:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 0;
        width: 16px;
        height: 16px;
        background-color: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
        z-index: 2;
        transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        transition-property: left, background-color;
    }

.wfswitch__input:checked + .wfswitch__label:before {
    background-color: #00AFEB;
}

.wfswitch__input:checked + .wfswitch__label:after {
    left: 20px;
    background-color: white;
}

.wfswitch__label__green::before {
    background-color: #CFEAA0 !important;
}

.wfswitch__label__green:after {
    background-color: #8AB73B !important;
}

/* FORMS */

.form__input {
    display: flex;
    flex-direction: column;
}

.form__input > .form__label {
    font-weight: 600;
    margin-bottom: 10px;
}

.form__input > .input {
    font-size: 15px;
    border: solid 1px #DEDEDE;
    padding: 10px;
}


.vs__dropdown-toggle {
    border-radius: 0 !important;
    border: solid 1px #DEDEDE !important;
}