/* Var */

:root {
    --cprimary: #3482e2;
    --csecondary: #5357F7;
    --bprimary: #5357F7;
    --btprimary: #fff;
    --pmleft: 25px;
    --pmleftn: -25px;
}

/*--#Normalize--*/

html {
    direction: ltr;
}

body {
    color: #07245A;
    font-family: 'Roboto', sans-serif;
    ;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin: 0;
    background: #F3F3F6;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    outline: none;
    text-decoration: none;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

li {
    line-height: 24px;
    list-style: none;
    display: inline-block;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Main Site */

.main-site {
    display: flex;
}

.main-site >.main-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

.main-site.nav {
        --s_width: 230px;
        --s_gap: 40px;
    }

.main-site.nav >nav {
            flex: 0 0 var(--s_width);
            max-width: var(--s_width);
            margin-right: var(--s_gap);
        }

.main-site.nav >.main-content {
            flex: 1 0 calc((100% - var(--s_width)) - var(--s_gap));
            max-width: calc((100% - var(--s_width)) - var(--s_gap));
        }

.main-site.nav >.main-content +nav {
                margin-right: 0;
                margin-left: var(--s_gap);
            }

/* Row */

.row {
    display: flex;
    flex-flow: row wrap;
    --rflex: 100%;
}

.row >.col-90 {
            --rflex: 90%;
        }

.row >.col-80 {
            --rflex: 80%;
        }

.row >.col-75 {
            --rflex: 75%;
        }

.row >.col-70 {
            --rflex: 70%;
        }

.row >.col-60 {
            --rflex: 60%;
        }

.row >.col-50 {
            --rflex: 50%;
        }

.row >.col-40 {
            --rflex: 40%;
        }

.row >.col-33 {
            --rflex: 33.33%;
        }

.row >.col-30 {
            --rflex: 30%;
        }

.row >.col-25 {
            --rflex: 20%;
        }

.row >.col-20 {
            --rflex: 20%;
        }

.row >.col-10 {
            --rflex: 10%;
        }

.row >.col-a {
            flex: 1 1 auto;
        }

.row [class^="col-"],
    .row .col {
        position: relative;
        flex: 0 0 var(--rflex);
        max-width: var(--rflex);
        min-height: 1px;
    }

/* Navbar */

.nav-menu {
    border-right: 1px solid #dadada;
}

.nav-menu:before,
    .nav-menu:after {
        display: table;
        content: "";
    }

.nav-menu >li {
        display: flex;
        align-items: center;
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        height: 40px;
        line-height: 40px;
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 0 16px;
        overflow: hidden;
        padding-left: 40px;
    }

.nav-menu >li >a,
        .nav-menu >li >span {
            flex: auto;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.nav-menu >li >a {
            color: #000000;
        }

.nav-menu >li:not(:last-child) {
            margin-bottom: 8px;
        }

.nav-menu >li.title {
            margin-top: 16px;
            margin-bottom: 16px;
            font-size: 13px;
            line-height: 1.5715;
            flex-direction: column;
            align-items: flex-start;
        }

.nav-menu >li.title:after {
                position: relative;
                display: block;
                width: calc(100% - 20px);
                height: 1px;
                background: #dadada;
                content: "";
            }

/* Colors */

.c_primary {
    color: var(--cprimary);
}

.c_secondary {
    color: #6c757d;
}

.c_info {
    color: #0dcaf0;
}

.c_success {
    color: #198754;
}

.c_warning {
    color: #ffc107;
}

.c_danger {
    color: #dc3545;
}

.c_disabled {
    color: #00000040;
    cursor: not-allowed;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

[class^="c_"] >* {
        color: inherit !important;
    }

/* Buttons */

.btn {
    height: 38px;
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 300;
    font-family: inherit;
    border: solid 1px #d9d9d9;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
    display: inline-flex;
    cursor: pointer;
    --btn-color: #fff;
    --btn-hcolor: #000;
    --btn-radius: 0px;
    color: var(--btn-hcolor);
    background-color: var(--btn-color);
    border-radius: var(--btn-radius);
}

.btn:hover {
        background-color: #ffffff;
        color: #000;
    }

.btn.primary {
        --btn-color: var(--cprimary);
        --btn-hcolor: #fff;
    }

.btn.secondary {
        --btn-color: #6c757d;
        --btn-hcolor: #000;
    }

.btn.info {
        --btn-color: #0dcaf0;
        --btn-hcolor: #000;
    }

.btn.success {
        --btn-color: #198754;
        --btn-hcolor: #fff;
    }

.btn.warning {
        --btn-color: #ffc107;
        --btn-hcolor: #000;
    }

.btn.danger {
        --btn-color: #dc3545;
        --btn-hcolor: #fff;
    }

.btn >i +span {
            margin-left: 8px;
        }

.btn >span +i {
            margin-left: 8px;
        }

.btn.round {
        --btn-radius: 50%;
    }

.btn.b5 {
        --btn-radius: 5px;
    }

.btn.b10 {
        --btn-radius: 10px;
    }

.btn.dashed {
        border-style: dashed;
    }

.btn.disabled {
        color: #00000040;
        border-color: #d9d9d9;
        background: #f5f5f5;
        cursor: not-allowed;
    }

.btn.link {
        color: var(--btn-color);
        border-color: transparent;
        background: 0 0;
        box-shadow: none;
    }

.btn.spin >i {
            -webkit-animation: animate-spin 2s linear infinite;
            animation: animate-spin 2s linear infinite;
        }

.btn.full {
        width: 100%;
        justify-content: center;
    }

/* Transition */

@-webkit-keyframes animate-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes animate-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

/* Typography */

h1.typography,
.typography h1 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.25;
}

h2.typography,
.typography h2 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.25;
}

h3.typography,
.typography h3 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
}

h4.typography,
.typography h4 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
}

h5.typography,
.typography h5 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
}

h6.typography,
.typography h6 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.typography {
    overflow-wrap: break-word;
}

.typography.primary {
        color: var(--cprimary);
    }

.typography.secondary {
        color: #6c757d;
    }

.typography.info {
        color: #0dcaf0;
    }

.typography.success {
        color: #198754;
    }

.typography.warning {
        color: #ffc107;
    }

.typography.danger {
        color: #dc3545;
    }

.typography.disabled {
        color: #00000040;
        cursor: not-allowed;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

.typography mark {
        padding: 0;
        background-color: #ffe58f;
    }

.typography code {
        margin: 0 0.2em;
        padding: 0.2em 0.4em 0.1em;
        font-size: 85%;
        background: rgba(150, 150, 150, .1);
        border: 1px solid rgba(100, 100, 100, .2);
        border-radius: 3px;
    }

.typography kbd {
        margin: 0 0.2em;
        padding: 0.15em 0.4em 0.1em;
        font-size: 90%;
        background: rgba(150, 150, 150, .06);
        border: 1px solid rgba(100, 100, 100, .2);
        border-bottom-width: 2px;
        border-radius: 3px;
    }

.typography u {
        text-decoration: underline;
        -webkit-text-decoration-skip: ink;
        text-decoration-skip-ink: auto;
    }

.typography del,
    .typography s {
        text-decoration: line-through;
    }

.typography strong,
    .typography b {
        font-weight: 600;
    }

.typography a {
        color: var(--cprimary);
        outline: none;
        cursor: pointer;
        transition: color .3s;
        text-decoration: none;
    }

/* Card */

.card {
    position: relative;
    background: #fff;
    border-radius: 6px;
}

/* overflow: hidden; */

.card .main-content {
        width: calc(100% - 320px);
        margin-left: 35px;
    }

.card .content-sidebar {
        width: calc(100% - 320px);
        padding-right: 35px;
        float: left;
    }

.card.p2 {
        padding: 25px 15px;
    }

.card.p3 {
        padding: 25px 35px;
    }

/* Divider */

.divider {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #000000d9;
}

.divider:before {
        position: relative;
        top: 50%;
        width: 50%;
        border-top: 1px solid transparent;
        border-top-color: inherit;
        border-bottom: 0;
        transform: translateY(50%);
        content: "";
    }

.divider:after {
        position: relative;
        top: 50%;
        width: 50%;
        border-top: 1px solid transparent;
        border-top-color: inherit;
        border-bottom: 0;
        transform: translateY(50%);
        content: "";
    }

.divider.h {
        display: flex;
        margin: 16px 0;
        white-space: nowrap;
        text-align: center;
    }

.divider.v {
        display: inline-block;
        height: 0.9em;
        margin: 0 8px;
        position: relative;
        top: -0.06em;
        border-left: 1px solid rgba(0, 0, 0, .06);
    }

/* Breadcrumbs */

.breadcrumbs .breadcrumb {
        color: #ddd;
    }

.breadcrumbs .breadcrumb a,
        .breadcrumbs .breadcrumb span {
            color: inherit;
        }

.breadcrumbs .breadcrumb +.breadcrumb:before {
                content: "/";
                color: inherit;
            }

/* End Breadcrumbs */

/* Menu */

.menu ul li {
            display: block;
        }

.menu.vertical {
        display: inline-flex;
        border-radius: 5px;
    }

.menu.vertical ul {
            padding: 4px 0;
        }

.menu.vertical ul li {
                display: inline-block;
                padding: 5px 12px;
                flex: 1 1 auto;
                clear: both;
                width: 100%;
                color: #000000d9;
                white-space: nowrap;
                cursor: pointer;
                transition: all .3s;
            }

.menu.vertical ul li:hover {
                    background-color: #f5f5f5;
                }

.dropdown {
    position: relative;
    display: inline-block;
    --d_top: 100%;
    --d_left: 50%;
    --d_right: unset;
    --d_bottom: unset;
}

.dropdown.r, .dropdown.l {
        --d_top: unset;
    }

.dropdown.r .trigger .menu, .dropdown.l .trigger .menu {
            transform: translateX(0);
            margin: 0 8px;
        }

.dropdown.r .trigger .menu:before, .dropdown.l .trigger .menu:before {
                top: 50%;
                left: 0;
            }

.dropdown.r {
        --d_left: 100%;
    }

.dropdown.r .trigger .menu:before {
                    left: 0;
                }

.dropdown.l {
        --d_left: unset;
        --d_right: 100%;
    }

.dropdown.l .trigger .menu:before {
                    left: unset;
                    right: -15px;
                }

.dropdown.t {
        --d_top: unset;
        --d_bottom: 100%;
    }

.dropdown.t .trigger .menu:before {
                    top: unset;
                    bottom: -7px;
                }

.dropdown.al {
        --d_left: 0;
    }

.dropdown.al .trigger .menu {
                transform: translateX(0);
            }

.dropdown.al .trigger .menu:before {
                    left: 20px;
                }

.dropdown.ar {
        --d_left: unset;
        --d_right: 0;
    }

.dropdown.ar .trigger .menu {
                transform: translateX(0);
            }

.dropdown.ar .trigger .menu:before {
                    left: unset;
                    right: 10px;
                }

.dropdown.at {
        --d_top: 0;
    }

.dropdown.at .trigger .menu:before {
                    top: 10px;
                }

.dropdown.ab {
        --d_bottom: 0;
    }

.dropdown.ab .trigger .menu:before {
                    top: unset;
                    bottom: 10px;
                }

.dropdown.tr {
        --d_left: unset;
        --d_right: 0;
    }

.dropdown.bl {
        --d_top: unset;
        --d_bottom: 100%;
    }

.dropdown.br {
        --d_top: unset;
        --d_left: unset;
        --d_right: 0;
        --d_bottom: 100%;
    }

.dropdown .trigger > span {
            pointer-events: none;
            -webkit-user-select: none;
               -moz-user-select: none;
                -ms-user-select: none;
                    user-select: none;
        }

.dropdown .trigger .menu {
            max-height: 0;
            overflow: hidden;
            position: absolute;
            top: var(--d_top);
            left: var(--d_left);
            right: var(--d_right);
            bottom: var(--d_bottom);
            transform: translateX(-50%);
            z-index: 1;
        }

.dropdown .trigger .menu:before {
                content: "";
                position: absolute;
                z-index: 1;
                display: block;
                width: 6px;
                height: 6px;
                background: 0 0;
                border-style: solid;
                border-width: 5px;
                top: 12px;
                border-color: #fff transparent transparent #fff;
                box-shadow: 1px 1px 5px 0px #0000002b;
                left: 50%;
                transform: translate(-50%, -50%) rotate(45deg);
            }

.dropdown .trigger .menu ul {
                margin-top: 8px;
                margin-bottom: 8px;
                z-index: 1;
                background: #fff;
                box-shadow: 0px 2px 5px 1px #0000002b;
            }

.dropdown .trigger:hover .menu {
                max-height: 999px;
                overflow: unset;
            }

.dropdown.br .trigger .menu:before {
                    top: unset;
                    bottom: 5px;
                }

.dropdown.br .trigger .menu ul {
                    margin-top: 0;
                    margin-bottom: 8px;
                }

/* End Menu */

/* Start Form */

/* Input */

.form-group {
    position: relative;
}

.form-group label {
        font-weight: 500;
        display: inline-block;
        margin-bottom: .3em;
    }

.form-group textarea {
        min-height: 100px;
    }

.form-group .form-control {
        font-family: inherit;
        display: block;
        width: 100%;
        padding: 0.37em 0.75em;
        font-size: initial;
        line-height: 1.5;
        color: #212529;
        background-color: #f5f5f5;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        resize: vertical;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        -moz-appearance: textfield;
    }

.form-group .form-control::-webkit-outer-spin-button,
        .form-group .form-control::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

.form-group .form-control:focus {
            color: #898989;
            background-color: #fff;
            border-color: #e6edef;
            outline: 0;
        }

.form-group .form-control.sb {
            padding: 0.575rem 0.75rem;
        }

.form-group .input-group {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        width: 100%;
    }

.form-group .input-group .group-text {
            display: flex;
            align-items: center;
            padding: 0.37em 0.75em;
            font-size: initial;
            font-weight: 400;
            line-height: 1.5;
            color: #212529;
            text-align: center;
            white-space: nowrap;
            background-color: #e9ecef;
            border: 1px solid #ced4da;
            border-radius: .25em;
        }

.form-group .input-group .group-text:first-child {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

.form-group .input-group .group-text:last-child {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

.form-group .input-group .group-text +.form-control,
            .form-group .input-group .group-text +.form-select {
                border-left: 0;
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

.form-group .input-group .group-text .sub,
            .form-group .input-group .group-text .add {
                border-radius: 0;
                padding: 0px 5px;
                font-size: 150%;
                line-height: 1;
                cursor: pointer;
            }

.form-group .input-group >.form-control,
        .form-group .input-group >.form-select,
        .form-group .input-group >.group-icons {
            position: relative;
            flex: 1 1 auto;
            width: 1%;
            min-width: 0;
            border-right-width: 0;
            border-radius: 0;
        }

.form-group .input-group >:last-child {
            border-right-width: 1px;
            border-radius: 0.25em;
        }

.form-group .input-group >.group-icons .form-control {
                border-left: 0;
                border-right: 0;
                border-radius: 0;
            }

.form-group .group-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

.form-group .group-icon:first-child {
            left: 0.8em;
        }

.form-group .group-icon:last-child {
            right: 0.8em;
        }

.form-group .group-icon +.form-control,
        .form-group .group-icon +.form-select {
            padding-left: 2.5em;
            padding-right: 2.5em;
            border-right-width: 1px;
            border-radius: 0.25em;
        }

.form-group +.form-group {
        margin-top: 15px;
    }

/* End Input */

/* Checkbox */

.checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.checkbox [type="radio"]+.input_inner {
        --ch_border: 50%;
    }

.checkbox.b0 .input_inner {
        --ch_border: 0;
    }

.checkbox.b5 .input_inner {
        --ch_border: 5px;
    }

.checkbox.b50 .input_inner {
        --ch_border: 50%;
    }

.checkbox input {
        display: none;
    }

.checkbox input +.input_inner {
            position: relative;
            display: inline-block;
            width: 1em;
            height: 1em;
            margin-right: 0.4em;
        }

.checkbox input +.input_inner:before {
                content: "";
                border: 2px solid #ddd;
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                aspect-ratio: 1/1;
                border-radius: var(--ch_border);
            }

.checkbox input:checked +.input_inner:before {
                    background-color: #275EFE;
                    border-color: #275EFE;
                }

.checkbox input:checked +.input_inner:after {
                    content: "";
                    width: .2em;
                    height: .4em;
                    border: 2px solid #fff;
                    border-top: 0;
                    border-left: 0;
                    position: absolute;
                    left: 50%;
                    top: 45%;
                    transform: translate(-50%, -50%) rotate(43deg);
                }

.checkbox input:disabled +.input_inner:before {
                    background-color: #d7d7d7;
                    border-color: #d7d7d7;
                }

.checkbox:not(.v2) [type="radio"]:checked+.input_inner:after {
                background: #fff;
                border: none;
                width: 0.6em;
                height: 0.6em;
                border-radius: 50%;
                top: 50%;
            }

.checkbox.button .input_inner {
            display: none;
        }

.checkbox.button span {
            height: 38px;
            padding-left: 12px;
            padding-right: 12px;
            font-weight: 300;
            font-family: inherit;
            border: solid 1px #d9d9d9;
            align-items: center;
            display: inline-flex;
            cursor: pointer;
            --btn-color: #fff;
            --btn-hcolor: #000;
            --btn-radius: 0px;
            color: var(--btn-hcolor);
            background-color: var(--btn-color);
            border-radius: var(--btn-radius);
        }

.checkbox.button input:checked+span+span {
            --btn-color: var(--cprimary);
            --btn-hcolor: #fff;
        }

.checkbox.button input:disabled+span+span {
            --btn-color: #f5f5f5;
            --btn-hcolor: #00000040;
            cursor: not-allowed;
        }

/* Switcher */

.switcher {
    position: relative;
}

.switcher .input_handle {
        display: inline-block;
        min-width: 44px;
        height: 22px;
        line-height: 22px;
        vertical-align: middle;
        background-color: #00000040;
        border: 0;
        border-radius: 100px;
        cursor: pointer;
        transition: all .2s;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

.switcher .input_handle .input_inner {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 18px;
            height: 18px;
            background: #fff;
            border-radius: 50%;
            transition: all .2s ease-in-out;
        }

.switcher .input_handle .input_inner:before {
                position: absolute;
                inset: 0;
                box-shadow: 0 2px 4px #00230b33;
                transition: all .2s ease-in-out;
                content: "";
            }

.switcher input {
        display: none;
    }

.switcher input:checked +.input_handle .input_inner {
                    left: calc(100% - 20px);
                    font-size: 0px;
                }

.switcher input:checked +.input_handle .input_inner span {
                        font-size: initial;
                    }

.switcher1 {
    position: relative;
    display: inline-block;
    background: #bfbfbf;
    padding: 0 5px;
    border-radius: 100px;
}

.switcher1 .input_handle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.switcher1 .input_handle >* {
            width: 50%;
            flex: 0 0 auto;
            z-index: 1;
        }

.switcher1 .input_handle .input_inner {
            position: absolute;
            width: calc(50% - .5em);
            top: .2em;
            bottom: .2em;
            left: .3em;
            background: #fff;
            border-radius: 100px;
        }

.switcher1 .input_handle .input_unactive +.input_active {
                margin-left: .5em;
            }

.switcher1 >input {
        display: none;
    }

.switcher1 >input:checked +.input_handle .input_inner {
                    left: unset;
                    right: .3em;
                }

.switcher2 {
    display: inline-flex;
    align-items: center;
}

.switcher2 .switcher__inner {
        position: relative;
        background: #bfbfbf;
        padding: 0 5px;
        border-radius: 100px;
        --smin_height: 24px;
    }

.switcher2 .switcher__inner.sb {
            --smin_height: 32px;
        }

.switcher2 .switcher__inner .input_handle {
            display: flex;
            align-items: center;
            border-radius: 100px;
            overflow: hidden;
            cursor: pointer;
        }

.switcher2 .switcher__inner .input_handle .switch {
                position: relative;
                flex: 1 1 auto;
                z-index: 1;
                padding: 0 10px;
                min-height: var(--smin_height);
                display: flex;
                align-items: center;
                transition: visibility .1s ease-in-out;
            }

.switcher2 .switcher__inner .input_handle .switch:before {
                    background: #fff;
                    position: absolute;
                    top: .2em;
                    bottom: .2em;
                    right: 0;
                    content: "";
                    left: 0;
                    transition: all .2s ease-in-out;
                    z-index: -1;
                }

.switcher2 .switcher__inner .input_handle .switch.on:before {
                        right: 100%;
                    }

.switcher2 .switcher__inner >input {
            display: none;
        }

.switcher2 .switcher__inner >input:checked +.input_handle .switch.off:before {
                                left: 100%;
                            }

.switcher2 .switcher__inner >input:checked +.input_handle .switch.on:before {
                                right: 0;
                            }

.switcher2.hd .input_handle .switch.on {
                    visibility: hidden;
                }

.switcher2.hd input:checked +.input_handle .switch.off {
                            visibility: hidden;
                        }

.switcher2.hd input:checked +.input_handle .switch.on {
                            visibility: visible;
                        }

.switcher2 >.label {
        margin-left: .5em;
    }

/* End Switcher */

/* Start Select */

.select {
    display:flex;
    flex-direction: column;
    position:relative;
    width:250px;
    height:40px;
}

.select .option {
      padding:0 30px 0 10px;
      min-height:40px;
      display:flex;
      align-items:center;
      background:#fff;
      position:absolute;
      top:0;
      width: 100%;
      pointer-events:none;
      order:2;
      z-index:1;
      transition:background .4s ease-in-out;
      box-sizing:border-box;
      overflow:hidden;
      white-space:nowrap;
    }

.select .option:hover {
        background:#eee;
      }

.select:focus .option {
            position:relative;
            pointer-events:all;
            border-color: transparent;
            border: 1px solid #eee;
            border-top: 0;
        }

.select:focus input:checked + label {
                    border-top: 1px solid #eee;
                    border-bottom-left-radius: 0;
                    border-bottom-right-radius: 0;
                }

.select input {
      opacity:0;
      position:absolute;
      left:-99999px;
    }

.select input:checked + label {
            order: 1;
            z-index:2;
            background:#fff;
            border-top:none;
            position:relative;
            border-radius: 5px;
            border: 1px solid #eee;
          }

.select input:checked + label:after {
                content:'';
                width: 0; 
                height: 0; 
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-top: 5px solid #999;
                position:absolute;
                right:10px;
                top:calc(50% - 2.5px);
                pointer-events:none;
                z-index:3;
            }

/* End Select */

/* End Form */

/* Start Collapse */

.collapse {
    border: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.collapse__header {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        padding: 12px 16px;
        background-color: #fafafa;
        color: #000000d9;
        line-height: 1.5715;
        cursor: pointer;
        transition: all .3s,visibility 0s;
    }

.collapse__header:after {
            content: '';
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #999;
            position: absolute;
            right: 10px;
            top: calc(50% - 2.5px);
            pointer-events: none;
            z-index: 3;
        }

.collapse[open] .collapse__header:after {
                    transform: rotate(180deg)
                }

.collapse[open] .collapse__header ~ * {
                    -webkit-animation: sweep .5s ease-in-out;
                            animation: sweep .5s ease-in-out;
                }

.collapse__body {
        border-top: 1px solid #d9d9d9;
        padding: 12px 16px;
    }

.collapse + .collapse {
        border-top: none;
    }

@-webkit-keyframes sweep {
    0%    {opacity: 0; transform: translateX(-10px)}
    100%  {opacity: 1; transform: translateX(0)}
}

@keyframes sweep {
    0%    {opacity: 0; transform: translateX(-10px)}
    100%  {opacity: 1; transform: translateX(0)}
}

/* End Collapse */

/* Start Pagination */

.pagination ul {
        list-style: none;
    }

.pagination .p_item {
        display: inline-block;
        min-width: 32px;
        height: 32px;
        line-height: 30px;
        text-align: center;
        background-color: #fff;
        border: 1px solid #d9d9d9;
        border-radius: 2px;
        outline: 0;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

.pagination .p_item.active, .pagination .p_item:hover {
            font-weight: 500;
            background: #fff;
            border-color: var(--cprimary);
        }

.pagination .p_item + .p_item {
            margin-left: 5px;
        }

/* End Pagination */

/* Container */

.container,
.main-container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1500px) {
    .container {
        width: 1450px;
    }
}

@media (max-width: 1279px) {
    .container {
        width: 1200px;
    }
}

@media (max-width: 1019px) {
    .container {
        width: 990px;
    }
}

@media (max-width: 767px) {
    .container {
        width: 700px;
    }
}

@media (max-width: 499px) {
    .container {
        width: 100%;
    }
}
