html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
body {
    font-family: 'Rubik', sans-serif
}
*, *::before, *::after {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    outline: none
}

a {
    color: #fff;
    cursor: pointer;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

a:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none !important
}

a:hover {
    text-decoration: none
}

h1, h2, h3, h4, h5, h6 {
    margin: 1.5rem 0;
    color: white !important;
}

h1 {
    font-size: 2.25em
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 24px;
        line-height: 1.2
    }
}

@media screen and (max-width: 1200px) {
    h2 {
        font-size: 18px;
        line-height: 1.2
    }
}

p, ul, ol {
    margin: 1.5rem 0
}

ul {
    padding-left: 30px
}

img {
    max-width: 100%;
    height: auto
}

table {
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    border: 24px solid transparent;
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-radius: 10px
}

table tr:not(:last-child) td {
    border-bottom: 1px dashed rgba(255, 255, 255, .25)
}

table td {
    padding: 12px;
    border: 0
}

table td:first-child {
    padding-left: 0
}

table td:last-child {
    padding-right: 0
}

label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    color: var(--heading-color)
}

label.error {
    margin-bottom: 0;
    color: #FF9494
}

input, textarea {
    width: 100%;
    padding: 12px 16px 11px;
    border-radius: 4px;
    background: var(--accent-color-2);
    font-size: 14px;
    line-height: 1.5;
    color: var(--heading-color);
    border: 0;
    resize: none;
    font-family: inherit
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--text-color)
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: var(--text-color)
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: var(--text-color)
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: var(--text-color)
}

input::placeholder, textarea::placeholder {
    color: var(--text-color)
}

button {
    font-family: inherit
}

.wp-block-image {
    margin: 30px 0
}

#qm-fatal {
    color: #000
}

body {
    min-width: 320px;
    overflow-x: hidden;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    background: var(--site-bg-color);
    color: var(--text-color)
}

@media screen and (max-width: 1200px) {
    body {
        font-size: 14px
    }
}

.body-wrapper {
    position: relative;
    overflow: hidden !important;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.content {
    position: relative;
    -webkit-box-flex: 1;
    flex-grow: 1;
    padding: 40px 0 80px
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

.content-wrapper {
    max-width: 1200px
}

.content-wrapper--sidebar {
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 1200px) {
    .content-wrapper--sidebar {
        max-width: 740px;
        display: block
    }
}

main.site-content {
    width: 100%;
    max-width: 1200px;
}

@media screen and (max-width: 1200px) {
    .entry-content .wp-block-image {
        margin-left: -15px;
        margin-right: -15px
    }

    .entry-content .wp-block-image img {
        border-radius: 0 !important
    }

    .entry-content .wp-block-table {
        margin-left: -15px;
        margin-right: -15px
    }

    .entry-content .wp-block-table table {
        border-radius: 0
    }
}

.btn {
    display: inline-block;
    padding: 18px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--buttons-color);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.btn:hover {
    background: var(--buttons-color)
}

.btn--fill {
    background: var(--buttons-color)
}

.btn--fill:hover {
    background: transparent
}

.lang {
    position: relative;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    cursor: pointer
}

.lang:hover .lang__current i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.lang:hover .lang__list {
    opacity: 1;
    pointer-events: unset
}

.lang__current {
    color: #fff
}

.lang__current i {
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.lang__list {
    position: absolute;
    left: -10px;
    top: 100%;
    z-index: 1;
    margin: 0;
    padding: 5px 0;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.lang__list li {
    list-style: none
}

.lang__list li a {
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.lang__list li a:hover {
    background: rgba(0, 0, 0, .2)
}

.rating i {
    margin: 0 3px;
    color: #ffb543
}

.rating i.empty {
    color: #C5C5C5
}

.rating i.half {
    position: relative
}

.rating i.half .empty {
    width: 50%;
    height: 100%;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden
}

.rating i.half .empty::before {
    position: absolute;
    right: 0;
    top: 0
}

.rating-form {
    width: 225px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.rating-form__stars {
    margin: 0 -8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.rating-form__stars svg {
    display: block;
    margin: 0 8px;
    fill: var(--accent-color-2);
    stroke: rgba(255, 255, 255, .1);
    cursor: pointer;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.rating-form__stars svg.active, .rating-form__stars svg.hover {
    fill: #FFB543;
    stroke: #FFB543
}

.rating-form__value {
    margin-left: 24px;
    width: 17px;
    padding: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #FFB543;
    background: transparent
}

.rating-form label.error {
    width: 100%
}

.checkbox {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer
}

.checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    pointer-events: none
}

.checkbox input:checked ~ .checkbox__item {
    border-color: rgba(255, 255, 255, .2) !important
}

.checkbox input:checked ~ .checkbox__item::before {
    opacity: 1
}

.checkbox label.error {
    display: none !important
}

.checkbox label.error + .checkbox__item {
    border-color: #FF9494
}

.checkbox__item {
    width: 1rem;
    height: 1rem;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 1rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .25rem;
    background: var(--accent-color-2)
}

.checkbox__item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBzdHlsZT0iZmlsbDogcmdiYSgyNTUsIDI1NSwgMjU1LCAxKTt0cmFuc2Zvcm06IDttc0ZpbHRlcjo7Ij48cGF0aCBkPSJtMTAgMTUuNTg2LTMuMjkzLTMuMjkzLTEuNDE0IDEuNDE0TDEwIDE4LjQxNGw5LjcwNy05LjcwNy0xLjQxNC0xLjQxNHoiPjwvcGF0aD48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.checkbox span {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-color)
}

.scroll-up {
    width: 56px;
    height: 56px;
    position: fixed;
    right: calc(50% - 585px);
    bottom: 50px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    color: var(--heading-color);
    background: var(--buttons-color)
}

.scroll-up--bottom {
    position: absolute
}

@media screen and (max-width: 1200px) {
    .scroll-up {
        display: none !important
    }
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px;
    padding: 0
}

.menu__list li {
    list-style: none
}

.menu__list li a {
    display: inline-block;
    padding: 16px 12px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out
}

.menu__list li a:hover {
    background: rgba(0, 0, 0, .1)
}

.menu-mobile {
    padding: 22px 40px 42px;
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 999;
    width: 100vw;
    height: calc(100vh - 100%);
    background: var(--site-bg-color);
    overflow-y: scroll;
    scrollbar-width: none
}

.menu-mobile::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none
}

.menu-mobile__main .menu__list {
    margin: 0;
    display: block
}

.menu-mobile__main .menu__list li a {
    padding: 10px 0
}

.menu-mobile__sep {
    margin: 18px 0;
    border-color: var(--accent-color);
    border-top: 0
}

.menu-mobile__second .menu__list {
    margin: 0;
    display: block
}

.menu-mobile__second .menu__list li a {
    padding: 8px 0;
    color: var(--text-color);
    text-transform: unset
}

@media screen and (min-width: 1201px) {
    .menu-mobile {
        display: none !important
    }
}

.top-disclaimer {
    padding: 6px 0;
    background: #000
}

.top-disclaimer__content {
    text-align: center;
    font-size: 14px;
    line-height: 1;
    color: #fff
}

@media screen and (max-width: 1200px) {
    .top-disclaimer__content {
        font-size: 10px
    }
}

.burger {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden
}

.burger span, .burger::before, .burger::after {
    width: 20px;
    height: 1px;
    position: absolute;
    left: 50%;
    display: block;
    background: var(--heading-color)
}

.burger::before, .burger::after {
    content: '';
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.burger span {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .2s .1s;
    -o-transition: all .2s .1s;
    transition: all .2s .1s
}

.burger::before {
    top: 50%;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px)
}

.burger::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 5px);
    -ms-transform: translate(-50%, 5px);
    transform: translate(-50%, 5px)
}

.burger.active span {
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
    opacity: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

.burger.active::before, .burger.active::after {
    -webkit-transition: all .2s .1s;
    -o-transition: all .2s .1s;
    transition: all .2s .1s
}

.burger.active::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg)
}

.burger.active::after {
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    -ms-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg)
}

.header {
    position: relative
}

.header__top {
    background: var(--accent-color)
}

.header__bottom {
    background: rgba(255, 255, 255, .05);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.header__bottom .menu__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header__bottom .menu__list li a {
    text-transform: unset
}

.header__mobile-buttons {
    display: none
}

.header__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__burger {
    display: none
}

.header__logo {
    width: 166px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 36px
}

.header__logo > a {
    display: block;
    width: 100%
}

.header__logo > a img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain
}

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.header__lang {
    margin-right: 8px
}

.header__button {
    margin-left: 16px;
    padding: 8px 15px
}

@media screen and (max-width: 1200px) {
    .header {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999
    }

    .header__top {
        padding: 18px 0
    }

    .header__bottom {
        background: var(--accent-color-2)
    }

    .header__bottom .menu {
        display: none
    }

    .header__mobile-buttons {
        padding: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .header__mobile-buttons .header__button {
        display: inline-block;
        margin: 0 8px
    }

    .header__inner {
        position: relative;
        justify-content: space-between;
    }

    .header__actions {
        margin-left: 0;
    }

    .header__burger {
        display: block
    }

    .header__logo {
        width: 118px;
        margin: 0
    }
}

.footer {
    padding: 40px 0;
    background: var(--accent-color-3)
}

.footer__description {
    margin: 24px 0;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: rgba(255, 255, 255, .6)
}

.footer__copyright {
    margin: 24px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, .7)
}

.footer .menu__list {
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer .menu__list li {
    position: relative
}

.footer .menu__list li:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    top: calc(50% - 2px);
    right: -2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2)
}

.footer .menu__list li a {
    margin: 0 14px;
    padding: 0;
    font-weight: 400;
    text-transform: unset;
    color: rgba(255, 255, 255, .6)
}

.widget-area {
    width: 100%;
    max-width: 370px
}

.widget-area .app {
    margin-top: 0;
    margin-bottom: 0;
    padding: 30px
}

.widget-area .app .wp-block-image {
    margin: 0
}

@media screen and (max-width: 1200px) {
    .widget-area {
        margin: 0 auto
    }
}

.breadcrumbs {
    margin: 0 0 -.5rem;
    font-size: 12px;
    line-height: 21px;
    color: rgba(255, 255, 255, .2)
}

.breadcrumbs a {
    color: var(--text-color);
    text-decoration: none
}

.breadcrumbs span {
    font-weight: 600;
    color: var(--heading-color)
}

.comment {
    margin: 12px 0;
    padding: 20px;
    background: var(--accent-color-2);
    border: 1px solid var(--accent-color);
    border-radius: 12px
}

.comment__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 576px) {
    .comment__header {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.comment__author {
    font-weight: 600;
    color: var(--heading-color)
}

@media screen and (max-width: 576px) {
    .comment__author {
        font-size: 16px
    }
}

.comment__date {
    margin-left: 16px;
    font-size: 14px
}

@media screen and (max-width: 576px) {
    .comment__date {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-left: 0;
        margin-top: 3px;
        font-size: 12px
    }
}

.comment__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: #FFB543
}

.comment__score .rating {
    margin-right: 9px
}

.comment__text {
    margin: calc(17px - 1.5rem) 0 -1.5rem
}

.comment__preview {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(0, 0, 0, .3);
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    text-align: center
}

.comment--preview {
    position: relative;
    opacity: .5
}

.comments {
    margin: 54px 0 0
}

.comments__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 576px) {
    .comments__header {
        display: block
    }
}

.comments__title {
    margin: 0
}

.comments__title span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #3D80DE
}

.comments__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px
}

.comments__score .rating {
    margin: 0 13px
}

.comments__score-count span {
    font-weight: 700;
    color: #FFB543
}

.comments__list {
    margin: 1.5rem 0
}

.comments__more {
    display: block;
    width: 100%;
    margin: 1.5rem 0;
    border-color: var(--buttons-color-2)
}

.comments__more:hover {
    background: var(--buttons-color-2)
}

.comment-form {
    margin-top: 2.5rem;
    padding: 30px 35px 35px;
    background: var(--accent-color-3);
    -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    border-radius: 10px
}

.comment-form__title {
    margin-top: 0;
    font-size: 1.25rem
}

.comment-form__form {
    margin-bottom: -1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.comment-form__form button {
    padding: 12px
}

.comment-form__item {
    margin-top: 0;
    width: 100%
}

.comment-form__item.w33 {
    width: calc((100% - 40px) / 3)
}

.comment-form__item.w50 {
    width: calc((100% - 20px) / 2)
}

.comment-form__item.w66 {
    width: calc(100% - ((100% - 40px) / 3) - 20px)
}

@media screen and (max-width: 576px) {
    .comment-form__item.w33, .comment-form__item.w50, .comment-form__item.w66 {
        width: 100%
    }
}

.comment-form__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comment-form__rating-descr {
    margin-left: 24px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5
}

.comment-form__rating-descr::before {
    content: '';
    width: 1px;
    height: 36px;
    position: absolute;
    top: calc(50% - 18px);
    left: 0;
    background: rgba(255, 255, 255, .2)
}

@media screen and (max-width: 576px) {
    .comment-form__rating-descr {
        display: none
    }
}

.comment-form__agreement {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comment-form__submit-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.comment-form__submit {
    width: 100%
}

@media screen and (max-width: 576px) {
    .comment-form {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        border-radius: 0
    }
}

.error-404 {
    text-align: center
}

.error-404__title {
    font-size: 10em
}

.error-404__back {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 200px
}
.entry-content a {
    color: #ade8f0;
}

a.click-coupon {
    font-weight: bold;
}

td.open-tovar a {
    background: #339900;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

tr.item-tovars td {
    display: flex;
}

td.open-tovar {
    float: right;
}


table.full_ {
    background: #1a233a;
    margin-top: 20px;
    border: 1px solid;
    width: 100%;
    border-collapse: inherit;
    padding: 20px;
}

.rmp-rating-widget.js-rmp-rating-widget {
    display: none;
}


a.click-coupon {
    font-weight: bold;
}

td.open-tovar a {
    background: #00061a;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    color: #ade8f0;
}

tr.item-tovars td {
    display: flex;
}

td.open-tovar {
    float: right;
}


table.full_ {
    background: #1a233a;
    margin-top: 20px;
    border: 1px solid;
    width: 100%;
    border-collapse: inherit;
    padding: 20px;
}

a.click-coupon {
    color: #ade8f0;
    text-decoration: none;
}

td.tovav-content {
    padding: 10px;
}

ul#menu-footer {
    display: none;
}


h1.entry-title {
    color: #ade8f0;
}

h2 {
    color: rgba(255, 255, 255, .8);
}

h3 {
    color: #ade8f0;
}


.header__top {
    background: #00061a;
}


.burger span, .burger::before, .burger::after {
    background: #fff !important;
}


footer.footer {
    background: #00061a;
}


a.header__button.btn {
    background: #1a233a;
    border: 1px solid #fff;
}

a.header__button.btn.btn--fill {
    background: #ade8f0;
    border: 1px solid #fff;
    color: #1a233a;
}


nav.menu ul li a {
    color: #ade8f0;
}


div#ez-toc-container {
    background: #1a233a;
    border: 1px solid #646162;
    max-width: 95%;
}


.faq__item:hover, .faq__item.active {
    background: #444444 !important;
}


.faq__item {
    border-color: #ffffff !important;
}

.faq__question::after {
    --icon-color: #ffffff !important;
}

h4.faq__question {
    color: #ade8f0;
}

.breadcrumbs span {
    font-weight: 600;
    color: #ade8f0;
}


.cb_play a {
    border: none !important;
}


.csl_sliders_block .btn.btn--outline-2 {
    border-color: #ffffff;
}
@media screen and (max-width: 1200px) {
    .header__mobile-buttons {
        background: #1a233a
    }
}

@media (max-width: 850px) {
    .header__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    main {
        margin-top: 130px;
    }
}
main img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}
table {
    margin: 30px 0;
    width: 100%;
}
td, th {
    word-break: break-all;
    text-align: center;
}
