@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --font-family: "Libre Franklin", sans-serif;
    --content-width: 1200px;
    --container-offset: 15px;
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --white-color: #fff;
    --black-color: #000;
}

/* stylelint-disable */
/* BREAKPOINTS */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: var(--font-family, sans-serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: var(--white-color);
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background: #312138;
}

.page__body {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
}

.site-container {
    background: -webkit-gradient(linear, left top, left bottom, from(#312138), color-stop(49.59%, #625291), to(#452C54));
    background: linear-gradient(180deg, #312138 0%, #625291 49.59%, #452C54 100%);
    overflow: hidden;
}

.is-hidden {
    display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff;
}

.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
    display: none;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
}

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

.vertical-centered {
    -ms-flex-line-pack: center;
    align-content: center;
}

.dis-scroll {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.page--ios .dis-scroll {
    position: relative;
}

.site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(#312138), color-stop(49.59%, #625291), to(#452C54));
    background: linear-gradient(180deg, #312138 0%, #625291 49.59%, #452C54 100%);
}

.main.default {
    background: #312138;
}

.logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 10px;
}

.logos__item {
    width: calc(50% - 5px);
    min-height: 52px;
    max-height: 52px;
    background-color: #312138;
    border-radius: 12px;
    -webkit-box-shadow: 0 4px 11.4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 11.4px 0 rgba(0, 0, 0, 0.25);
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

@media (any-hover: hover) {
    .logos__item:hover {
        opacity: 0.9;
    }
}

.logos__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logos__item-link img {
    display: block;
    max-width: 102px;
    max-height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 640px) {
    .logos {
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .logos__item {
        min-width: 152px;
        max-width: 152px;
        width: 100%;
    }
}

.nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.nav ul li {
    font-weight: 500;
    font-size: 16px;
    color: var(--white-color);
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

@media (any-hover: hover) {
    .nav ul li:hover {
        color: #ff9e2d;
    }
}

.nav ul li a {
    color: inherit;
}

@media (min-width: 768px) {
    .nav ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }
}

.brands {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px 20px;
    list-style: none;
}

.brands__item {
    width: calc(50% - 10px);
    min-height: 55px;
    max-height: 55px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

@media (any-hover: hover) {
    .brands__item:hover {
        opacity: 0.9;
    }
}

.brands__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brands__item-link img {
    display: block;
    max-width: 132px;
    max-height: 38px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .brands {
        gap: 20px;
    }

    .brands__item {
        min-width: 170px;
        max-width: 170px;
        width: 100%;
        min-height: 58px;
        max-height: 58px;
    }

    .brands__item-link img {
        max-width: 132px;
        max-height: 38px;
    }
}

.title {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

@media (min-width: 375px) {
    .title {
        font-size: calc(0.9696969697vw + 20.3636363636px);
    }
}

@media (min-width: 1200px) {
    .title {
        font-size: 32px;
    }
}

.description {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

.description p:not(:last-child) {
    margin-bottom: 5px;
}

.gza-popup {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 400;
}

.gza-popup.show {
    display: block;
}

.gza-popup__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 16px;
    width: 100%;
    height: 100%;
}

.gza-popup__inner-top {
    position: relative;
    width: 100%;
}

.gza-popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 20px 16px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 400px;
    background-color: #381f5b;
    border-radius: 20px;
    overflow: hidden;
}

.gza-popup__close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

.gza-popup__close:before, .gza-popup__close:after {
    content: '';
    display: block;
    width: 16px;
    position: absolute;
    top: 50%;
    left: 8px;
    height: 2px;
    background-color: #ffffff;
    transform: rotate(45deg);
}

.gza-popup__close:after {
    transform: rotate(-45deg);
}

@media (min-width: 767px) {
    .gza-popup__close {
        top: 8px;
        right: 5px;
    }

    .gza-popup__close:before,
    .gza-popup__close:after {
        height: 3px;
        left: 2px;
    }
}

.gza-popup__content-backing {
    position: absolute;
    bottom: 10px;
    left: -12%;
    display: block;
    width: 124%;
    aspect-ratio: 1;
    border-radius: 45%;
}

.gza-popup__content-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 130px;
    min-height: 40px;
    max-height: 40px;
    z-index: 10;
}

.gza-popup__content-logo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 56px;
    max-height: 56px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.gza-popup__content-description {
    margin: 32px 0 0 0;
    max-width: 270px;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
}

.gza-popup__content-description p:not(:last-child) {
    margin-bottom: 10px;
}

.gza-popup__content-link {
    display: block;
    margin: 32px auto 0;
    padding: 15px 14px;
    min-width: 220px;
    max-width: 220px;
    font-weight: 700;
    font-size: 18px;
    -ms-flex-line-pack: center;
    align-content: center;
    background-color: #ff9e2d;
    color: var(--white-color);
    text-align: center;
    border-radius: 60px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (any-hover: hover) {
    .gza-popup__content-link:hover {
        -webkit-box-shadow: 0 4px 24.5px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 4px 24.5px 0 rgba(0, 0, 0, 0.25);
    }
}

.gza-popup__content-bottom {
    margin-top: 30px;
    font-size: 10px;
    text-align: center;
}

.gza-popup__content-bottom a {
    color: inherit;
    text-decoration: underline;
}

.gza-popup__content-bottom a:hover {
    text-decoration: none;
}


@media (min-width: 576px) {
    .gza-popup__content {
        min-width: 450px;
        max-width: 450px;
    }

    .gza-popup__content-description {
        max-width: 390px;
    }

    .gza-popup__content-backing {
        border-radius: 38%;
    }
}

@media (min-width: 768px) {
    .gza-popup__content-backing {
        border-radius: 46%;
    }
}

@media (min-width: 1024px) {
    .gza-popup__content-description {
        margin-top: 60px;
    }

    .gza-popup__content-link {
        margin-top: 40px;
    }

    .gza-popup__content-backing {
        bottom: -16px;
        border-radius: 50%;
    }

    .gza-popup .card__rating {
        transform: translateY(20px);
    }
}

.header {
    position: relative;
    padding: 25px 0 52px;
    min-height: 180px;
    background-color: #1b0e21;
}

.header:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    background-color: #312138;
    border-radius: 20px 20px 0 0;
}

.header.without-logos {
    min-height: 100px;
}

.header.without-logos:before {
    bottom: -56px;
}

.header__container {
    padding: 0 30px;
    max-width: calc(var(--content-width) + 60px);
}

.header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 18px;
}

.header__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 36px;
    max-height: 36px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header__description {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.28;
    max-width: 200px;
}

.header__description p:first-child {
    font-weight: 700;
}

.header__logos {
    margin: 25px 0 0 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .header__top {
        margin: 0 auto;
        max-width: 560px;
    }

    .header__description {
        max-width: unset;
    }
}

@media (min-width: 1024px) {
    .header {
        padding: 22px 0 46px;
        min-height: 170px;
    }

    .header:before {
        border-radius: 44px 44px 0 0;
    }

    .header.without-logos {
        padding-bottom: 70px;
    }

    .header.without-logos:before {
        bottom: -40px;
    }

    .header__container {
        padding: 0 15px;
        max-width: var(--container-width);
    }

    .header__description {
        font-size: 18px;
    }

    .header__logos {
        margin: 20px 0 0 0;
    }
}

.footer {
    margin: 33px 0 0 0;
    position: relative;
    padding: 33px 0;
    background-color: #3d2a50;
    border-radius: 45px 45px 0 0;
    z-index: 10;
}

.lang-gr {
    .footer {
        margin-top: 120px;
        padding-top: 0;
    }

    .footer__container {
        margin-top: -40px;
    }
}

.footer__greek {
    margin: 0 var(--container-offset);
    padding: 34px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100% - (var(--container-offset) * 2));
    background-color: #312138;
    border-radius: 30px;
    transform: translateY(-70px);
    box-shadow: 0px 4px 11.4px 0px rgba(0, 0, 0, 0.25);
}

.footer__greek-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 62px;
    max-height: 62px;

    img {
        display: block;
        width: 100%;
        height: 100%;
        object-position: center center;
        object-fit: contain;
    }
}

.footer__greek-description {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
}

.greek-copyright {
    padding: 16px;
    font-weight: 400;
    font-size: 14px;
    background-color: #1b0e21;
    color: #fff;
    text-align: center;
}

@media (min-width: 767px) {
    .lang-gr {
        .footer {
            margin-top: 48px;
        }

        .footer__container {
            margin-top: -20px;
        }
    }

    .footer__greek {
        padding: 24px;
        justify-content: center;
        transform: translateY(-50px);
    }

    .footer__greek-logo {
        max-width: 131px;
    }

    .footer__greek-description {
        font-size: 14px;
        text-align: center;
    }
}

@media (min-width: 991px) {
    .footer__greek {
        gap: 24px;
    }

    .footer__greek-description {
        font-size: 18px;
    }

    .greek-copyright {
        font-size: 16px;
        order: 6;
    }
}

@media (min-width: 1240px) {
    .footer__greek {
        margin: 0 auto;
        padding: 26px;
        max-width: 1198px;
        transform: translateY(-36px);
    }

    .lang-gr {
        .footer__container {
            margin-top: 0;
        }
    }
}

.footer__description {
    margin: 32px 0 0 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.footer__description a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: underline;
}

.footer__description a:hover {
    text-decoration: none;
}

.footer__description p:not(:last-child) {
    margin-bottom: 5px;
}

.footer__brands {
    margin: 32px 0 0 0;
}

@media (min-width: 768px) {
    .footer__description {
        margin: 24px 0 0 0;
        font-size: 12px;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer {
        margin: 50px 0 0 0;
        padding: 54px 0 34px;
    }

    .footer__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer__left {
        width: 50%;
    }

    .footer__description {
        max-width: 505px;
    }

    .footer__brands {
        margin: 0;
        width: 46%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.card__inner {
    padding: 0 12px 18px;
    width: 100%;
    background-color: #3e3b62;
    border-radius: 20px;
    -webkit-box-shadow: 0 4px 19.6px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 19.6px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.card__inner-top {
    position: relative;
    padding-top: 20px;
}

.card__backing {
    position: absolute;
    bottom: 10px;
    left: -12%;
    display: block;
    width: 124%;
    aspect-ratio: 1;
    border-radius: 45%;
}

.card__badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 24px;
    z-index: 15;
}

.card__badge img {
    max-width: 30px;
    max-height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.card__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    max-width: 200px;
    min-height: 67px;
    max-height: 67px;
    z-index: 10;
}

.card__logo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 67px;
    max-height: 67px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.card__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 32px auto 0;
    width: 100px;
    height: 30px;
    background-color: var(--white-color);
    border-radius: 50px;
    z-index: 10;
}

.card__bottom, .card__mobile-bottom {
    margin: 10px 0 0 0;
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    opacity: 0.5;
}

.card__bottom p:not(:last-child), .card__mobile-bottom {
    margin-bottom: 5px;
}

.card__bottom a, .card__mobile-bottom a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

@media (any-hover: hover) {
    .card__bottom a:hover, .card__mobile-bottom a:hover {
        text-decoration: underline;
    }
}

.card__bonuses {
    margin: 24px auto 10px;
    max-width: 252px;
    width: 100%;
}

.card__link {
    display: block;
    margin: 24px auto 0;
    padding: 15px 14px;
    min-width: 252px;
    max-width: 252px;
    font-weight: 700;
    font-size: 16px;
    -ms-flex-line-pack: center;
    align-content: center;
    background-color: #ff9e2d;
    color: var(--white-color);
    text-align: center;
    border-radius: 60px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (any-hover: hover) {
    .card__link:hover {
        background-color: #fc8a05;
        -webkit-box-shadow: 0 4px 24.5px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 4px 24.5px 0 rgba(0, 0, 0, 0.25);
    }
}

.card__payments {
    margin: 18px 0 0 0;
}

@media (min-width: 600px) {
    .card__backing {
        border-radius: 38%;
    }

    .card__inner {
        display: flex;
        flex-direction: column;
        min-height: 520px;
    }

    .card__link {
        min-width: 260px;
        max-width: 260px;
        margin-top: auto;
        margin-bottom: 18px;
    }

    .card__bonuses {
        max-width: 260px;
    }

    .card__payments {
        margin: 0;
    }

    .card__bottom {
        flex-grow: 0;
    }
}

@media (min-width: 768px) {
    .card__backing {
        border-radius: 46%;
    }
}

@media (min-width: 1024px) {
    .card__inner {
        padding: 0 16px 16px;
        min-height: 492px;
    }

    .card__backing {
        bottom: 12px;
        border-radius: 44%;
    }

    .card__logo {
        max-width: 150px;
        min-height: 57px;
        max-height: 57px;
    }
}

.rating__inner {
    position: relative;
    display: block;
    width: 80px;
    height: 16px;
}

.rating__upper, .rating__lower {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.rating__upper {
    background-image: url("../images/rating-upper.svg");
    z-index: 4;
}

.rating__lower {
    background-image: url("../images/rating-lower.svg");
}

.bonuses__item {
    position: relative;
    padding-left: 18px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: var(--white-color);
}

.bonuses__item:not(:last-child) {
    margin-bottom: 8px;
}

.bonuses__item:before {
    content: url("../images/check.svg");
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

@media (min-width: 1024px) {
    .bonuses__item {
        font-size: 16px;
    }
}

.payments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 2px;
}

.payments__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 50px;
    max-width: 50px;
    min-height: 22px;
    max-height: 22px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
}

.payments__item img {
    display: block;
    max-width: 40px;
    max-height: 14px;
    -o-object-position: center center;
    object-position: center center;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (min-width: 800px) {
    .payments {
        gap: 4px;
    }

    .payments__item {
        min-width: 55px;
        max-width: 55px;
        min-height: 20px;
        max-height: 20px;
    }

    .payments__item img {
        max-width: 50px;
        max-height: 22px;
    }
}

.cards-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .cards-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cards-list__card {
        width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .cards-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        gap: 20px 10px;
    }

    .cards-list__card {
        width: calc((100% / 3) - (20px / 3));
    }
}

@media (min-width: 1200px) {
    .cards-list {
        gap: 20px;
    }

    .cards-list__card {
        width: calc((100% / 3) - (40px / 3));
    }
}

.top-brands.without-logos {
    padding: 33px 0 0 0;
}

.top-brands {
    position: relative;
    padding: 10px 0 0 0;
    z-index: 100;
}

.top-brands.above {
    margin-top: 0;
    padding: 33px 0 0 0;
}

.top-brands__description {
    margin: 16px auto 0;
    max-width: 772px;
}

.top-brands__cards {
    margin-top: 30px;
    width: 100%;
}

@media (min-width: 1024px) {
    .top-brands {
        padding: 10px 0 0 0;
    }

    .top-brands.without-logos {
        padding: 66px 0 0 0;
    }

    .top-brands.above {
        margin-top: 0;
        padding: 66px 0 0 0;
    }
}

.bottom-brands__container.no-text {
    margin-top: -56px;
}

.bottom-brands {
    padding-top: 50px;
}

.bottom-brands__description {
    margin: 16px auto 0;
    max-width: 772px;
}

.bottom-brands__cards {
    margin-top: 30px;
    width: 100%;
}

.faq {
    padding-top: 50px;
}

.faq__description {
    margin: 12px auto 0;
    max-width: 772px;
}

.faq__inner {
    margin-top: 30px;
    padding: 40px 16px 64px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
}

@media (min-width: 1024px) {
    .faq__inner {
        padding: 50px 16px;
    }
}

.accordion {
    margin: 0 auto;
    max-width: 780px;
    width: 100%;
}

.accordion__item {
    padding: 0 0 16px 0;
}

.accordion__item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.accordion__item:not(:first-child) .accordion__item-trigger {
    padding-top: 16px;
}

.accordion__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.accordion__item-trigger {
    font-size: 16px;
    position: relative;
    padding: 0 36px 0 0;
    width: 100%;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white-color);
    outline: none;
    text-align: left;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

@media (min-width: 375px) {
    .accordion__item-trigger {
        font-size: calc(0.2424242424vw + 15.0909090909px);
    }
}

@media (min-width: 1200px) {
    .accordion__item-trigger {
        font-size: 18px;
    }
}

.accordion__item-trigger:before, .accordion__item-trigger:after {
    content: "";
    display: block;
    position: absolute;
    top: 60%;
    right: 2px;
    width: 14px;
    height: 4px;
    background-color: var(--white-color);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.accordion__item-trigger:after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.accordion__item-trigger.active {
    padding-bottom: 16px;
}

.accordion__item-trigger.active:after, .accordion__item-trigger.active:before {
    top: 54%;
}

.accordion__item-trigger.active:after {
    -webkit-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
}

.accordion__item-content {
    font-size: 14px;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.accordion__item-content p:not(:last-child) {
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .accordion__item-trigger {
        padding: 0 40px 0 0;
    }
}

.games {
    padding-top: 50px;
}

.games__description {
    margin: 16px auto 0;
    max-width: 772px;
}

.games__inner {
    margin-top: 30px;
    padding: 24px 16px;
    background-color: rgba(52, 33, 64, 0.5);
    border-radius: 20px;
}

@media (min-width: 1024px) {
    .games__inner {
        padding: 32px 40px;
    }
}

.games-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 20px;
}

.games-list__item {
    display: none;
    width: 100%;
}

.games-list__item:nth-child(-n+3) {
    display: flex;
}

.games-list__item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    width: 100%;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

@media (any-hover: hover) {
    .games-list__item-link:hover {
        border-color: #ff9e2d;
    }

    .games-list__item-link:hover .games-list__item-title {
        color: #ff9e2d;
    }

    .games-list__item-link:hover .games-list__item-arrow svg path {
        stroke: #ff9e2d;
    }
}

.games-list__item-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 46px;
    max-width: 46px;
    min-height: 46px;
    max-height: 46px;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
}

.games-list__item-image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.games-list__item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.games-list__item-arrow {
    margin: 0 0 0 auto;
}

.games-list__item-arrow svg path {
    -webkit-transition: all ease 0.2s;
    transition: all ease 0.2s;
}

.games-list__item-footer {
    margin: 10px 0 0 0;
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    opacity: 0.5;
}

.games-list__item-footer a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

@media (min-width: 768px) {
    .games-list {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }

    .games-list__item {
        display: flex;
    }

    .games-list__item-link {
        padding: 14px 20px;
        gap: 20px;
    }

    .games-list__item-image {
        min-width: 68px;
        max-width: 68px;
        min-height: 68px;
        max-height: 68px;
    }
}

@media (min-width: 1024px) {
    .games-list__item-link {
        padding: 14px 38px 14px 20px;
    }
}

.responsible {
    padding-top: 50px;
    padding-bottom: 33px;
    position: relative;
}

@media (min-width: 1024px) {
    .responsible {
        padding-bottom: 66px;
    }
}

.responsible:before {
    content: "";
    background: url("../images/responsible-bg.webp") 50% 50% no-repeat;
    background-size: cover;
    position: absolute;
    display: block;
    height: 536px;
    left: 0;
    bottom: -15%;
    width: 100%;
}

.responsible__container {
    position: relative;
    z-index: 10;
}

.responsible__content h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

@media (min-width: 375px) {
    .responsible__content h2 {
        font-size: calc(0.9696969697vw + 20.3636363636px);
    }
}

.responsible__content h3 {
    margin: 20px 0 0 0;
    max-width: 900px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

@media (min-width: 375px) {
    .responsible__content h3 {
        margin-top: calc(-0.6060606061vw + 22.2727272727px);
    }
}

@media (min-width: 1200px) {
    .responsible__content h2 {
        font-size: 32px;
    }

    .responsible__content h3 {
        margin-top: 13px;
    }
}

.responsible__content p {
    margin: 20px 0 30px 0;
    max-width: 900px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
}

.responsible-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
}

.responsible-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    background-color: rgba(52, 33, 64, 0.5);
    border-radius: 20px;
}

.responsible-list__item-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 178px;
    max-width: 178px;
    min-height: 60px;
    max-height: 60px;
    background-color: #342140;
    border-radius: 8px;
}

.responsible-list__item-image img {
    display: block;
    max-width: 117px;
    max-height: 34px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.responsible-list__description {
    margin: 16px 0 0 0;
    font-size: 14px;
    line-height: 1.4;
}

.responsible-list__description a {
    font-weight: 600;
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--white-color);
}

@media (hover: hover) {
    .responsible-list__description a:hover {
        text-decoration: none;
    }
}

.responsible-list__description p:not(:last-child) {
    margin-bottom: 5px;
}

.responsible-list__bottom {
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 768px) {
    .responsible-list {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr);
    }
}

.content {
    padding: 34px 0 50px 0;
}

@media (min-width: 1024px) {
    .content {
        padding: 34px 0 60px 0;
    }
}

.content__wrapper {
    max-width: 1000px;
}

.content__title {
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 375px) {
    .content__title {
        font-size: calc(2.1818181818vw + 23.8181818182px);
    }
}

@media (min-width: 1200px) {
    .content__title {
        font-size: 50px;
    }
}

.content__description {
    font-size: 14px;
    margin: 20px 0 0 0;
    font-weight: 300;
    line-height: 1.4;
}

.content__description h1, .content__description h2 {
    margin-bottom: 20px;
}

.content__description p:not(:last-child) {
    margin-bottom: 10px;
}

.content__layout {
    margin-top: 20px;
}

.content__layout h1, .content__layout h2, .content__layout h3, .content__layout h4, .content__layout h5, .content__layout h6 {
    margin-top: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content__layout h1:not(:first-child), .content__layout h2:not(:first-child), .content__layout h3:not(:first-child), .content__layout h4:not(:first-child), .content__layout h5:not(:first-child), .content__layout h6:not(:first-child) {
    margin-top: 30px;
}

.content__wrapper h1, .content__layout h1 {
    font-size: 32px;
    text-transform: uppercase;
}

.content__wrapper h1 {
    margin-bottom: 20px;
}

.content__layout h2, .content__layout h3, .content__layout h4, .content__layout h5 {
    font-size: 24px;
}

.content__layout p,
.content__layout li {
    font-size: 14px;
    margin-top: 20px;
    font-weight: 300;
    line-height: 1.4;
}

.content__description li,
.content__layout li {
    margin-top: 5px;
}

.content__description a,
.content__layout a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    word-break: break-all;
}

.content__description a:hover,
.content__layout a:hover {
    text-decoration: none;
}

.content__description ul,
.content__description ol,
.content__layout ul,
.content__layout ol {
    padding-left: 20px;
}

.content__layout p:not(:last-child) {
    margin-bottom: 20px;
}

.under-18__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 600px;
}

.under-18__title {
    font-size: 32px;
    max-width: 900px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 375px) {
    .under-18__title {
        font-size: calc(2.1818181818vw + 23.8181818182px);
    }
}

@media (min-width: 1200px) {
    .under-18__title {
        font-size: 50px;
    }
}


/* responsible-gaming page  */

.content.responsible-gaming {
    background: #312138;
}

.responsible-gaming-intro {
    max-width: 990px;
    color: #fff;
    margin-bottom: 40px;
}

.responsible-gaming-intro h1,
.responsible-gaming-intro h2,
.responsible-gaming-intro h3 {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 16px;
}

.responsible-gaming-intro h2 {
    font-size: 16px;
}

.responsible-gaming-intro p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
}

.responsible-gaming-intro p + h2,
.responsible-gaming-intro p + h3,
.responsible-gaming-intro p + p,
.responsible-gaming-intro p + ul,
.responsible-gaming-intro p + ol {
    margin-top: 40px;
}

.rg-list .rg-list__item:not(:last-child) {
    margin-bottom: 20px;
}

.rg-list__item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.rg-list__item-left {
    width: 100%;
    background: #110B13;
    padding: 28px 16px;
    border-radius: 19px 19px 0 0;
    height: 96px;
}

.rg-list__item-right {
    padding: 24px 16px;
    color: #fff;
    background: #211625;
    border-radius: 0 0 19px 19px;
}

.rg-list__item-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.rg-list__item-img img {
    max-width: 120px;
    height: 100%;
    object-fit: contain;
    display: block;
}

.rg-list__item-title {
    text-align: left;
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.rg-list__item-right h2,
.rg-list__item-right h3,
.rg-list__item-right h4,
.rg-list__item-right h5,
.rg-list__item-right h6,
.rg-list__item-right p {
    margin: 0;
}

.rg-list__item-right p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
    color: #fff;
}

.rg-list__item-right p:last-child {
    margin-top: 12px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

.rg-list__item-right p a {
    color: #fff;
}

.rg-list__item-right p a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 992px) {
    .rg-list {
        margin-top: 0;
    }

    .rg-list__item {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .rg-list__item-left {
        width: 140px;
        padding: 16px;
        border-radius: 19px 0 0 19px;
        height: auto;
    }

    .rg-list__item-img img {
        max-width: 100%;
        height: auto;

    }

    .rg-list__item-right {
        width: calc(100% - 140px);
        padding: 32px 52px 32px 24px;
        border-radius: 0 19px 19px 0;
    }

    .rg-list__item-title {
        margin: 0 0 6px;
    }
}

.gambling {
    padding-top: 33px;
}

.gambling__title {
    text-transform: uppercase;
}

.gambling__description {
    margin: 16px auto 30px;
    max-width: 772px;
}

.gambling__main .faq, .gambling__main .bottom-brands, .gambling__main .responsible {
    padding-top: 33px;
}

.gambling__main .responsible {
    padding-bottom: 0;
}

@media (min-width: 640px) {
    .gambling {
        padding-top: 0;
    }
}

@media (min-width: 1024px) {
    .gambling__main {
        display: flex;
        flex-direction: column;
    }

    .gambling__main .bottom-brands {
        padding-top: 0;
        order: 1;
    }

    .gambling__main .faq {
        padding-top: 66px;
        order: 2;
    }

    .gambling__main .gambling {
        padding-top: 66px;
        order: 3;
    }

    .gambling__main .responsible {
        padding: 66px 0;
        order: 4;
    }

    .gambling__main .footer {
        margin-top: 0;
        order: 5;
    }
}

.swiper-slide {
    height: auto !important;
}

.casino {
    display: flex;
    flex-direction: column;
    background-color: #3e3b62;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}

.casino__image {
    position: relative;
    min-height: 206px;
    max-height: 206px;
    overflow: hidden;
}

.casino__image::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.casino .mask {
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: 4;
    width: 100%;
    height: auto;
}

.casino__image img {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    min-height: inherit;
    max-height: inherit;
    object-fit: cover;
    object-position: center center;
    z-index: 2;
}

.casino__title {
    display: block;
    padding: 0 6px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    transform: translateY(-50%);
    z-index: 6;
}

.casino__content {
    margin: 28px 0 0 0;
    padding: 0 30px 36px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.options-list__item {
    margin-bottom: 24px;
    position: relative;
    padding-left: 18px;
    font-weight: 500;
    font-size: 16px;
}

.options-list__item::after {
    content: url("../images/check.svg");
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
}

.options-list__item:not(:last-child) {
    margin-bottom: 8px;
}

.casino__link {
    display: inline-flex;
    margin: auto 0 0 0;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 16px;
    min-width: 200px;
    width: 100%;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    background-color: #ff9e2d;
    color: var(--white-color);
    text-align: center;
    border-radius: 60px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.slider__buttons {
    display: none;
}

.swiper-slide:not(:last-child) {
    margin-bottom: 24px;
}

@media (any-hover: hover) {
    .casino__link:hover {
        background-color: #fc8a05;
        -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
    }
}

@media (min-width: 345px) and (max-width: 600px) {
    .swiper-wrapper {
        flex-direction: column !important;
        overflow: visible;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .swiper-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 20px 10px;
    }

    .swiper-slide {
        width: calc(50% - 5px) !important;
    }

    .swiper-slide:not(:last-child) {
        margin-bottom: 0;
    }
}

@media (min-width: 780px) and (max-width: 1024px) {
    .swiper-wrapper {
        gap: 20px;
    }

    .swiper-slide {
        width: calc(50% - 10px) !important;
    }
}

@media (min-width: 1024px) {
    .slider__inner {
        position: relative;
    }

    .slider__buttons {
        display: block;
    }

    .swiper-slide:not(:last-child) {
        margin-bottom: 0;
    }

    .swiper-button-prev, .swiper-button-next {
        max-width: 8px;
        max-height: 14px;
    }

    .swiper-button-prev::after, .swiper-button-next::after {
        display: none;
    }

    .swiper-button-prev {
        left: -10px;
    }

    .swiper-button-next {
        right: -10px;
    }

    .casino__title {
        font-size: 24px;
    }

    .casino .mask {
        width: 101%;
    }

    .casino__link {
        min-width: 220px;
    }
}

@media (min-width: 1270px) {
    .swiper-button-prev {
        left: -24px;
    }

    .swiper-button-next {
        right: -24px;
    }
}

#gambling-page .main {
    background: linear-gradient(180deg, #312138 4.6%, #524781 59.15%, #3F2042 116.68%);
}

.login {
    position: relative;
    padding-bottom: 33px;
}

.login__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 460px;
}

.login__content {
    max-width: 500px;
}

.login-form {
    margin: 20px auto 0;
    max-width: 400px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #3e3b62;
    border-radius: 20px;
    box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.login-form__label {
    width: 100%;
}

.login-form__input {
    padding: 16px 20px;
    display: block;
    font-weight: 400;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    border-radius: 15px;
    appearance: none;
    outline: none;
}

.login-form__input::placeholder {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    text-transform: uppercase;
}

.login-form__button {
    display: inline-flex;
    padding: 14px 38px;
    font-weight: 700;
    font-size: 18px;
    width: 100%;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    background-color: #ff9e2d;
    color: var(--white-color);
    text-align: center;
    border-radius: 60px;
    text-transform: uppercase;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

@media (min-width: 800px) {
    .login {
        padding-bottom: 66px;
    }
}

@media (any-hover: hover) {
    .login-form__button:hover {
        background-color: #fc8a05;
        -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.25);
    }
}

.mobile-slider {
    padding-bottom: 40px;
}

.mobile-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile-slider .card {
    display: none;
}

.mobile-slider .swiper-slide:not(:last-child) {
    margin-bottom: 0;
}

.mobile-slider__wrapper {
    flex-direction: row !important;
    gap: 0 !important;
}

.card-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    min-height: 100px;
    width: 100%;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.card-mobile__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
}

.card-mobile__logo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
}

.card-mobile__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    text-transform: uppercase;
    -webkit-transition: allease 0.2s;
    transition: allease 0.2s;
}

.card-mobile__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-mobile__description {
    font-size: 12px;
}

@media (min-width: 542px) {
    .card-mobile, .card__mobile-bottom {
        display: none;
    }

    .mobile-slider {
        padding-bottom: 0;
    }

    .mobile-slider .card {
        display: flex;
    }

    .mobile-slider__wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

@media (min-width: 600px) {
    .mobile-slider__wrapper {
        flex-direction: row !important;
    }

    .mobile-slider .swiper-slide {
        width: 100% !important;
    }
}

@media (min-width: 767px) {
    .mobile-slider .swiper-slide {
        width: calc(50% - 10px) !important;
    }

    .mobile-slider .card {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .mobile-slider__wrapper {
        gap: 20px 10px !important;
    }

    .mobile-slider .swiper-slide {
        margin: 0 !important;
        width: calc((100% / 3) - (20px / 3)) !important;
    }
}

body.show-mobile-bottom main .header:last-of-type, main .header:last-of-type {
    display: none;
}

@media (max-width: 640px) {
    body.show-mobile-bottom .top-brands {
        padding-top: 33px;
    }

    body.show-mobile-bottom .header:first-child {
        display: none;
    }

    body.show-mobile-bottom main .header:last-of-type {
        display: block;
    }

    body.show-mobile-bottom .header {
        padding-top: 27px;
        position: relative;
        padding-bottom: 0;
        background-color: transparent;
        min-height: unset;
        transform: translateY(20px);
        z-index: 70;
    }

    body.show-mobile-bottom .header::before {
        display: none;
    }

    body.show-mobile-bottom .footer {
        margin-top: 0;
        padding-top: 55px;
    }

    body.show-mobile-bottom .responsible {
        padding-bottom: 0;
    }

    body.show-mobile-bottom .responsible::before {
        bottom: -24%;
    }
}

html[lang="gr"] {
    .title, .accordion__item-trigger, .games-list__item-title, .responsible__content h2, .responsible__content h3,
    .casino__title {
        font-family: 'Libre Baskerville', sans-serif;
    }
}
