@font-face {
    font-family: 'Flaticon';
    src: url("../fonts/Flaticon.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lilita One";
    src: local("Lilita One"), local("LilitaOne"),
    url("../fonts/LilitaOne.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: local("Montserrat Regular"), local("Montserrat-Regular"),
    url("../fonts/Montserrat-Regular.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat SemiBold";
    src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"),
    url("../fonts/Montserrat-SemiBold.ttf") format("ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat Italic";
    src: local("Montserrat ExtraBold Italic"), local("Montserrat-ExtraBoldItalic"),
    url("../fonts/Montserrat-ExtraBoldItalic.ttf") format("ttf");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/******************************* Common Start ************************/

:root {
    --black: #535353;
    --blue: #0076ab;
    --lite-blue: #00d3ff;
    --link-blue: #00F3FB;
    --pink: #ff00c3;
    --purple: #cd00fe
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

img, body, table, a, form, a img, h1, h2, h3, h4, h5, h6, li, hr {
    border: 0 none;
    outline: 0 none;
    padding: 0;
}

html {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    overflow-x: hidden;
    color: var(--black);
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: calc(10px + 6 * (100vw - 375px) / 1545);
    height: auto;
    margin: 0;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: all .2s
}

a:hover {
    text-decoration: none;
}

div {
    transition: all 0.3s linear;
}

h1, h2, h3, h4 {
    font-family: "Lilita One",sans-serif;
    line-height: 1;
    font-weight: 400;
    color: var(--blue)
}

h1 {
    font-family: "Lilita One",sans-serif;
    font-size: calc(32px + 30 * (100vw - 375px) / 1545)
}

h2 {
    font-family: "Lilita One",sans-serif;
    font-size: calc(22px + 8 * (100vw - 375px) / 1545)
}

h3 {
    font-family: "Lilita One", sans-serif;
    font-weight: 700;
    font-size: calc(14px + 16 * (100vw - 375px) / 1545);
}

img {
    max-width: 100%;
    height: auto;
}

.flex {
    display: flex;
}

.margin-auto {
    margin: auto;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.line-end {
    width: 100%;
    height: 1px;
    background-color: var(--blue);
    margin-top: 55px
}

.shadow-text {
    text-shadow: 0 0 5px #9F30FF;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-wrapper .icon {
    fill: currentColor;
    max-height: 100%;
    max-width: 100%;
    background-repeat: no-repeat;
}

.section-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1310px;
}

.section-title {
    text-transform: uppercase;
    text-align: center;
}

.main-content {
    margin-bottom: 48px;
}

.breadcrumbs {
    margin-top: 65px;
}

.breadcrumbs .core-page-breadcrumbs {
    padding: 0;
}

/******************************* Common End ************************/

/******************************* Buttons Start ************************/

.button {
    cursor: pointer;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    font-family: "Lilita One",sans-serif;
    font-size: 19px;
    line-height: 23px;
    min-width: 187px;
    height: 45px;
    border-radius: 43px;
    box-sizing: border-box;
    padding: 0 20px
}

.button.button-primary {
    color: #000;
    text-shadow: 0 0 2px #1ff9ed;
    box-shadow: 0 0 55px #00b1ff;
    border: 1px solid rgba(0,177,255,.48);
    background-image: linear-gradient(180deg,#befdff 0,#0ef 53%,#06d6cb 100%)
}

.button.button-primary:hover {
    background: #ff00c3;
    box-shadow: unset;
    color: #fff;
    border: unset
}

.button.button-secondary {
    background-color: #b909f2;
    color: #fff
}

.button.button-secondary:hover {
    background: #ff00c3;
    box-shadow: unset;
    color: #fff;
    border: unset
}

.button.button-secondary-outline {
    background: 0 0;
    color: #00f6ff;
    border: 1px solid #00f6ff
}

.button.button-secondary-outline:hover {
    background: #ff00c3;
    box-shadow: unset;
    color: #fff;
    border: unset
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -4px;
}

.buttons .button:last-child {
    margin-right: 0;
}

.buttons.buttons-centered {
    justify-content: center;
}

.button-long {
    padding: 16px 62px 15px 62px;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    border-radius: 32px;
}

.buttons .button-small {
    padding: 7px 36px 8px;
    text-transform: uppercase;
    font-size: 18px;
}

.popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #b909f2;
    z-index: 10;
}

.popup.popup-home {
    background-color: transparent;
    bottom: 13px;
}

.popup.popup-home .popup-home-bg {
    position: absolute;
    top: -125px;
    left: 0;
    width: 100%;
    max-width: 100%
}

.popup.popup-home .button-popup-home {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 257px;
    margin: auto;
    height: 62px;
    padding: 0;
    border-radius: 31px;
    font-size: 27px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.popup.show {
    display: block;
}

.popup-review-block {
    display: flex;
    padding-top: 16px;
    padding-bottom: 10px;
    align-items: center;
}

.popup-review-title {
    color: #fff;
    max-width: 110px;
    margin: 0;
    text-transform: uppercase;
}

.popup-review-info {
    margin-left: 40px;
}

.popup-review-info-img > img {
    max-width: 240px;
    width: 240px;
}

.popup-review-info-description {
    font-size: 10px;
    margin: 0;
    color: #fff;
}

.popup-review-info-description a {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-decoration: underline;
}

.popup-end-block {
    margin-left: auto;
}

.popup-review .popup-button {
    width: 345px;
    height: 60px;
    font-size: 26px;
    box-shadow: unset;
    box-sizing: border-box;
    text-transform: uppercase;
}

.close-popup {
    position: absolute;
    top: 13px;
    right: 15px;
    cursor: pointer;
}

/******************************* Buttons End ************************/

/******************************* Header Start ************************/

.header {
    padding: 0;
    position: sticky;
    top: 0;
    height: 78px;
    background-color: #b909f2;
    z-index: 9;
}

.header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    max-width: 1180px;
}

.header .header-logo {
    display: block;
}

.header .header-logo a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.header .header-buttons-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0 0;
}

.header .button {
    box-shadow: unset;
}

/******************************* Header End ************************/

/******************************* Homepage Start ************************/

.section-top-banner {
    background-position-y: -81px;
    background-image: url('../images/homepage-top-banner-bg.webp');
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 75px;
    overflow: hidden;
}

.section-top-banner .section-wrapper {
    max-width: 1180px;
}

.section-top-banner .top-banner-content {
    position: relative;
}

.section-top-banner .top-banner-info {
    max-width: 50%;
    padding-top: 20px;
    z-index: 1;
    position: relative;
}

.section-top-banner .top-banner-info .top-banner-title {
    font-family: "Lilita One", sans-serif;
    font-size: calc(13px + 13 * (100vw - 375px) / 1545);
    font-weight: 400;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    line-height: 24px;
}

.section-top-banner .top-banner-info .top-banner-description {
    margin: 5px 0 0;
}

.section-top-banner .top-banner-info .top-banner-significant-terms {
    color: #fff;
    text-align: center;
    margin-top: 19px;
    line-height: 1.6;
    font-size: 10px;
}

.section-top-banner .top-banner-info .top-banner-significant-terms a {
    color: var(--lite-blue);
}

.section-top-banner .top-banner-info .button {
    max-width: 332px;
    height: 73px;
    font-size: 26px;
    margin: 26px auto 0;
}

.section-top-banner .top-banner-info > .top-banner-img {
    display: none;
}
.section-top-banner .top-banner-content > .top-banner-img {
    display: block;
}

.section-top-banner .top-banner-img {
    position: absolute;
    right: -46px;
    top: -10px
}

.section-top-banner .top-banner-bottom-img {
    width: 100%;
    position: absolute;
    bottom: -5px;
}

.section-features {
    margin-top: 75px;
}

.features-content {
    display: flex;
    justify-content: space-between;
}

.features-content .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-content .feature .feature-title {
    font-size: 43px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.features-content .feature .feature-img {
    height: 242px;
}

.features-content .feature .feature-description {
    max-width: 272px;
    text-align: center;
    margin-top: 7px;
    margin-bottom: 10px;
    font-size: 16px;
}

.features-content .feature .buttons {
    margin: auto;
}

.features-content .feature .button {
    min-width: unset;
    width: 194px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 39px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0, 177, 255, .55);
}

.section-advantages {
    background-image: url("../images/advantages-banner-bg.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 94px;
    padding-bottom: 118px;
    color: #fff;
    margin-top: 55px;
}

.advantages-title {
    margin-top: 5px;
}

.advantages-title-top {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin: 0;
    font-size: calc(28px + 4 * (100vw - 375px) / 1545);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.advantages-title-top del {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.advantages-title-top del:before {
    content: '';
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0) url("../images/cross.svg") no-repeat;
    background-size: 100% 100%;
}

.advantages-title-top em {
    color: #00f6ff;
    font-style: normal;
    font-weight: 700;
    margin-left: 10px;
}

.advantages-title-text {
    text-align: center;
    margin: 13px 0 0;
    font-size: calc(16px + 12 * (100vw - 375px) / 1545);
    color: #fff;
    text-transform: uppercase;
}

.advantages-items {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 78px;
}

.advantages-item {
    display: flex;
    margin-right: 30px;
}

.advantages-item .advantages-item-info {
    color: #fff;
    font-size: 18px;
    margin-left: 20px;
    max-width: 274px;
}

.advantages-item .advantages-item-info .advantages-item-info-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.advantages-item .advantages-item-info .advantages-item-info-text {
    margin: 5px 0 0;
}

.advantages-item-img {
    min-width: 44px;
    width: 44px;
}

.section-recommended-games .block-with-line {
    padding-bottom: 48px;
}

.recommended-game {
    max-width: 450px;
    flex: 1;
}

.recommended-games-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommended-games-body .recommended-games-body-title {
    width: 100%;
    text-shadow: 0 0 5px #9f30ff;
    margin: 49px 0 52px;
    text-transform: uppercase;
    font-size: calc(18px + 12 * (100vw - 375px) / 1545);
}

.recommended-game-content {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recommended-game-content .recommended-game-banner {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 21px;
    width: 76px;
    height: 76px;
    background-color: #50329b;
}

.recommended-game-content .recommended-game-banner.no-photo {
    padding: 25px 17px 18px 16px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.recommended-game-content .recommended-game-name {
    font-size: calc(18px + 9 * (100vw - 375px) / 1545);
    font-weight: 700;
}

.recommended-game-body {
    font-size: 18px;
    line-height: 1.3;
}

.recommended-games-items {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 273px);
}

.recommended-game-body .recommended-game-title {
    font-weight: 700;
}

.section-favorites .section-title {
    margin-top: 47px;
    margin-bottom: 0;
}

.top-slots .top-slots-section-title {
    line-height: normal;
    text-transform: uppercase;
    font-weight: 400;
    font-size: calc(22px + 8 * (100vw - 375px) / 1545);
}

.top-slots .slots-pagination .swiper-slide {
    width: 203px;
}

.top-slots-list {
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 20px;
}

.top-slots-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 150px;
}

.top-slots-list-img {
    width: 100%;
    height: 100%;
}

.top-slots-list img {
    width: 100%;
    height: 100%;
}

.top-slots-list-item .button {
    height: 34px;
    min-width: 140px;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0;
    position: absolute;
    bottom: 0;
}

.top-slots-list-item .button > img {
    width: auto;
    height: auto;
    margin-left: 5px;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-arrow.slick-hidden {
    display: none;
}

.site-slider {
    position: relative;
    overflow: hidden;
}

.site-slider-container,
.site-slider-container .slick-track {
    display: flex;
}

.site-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 17px 0 0;
}

.site-slider .slick-dots li {
    padding: 0;
    margin-right: 11px;
    position: relative;
    transition: all .3s;
    background-color: #c4c4c4;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.site-slider .slick-dots li:hover {
    background-color: var(--lite-blue);
}

.site-slider .slick-dots .slick-active {
    background-color: var(--lite-blue);
}

.site-slider button {
    display: none;
}

.slots {
    width: 731px;
    margin: 58px auto 0;
    box-sizing: content-box;
}

.slot-slide {
    position: relative;
    width: 100%;
    max-width: 731px;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    float: left;
    min-height: 1px;
}

.slot-slide-img {
    width: 100%;
    position: relative;
}

.slot-slide-img > img {
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.slot-slide-img-buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 42%;
    width: calc(100% - 22px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    margin: auto;
    border-radius: 0 0 6px 6px;
    opacity: 0;
}

.slot-slide-img:hover .slot-slide-img-buttons {
    opacity: 1;
}

.slot-slide-img-buttons .button {
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 337px;
    border-radius: 36px;
    font-size: 31px;
    text-transform: uppercase;
    opacity: 1;
    box-shadow: none;
}

.slot-slide-img-buttons .button > img {
    margin-left: 16px;
}

.slot-slide-title {
    color: var(--blue);
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 12px;
}

.game-list {
    margin-top: 45px;
    margin-bottom: 4px;
    padding-right: 11px;
}

.game-list .game-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.game-list-header-title {
    line-height: normal;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

.game-list-body {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: scroll;
    max-width: 100%;
}

.game-list-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.game-list-body .game-item {
    position: relative;
    box-shadow: -4px 3px 9px rgba(159, 48, 255, 0.53);
    border: 1px solid rgba(159, 48, 255, 0.55);
    max-width: 247px;
    max-height: 180px;
    min-width: 162px;
    flex: 1;
}

.game-list-body .game-item .button {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 28px 10px 37px;
}

.game-list-body .game-item .button > img {
    margin-left: 8px;
}

.game-list-body .game-item .game-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.71);
    opacity: 0;
}

.game-list-body .game-item > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-list-more {
    margin-top: 47px;
}

.game-list-more .button {
    font-size: 26px;
    width: 400px;
    height: 70px;
    letter-spacing: normal;
    margin: 0 auto;
    text-transform: uppercase;
}

.section-rewards-title {
    color: var(--blue);
    font-family: "Lilita One", sans-serif;
    font-size: calc(32px + 30 * (100vw - 375px) / 1545);
    line-height: normal;
    margin: 41px 0;
    text-align: center;
    text-transform: uppercase;
}

.rewards-banner {
    display: flex;
    width: 100%;
    max-width: 671px;
    margin: 0 auto 85px;
    border-radius: 20px;
    border: 1px dashed #00f6ff;
    background-color: #7238c5;
    position: relative;
    padding: 17px 15px 16px 19px;
}

.rewards-banner:hover {
    box-shadow: 0 0 35px #9F30FF8F;
}

.rewards-banner .banner-currency,
.rewards-banner .banner-value {
    text-shadow: 0 0 7px #00f6ff;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    font-style: italic;
    text-transform: uppercase;
}

.rewards-banner .banner-currency {
    font-size: calc(27px + 27 * (100vw - 375px) / 1545);
    margin-top: 16px;
}

.rewards-banner .banner-value {
    font-size: calc(54px + 53 * (100vw - 375px) / 1545);
}

.rewards-banner .button {
    display: flex;
    height: 63px;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
    width: 50%;
    text-transform: uppercase;
    padding: 0;
}

.rewards-banner .banner-text {
    color: #fff;
    font-size: calc(12px + 12 * (100vw - 375px) / 1545);
    line-height: 1.3;
    font-weight: 400;
    margin-left: 26px;
}

.section-faq-title {
    text-align: left;
    margin-top: 51px;
    margin-bottom: 47px;
}

.faq-item {
    padding: 15px 0 14px 0;
    border-bottom: 1px solid var(--blue);
    cursor: pointer;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item.open {
    padding-bottom: 27px;
}

.faq-item.open + .faq-item {
    padding-top: 21px;
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item .faq-question .faq-question-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--lite-blue);
    font-family: Montserrat, sans-serif;
    margin: 0;
}

.faq-item .faq-question::after {
    content: '';
    background-image: url('../images/angle-down.svg');
    background-repeat: no-repeat;
    width: 10px;
    height: 6px;
    margin-right: 8px;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    display: none;
    margin-top: 15px;
    line-height: normal;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item .faq-answer > p {
    margin: 0;
    line-height: 1.2;
}

.section-seo-title  {
    text-align: left;
    margin-top: 52px;
    margin-bottom: 20px;
}

.section-seo .seo-text p {
    letter-spacing: normal;
    line-height: 1.4;
}

.section-seo .seo-text ul {
    padding-left: 32px;
    margin: 49px 0;
    list-style-type: none;
}

.section-seo .seo-text ul > li {
    position: relative;
    letter-spacing: -0.25px;
    line-height: 1.4;
    margin-bottom: 45px;
    padding-left: 19px;
}

.section-seo .seo-text li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--blue);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.section-seo .seo-text ul > li:last-child {
    margin-bottom: 0;
}

.section-seo .seo-text > *:last-child {
    margin-bottom: 0;
}

/******************************* Homepage End ************************/

/******************************* Footer Start ************************/

.footer {
    background-color: #f3f3f3;
}

.footer-icons {
    padding-top: 60px;
    padding-bottom: 47px;
}

.footer-features {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 742px;
}

.footer-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 25%;
}

.footer-features .icon-wrapper {
    margin-bottom: 15px;
}

.footer-features .icon-wrapper .icon-secure {
    margin-top: 8px;
}

.footer-features .feature-text {
    font-size: 15px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
}

/******************************* Footer End ************************/

/******************************* Promotions Category Page End ************************/

.category-promotion-page .page-title {
    line-height: normal;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 7px;
    margin-bottom: 15px;
}

.promotion-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 20px;
    margin-top: 31px;
}

.promotion-card {
    width: 100%;
    max-width: 400px;
}

.promotion-card .promotion-card-image {
    border: 1px solid #FFF;
    margin-bottom: 21px;
}

.promotion-card .promotion-card-image > img {
    display: block;
    width: 100%;
}

.promotion-card .promotion-card-title {
    color: #4c90b5;
    font-family: 'Lilita One', sans-serif;
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 6px;
}

.promotion-card .promotion-card-text {
    font-size: 12px;
    margin-bottom: 15px;
}

.promotion-card .promotion-card-text a {
    text-decoration: underline;
}

.promotion-card .buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.promotion-card .buttons a {
    width: calc(50% - 5px);
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 20px;
    box-shadow: unset;
    min-width: unset;
    line-height: normal;
}

/******************************* Promotions Category Page End ************************/

/******************************* Promotions Single Page Start ************************/

.promotion-single-page .top-banner-wrapper {
    width: 100%;
}

.promotion-single-page .top-banner-desktop {
    max-width: 100%;
    margin: 0 auto;
}

.promotion-single-page .top-banner-mobile {
    min-height: 200px;
    background-size: cover;
}

.promotion-single-page h1,
.promotion-single-page h2 {
    font-size: 40px;
    text-transform: uppercase;
    margin: 48px 0 10px;
    color: #4c90b5;
}

.promotion-single-page .promotion-main-title {
    color: #4c90b5;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promotion-single-page .promotion-deposit-button {
    box-shadow: unset;
    font-size: 35px;
    max-width: 391px;
    margin-top: 24px;
    height: 67px;
}

.promotion-full-terms-wrapper {
    scroll-margin-top: 100px;
}

.promotion-full-terms-wrapper .page-title {
    color: #4c90b5;
    font-size: 40px;
    text-transform: uppercase;
    padding: 30px 0;
    margin: 0;
}

.promotion-full-terms-description li {
    font-size: 13px;
    line-height: 1.3;
}

.promotion-single-page .steps {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    margin-top: 35px;
    margin-bottom: 40px;
}

.promotion-single-page .step {
    color: #fff;
    width: 409px;
    padding: 15px 25px 15px 40px;
    position: relative;
    background: linear-gradient(180deg, #8001c0 0, #622bcf 100%);
    border-radius: 25px;
}

.promotion-single-page .step-content h3 {
    color: #00f3fb;
    margin: 0 0 15px 33px;
    font-size: 32px;
    text-transform: uppercase;
}

.promotion-single-page .step-order {
    padding: 10px;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: -30px;
    border-radius: 100%;
}

.promotion-single-page .step-order-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-family: "Lilita One", sans-serif;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #7215c7;
}

.promotion-single-page .step-content {
    font-size: 13px;
}

/******************************* Promotions Single Page End ************************/

/******************************* Bingo Casino Page Start ************************/

.bingo-casino .section-top-banner {
    padding-bottom: 170px;
}

.bingo-casino .top-banner-info {
    max-width: 63%;
}

.bingo-casino .section-top-banner .top-banner-info .top-banner-title {
    max-width: unset;
    font-size: calc(38px + 46 * (100vw - 375px) / 1545);
    line-height: normal;
    text-shadow: 0 0 5px #9f30ff;
    color: #00f6ff;
}

.bingo-casino .top-banner-subtitle {
    font-family: "Lilita One", sans-serif;
    font-size: calc(22px + 8 * (100vw - 375px) / 1545);
    line-height: 1;
    text-shadow: 0 0 5px #9f30ff;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.bingo-casino .top-banner-info .top-banner-description {
    margin-top: 21px;
    font-size: calc(10px + 6 * (100vw - 375px) / 1545);
    color: #fff;
    line-height: 1.4;
    text-align: left;
}

.bingo-casino .top-banner-img {
    max-width: 505px;
    top: 20px;
}

.bingo-casino .section-top-seo-title {
    margin-top: 0;
}

.section-spins {
    margin-top: 25px;
}

.section-spins .title-block {
    margin: 0;
}

.section-description {
    line-height: 1.4;
    margin-bottom: 35px;
    margin-top: 16px;
}

.spin-items {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}

.spin-items .spin-item {
    width: 100%;
    max-width: 303px;
    display: flex;
    flex-direction: column;
    align-content: center;
}

.spin-item-title {
    font-size: calc(10px + 6 * (100vw - 375px) / 1545);
    color: var(--lite-blue);
    font-weight: 600;
    text-align: center;
    margin-bottom: 18px;
}

.spin-item-img {
    position: relative;
}

.spin-item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spin-item-img-label {
    font-family: "Lilita One", sans-serif;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 21%;
    color: #fff;
    background-color: rgba(0,0,0,.65);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 22px;
    transition: all .3s linear;
    text-transform: uppercase;
}

.spin-item:hover .spin-item-img-label {
    background-color: #ff00c3;
    color: #fff;
}

.spin-item-img-label-text {
    margin-right: 12px;
}

/******************************* Bingo Casino Page End ************************/

/******************************* Progressive Jackpot Page Start ************************/

.bingo-progressive-jackpots-page {
    padding-bottom: 40px;
}

.bingo-progressive-jackpots-page .progressive-jackpot-name {
    margin: 40px 0;
}

.bingo-progressive-jackpots-page .progressive-jackpot-details {
    display: flex;
    flex-wrap: wrap;
}

.bingo-progressive-jackpots-page .progressive-jackpot-list {
    font-size: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.bingo-progressive-jackpots-page .progressive-jackpot-list:nth-child(odd) {
    background: #373737;
    color: #ffffff;
}

.bingo-progressive-jackpots-page .progressive-jackpot-item {
    width: 250px;
}

.bingo-progressive-jackpots-page .progressive-jackpot-value {
    flex-grow: 1;
}

/******************************* Progressive Jackpot Page End ************************/

/******************************* 404 Start ************************/

.not-found {
    margin-top: 50px;
}

.not-found .page-title {
    text-align: center;
}

.not-found .error-page-link {
    max-width: fit-content;
    text-transform: none;
    margin: auto;
}

/******************************* 404 End ************************/


/******************************* Mobile Start ************************/

@media all and (max-width: 1440px) {
    .popup-end-block {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .section-wrapper {
        padding: 0 28px;
    }
    .main-content.home-page {
        margin-bottom: 100px;
    }
    .section-top-banner .top-banner-img {
        max-width:50%
    }
    .top-slots-list {
        padding-left: 20px;
    }
    .game-list-body .game-item .button {
        padding: 10px;
        min-width: 160px;
    }
    .category-promotion-page .page-title {
        font-size: 40px;
        margin-top: 17px;
        margin-bottom: 11px;
    }
    .promotion-cards {
        margin-top: 16px;
        flex-direction: column;
        gap: 50px;
    }
    .promotion-card {
        max-width: 100%;
    }
    .promotion-card .buttons {
        margin-top: 25px;
        flex-wrap: nowrap;
    }
    .promotion-card .buttons .button {
        font-size: 30px;
        width: calc(50% - 10px);
    }
    .promotion-card .buttons .button:first-child {
        margin-right: 20px;
    }
    .promotion-card .promotion-card-title {
        font-size: 40px;
    }
    .single-promotion .section-wrapper {
        padding: 0 55px;
    }
}

@media all and (min-width: 1024px) {
    .top-slots-list-item:hover .top-slots-list-img {
        transform: translateY(-27px);
    }
    .top-slots-list-item:hover .button {
        opacity: 1;
    }
    .game-list-body .game-item:hover .button {
        display: block;
    }
    .game-list-body .game-item:hover .game-mask {
        opacity: 1;
    }
}

@media all and (max-width: 1024px) {
    .main-content {
        margin-bottom: 50px;
    }
    .popup-review .popup-button {
        width: 200px;
        height: 40px;
        font-size: 16px;
    }
    .section-top-banner {
        padding-bottom: 0;
    }
    .section-features {
        margin-top: 50px;
    }
    .features-content {
        flex-direction: column;
    }
    .features-content .feature {
        margin-bottom: 56px;
    }
    .features-content .feature:last-child {
        margin-bottom: 0;
    }
    .section-advantages {
        padding-top: 46px;
        padding-bottom: 54px;
    }
    .advantages-items {
        grid-template-columns: repeat(2,1fr);
    }
    .advantages-item .advantages-item-info .advantages-item-info-text {
        line-height: 1.2;
        margin-top: 0;
    }
    .advantages-title-top {
        line-height: 1.1;
    }
    .recommended-games-body {
        align-items: center;
    }
    .recommended-games-body .recommended-games-body-title {
        order: 1;
        width: calc(100% - 88px);
        margin-top: 27px;
        margin-bottom: 23px;
    }
    .recommended-games-body .slots-logo {
        order: 2;
        width: 78px;
    }
    .recommended-games-items {
        flex-direction: column;
        order: 3;
        width: 100%;
        max-width: unset;
        flex: unset;
    }
    .recommended-games-items .recommended-game {
        margin-bottom: 50px;
    }
    .recommended-game:last-child {
        margin-bottom: 0;
    }
    .top-slots-list {
        padding: 0;
        overflow: hidden;
        overflow-x: scroll;
    }
    .top-slots-list::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .promotion-single-page .promotion-deposit-button {
        margin-top: 40px;
    }
    .promotion-single-page .steps {
        flex-direction: column;
        margin-top: 45px;
        margin-bottom: 50px;
        padding: 0;
        gap: 30px;
    }
    .promotion-single-page .step {
        width: 100%;
        padding: 15px 50px 80px 50px;
    }
    .promotion-single-page .step-content h3 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

@media all and (min-width: 769px) {
    .popup.popup-home {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    .line-end {
        margin-top: 30px;
    }
    .main-content {
        margin-bottom: 39px;
    }
    .header {
        height: 50px;
    }
    .header .header-wrapper {
        position: relative;
        padding: 0 12px;
    }
    .header .header-logo {
        width: 168px;
    }
    .header .header-buttons-wrapper {
        padding-top: 0;
    }
    .header-buttons-wrapper .join-button {
        min-width: 77px;
        width: 77px;
        font-size: 12px;
        height: 25px;
        padding: 0;
    }
    .header-buttons-wrapper .login-button {
        min-width: 77px;
        width: 77px;
        font-size: 12px;
        height: 25px;
        padding: 0;
    }
    .popup .section-wrapper {
        padding: 0 10px;
    }
    .close-popup {
        display: none
    }
    .popup-review-block {
        padding-top: 4px;
        padding-bottom: 3px;
    }
    .popup-review-info {
        margin-left: 1px;
    }
    .popup-review-info-img > img {
        max-width: 168px;
        height: 30px;
    }
    .popup-review-title {
        font-size: 9px;
        max-width: 33px;
        align-self: self-start;
        margin-top: 2px;
    }
    .popup-end-block {
        position: absolute;
        right: 20px;
        margin-right: 0;
        overflow: hidden;
    }
    .popup-review .popup-button {
        max-width: 100%;
        min-width: 146px;
        width: 146px;
        height: 24px;
        font-size: 12px;
    }
    .section-top-banner {
        background: #b909f2;
        padding-bottom: 0;
    }
    .section-top-banner .section-wrapper {
        padding: 0;
    }
    .section-top-banner .top-banner-info {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }
    .section-top-banner .top-banner-info .top-banner-title {
        padding: 0 37px;
    }
    .section-top-banner .top-banner-info .top-banner-description {
        max-width: 94%;
        padding: 0 37px;
        margin-top: 0;
    }
    .section-top-banner .top-banner-img {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: auto;
    }
    .top-banner-img img {
        display: block;
        width: 100%;
    }
    .section-top-banner .top-banner-info > .top-banner-img {
        display: block;
    }
    .section-top-banner .top-banner-content > .top-banner-img {
        display: none;
    }
    .section-top-banner .top-banner-info .top-banner-significant-terms {
        margin: 0;
        padding: 9px 0 12px;
        background-color: #fff;
        color: #535353;
        order: 2;
    }
    .section-top-banner .top-banner-info .button {
        width: 210px;
        height: 45px;
        font-size: 18px;
        margin-top: -73px;
        order: 1;
    }
    .section-features {
        margin-top: 23px;
    }
    .features-content .feature {
        margin-bottom: 46px;
    }
    .section-advantages {
        background-image: none;
        background-color: #6b2fc1;
    }
    .section-advantages .section-wrapper {
        padding-left: 18px;
    }
    .advantages-items {
        grid-template-columns: 1fr;
        grid-row-gap: 30px;
    }
    .advantages-item {
        margin-right: 0;
    }
    .advantages-item .advantages-item-info {
        max-width: 100%;
        margin-left: 18px;
    }
    .recommended-game-content {
        margin-bottom: 10px;
    }
    .recommended-games-body .recommended-games-body-title {
        font-family: "Montserrat", sans-serif;
        text-transform: unset;
        font-weight: 700;
        text-shadow: none;
        line-height: 1.5;
    }
    .section-favorites .line-end {
        margin-left: 10px;
        width: calc(100% - 30px);
        margin-top: 26px;
    }
    .section-favorites .section-wrapper {
        padding: 0 0 0 10px;
    }
    .top-slots .top-slots-section-title {
        margin-left: 15px;
    }
    .top-slots-list-item {
        margin-right: 8px;
    }
    .top-slots-list-item:last-child {
        margin-right: 0;
    }
    .slot-slide {
        width: 100%;
        max-width: 100%;
    }
    .slot-slide-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .slots {
        width: 100%;
        max-width: 100%;
        margin-top: 22px;
    }
    .slot-slide-img:hover .slot-slide-img-buttons {
        opacity: 0;
        display: none;
    }
    .slot-slide-title {
        margin-top: 10px;
    }
    .game-list-more .button {
        width: 300px;
        height: 52px;
        font-size: 28px;
        line-height: 1;
    }
    .game-list-more {
        margin-top: 34px;
    }
    .game-list {
        margin-top: 13px;
        margin-bottom: 5px;
        padding: 0;
    }
    .game-list .game-list-header {
        padding: 0 15px;
        margin-bottom: 10px;
    }
    .section-rewards-title {
        margin-top: 28px;
        margin-bottom: 23px;
    }
    .rewards-banner {
        margin-bottom: 43px;
    }
    .section-faq-title {
        margin-top: 36px;
        margin-bottom: 30px;
    }
    .faq-item {
        padding: 14px 0;
    }
    .faq-item.open {
        padding-bottom: 14px;
    }
    .faq-item.open + .faq-item {
        padding-top: 12px;
    }
    .faq-item .faq-question .faq-question-title {
        font-size: calc(10px + 6 * (100vw - 375px) / 1545);
    }
    .faq-item .faq-question::after {
        margin-right: 0;
    }
    .footer-icons {
        padding-top: 21px;
    }
    .footer-features .feature-text {
        font-size: 8px;
    }
    .footer .core-footer-licensing-information-wrapper {
        padding: 10px 20px 80px;
    }
    .bingo-casino .section-top-banner {
        padding-bottom: 0;
    }
    .bingo-casino .top-banner-info {
        max-width: 100%;
        margin-top: 20px;
    }
    .bingo-casino .section-top-banner .top-banner-description {
        background-color: transparent;
        color: #fff;
        text-align: center;
        max-width: 100%;
    }
    .bingo-casino .section-top-banner .top-banner-info .top-banner-title {
        text-align: center;
        width: 100%;
    }
    .bingo-casino .top-banner-subtitle {
        margin-top: 7px;
        line-height: 1.1;
        text-align: center;
    }
    .spin-items {
        flex-wrap: wrap;
        row-gap: 33px;
    }
    .spin-items .spin-item {
        max-width: 158px;
    }
    /* Progressive Jackpot page start */
    .bingo-progressive-jackpots-page {
        padding-bottom: 30px;
    }
    .bingo-progressive-jackpots-page .progressive-jackpot-name {
        margin: 20px 0;
    }
    .bingo-progressive-jackpots-page .progressive-jackpot-item {
        width: 150px;
    }
    .bingo-progressive-jackpots-page .progressive-jackpot-value {
        flex-shrink: 1;
    }
    /* Progressive Jackpot page end */
}

@media screen and (max-width: 575px) {
    .section-wrapper {
        padding: 0 24px;
    }
    .main-content {
        margin-bottom: 27px;
    }
    .popup.popup-home .popup-home-bg {
        top:-80px
    }
    .popup-review .section-wrapper {
        padding-left: 6px;
    }
    .popup-end-block {
        top: 4px;
        right: 8px;
    }
    .section-top-banner .top-banner-info {
        align-items: flex-start;
    }
    .section-top-banner .top-banner-info .top-banner-description {
        align-self: flex-start;
    }
    .section-top-banner .top-banner-info .top-banner-title {
        max-width: unset;
    }
    .recommended-game-content .recommended-game-banner {
        margin-right: 15px;
        width: 50px;
        height: 50px;
    }
    .recommended-game-body .recommended-game-title {
        font-size: 14px;
    }
    .recommended-game-content .recommended-game-banner.no-photo {
        padding: 16px 11px 12px 11px;
        font-size: 18px;
        line-height: 1.5;
    }
    .section-recommended-games .block-with-line {
        padding-bottom: 17px;
    }
    .site-slider .slick-dots {
        margin-top: 10px;
    }
    .site-slider .slick-dots li {
        width: 5px;
        height: 5px;
    }
    .slot-slide-img {
        height: 180px;
    }
    .slot-slide-img > img {
        height: 100%;
        width: 100%;
    }
    .game-list-more .button {
        padding: 8px 34px 7px 35px;
        font-size: 18px;
        line-height: 21px;
        width: 75%;
        height: auto;
    }
    .rewards-banner {
        padding: 5px 11px 10px 8px;
        border-radius: 6px;
    }
    .rewards-banner .banner-currency {
        margin-top: 10px;
    }
    .rewards-banner .button {
        height: 30px;
        font-size: 14px;
        line-height: normal;
        min-width: 142px;
        bottom: -15px;
    }
    .footer-features .feature img {
        max-height: 28px;
        width: auto;
    }
    .category-promotion-page .page-title {
        font-size: 25px;
    }
    .promotion-cards {
        gap: 30px;
    }
    .promotion-card .promotion-card-title {
        font-size: 20px;
    }
    .promotion-card .buttons .button {
        font-size: 15px;
        width: calc(50% - 5px);
    }
    .promotion-card .promotion-card-title {
        margin-bottom: 8px;
    }
    .promotion-card .buttons .button:first-child {
        margin-right: 10px;
    }
    .promotion-single-page h1,
    .promotion-single-page h2 {
        font-size: 25px;
    }
    .promotion-full-terms-wrapper {
        scroll-margin-top: 60px;
    }
    .promotion-full-terms-wrapper .page-title {
        font-size: 25px;
    }
    .promotion-single-page .steps {
        gap: 26px;
        margin-top: 25px;
        margin-bottom: 54px;
    }
    .promotion-single-page .step {
        padding: 10px 20px 40px 20px;
    }
    .promotion-single-page .step-content {
        font-size: 12px;
    }
    .promotion-single-page .step-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .promotion-single-page .step-order {
        padding-right: 7px;
        padding-bottom: 7px;
        top: -10px;
        left: -10px;
    }
    .promotion-single-page .step-order-number {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media all and (max-width: 400px) {
    .popup.popup-home .popup-home-bg {
        left:-74px;
        top: -76px;
        max-width: 490px;
        width: 490px
    }
}

@media (max-width: 365px) {
    .popup-review-info-img > img {
        max-width: 150px;
    }
    .popup-review .popup-button {
        min-width: 110px;
        width: 110px;
    }
    .promotion-card .buttons .button {
        min-width: 120px;
        font-size: 14px;
        padding: 10px 14px;
    }
    .spin-items {
        justify-content: center;
    }
}
