@charset "UTF-8";

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0)
}

header {
    min-height: 65px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    z-index: 20
}

@media (max-width: 767px) {
    header {
        min-height: 50px;
        border-bottom: 5px solid #e4e4ff
    }
}

header.out {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1175px;
    padding: 0 15px;
    align-items: center;
    margin: 0 auto
}

header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .04em;
    padding-right: 10px;
    padding-left: 15px
}

@media (max-width: 991px) {
    header nav {
        position: absolute;
        top: 75px;
        left: 0;
        display: block;
        width: 80%;
        max-width: 400px;
        min-width: 250px;
        padding: 40px 20px 40px 40px;
        background: #ffffff;
        border-radius: 8px;
        transform: translate(-100%);
        transition: transform .3s
    }
}

.nav-list__icon {
    flex-shrink: 0;
    max-width: 16px;
    max-height: 16px;
    margin-right: 7px
}

@media (max-width: 991px) {
    .nav-list__icon {
        max-width: 26px;
        max-height: 26px;
        margin-right: 10px
    }
}

header .navigation-left,
header .navigation-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    color: #484040
}

@media (max-width: 991px) {

    header .navigation-left li,
    .active-link {
        margin-bottom: 20px
    }
}

header .navigation-left li,
header .navigation-right li {
    padding: 5px 10px
}

@media (max-width: 767px) {

    header .navigation-left li:nth-child(n+2),
    header .navigation-right li:nth-child(n+2) {
        margin-top: 20px
    }
}

@media (max-width: 991px) {

    header .navigation-left,
    header .navigation-right {
        display: block
    }
}

#checkbox-burger {
    display: none;
    width: 20px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none
}

.burger {
    display: none;
    width: 20px;
    height: 17px;
    margin-right: 20px;
    position: relative;
    z-index: 1
}

.burger span {
    padding: 0;
    width: 20px;
    height: 3px;
    background-color: #353941;
    display: block;
    border-radius: 4px;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    position: absolute
}

.burger span:first-child {
    top: 0
}

.burger span:nth-child(2),
.burger span:nth-child(3) {
    top: 7px
}

.burger span:last-child {
    bottom: 0
}

#checkbox-burger:checked {
    z-index: 20
}

#checkbox-burger:checked~.burger span:nth-last-child(4) {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translate(40px);
    background-color: transparent
}

#checkbox-burger:checked~.burger span:nth-last-child(3) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

#checkbox-burger:checked~.burger span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#checkbox-burger:checked~.burger span:nth-last-child(1) {
    -webkit-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    transform: translate(-40px);
    background-color: transparent
}

@media (max-width: 991px) {
    #checkbox-burger:checked~nav {
        max-height: calc(100vh - 90px);
        transform: translate(10px);
        overflow: auto
    }
}

.header-logo {
    max-width: 180px;
    height: auto
}

@media (max-width: 991px) {
    .header-logo {
        max-width: 150px
    }
}

header nav a {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 12px;
    line-height: 14px;
    color: #4a17b6;
    text-decoration: none
}

@media (max-width: 991px) {
    header nav a {
        font-size: 14px
    }
}

header nav a:hover {
    color: #3a128f
}

.fill-search-icon {
    fill: #353941
}

@media (max-width: 991px) {

    header .navigation-left li,
    header .navigation-right li {
        padding: 0 7px
    }

    .header-wrapper {
        position: relative;
        padding: 0 15px
    }

    .burger,
    #checkbox-burger {
        display: block
    }
}

@media (max-width: 767px) {
    header .navigation-right li:last-child {
        display: block;
        padding: 0
    }

    header .navigation-left li,
    header .navigation-right li {
        padding: 0
    }
}

.cookie-popup .cookie-agree {
    background: #a512ff;
    color: #fff
}

.cookie-popup .cookie-agree:hover {
    background: #b947ff
}

@media (min-width: 768px) {
    .navigation-right .nav-list__icon {
        display: none
    }
}

@media (min-width: 992px) {
    header .navigation-left {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        height: 30px;
        background: #E4E4FF
    }
}

@media (min-width: 1200px) {

    header .navigation-left li,
    header .navigation-right li {
        padding: 5px 15px
    }
}

@media (min-width: 1340px) {

    header .navigation-left li,
    header .navigation-right li {
        padding: 5px 25px
    }
}

.search-toggle {
    position: relative;
    top: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    width: 86px;
    height: 46px;
    border: none;
    background: none;
    outline: none;
    cursor: pointer
}

@media (max-width: 991px) {
    .search-toggle {
        width: 76px;
        height: 41px;
        top: 6px;
        margin-left: auto
    }
}

.search-toggle__icon {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.search-toggle__icon--open {
    width: 25px;
    height: 25px
}

@media (max-width: 767px) {
    .search-toggle__icon--open {
        width: 22px;
        height: 22px;
        margin-top: 3px
    }
}

.search-toggle__icon--close,
.search-toggle--active .search-toggle__icon--open {
    display: none
}

.search-toggle--active .search-toggle__icon--close {
    display: block
}

.search {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    width: 100%;
    min-width: 300px;
    padding: 10px 0;
    background: #E4E4FF
}

.search__inner {
    position: relative;
    max-width: 1175px;
    margin: 0 auto;
    padding: 0 15px
}

.search__field {
    position: relative
}

.search__field>svg {
    position: absolute;
    top: 13px;
    left: 20px;
    width: 14px;
    height: 14px
}

@media (max-width: 767px) {
    .search__field>svg {
        left: 14px
    }
}

.search__input {
    display: block;
    width: 100%;
    padding: 11px 120px 11px 40px;
    font-size: 14px;
    color: #353941;
    background: #ffffff;
    border: 1px solid #6D2BF1;
    border-radius: 20px;
    outline: none
}

@media (max-width: 767px) {
    .search__input {
        padding-right: 40px
    }
}

.search__input--writing {
    border-radius: 20px 20px 0 0
}

.search__clear {
    position: absolute;
    top: 10px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    color: #4a17b6;
    background: none;
    border: none;
    cursor: pointer
}

@media (max-width: 767px) {
    .search__clear {
        right: 11px
    }
}

.search__clear svg {
    flex-shrink: 0;
    width: 17px;
    height: 17px
}

.search__clear span {
    margin-left: 5px
}

@media (max-width: 767px) {
    .search__clear span {
        display: none
    }
}

.search__list-wrapper {
    position: absolute;
    top: 100%;
    right: 15px;
    left: 15px;
    display: none;
    color: #353941;
    font-size: 14px;
    background: #ffffff;
    border-radius: 0 0 20px 20px;
    border: 1px solid #878C97;
    border-top: none
}

.search__list ul {
    max-height: 320px;
    overflow-y: auto;
    padding: 7px 20px 15px;
    list-style: none
}

@media (max-width: 767px) {
    .search__list ul {
        padding-right: 15px;
        padding-left: 15px
    }
}

.search__list a {
    display: inline-block;
    padding: 7px 0;
    color: inherit;
    transition: color .2s;
    text-decoration: none
}

.search__list a:hover,
.search__list a:focus {
    color: #4a17b6
}

.search__res {
    padding: 10px 20px;
    text-align: center;
    font-size: inherit
}

.search__res--found {
    position: relative;
    display: none
}

.search__res--found:before {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    left: 20px;
    height: 1px;
    background: #878C97
}

@media (max-width: 767px) {
    .search__res--found:before {
        right: 15px;
        left: 15px
    }
}

.search__res--found>span {
    position: relative;
    padding: 0 60px
}

.search__res--found>span:before,
.search__res--found>span:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    transform-origin: center center;
    transform: rotate(135deg)
}

.search__res--found>span:before {
    top: 43%;
    left: 0;
    border-bottom: 2px solid #000000;
    border-left: 2px solid #000000
}

.search__res--found>span:after {
    right: 0;
    bottom: 43%;
    border-top: 2px solid #000000;
    border-right: 2px solid #000000
}

.search--active {
    display: block
}

.lang-nav {
    position: relative
}

.lang-nav img {
    width: 30px;
    height: 30px;
    flex-shrink: 0
}

.lang-nav__btn {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 5px
}

.lang-nav__list {
    position: absolute;
    top: 53px;
    right: 0;
    display: none;
    width: 210px;
    padding: 20px;
    background: #ffffff;
    list-style: none;
    overflow: auto;
    max-height: 100vh
}

@media (max-width: 767px) {
    .lang-nav__list {
        top: 44px;
        right: -15px
    }
}

.lang-nav__list li:nth-child(n+2) {
    margin-top: 20px
}

.lang-nav__list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #4a17b6;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none
}

.lang-nav__list a:hover,
.lang-nav__list a:focus {
    text-decoration: underline
}

.lang-nav__list span {
    margin-left: 15px
}

.lang-nav__list--active {
    display: block
}

.rating {
    width: 122px;
    height: 23px;
    -webkit-mask-image: url(stars-mask3.svg);
    mask-image: url(stars-mask3.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif
}

body {
    min-width: 320px;
    color: #353941
}

body.no-content-copy {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

main {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px
}

section {
    width: 100%
}

.main-left,
.content,
article {
    width: 100%
}

.main-left,
.content {
    display: flex;
    flex-direction: column;
    align-items: center
}

article {
    word-wrap: break-word;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%
}

article a {
    text-decoration: underline;
    color: #6d2bf1
}

article a:hover {
    text-decoration: none
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    margin-bottom: 20px
}

article ul,
article ol,
article p {
    margin-bottom: 35px
}

article img {
    max-width: 100%;
    height: auto
}

article .breadcrumbs-list {
    margin-bottom: 0
}

aside {
    width: 271px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-radius: 8px;
    margin-left: 22px;
    margin-bottom: 50px
}

.wrapper {
    width: 100%;
    max-width: 1175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 15px 0;
    margin: 0 auto
}

.wrapper--main {
    padding-top: 60px
}

.wrapper--main h1 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px
}

.wrapper--main .table.without-number tbody td:nth-child(2) {
    font-weight: 700
}

.wrapper--main .table:not(.without-number) tbody td:first-child {
    font-weight: 700
}

.wrapper--slot {
    padding-top: 15px
}

.wrapper--slot article h1 {
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .wrapper--slot article h1 {
        margin-bottom: 10px;
        text-align: left
    }
}

.wrapper--slot article h2,
.wrapper--slot article h3,
.wrapper--slot article h4,
.wrapper--slot article h5,
.wrapper--slot article h6 {
    margin-bottom: 20px
}

.wrapper--slot aside {
    padding-top: 65px
}

.wrapper--slot .breadcrumbs {
    margin-bottom: 25px
}

.wrapper--slot .breadcrumbs .wrapper {
    padding: 0
}

.wrapper--slot .slot-title {
    display: flex;
    align-items: flex-end
}

@media (max-width: 767px) {
    .wrapper--slot .slot-title {
        display: block
    }
}

.wrapper--slot .slot-title .rating {
    margin-right: 20px
}

.wrapper--slot .slot-title .rating {
    width: 115px;
    height: 25px
}

.wrapper--slot .slot-title__rate {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
    font-weight: 700
}

@media (max-width: 767px) {
    .wrapper--slot .slot-title__rate {
        margin-bottom: 20px
    }
}

.row-direction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.referral-btn {
    padding: 0;
    background: 0 0;
    border: none;
    outline: 0;
    cursor: pointer
}

.main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 130px;
    height: 40px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    border-radius: 8px;
    transition: all .3s ease;
    z-index: 1;
    cursor: pointer
}

.main-btn:hover {
    text-decoration: underline;
    background-color: #fff
}

.green-main-btn {
    height: 46px;
    font-size: 14px;
    background: #18b18d;
    border-radius: 40px;
    text-transform: uppercase
}

.green-main-btn:hover {
    color: #18b18d;
    text-decoration: none
}

.yelow-main-btn {
    height: 46px;
    background-color: transparent;
    border: 1px solid #4a17b6;
    color: #4a17b6;
    border-radius: 40px;
    text-transform: uppercase;
    text-decoration: none
}

.yelow-main-btn:hover {
    background: rgba(73, 23, 181, .1);
    text-decoration: none
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 14px
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto
}

.align-center {
    text-align: center
}

.columns {
    display: grid
}

.columns--three {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px
}

.content-top-title {
    font-size: 48px;
    margin-bottom: 35px
}

.content section {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.content-title,
h4:not([class]),
h3:not([class]) {
    text-align: start;
    width: 100%;
    line-height: 150%;
    font-weight: 700
}

h2:not([class]) {
    font-size: 32px
}

h3:not([class]) {
    font-size: 22px
}

h4:not([class]) {
    font-size: 20px
}

.content h2:not(.main-title) {
    font-size: 32px;
    margin-right: auto;
    margin-bottom: 35px
}

article ul:not([class]),
article ol:not([class]) {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 25px
}

article ul:not([class]),
.checked-list {
    padding: 0;
    font-size: 20px;
    width: 100%;
    line-height: 150%;
    list-style: none;
    margin: 15px 0 25px
}

article ul:not([class]) li,
.checked-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px
}

article ul:not([class]) li:before,
.checked-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMiI+PHBhdGggZD0iTTMwIDE2LjVjMCA4LjI4NS02LjcxNSAxNS0xNSAxNS04LjI4NCAwLTE1LTYuNzE1LTE1LTE1IDAtOC4yODQgNi43MTYtMTUgMTUtMTUgOC4yODUgMCAxNSA2LjcxNiAxNSAxNVoiIGZpbGw9IiM2RDJCRjEiLz48cGF0aCBkPSJNMzAgMTVjMCA4LjI4NS02LjcxNSAxNS0xNSAxNS04LjI4NCAwLTE1LTYuNzE1LTE1LTE1QzAgNi43MTYgNi43MTYgMCAxNSAwYzguMjg1IDAgMTUgNi43MTYgMTUgMTVaIiBmaWxsPSIjNkQyQkYxIi8+PHBhdGggZD0ibTIxIDEwLjUtOSA5LTMuNzUtMy43NS0zLjE4OCAzLjE1IDMuNzUgMy43NSAzIDMgLjE4OC4xNSAxMi4xODgtMTIuMTVMMjEgMTAuNVoiIGZpbGw9IiM2RDJCRjEiLz48cGF0aCBkPSJtMjEgOS05IDktMy43NS0zLjc1LTMuMTg4IDMuMTUgMy43NSAzLjc1IDMgMyAuMTg4LjE1IDEyLjE4OC0xMi4xNUwyMSA5WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) no-repeat;
    flex-shrink: 0
}

article ul:not([class]) li a,
.checked-list li a {
    color: #000 !important
}

article ol:not([class]) {
    counter-reset: ol-list;
    list-style: none
}

article ol:not([class]) li {
    counter-increment: ol-list;
    margin-bottom: 20px
}

article ol:not([class]) li:before {
    content: counter(ol-list);
    border-radius: 50%;
    display: inline-flex;
    background-color: #353941;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0
}

p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%
}

.text-content {
    width: 100%;
    margin: 50px 0
}

.four-items-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%
}

.four-item-column {
    width: 24%;
    margin-bottom: 20px;
    -webkit-box-shadow: 6px 8px 22px rgba(0, 0, 0, .2);
    box-shadow: 6px 8px 22px #0003
}

.four-item__name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto
}

.content>picture {
    margin: 0 auto
}

.content>picture img {
    width: auto;
    max-width: 100%;
    height: auto
}

.content>img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto
}

.wrapper--page article section:not([class]) {
    margin-bottom: 15px;
    padding: 30px;
    background: #eeeeff;
    border: 2px solid #6d2bf1;
    border-radius: 8px
}

.wrapper--page article section:not([class]) h2,
.wrapper--page article section:not([class]) h3,
.wrapper--page article section:not([class]) h4,
.wrapper--page article section:not([class]) h5,
.wrapper--page article section:not([class]) h6 {
    font-weight: 700;
    margin: 0 0 20px
}

.wrapper--page article section:not([class]) h2 {
    font-size: 32px
}

.wrapper--page article section:not([class]) h3 {
    font-size: 30px
}

.wrapper--page article section:not([class]) h4 {
    font-size: 28px
}

.wrapper--page article section:not([class]) h5 {
    font-size: 26px
}

.wrapper--page article section:not([class]) h6 {
    font-size: 24px
}

.wrapper--page article section:not([class]) p {
    font-size: 20px;
    margin: 0
}

.wrapper--page article section:not([class]) p:not(:last-child) {
    margin-bottom: 15px
}

.wrapper--content {
    display: block;
    padding-top: 15px
}

.wrapper--content .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start
}

.wrapper--content .breadcrumbs {
    margin-bottom: 30px
}

.wrapper--content .breadcrumbs .wrapper {
    padding: 0
}

.wrapper--content .text-content {
    margin-bottom: 0
}

.wrapper--contact .content-wrapper .wrapper {
    padding: 0
}

@media (max-width: 767px) {
    .wrapper--contact .content {
        width: 100%
    }
}

.wrapper--about .content h2:not(:first-child),
.wrapper--about .content h3:not(:first-child),
.wrapper--about .content h4:not(:first-child),
.wrapper--about .content h5:not(:first-child),
.wrapper--about .content h6:not(:first-child) {
    margin: 30px 0 10px
}

.wrapper--about .content ul,
.wrapper--about .content ol {
    margin: 30px 0 10px
}

.wrapper--about .content li:nth-child(n+2) {
    margin-top: 15px
}

.wrapper--about .content .main-title,
.wrapper--about .content .subheading {
    text-align: left
}

.wrapper--about h2:not([class]),
.wrapper--about h3:not([class]),
.wrapper--about h4:not([class]),
.wrapper--about h5:not([class]),
.wrapper--about h6:not([class]),
.wrapper--about p:not([class]) {
    margin-bottom: 20px
}

table {
    height: auto !important
}

.promo-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    margin: 0 0 0 auto;
    padding: 0;
    font-size: 23px;
    text-decoration: none;
    color: inherit;
    background: none;
    border: 0;
    background: #e4e4ff;
    border-radius: 8px;
    transition: background .2s;
    cursor: pointer
}

@media screen and (min-width: 768px) {
    .promo-link {
        width: auto;
        height: auto;
        color: #4a17b6;
        text-transform: uppercase;
        font-weight: 900;
        background: none
    }
}

@media screen and (min-width: 992px) {
    .promo-link {
        margin-left: 0
    }
}

@media screen and (min-width: 992px) {
    .promo-link {
        padding: 5px
    }
}

.promo-link:hover {
    color: #3a128f
}

.promo-link span {
    font-size: 12px
}

@media screen and (max-width: 767px) {
    .promo-link span {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .promo-link span {
        position: relative
    }
}

@media screen and (min-width: 768px) {
    .promo-link span:before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #00d92f
    }
}

.promo-link+.search-toggle {
    margin-left: 0
}

.winter-scene {
    z-index: 9999999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.winter-scene__santa {
    position: fixed;
    top: 30px;
    right: 70px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.winter-scene__santa-img {
    position: fixed;
    width: 70px;
    z-index: 2
}

.winter-scene__rope {
    position: fixed;
    top: 0;
    right: 70px;
    width: 2px;
    background-color: #8b4513;
    z-index: 1;
    height: 65px;
    opacity: .9
}

.js-snowflake {
    box-shadow: 0 0 .5rem #ffffffe6, 0 0 .8rem #000c;
    animation: fall linear infinite
}

.js-icon {
    text-shadow: .1rem .1rem 5px rgba(0, 0, 0, .3), 0 0 .8rem rgba(0, 0, 0, .5);
    animation: fall linear infinite
}

.js-snowflake,
.js-icon {
    animation-timing-function: linear;
    animation-fill-mode: forwards
}

@keyframes fall {
    0% {
        transform: translateY(-10vh)
    }

    to {
        transform: translateY(110vh)
    }
}

@media (min-width: 768px) {
    main {
        padding-top: 95px
    }
}

@media (min-width: 1050px) {

    .main-left,
    .content,
    article {
        max-width: 851px
    }
}

@media (min-width: 992px) {
    .hidden-md-up {
        display: none !important
    }
}

@media (min-width: 768px) {
    .hidden-sm-up {
        display: none !important
    }
}

.heading-wrap {
    display: flex;
    width: 100%;
    margin-bottom: 20px
}

@media (max-width: 767px) {
    .heading-wrap {
        flex-direction: column;
        align-items: center
    }
}

.heading-wrap .lazy-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-top: 5px
}

@media (max-width: 767px) {
    .heading-wrap .lazy-image {
        margin: 5px auto 20px
    }
}

.heading-wrap .main-title {
    margin-bottom: 0
}

.main-title,
.subheading {
    width: 100%;
    font-family: Roboto Slab, serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px
}

@media (max-width: 767px) {

    .main-title,
    .subheading {
        font-weight: 700;
        font-size: 26px;
        line-height: 110%;
        text-align: center
    }
}

.subheading {
    display: flex;
    align-items: center
}

@media (max-width: 767px) {
    .subheading {
        flex-direction: column
    }
}

.subheading:before {
    display: block;
    content: "";
    width: 30px;
    height: 32px;
    background: url("data:image/svg+xml,%3Csvg width='30' height='32' viewBox='0 0 30 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 16.5C30 24.7845 23.2845 31.5 15 31.5C6.7158 31.5 0 24.7845 0 16.5C0 8.2158 6.7158 1.5 15 1.5C23.2845 1.5 30 8.2158 30 16.5Z' fill='%230A0D10'/%3E%3Cpath d='M30 15C30 23.2845 23.2845 30 15 30C6.7158 30 0 23.2845 0 15C0 6.7158 6.7158 0 15 0C23.2845 0 30 6.7158 30 15Z' fill='%231D2730'/%3E%3Cpath d='M21 10.5L12 19.5L8.25 15.75L5.0625 18.9L8.8125 22.65L11.8125 25.65L12 25.7999L24.1875 13.65L21 10.5Z' fill='%230A0D10'/%3E%3Cpath d='M21 9L12 18L8.25 14.25L5.0625 17.4L8.8125 21.15L11.8125 24.15L12 24.2999L24.1875 12.15L21 9Z' fill='%23ECF0F1'/%3E%3C/svg%3E") no-repeat;
    flex-shrink: 0;
    margin-right: 29px
}

@media (max-width: 767px) {
    .subheading:before {
        margin-right: 0;
        margin-bottom: 21px
    }
}

.title {
    width: 100%;
    font-family: Roboto Slab, serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    margin-bottom: 20px;
    word-break: break-word
}

@media (max-width: 767px) {
    .title {
        font-size: 36px;
        text-align: center
    }
}

@media (min-width: 768px) {
    .heading-wrap .main-title {
        margin-left: 18px
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 48px;
        line-height: 55px
    }
}

.header-banner {
    margin-bottom: 60px
}

@media (max-width: 991px) {
    .header-banner .green-main-btn {
        margin: 0 auto
    }
}

.main-header {
    position: relative;
    display: flex;
    align-items: center;
    background: #4A17B6 url(footer-bg-1.webp) center top repeat;
    color: #fff;
    padding: 30px 0 15px
}

.main-header .wrapper {
    align-items: center;
    justify-content: space-between
}

.wrapper-content {
    text-align: center;
    width: 100%
}

.top-title {
    margin: 0;
    color: #fff
}

.top-title:not(:empty) {
    margin-bottom: 19px
}

.top-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #fff
}

@media (max-width: 767px) {
    .top-text:not(:empty) {
        margin-bottom: 20px
    }
}

.square-links__wrapper.wrapper {
    flex-direction: row;
    width: calc(100% + 18px);
    padding: 0;
    margin: 0 -9px
}

@media (max-width: 1199px) {
    .square-links__wrapper.wrapper {
        flex-wrap: wrap
    }
}

@media (max-width: 991px) {
    .square-links__wrapper.wrapper {
        width: 100%;
        margin: 0
    }
}

@media (max-width: 767px) {
    .square-links__wrapper.wrapper {
        bottom: -143px;
        width: calc(100% + 10px);
        max-width: 384px;
        margin: 0 -5px
    }
}

@media (max-width: 449px) {
    .square-links__wrapper.wrapper {
        max-width: 375px;
        padding: 0 5px
    }
}

.square-link-wrapper {
    display: flex;
    margin: 9px
}

@media (max-width: 1199px) {
    .square-link-wrapper {
        width: calc(50% - 18px);
        justify-content: center
    }
}

@media (max-width: 991px) {
    .square-link-wrapper {
        width: calc(25% - 10px);
        margin: 5px
    }
}

@media (max-width: 767px) {
    .square-link-wrapper {
        width: calc(50% - 10px)
    }
}

.square-link {
    width: 174px;
    height: 174px;
    background-image: linear-gradient(-45deg, #1C9C7E 0 50%, #18B18D 50% 100%);
    box-shadow: 22px 22px 33px #27623440;
    border-radius: 8px;
    transition: transform .3s ease;
    padding: 7px;
    text-decoration: none
}

.square-link:hover {
    transform: scale(1.1)
}

.square-link div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 1px solid #ffffff;
    padding: 13px 0
}

.square-link img {
    margin-bottom: 19px
}

.square-link img.casino {
    width: 73px;
    height: 71px
}

.square-link img.bonuses {
    width: 68px;
    height: 72px
}

.square-link img.games {
    width: 80px;
    height: 82px
}

.square-link img.guides {
    width: 99px;
    height: 68px
}

.square-link-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #fff;
    text-align: center
}

@media (min-width: 768px) {
    .header-banner {
        margin-bottom: 50px
    }
}

@media (min-width: 992px) {
    .header-banner {
        margin-bottom: 0
    }
}

@media (min-width: 992px) {
    .main-header {
        padding: 15px 0 38px
    }
}

@media (min-width: 992px) {
    .main-header .wrapper {
        flex-direction: row
    }
}

@media (min-width: 992px) {
    .wrapper-content {
        text-align: left;
        margin-right: 30px
    }
}

@media (min-width: 768px) {
    .top-title:not(:empty) {
        margin-bottom: 13px
    }
}

@media (min-width: 992px) {
    .square-link {
        width: 145px;
        height: 145px;
        background-image: linear-gradient(-45deg, #1C9C7E 0 50%, #18B18D 50% 100%);
        padding: 5px
    }
}

@media (min-width: 992px) {
    .square-link div {
        padding: 9px 0
    }
}

@media (min-width: 992px) {
    .square-link img {
        margin-bottom: 14px
    }
}

@media (min-width: 992px) {
    .square-link img.casino {
        width: 54px;
        height: 53px
    }
}

@media (min-width: 992px) {
    .square-link img.bonuses {
        width: 51px;
        height: 54px
    }
}

@media (min-width: 992px) {
    .square-link img.games {
        width: auto;
        height: 54px
    }
}

@media (min-width: 992px) {
    .square-link img.guides {
        width: 74px;
        height: 50px
    }
}

@media (min-width: 992px) {
    .square-link-text {
        font-size: 18px;
        line-height: 21px
    }
}

@media (max-width: 1049px) {
    aside {
        display: none
    }
}

.aside-links,
.aside-casinos {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden
}

.aside-links .aside-title {
    background: #6D2BF1
}

.aside-links .aside-title__text {
    color: #fff
}

.aside-links ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    background: #EEEEFF
}

.aside-links ul:last-child {
    border-radius: 0 0 8px 8px
}

.aside-links li {
    padding: 10px 20px;
    line-height: 1
}

.aside-links li:nth-child(n+2) {
    border-top: 1px solid #E4E4FF
}

.aside-links a {
    font-size: 14px;
    color: #353941;
    text-decoration: none
}

.aside-links a:hover {
    color: #6d2bf1
}

.aside-title {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: #E4E4FF
}

.aside-list {
    list-style: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #1d2730;
    padding: 6px 0 15px
}

.aside-list a {
    display: flex;
    padding: 10px
}

.aside-list a:hover {
    background-color: #d6d8db
}

.aside-title__text {
    font-weight: 700;
    color: #353941;
    word-break: break-word
}

.aside-casinos .rating {
    width: 85px;
    height: 16px
}

.casinos-list {
    list-style: none;
    padding-bottom: 8px;
    border: 1px solid #E4E4FF;
    border-radius: 0 0 8px 8px
}

.casinos-list li {
    display: flex;
    align-items: center;
    padding: 7px 5px
}

.casinos-list li:nth-child(n+2) {
    border-top: 1px solid #E4E4FF
}

.casinos-list picture {
    display: block;
    width: 65px;
    height: 45px;
    border-radius: 8px;
    margin-right: 12px
}

.aside-casinos-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px
}

.aside-casino-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 103.19%;
    color: #353941;
    margin-bottom: 6px;
    padding-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word
}

.aside-casino-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    min-height: 32px;
    padding: 5px;
    background-color: #18b18d;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin-left: auto;
    text-transform: uppercase
}

@media (min-width: 1050px) {
    .aside-title {
        padding: 10px 10px 10px 50px
    }
}

@media (min-width: 1050px) {
    .aside-title__img {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%)
    }
}

@media (min-width: 1050px) {
    .aside-title__text {
        font-size: 18px;
        line-height: 26px
    }
}

@media (min-width: 1050px) {
    .aside-casinos {
        margin-bottom: 15px
    }

    .aside-casinos .aside-title {
        box-shadow: none;
        padding: 13px 10px 13px 45px
    }

    .aside-casinos .aside-title__text {
        font-size: 20px;
        line-height: 23px
    }
}

.casinos-review-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 40px
}

@media (max-width: 767px) {
    .casinos-review-section {
        align-items: center
    }
}

.casinos-review-section .rating {
    margin-right: 30px
}

@media (max-width: 767px) {
    .casinos-review-section .rating {
        margin: 15px auto;
        justify-content: center;
        width: 128px;
        height: 24px
    }
}

.casino-review {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #6D2BF1;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    margin-bottom: 15px
}

.casino-review:last-child {
    margin-bottom: 0
}

.casino-review__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px
}

.casino-review__number span {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e4e4ff;
    border-radius: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 26px;
    color: #6d2bf1;
    z-index: 1
}

.casino-review__wrapper {
    width: 100%
}

.casino-review__left {
    display: flex;
    width: 100%;
    flex-direction: column
}

.casino-review__left-top {
    display: flex;
    align-items: center;
    padding: 15px
}

@media (max-width: 767px) {
    .casino-review__left-top {
        flex-direction: column
    }
}

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    margin-bottom: 0;
    max-width: 100%;
    width: 200px;
    max-height: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden
}

@media (max-width: 767px) {
    .casino-logo {
        margin-right: 0;
        margin-bottom: 15px
    }
}

.casino-logo img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%
}

.casino-review__left-top__center {
    width: 100%
}

@media (max-width: 767px) {
    .casino-review__left-top__center>div {
        width: 100%
    }
}

@media (max-width: 1100px) {
    .casino-review__left-top__center ul {
        margin-left: 10px;
        padding-left: 0
    }
}

@media (max-width: 767px) {
    .casino-review__left-top__center ul {
        width: 100%;
        margin-right: 0;
        margin-left: 0
    }
}

.casino-review__name {
    font-weight: 700;
    line-height: 103.19%;
    font-size: 32px;
    color: #6d2bf1
}

@media (max-width: 767px) {
    .casino-review__name {
        font-size: 26px;
        text-align: center
    }
}

.casino-review__rating {
    flex-shrink: 0
}

.casino-review__rating p {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: unset;
    margin-bottom: 10px
}

@media (max-width: 767px) {
    .casino-review__rating p {
        margin-bottom: 0
    }
}

.casino-review__payment-methods {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #353941;
    margin: 5px 0 0
}

@media (max-width: 767px) {
    .casino-review__payment-methods {
        order: 2;
        margin-top: 20px;
        justify-content: center
    }
}

.casino-review__payment-methods li {
    display: flex;
    margin: 4px 8px
}

.casino-review__payment-methods img {
    width: 100%;
    max-height: 30px;
    max-width: 50px;
    border-radius: 8px
}

.casino-review__payments-inner {
    margin-left: 5px;
    position: relative;
    color: #353941;
    order: 2
}

@media (max-width: 767px) {
    .casino-review__payments-inner {
        margin-left: auto
    }
}

.casino-review__payments-inner:hover>ul {
    display: flex
}

.casino-review__payments-inner:hover>.casino-review__payments-tooltip {
    background: #E4E4FF
}

.casino-review__payments-inner ul {
    z-index: 9;
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    width: 460px;
    box-shadow: 0 8px 10px -5px #00000026;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 15px;
    list-style: none;
    background: #E4E4FF;
    border-radius: 6px;
    transform: translate(-50%, 18px)
}

@media (max-width: 767px) {
    .casino-review__payments-inner ul {
        right: -5px;
        left: auto;
        width: 295px;
        padding: 10px;
        transform: translateY(10px)
    }
}

.casino-review__payments-inner ul:before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-right-width: 13px;
    border-left-width: 13px;
    border-bottom: 13px solid #E4E4FF;
    transform: translate(-50%)
}

@media (max-width: 767px) {
    .casino-review__payments-inner ul:before {
        left: auto;
        right: 18px;
        transform: none
    }
}

.casino-review__payments-inner ul li {
    max-width: 100%;
    max-height: 100%;
    width: 50px;
    height: 30px;
    margin: 5px
}

.casino-review__payments-inner ul img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%
}

.casino-review__payments-tooltip {
    margin-top: 5px;
    display: inline-block;
    padding: 3px 15px;
    border: 1px solid #E4E4FF;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s
}

.casino-review__payments-tooltip:hover {
    background: #E4E4FF
}

.casino-review__left-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #EEEEFF;
    padding: 12px 15px;
    border-radius: 0 0 10px 10px
}

@media (max-width: 767px) {
    .casino-review__left-bottom {
        flex-wrap: wrap
    }
}

.casino-review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .casino-review__head {
        display: block;
        margin-bottom: 20px
    }
}

.casino-review__info {
    display: flex;
    justify-content: space-around
}

@media (max-width: 767px) {
    .casino-review__info {
        flex-wrap: wrap
    }
}

.casino-review__left-bottom>div,
.casino-review__info div {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

@media (max-width: 767px) {

    .casino-review__left-bottom>div,
    .casino-review__info div {
        align-items: flex-start
    }
}

.casino-review__left-bottom>div strong,
.casino-review__info div strong {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    word-break: break-word
}

.casino-review__info div {
    width: 24.5%
}

@media (max-width: 767px) {
    .casino-review__info div {
        width: 32%;
        margin-bottom: 10px;
        text-align: center;
        align-items: center
    }
}

@media (max-width: 767px) {
    .casino-review__info div:last-child {
        width: 100%
    }
}

.casino-review__left-bottom .casino-review__right {
    flex-direction: row;
    flex-shrink: 0
}

.casino-review__right {
    order: 3;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 30px
}

@media (max-width: 1100px) {
    .casino-review__right {
        margin-left: 10px;
        padding-left: 0
    }
}

@media (max-width: 767px) {
    .casino-review__right {
        order: 1;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto
    }
}

.casino-review__right .main-btn {
    min-width: 136px;
    padding: 0 5px
}

@media (max-width: 767px) {
    .casino-review__right .main-btn {
        min-width: 130px
    }
}

.casino-review__right .green-main-btn {
    margin-left: 15px;
    padding: 0 5px
}

.top-casino-review {
    display: block;
    height: 100% !important;
    color: #fff;
    background: #4A17B6 linear-gradient(45deg, transparent 30%, #6D2BF1 30%, #6D2BF1 70%, transparent 70%);
    margin-top: 0;
    padding-top: 50px
}

@media (max-width: 767px) {
    .top-casino-review {
        flex-direction: column;
        align-items: center
    }
}

.top-casino-review .casino-review__name {
    color: #fff
}

.top-casino-review .casino-review__number {
    width: 50px;
    height: 50px
}

.top-casino-review .casino-review__number span {
    background: #F0F041;
    font-size: 32px
}

.top-casino-review .top-casino-review__title {
    position: absolute;
    top: 14px;
    left: 70px;
    font-weight: 700;
    font-size: 20px;
    line-height: 21px;
    color: #f0f041
}

.top-casino-review .casino-review__wrapper {
    flex-direction: column
}

.top-casino-review .casino-logo {
    color: #fff
}

@media (max-width: 767px) {
    .top-casino-review .casino-review__name {
        width: 100%
    }
}

.top-casino-review .casino-review__payment-methods {
    margin: 5px 0 0;
    order: 1;
    padding: 0
}

@media (max-width: 767px) {
    .top-casino-review .casino-review__payment-methods {
        margin-top: 20px;
        order: 2
    }
}

@media (min-width: 768px) {
    .top-casino-review .casino-review__left-top__center {
        border: none;
        padding-bottom: 0
    }
}

@media (min-width: 768px) {
    .top-casino-review .rating {
        width: 122px;
        height: 23px
    }
}

@media (min-width: 768px) {
    .top-casino-review .casino-review__right {
        justify-content: flex-start
    }
}

.best-slots-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 35px
}

@media (max-width: 767px) {
    .best-slots-section {
        padding-top: 55px
    }
}

.card-item {
    background: #fff;
    box-shadow: 6px 8px 22px #0003;
    border-radius: 8px;
    padding: 25px 40px 40px 30px;
    margin-bottom: 25px
}

@media (max-width: 991px) {
    .card-item {
        display: flex;
        flex-direction: column;
        padding: 15px
    }
}

.card-item p {
    line-height: 170%
}

@media (max-width: 991px) {
    .card-item__heading {
        order: 2
    }
}

@media (max-width: 767px) {
    .card-item__heading {
        text-align: center
    }
}

.card-item__heading p {
    color: #20882e
}

.card-item__heading p b {
    text-decoration: underline
}

@media (max-width: 767px) {
    .card-item__text {
        text-align: center
    }
}

.card-item__text p {
    margin-bottom: 0
}

.card-item__content {
    display: block
}

@media (max-width: 991px) {
    .card-item__content {
        order: 3
    }
}

.card-item__image {
    border-radius: 8px
}

@media (max-width: 991px) {
    .card-item__image {
        order: 1;
        width: 100%;
        height: 200px;
        margin-bottom: 15px
    }
}

.card-item__image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px
}

@media (max-width: 991px) {
    .card-item__image img {
        height: 100%
    }
}

.card-list {
    list-style-type: none
}

.card-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0
}

@media (max-width: 767px) {
    .card-list__item {
        flex-direction: column
    }
}

.card-list__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.card-list__item span {
    color: #000;
    font-size: 20px;
    font-style: italic;
    line-height: 170%
}

.card-list__link {
    color: #20882e;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    line-height: 170%;
    text-decoration: underline
}

@media (min-width: 992px) {
    .card-item__image {
        width: 410px;
        float: right;
        margin-left: 10px;
        margin-bottom: 10px
    }
}

.about-bonuses .columns--three {
    margin-bottom: 35px
}

@media (max-width: 991px) {
    .about-bonuses .columns {
        display: block
    }
}

.about-bonuses__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    background: #4A17B6;
    border: 1px solid #6D2BF1
}

@media (max-width: 991px) {
    .about-bonuses__item {
        padding: 21px 17px
    }

    .about-bonuses__item:not(:last-of-type) {
        margin-bottom: 10px
    }
}

.about-bonuses__item .casino-logo {
    max-width: 230px;
    max-height: 120px;
    border-radius: 6px;
    border: none;
    overflow: hidden;
    padding: 0;
    margin: 0 auto
}

.about-bonuses__item .casino-logo img {
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: cover
}

.about-bonuses__info-wrap {
    width: 100%;
    margin: 15px 0 0
}

@media (max-width: 991px) {
    .about-bonuses__info-wrap {
        flex-direction: column;
        margin: 15px 0 0
    }
}

.about-bonuses__info-column {
    width: 100%;
    display: flex;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    margin-bottom: 15px
}

.about-bonuses__info-column span {
    text-transform: capitalize
}

.about-bonuses__info-column div {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    width: 40%
}

@media (max-width: 991px) {
    .about-bonuses__info-column div {
        width: 50%
    }
}

@media (max-width: 991px) {
    .about-bonuses__info-column div span {
        width: 97px;
        margin-right: 10px;
        margin-left: 15px
    }
}

.about-bonuses__info-column img {
    width: auto;
    height: 18px;
    margin-right: 5px
}

.about-bonuses__info-column strong {
    margin-left: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #f0f041
}

@media (max-width: 991px) {
    .about-bonuses__info-column strong {
        width: 50%
    }
}

.about-bonuses__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto
}

.about-bonuses__links .green-main-btn {
    width: 100%;
    max-width: 306px;
    margin-bottom: 0
}

.about-bonuses__bottom {
    order: 1;
    text-align: center
}

.about-bonuses__review-link {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-top: 10px;
    font-size: 16px
}

.about-bonuses__payment-methods {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%
}

.about-bonuses__payment-methods li {
    margin: 4px 8px
}

.about-bonuses__payment-methods img {
    max-height: 30px
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-bonuses .columns--three {
        grid-column-gap: 10px
    }
}

@media (min-width: 992px) {
    .about-bonuses__item .casino-logo {
        max-width: 290px;
        max-height: 150px;
        border: none
    }
}

@media (min-width: 992px) {
    .about-bonuses__info-column {
        word-break: break-word
    }
}

@media (min-width: 992px) {
    .about-bonuses__links .green-main-btn {
        width: calc(100% - 5px)
    }
}

article .table-wrap {
    margin-bottom: 20px
}

article .table-wrap .table,
article .table-wrap table:not([class]) {
    margin-bottom: 0
}

.table,
article table:not([class]) {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
    border-collapse: collapse;
    width: 100%;
    min-width: 600px
}

.table th,
.table td,
article table:not([class]) th,
article table:not([class]) td {
    padding: 10px;
    border: 1px solid #ffffff
}

.table th,
article table:not([class]) th {
    font-weight: 500;
    background: #4A17B6;
    color: #e4e4ff
}

.table td,
article table:not([class]) td {
    background: #EEEEFF
}

.table tbody tr:nth-child(2n) td,
article table:not([class]) tbody tr:nth-child(2n) td {
    background: #E4E4FF
}

.table img,
article table:not([class]) img {
    max-width: 50px;
    border-radius: 8px
}

.table-wrap {
    width: 100%;
    overflow-x: auto
}

.table button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 130px;
    height: 40px;
    color: #fff;
    font-weight: 700;
    line-height: 19px;
    transition: all .3s ease;
    z-index: 1;
    cursor: pointer;
    height: 32px;
    font-size: 14px;
    background: #18B18D;
    border-radius: 40px;
    text-transform: uppercase;
    margin: 0 auto
}

.table button:hover {
    background: #149677;
    color: #fff
}

article table:not([class]) button {
    display: inline-block;
    min-width: 120px;
    min-height: 32px;
    height: auto;
    padding: 5px 10px;
    color: #6d2bf1;
    border: 1px solid #6D2BF1;
    border-radius: 40px;
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    background: transparent;
    transition: .15s background;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0 auto
}

article table:not([class]) button:hover {
    background: rgba(109, 43, 241, .1);
    color: #6d2bf1
}

.stepper {
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 25px;
    counter-reset: ol-list;
    list-style: none
}

.stepper li {
    position: relative;
    counter-increment: ol-list;
    margin-bottom: 20px;
    padding-left: 65px
}

.stepper li:before,
.stepper li:after {
    position: absolute
}

.stepper li:before {
    content: "";
    top: 7px;
    bottom: -20px;
    left: 16px;
    width: 3px;
    background: #353941
}

.stepper li:after {
    content: counter(ol-list);
    top: 0;
    left: 0;
    border-radius: 50%;
    display: inline-flex;
    background-color: #353941;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0
}

.stepper li:last-child:before {
    display: none
}

.stepper li:last-child:after {
    content: "";
    background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMiI+PHBhdGggZD0iTTMwIDE2LjVjMCA4LjI4NS02LjcxNSAxNS0xNSAxNS04LjI4NCAwLTE1LTYuNzE1LTE1LTE1IDAtOC4yODQgNi43MTYtMTUgMTUtMTUgOC4yODUgMCAxNSA2LjcxNiAxNSAxNVoiIGZpbGw9IiM2RDJCRjEiLz48cGF0aCBkPSJNMzAgMTVjMCA4LjI4NS02LjcxNSAxNS0xNSAxNS04LjI4NCAwLTE1LTYuNzE1LTE1LTE1QzAgNi43MTYgNi43MTYgMCAxNSAwYzguMjg1IDAgMTUgNi43MTYgMTUgMTVaIiBmaWxsPSIjNkQyQkYxIi8+PHBhdGggZD0ibTIxIDEwLjUtOSA5LTMuNzUtMy43NS0zLjE4OCAzLjE1IDMuNzUgMy43NSAzIDMgLjE4OC4xNSAxMi4xODgtMTIuMTVMMjEgMTAuNVoiIGZpbGw9IiM2RDJCRjEiLz48cGF0aCBkPSJtMjEgOS05IDktMy43NS0zLjc1LTMuMTg4IDMuMTUgMy43NSAzLjc1IDMgMyAuMTg4LjE1IDEyLjE4OC0xMi4xNUwyMSA5WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==) no-repeat
}

.grid-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.grid-blocks p {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .grid-blocks .heading-wrap {
        align-items: flex-start
    }
}

.grid-blocks .lazy-image {
    margin-top: 0;
    width: 52px;
    height: 52px;
    object-fit: contain
}

@media (max-width: 767px) {
    .grid-blocks .lazy-image {
        margin-right: 0;
        margin-left: 0
    }
}

.grid-blocks .main-title {
    margin-top: 5px;
    margin-left: 25px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #6d2bf1
}

@media (max-width: 767px) {
    .grid-blocks .main-title {
        margin-top: 0;
        margin-left: 0;
        text-align: left
    }
}

.grid-blocks__item {
    width: 48.5%;
    margin-bottom: 20px;
    padding: 30px 35px;
    background: #EEEEFF;
    border-radius: 6px
}

@media (max-width: 767px) {
    .grid-blocks__item {
        width: 100%
    }
}

.how-work-section {
    position: relative;
    color: #fff;
    background: #353941;
    padding: 35px;
    border-radius: 8px
}

.how-work-section .main-title,
.how-work-section p,
.how-work-section ul {
    color: #fff
}

.how-work-section .main-title {
    text-align: left;
    margin-left: 0
}

.how-work-section .subheading {
    flex-direction: row;
    color: #f0f041;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px
}

.how-work-section .subheading:before {
    width: 31px;
    height: 30px;
    background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMSAzMCI+PHBhdGggZD0iTTMwLjMwNyAxNWMwIDguMjg1LTYuNzg0IDE1LTE1LjE1MyAxNUM2Ljc4NCAzMCAwIDIzLjI4NSAwIDE1IDAgNi43MTYgNi43ODUgMCAxNS4xNTQgMHMxNS4xNTMgNi43MTYgMTUuMTUzIDE1WiIgZmlsbD0iI0YwRjA0MSIvPjxwYXRoIGQ9Im0xNC44MTcgMTAuNS02LjMxNCA5LTIuNjMxLTMuNzUtMi4yMzYgMy4xNSAyLjYzIDMuNzUgMi4xMDUgMyAuMTMyLjE1IDguNTUtMTIuMTUtMi4yMzYtMy4xNVoiIGZpbGw9IiNGMEYwNDEiLz48cGF0aCBkPSJtMjEuMTU2IDctOS4wOTUgOC45LTMuNzktMy43MDgtMy4yMiAzLjExNSAzLjc5IDMuNzA4IDMuMDMgMi45NjcuMTkuMTQ4IDEyLjMxNi0xMi4wMTVMMjEuMTU2IDdaIiBmaWxsPSIjMzUzOTQxIi8+PC9zdmc+) no-repeat;
    margin-right: 23px
}

@media (max-width: 767px) {
    .how-work-section .subheading:before {
        margin-right: 18px;
        margin-bottom: 0
    }
}

.how-work-section ul {
    list-style-position: inside;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    padding-left: 15px;
    margin-bottom: 30px
}

.how-work-section__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px
}

@media (max-width: 767px) {
    .how-work-section__bottom {
        justify-content: center
    }
}

.how-work-section__bottom .main-btn {
    width: 167px
}

@media (max-width: 767px) {
    .how-work-section__logo {
        display: none
    }
}

@media (min-width: 768px) {
    .how-work-section.visible {
        background: #353941 url(how-work-bg.webp) top/contain no-repeat
    }
}

@media (max-width: 1100px) {
    .how-work-section__logo .how-work-section__logo {
        margin: 0
    }
}

.best-payment-section {
    margin: 50px 0 25px
}

.best-payment__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 15px
}

.best-payment__card {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 2px 5px 25px #0003;
    border-radius: 6px;
    padding: 27px 20px 20px;
    margin-bottom: 10px
}

.best-payment__card .main-text {
    margin-bottom: 0
}

.best-payment__heading {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #134e1b;
    margin-bottom: 16px
}

.best-payment__heading img {
    width: 40px;
    height: 40px;
    margin-right: 10px
}

@media (min-width: 768px) {
    .best-payment__wrapper {
        width: calc(100% + 30px);
        margin: 0 -15px
    }
}

@media (min-width: 768px) {
    .best-payment__card {
        width: calc(50% - 30px);
        padding: 27px 27px 21px;
        margin: 0 15px 32px
    }
}

.faq {
    margin-top: 50px
}

.acc-сontent:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.acc-сontent:first-of-type .acc__title {
    padding-top: 0
}

.acc-сontainer {
    width: 100%;
    margin: 20px auto 0
}

.acc-сontainer input {
    display: none
}

.acc-сontainer input:checked+label:before {
    content: "-";
    transition: .5s
}

.acc-сontainer input:checked~.acc__title {
    padding-bottom: 10px
}

.acc-сontainer input:checked~.acc-body {
    height: auto;
    font-size: 20px;
    border-left: 3px solid #1D2730;
    transition: .5s;
    margin-bottom: 25px
}

.acc-сontainer label:before {
    content: "+";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: #fff;
    background: #2AB03C;
    border-radius: 50%;
    margin-right: 10px
}

.acc-body {
    width: calc(100% - 20px);
    height: 0;
    color: #000;
    font-weight: 400;
    line-height: 150%;
    transition: .5s;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 15px;
    margin: 0 0 0 20px
}

.acc__title {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    color: #1d2730;
    font-weight: 600;
    font-size: 24px;
    line-height: 35px;
    z-index: 100;
    padding: 15px 10px 15px 0
}

@media (min-width: 768px) {
    .acc-сontainer input:checked~.acc-body {
        margin-bottom: 22px
    }
}

@media (min-width: 768px) {
    .acc-body {
        width: calc(100% - 50px);
        margin: 0 0 0 50px
    }
}

@media (min-width: 768px) {
    .acc__title {
        padding: 20px 10px
    }
}

.slot-type-card__wrapper {
    margin-bottom: 50px
}

.slot-type-card {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    overflow: hidden;
    border: 1px solid #6D2BF1;
    border-radius: 6px;
    padding: 15px 15px 48px;
    margin-bottom: 10px;
    z-index: 1
}

.slot-type-card:last-child {
    margin-bottom: 0
}

.slot-type-card:before,
.slot-type-card:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    z-index: -1
}

.slot-type-card:before {
    left: 0;
    top: 0;
    border-top: 81px solid #eeeeff;
    border-right: 81px solid transparent;
    display: none
}

.slot-type-card:after {
    right: 0;
    bottom: 0;
    border-bottom: 81px solid #eeeeff;
    border-left: 81px solid transparent
}

.slot-type-card__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 170%;
    margin-bottom: 4px
}

.slot-type-card__text {
    margin: 0
}

.slot-type-card__img-wrapper {
    position: relative;
    margin-bottom: 10px
}

.slot-type-card__img-wrapper:hover .slot-type-card__hidden {
    height: 131px
}

.slot-type-card__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 131px;
    flex-shrink: 0
}

.slot-type-card__img img {
    width: auto;
    height: 100%;
    flex-shrink: 0
}

.slot-type-card__hidden {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #00000080;
    transition: height .2s ease
}

@media (min-width: 768px) {
    .slot-type-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        padding-left: 25px
    }
}

@media (min-width: 768px) {
    .slot-type-card:before {
        display: block;
        border-top-width: 79px
    }
}

@media (min-width: 768px) {
    .slot-type-card:after {
        border-bottom-width: 130px;
        border-left-width: 127px
    }
}

@media (min-width: 768px) {
    .slot-type-card__title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px
    }
}

@media (min-width: 768px) {
    .slot-type-card__img-wrapper {
        border-radius: 8px;
        margin-left: 25px;
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .slot-type-card__img-wrapper:hover .slot-type-card__hidden {
        height: 164px
    }
}

@media (min-width: 768px) {
    .slot-type-card__img {
        width: 164px;
        height: 164px;
        border-radius: 8px
    }
}

@media (min-width: 768px) {
    .slot-type-card__img img {
        border-radius: 8px
    }
}

@media (min-width: 768px) {
    .slot-type-card__hidden {
        border-radius: 8px
    }
}

.faqs {
    background: #EEEEFF;
    border-radius: 8px;
    padding: 30px 30px 25px
}

@media (max-width: 767px) {
    .faqs {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        padding: 30px 15px 50px
    }
}

.faqs:not(:last-child) {
    margin-bottom: 30px
}

.faqs__title {
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 32px;
    color: #353941
}

.faqs__list {
    list-style: none
}

.faqs__list li:nth-child(n+2) {
    margin-top: 20px
}

@media (max-width: 767px) {
    .faqs__list li:nth-child(n+2) {
        margin-top: 30px
    }
}

.faqs__subtitle {
    margin-bottom: 7px;
    font-size: 20px
}

.faqs__text {
    margin-bottom: 0;
    font-size: 20px
}

.pros-cons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 50px
}

.pros-cons__wrapper {
    width: 100%;
    border-radius: 8px
}

.pros-cons__list {
    border-radius: 8px;
    margin-bottom: 0
}

.pros__wrapper {
    margin-bottom: 20px
}

.pros__wrapper .pros-cons__list {
    background: rgba(42, 176, 128, .1)
}

.cons__wrapper .pros-cons__list {
    background: rgba(202, 29, 29, .1)
}

.pros-cons__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 170%;
    text-align: center;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 7px;
    text-transform: uppercase
}

.pros__title {
    background: rgba(42, 176, 128, .1)
}

.cons__title {
    background: rgba(202, 29, 29, .1)
}

.pros-cons__list {
    list-style-type: none;
    padding: 20px
}

.pros-cons__item {
    display: flex;
    justify-content: flex-start;
    font-size: 20px;
    line-height: 140%
}

.pros-cons__item:not(:last-of-type) {
    margin-bottom: 20px
}

.pros-cons__item:before {
    content: "";
    height: 17px;
    flex-shrink: 0;
    margin-top: 6px;
    margin-right: 20px;
    opacity: .8
}

.pros__item:before {
    width: 24px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='17' viewBox='0 0 24 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.93463 12.677L2.59914 7.6432L0.308105 9.80469L7.93463 17L23.6624 2.1615L21.3714 0L7.93463 12.677Z' fill='%232AB03C'/%3E%3C/svg%3E")
}

.cons__item:before {
    width: 18px;
    background: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.7591 0L9.28496 6.375L2.81233 0L0.654785 2.125L7.12741 8.5L0.654785 14.875L2.81233 17L9.28496 10.625L15.7591 17L17.9167 14.875L11.444 8.5L17.9167 2.125L15.7591 0Z' fill='%23CA1D1D'/%3E%3C/svg%3E")
}

@media (min-width: 768px) {
    .pros-cons {
        flex-direction: row
    }
}

@media (min-width: 768px) {
    .pros-cons__wrapper {
        width: 48.5%
    }
}

@media (min-width: 768px) {
    .pros__wrapper {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .pros-cons__title {
        padding: 12px 10px
    }
}

.content-card__wrapper {
    margin-bottom: 50px
}

.content-card__wrapper--alt .content-card {
    padding-top: 11px;
    padding-bottom: 13px;
    padding-left: 15px;
    background: #EEEEFF;
    border-radius: 6px
}

.content-card {
    display: flex;
    align-items: flex-start;
    padding: 0 20px 0 0
}

.content-card:not(:last-of-type) {
    margin-bottom: 10px
}

.content-card__inner {
    margin: 0 0 0 40px
}

.content-card__img {
    flex-shrink: 0;
    max-width: 55px;
    margin-top: 7px;
    border-radius: 5px
}

.content-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin: 0
}

.content-card__text {
    margin: 0
}

@media (min-width: 768px) {
    .content-card:not(:last-of-type) {
        margin-bottom: 20px
    }
}

@media (max-width: 991px) {
    .wrapper {
        padding-top: 0
    }
}

footer {
    width: 100%;
    position: relative;
    overflow: hidden
}

footer .wrapper {
    max-width: 1175px;
    position: relative;
    z-index: 3;
    padding: 30px 15px 25px
}

footer:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background-size: cover;
    background-position: center
}

footer.visible:before {
    background: url(footer-bg-1.webp) center top repeat
}

footer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #4a17b6;
    z-index: 1
}

footer .title {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #2ab03c;
    text-align: left;
    margin-bottom: 28px
}

.footer-navigation {
    position: relative;
    margin: 30px auto;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .04em
}

@media (max-width: 767px) {
    .footer-navigation {
        display: none
    }
}

.footer-navigation:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2000px;
    background: #6d2bf1;
    box-shadow: 0 4px 4px #00000040;
    transform: translate(-50%)
}

.footer-navigation .nav-list__icon {
    display: none
}

.footer-navigation ul {
    position: relative;
    display: flex
}

.footer-navigation ul:nth-child(n+2) {
    margin-left: 50px
}

.footer-navigation li {
    list-style: none
}

@media (max-width: 767px) {
    .footer-navigation li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        margin: 0 25px
    }
}

.footer-navigation li:nth-child(n+2) {
    margin-left: 50px
}

@media (max-width: 767px) {
    .footer-navigation li.footer-hide-link {
        display: none
    }
}

.footer-navigation li a {
    display: inline-block;
    padding: 7px 0;
    font-weight: 900;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none
}

.footer-navigation li a:hover {
    color: #bbb
}

.footer-items-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .footer-items-row {
        flex-direction: column;
        align-items: flex-start
    }
}

.footer-items__img {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

@media (max-width: 767px) {
    .footer-items__img {
        flex-wrap: wrap;
        justify-content: center;
        margin: 20px auto;
        order: 2
    }
}

.footer-items__img a {
    flex-shrink: 0
}

.footer-items__img a:nth-of-type(n+2) {
    margin-left: 5px
}

.footer-items__img .trustpilot-widget {
    margin-left: 5px
}

.footer-items__img img {
    width: auto;
    height: auto;
    border-radius: 8px;
    max-width: 100px;
    max-height: 45px
}

.footer-items__img img[src$=svg] {
    min-width: 100px
}

.footer-items__age {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    color: #6d2bf1;
    font-weight: 900;
    font-size: 20px;
    border-radius: 50%;
    background: #ffffff;
    width: 44px;
    height: 44px;
    flex-shrink: 0
}

.footer-items__center {
    margin: 0;
    padding: 0 5px;
    font-weight: 400;
    font-size: 18px;
    line-height: 16px;
    color: #fff
}

@media (max-width: 767px) {
    .footer-items__center {
        order: 1;
        margin: 30px auto 0
    }
}

@media (max-width: 767px) {
    .footer-items__help {
        margin: 0 auto;
        order: 3
    }
}

.footer-items__help p {
    margin: 5px 0 0;
    color: #f0f041;
    font-size: 14px
}

.footer-items__tel {
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none
}

.footer-items__tel img {
    width: 20px;
    height: 20px;
    margin-right: 10px
}

@media (max-width: 767px) {
    .footer-items__app-link {
        order: 4;
        margin: 20px auto 0
    }
}

.footer-disclaimer {
    margin-bottom: 10px;
    font-size: 12px
}

.footer-disclaimer,
.footer-bottom {
    font-weight: 400;
    letter-spacing: .04em;
    color: #eef
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    line-height: 14px;
    width: 100%
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        line-height: 1.5
    }
}

.footer-bottom li {
    margin-right: 10px
}

.footer-bottom li:nth-child(2) {
    padding-left: 10px;
    border-left: 1px solid #a9a9a9
}

@media (max-width: 767px) {
    .footer-bottom li:last-child {
        width: 100%;
        margin-top: 10px;
        margin-right: 0
    }
}

.footer-bottom a {
    color: #f0f041
}

@media (min-width: 768px) {
    footer .title {
        font-size: 24px;
        line-height: 32px;
        text-align: center;
        margin-bottom: 40px
    }
}

@media (min-width: 768px) {
    .footer-navigation {
        display: flex;
        align-items: center
    }
}

@media (min-width: 768px) {
    .footer-navigation li:first-of-type a:first-of-type {
        margin-left: 0
    }

    .footer-navigation li:last-of-type a:last-of-type {
        margin-right: 0
    }
}

@media (min-width: 768px) {
    .footer-disclaimer {
        margin-bottom: 15px
    }
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 590px;
    padding: 22px 39px 22px 24px;
    border-radius: 16px;
    background: #F7F7F7;
    box-shadow: 0 0 80px #0000000d;
    z-index: 100
}

.cookie-popup.hidden-cookie {
    display: none
}

.cookie-popup .lazy-image {
    margin-right: 25px;
    flex-shrink: 0;
    width: 72px;
    height: 72px
}

.cookie-popup .cookie-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000
}

.cookie-popup .cookie-center {
    margin-right: 15px
}

.cookie-popup .cookie-text {
    color: #000;
    font-size: 16px
}

.cookie-popup .cookie-text a {
    color: #2ab03c;
    font-weight: 700
}

.cookie-popup .info-btn {
    min-width: 120px;
    color: #333;
    text-decoration: underline
}

.cookie-popup .info-btn:hover {
    background-color: transparent
}

.cookie-popup .cookie-agree {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    min-width: 170px;
    border-radius: 50px;
    background: #FDBD13;
    color: #353941;
    padding: 5px;
}

.cookie-popup .close-cookie {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    cursor: pointer
}

.cookie-popup .close-cookie:before,
.cookie-popup .close-cookie:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #333
}

.cookie-popup .close-cookie:before {
    transform: rotate(45deg)
}

.cookie-popup .close-cookie:after {
    transform: rotate(-45deg)
}

@media (max-width: 767px) {
    .cookie-popup {
        flex-direction: column;
        max-width: 355px;
        padding: 25px 20px 20px
    }

    .cookie-popup .lazy-image {
        position: absolute;
        left: 20px;
        top: 15px;
        margin: 0;
        width: 43px;
        height: 43px
    }

    .cookie-popup .cookie-center {
        margin: 0
    }

    .cookie-popup .cookie-title {
        padding-left: 85px;
        margin-bottom: 25px
    }

    .cookie-popup .cookie-btns {
        display: flex;
        justify-content: center;
        margin-top: 16px;
        column-gap: 20px;
        margin-bottom: 0;
        flex-direction: row-reverse
    }

    .cookie-popup .info-btn {
        min-width: 136px;
        margin-top: 0;
        margin-right: auto
    }

    .cookie-popup .cookie-agree {
        min-width: 136px
    }

    .cookie-popup.mobile {
        bottom: 10px;
        right: 10px;
        max-width: unset;
        width: calc(100% - 20px);
        padding: 10px 20px 10px 15px;
        border-radius: 8px;
        border: 1px solid rgba(109, 43, 241, .5)
    }

    .cookie-popup.mobile .cookie-title {
        display: none
    }

    .cookie-popup.mobile .cookie-center {
        padding-left: 35px
    }

    .cookie-popup.mobile .cookie-text {
        font-size: 14px
    }

    .cookie-popup.mobile .cookie-text .info-btn {
        display: inline;
        font-weight: 700;
        color: #333;
        text-transform: capitalize
    }

    .cookie-popup.mobile .close-cookie {
        top: 5px;
        right: 5px
    }

    .cookie-popup.mobile .cookie-btns {
        margin-top: 10px
    }

    .cookie-popup.mobile .cookie-agree {
        height: 32px;
        font-size: 12px;
        min-width: 115px
    }

    .cookie-popup.mobile .lazy-image {
        width: 32px;
        height: 32px;
        left: 10px;
        top: 15px
    }
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
    background: rgba(0, 0, 0, .7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.overlay--new {
    background: rgba(13, 11, 106, .4);
    -webkit-backdrop-filter: none;
    backdrop-filter: none
}

.popup-confirmation {
    position: fixed;
    top: 70px;
    left: 50%;
    z-index: 99999;
    display: none;
    width: 95%;
    min-width: 300px;
    max-width: 350px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 2px 5px 25px #000c;
    transform: translate(-50%);
    overflow: hidden
}

.popup-confirmation__wrapper {
    padding: 20px 20px 15px
}

.popup-confirmation__head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-right: 5px
}

.popup-confirmation__label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    color: #6d2bf1;
    font-weight: 700;
    font-size: 40px;
    border-radius: 50%;
    border: 2px solid #6D2BF1
}

.popup-confirmation__title {
    color: #000;
    font-size: 22px
}

.popup-confirmation__text {
    margin-bottom: 20px;
    color: #000;
    font-size: 16px
}

.popup-confirmation__btns {
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 991px) {
    .popup-confirmation__btns .main-btn {
        min-width: 140px
    }
}

.popup-confirmation__btns .main-btn:last-child {
    border: none
}

.popup-confirmation__hint {
    background: #E4E4FF;
    transition: .15s background
}

.popup-confirmation__hint p {
    display: none;
    padding: 8px 20px;
    color: #ca1d1d;
    font-size: 16px;
    font-weight: 700
}

.popup-confirmation__hint--active {
    background: #FFE5E5
}

@media screen and (min-width: 992px) {
    .popup-confirmation {
        top: 30%;
        width: 100%;
        max-width: 725px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        min-height: 80px;
        padding: 30px 15px 20px 140px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__label {
        position: absolute;
        top: 55px;
        left: 30px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__text {
        margin-bottom: 0
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__btns {
        flex-wrap: wrap;
        margin-left: 25px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__btns .main-btn:first-child {
        order: 2;
        margin-top: 10px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__btns .main-btn:last-child {
        order: 1
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__hint {
        min-height: 40px;
        padding: 8px 20px
    }
}

@media screen and (min-width: 992px) {
    .popup-confirmation__hint p {
        padding: 0
    }
}

#email-collector {
    align-items: center;
    justify-content: center;
    padding: 15px
}

.ec-modal {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 850px;
    padding: 25px 35px 25px 25px;
    border: 2px solid #6D2BF1;
    border-radius: 16px;
    background: #FFF
}

@media (max-width: 767px) {
    .ec-modal {
        padding: 25px 20px
    }
}

.ec-modal .ec-modal__close {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__close {
        right: 10px
    }
}

.ec-modal .ec-modal__close:before,
.ec-modal .ec-modal__close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 5px;
    transform: rotate(45deg)
}

.ec-modal .ec-modal__close:after {
    transform: rotate(-45deg)
}

@media (max-width: 767px) {
    .ec-modal {
        flex-direction: column-reverse
    }
}

.ec-modal .ec-modal__img {
    flex-shrink: 0;
    display: flex;
    margin-right: 25px
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__img {
        margin: 5px 0 0
    }
}

.ec-modal .ec-modal__title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #6d2bf1;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__title {
        margin-bottom: 15px;
        font-size: 20px;
        text-align: center
    }
}

.ec-modal .ec-modal__text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: .72px;
    color: #727070
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__text {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 120%;
        text-align: center
    }
}

.ec-modal .ec-modal__input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 25px
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__input-wrapper {
        margin-bottom: 10px
    }
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__input-wrapper.error {
        margin-bottom: 20px
    }
}

.ec-modal .ec-modal__input-wrapper.error .ec-modal__input {
    outline: 1px solid #B00020
}

.ec-modal .ec-modal__input-wrapper.error .error-text {
    display: flex
}

.ec-modal .ec-modal__input {
    width: 100%;
    height: 44px;
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: .07px;
    background: #FEF4D8
}

.ec-modal .ec-modal__input::placeholder {
    color: #b5b6c4
}

.ec-modal .error-text {
    display: none;
    position: absolute;
    bottom: -17px;
    left: 5px;
    font-size: 12px;
    color: #b00020
}

.ec-modal .ec-modal__btn {
    width: 100%;
    height: 46px;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    background: #FDBD13;
    color: #353941;
    cursor: pointer;
    transition: background .2s ease, color .2s ease
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__btn {
        height: 39px;
        font-size: 16px
    }
}

.ec-modal .ec-modal__btn:hover {
    background: #6D2BF1;
    color: #fff
}

.ec-modal .ec-modal__checkbox-wrapper {
    display: block;
    margin-bottom: 20px;
    margin-top: 15px
}

.ec-modal .ec-modal__checkbox-wrapper.error label {
    color: #b00020
}

.ec-modal .ec-modal__checkbox-wrapper.error label:before {
    border-color: #b00020
}

.ec-modal .ec-modal__checkbox-wrapper input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer
}

.ec-modal .ec-modal__checkbox-wrapper label {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #727070;
    cursor: pointer
}

@media (max-width: 767px) {
    .ec-modal .ec-modal__checkbox-wrapper label {
        justify-content: center
    }
}

.ec-modal .ec-modal__checkbox-wrapper .ec-modal__checkbox-check {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px
}

.ec-modal .ec-modal__checkbox-wrapper .ec-modal__checkbox-check:before {
    content: "";
    position: relative;
    display: inline-block;
    padding: 8px;
    border: 1px solid #B5B6C4;
    border-radius: 4px;
    -webkit-appearance: none;
    background-color: transparent;
    box-shadow: 0 1px 2px #0000000d, inset 0 -15px 10px -12px #0000000d;
    vertical-align: middle;
    cursor: pointer
}

.ec-modal .ec-modal__checkbox-wrapper input:checked+label .ec-modal__checkbox-check:after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 9px;
    border: solid #6D2BF1;
    border-width: 0 2px 2px 0;
    transform: translatey(-1px) rotate(45deg)
}

#new-email-collector {
    align-items: center;
    padding: 15px;
    justify-content: center
}

@media screen and (max-width: 991px) {
    #new-email-collector {
        align-items: flex-start;
        overflow-y: auto
    }
}

.new-ec-modal {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1020px;
    padding: 50px 70px 30px 50px;
    border-radius: 12px;
    background: linear-gradient(91deg, #30084F 12.52%, #191774 88.9%)
}

@media screen and (max-width: 991px) {
    .new-ec-modal {
        padding: 35px 45px 35px 35px
    }
}

@media screen and (max-width: 767px) {
    .new-ec-modal {
        flex-direction: column;
        padding: 25px 20px
    }
}

.new-ec-modal:before {
    z-index: -1;
    content: "";
    position: absolute;
    top: -13px;
    right: -13px;
    bottom: -13px;
    left: -13px;
    background: #ffffff;
    border-radius: 13px
}

@media screen and (max-width: 767px) {
    .new-ec-modal:before {
        top: -8px;
        right: -8px;
        bottom: -8px;
        left: -8px
    }
}

.new-ec-modal__close {
    position: absolute;
    top: 13px;
    right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .new-ec-modal__close {
        right: 10px
    }
}

.new-ec-modal__close:before,
.new-ec-modal__close:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(229, 241, 252, .5);
    border-radius: 5px;
    transform: rotate(45deg)
}

.new-ec-modal__close:after {
    transform: rotate(-45deg)
}

.new-ec-modal__img {
    flex-shrink: 0;
    display: flex;
    margin-right: 65px
}

@media screen and (max-width: 991px) {
    .new-ec-modal__img {
        margin-right: 35px
    }
}

@media screen and (max-width: 767px) {
    .new-ec-modal__img {
        margin: 0 0 15px
    }
}

.new-ec-modal__success {
    display: none
}

.new-ec-modal__title {
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
    color: #fff
}

@media screen and (max-width: 767px) {
    .new-ec-modal__title {
        margin-bottom: 8px;
        font-size: 28px;
        text-align: center
    }
}

.new-ec-modal__text {
    max-width: 530px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: .72px;
    color: #fff;
    text-align: left
}

@media screen and (max-width: 767px) {
    .new-ec-modal__text {
        margin-bottom: 20px;
        font-size: 16px;
        text-align: center;
        font-weight: 400
    }
}

.new-ec-modal__switcher-text {
    margin-bottom: 8px;
    color: #237bffe6;
    font-size: 14px;
    font-weight: 700;
    text-decoration-line: underline;
    background: none;
    padding: 0;
    border: none;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .new-ec-modal__switcher-text {
        margin-bottom: 10px
    }
}

.new-ec-modal__switcher-text:hover {
    text-decoration: none
}

.new-ec-modal__input-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 15px
}

@media screen and (max-width: 767px) {
    .new-ec-modal__input-wrapper.error {
        margin-bottom: 20px
    }
}

.new-ec-modal__input-wrapper.error .new-ec-modal__input {
    outline: 1px solid #B00020
}

.new-ec-modal__input-wrapper.error .error-text {
    display: flex
}

.new-ec-modal__input {
    width: 100%;
    height: 44px;
    padding: 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: .07px;
    background: #ffffff;
    color: #2e2a31
}

.new-ec-modal__input::placeholder {
    color: #2e2a31
}

.new-ec-modal .error-text {
    display: none;
    position: absolute;
    bottom: -17px;
    left: 5px;
    font-size: 12px;
    color: #b00020
}

.new-ec-modal__agreements {
    margin-bottom: 25px;
    color: #76727d;
    font-size: 10px;
    font-style: italic;
    line-height: 1.5;
    text-align: left
}

@media screen and (max-width: 767px) {
    .new-ec-modal__agreements {
        margin-bottom: 15px
    }
}

.new-ec-modal__agreements a {
    color: #237bff
}

.new-ec-modal__btn {
    width: 100%;
    height: 46px;
    border: none;
    outline: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background: #A512FF;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, color .2s ease
}

.new-ec-modal__btn:hover {
    background: #6D2BF1;
    color: #fff
}

.new-ec-modal--success {
    padding-top: 12px;
    padding-bottom: 25px;
    padding-left: 25px
}

.new-ec-modal--success .new-ec-modal__img {
    margin-right: 100px
}

@media screen and (max-width: 767px) {
    .new-ec-modal--success .new-ec-modal__img {
        margin-right: 0
    }
}

.new-ec-modal--success .new-ec-modal__img img {
    max-width: 120px;
    height: auto
}

.new-ec-modal--success .new-ec-modal__success {
    display: block;
    margin: 0
}

.new-ec-modal--success .new-ec-modal__right {
    display: none
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 5px 0 20px
}

.social-links li {
    margin: 0 20px
}

.social-links li:first-child {
    margin-left: 0
}

.social-links li:last-child {
    margin-right: 0
}

.social-links a:hover svg {
    opacity: .8
}

.social-links svg {
    width: 20px;
    transform: .2 opacity
}