:root {
    --container-width: 1220px;
    --container-offset: 20px;
    --container-offset-mobile: 16px;
    --color-primary: #d70404;
    --color-primary--rgb: 215, 4, 4;
    --color-primary-dark: #ae0000;
    --color-primary-dark--rgb: 174, 0, 0;
    --color-secondary: #ffd914;
    --color-secondary--rgb: 255, 217, 20;
    --color-gray: #77787a;
    --color-gray--rgb: 119, 120, 122;
    --color-success: #33cc33;
    --color-success--rgb: 51, 204, 51;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

body,
html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    font-family: Gilroy, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    padding: 0;
    border: none;
    background-color: transparent;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.body--lock {
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    padding: 0 var(--container-offset);
    margin: 0 auto;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-1 {
    padding-top: .25rem;
}

.pb-1 {
    padding-bottom: .25rem;
}

.pt-2 {
    padding-top: .5rem;
}

.pb-2 {
    padding-bottom: .5rem;
}

.pt-3 {
    padding-top: .75rem;
}

.pb-3 {
    padding-bottom: .75rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pt-7 {
    padding-top: 1.75rem;
}

.pb-7 {
    padding-bottom: 1.75rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.pt-9 {
    padding-top: 2.25rem;
}

.pb-9 {
    padding-bottom: 2.25rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pt-11 {
    padding-top: 2.75rem;
}

.pb-11 {
    padding-bottom: 2.75rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pt-14 {
    padding-top: 3.5rem;
}

.pb-14 {
    padding-bottom: 3.5rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pb-16 {
    padding-bottom: 4rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.title1,
.title2,
.title3,
.title4,
.title5 {
    font-weight: 700;
}

.title1 b,
.title2 b,
.title3 b,
.title4 b,
.title5 b {
    color: var(--color-secondary);
}

.title1 span,
.title2 span,
.title3 span {
    color: var(--color-secondary);
}

.title1--primary,
.title2--primary,
.title3--primary,
.title4--primary,
.title5--primary {
    color: var(--color-primary);
}

.title1--white,
.title2--white,
.title3--white,
.title4--white,
.title5--white {
    color: #fff;
}

.title1--semibold,
.title2--semibold,
.title3--semibold,
.title4--semibold,
.title5--semibold {
    font-weight: 600;
}

.title1--regular,
.title2--regular,
.title3--regular,
.title4--regular,
.title5--regular {
    font-weight: 400;
}

.title1--upper,
.title2--upper,
.title3--upper,
.title4--upper,
.title5--upper {
    text-transform: uppercase;
}

.title1--lh-1,
.title2--lh-1,
.title3--lh-1,
.title4--lh-1,
.title5--lh-1 {
    line-height: 1;
}

.title1--lh-13,
.title2--lh-13,
.title3--lh-13,
.title4--lh-13,
.title5--lh-13 {
    line-height: 1.3;
}

.title1--center,
.title2--center,
.title3--center,
.title4--center,
.title5--center {
    text-align: center;
}

.title1 {
    font-size: 50px;
    line-height: 1.2;
}

.title2 {
    font-size: 40px;
}

.title3 {
    font-size: 30px;
}

.title4 {
    font-size: 24px;
}

.title5 {
    font-size: 20px;
}

.text {
    line-height: 20px;
}

.text__icon {
    flex: 0 0 auto;
}

.text__icon:first-child:not(:last-child) {
    margin-right: 10px;
}

.text__icon:last-child:not(:first-child) {
    margin-left: 10px;
}

.text__icon--mx-sm:first-child:not(:last-child) {
    margin-right: 8px;
}

.text__icon--mx-sm:last-child:not(:first-child) {
    margin-left: 8px;
}

.text__icon--mx-lg:first-child:not(:last-child) {
    margin-right: 12px;
}

.text__icon--mx-lg:last-child:not(:first-child) {
    margin-left: 12px;
}

.text__icon--mx-xxl:first-child:not(:last-child) {
    margin-right: 20px;
}

.text__icon--mx-xxl:last-child:not(:first-child) {
    margin-left: 20px;
}

.text__icon--mt-xs {
    margin-top: 3px;
}

.text__icon--xl {
    width: 40px;
}

.text__icon--sm {
    width: 20px;
}

.text__icon--xs {
    width: 16px;
}

.text__icon--primary-white {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border: 2px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}

.text__icon--primary-white img {
    width: 14px;
    height: 12px;
    -o-object-fit: contain;
    object-fit: contain;
}

.text p:not(:first-child) {
    margin-top: 20px;
}

.text b {
    font-weight: 700;
}

.text a:not(.btn) {
    color: var(--color-primary);
    text-decoration: underline;
}

.text--link-second a {
    color: var(--color-secondary);
}

.text--link-line a {
    text-decoration: underline;
}

.text--link-line a:hover {
    text-decoration: none;
}

.text--white {
    color: #fff;
}

.text--gray {
    color: var(--color-gray);
}

.text--black {
    color: #000;
}

.text--primary {
    color: var(--color-primary);
}

.text--success {
    color: var(--color-success);
}

.text--second {
    color: var(--color-secondary);
}

.text--blue-dark {
    color: #405070;
}

.text--semibold {
    font-weight: 600;
}

.text--bold {
    font-weight: 700;
}

.text--upper {
    text-transform: uppercase;
}

.text--center {
    text-align: center;
}

.text--lh-15 {
    line-height: 1.5;
}

.text--iflex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text--flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text--justify-start {
    justify-content: start;
}

.text--items-start {
    align-items: flex-start;
}

.text--flex-start {
    align-items: flex-start;
    justify-content: flex-start;
}

.text--xxl {
    font-size: 24px;
}

.text--xl {
    font-size: 20px;
}

.text--lg {
    font-size: 18px;
}

.text--sm {
    font-size: 14px;
    line-height: 18px;
}

.text--xs {
    font-size: 12px;
}

.text--xxs {
    font-size: 10px;
}

.text--upper {
    text-transform: uppercase;
}

.text--line {
    text-decoration: underline;
}

.text ul {
    margin-top: 20px;
}

.text ul li {
    position: relative;
    padding-left: 32px;
    line-height: 20px;
    list-style: none;
}

.text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.text ul li:not(:first-child) {
    margin-top: 18px;
}

.text ol {
    margin-top: 40px;
}

.text ol li {
    position: relative;
    line-height: 20px;
    list-style: decimal;
    list-style-position: inside;
}

.text ol li:not(:first-child) {
    margin-top: 18px;
}

img.align_center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.align_left {
    float: left;
    margin-top: 0;
    margin-left: 0;
    margin-right: 15px;
}

img.align_right {
    float: right;
    margin-left: 15px;
    margin-right: 0;
    margin-top: 0;
}

.btn {
    padding: 8px 28px;
    background-color: var(--color-primary);
    border: 1px solid transparent;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    line-height: 1.4;
    font-weight: 600;
    transition: color .3s, background .3s;
}

.btn__icon {
    flex: 0 0 auto;
}

.btn__icon:first-child:not(:last-child) {
    margin-right: 10px;
}

.btn__icon:last-child:not(:first-child) {
    margin-left: 10px;
}

.btn__icon--mx-sm:first-child:not(:last-child) {
    margin-right: 8px;
}

.btn__icon--mx-sm:last-child:not(:first-child) {
    margin-left: 8px;
}

.btn__icon--mx-lg:first-child:not(:last-child) {
    margin-right: 12px;
}

.btn__icon--mx-lg:last-child:not(:first-child) {
    margin-left: 12px;
}

.btn__icon--mx-xxl:first-child:not(:last-child) {
    margin-right: 20px;
}

.btn__icon--mx-xxl:last-child:not(:first-child) {
    margin-left: 20px;
}

.btn--second {
    background-color: var(--color-secondary);
}

.btn--success {
    background-color: var(--color-success);
}

.btn--white {
    background-color: #fff;
    color: var(--color-primary);
}

.btn--border {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn--border-success {
    background-color: transparent;
    border-color: var(--color-success);
    color: var(--color-success);
}

.btn--xs {
    padding-left: 12px;
    padding-right: 12px;
}

.btn--sm {
    padding-left: 20px;
    padding-right: 20px;
}

.btn--lg {
    padding-top: 13px;
    padding-bottom: 13px;
}

.btn--text-xl {
    font-size: 20px;
}

.btn--bold {
    font-weight: 700;
}

.btn--upper {
    text-transform: uppercase;
}

.btn--iflex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--text-left {
    text-align: left;
}

.btn--full {
    width: 100%;
}

.btn--text-black {
    color: #000;
}

a.btn--text-black {
    color: #000;
}

@media (min-width:767.01px) {
    .btn:hover {
        background-color: #b40505;
    }

    .btn--white:hover {
        background-color: #e7e9e9;
    }

    .btn--success:hover {
        background-color: #22b322;
    }

    .btn--border:hover {
        background-color: rgba(var(--color-primary--rgb), .1);
    }

    .btn--border-success:hover {
        background-color: rgba(var(--color-success--rgb), .1);
    }

    .btn--hover-border:hover {
        background-color: transparent;
        border-color: var(--color-primary);
    }
}

.btn-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 5px;
    transition: background .3s;
}

.btn-icon:hover {
    background-color: #b40505;
}

.btn-icon--lg {
    width: 40px;
    height: 40px;
}

.btn-icon--circle {
    border-radius: 50%;
}

.btn-icon--success {
    background-color: var(--color-success);
}

.btn-icon--success:hover {
    background-color: #22b322;
}

.btn-get {
    padding: 8px 12px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a6a6a6;
    background-color: #fff;
    border-radius: 7px;
}

.link {
    transition: color .3s, background .3s;
}

.link__icon {
    flex: 0 0 auto;
}

.link__icon:first-child:not(:last-child) {
    margin-right: 10px;
}

.link__icon:last-child:not(:first-child) {
    margin-left: 10px;
}

.link__icon--mx-sm:first-child:not(:last-child) {
    margin-right: 8px;
}

.link__icon--mx-sm:last-child:not(:first-child) {
    margin-left: 8px;
}

.link__icon--mx-lg:first-child:not(:last-child) {
    margin-right: 12px;
}

.link__icon--mx-lg:last-child:not(:first-child) {
    margin-left: 12px;
}

.link__icon--mx-xxl:first-child:not(:last-child) {
    margin-right: 20px;
}

.link__icon--mx-xxl:last-child:not(:first-child) {
    margin-left: 20px;
}

.link:hover {
    color: var(--color-primary);
}

.link--line {
    text-decoration: underline;
}

.link--line:hover {
    text-decoration: none;
}

.link--hover-line:hover {
    text-decoration: underline;
}

.link--primary {
    color: var(--color-primary);
}

.link--second {
    color: var(--color-secondary);
}

.link--second:hover {
    color: var(--color-secondary);
}

.link--white {
    color: #fff;
}

.link--white:hover {
    color: #fff;
}

.link--hover-black:hover {
    color: #000;
}

.link--semibold {
    font-weight: 600;
}

.link--iblock {
    display: inline-block;
}

.link--iflex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.link--flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link--justify-start {
    justify-content: flex-start;
}

.link--sm {
    font-size: 14px;
}

.link--lg {
    font-size: 18px;
}

.link--xl {
    font-size: 20px;
}

.link--bold {
    font-weight: 700;
}

.icon {
    width: 20px;
    height: 20px;
}

.icon--width-auto {
    width: auto;
}

.icon--size-30 {
    width: 30px;
    height: 30px;
}

.icon--size-29 {
    width: 29px;
    height: 29px;
}

.icon--size-28 {
    width: 28px;
    height: 28px;
}

.icon--size-27 {
    width: 27px;
    height: 27px;
}

.icon--size-26 {
    width: 26px;
    height: 26px;
}

.icon--size-25 {
    width: 25px;
    height: 25px;
}

.icon--size-24 {
    width: 24px;
    height: 24px;
}

.icon--size-23 {
    width: 23px;
    height: 23px;
}

.icon--size-22 {
    width: 22px;
    height: 22px;
}

.icon--size-21 {
    width: 21px;
    height: 21px;
}

.icon--size-19 {
    width: 19px;
    height: 19px;
}

.icon--size-18 {
    width: 18px;
    height: 18px;
}

.icon--size-17 {
    width: 17px;
    height: 17px;
}

.icon--size-16 {
    width: 16px;
    height: 16px;
}

.icon--size-15 {
    width: 15px;
    height: 15px;
}

.icon--size-14 {
    width: 14px;
    height: 14px;
}

.icon--size-13 {
    width: 13px;
    height: 13px;
}

.icon--size-12 {
    width: 12px;
    height: 12px;
}

.icon--size-11 {
    width: 11px;
    height: 11px;
}

.icon--size-10 {
    width: 10px;
    height: 10px;
}

.logo__img {
    display: block;
    max-width: 235px;
    max-height: 38px;
    width: auto;
    height: auto;
}

.menu__list {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.menu__item {
    position: relative;
    flex: 0 0 auto;
}

.menu__item:not(:first-child) {
    margin-left: 20px;
}

.menu__item--has-children .menu__link:after {
    content: "";
    margin-left: 9px;
    display: inline-block;
    background: url(../img/icons/sprite.svg#right) center/cover no-repeat;
    width: 7px;
    height: 11px;
    transform: rotate(90deg);
}

.menu__item--has-children.menu__item--active .menu__link:after {
    transform: rotate(-90deg);
}

.menu__sub {
    display: none;
}

.menu__item--active .menu__sub {
    display: block;
}

.menu__link {
    position: relative;
    padding: 32px 0;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}

.menu__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    visibility: hidden;
    opacity: 0;
    transition: visibility .3s, opacity .3s;
}

.menu__item--active .menu__link {
    cursor: default;
}

.menu__item--active .menu__link:before {
    visibility: visible;
    opacity: 1;
}

.menu__toggle {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: none;
    justify-content: center;
    align-items: center;
}

.menu__lines {
    position: relative;
    z-index: 6;
    width: 16px;
}

.menu__lines,
.menu__lines:after,
.menu__lines:before {
    height: 1.6px;
    border-radius: 3px;
    background-color: #333;
    display: block;
    transform: rotate(0);
    transition: transform .3s, width .3s;
}

.menu__lines:after,
.menu__lines:before {
    content: "";
    position: absolute;
    right: 0;
}

.menu__lines:before {
    transform: translateY(-5px);
    width: 12px;
}

.menu__lines:after {
    transform: translateY(5px);
    width: 9px;
}

.submenu {
    position: fixed;
    left: 0;
    z-index: 1;
    min-height: 400px;
    width: 100%;
    padding: 50px 0 34px;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .15);
}

.submenu__mobile-back {
    display: none;
    color: #000;
}

.submenu__title {
    line-height: 16px;
}

.submenu__list {
    position: relative;
    margin-top: 38px;
}

.submenu__item {
    display: flex;
    align-items: flex-start;
}

.submenu__link {
    margin-right: 20px;
    padding: 0 25px;
    flex: 0 0 280px;
    display: inline-block;
    line-height: 2.5;
    font-weight: 700;
    transition: background .3s;
}

.submenu__item--active .submenu__link {
    background-color: rgba(var(--color-primary--rgb), .1);
    cursor: default;
}

.submenu__subcontent {
    position: absolute;
    top: 0;
    left: 300px;
    padding-top: 8px;
    display: none;
    width: calc(100% - 300px);
}

.submenu__item--active .submenu__subcontent {
    display: block;
}

.submenu__subback {
    display: none;
}

.submenu__subtitle {
    display: none;
}

.submenu__submain {
    display: flex;
}

.submenu__sublist {
    width: calc(33.33% - 50px);
}

.submenu__sublist:not(:first-child) {
    margin-left: 75px;
}

.submenu__subitem:not(:first-child) {
    margin-top: 16px;
}

.submenu__subitem--mt-lg:not(:first-child) {
    margin-top: 40px;
}

.submenu__sublink {
    line-height: 1.5;
    display: inline-flex;
}

.submenu__sublink:before {
    content: "";
    margin-top: 5px;
    margin-right: 20px;
    flex: 0 0 auto;
    display: inline-block;
    background: url(../img/icons/sprite.svg#right) center/cover no-repeat;
    width: 7px;
    height: 11px;
}

.user-controls {
    display: flex;
    align-items: center;
}

.user-controls__btn:not(:first-child) {
    margin-left: 30px;
}

.accordion:not(.accordion--tablet) .accordion__btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
}

.accordion:not(.accordion--tablet) .accordion__content {
    display: none;
}

.accordion--activating:not(.accordion--tablet) .accordion__content {
    height: 0;
    display: block;
    overflow: hidden;
}

.accordion--active:not(.accordion--tablet) .accordion__content {
    display: block;
}

@media (min-width:1160.01px) {
    .accordion--tablet .accordion__content {
        height: auto !important;
    }
}

.star-rating {
    display: flex;
}

.star-rating__list {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.star-rating__item {
    width: 17px;
    height: 17px;
    display: inline-block;
    background: url(../img/icons/sprite.svg#star-gray-light) center/cover no-repeat;
}

.star-rating--empty-red .star-rating__item {
    background: url(../img/icons/sprite.svg#star-red) center/cover no-repeat;
}

.star-rating__item:not(:first-child) {
    margin-left: 2px;
}

.star-rating__active {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.star-rating__active .star-rating__item {
    background: url(../img/icons/sprite.svg#star) center/cover no-repeat;
}

.star-rating--second .star-rating__active .star-rating__item {
    background: url(../img/icons/sprite.svg#star-second) center/cover no-repeat;
}

.rate-control__list {
    margin: 0 -2px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.rate-control__label {
    padding: 0 2px;
    display: block;
    width: 20px;
    height: 16px;
    cursor: pointer;
}

.rate-control__label:before {
    content: "";
    display: inline-block;
    background: url(../img/icons/sprite.svg#star-gray-light) center/cover no-repeat;
    width: 16px;
    height: 16px;
}

.rate-control__input {
    opacity: 0;
}

.rate-control__input:checked~.rate-control__label:before {
    background: url(../img/icons/sprite.svg#star) center/cover no-repeat;
}

.rate-control--second .rate-control__input:checked~.rate-control__label:before {
    background: url(../img/icons/sprite.svg#star-second) center/cover no-repeat;
}

.num-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
}

.message-arrow {
    position: relative;
    font-size: 24px;
    font-family: Mansalva, sans-serif;
    color: var(--color-secondary);
}

.message-arrow:before {
    content: "";
    position: absolute;
    left: -170px;
    top: -13px;
    background: url(../img/icons/sprite.svg#arrow-drawn-second) center/contain no-repeat;
    width: 155px;
    height: 60px;
}

.social-btns__list {
    margin: -10px -5px 0;
    display: flex;
    flex-wrap: wrap;
}

.social-btns__item {
    margin: 10px 5px 0;
}

.social-btns__item img,
.social-btns__item svg {
    display: block;
}

.list__item {
    position: relative;
    padding-left: 32px;
    line-height: 20px;
    list-style: none;
}

.list__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.list__item:not(:first-child) {
    margin-top: 18px;
}

.list-features__item {
    position: relative;
    padding-left: 26px;
    line-height: 20px;
}

.list-features__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../img/icons/sprite.svg#check-success-circle) center/cover no-repeat;
    width: 16px;
    height: 16px;
}

.list-features__item:not(:first-child) {
    margin-top: 10px;
}

.list-features__item--my-xl:not(:first-child) {
    margin-top: 20px;
}

.list-features__item--danger:before {
    background: url(../img/icons/sprite.svg#exit-danger-circle) center/cover no-repeat;
}

.list-features__item--danger-bg,
.list-features__item--success-bg {
    padding: 10px 20px 10px 46px;
    border-radius: 5px;
}

.list-features__item--success-bg {
    background-color: #ecf9ec;
}

.list-features__item--danger-bg {
    background-color: #fee9e9;
}

.list-features__item--danger-bg:before,
.list-features__item--success-bg:before {
    top: 12px;
    left: 20px;
}

.list-features__item--danger-bg:before {
    background: url(../img/icons/sprite.svg#exit-danger-circle) center/cover no-repeat;
}

.tag {
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 5px;
    line-height: 20px;
}

.tags__list {
    margin: -10px -5px 0;
    display: flex;
    flex-wrap: wrap;
}

.tags__item {
    margin: 10px 5px 0;
}

.pagination__list {
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.pagination__active,
.pagination__link {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    border-radius: 5px;
    color: var(--color-primary);
}

.pagination__active:not(:first-child),
.pagination__link:not(:first-child) {
    margin-left: 6px;
}

.pagination__link--left+.pagination__active,
.pagination__link--left+.pagination__link {
    margin-left: 0;
}

.pagination__link--left,
.pagination__link--right {
    text-transform: uppercase;
    width: auto;
}

.pagination__link--left {
    margin-right: 28px;
}

.pagination__link--right:not(:first-child) {
    margin-left: 28px;
}

.pagination__active {
    background-color: var(--color-primary);
    color: #fff;
}

.nav-link {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    font-weight: 600;
    line-height: 20px;
    transition: background .3s, color .3s;
}

.nav-link__icon {
    margin-right: 10px;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    fill: #000;
    transition: fill .3s;
}

.nav-link--active {
    cursor: default;
}

.nav-link--active,
.nav-link:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.nav-link--active .nav-link__icon,
.nav-link:hover .nav-link__icon {
    fill: #fff;
}

.nav-links__content {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.nav-links__list {
    display: flex;
}

.nav-links__link {
    flex: 0 0 168px;
    box-shadow: none;
    border-radius: 0;
}

.nav-links__link:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.nav-links__link:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-links__link:not(:first-child) {
    border-left: 1px solid #e7e7e7;
}

.nav-btn {
    padding: 15px 20px;
    background-color: #e7e7e7;
    border-radius: 5px;
    font-weight: 600;
    line-height: 20px;
    transition: background .3s;
}

.nav-btn.tabs-btns__btn--active {
    background-color: #f6f7f7;
    cursor: default;
}

.nav-btns__list {
    display: flex;
    overflow-x: auto;
}

.nav-btns__btn {
    flex: 0 0 auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.nav-btns__btn:not(:first-child) {
    margin-left: 10px;
}

.tabs-list__item {
    display: none;
}

.tabs-list__item--active {
    display: block;
}

.input {
    position: relative;
}

.input__field {
    padding: 13px 20px;
    width: 100%;
    color: var(--color-gray);
    line-height: 20px;
    border: 2px solid #f6f7f7;
    border-radius: 5px;
    outline: 0;
    transition: border .3s;
}

.input__field::-moz-placeholder {
    color: var(--color-gray);
}

.input__field::placeholder {
    color: var(--color-gray);
}

.input__field:focus {
    border-color: #c2c2c2;
}

.input__field--area {
    resize: none;
    height: 150px;
}

.input__field--area-xl {
    height: 300px;
}

.input__field--sm {
    padding: 8px 10px;
    font-size: 14px;
}

.input__field--dark {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

.input__field--dark::-moz-placeholder {
    color: #fff;
}

.input__field--dark::placeholder {
    color: #fff;
}

.input__field--dark:focus {
    border-color: var(--color-primary-dark);
}

.input-area {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-area__field {
    padding: 0;
    width: 100%;
    flex: 1 1 auto;
    outline: 0;
    resize: none;
    border: none;
}

.input-area__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.input-area__placeholder--hide {
    display: none;
}

.inputs-area {
    padding: 0 50px;
    border: 2px solid #f6f7f7;
    border-radius: 5px;
    transition: border .3s;
}

.inputs-area:focus-within {
    border-color: #c2c2c2;
}

.inputs-area__item {
    margin-top: 28px;
    min-height: 120px;
}

.inputs-area__item:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox__input {
    opacity: 0;
}

.checkbox__switch {
    position: relative;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f6f7f7;
    border-radius: 5px;
    cursor: pointer;
}

.checkbox__switch:before {
    content: "";
    display: none;
    background: url(../img/icons/sprite.svg#check-white) center/cover no-repeat;
    width: 14px;
    height: 10px;
}

.checkbox__input:checked~.checkbox__switch {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox__input:checked~.checkbox__switch:before {
    display: block;
}

.checkbox__text {
    margin-top: 2px;
    margin-left: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.checkbox--dark .checkbox__switch {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.checkbox--dark .checkbox__input:checked~.checkbox__switch {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

div.simplebar-scrollbar:before {
    background-color: #d9d9d9;
}

div.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
}

div.simplebar-content-wrapper {
    outline: 0;
}

.simplebar-track.simplebar-vertical {
    width: 4px;
}

.simplebar-track.simplebar-horizontal {
    height: 4px;
}

.simplebar-scrollbar:before {
    border-radius: 0;
}

.simplebar-track {
    background-color: #f6f7f7;
}

.simplebar-scrollbar:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.circle-value {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
}

.counter {
    display: flex;
    align-items: center;
}

.counter__btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2f5e2;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-success);
}

.counter__btn--danger {
    background-color: #f5e4e4;
    color: var(--color-primary);
}

.counter__value {
    margin-left: 10px;
    font-weight: 600;
}

.casino-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.casino-item__img {
    margin-right: 20px;
    width: 70px;
    height: 40px;
    flex: 0 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 2px;
}

.casino-item__name {
    word-break: break-word;
}

.casino-item__name:not(:last-child) {
    margin-right: 20px;
}

.casino-item__rating {
    margin-left: auto;
    flex: 0 0 auto;
}

.header__top {
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: #fff;
}

.header__bottom {
    margin-top: 82px;
    position: relative;
    z-index: 5;
}

.header__top--scroll {
    box-shadow: 0 5px 5px rgba(0, 0, 0, .15);
}

.header__content {
    display: flex;
    align-items: center;
}

.header__menu {
    margin-left: 50px;
}

.header__menu:not(:last-child) {
    margin-right: 30px;
}

.header__user {
    margin-left: auto;
}

.main {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.main--p-end-lg {
    padding-bottom: 95px;
}

.main__title {
    margin-bottom: 40px;
}

.main__section {
    margin-top: 95px;
}

.main__bookmakers {
    margin-top: 95px;
}

.main__author {
    flex: 1 1 auto;
}

.main__navigation {
    margin-top: 80px;
}

.main__info {
    margin-top: 90px;
}

.main__security {
    margin-top: 85px;
}

.main__comment {
    padding-top: 50px;
    padding-bottom: 20px;
}

.main__bonuses {
    margin-top: 68px;
}

.main__bonuses-table {
    margin-top: 30px;
}

.main--p-end-0 {
    padding-bottom: 0;
}

.breadcrumbs {
    padding: 16px 0 11px;
    background-color: #f2f4f5;
}

.breadcrumbs__list {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.breadcrumbs__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: var(--color-gray);
}

.breadcrumbs__item:not(:first-child) {
    margin-left: 18px;
}

.breadcrumbs__item:not(:first-child):before {
    margin-right: 18px;
    content: "";
    display: inline-block;
    background: url(../img/icons/sprite.svg#right-gray-light) center/cover no-repeat;
    width: 6px;
    height: 10px;
}

.breadcrumbs__current {
    color: #000;
}

.banner-meta {
    padding: 30px 0;
    background-color: #810000;
    position: relative;
    z-index: 1;
}

.banner-meta__accordion {
    display: flex;
    align-items: center;
}

.banner-meta__list {
    display: flex;
    align-items: center;
}

.banner-meta__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.28;
}

.banner-meta__item {
    margin-left: 20px;
    padding-left: 20px;
}

.banner-meta__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #b45454;
}

.banner-meta__item--header {
    padding-left: 0;
    margin-left: 0;
}

.banner-meta__item--header:before {
    display: none;
}

.banner-meta__item-author {
    margin-right: 20px;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
}

.banner-meta__item-author img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-meta__item-icon {
    margin-right: 9px;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

.banner-meta__item-info {
    align-self: center;
}

.banner-meta__item-text {
    color: #fff;
}

.banner-meta__item-text a,
.banner-meta__item-text b {
    font-weight: 600;
    color: var(--color-secondary);
}

.banner-meta__item-text a:hover {
    text-decoration: underline;
}

.banner-meta__item-value {
    color: #b45454;
}

.banner-feature {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.banner-feature__text {
    max-width: 95px;
}

.banner-feature__icon {
    margin-left: 30px;
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-company {
    display: flex;
    align-items: center;
}

.banner-company__main {
    min-width: 0;
    max-width: 100%;
}

.banner-company__img {
    margin-right: 50px;
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #06494d;
    padding: 5px;
}

.banner-company__img--yellow-light {
    background-color: #f8ffed;
}

.banner-company__img--blue-light {
    background-color: #d9e5f4;
}

.banner-company__text {
    margin-top: 12px;
}

.banner-company__rating {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.banner-company__rating-num {
    margin-left: 10px;
}

.banner-company__country {
    margin-top: 13px;
    display: flex;
    align-items: center;
}

.banner-company__country-item:not(:first-child) {
    margin-left: 8px;
}

.banner-company__features {
    padding-top: 15px;
    margin: -14px -14px 0;
    display: flex;
    flex-wrap: wrap;
}

.banner-company__feature {
    margin: 14px 14px 0;
    max-width: 70px;
}

.banner-company__feature-img {
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-company__marks {
    margin-top: 16px;
}

.banner-company__label {
    margin-bottom: 15px;
}

.banner-company__marks-list {
    display: flex;
}

.banner-company__mark {
    padding: 7px 0;
    width: 50px;
    text-align: center;
    background-color: var(--color-primary-dark);
    color: #fff;
    cursor: pointer;
}

.banner-company__mark:not(:first-child) {
    margin-left: 10px;
}

.banner-company__mark--active {
    background-color: var(--color-secondary);
    color: #000;
}

.banner-company__mark--active-hover {
    background-color: var(--color-secondary);
    color: #000;
}

.promo-input {
    position: relative;
}

.promo-input__field {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background-color: #f6f7f7;
    border: none;
    outline: 0;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
    cursor: default;
}

.promo-input__copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.banner-bonus {
    padding: 27px 30px 20px;
    background: #fff;
    border-radius: 5px;
}

.banner-bonus__subtitle {
    margin-bottom: 7px;
    text-align: center;
}

.banner-bonus__title {
    margin-bottom: 17px;
    text-align: center;
}

.banner-bonus__features {
    margin: -10px -10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 15px;
}

.banner-bonus__feature {
    margin: 10px 10px 0;
    display: flex;
    align-items: center;
}

.banner-bonus__feature-img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
    flex: 0 0 auto;
}

.banner-bonus__feature-label {
    margin-bottom: 1px;
}

.banner-bonus__terms {
    margin-top: 16px;
    padding-top: 18px;
    border-top: 1px solid #e7e7e7;
}

.banner-bonus__terms-list {
    margin: -10px -10px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.banner-bonus__term {
    margin: 10px 10px 0;
}

.banner__main {
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none !important;
}

.banner__main>.container {
    position: relative;
    z-index: 1
}

.banner__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}


.banner__main--with-cards {
    padding-bottom: 343px;
    margin-bottom: -313px;
}

.banner__main-content {
    padding-top: 90px;
    display: flex;
    align-items: center;
}

.banner__main-content.banner__main-content--no-cards {
    padding-bottom: 90px;
}

.banner__info {
    flex: 0 0 45.5%;
}

.banner__features {
    margin-left: 5.5%;
    flex: 0 0 49%;
}

.banner__features-list {
    margin: -10px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.banner__features-item {
    margin: 10px 10px 0;
    width: calc(50% - 20px);
}

.banner__company-box {
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.banner__company-box--py-xs {
    padding: 60px 0;
}

.banner__company {
    flex: 1 1 auto;
}

.banner__bonus {
    margin-left: 50px;
    flex: 0 0 380px;
}

.banner__text {
    margin-top: 27px;
}

.banner__cards {
    margin-top: -313px;
}

.banner-nav {
    background-color: #810000;
}

.banner-nav__btns {
    margin: 0 -20px;
    padding: 0 20px;
    display: flex;
    overflow-x: auto;
}

.banner-nav__btn {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.banner-nav__btn:not(:first-child) {
    margin-left: 50px;
}

.banner-nav__btn-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-nav__btn-text {
    position: relative;
    padding: 15px 0;
    line-height: 20px;
}

.banner-nav__btn-text:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.banner-nav__btn:hover .banner-nav__btn-text:after {
    visibility: visible;
    opacity: 1;
}

.banner-nav__btn-value {
    position: absolute;
    top: 10px;
    right: -20px;
}

.banner-phone__content {
    position: relative;
    display: inline-flex;
}

.banner-phone__content:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.banner-phone__main {
    position: absolute;
    left: 1px;
    top: 0;
    width: calc(100% - 2px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #14805e;
    border-radius: 20px;
    overflow: hidden;
}

.banner-phone__logo {
    padding: 5px;
}

.banner-phone__frame {
    position: relative;
    z-index: 1;
}

.banner-app {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-app__info {
    flex: 0 1 522px;
}

.banner-app__title {
    max-width: 515px;
}

.banner-app__text {
    margin-top: 16px;
}

.banner-app__get-btns {
    margin-top: 45px;
    display: flex;
    align-items: center;
}

.banner-app__get-btn:not(:first-child) {
    margin-left: 30px;
}

.banner-app__main {
    margin-left: 50px;
    flex: 0 0 580px;
}

.banner-app__main-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-app__phone {
    margin-left: 25px;
    flex: 0 0 auto;
}

.banner-app__qr-info {
    flex: 0 0 160px;
}

.banner-app__qr-title {
    margin-bottom: 15px;
}

.banner-app__qr-systems {
    display: flex;
    align-items: center;
}

.banner-app__qr-system {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-app__qr-system:not(:first-child) {
    margin-left: 10px;
}

.banner-app__qr-text {
    margin-top: 25px;
    max-width: 148px;
}

.banner-app__qr-img {
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
    -o-object-fit: contain;
    object-fit: contain;
}

.banner-app__form {
    margin-top: 48px;
    display: flex;
    align-items: center;
}

.banner-app__form-input {
    flex: 1 1 100%;
}

.banner-app__form-input:not(:last-child) {
    margin-right: 20px;
}

.banner-app__form-btn {
    flex: 0 0 180px;
}

.company-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px 10px rgba(0, 0, 0, .03);
    background-color: #fff;
}

.company-card__img {
    position: relative;
    padding: 20px;
    height: 150px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card__img img {
    max-height: 100%;
    max-width: 70%;
}

.company-card__img--yellow-light {
    background-color: #f8ffed;
}

.company-card__img--blue-light {
    background-color: #d9e5f4;
}

.company-card__num {
    position: absolute;
    left: 10px;
    top: 10px;
}

.company-card__main {
    padding: 24px 30px 13px;
    background-color: #fff;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
}

.company-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.company-card__meta-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-card__rating {
    margin-left: 18px;
}

.company-card__link {
    margin-top: 7px;
    line-height: 1.4;
}

.company-card__meta-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.company-card__meta-btn img,
.company-card__meta-btn svg {
    display: block;
}

.company-card__flag {
    width: 30px;
}

.company-card__flag:not(:last-child) {
    margin-right: 10px;
}

.company-card__info {
    text-align: center;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-card__info:not(:first-child) {
    margin-top: 25px;
}

.company-card__title {
    flex-grow: 2;
}

.company-card__subtitle {
    margin-top: 8px;
}

.company-card__ratings {
    width: 100%;
}

.company-card__apps {
    margin-top: 16px;
    width: 100%;
}

.company-card__btn {
    margin-top: 25px;
    width: 295px;
    max-width: 100%;
}

.company-card__safe {
    margin-top: 13px;
    font-size: 10px;
    line-height: 20px;
}

.company-cards__message {
    display: inline-flex;
    margin-left: auto;
    margin-right: 11.2%;
    margin-top: 30px;
    margin-bottom: 38px;
}

.company-cards__content {
    display: flex;
    flex-direction: column;
}

.company-cards__list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
}

.company-cards__item {
    margin: 20px 10px 0;
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
}

.trust__title {
    margin-bottom: 40px;
}

.trust__main {
    display: flex;
    align-items: flex-start;
}

.trust__info {
    padding: 50px 45px 50px 50px;
    border-radius: 5px;
    background-color: #f6f7f7;
    flex: 0 0 57.7%;
}

.trust-info__logo {
    margin-bottom: 27px;
    display: block;
}

.trust-info__features {
    margin-top: 26px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e7e7e7;
}

.trust-info__feature {
    display: flex;
    align-items: flex-start;
    max-width: 168px;
}

.trust-info__feature:not(:first-child) {
    margin-left: 20px;
}

.trust-info__feature-icon {
    margin-right: 13px;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
}

.trust-info__feature-icon img {
    max-height: 100%;
}

.trust-info__feature-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.trust__feature__text {
    margin-top: 3px;
}

.trust__updates {
    margin-left: 4%;
    flex: 0 0 38.3%;
}

.trust-info__footer {
    margin-top: 47px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.trust-info__companies {
    flex: 0 0 46%;
}

.trust-info__companies-title {
    margin-bottom: 27px;
}

.trust-info__companies-list {
    margin: -26px -13px 0;
    display: flex;
    flex-wrap: wrap;
}

.trust-info__company {
    margin: 26px 13px 0;
    height: 32px;
    display: flex;
    align-items: center;
}

.trust-info__about {
    flex: 0 0 39%;
}

.trust-info__about-title {
    margin-bottom: 27px;
}

.trust-updates__title {
    margin-bottom: 25px;
}

.trust-updates__main {
    position: relative;
}

.trust-updates__main:before {
    content: "";
    position: absolute;
    top: 0;
    left: 106px;
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
}

.trust-updates__list {
    position: relative;
    z-index: 1;
}

.trust-updates__item {
    display: flex;
    align-items: center;
}

.trust-updates__item:not(:first-child) {
    margin-top: 20px;
}

.trust-updates__item-date {
    flex: 0 0 66px;
    text-align: right;
    margin-right: 20px;
    line-height: 16px;
}

.trust-updates__item-date span {
    display: block;
}

.trust-updates__item-date span:first-child {
    font-size: 14px;
}

.trust-updates__item-date span:nth-child(2) {
    font-size: 12px;
}

.trust-updates__item-icon {
    margin-right: 20px;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.trust-updates__btn {
    position: relative;
    z-index: 1;
    margin-top: 42px;
    margin-left: 86px;
    width: 170px;
}

.team-item {
    padding: 30px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.team-item__author {
    margin-bottom: 17px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-item__position {
    margin-top: 5px;
}

.team-item__text {
    margin-top: 15px;
}

.team-item__footer {
    margin-top: auto;
}

.team-item__social {
    margin-top: 25px;
}

.team__title {
    margin-bottom: 40px;
}

.team__slider {
    margin: -30px;
    padding: 30px;
}

.team__slide {
    height: auto;
}

.team__item {
    height: 100%;
    box-shadow: none;
    transition: box-shadow .3s;
}

.team__slide.swiper-slide-visible .team__item {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
}

.eval-item {
    padding: 50px 50px 45px;
    display: flex;
    align-items: center;
    background-color: #f6f7f7;
    border-radius: 5px;
}

.eval-item__icon {
    margin-right: 50px;
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
}

.eval-item__icon--rtl {
    margin-right: 0;
    margin-left: 50px;
}

.eval-item__icon img {
    max-height: 100%;
}

.eval-item__text {
    margin-top: 14px;
}

.eval__title {
    margin-bottom: 40px;
}

.eval__item:not(:first-child) {
    margin-top: 20px;
}

.eval__more {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 50px;
    line-height: 1;
}

.compare-company__img {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9e5f4;
}

.compare-company__img img {
    max-width: 150px;
}

.compare-company__num {
    position: absolute;
    left: -20px;
    top: -20px;
}

.compare-company__rating {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-company__rating-num {
    margin-left: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.compare-company__section {
    max-width: 200px;
}

.compare-company__section:not(:first-child) {
    margin-top: 26px;
}

.compare-company__label {
    margin-bottom: 15px;
}

.payment-item {
    padding: 0 5px;
    width: 60px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f7f7;
    font-size: 12px;
    color: var(--color-gray);
}

.payment-item--sm {
    padding: 0 3px;
    width: 30px;
    height: 30px;
}

.payment-item--x-sm {
    width: 30px;
}

.payment-item--white {
    background-color: #fff;
}

.payments-list__items {
    margin: -10px -5px 0;
    display: flex;
    flex-wrap: wrap;
}

.payments-list__item {
    margin: 10px 5px 0;
}

.payments-list__item--hidden {
    display: none;
}

.payments-list__item--hidden:nth-child(1),
.payments-list__item--hidden:nth-child(2),
.payments-list__item--hidden:nth-child(3),
.payments-list__item--hidden:nth-child(4),
.payments-list__item--hidden:nth-child(5),
.payments-list__item--hidden:nth-child(6),
.payments-list__item--hidden:nth-child(7),
.payments-list__item--hidden:nth-child(8) {
    display: flex;
}

.payments-list__items--active .payments-list__item--hidden {
    display: flex;
}

.payments-list__item--btn {
    cursor: pointer;
}

.payments-list__items--active .payments-list__item--btn {
    display: none;
}

.sports-list__item--hidden {
    display: none;
}

.sports-list__item--hidden:nth-child(1),
.sports-list__item--hidden:nth-child(2),
.sports-list__item--hidden:nth-child(3),
.sports-list__item--hidden:nth-child(4),
.sports-list__item--hidden:nth-child(5),
.sports-list__item--hidden:nth-child(6),
.sports-list__item--hidden:nth-child(7),
.sports-list__item--hidden:nth-child(8),
.sports-list__item--hidden:nth-child(9) {
    display: flex;
}

.sports-list__items--active .sports-list__item--hidden {
    display: flex;
}

.sports-list__item--btn {
    cursor: pointer;
}

.sports-list__items--active .sports-list__item--btn {
    display: none;
}

.compare-company__contact {
    line-height: 30px;
}

.compare-info__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-info__header-items {
    display: flex;
    align-items: center;
}

.compare-info__header-item {
    max-width: 30px;
}

.compare-info__header-item:not(:first-child) {
    margin-left: 10px;
}

.compare-info__meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.compare-info__meta-item:not(:first-child) {
    margin-left: 15px;
}

.compare-info__text {
    margin-top: 12px;
}

.compare-info__features {
    margin-top: 42px;
}

.compare-info__features-title {
    margin-bottom: 25px;
}

.compare-take {
    text-align: center;
}

.compare-take__text {
    margin-top: 10px;
}

.compare-take__btns {
    margin-top: 25px;
}

.compare-take__btn {
    width: 170px;
}

.compare-take__btn:not(:first-child) {
    margin-top: 10px;
}

.compare-take__safe {
    margin-top: 10px;
    font-size: 10px;
}

.compare-card {
    padding: 50px 33px 50px 50px;
    display: flex;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.compare-card__company {
    margin-right: 50px;
    padding-right: 50px;
    flex: 0 0 250px;
    border-right: 1px solid #e7e7e7;
    order: -1;
}

.compare-card__take {
    margin-left: 50px;
    padding-left: 33px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 238px;
    border-left: 1px solid #e7e7e7;
}

.table-compare {
    display: flex;
}

.table-compare tr:nth-child(2n+1) {
    background-color: #f6f7f7;
}

.table-compare td {
    min-width: 280px;
    width: 280px;
    padding: 15px 20px;
}

.table-compare td:nth-child(1) {
    min-width: 180px;
    width: 180px;
}

.table-compare .simplebar-track.simplebar-horizontal {
    left: 20px;
}

.table-compare__main {
    flex: 0 0 auto;
}

.table-compare__company {
    display: flex;
    align-items: center;
}

.table-compare__company-img {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 2px;
}

.compare__text {
    margin-top: 40px;
}

.compare__table {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.compare__table:not(:first-child) {
    margin-top: 40px;
}

.licenses-list__items .licenses-list__item--hidden {
    display: none;
}

.licenses-list__items .licenses-list__item--hidden {
    display: none;
}

.licenses-list__items .licenses-list__item--hidden:first-child {
    display: block;
}

.licenses-list__items.licenses-list__items--active .licenses-list__item--hidden {
    display: block;
}

.licenses-list__item--btn {
    cursor: pointer;
}

.licenses-list__items.licenses-list__items--active .licenses-list__item--btn {
    display: none;
}

.compare__card:not(:first-child) {
    margin-top: 45px;
}

.start-item {
    display: flex;
    align-items: flex-start;
}

.start-item__icon {
    margin-right: 20px;
    flex: 0 0 40px;
}

.start-item__text {
    margin-top: 12px;
}

.start__title {
    margin-bottom: 40px;
}

.start__list {
    margin: -22px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.start__item {
    margin: 22px 10px 0;
    width: calc(25% - 20px);
}

.news-item {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.news-item--big {
    flex-direction: column;
}

.news-item__img {
    position: relative;
    flex: 0 0 auto;
    width: min(48%, 260px);
    padding-top: min(48%, 260px);
}

.news-item__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.news-item__img--big {
    padding-top: 66%;
    width: 100%;
}

.news-item__info {
    padding: 27px 25px 27px 20px;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.news-item__meta {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-item__author {
    margin-left: 30px;
}

.news-item__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.news-item__link {
    margin-top: 30px;
}

.news-item__link--right {
    margin-left: auto;
}

.news-item__text {
    margin-top: 10px;
}

.news--bg {
    padding: 100px 0 70px;
    background: url(../img/bg.png) center/cover no-repeat;
}

.news__header {
    margin-bottom: 37px;
    display: flex;
    align-items: center;
}

.news__header-link {
    margin-left: 48px;
}

.news__columns {
    margin: -20px -10px 0;
    display: flex;
}

.news__column {
    margin: 20px 10px 0;
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
}

.news__column--lg {
    width: calc(58.4% - 20px);
}

.news__column--sm {
    width: calc(41.6% - 20px);
}

.news__column-item {
    height: 100%;
}

.news__column-item:not(:first-child) {
    margin-top: 20px;
}

.license-company {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    border-radius: 5px;
    background-color: #f6f7f7;
}

.license-company__img {
    margin-right: 20px;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background-color: #fff;
    -o-object-fit: cover;
    object-fit: cover;
}

.license-company__btn {
    width: 120px;
}

.license-company__btn:not(:first-child) {
    margin-top: 16px;
}

.license__content--border-bottom {
    padding-bottom: 85px;
    border-bottom: 1px solid #e7e7e7;
}

.license__title {
    margin-bottom: 20px;
}

.license__company:not(:first-child) {
    margin-top: 30px;
}

.license__list {
    margin: -10px -5px 0;
    display: flex;
    flex-wrap: wrap;
    max-width: 390px;
}

.license__item {
    margin: 10px 5px 0;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #f6f7f7;
    border-radius: 50%;
    font-size: 12px;
}

.license__item--btn,
.license__item:nth-child(1),
.license__item:nth-child(2),
.license__item:nth-child(3),
.license__item:nth-child(4),
.license__item:nth-child(5) {
    display: flex;
}

.license__item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.license__list--active .license__item {
    display: flex;
}

.license__list--active .license__item--btn {
    display: none;
}

.license__data-item {
    line-height: 40px;
}

.license__main {
    display: flex;
    align-items: center;
}

.license__main:not(:first-child) {
    margin-top: 30px;
}

.license__info {
    margin-right: 10px;
    flex: 0 0 380px;
}

.license__data {
    margin-top: 16px;
}

.payment-card {
    padding: 60px 15px 25px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
    text-align: center;
}

.payment-card__img {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-card__img img {
    max-height: 100%;
}

.payment-card__name {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    min-height: 40px;
}

.bookmaker-card {
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bookmaker-card__main {
    padding: 15px 30px 30px;
    flex-grow: 2;
    display: flex;
    flex-direction: column;
}

.bookmaker-card__img {
    position: relative;
    width: 100%;
    padding-top: min(66.75%, 280px);
}

.bookmaker-card__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 5px;
}

.bookmaker-card__text {
    margin-top: 13px;
    margin-bottom: 20px;
}

.bookmaker-card__btn {
    margin-top: auto;
    width: 100%;
}

.bookmaker-card__devices {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bookmaker-card__device:not(:first-child) {
    margin-left: 10px;
}

.bookmaker-bonus {
    padding: 30px 20px 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.bookmaker-bonus__icon {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.bookmaker-bonus__icon img,
.bookmaker-bonus__icon svg {
    width: 40px;
    height: 40px;
}

.bookmaker-bonus__footer {
    margin-top: auto;
}

.bookmaker-bonus__link {
    margin-top: 20px;
}

.bookmakers__title {
    margin-bottom: 35px;
}

.bookmakers__slider-box:not(:first-child) {
    margin-top: 45px;
}

.bookmarks__text--after {
    margin-top: 45px;
}

.bookmakers__slider {
    margin: -30px;
    padding: 30px;
}

.bookmakers__slider-wrapper {
    margin: -20px -10px 0;
    width: calc(100% + 20px);
    flex-wrap: wrap;
}

@media (min-width:1260.01px) {
    .bookmakers__slider-wrapper {
        transform: translate(0, 0) !important;
    }
}

.bookmakers__slide {
    margin: 20px 10px 0;
    width: calc(99.99% / 6 - 20px);
    height: auto;
}

.bookmakers__slide-item {
    height: 100%;
}

.bookmarks__text--after {
    margin-top: 45px;
}

.gambling-item {
    padding: 25px 20px 30px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    background-color: #f6f7f7;
}

.gambling-item__img {
    margin-right: 40px;
    width: 26.5%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gambling-item__main {
    flex: 1 1 auto;
}

.gambling-item__location {
    margin-top: 8px;
}

.gambling-item__contacts {
    margin-top: 23px;
    display: flex;
    align-items: center;
}

.gambling-item__contact {
    flex: 0 0 auto;
}

.gambling-item__contact:not(:first-child) {
    margin-left: 40px;
}

.gambling-item__contact:nth-child(3) {
    margin-left: auto;
    padding-left: 35px;
    width: 42%;
    flex: 0 0 auto;
}

.gambling__title {
    margin-bottom: 40px;
}

.gambling__item:not(:first-child) {
    margin-top: 20px;
}

.gambling__text--before {
    margin-bottom: 35px;
}

.gambling__text--after {
    margin-top: 35px;
}

.footer {
    flex: 0 0 auto;
}

.footer__top {
    padding: 15px 0;
    background-color: var(--color-primary);
}

.footer__top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__menu {
    margin: -16px -16px 0;
    display: flex;
    flex-wrap: wrap;
}

.footer__menu:not(:last-child) {
    margin-right: 5px;
}

.footer__menu-item {
    margin: 16px 16px 0;
}

.footer__social {
    flex: 0 0 auto;
}

.footer__bottom {
    background-color: #333;
}

.footer__bottom-main {
    padding: 45px 0;
    display: flex;
    align-items: center;
}

.footer__logo {
    flex: 0 0 auto;
}

.footer__bottom-text {
    margin-left: 30px;
    line-height: 16px;
    flex: 0 0 30%;
}

.footer__bottom-text:not(:last-child) {
    margin-right: 30px;
}

.footer__images {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.footer__img:not(:first-child) {
    margin-left: 22px;
}

.footer__bottom-copyright {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #424242;
    line-height: 16px;
    color: #5c5c5c;
}

.author-sidebar {
    background-color: #f2f4f5;
}

.author-sidebar__content {
    padding-left: var(--container-offset);
}

.author-sidebar__header {
    text-align: center;
}

.author-sidebar__img-box {
    position: relative;
    margin: 0 auto 27px;
    width: 200px;
    height: 200px;
}

.author-sidebar__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.author-sidebar__img-btn {
    position: absolute;
    bottom: 0;
    right: 20px;
}

.author-sidebar__subtitle {
    margin-bottom: 15px;
}

.author-sidebar__position {
    margin-top: 10px;
}

.author-sidebar__btns {
    padding-top: 25px;
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.author-sidebar__btns-item {
    margin: 20px 10px 0;
    flex: 0 0 150px;
}

.author-sidebar__info {
    margin-top: 48px;
}

.author-sidebar__info-item:not(:first-child) {
    margin-top: 22px;
}

.author-sidebar__label {
    margin-bottom: 12px;
}

.author-sidebar__info-contacts:not(:first-child) {
    margin-top: 17px;
}

.author-sidebar__info-contacts {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.author-sidebar__info-contact:not(:first-child) {
    margin-top: 10px;
}

.article-item {
    display: flex;
    flex-direction: column;
}

.article-item__categories {
    margin: -9px -4.5px 0;
    padding-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}

.article-item__category {
    margin: 9px 4.5px 0;
    display: flex;
    align-items: center;
}

.article-item__category:not(:first-child):before {
    content: "";
    margin-right: 9px;
    flex: 0 0 auto;
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.article-item__img {
    margin-bottom: 25px;
    display: block;
    width: 100%;
    height: 200px;
}

.article-item__img img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.article-item__text {
    margin-top: 10px;
}

.article-item__footer {
    margin-top: auto;
}

.article-item__meta {
    margin: -14px -14px 0;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
}

.article-item__meta-item {
    margin: 14px 14px 0;
}

.articles__header {
    margin-bottom: 35px;
}

.articles__list {
    margin: -44px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.articles__item {
    margin: 44px 10px 0;
    width: calc(50% - 20px);
}

.articles__pagination {
    margin-top: 65px;
}

.articles__more {
    margin: 50px auto 0;
    display: block;
}

.articles__more--mobile {
    width: 100%;
    max-width: 400px;
    display: none;
}

.author {
    display: flex;
}

.author__sidebar {
    padding: 100px 30px 50px calc((100% - var(--container-width))/ 2);
    flex: 0 0 calc(320px + 30px + ((100% - var(--container-width))/ 2 + var(--container-offset)));
}

.author__main {
    padding: 85px var(--container-offset) 100px 50px;
    flex: 0 1 calc(var(--container-width) - 320px - 30px - var(--container-offset));
}

.author__text {
    margin-top: 35px;
}

.author__articles {
    margin-top: 55px;
}

.navigation-tab {
    padding: 45px 20px 50px;
    border-radius: 5px;
    background-color: #f7f7f7;
}

.navigation-tab__item {
    padding-bottom: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #e7e7e7;
}

.navigation-tab__item:not(:first-child) {
    margin-top: 16px;
}

.navigation-tab__item-label {
    margin-right: 15px;
    flex: 0 0 auto;
}

.navigation-tab__item-value {
    text-align: right;
}

.navigation-tab__item-icons {
    margin: -7px -7px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navigation-tab__item-icon {
    margin: 7px 7px 0;
}

.navigation-tab__item-flags {
    margin: -5px -5px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navigation-tab__item-flag {
    margin: 5px 5px 0;
    width: 24px;
}

.navigation__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.navigation__main:not(:first-child) {
    margin-top: 80px;
}

.navigation__info {
    max-width: 580px;
}

.navigation__top-link {
    margin-bottom: 23px;
}

.navigation__tabs {
    margin-left: 50px;
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.navigation__images-group {
    margin: -20px -10px 0;
    padding-top: 45px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 580px;
}

.navigation__images-group div {
    margin: 20px 10px 0;
    width: calc(33.33% - 20px);
    -o-object-fit: cover;
    object-fit: cover;
    text-align: center;
}

.sport-card {
    padding: 30px 20px 15px;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}

.sport-card--shadow {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
}

.sport-card__img {
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.sport-card__text a {
    color: #000;
}

.info--bg {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--color-primary);
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.info__title {
    margin-bottom: 35px;
}

.info__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.info__main {
    max-width: 580px;
    flex: 1 1 auto;
    align-self: center;
}

.info__main--full {
    max-width: none;
}

.info__main--col2,
.info__main--col3,
.info__main--col4 {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.info__main--col2 .info__text,
.info__main--col3 .info__text,
.info__main--col4 .info__text {
    flex-basis: 100%;
}

.info__img {
    flex: 0 0 480px;
}

.info__img:last-child:not(:first-child) {
    margin-left: 50px;
}

.info__img:first-child:not(:last-child) {
    margin-right: 50px;
}

.info__text img.align_right {
    float: right;
    margin-left: 70px;
    margin-bottom: 20px;
}

.info__cards {
    margin-left: 50px;
    flex: 0 0 580px;
}

.info__cards-list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.info__cards-item {
    margin: 20px 10px 0;
    width: calc(25% - 20px);
    min-height: 120px;
}

.info__cards-item--hidden {
    display: none;
}

.info__cards-item--hidden:nth-child(1),
.info__cards-item--hidden:nth-child(10),
.info__cards-item--hidden:nth-child(11),
.info__cards-item--hidden:nth-child(12),
.info__cards-item--hidden:nth-child(13),
.info__cards-item--hidden:nth-child(14),
.info__cards-item--hidden:nth-child(2),
.info__cards-item--hidden:nth-child(3),
.info__cards-item--hidden:nth-child(4),
.info__cards-item--hidden:nth-child(5),
.info__cards-item--hidden:nth-child(6),
.info__cards-item--hidden:nth-child(7),
.info__cards-item--hidden:nth-child(8),
.info__cards-item--hidden:nth-child(9) {
    display: block;
}

.info__cards-list--active .info__cards-item--hidden {
    display: block;
}

.info__cards-list--active .info__cards-item--btn {
    display: none;
}

.info__cards-item--btn {
    cursor: pointer;
}

.info__cards-item--btn div {
    margin-bottom: 15px;
}

.info__cards-item a {
    color: #000;
}

.security-item {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.security-item__img {
    margin: 0 auto 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-item__img img {
    max-height: 100%;
}

.security-item__title {
    margin: 0 auto;
    max-width: 123px;
}

.security__title {
    margin-bottom: 40px;
}

.security__list {
    margin: -20px -10px 65px -10px;
    display: flex;
    flex-wrap: wrap;
}

.security__item {
    margin: 20px 10px 0;
    width: calc(20% - 20px);
}

.security__text {
    margin-top: 65px;
}

.security__license {
    margin-top: 65px;
}

.support-item {
    padding: 50px 20px 20px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
    text-align: center;
}

.support-item__img {
    margin: 0 auto 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.support-item__img img {
    max-height: 100%;
}

.support-item__title {
    margin: 0 auto;
    max-width: 140px;
}

.support__title {
    margin-bottom: 40px;
}

.support__list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.support__item {
    margin: 20px 10px 0;
    width: calc(25% - 20px);
    min-height: 220px;
}

.chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.chart__main {
    width: 100%;
    height: 100%;
}

.chart__info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-data__list {
    margin: -27px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.chart-data__item {
    margin: 27px 10px 0;
    padding-bottom: 16px;
    display: flex;
    align-items: flex-start;
    width: calc(50% - 20px);
    border-bottom: 1px solid #e7e7e7;
}

.chart-data__item--full {
    width: calc(100% - 20px);
}

.chart-data__item-icon {
    margin-top: 2px;
    margin-right: 10px;
    flex: 0 0 auto;
}

.recommend-card {
    padding: 20px 30px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.recommend-card__header {
    display: flex;
    align-items: center;
}

.recommend-card__header-img {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 2px;
    flex: 0 0 auto;
}

.recommend-card__header-text {
    margin-top: 6px;
}

.recommend-card__footer {
    margin-left: 50px;
    display: flex;
    justify-content: space-between;
    flex: 0 0 450px;
}

.recommend-card__users {
    display: flex;
    align-items: flex-start;
}

.recommend-card__users-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.recommend-card__users-text {
    margin-top: 6px;
}

.recommend-card__controls {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.recommend-card__control:not(:first-child) {
    margin-left: 20px;
}

.recommend-card__control:disabled {
    filter: grayscale(100%);
    opacity: .5;
}

.recommend-card__control:disabled:not(:first-child) {
    opacity: .25;
}

.recommend-card__control img,
.recommend-card__control svg {
    width: 40px;
    height: 40px;
}

.rating--bg-light {
    padding: 90px 0 100px;
    background-color: #f7f7f7;
}

.rating__title {
    margin-bottom: 75px;
}

.rating__main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rating__left {
    flex: 0 1 630px;
}

.rating__chart {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.rating__chart-main {
    flex: 0 0 auto;
}

.rating__chart-data {
    margin-left: 50px;
    flex: 1 1 auto;
}

.rating__right {
    margin-left: 50px;
    flex: 0 0 480px;
}

.rating__recommend {
    margin-top: 50px;
}

.rating__cols {
    margin: -50px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.rating__col {
    margin: 50px 10px 0;
    width: calc(50% - 20px);
}

.rating__lists {
    margin-top: 45px;
    display: flex;
}

.rating__lists-item {
    flex: 1 1 100%;
}

.rating__lists-item:not(:first-child) {
    margin-left: 20px;
}

.rating__score {
    margin-top: 50px;
}

.rating-score__header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.rating-score__value {
    margin-right: 20px;
}

.rating-score__list--cols {
    margin: 0 -30px;
    display: flex;
    flex-wrap: wrap;
}

.rating-score__item {
    border-top: 1px solid #e7e7e7;
}

.rating-score__item:last-child {
    border-bottom: 1px solid #e7e7e7;
}

.rating-score__item--col-6 {
    margin: 0 30px;
    padding: 30px 0;
    border-top: none;
    border-bottom: 1px solid #e7e7e7;
    width: calc(50% - 60px);
}

.rating-score__item--col-6:first-child {
    border-top: 1px solid #e7e7e7;
}

.rating-score__footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.rating-score__footer--column {
    margin-top: 25px;
    flex-direction: column;
}

.rating-score__footer-text {
    max-width: 352px;
}

.rating-score__footer-text--full {
    max-width: none;
}

.rating-score__footer-more {
    margin-left: 30px;
    flex: 0 0 auto;
    justify-content: flex-start;
}

.rating-score__footer-more--column {
    margin-top: 25px;
    margin-left: 0;
}

.faq-item {
    border-bottom: 1px solid #e7e7e7;
}

.faq-item__btn {
    padding: 25px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.faq-item__btn:after {
    content: "";
    margin-left: 20px;
    flex: 0 0 auto;
    display: inline-block;
    background: url(../img/icons/sprite.svg#right-light) center/cover no-repeat;
    width: 10px;
    height: 16px;
    transform: rotate(90deg);
    transition: transform .4s;
}

.faq-item__btn.accordion__btn--active:after {
    transform: rotate(-90deg);
}

.faq-item__main {
    padding-bottom: 45px;
}

.faq-item__main--pb-sm {
    padding-bottom: 35px;
}

.faq__title {
    margin-bottom: 40px;
}

.faq__title--mb-xs {
    margin-bottom: 15px;
}

.review {
    padding: 30px 30px 25px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.review__header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review__author {
    display: flex;
    align-items: center;
}

.review__author-img {
    margin-right: 20px;
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.review__author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.review__author-country {
    margin-top: 7px;
}

.review__rating {
    margin-left: 20px;
    text-align: right;
}

.review__rating-label {
    margin-bottom: 4px;
}

.review__rating-stars {
    justify-content: flex-end;
}

.review__main {
    padding: 30px 0 28px;
}

.review__reply {
    border-top: 1px solid #e7e7e7;
    margin-left: 30px;
    margin-top: 30px;
    padding-top: 40px;
}

.review__text {
    max-width: 675px;
}

.review__footer {
    margin-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review__controls {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.review__control {
    opacity: .45;
}

.review__control img {
    display: block;
}

.review__control:not(:first-child) {
    margin-left: 20px;
}

.review__control--active {
    opacity: 1;
}

.like-value {
    margin-left: 5px;
    color: var(--color-success);
    margin-bottom: 1px;
}

.dislike-value {
    margin-left: 5px;
    color: var(--color-primary);
    margin-bottom: 1px;
}

.dislike-icon {
    margin-top: 2px;
}

.best-card {
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.best-card__header {
    display: flex;
    align-items: flex-start;
}

.best-card__header-left {
    margin-right: 20px;
    flex: 0 0 auto;
}

.best-card__img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}

.best-card__rating {
    margin-top: 24px;
}

.best-card__features:not(:first-child) {
    margin-top: 12px;
}

.best-card__feature:not(:first-child) {
    margin-top: 10px;
}

.best-card__bonus {
    margin-top: 26px;
    padding: 8px 52px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f6f7f7;
    border-radius: 5px;
}

.best-card__btn {
    margin-top: 20px;
    width: 100%;
}

.best-card__privacy {
    margin-top: 26px;
}

.review-company {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-company__info {
    display: flex;
    align-items: center;
}

.review-company__img {
    margin-right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: contain;
    object-fit: contain;
}

.review-company__rate {
    margin-top: 5px;
}

.reviews__header {
    margin-bottom: 40px;
}

.reviews__body--bg-light {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #f7f7f7;
}

.reviews__body-content {
    display: flex;
    align-items: flex-start;
}

.reviews__main {
    flex: 1 1 auto;
}

.reviews__sidebar {
    margin-left: 30px;
    flex: 0 0 380px;
}

.reviews__list {
    margin-top: 50px;
}

.reviews__item:not(:first-child) {
    margin-top: 20px;
}

.reviews__sidebar-btn {
    width: 100%;
}

.reviews__sidebar-section:not(:first-child) {
    margin-top: 45px;
}

.reviews__sidebar-label {
    margin-bottom: 28px;
}

.comment-form {
    display: flex;
    flex-direction: column;
}

.comment-form__company {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.comment-form__company .review-company__info {
    flex-direction: column;
    align-items: flex-start;
}

.comment-form__group {
    display: flex;
}

.comment-form__group:not(:first-child) {
    margin-top: 20px;
}

.comment-form__areas:not(:first-child) {
    margin-top: 20px;
}

.comment-form__group-item {
    flex: 1 1 100%;
}

.comment-form__group-item:not(:first-child) {
    margin-left: 20px;
}

.comment-form__item:not(:first-child) {
    margin-top: 20px;
}

.comment-form__checkbox {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
}

.comment-form__checkbox-field {
    flex: 0 0 auto;
}

.comment-form__checkbox-text {
    margin-top: 2px;
    margin-left: 20px;
}

.comment-form__btn {
    margin: 45px auto 0;
    width: 380px;
    max-width: 100%;
}

.comment-form__message {
    font-weight: 700;
    margin-bottom: 30px;
    padding: 13px 20px;
    border: 2px solid #f6f7f7;
    border-radius: 5px;
    outline: 0;
    transition: border .3s;
    display: none;
}

.comment-form__message--success {
    color: #3c3;
    background-color: rgba(51, 204, 51, .1);
    border-color: currentColor;
    display: block;
}

.comment-form__message--error {
    color: #d70404;
    background-color: rgba(215, 4, 4, .1);
    border-color: currentColor;
    display: block;
}

.bonus-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
}

.bonus-item__main-wrapper {
    display: flex;
    align-items: flex-start;
}

.bonus-item__img {
    margin-right: 28px;
    flex: 0 0 auto;
    width: 270px;
    height: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}

.bonus-item__main {
    flex: 0 1 340px;
}

.bonus-item__main:not(:last-child) {
    margin-right: 40px;
}

.bonus-item__meta {
    margin-bottom: 16px;
    max-width: 294px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bonus-item__date {
    flex: 0 0 auto;
}

.bonus-item__author {
    margin-left: 20px;
}

.bonus-item__controls {
    margin-top: 40px;
    display: flex;
}

.bonus-item__control:not(:first-child) {
    margin-left: 20px;
}

.bonus-item__control button:disabled {
    filter: grayscale(100%);
    opacity: .5;
}

.bonus-item__btns {
    margin-left: auto;
    flex: 0 0 170px;
    align-self: center;
    display: flex;
    flex-direction: column;
}

.bonus-item__btns-item:not(:first-child) {
    margin-top: 10px;
}

.bonus-item__desc {
    margin-top: 20px;
}

.sub-sidebar {
    padding: 30px 20px;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.sub-sidebar__img {
    margin: 0 auto 12px;
    display: block;
}

.sub-sidebar__text {
    margin: 11px auto 0;
    max-width: 220px;
}

.sub-sidebar__checkboxes {
    margin-top: 12px;
}

.sub-sidebar__checkboxes-label {
    margin: 0 auto 15px;
    max-width: 135px;
}

.sub-sidebar__checkboxes-list {
    margin: -10px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.sub-sidebar__checkbox {
    margin: 10px 10px 0;
    width: calc(33.33% - 20px);
}

.sub-sidebar__checkbox-text {
    margin-top: 5px;
}

.sub-sidebar__inputs {
    margin-top: 15px;
}

.sub-sidebar__inputs-item:not(:first-child) {
    margin-top: 10px;
}

.sub-sidebar__confirm {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
}

.sub-sidebar__confirm-text {
    margin-top: 4px;
    margin-left: 9px;
    line-height: 16px;
}

.sub-sidebar__btn {
    margin-top: 26px;
}

.sub-sidebar__privacy {
    margin-top: 26px;
    text-align: center;
    line-height: 16px;
}

.bonuses__content {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
}

.bonuses__sidebar {
    margin-left: 50px;
    flex: 0 0 280px;
}

.bonuses__item:not(:first-child) {
    margin-top: 30px;
}

.comments--bg-light {
    padding-top: 90px;
    padding-bottom: 70px;
    background-color: #f7f7f7;
}

.comments__title {
    max-width: 1100px;
}

.comments__text {
    margin-top: 35px;
    max-width: 1100px;
}

.comments__list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.comments__list:not(:first-child) {
    margin-top: 25px;
}

.comments__item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
}

.comments__btn {
    margin: 50px auto 0;
    display: block;
    width: 380px;
    max-width: 100%;
}

.howto__text {
    margin-top: 35px;
}

.download-item {
    position: relative;
    padding-left: 40px;
    display: flex;
    border-bottom: 1px solid #e7e7e7;
}

.download-item__num {
    position: absolute;
    left: 0;
    top: 0;
    flex: 0 0 auto;
    width: 40px;
    height: calc(100% + 1px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    font-weight: 600;
    color: #fff;
}

.download-item__info {
    margin-bottom: 30px;
    padding: 0 30px 20px;
    align-self: center;
}

.download-item__title {
    max-width: 320px;
}

.download-item__text {
    margin-top: 25px;
}

.download-item__img-box {
    margin-bottom: 30px;
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.download-item__img {
    position: relative;
    margin-top: auto;
    padding-top: min(94%, 300px);
}

.download-item__img img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    height: calc(100% - 36px);
    -o-object-fit: contain;
    object-fit: contain;
}

.contacts-card {
    padding: 30px 30px 35px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.contacts-card--py-lg {
    padding-top: 40px;
    padding-bottom: 45px;
}

.contacts-card__payments {
    margin: -10px -5px 0;
    padding-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.contacts-card__payment {
    margin: 10px 5px 0;
    padding: 5px;
    width: calc(25% - 10px);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.contacts-card__payment img {
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.contacts-card__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contacts-card__item:not(:first-child) {
    padding-top: 16px;
}

.contacts-card__item:not(:last-child) {
    padding-bottom: 6px;
    border-bottom: 1px solid #e7e7e7;
}

.contacts-card__item--icons,
.contacts-card__item--icons:not(:last-child) {
    padding: 9px 0;
    align-items: center;
    border-top: 1px solid #e7e7e7;
}

.contacts-card__item-value {
    text-align: right;
}

.contacts-card__item--feature:after {
    content: "";
    margin-left: 10px;
    flex: 0 0 auto;
    align-self: center;
    display: inline-block;
    background: url(../img/icons/sprite.svg#check-success-circle) center/cover no-repeat;
    width: 16px;
    height: 16px;
}

.contacts-card__item--feature-danger:after {
    background: url(../img/icons/sprite.svg#exit-danger-circle) center/cover no-repeat;
}

.contacts-card__item--feature:not(:first-child) {
    padding-top: 10px;
}

.contacts-card__item-icons {
    max-width: 146px;
    flex: 0 0 auto;
    margin: -5px -5px 0;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
}

.contacts-card__item-icon {
    margin: 5px 5px 0;
}

.problem-card {
    position: relative;
    padding: 40px 30px 50px;
    border-radius: 5px;
    background-color: var(--color-primary);
    background-image: url(../img/app/problem-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.problem-card__title--sm {
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
}

.problem-card__btn {
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.download__content {
    display: flex;
    align-items: flex-start;
}

.download__main {
    flex: 1 1 auto;
}

.download__main .info.main__info {
    margin-top: 0;
}

.download__main .info.main__info .container {
    padding: 0;
}

.download__main .howto.download__section .container {
    padding: 0;
}

.download__main .place.download__section .container {
    padding: 0;
}

.download__main .steps.download__section .container {
    padding: 0;
}

.download__main .play-steps.download__steps .container {
    padding: 0;
}

.download__main .info .container {
    padding: 0;
}

.download__main .faq .container {
    padding: 0;
}

.download__main .verdict .container {
    padding: 0;
}

.download__list {
    margin-top: 35px;
}

.download__item:not(:first-child) {
    margin-top: 50px;
}

.download__item:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--color-primary);
}

.download__require {
    margin-top: 65px;
}

.download__devices {
    margin-top: 60px;
}

.download__section {
    margin-top: 70px;
}

.howto.download__section {
    margin-top: 0;
}

.place.download__section {
    margin-top: 0;
}

.steps.download__section {
    margin-top: 0;
}

.download__section--mt-xs {
    margin-top: 40px;
}

.download__section-title {
    margin-bottom: 40px;
}

.download__steps {
    margin-top: 60px;
}

.play-steps.download__steps {
    margin-top: 0;
}

.download__sidebar {
    margin-left: 50px;
    flex: 0 0 380px;
    align-self: stretch;
}

.download__sidebar-content {
    height: 100%;
}

.download__sidebar-card,
.download__sidebar-section {
    margin-top: 50px;
}

.download__sidebar-section.app-sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
}

.download__sidebar-label {
    margin-bottom: 27px;
}

.download__mobile-sidebar {
    display: none;
}

.download__label {
    margin-bottom: 25px;
}

.download__author-card {
    margin-top: 50px;
}

.require__list {
    display: flex;
}

.require-item {
    display: flex;
    align-items: flex-start;
}

.require-item__icon {
    margin-right: 20px;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
}

.require-item__info {
    padding-top: 5px;
}

.require__title {
    margin-bottom: 23px;
}

.require__list {
    margin: -15px -15px 0;
    display: flex;
    flex-wrap: wrap;
}

.require__item {
    margin: 15px 15px 0;
}

.devices-table__main {
    margin: -10px;
    width: calc(100% + 20px);
    border-spacing: 10px;
}

.devices-table th {
    padding: 10px 20px;
    text-align: left;
    background-color: #c2c2c2;
}

.devices-table td {
    padding: 13px 20px;
    min-height: 80px;
    height: 80px;
    background-color: #f6f7f7;
}

.devices-table td:first-child,
.devices-table th:first-child {
    padding-left: 15px;
    padding-right: 15px;
    width: 100px;
    max-width: 100px;
    text-align: center;
}

.devices-table__text {
    display: inline-block;
    max-width: 530px;
}

.devices__title {
    margin-bottom: 25px;
}

.sports__text {
    margin-top: 20px;
}

.sports__list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.sports__list:not(:first-child) {
    padding-top: 45px;
}

.sports__item {
    margin: 20px 10px 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 120px;
}

.sports__item--hidden {
    display: none;
}

.sports__item--hidden:nth-child(1),
.sports__item--hidden:nth-child(10),
.sports__item--hidden:nth-child(11),
.sports__item--hidden:nth-child(12),
.sports__item--hidden:nth-child(13),
.sports__item--hidden:nth-child(14),
.sports__item--hidden:nth-child(2),
.sports__item--hidden:nth-child(3),
.sports__item--hidden:nth-child(4),
.sports__item--hidden:nth-child(5),
.sports__item--hidden:nth-child(6),
.sports__item--hidden:nth-child(7),
.sports__item--hidden:nth-child(8),
.sports__item--hidden:nth-child(9) {
    display: block;
}

.sports__list--active .sports__item--hidden {
    display: block;
}

.sports__list--active .sports__item--btn {
    display: none;
}

.sports__item--btn {
    cursor: pointer;
}

.place-item {
    padding: 23px 17px 28px 30px;
    background: #f6f7f7;
    border-radius: 5px;
}

.place-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.place-item__title {
    line-height: 23px;
}

.place-item__num {
    margin-left: 20px;
    color: #d9d9d9;
    font-weight: 700;
    font-size: 50px;
    line-height: 58px;
}

.place-item__text {
    margin-top: 7px;
}

.place-item__text--sm {
    max-width: 295px;
}

.place__list {
    margin: -20px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.place__list:not(:first-child) {
    padding-top: 35px;
}

.place__item {
    margin: 20px 10px 0;
    width: calc(50% - 20px);
}

.steps__list:not(:first-child) {
    padding-top: 35px;
}

.step-item {
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e7e7e7;
}

.step-item__num {
    margin-right: 20px;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--color-secondary);
    font-weight: 600;
}

.step-item__info {
    padding-top: 10px;
}

.step-item__text {
    margin-top: 12px;
}

.step__item:not(:first-child) {
    margin-top: 30px;
}

.download-info__features {
    display: flex;
    flex-wrap: wrap;
    max-width: 714px;
}

.download-info__feature {
    width: calc(50% - 28px);
}

.download-info__feature:not(:first-child) {
    margin-left: 56px;
}

.download-info__feature-text {
    padding-top: 9px;
}

.download-info__feature-icon {
    width: 40px;
    height: 40px;
}

.download-info__list {
    margin-top: 60px;
    max-width: 740px;
}

.play-step {
    position: relative;
    padding-left: 20px;
}

.play-step__num {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-primary);
    font-weight: 600;
    color: #fff;
}

.play-step__content {
    padding: 25px 40px 22px;
    background-color: #f6f7f7;
    border-radius: 5px;
}

.play-step__text {
    margin-top: 12px;
}

.play-steps__list:not(:first-child) {
    margin-top: 25px;
}

.play-steps__item:not(:first-child) {
    margin-top: 10px;
}

.steps-progress--desktop-border-bottom {
    padding-bottom: 65px;
    border-bottom: 1px solid #e7e7e7;
}

.steps-progress__item {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.steps-progress__item:not(:last-child) {
    padding-bottom: 18px;
}

.steps-progress__item-content {
    position: relative;
    padding-left: 32px;
}

.steps-progress__item-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.steps-progress__item:not(:last-child) .steps-progress__item-content:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 2px;
    height: calc(100% + 18px);
    background-color: var(--color-primary);
}

.steps-progress__item-label {
    margin-top: 5px;
    margin-right: 2px;
    flex: 0 0 auto;
    width: 43px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
}

.related-item {
    padding: 16px 30px 16px 20px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
    border-left: 10px solid var(--color-primary);
}

.related-item__text {
    max-width: 270px;
}

.related-list__item:not(:first-child) {
    margin-top: 10px;
}

.verdict-card {
    padding: 30px 30px 35px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.verdict-card__header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verdict-card__header-icon {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
}

.verdict-card__main--sm {
    max-width: 623px;
}

.author-card {
    padding: 30px 30px 40px;
    background-color: #f6f7f7;
    border-radius: 5px;
}

.author-card__main {
    padding-bottom: 26px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e7e7e7;
}

.author-card__img {
    margin-right: 30px;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.author-card__info {
    padding-top: 18px;
}

.author-card__info-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.author-card__info-btn {
    margin-left: 20px;
    flex: 0 0 auto;
    width: 150px;
}

.author-card__position {
    margin-top: 7px;
}

.author-card__text {
    margin-top: 20px;
}

.author-card__meta {
    margin-top: 30px;
    display: flex;
}

.author-card__meta-label {
    margin-right: 10px;
    flex: 0 0 auto;
}

.author-card__meta-label--tags {
    margin-top: 5px;
}

.bonus-advantage {
    padding: 15px 8px 13px;
    background-color: #f6f7f7;
    border-radius: 5px;
    text-align: center;
}

.bonus-advantage__title {
    margin-top: 6px;
}

.bonus-advantage__text {
    margin-top: 4px;
}

.bonus-card {
    display: flex;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
    overflow: hidden;
}

.bonus-card__num {
    margin-right: 40px;
    width: 30px;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background-color: var(--color-secondary);
    font-weight: 600;
}

.bonus-card__header {
    flex: 0 0 528px;
    display: flex;
    align-items: center;
}

.bonus-card__header--lg {
    flex-basis: 580px;
}

.bonus-card__header-main {
    padding: 20px 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.bonus-card__img-box {
    text-align: center;
    flex: 0 0 110px;
}

.bonus-card__img {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    padding: 5px;
}

.bonus-card__img--sm {
    height: 70px;
}

.bonus-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.bonus-card__img-link {
    margin-top: 15px;
}

.bonus-card__meta {
    margin-left: 60px;
    flex: 1 1 auto;
}

.bonus-card__meta-header {
    display: flex;
}

.bonus-card__rating {
    margin-left: 20px;
}

.bonus-card__features {
    padding-top: 8px;
    min-width: 288px;
}

.bonus-card__features--mobile {
    padding: 5px 0;
    background-color: #f6f7f7;
    display: none;
    align-items: center;
    justify-content: center;
}

.bonus-card__features-list {
    margin: -10px -15px 0;
    display: flex;
    flex-wrap: wrap;
}

.bonus-card__feature {
    margin: 10px 15px 0;
}

.bonus-card__feature-label {
    margin-bottom: 1px;
}

.bonus-card__advantages {
    margin-left: 50px;
    flex: 0 0 360px;
}

.bonus-card__advantages-list {
    margin: -10px -10px 0;
    display: flex;
    flex-wrap: wrap;
}

.bonus-card__advantage {
    margin: 10px 10px 0;
    width: calc(50% - 20px);
}

.company-card__ratings .bonus-card__advantage {
    margin: 10px 4px 0;
    width: calc(50% - 8px);
}

.bonus-card__main {
    padding: 20px 30px 20px 70px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.bonus-card__main--pl-sm {
    padding-left: 50px;
}

.bonus-card__info {
    flex: 1 1 auto;
}

.bonus-card__text {
    margin-top: 8px;
}

.bonus-card__main-footer {
    margin-left: 50px;
    padding-top: 25px;
    flex: 0 0 170px;
    text-align: center;
}

.bonus-card__safe {
    margin-top: 10px;
}

.bonuses-table__top-link {
    margin-bottom: 17px;
}

.bonuses-table__item:not(:first-child) {
    margin-top: 20px;
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility .4s, opacity .4s;
}

.popup--show {
    display: flex;
}

.popup--active {
    opacity: 1;
    visibility: visible;
}

.popup:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
}

.popup__body {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.popup__dialog {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 60px;
    padding-bottom: 60px;
    min-height: calc(100% - 60px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: calc(100vw - 32px);
    transition: transform .4s;
}

.popup__close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__disclosure {
    width: 580px;
    max-width: 100%;
}

.popup__casino-score {
    width: 580px;
    max-width: 100%;
}

.disclosure {
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.disclosure__title {
    padding: 12px;
    text-align: center;
    background-color: var(--color-primary);
}

.disclosure__main {
    padding: 27px 30px 35px;
}

.casino-score {
    padding: 30px 30px 45px;
    background-color: #fff;
    border-radius: 5px;
}

.casino-score__header {
    text-align: center;
}

.casino-score__rating {
    margin-bottom: 20px;
    font-size: 40px;
}

.casino-score__rating-icon {
    border-width: 4px;
    width: 50px;
    height: 50px;
}

.casino-score__rating-icon img {
    width: 29px;
    height: 23px;
}

.casino-score__text {
    margin-top: 15px;
}

.casino-score__list {
    margin-top: 27px;
    padding-right: 40px;
    max-height: 184px;
}

.casino-score__item {
    border-top: 1px solid #e7e7e7;
}

.casino-score__item:last-child {
    border-bottom: 1px solid #e7e7e7;
}

.casino-score__footer {
    margin: 0 auto;
    text-align: center;
    max-width: 352px;
}

.casino-score__footer {
    margin-top: 15px;
}

.casino-score__more {
    margin-top: 23px;
}

.verdict-item {
    padding: 42px 30px 35px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .03);
    border-radius: 5px;
}

.verdict-item__header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
}

.verdict-item__rating {
    margin-right: 22px;
}

.verdict-item__features-lists {
    display: flex;
    flex-wrap: wrap;
    max-width: 682px;
}

.verdict-item__features-list {
    width: calc(50% - 8px);
}

.verdict-item__features-list:nth-child(2n) {
    margin-left: 16px;
}

.verdict-item__text {
    margin-top: 24px;
}

.main__article {
    margin-top: 68px;
}

.article-header {
    padding: 0 var(--container-offset);
}

.article-top {
    display: grid;
    grid-template-columns: 260px auto;
}

.article-author {
    padding-right: 24px;
}

.article-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    background-color: #f2f4f5;
}

.article-author-info__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-author-info__img-box {
    position: relative;
    margin: 0 auto 27px;
    width: 150px;
    height: 150px;
}

.article-author-info__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.28;
    margin-top: 20px;
}

.article-author-info__item-icon {
    margin-right: 9px;
    width: 16px;
    height: 16px;
}

.article-author-info__item-info {
    text-align: left;
}

.article__text {
    margin-top: 35px;
}

.article-body {
    display: grid;
    grid-template-columns: 260px auto;
}

.article-sidebar__info-item {
    margin-top: 30px;
    top: 150px;
    position: -webkit-sticky;
    position: sticky;
}

.article-sidebar__label {
    margin-bottom: 20px;
}

.article-sidebar__info-text {
    margin-bottom: 16px;
}

.icon--contrast-0 {
    filter: contrast(0);
}

.linked-material {
    margin-top: 35px;
    background-color: #f6f7f7;
    border-radius: 5px;
    padding: 20px;
}

.linked-material__text {
    padding-bottom: 16px;
}

#warning {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    transition: transform .5s ease, opacity .5s ease;
    opacity: 1;
    transform: translateY(0);
}

#warning.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.warning-btn {
    margin-top: 20px;
}

.text__image-right {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.text__image-right .image-right img {
    min-width: 250px;
}

.text__image-left {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.text__image-left .image-left img {
    min-width: 250px;
}