:root {
    --s-main-bg: #0A0C12;
    --s-block-primary-bg: #1B2232;
    --s-block-secondary-bg: #2B3242;
    --s-text-color: #FBFBFB;
    --s-accent: #006AFF;
    --s-secondary: #3ACE01;
    --s-link-color: #006AFF;
    --s-btn-accent: #006AFF;
    --s-btn-accent-hover: #004ADF;
    --s-btn-accent-text: #FFFFFF;
    --s-btn-secondary: #3ACE01;
    --s-btn-secondary-hover: #2DC100;
    --s-btn-secondary-text: #FFFFFF;
    --s-style-bg: #363E56;
    --s-style-bg-hover: #7B8292;
    --s-style-text: #FFFFFF;
    --s-footer-bg: #1B2232;
    --s-footer-text-color: #F5F5F5;
    --s-block-text: #FFFFFF;

    --s-rounded-buttons: 30px;
    --s-rounded-block-items: 15px;
    --s-rounded-blocks: 20px;
    --s-rounded-table: 6px;

    --s-margin-section: 60px;
    --s-margin-section-mob: 30px;
    --s-margin-paragraph: 16px;
    --s-margin-title: 20px;
    --s-margin-title-mob: 20px;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Geologica', sans-serif;
    background-color: var(--s-main-bg);
}

/* containers */
.container {
    max-width: 1290px;
    margin: auto;
    padding: 0 16px;
    width: -webkit-fill-available;
}

/* buttons */
.btn,
button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    width: fit-content;
    height: fit-content;
    border-radius: var(--s-rounded-buttons);
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: var(--s-btn-secondary-text);
    background-color: var(--s-btn-secondary);
    text-wrap: nowrap;
    font-family: 'Geologica', sans-serif;
}

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

button {
    background-color: var(--s-btn-accent);
}

.btn-accent,
.wp-block-button__link {
    color: var(--s-btn-accent-text);
    background-color: var(--s-btn-accent);
}

.btn-accent:hover,
.wp-block-button__link:hover {
    background-color: var(--s-btn-accent-hover);
}

.btn-style {
    color: var(--s-style-text);
    background-color: var(--s-style-bg);
}

.btn-style:hover {
    background-color: var(--s-style-bg-hover);
}

.arrow-link-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 44px;
    height: 44px;
    background-color: var(--s-btn-secondary);
    border-radius: 50%;
}

@media (max-width: 991px) {

    .btn,
    button {
        /*padding: 6px 10px;*/
        /*font-size: 13px;*/
    }
}

/* page-content */
.page-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* custom title */
.custom-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: var(--s-margin-title) !important;
    margin-top: 60px;
}

.custom-title h2 {
    margin: 0 !important;
}

.custom-title .btn {
    font-weight: 500;
}

@media (max-width: 991px) {
    .custom-title {
        align-items: flex-start;
        margin-bottom: var(--s-margin-title-mob) !important;
        margin-top: 50px;
    }
}

/* buttons download apps */
.download-buttons {
    display: flex;
    gap: 10px;
}

/* table */
.wp-block-table {
    overflow: auto;
    margin: 16px 0;
}

.wp-block-table table {
    min-width: 100%;
    width: max-content !important;
    color: var(--s-text-color)
}

.wp-block-table table tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-flow: column;
}

.wp-block-table table tr th,
.wp-block-table table tr td {
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    padding: 8px 10px;
}

.wp-block-table table thead {
    border: none
}

.wp-block-table table thead tr th {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.wp-block-table table thead tr {
    text-align: left;
}

.wp-block-table table thead tr th:first-child {
    border-top-left-radius: var(--s-rounded-table);
    border-bottom-left-radius: var(--s-rounded-table)
}

.wp-block-table table thead tr th:last-child {
    border-top-right-radius: var(--s-rounded-table);
    border-bottom-right-radius: var(--s-rounded-table);
}

.wp-block-table table tbody tr:first-child td {
    background-color: var(--s-block-primary-bg);
}

.wp-block-table table tbody tr:not(:first-child) {
    margin-top: 6px;
}

.wp-block-table table tbody tr:nth-child(2n + 1) td {
    background-color: var(--s-block-primary-bg)
}

.wp-block-table table tbody tr td:first-child {
    border-top-left-radius: var(--s-rounded-table);
    border-bottom-left-radius: var(--s-rounded-table);
}

.wp-block-table table tbody tr td:last-child {
    border-top-right-radius: var(--s-rounded-table);
    border-bottom-right-radius: var(--s-rounded-table);
}

.wp-block-table::-webkit-scrollbar {
    height: 5px
}

.wp-block-table::-webkit-scrollbar-track {
    background: 0 0;
    border-radius: 10px;
    margin-top: 10px;
    padding-top: 10px
}

.wp-block-table::-webkit-scrollbar-track {
    border-radius: 10px
}

@media (max-width: 1199px) {
    .wp-block-table {
        padding-bottom: 20px;
    }
}

/* checklist */
.checklist ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist ul li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--s-text-color);
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

.checklist ul li .checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--s-accent);
    border-radius: 50%;
}

/* header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    width: 100%;
    z-index: 9000;
    background-color: var(--s-main-bg);
}

.header.scroll {
    box-shadow: 0 4px 30px 0 #0000000D;
    border-bottom: 2px solid var(--s-block-primary-bg);
}

.header .header-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.header .header-container .header-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-container .header-secondary .header-apps {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .header-container .header-secondary .header-apps .header-download .btn {
    background-color: var(--s-style-bg);
    cursor: pointer;
    color: var(--s-style-text);
}

.header .header-container .header-secondary .header-apps .header-download .btn:hover {
    background-color: var(--s-style-bg-hover);
}

.header .header-container .header-secondary .header-apps .header-bonus {
    position: relative;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-right: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
    background-color: var(--s-style-bg);
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-btn .bonus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--s-btn-accent);
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-btn:hover .bonus-icon {
    background-color: var(--s-btn-accent-hover);
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-btn span {
    color: var(--s-style-text);
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-block {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 16px;
    width: 300px;
    background-color: var(--s-block-primary-bg);
    border-radius: 16px;
    border: 2px solid var(--s-accent);
    box-shadow: 0 8px 30px 0 #0000001A;
}

.header .header-container .header-secondary .header-apps .header-bonus.active .header-bonus-block {
    display: flex;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-blur {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13152099;
    z-index: 1000;
}

.header .header-container .header-secondary .header-apps .header-bonus.active .header-bonus-blur {
    display: block;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-close {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background-color: var(--s-style-bg);
    border-radius: 50%;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-img {
    max-height: 100px;
    max-width: 100%;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .header-container .header-secondary .header-apps .header-bonus .header-bonus-desc {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--s-text-color);
}

.header .header-container .header-secondary .header-apps .header-bonus .btn {
    width: -webkit-fill-available;
}

.header-register {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-register .btn.style2 {
    background-color: transparent;
    border: 2px solid var(--s-accent);
    color: var(--s-accent);
}

.header-register .btn.style2:hover {
    background-color: var(--s-accent);
    color: var(--s-text-color);
}

.header-register .header-register--buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-mobile-dropdown .header-register .header-register--buttons>.btn {
    width: -webkit-fill-available;
}

.header .header-container .header-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header .header-container .header-primary .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: fit-content;
}

.header .header-container .header-primary .custom-logo-link img {
    width: 100%;
    object-fit: cover;
}

.header .header-container .header-primary nav {
    display: flex;
    align-items: center;
    width: -webkit-fill-available;
    gap: 30px;
    padding: 12px 20px;
    max-width: 84%;
    border-radius: 100px;
    background-color: var(--s-block-primary-bg);
    color: var(--s-text-color);
}

.header .header-container .header-primary nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    width: auto;
    max-width: 100%;
    margin: 0 !important;
}

.header .header-container .header-primary nav ul li {
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0;
    margin: 0 !important;
    height: auto;
    cursor: pointer;
}

.header .header-container .header-primary nav ul li::before {
    content: none;
}

.header .header-container .header-primary nav ul li .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header-container .header-primary nav ul li .arrow i {
    font-size: 12px;
}

.header .header-container .header-primary nav ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
    text-decoration: none;
}

.header .header-container .header-primary nav ul li a i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 20px;
}

.header .header-container .header-primary nav ul li a img {
    width: 24px;
    height: 24px;
}

.header .header-container .header-primary nav ul li:hover>a,
.header .header-container .header-primary nav ul li.current_page_item>a {
    color: var(--s-accent);
}

.header .header-container .header-primary nav ul li:hover>i {
    color: var(--s-accent);
}

.header .header-container .header-primary nav ul li:hover>.arrow i {
    color: var(--s-accent);
}

.header .header-container .header-primary nav ul li:hover .sub-menu {
    display: flex;
}

.header .header-container .header-primary nav ul li .sub-menu {
    position: absolute;
    z-index: 10000;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    min-width: 150px;
}

.header .header-container .header-primary nav ul li .sub-menu>li {
    padding: 2px 8px;
    width: 100%;
    background-color: var(--s-block-primary-bg);
    border-right: 1px solid var(--s-block-secondary-bg);
    border-left: 1px solid var(--s-block-secondary-bg);
}

.header .header-container .header-primary nav ul li .sub-menu>li:first-child {
    padding-top: 8px;
    margin-top: 20px !important;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 1px solid var(--s-block-secondary-bg);
}

.header .header-container .header-primary nav ul li .sub-menu>li:last-child {
    padding-bottom: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 1px solid var(--s-block-secondary-bg);
}

.header .header-container .header-primary nav ul li .sub-menu>li a {
    width: -webkit-fill-available;
    padding: 0 4px;
    border-radius: 4px;
}

.header .header-container .header-primary nav ul li .sub-menu>li:hover a {
    background-color: var(--s-block-secondary-bg);
}

.header .header-container .header-primary nav .header_dropdown {
    position: relative;
}

.header .header-container .header-primary nav .header_dropdown>ul {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    flex-direction: column;
    gap: 5px;
    padding: 8px 12px;
    margin: 0;
    width: auto;
    max-width: none;
    list-style: none;
    z-index: 10;
    border: 1px solid var(--s-style-bg);
    background-color: var(--s-block-primary-bg);
    border-radius: 10px;
}

.header .header-container .header-primary nav .header_dropdown>ul li {
    width: -webkit-fill-available;
}

.header .header-container .header-primary nav .header_dropdown>ul li a {
    display: flex;
    width: -webkit-fill-available;
    padding: 6px 8px;
    border-radius: 4px;
    align-items: center;
    gap: 4px;
    font-size: .9rem;
    text-decoration: none;
    color: var(--s-text-color) !important;
}

.header .header-container .header-primary nav .header_dropdown>ul li:hover a {
    background-color: var(--s-style-bg);
}

.header .header-container .header-primary nav .header_dropdown>ul li .chevron {
    display: none;
}

.header .header-container .header-primary nav .header_dropdown .dropdown-menu {
    transform: none;
}

.header .header-container .header-primary nav .header_dropdown .header_dropdown_chevron {
    display: flex;
    gap: 4px;
    align-items: center;
    cursor: pointer;
}

.header .header-container .header-primary nav .header_dropdown .header_dropdown_chevron .chevron {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.header .header-container .header-primary nav .header_dropdown .menu-item-dropdown {
    display: none;
}

@media (max-width: 1200px) {
    .header .header-container .header-primary nav {
        max-width: 80%;
    }
}

@media (max-width: 991px) {
    .header {
        margin-bottom: 0;
    }

    .header .header-container {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header .header-container .header-secondary .header-apps .header-download {
        display: none;
    }

    .header .chose-lang {
        display: none;
    }

    .header .header-container .header-primary nav {
        display: none;
    }

    .header .header-container .header-secondary .header-apps .header-bonus {
        position: fixed;
        right: 16px;
        bottom: 90px;
        z-index: 1000;
    }

    .header .header-container .header-secondary .header-apps .header-bonus.active .header-bonus-block {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .header .header-mobile .chose-lang {
        display: flex;
        margin-top: 49px;
    }

    .header-register .header-register--buttons button {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* .header mobile menu */
.header-mobile {
    position: fixed;
    display: none;
    bottom: 0;
    left: 0;
    padding: 0 10px;
    width: -webkit-fill-available;
    min-height: 50px;
    background-color: var(--s-block-primary-bg);
    border-top: 1px solid var(--s-style-bg-hover);
    z-index: 100000;
}

.header-mobile .header-mobile-block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.header-mobile .header-mobile-block nav {
    grid-column: 1 / 5;
    width: -webkit-fill-available;
    display: flex;
    align-items: center;
}

.header-mobile .header-mobile-block nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    width: -webkit-fill-available;
    margin: 0 !important;
}

.header-mobile .header-mobile-block nav ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px 2px 10px;
    margin: 0 !important;
    height: auto;
    cursor: pointer;
}

.header-mobile .header-mobile-block nav ul li::before {
    content: none;
}

.header-mobile .header-mobile-block nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    text-align: center;
    color: var(--s-text-color);
    text-decoration: none;
}

.header-mobile .header-mobile-block nav ul li a svg {
    width: 24px;
    height: 24px;
}

.header-mobile .header-mobile-block nav ul li a i {
    font-size: 16px;
}

.header-mobile .header-mobile-block nav ul li:hover {
    color: var(--s-accent);
    border-top: 1px solid var(--s-accent);
}

.header-mobile .header-mobile-block nav ul li:hover>a,
.header-mobile .header-mobile-block nav ul li.current_page_item>a {
    color: var(--s-accent);
}

.header-mobile .header-mobile-block .header-mobile-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    grid-column: 5 / 6;
    padding: 8px 10px 2px 10px;
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    text-align: center;
    color: var(--s-text-color);
    text-decoration: none;
    cursor: pointer;
}

.header-mobile .header-mobile-block .header-mobile-btn svg {
    height: 24px;
}

.header-mobile .header-mobile-block .header-mobile-btn svg path {
    stroke: var(--s-text-color);
}

.header-mobile-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    overflow: auto;
    flex-direction: column;
    padding: 10px 16px;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background-color: var(--s-main-bg);
    z-index: 10000000;
}

.header-mobile-dropdown.active {
    display: flex;
}

.header-mobile-dropdown .header-mobile-dropdown-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin: 10px 0;
}

.header-mobile-dropdown .header-register>div {
    margin-top: 10px;
    margin-bottom: 30px;
    width: -webkit-fill-available;
}

.header-mobile-dropdown .mobile-menu-list ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-mobile-dropdown .mobile-menu-list ul li {
    display: grid;
    grid-template-areas:
        'list-name chevron'
        'list list';
    padding: 12px 16px;
    margin: 0 !important;
    height: auto;
    border-radius: 8px;
}

.header-mobile-dropdown .mobile-menu-list ul li::before {
    content: none;
}

.header-mobile-dropdown .mobile-menu-list ul li:hover {
    background-color: var(--s-block-primary-bg);
}

.header-mobile-dropdown .mobile-menu-list ul li.active {
    background-color: var(--s-block-primary-bg);
}

.header-mobile-dropdown .mobile-menu-list ul li>a {
    grid-area: list-name;
    display: flex;
    align-items: center;
    gap: 8px;
    width: -webkit-fill-available;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
    text-decoration: none;
}

.header-mobile-dropdown .mobile-menu-list ul li .arrow {
    grid-area: chevron;
    justify-self: flex-end;
    align-self: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-mobile-dropdown .mobile-menu-list ul li.active .sub-menu {
    display: flex;
}

.header-mobile-dropdown .mobile-menu-list ul li.active .arrow {
    transform: rotate(180deg);
}

.header-mobile-dropdown .mobile-menu-list ul li .sub-menu {
    grid-area: list;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    width: -webkit-fill-available;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.header-mobile-dropdown .mobile-menu-list ul li .sub-menu li {
    display: flex;
    padding-top: 0;
    padding-bottom: 0;
    width: -webkit-fill-available;
}

.header-mobile-dropdown .mobile-menu-list ul li .sub-menu li a {
    width: -webkit-fill-available;
}

.header-mobile-dropdown .header-download {
    margin-top: 33px;
}

.header-mobile-dropdown .header-download>.btn {
    width: -webkit-fill-available;
}

.header-mobile-dropdown .chose-lang {
    width: fit-content;
    margin-top: 75px;
}

.header-mobile-dropdown .chose-lang ul {
    min-width: auto;
    width: max-content;
    position: absolute;
    bottom: calc(100% + 8px) !important;
    left: 0 !important;
    top: auto !important;
    right: auto !important;
}

.header-mobile-dropdown .header-download .btn {
    background-color: var(--s-btn-accent);
}

@media (max-width: 991px) {
    .header-mobile {
        display: block;
    }
}

/* welcome */
.welcome {
    margin-bottom: 20px !important;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-container .welcome-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px;
    border-radius: var(--s-rounded-blocks);
    color: var(--s-text-color);
    background-color: var(--s-block-primary-bg);
}

@media (max-width: 991px) {
    .welcome {
        margin-bottom: 50px !important;
    }

    .welcome-main {
        gap: 16px;
    }
}

.welcome-bonus {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    color: var(--s-block-text);
    overflow: hidden;
    background-color: var(--s-accent);
    border-radius: var(--s-rounded-blocks);
}

.welcome-bonus .welcome-bonus-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcome-bonus .welcome-bonus-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-bonus .welcome-bonus-value {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    color: var(--s-block-text);
}

.welcome-bonus .h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: var(--s-block-text);
}

.welcome-bonus .h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    color: var(--s-block-text);
}

.welcome-bonus .welcome-bonus-text {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    color: var(--s-block-text);
}

.welcome-bonus .btn {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .welcome-bonus {
        padding: 0 16px 16px;
    }

    .welcome-bonus .welcome-bonus-value {
        margin-top: 150px;
        margin-bottom: 16px;
    }

    .welcome-bonus .welcome-bonus-bg img {
        width: auto;
    }

    .welcome-bonus .welcome-bonus-text {
        margin-bottom: 16px;
    }

    .welcome-bonus .btn {
        width: -webkit-fill-available;
    }
}

/* others welcome pages */
.welcome-row .welcome-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    border-radius: var(--s-rounded-blocks);
    background-color: var(--s-block-primary-bg);
}

.welcome-row .welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.welcome-row .welcome-main {
    padding: 0;
    gap: 16px;
    align-items: flex-start;
}

.welcome-row .welcome-container h1 {
    text-align: left;
}

.welcome-row .welcome-container .desc {
    text-align: left;
}

@media (max-width: 991px) {
    .welcome-row .welcome-block {
        padding: 16px;
    }

    .welcome-row .welcome-container {
        grid-template-columns: 1fr;
    }
}

/* welcome app page */
.welcome-app .welcome-container .welcome-download {
    position: relative;
    display: flex;
    padding: 20px;
    background-color: var(--s-block-secondary-bg);
    border-radius: var(--s-rounded-blocks);
}

.welcome-app .welcome-container .welcome-download-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    width: 50%;
}

.welcome-app .welcome-container .download-buttons {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    width: -webkit-fill-available;
}

.welcome-app .welcome-container .download-buttons>.btn {
    width: -webkit-fill-available;
}

.welcome-app .welcome-container .welcome-download-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: var(--s-text-color);
}

.welcome-app .welcome-container img {
    position: absolute;
    z-index: 1;
    height: 110%;
    width: auto;
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .welcome-app .welcome-container img {
        position: relative;
        height: 300px;
    }

    .welcome-app .welcome-container .welcome-download-text {
        width: -webkit-fill-available;
        gap: 16px;
    }

    .welcome-app .welcome-container .welcome-download-buttons {
        margin-top: -10%;
    }
}

/* welcome game */
.welcome-game .welcome-game-video {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #363e56;
}

.welcome-game .welcome-game-video .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.welcome-game .welcome-game-video .game-video {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--s-rounded-block-items);
    border: 4px solid var(--s-block-secondary-bg);
}

.welcome-game .welcome-game-video img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--s-rounded-block-items);
}

.welcome-game .welcome-game-video .game-blur {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
    backdrop-filter: blur(2px);
}

/* welcome promocode */
.welcome-promocode .welcome-container {
    display: flex;
    flex-direction: row;
}

.welcome-promocode .welcome-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 320px;
    width: 100%;
    border: 2px dashed var(--s-accent);
    border-radius: var(--s-rounded-blocks);
    background-color: var(--s-block-secondary-bg);
}

.welcome-promocode .welcome-promo .welcome-promocode-title {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    color: var(--s-text-color);
}

.welcome-promocode .welcome-promo .promocode-section-input {
    width: -webkit-fill-available;
}

.welcome-promocode .welcome-promo .btn {
    margin-top: 10px;
    width: -webkit-fill-available;
}

@media (max-width: 991px) {
    .welcome-promocode .welcome-container {
        flex-direction: column;
        align-items: center;
    }

    .welcome-promocode .welcome-promo {
        max-width: none;
    }
}

/* promocode input */
.promocode-input {
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 3px 3px 3px 16px;
    width: -webkit-fill-available;
    border-radius: 50px;
    background-color: #F9F9FF;
}

.promocode-input input {
    width: -webkit-fill-available;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #1A1A1A;
    background-color: transparent;
    border: none;
    outline: navajowhite;
    max-width: 60%;
}

.promocode-input .promocode-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background-color: var(--s-accent);
    border-radius: 50%;
}

.promocode-input .promocode-copy {
    cursor: pointer;
}

.promocode-input .promocode-check {
    display: none;
}

/* breadcrumbs */
.welcome-block>.container {
    padding: 0 !important;
}

.breadcrumbs {
    margin: 0 !important;
}

.breadcrumbs span {
    display: flex;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--s-text-color);
}

.breadcrumbs span a {
    color: var(--s-accent);
    text-decoration: none;
}

/* .footer */
.footer {
    padding: 30px 0;
    background-color: var(--s-footer-bg);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: var(--s-footer-text-color);
}

.footer .footer-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.footer .footer-top .footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

.footer .footer-top .footer-logo img {
    width: 106px;
}

.footer .footer-top .footer-logo ul {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 !important;
}

.footer .footer-top .footer-logo ul li {
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-top .footer-logo ul li::before {
    content: none;
}

.footer .footer-top .footer-logo ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--s-style-bg);
}

.footer .footer-top .footer-logo ul li:hover a {
    background-color: var(--s-style-bg-hover);
}

.footer .footer-top nav {
    grid-column: 2 / 4;
}

.footer .footer-top nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
    column-gap: 30px;
    margin: 0 !important;
}

.footer .footer-top nav ul li {
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--s-footer-text-color);
}

.footer .footer-top nav ul li::before {
    content: none;
}

.footer .footer-top nav ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: inherit;
    text-decoration: none;
}

.footer .footer-top nav ul li a:hover {
    color: var(--s-accent);
}

.footer .footer-top .connect {
    grid-column: 4 / 6;
}

.footer .footer-top .connect .head {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer .footer-top .connect .footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-top .connect .footer-email .email-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--s-style-bg);
    border-radius: 50%;
}

.footer .footer-top .connect .footer-email a {
    color: inherit;
    text-decoration: none;
}

.footer .footer-top .connect .footer-email a:hover {
    color: var(--s-accent);
}

.footer .footer-top .footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.footer .footer-top .footer-buttons .btn {
    background-color: var(--s-btn-accent);
    color: var(--s-btn-accent-text);
}

.footer .footer-top .footer-buttons .btn:hover {
    background-color: var(--s-btn-accent-hover);
}

.footer .footer-top .footer-buttons .chose-lang ul {
    top: auto;
    bottom: calc(100% + 8px);
}

.footer .footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 0 !important;
}

.footer .footer-payments li {
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-payments li::before {
    content: none;
}

.footer .footer-payments img {
    height: 24px;
    width: auto;
}

.footer .footer-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

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

.footer .footer-bottom .copyright {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.footer .footer-bottom .footer-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .footer-bottom .footer-icons img {
    height: 30px;
    width: auto;
}

@media (max-width: 991px) {
    .footer {
        padding: 16px 0;
    }

    .footer .container {
        margin-bottom: 60px;
    }

    .footer .footer-top {
        display: flex;
        flex-direction: column;
    }

    .footer .footer-top .footer-logo {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer .footer-top nav ul {
        grid-template-columns: 1fr 1fr;
    }

    .footer .footer-top .connect {
        display: flex;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer .footer-top .connect .h4 {
        margin: 0;
    }

    .footer .footer-top .connect .head {
        margin: 0;
        font-size: 18px;
        line-height: 24px;
        text-wrap: nowrap;
    }

    .footer .footer-top .footer-buttons {
        gap: 16px;
    }

    .footer .footer-top .footer-buttons>div {
        width: -webkit-fill-available;
    }

    .footer .footer-payments {
        justify-content: center;
    }

    .footer .footer-text {
        font-size: 12px;
        line-height: 16px;
    }

    .footer .footer-bottom {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .footer .footer-top .footer-buttons .btn {
        width: -webkit-fill-available;
    }
}

/* chose lang */
.chose-lang {
    position: relative;
    color: var(--s-style-text);
}

.chose-lang .chose-lang-active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 30px;
    background-color: var(--s-style-bg);
    cursor: pointer;
}

.chose-lang .chose-lang-active:hover {
    background-color: var(--s-style-bg-hover);
}

.chose-lang .chose-lang-active img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.chose-lang .chose-lang-open {
    transition: all 0.3s ease;
}

.chose-lang.active .chose-lang-open {
    transform: rotate(180deg);
}

.chose-lang.active ul {
    display: flex;
}

.chose-lang ul {
    position: absolute;
    top: calc(100% + 8px);
    z-index: 100;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    width: -webkit-fill-available;
    min-width: 250px;
    border-radius: var(--s-rounded-blocks);
    background-color: var(--s-block-primary-bg);
    border: 1px solid var(--s-block-secondary-bg);
    box-shadow: 0 8px 30px 0 #0000001A;
}

.header-mobile .chose-lang ul {
    background-color: var(--s-style-bg);
}

.chose-lang ul li {
    padding: 8px;
    margin: 0 !important;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.chose-lang ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
    text-decoration: none;
}

.chose-lang ul li::before {
    content: none;
}

.chose-lang ul li:hover {
    background-color: var(--s-block-secondary-bg);
}

.chose-lang ul li img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.chose-lang ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: var(--s-text-color);
}

.chose-lang ul li a img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* error page */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto 0;
}

.error-page .error-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 40px;
    max-width: 630px;
}

.error-page .error-container .error-type {
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    color: var(--s-accent);
}

.error-page .error-container .error-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: center;
    color: var(--s-text-color);
}

@media (max-width: 991px) {
    .error-page .error-container {
        padding: 20px;
    }
}

/* cookie */
.cookie-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
}

.cookie-container .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.cookie-container .blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13152099;
    z-index: 0;
}

.cookie-container .cookie-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
    padding: 30px;
    width: 350px;
    border-radius: 16px;
    border: 2px solid #006AFF;
    box-shadow: 0 8px 30px 0 #0000001A;
    background-color: var(--s-block-primary-bg);
    color: var(--s-text-color);
}

.cookie-container .cookie-block .cookie-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
}

.cookie-container .cookie-block .cookie-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

.cookie-container .cookie-block .cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cookie-container .cookie-block .cookie-buttons>.btn {
    width: -webkit-fill-available;
}

.cookie-container .cookie-block .cookie-buttons .refuse-cookie {
    background-color: transparent;
    border: 2px solid var(--s-accent);
    color: var(--s-accent);
}

@media (max-width: 991px) {
    .cookie-container .cookie-block {
        width: -webkit-fill-available;
        max-width: none;
        margin-bottom: 80px;
    }
}

/* email popup */
.email-popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 19px;
    width: -webkit-fill-available;
    height: 100vh;
    z-index: 10000;
}

.email-popup .blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #13152099;
}

.email-popup .email-popup-block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 30px;
    width: 500px;
    border-radius: var(--s-rounded-blocks);
    border: 2px solid var(--s-accent);
    box-shadow: 0 8px 30px 0 #0000001A;
    background-color: var(--s-block-primary-bg);
}

.email-popup .email-popup-block .email-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--s-style-bg);
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
}

.email-popup .email-popup-block img {
    height: 100px;
}

.email-popup .email-popup-block .email-popup-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.email-popup .email-popup-block .desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: var(--s-text-color);
}

.email-popup .email-popup-block .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
}

.email-popup .email-popup-block .form form {
    display: flex;
    gap: 10px;
}

.email-popup .email-popup-block .form form .input {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 11px 16px;
    width: -webkit-fill-available;
    border-radius: 50px;
    background-color: #F9F9FF;
}

.email-popup .email-popup-block .form form .input input {
    width: -webkit-fill-available;
    border: none;
    outline: none;
}

.email-popup .email-popup-block .form form .input input::placeholder {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #C1C8D0;
}

@media (max-width: 991px) {
    .email-popup .email-popup-block .form form {
        flex-direction: column;
    }

    .email-popup .email-popup-block .form form .btn {
        width: -webkit-fill-available;
    }
}

/* arrowToTop */
.arrowToTop {
    position: fixed;
    right: 30px;
    bottom: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--s-style-bg);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrowToTop.active {
    bottom: 50px;
}

@media (max-width: 991px) {
    .arrowToTop {
        right: 16px;
    }

    .arrowToTop.active {
        bottom: 150px;
    }
}

/* app popups */
.app-popup {
    position: fixed;
    bottom: 70px;
    left: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fill-available;
    padding: 12px;
    margin: 0 16px;
    border-radius: 16px;
    border: 2px solid var(--s-accent);
    box-shadow: 0 8px 30px 0 #0000001A;
    background-color: #FFFFFF;
}

.app-popup .app-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-popup button {
    padding: 6px 10px !important;
    font-size: 13px !important;
}

.app-popup .app-info-close {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-popup .app-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--s-accent);
}

.app-popup .app-info-platform {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #969696;
}

.app-popup .app-info-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #343434;
}

.app-popup .app-info-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #969696;
}