html, body, div, span, object, iframe, menu, h1, h2, h3, h4, p, button, td, tr, tbody, ul, li, dl, dd, dt, figure {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    cursor: inherit;
    -webkit-user-select: inherit;
    -moz-user-select: inherit;
    -ms-user-select: inherit;
    -o-user-select: inherit;
    user-select: inherit;
    /* transition: background-color 0.1s linear, color 0.1s linear; */
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    font-size: 16px;
    overflow-y: scroll;
    min-width: 300px;
    font-family: 'Roboto', 'Fira sans', sans-serif;
    letter-spacing: 0.02em;
    user-select: none;
    color: var(--main-color);
}

input, select {
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

input, textarea {
    -webkit-appearance: none;
    font-family: inherit;
    letter-spacing: inherit;
}

button {
    outline: none;
    background: transparent;
}

a {
    text-decoration: none;
}

.center {
    text-align: center;
}

.body_no_scroll {
    overflow: hidden;
}

.hover_view {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s;
}

.hover_view:hover {
    visibility: visible;
    opacity: 1;
}


@media(min-width: 768px) {
    .scroll_hover {
        overflow: hidden;
    }

    .scroll_hover:hover {
        overflow: auto;
    }
}

::placeholder {
    color: #aaa;
    opacity: 0.5;
}

/**/
@media (min-width: 768px) {
    .selectize-dropdown-content::-webkit-scrollbar-track, .scroll_type::-webkit-scrollbar-track {
        border-radius: 0px;
    }

    .selectize-dropdown-content::-webkit-scrollbar, .scroll_type::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .selectize-dropdown-content::-webkit-scrollbar-thumb, .scroll_type::-webkit-scrollbar-thumb {
        border-radius: 2px;
        background: #2b6b91;
    }

    .selectize-dropdown-content:hover::-webkit-scrollbar-thumb, .scroll_type:hover::-webkit-scrollbar-thumb {
        background: #2b6b91;
    }

    .selectize-dropdown-content, .scroll_type {
        scrollbar-color: #2b6b91 transparent;
        scrollbar-width: thin;
    }
}


.main {
    margin-left: 110px;
    /* padding-bottom: 40px; */
}

.left_min .main {
    margin-left: 134px;
}

@media(max-width: 768px) {
    .main {
        margin-left: 0;
        padding-bottom: 138px;
    }

    .left_min .main {
        margin-left: 0;
    }
}

.left_hide .main {
    margin: 0;
    padding: 0;
}

.content_edit_link {
    width: 18px;
    height: 18px;
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
    margin-bottom: -3px;
    margin: 0 7px;
    cursor: pointer;
    min-width: 18px;
}

@media(max-width: 768px) {
    .content_edit_link {
        width: 14px;
        height: 20px;
    }
}

.input_type {
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 10px 14px;
    border: 2px solid #27A0FF;
    border-radius: 4px;
    background-color: #ffffff;
    color: #000;
    transition: all 0.3s;
    outline: none;
    font-size: 16px;
}

.input_type:focus {
    border-color: #1E8EE8;
}

.left {
    position: fixed;
    background: #ffffff;
    left: 0;
    height: 100%;
    top: 0;
    margin: 0;
    box-sizing: border-box;
    z-index: 150;
    box-shadow: 3px 0 4px #d0d0d0;
}

@media(max-width: 768px) {
    .left {
        padding: 5px 12px 5px;
        border-bottom: 2px solid #27A0FF;
        display: none;
    }
}

.header_m {
    display: none;
}

@media(max-width: 768px) {
    .header_m {
        background-color: #27A0FF;
        border-bottom: 1px solid #1E8EE8;
        display: flex;
        padding: 0px 4px 0px 0px;
        align-items: center;
        justify-content: space-between;
    }
}

.header_m_link {
    padding: 9px;
    font-size: 13px;
    letter-spacing: 0.07em;
    color: #D6C14D;
}

.header_m_r {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
}

.header_m_user {
    width: 44px;
    height: 44px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    background-position: center;
}

.header_m_a {
    display: block;
    width: 38px;
    height: 38px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 12px;
}

.header_m_user_block {
    display: none;
    position: absolute;
    top: 59px;
    width: 240px;
    right: 0;
    background-color: #ffffff;
    /* border-left: 1px solid #1E8EE8; */
    /* border-bottom: 1px solid #1E8EE8; */
    z-index: 10000;
    border-radius: 0 0 0 5px;
    box-shadow: -2px 2px 3px #606060a1;
}

.left {
    width: 134px;
}

.left_menu a span {
    transition: 0.3s;
}

.left_menu_item span {
    /* opacity: 0; */
    transition: 0.3s;
    text-align: center;
}


.left_in {
    margin: auto;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 134px;
    position: relative;
    height: 100%;
    /* overflow: hidden; */
}

@media(max-width: 630px) {
    .left_in {
        height: 58px;
    }
}

.left_top {
    transition: all 0.2s;
    display: flex;
    justify-content: center;
}

@media(max-width: 1024px) {
    .left_top {
        /* width: 50%; */
    }
}

@media(max-width: 630px) {
    .left_top {
        width: 80%;
    }
}

.left_middle {
    height: calc(100% - 190px);
    overflow: hidden;
    overflow-y: auto;
    min-width: 140px;
}


.online_circle {
    display: inline-flex;
    width: 10px;
    height: 10px;
    background-color: #00A658;
    border-radius: 50%;
    margin: 0 3px;
}

.logo {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.2s;
    height: 104px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 8px; */
}

@media(max-width: 768px) {
    .logo {
        align-items: center;
        justify-content: center;
        height: 102px;
    }
}

@media(max-width: 768px) {
    .logo {
        align-items: center;
        justify-content: center;
        height: 58px;
        width: 156px;
        padding: 0 9px;
        overflow: hidden;
    }
}

.logo:hover {
    color: #fff;
}

.logo_icon {
    /* position: absolute; */
    content: '';
    background-size: 100%;
    /* width: 180px; */
    height: 98px;
    background-repeat: no-repeat;
    display: block;
    margin-right: 8px;
    margin-top: -3px;
    margin: auto;
    transition: all 0.2s;
    /* display: none; */
}

@media(max-width: 768px) {
    .logo_icon {
        background-size: 100%;
        background-position: top center;
        height: 75px;
        width: 110px;
    }
}

@media(max-width: 768px) {
    .logo_icon {
        background-size: 100%;
        background-position: left top;
        height: 41px;
        width: 89px;
    }
}

.logo_text {
    transition: 0.3s;
}

.header_min .logo_text {
    opacity: 0;
}

.logo span {
    font-size: 13px;
    display: block;
    /* text-align: right; */
    text-transform: unset;
    color: #ffffff;
    font-weight: 300;
    position: absolute;
    top: -6px;
    right: 6px;
}

@media(max-width: 630px) {
    .logo:before {
        width:45px;
        height: 41px;
        top: -1px;
    }
}

.logo_icon_min {
    width: 80px;
    height: 58px;
    /* position: absolute; */
    transition: all 0.3s;
    transform: scale(1.7);
    background-repeat: no-repeat;
    opacity: 1;
    transform: scale(1);
    background-size: 100%;
    margin-bottom: 4px;
}

.logo_icon_text {
    width: 85px;
    height: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.logo_icon_min img {
    width: 100%;
}


.botton_one {
    background: #FFE100;
    color: #000;
    padding: 15px;
    margin: auto;
    display: block;
    border-radius: 3px;
    min-width: 275px;
    cursor: pointer;
    transition: all 0.15s linear;
    max-width: 100%;
}

.botton_one:hover {
    background-color: #FFC700;
}

.button_two {
    background: #FFE100;
    padding: 14px 21px;
    text-transform: uppercase;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    bottom: 10px;
    box-sizing: border-box;
    transition: all 0.15s linear;
    border-radius: 4px;
    letter-spacing: 0.05em;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 630px) {
    .button_two {
        padding: 14px 11px;
        font-size: 13px;
    }
}

.button_two:hover {
    background-color: #FFC700;
}

.button_two:disabled {
    background-color: #535353;
    cursor: default;
    opacity: 0.9;
}


.button_three {
    padding: 6px 12px 5px;
    display: inline-flex;
    color: #000;
    background-color: #FFE100;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    justify-content: center;
}

.button_four {
    background: transparent;
    padding: 9px 21px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s linear;
    border-radius: 4px;
    letter-spacing: 0.05em;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4A7C99;
}

.button_icon {
    width: 20px;
    height: 17px;
    background-size: 100%;
    margin-right: 10px;
    background-repeat: no-repeat;
}

.button_two_d {
    background-color: #993e3e;
}


.info_icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}

@media(max-width: 1024px) {
    .info_icon {
        position: unset;
    }
}

.info_fade {
    position: absolute;
    z-index: 100;
    left: -200px;
    width: 600px;
    top: 34px;
    /* display:none; */
    opacity: 0;
    transition: all 0.2s;
    visibility: hidden;
}

@media(max-width: 1024px) {
    .info_fade {
        left: 0;
        width: 100%;
        top: 128px;
        /* display:none; */
        opacity: 0;
        transition: all 0.2s;
        visibility: hidden;
    }
}

.info_icon:hover .info_fade {
    display: block;
    opacity: 1;
    visibility: visible;
}


.share_link {
    width: 280px;
    margin-bottom: 12px;
    padding: 14px 0;
    letter-spacing: 0.11em;
}














/* Rating */
.rating {
    margin: 0 0 14px 0;
    padding: 0;
    border: none;
    text-align: center;
}

/* Caption */
.rating__caption {
    margin-bottom: 0.5em;
    padding: 0;
}

/* Group */
.rating__group {
    position: relative;
    width: 10em;
    height: 2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.286' height='37.287'%3E%3Cpath fill='%230E3145' d='M36.683 16.339l-7.567 7.377 1.786 10.417a2.006 2.006 0 01-1.973 2.339 2 2 0 01-.931-.23l-9.355-4.918-9.355 4.918a2.005 2.005 0 01-2.107-.15 2.002 2.002 0 01-.795-1.957l1.787-10.417L.604 16.34a2.001 2.001 0 01-.508-2.05 2.002 2.002 0 011.615-1.361l10.459-1.521 4.68-9.478a1.997 1.997 0 013.585-.001l4.68 9.478 10.461 1.521a1.992 1.992 0 011.611 1.361 1.997 1.997 0 01-.504 2.05z'/%3E%3C/svg%3E");
    background-size: 2em auto;
    background-repeat: repeat-x;
    margin: auto;
}

/* Star */
.rating__star {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 2em;
    font-size: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-size: 2em auto;
    background-repeat: repeat-x;
    cursor: pointer;
}

.rating__star:focus {
    outline: none;
}

.rating__star:focus ~ .rating__focus {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    outline: 0.2em solid #4a90e2;
    outline-offset: 0.2em;
}

.rating__star:hover, .rating__star:checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.286' height='37.287'%3E%3Cpath fill='%23FFEB01' d='M36.683 16.339l-7.567 7.377 1.786 10.417a2.006 2.006 0 01-1.973 2.339 2 2 0 01-.931-.23l-9.355-4.918-9.355 4.918a2.005 2.005 0 01-2.107-.15 2.002 2.002 0 01-.795-1.957l1.787-10.417L.604 16.34a2.001 2.001 0 01-.508-2.05 2.002 2.002 0 011.615-1.361l10.459-1.521 4.68-9.478a1.997 1.997 0 013.585-.001l4.68 9.478 10.461 1.521a1.992 1.992 0 011.611 1.361 1.997 1.997 0 01-.504 2.05z'/%3E%3C/svg%3E");
}

.rating__star:hover ~ .rating__star {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.286' height='37.287'%3E%3Cpath fill='%230E3145' d='M36.683 16.339l-7.567 7.377 1.786 10.417a2.006 2.006 0 01-1.973 2.339 2 2 0 01-.931-.23l-9.355-4.918-9.355 4.918a2.005 2.005 0 01-2.107-.15 2.002 2.002 0 01-.795-1.957l1.787-10.417L.604 16.34a2.001 2.001 0 01-.508-2.05 2.002 2.002 0 011.615-1.361l10.459-1.521 4.68-9.478a1.997 1.997 0 013.585-.001l4.68 9.478 10.461 1.521a1.992 1.992 0 011.611 1.361 1.997 1.997 0 01-.504 2.05z'/%3E%3C/svg%3E");
}

/* Options */
.rating__star:nth-of-type(1) {
    z-index: 5;
    width: 2em;
}

.rating__star:nth-of-type(2) {
    z-index: 4;
    width: 4em;
}

.rating__star:nth-of-type(3) {
    z-index: 3;
    width: 6em;
}

.rating__star:nth-of-type(4) {
    z-index: 2;
    width: 8em;
}

.rating__star:nth-of-type(5) {
    z-index: 1;
    width: 10em;
}



.bottom_grad {
    display: block;
    background: linear-gradient(0deg,#ffffff 0,#ffffff00 100%);
    width: 100%;
    bottom: 0;
    height: 32px;
    position: absolute;
}

.top_grad {
    display: block;
    background: linear-gradient(180deg,#ffffff 0,#ffffff00 100%);
    width: 100%;
    top: 0;
    height: 15px;
    position: absolute;
}


.__jivoMobileButton {
    margin-bottom: 50px !important;
    z-index: 150 !important;
}


/*  */
.transparent {
    opacity: 0;
}

.pay_redir_button {
    opacity: 0;
}


.modal-video {
    display: none;
}

.pop_video .pop_form {
    padding: 0;
    max-width: 700px;
    width: unset;
}



.hidden {
    display: none;
}
