.select-button {
    all: unset;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: var(--indent-2);
    color: var(--tx-main);
    line-height: 24px;
    padding: 0 var(--indent-4);
    cursor: pointer;
}

.select-button:disabled {
    cursor: initial;
    opacity: .6;
}

.select-button>span:first-child {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: var(--indent-2);
}

.select-button[data-placeholder] {
    color: var(--tx-secondary);
}

.select-button__icon {
    display: flex;
    align-items: center;
    transition: var(--duration);
}

.select-button[data-state=open]>.select-button__icon {
    transform: rotate(180deg);
}

.select-content {
    width: var(--radix-select-trigger-width);
    max-height: var(--radix-select-content-available-height);
}

.select-content__viewport {
    padding: var(--indent-1);
    background-color: var(--bg-tertiary);
    color: var(--tx-main);
    border-radius: var(--rounded);
}

.select-content__item {
    /* padding: 8px 16px; */
    padding: var(--indent-2) var(--indent-6);
    width: 100%;
    cursor: pointer;
    transition: .1s;
    line-height: 24px;
    border-radius: var(--rounded-sm);
    color: var(--tx-secondary);
    border-bottom: 1px solid var(--bg-main);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-content__item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.select-content__item:hover {
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm);
}

.select-content__item:focus-visible {
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm);
}

.select-content__item>span:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--indent-2);
}

.select-content__item:hover {
    background-color: var(--bg-main);
}

.select-content__item:focus-visible {
    outline: 1px solid var(--bg-accent);
}

.flag-icon {
    border-radius: var(--rounded-xs);
    width: 20px;
}

.locale-switcher {
    width: 160px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: var(--rounded);
}

@media (max-width: 1536px) {
    .locale-switcher {
        width: auto;
    }
}

@media (--2xl-down) {
    .locale-switcher {
        width: auto;
    }
}

.locale-switcher__button {
    color: var(--tx-secondary);
}

@media (max-width: 1536px) {
    .locale-switcher__button>span:first-child {
        font-size: 0;
        width: auto;
        gap: 0;
    }
}

@media (--2xl-down) {
    .locale-switcher__button>span:first-child {
        font-size: 0;
        width: auto;
        gap: 0;
    }
}

@media (max-width: 1536px) {
    .locale-switcher__item>span:first-child {
        font-size: 0;
        width: auto;
        gap: 0;
        display: flex;
        justify-content: center;
    }
}

@media (--2xl-down) {
    .locale-switcher__item>span:first-child {
        font-size: 0;
        width: auto;
        gap: 0;
        display: flex;
        justify-content: center;
    }
}

.tab-button {
    padding: 0 var(--indent-6);
    height: var(--indent-10);
    font-weight: 600;
    color: var(--tx-secondary);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    gap: var(--indent-1);
}

.tab-button--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active);
}

.tab-link {
    padding: 0 var(--indent-6);
    height: var(--indent-10);
    font-weight: 600;
    color: var(--tx-secondary);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    gap: var(--indent-1);
}

.tab-link--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active);
}

.tabs {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    padding: 2px;
    border-radius: var(--rounded);
    width: -moz-fit-content;
    width: fit-content;
    background: var(--bg-secondary);
}

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

.tabs .tabs__slide {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.tabs .tabs__slide:last-child {
    margin: 0 !important;
}

.bets-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6);
}

@media (max-width: 640px) {
    .bets-page {
        gap: var(--indent-3);
    }
}

@media (--sm-down) {
    .bets-page {
        gap: var(--indent-3);
    }
}

.bets-page__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .bets-page__title {
        font-size: 30px
    }
}

@media (--lg-down) {
    .bets-page__title {
        font-size: 30px
    }
}

.bets-page__title svg {
    fill: var(--tx-secondary);
    width: 24px;
    height: 24px;
    padding: 0 var(--indent-2)
}

.icon-button {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-tertiary);
    border-radius: var(--rounded);
    padding: var(--indent-2);
    display: flex;
    justify-content: center;
    align-items: center
}

.icon-button__icon {
    fill: var(--tx-secondary)
}

.betslip-error {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    color: var(--error);
    border-radius: var(--rounded-sm);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px
}

.betslip-error__icon {
    display: flex;
    align-items: center;
    width: 16px
}

.betslip-error--filled {
    background-color: rgb(from var(--error) r g b / .3);
    padding: var(--indent-2)
}

.bet-input {
    position: relative;
    max-width: 134px
}

.bet-input__input {
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 8px 40px 8px 16px;
    border-radius: var(--rounded-sm);
    font-weight: 400;
    font-size: var(--tx-base);
    line-height: 24px;
    color: var(--tx-main)
}

.bet-input__input:disabled {
    opacity: .5
}

.bet-input__currency-sign {
    position: absolute;
    bottom: 8px;
    right: 16px;
    font-weight: 400;
    font-size: var(--tx-base);
    line-height: 24px;
    color: var(--tx-main)
}

.bet-input--highlighted {
    border: 1px solid var(--bg-accent)
}

.bet-input--full-width {
    max-width: 100%
}

.switch {
    all: unset;
    margin: 1px;
    box-sizing: border-box;
    position: relative;
    width: 38px;
    min-width: 38px;
    height: 22px;
    cursor: pointer;
    border-radius: 9999px;
    background-color: var(--bg-secondary)
}

.switch__thumb {
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-radius: 9999px;
    background: var(--bg-tertiary);
    box-shadow: 2px 2px 2px #1b1d2b0d, inset 2px 2px 2px #ffffff26, inset 0 0 5px #2527361a;
    transition: all .3s;
    transform: translate(2px);
    will-change: transform
}

.switch__thumb[data-state=checked] {
    transform: translate(16px);
    background: var(--bg-accent)
}

.freebet-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.freebet-row__info {
    display: flex;
    flex-direction: column
}

.freebet-row__info-text {
    font-size: var(--tx-sm);
    color: var(--tx-main)
}

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

.betslip-highlighted {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: var(--tx-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px
}

.betslip-highlighted--up {
    color: var(--success)
}

.betslip-highlighted--down {
    color: var(--error)
}

.betslip-highlighted__arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.betslip-highlighted__arrow--up {
    border-bottom: 5px solid var(--success)
}

.betslip-highlighted__arrow--down {
    border-top: 5px solid var(--error)
}

.selection-card {
    background-color: var(--bg-main);
    padding: var(--indent-2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: var(--rounded-sm);
    box-sizing: content-box;
    border: 1px solid transparent
}

.selection-card--error {
    border: 1px solid var(--error)
}

.selection-card-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-1)
}

.selection-card-container__error-container {
    display: flex;
    align-items: center;
    gap: var(--indent-1)
}

.selection-card-container__error-container>svg {
    min-width: 16px
}

.selection-card-container__error-text {
    color: var(--error);
    font-size: var(--tx-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.selection-card__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--indent-2);
    border-bottom: 1px solid var(--bg-tertiary)
}

.selection-card__header-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.selection-card__icon-button {
    background: transparent
}

.selection-card__description {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: var(--indent-2)
}

.selection-card__info {
    display: flex;
    flex-direction: column;
    min-width: 0
}

.selection-card__side {
    color: var(--tx-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.selection-card__name {
    color: var(--tx-betslip-grey-dimmed);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.selection-card__stake {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.selection-card__payout-block {
    display: flex;
    flex-direction: column
}

.selection-card__payout-block-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    white-space: nowrap;
    color: var(--tx-betslip-grey-dimmed)
}

.selection-card__payout-block-sum {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-main);
    text-align: right
}

.total-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.total-row__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary);
    text-transform: uppercase
}

.total-row__value {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: var(--tx-secondary)
}

.total-row--highlighted {
    color: var(--tx-accent)
}

.betslip {
    width: var(--betslip-desktop-width);
    height: 100%;
    background-color: var(--bg-secondary);
    display: flex;
    flex: 1 0 100%;
    flex-direction: column;
    gap: var(--indent-3);
    overflow: auto
}

@media (max-width: 1024px) {
    .betslip {
        width: 100%;
        overflow: auto
    }
}

@media (--lg-down) {
    .betslip {
        width: 100%;
        overflow: auto
    }
}

.betslip__inner-container {
    padding: 0 var(--indent-4)
}

.betslip__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    margin-top: var(--indent-4)
}

.betslip__header-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-2);
    color: var(--tx-main);
    font-size: var(--tx-base);
    line-height: 24px;
    font-weight: 600
}

.betslip__selection-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--bg-betslip-selection-counter);
    color: var(--tx-active);
    font-size: var(--tx-sm);
    line-height: 16px;
    font-weight: 700
}

.betslip__close-icon {
    margin-left: auto;
    cursor: pointer;
    background: transparent
}

.betslip__tabs {
    width: 100%;
    min-height: 37px;
    padding: 2px;
    display: flex;
    justify-content: space-between;
    gap: var(--indent-1);
    border-radius: var(--rounded);
    background-color: var(--bg-main)
}

.betslip__tab-button {
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 14px;
    color: var(--tx-secondary);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize
}

.betslip__tab-button--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active);
    font-weight: 600
}

.betslip__tab-button:disabled {
    opacity: .3;
    cursor: initial
}

.betslip__controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--indent-4)
}

.betslip__accept-odds-changes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: var(--tx-secondary);
    height: auto;
    width: auto;
    flex-grow: 1;
    padding: 0
}

.betslip__clear-selections {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    color: var(--tx-main)
}

.betslip__selections-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 0;
    border-bottom: 1px solid var(--bg-tertiary);
    margin-bottom: auto
}

.betslip__selections-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 24px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, transparent, var(--bg-secondary) 100%)
}

.betslip__selections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 48px;
    overflow: auto
}

.betslip__selections-group {
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.betslip__selections-group--error {
    border: 1px solid var(--error);
    border-radius: var(--rounded-sm)
}

.betslip__selections-error-container {
    display: flex;
    align-items: center;
    gap: var(--indent-1)
}

.betslip__selections-error-container>svg {
    min-width: 16px
}

.betslip__selections-error-text {
    color: var(--error);
    font-size: var(--tx-sm)
}

.betslip--error {
    border: 1px solid var(--error);
    border-radius: var(--rounded-sm)
}

.betslip__bet-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.betslip__totals {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.betslip__place-bet-button-wrapper {
    width: 100%;
    min-height: 44px;
    margin-bottom: var(--indent-4)
}

.betslip__place-bet-offer-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--indent-3);
    gap: var(--indent-2);
    font-size: 14px
}

.betslip__place-bet-offer-title {
    color: var(--tx-secondary)
}

.betslip__place-bet-offer-description {
    color: var(--tx-main)
}

.betslip__place-bet-offer-icon {
    margin-top: var(--indent-2)
}

.betslip__auth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-main);
    padding: var(--indent-4);
    border-radius: var(--rounded-sm);
    margin-bottom: var(--indent-4)
}

.betslip__auth-title {
    margin-bottom: var(--indent-2);
    color: var(--tx-secondary);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px
}

.betslip__auth-login-button {
    margin-bottom: 16px;
    height: 40px;
    width: 100%
}

.betslip__auth-sign-up {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.betslip__auth-sign-up-question {
    color: var(--tx-secondary);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px
}

.betslip__auth-sign-up-button {
    color: var(--tx-accent);
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-decoration: underline;
    text-transform: capitalize
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 9999px;
    border: 10px solid #FFF;
    border-top: 10px solid #AEA798;
    animation: spin 1s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.primary-button {
    background: var(--gradient-horizontal);
    border-radius: var(--rounded);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: var(--tx-active)
}

.primary-button:disabled {
    opacity: .6;
    cursor: auto
}

.primary-button .primary-button__loader {
    width: 25px;
    height: 25px;
    border-width: 4px
}

@keyframes slideIn {
    0% {
        transform: translate(calc(100% + 25px))
    }

    to {
        transform: translate(0)
    }
}

@keyframes swipeOut {
    0% {
        transform: translate(var(--radix-toast-swipe-end-x))
    }

    to {
        transform: translate(calc(100% + 25px))
    }
}

.ToastViewport {
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 25px;
    gap: 10px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100vw;
    margin: 0;
    list-style: none;
    z-index: 5;
    outline: none
}

.ToastRoot {
    border-radius: 6px;
    box-shadow: #0e121659 0 10px 38px -10px, #0e121633 0 10px 20px -15px;
    padding: 15px;
    display: flex;
    flex-direction: column
}

.ToastRoot[data-state=open] {
    animation: slideIn .15s cubic-bezier(.16, 1, .3, 1)
}

.ToastRoot[data-swipe=move] {
    transform: translate(var(--radix-toast-swipe-move-x))
}

.ToastRoot[data-swipe=cancel] {
    transform: translate(0);
    transition: transform .2s ease-out
}

.ToastRoot[data-swipe=end] {
    animation: swipeOut .1s ease-out
}

.ToastRoot[data-type=success] {
    background-color: var(--success)
}

.ToastRoot[data-type=error] {
    background-color: var(--error)
}

.ToastTitle {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--tx-main);
    font-size: 15px
}

.ToastDescription {
    color: var(--tx-main);
    font-size: 13px
}

.systems-options {
    width: 100%
}

.systems-options__select-button {
    background-color: var(--bg-main);
    width: 100%;
    padding: var(--indent-2);
    border-radius: var(--rounded-sm)
}

.systems-options__select-item {
    background-color: var(--bg-tertiary)
}

@media (max-width: 1024px) {
    .systems-options {
        width: 100%
    }
}

@media (--lg-down) {
    .systems-options {
        width: 100%
    }
}

.description {
    color: #eee
}

.description * {
    all: revert
}

.description p {
    font-weight: 400;
    font-size: 1rem
}

.description h1,
.description h2,
.description h3,
.description h4,
.description h5,
.description h6 {
    margin: 40px 0 .8rem 0;
}

.description h1 {
    font-size: 1.5rem
}

.description h2 {
    font-size: 1.4rem
}

.description h3 {
    font-size: 1.3rem
}

.description h4 {
    font-size: 1.2rem
}

.description h5 {
    font-size: 1.1rem
}

.description h6 {
    font-size: 1rem
}

.description a {
    color: #eee
}

.description img {
    max-width: 100%
}

.description blockquote {
    position: relative;
    margin: 0;
    padding-left: 30px
}

.description blockquote:before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    background: #eee
}

.description ul,
.description ol {
    padding: 0 15px
}

.description ul *,
.description ol * {
    margin: 0;
    font-weight: 400;
    font-size: 1rem
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.footer-links-column__title {
    color: var(--tx-main);
    font-size: 1rem
}

.footer-links-column__links-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.footer {
    width: 100%;
    background: var(--bg-footer);
    padding-top: var(--indent-12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-8)
}

.footer__main-block {
    max-width: var(--content-max-width);
    padding: 0 var(--indent-6);
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--indent-10)
}

@media (max-width: 1280px) {
    .footer__links {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (--xl-down) {
    .footer__links {
        grid-template-columns: repeat(2, 1fr)
    }
}

.footer__separator {
    border-color: var(--bg-separator);
    width: 100%;
    margin: 0;
    border-left: none;
    border-right: none
}

.footer__license {
    color: var(--tx-secondary);
    font-size: 1rem;
    line-height: 1.5rem
}

.footer__logos-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--indent-6);
    align-items: center;
    justify-content: space-between
}

.footer__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--indent-6)
}

.footer__logos>a {
    max-height: 85px
}

.footer__logos>img {
    width: 80px;
    max-height: 85px
}

.footer-coins {
    margin: auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--indent-6)
}

.footer-coins>img {
    padding: 0 var(--indent-1)
}

.footer-contacts {
    padding: var(--indent-6) var(--indent-8);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: var(--indent-12);
    background: var(--bg-main)
}

@media (max-width: 1280px) {
    .footer-contacts {
        flex-direction: column;
        align-items: center;
        gap: var(--indent-2)
    }
}

@media (--xl-down) {
    .footer-contacts {
        flex-direction: column;
        align-items: center;
        gap: var(--indent-2)
    }
}

.footer-contacts__item {
    color: var(--tx-secondary);
    line-height: 1.5rem
}

.footer-contacts__link {
    color: var(--tx-accent);
    text-decoration: none;
    font-weight: 600
}

.footer-contacts__separator {
    height: 1.5rem;
    width: 1px;
    background: var(--bg-tertiary)
}

@media (max-width: 1280px) {
    .footer-contacts__separator {
        display: none
    }
}

@media (--xl-down) {
    .footer-contacts__separator {
        display: none
    }
}

.footer-link {
    color: var(--tx-secondary);
    font-size: 14px;
    text-decoration: none;
    margin: var(--indent-1) 0
}

.search-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    height: 100%;
    width: 100%;
    border-radius: var(--rounded);
    background-color: inherit;
    padding: var(--indent-3) var(--indent-4)
}

.search-button__text {
    background: inherit;
    color: var(--tx-secondary);
    text-align: left
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: var(--rounded);
    background-color: inherit;
    padding: var(--indent-3) var(--indent-4)
}

.search-input__icon {
    position: absolute;
    left: var(--indent-4)
}

.search-input__input {
    display: block;
    width: 100%;
    background: inherit;
    color: var(--tx-main);
    padding-left: var(--indent-8)
}

.search-input__input::-moz-placeholder {
    color: var(--tx-secondary)
}

.search-input__input::placeholder {
    color: var(--tx-secondary)
}

.badge {
    width: 20px;
    height: 20px;
    background: var(--bg-accent);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-active);
    font-size: 10px;
    font-weight: 700
}

.badge--animate {
    animation: pulse .5s ease
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

.casino-grid-layout-container {
    width: 100%;
    overflow: hidden
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
    grid-template-rows: auto;
    grid-auto-rows: 0;
    -moz-column-gap: 16px;
    column-gap: 16px
}

.grid-double-row,
.grid-double-row-left-big-image {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
    grid-template-rows: auto auto;
    grid-auto-rows: 0;
    -moz-column-gap: 16px;
    column-gap: 16px
}

.grid-double-row-left-big-image div:first-child {
    grid-row: span 2 / span 2;
    grid-column: span 2 / span 2
}

.grid-double-row-right-big-image {
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
    grid-template-rows: auto auto;
    grid-auto-rows: 0;
    -moz-column-gap: 16px;
    column-gap: 16px
}

.grid-double-row-right-big-image div:first-child {
    grid-row: span 2 / span 2;
    grid-column: span 2 / span 2
}

@keyframes pulse {
    0% {
        transform: scaleZ(1)
    }

    50% {
        transform: scale3d(1.15, 1.15, 1.15)
    }

    to {
        transform: scaleZ(1)
    }
}

.casino-favorite-button svg path {
    fill: transparent;
    transition: fill var(--duration)
}

.casino-favorite-button.favorite svg path {
    fill: #aea798
}

.casino-favorite-button.pulse {
    animation-name: pulse;
    animation-duration: var(--duration);
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1
}

.casino-games-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.casino-games-container__view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
    grid-template-rows: auto;
    -moz-column-gap: 16px;
    column-gap: 16px
}

@media (max-width: 640px) {
    .casino-games-container__view {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr))
    }
}

@media (--sm-down) {
    .casino-games-container__view {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr))
    }
}

.sport-icon {
    fill: var(--tx-secondary);
    flex-shrink: 0
}

.sportsbook-breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--indent-3)
}

.sportsbook-breadcrumbs__segment {
    text-transform: capitalize;
    text-decoration: none;
    color: #504e4b
}

.sportsbook-breadcrumbs__segment--link {
    color: var(--tx-secondary);
    text-decoration: underline
}

.sports-carousel-item {
    padding-bottom: var(--indent-1);
    width: 96px;
    position: relative;
    color: var(--tx-secondary);
    border-bottom: 2px solid transparent;
    transition: var(--duration) all
}

.sports-carousel-item--active {
    border-bottom: 2px solid var(--bg-accent);
    color: var(--tx-accent);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.sports-carousel-item:hover {
    color: var(--tx-accent)
}

.sports-carousel-item__content {
    padding: 0 var(--indent-2);
    border: 1px solid var(--bg-accent);
    border-radius: var(--rounded-sm);
    height: 73px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--indent-1);
    background-color: var(--bg-secondary)
}

.sports-carousel-item__title {
    width: 100%;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: currentColor;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.sports-carousel-item__counter {
    padding: 2px 8px;
    position: absolute;
    top: var(--indent-2);
    right: var(--indent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .875rem;
    color: var(--tx-secondary);
    border-radius: 40px;
    background-color: var(--bg-tertiary)
}

.sports-carousel-item svg {
    fill: currentColor
}

.sports-carousel {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    width: -moz-fit-content;
    width: fit-content
}

.sports-carousel__swiper {
    width: 100%;
    height: 100%
}

.sports-carousel .sports-carousel__slide {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.sports-carousel .sports-carousel__slide:last-child {
    margin: 0 !important
}

.highlighted {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.highlighted--up {
    color: var(--success)
}

.highlighted--down {
    color: var(--error)
}

.highlighted__arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.highlighted__arrow--up {
    border-bottom: 5px solid var(--success)
}

.highlighted__arrow--down {
    border-top: 5px solid var(--error)
}

.selection {
    padding: 8px 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    transition: all var(--duration)
}

.selection:hover {
    background-color: rgb(from var(--bg-accent) r g b / .3)
}

.selection--active {
    background-color: var(--bg-accent)
}

.selection--active .selection__name,
.selection--active .selection__odds {
    color: var(--tx-active)
}

.selection__name {
    color: var(--tx-main);
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%
}

@media (max-width: 768px) {
    .selection__name {
        white-space: normal;
        text-overflow: unset;
        overflow: unset
    }
}

@media (--md-down) {
    .selection__name {
        white-space: normal;
        text-overflow: unset;
        overflow: unset
    }
}

.selection__odds {
    color: var(--tx-accent);
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left
}

.sportsbook-bet-badge {
    --bg-badge-win: #16a34a;
    --bg-badge-half-win: #86efac;
    --bg-badge-lose: #dc2626;
    --bg-badge-half-lose: #fca5a5;
    --bg-badge-refund: #93c5fd;
    --bg-badge-active: #ea580c;
    --bg-badge-cash-out: #b794f4;
    --bg-badge-cancel: #4b5563;
    font-weight: 600;
    color: var(--tx-active);
    text-transform: capitalize;
    background-color: #9ca3af
}

.sportsbook-bet-badge--large {
    border-radius: var(--rounded-sm);
    line-height: 24px;
    padding: 2px 8px;
    font-size: var(--tx-base)
}

.sportsbook-bet-badge--small {
    border-radius: var(--rounded-xs);
    font-size: var(--tx-sm);
    padding: 0 3px;
    line-height: 20px
}

.sportsbook-bet-badge--win {
    background-color: var(--bg-badge-win)
}

.sportsbook-bet-badge--half-win,
.sportsbook-bet-badge--pwin {
    background-color: var(--bg-badge-half-win)
}

.sportsbook-bet-badge--lose,
.sportsbook-bet-badge--plose {
    background-color: var(--bg-badge-lose)
}

.sportsbook-bet-badge--half-lose {
    background-color: var(--bg-badge-half-lose)
}

.sportsbook-bet-badge--active {
    background-color: var(--bg-badge-active)
}

.sportsbook-bet-badge--cash-out {
    background-color: var(--bg-badge-cash-out)
}

.sportsbook-bet-badge--refund {
    background-color: var(--bg-badge-refund)
}

.sportsbook-bet-badge--cancel {
    background-color: var(--bg-badge-cancel)
}

.sportsbook-bet-pick {
    padding: var(--indent-2) var(--indent-4);
    border-bottom: 1px solid var(--bg-tertiary)
}

.sportsbook-bet-pick:last-child {
    border-bottom: none
}

.sportsbook-bet-pick__event {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-2);
    color: var(--tx-main);
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 24px
}

.sportsbook-bet-pick__market {
    display: flex;
    flex-direction: column
}

.sportsbook-bet-pick__market-name {
    color: var(--tx-secondary);
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 24px
}

.sportsbook-bet-pick__selection-info-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-2)
}

.sportsbook-bet-pick__selection-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    color: var(--tx-main);
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 24px
}

.sportsbook-bet {
    width: auto;
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary);
    padding: var(--indent-1);
    display: inline-block;
    flex-direction: column;
    gap: var(--indent-1);
    height: -moz-fit-content;
    height: fit-content
}

@media (max-width: 1024px) {
    .sportsbook-bet {
        width: 100%;
        min-width: unset
    }
}

@media (--lg-down) {
    .sportsbook-bet {
        width: 100%;
        min-width: unset
    }
}

.sportsbook-bet__header {
    width: 100%;
    border-radius: var(--rounded-sm);
    padding: var(--indent-2) var(--indent-4);
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-4);
    justify-content: space-between;
    color: var(--tx-secondary);
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 24px
}

.sportsbook-bet__header-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-4)
}

.sportsbook-bet__picks {
    width: 100%;
    display: flex;
    flex-direction: column
}

.sportsbook-bet__totals {
    width: 100%;
    border-radius: var(--rounded-sm);
    padding: var(--indent-2) var(--indent-4);
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: column
}

.sportsbook-bet__total-row {
    padding: var(--indent-1) 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--bg-sportsbook-bet-totals-divider)
}

.sportsbook-bet__total-row:last-child {
    border-bottom: none
}

.sportsbook-bet__total-row-label {
    color: var(--tx-main);
    font-size: var(--tx-base);
    font-weight: 600;
    line-height: 21px;
    text-transform: uppercase;
    margin-right: auto
}

.sportsbook-bet__total-row-label--accent {
    color: var(--tx-accent);
    font-weight: 400
}

.sportsbook-bet__total-row-value {
    color: var(--tx-main);
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 21px
}

.sportsbook-bet__total-row-value--accent {
    font-weight: 600
}

.sportsbook-bet__total-row-free-bet-badge {
    color: var(--tx-active);
    font-size: var(--tx-sm);
    font-weight: 400;
    background-color: var(--success);
    border-radius: var(--rounded-lg);
    margin-right: var(--indent-2);
    padding: 2px 6px
}

.link-tab {
    padding-top: .75rem;
    padding-bottom: .75rem;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: .75rem;
    background-color: var(--bg-secondary);
    color: var(--tx-secondary);
    transition: all .3s;
    text-decoration: none
}

.link-tab:hover {
    color: var(--tx-focused)
}

.link-tab--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active)
}

.link-tab__icon {
    flex-shrink: 0;
    fill: currentColor;
    width: var(--indent-4);
    height: var(--indent-4)
}

.expandable__button {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.expandable__expand-icon {
    margin-left: auto;
    transition: transform var(--duration)
}

.expandable__expand-icon--expanded {
    transform: rotate(180deg)
}

.expandable__children-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: all var(--duration)
}

.expandable__children-wrapper--expanded {
    grid-template-rows: 1fr
}

.expandable__children {
    overflow: hidden
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2px;
    background-color: var(--bg-main);
    border-radius: 12px;
    cursor: pointer
}

.menu-item__icon-container {
    font-size: 0
}

.menu-item__icon-container svg {
    height: 16px;
    width: 16px;
    flex: 0 0 auto;
    fill: currentColor
}

.menu-item__label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
    text-overflow: ellipsis;
    overflow: hidden
}

.menu-item .expandable {
    width: 100%
}

.menu-item .expandable__button,
.menu-item__content {
    padding-right: 16px;
    padding-left: 10px;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    background-color: var(--bg-main);
    border-radius: 12px;
    color: var(--tx-secondary)
}

.menu-item .expandable__button:hover,
.menu-item__content:hover {
    color: #fff
}

.menu-item__children {
    background-color: var(--bg-secondary);
    border-radius: var(--rounded-sm);
    padding: 0 var(--indent-1)
}

.menu-item--hidden {
    display: none
}

.menu-item__indicator {
    margin-left: auto;
    background-color: var(--bg-secondary);
    font-size: 14px;
    padding: var(--indent-1) var(--indent-2);
    color: var(--success);
    border-radius: var(--rounded)
}

.menu-subitem {
    box-sizing: border-box;
    padding: 0 var(--indent-2);
    height: 40px;
    width: 100%;
    align-self: stretch;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    border-bottom: 1px solid var(--bg-main);
    cursor: pointer;
    color: var(--tx-secondary)
}

.menu-subitem:last-child {
    border: none
}

.menu-subitem:hover {
    color: var(--tx-focused)
}

.menu-subitem__label {
    font-size: var(--text-min-font-size);
    font-style: var(--font-style);
    font-weight: var(--font-weight);
    letter-spacing: var(--letter-spacing);
    line-height: var(--ine-height);
    white-space: nowrap;
    width: -moz-fit-content;
    width: fit-content;
    text-overflow: ellipsis;
    overflow: hidden
}

.menu-subitem__icon-container {
    font-size: 0
}

.menu-subitem__icon-container svg {
    height: 16px;
    width: 16px;
    flex: 0 0 auto;
    fill: currentColor
}

.logo {
    height: 64px
}

.gap-bottom {
    margin-bottom: var(--indent-4)
}

.hidden-menu-item {
    display: none
}

.sidebar {
    height: 100%;
    width: 260px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--bg-secondary)
}

@media (max-width: 1024px) {
    .sidebar {
        width: 100%;
        flex-shrink: unset
    }
}

@media (--lg-down) {
    .sidebar {
        width: 100%;
        flex-shrink: unset
    }
}

.sidebar__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 var(--indent-6)
}

@media (max-width: 1024px) {
    .sidebar__header {
        display: none
    }
}

@media (--lg-down) {
    .sidebar__header {
        display: none
    }
}

.sidebar__logo-container {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--bg-separator)
}

.sidebar__nav {
    margin-top: var(--indent-6);
    margin-bottom: var(--indent-8);
    width: 100%;
    padding: 2px;
    display: flex;
    gap: 2px;
    white-space: nowrap;
    font-weight: 600;
    line-height: 1.5rem;
    border-radius: .75rem;
    background-color: var(--bg-tertiary)
}

.sidebar__search {
    display: none
}

@media (max-width: 1024px) {
    .sidebar__search {
        margin: var(--indent-4);
        display: block;
        background-color: var(--bg-main);
        border-radius: var(--rounded)
    }
}

@media (--lg-down) {
    .sidebar__search {
        margin: var(--indent-4);
        display: block;
        background-color: var(--bg-main);
        border-radius: var(--rounded)
    }
}

.sidebar__content-wrapper {
    padding: 0 var(--indent-6) var(--indent-6);
    display: flex;
    flex-direction: column;
    overflow-y: auto
}

@media (max-width: 1024px) {
    .sidebar__content-wrapper {
        padding: 0 var(--indent-4) var(--indent-6)
    }
}

@media (--lg-down) {
    .sidebar__content-wrapper {
        padding: 0 var(--indent-4) var(--indent-6)
    }
}

.sidebar__content {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.sidebar__divider {
    width: 100%;
    margin-top: .875rem;
    margin-bottom: var(--indent-6);
    height: 1px;
    flex-shrink: 0;
    background-color: var(--bg-tertiary)
}

.sidebar__label {
    font-size: var(--tx-base);
    line-height: 24px;
    color: var(--tx-secondary);
    padding-top: 26px;
    padding-bottom: 10px
}

.mobile-menu {
    display: none
}

@media (max-width: 1024px) {
    .mobile-menu {
        width: 100vw;
        height: var(--mobile-bottom-menu-height);
        position: fixed;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        background-color: var(--bg-tertiary);
        gap: calc(var(--indent-1) / 2)
    }
}

@media (--lg-down) {
    .mobile-menu {
        width: 100vw;
        height: var(--mobile-bottom-menu-height);
        position: fixed;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        background-color: var(--bg-tertiary);
        gap: calc(var(--indent-1) / 2)
    }
}

.mobile-menu__item {
    height: 100%;
    width: 100%;
    display: grid;
    grid-auto-rows: 1fr 1fr;
    justify-items: center;
    align-items: center;
    margin: auto;
    cursor: pointer;
    color: var(--tx-secondary);
    text-decoration: none;
    overflow: hidden
}

.mobile-menu__item:hover {
    color: var(--tx-focused)
}

.mobile-menu__item-icon {
    align-self: flex-end;
    fill: currentColor;
    transition: var(--duration)
}

.mobile-menu__item-icon-container {
    display: flex;
    align-items: flex-end;
    height: 100%;
    position: relative
}

.mobile-menu__item-icon-container .badge {
    position: absolute;
    top: 2px;
    right: -5px
}

.mobile-menu__item-label {
    align-self: center;
    text-align: center;
    font-size: var(--tx-sm);
    line-height: 10px;
    color: currentColor;
    transition: var(--duration);
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    min-width: 0
}

.mobile-menu__sidebar,
.mobile-menu__betslip {
    position: fixed;
    width: 100%;
    top: 100%;
    bottom: var(--mobile-bottom-menu-height);
    background-color: var(--bg-secondary);
    transition: all .3s ease;
    will-change: auto
}

@media (min-width: 1025px) {

    .mobile-menu__sidebar,
    .mobile-menu__betslip {
        display: none
    }
}

@media (--lg-up) {

    .mobile-menu__sidebar,
    .mobile-menu__betslip {
        display: none
    }
}

.mobile-menu__sidebar--open {
    top: var(--mobile-header-height, 0)
}

.mobile-menu__betslip--open {
    top: 0
}

.account {
    padding: 2px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

@media (max-width: 1024px) {
    .account__notification-icon-button {
        display: none
    }
}

@media (--lg-down) {
    .account__notification-icon-button {
        display: none
    }
}

@media (max-width: 1024px) {
    .account .locale-switcher {
        display: none
    }
}

@media (--lg-down) {
    .account .locale-switcher {
        display: none
    }
}

.balances {
    outline: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: var(--rounded);
    background-color: var(--bg-secondary);
    padding: 2px
}

@media (max-width: 1024px) {
    .balances {
        background-color: var(--bg-main)
    }
}

@media (--lg-down) {
    .balances {
        background-color: var(--bg-main)
    }
}

.balances__controls {
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 8px
}

@media (max-width: 1280px) {
    .balances__wallet-button {
        background: var(--gradient-horizontal)
    }

    .balances__wallet-button svg {
        fill: var(--bg-main)
    }
}

@media (--xl-down) {
    .balances__wallet-button {
        background: var(--gradient-horizontal)
    }

    .balances__wallet-button svg {
        fill: var(--bg-main)
    }
}

.balances__deposit-button {
    display: flex;
    width: 134px
}

@media (max-width: 1280px) {
    .balances__deposit-button {
        display: none
    }
}

@media (--xl-down) {
    .balances__deposit-button {
        display: none
    }
}

.balances-select {
    min-width: 150px;
    height: 100%
}

.header-wrapper {
    order: -1
}

@media (max-width: 1024px) {
    .header-wrapper {
        background-color: var(--bg-secondary);
        position: fixed;
        width: 100%
    }
}

@media (--lg-down) {
    .header-wrapper {
        background-color: var(--bg-secondary);
        position: fixed;
        width: 100%
    }
}

.header {
    height: var(--header-height);
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--bg-separator)
}

@media (max-width: 1024px) {
    .header {
        height: var(--mobile-header-height)
    }
}

@media (--lg-down) {
    .header {
        height: var(--mobile-header-height)
    }
}

.header__content {
    height: 48px;
    width: 100%;
    max-width: var(--content-max-width);
    padding: 0 var(--indent-6);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--indent-2)
}

@media (max-width: 640px) {
    .header__content {
        padding: 0 var(--indent-3)
    }
}

@media (--sm-down) {
    .header__content {
        padding: 0 var(--indent-3)
    }
}

.header__logo {
    height: 48px;
    display: none
}

@media (max-width: 1024px) {
    .header__logo {
        display: flex
    }
}

@media (--lg-down) {
    .header__logo {
        display: flex
    }
}

@media (max-width: 1024px) {
    .header__logo-image-desktop {
        display: none
    }
}

@media (--lg-down) {
    .header__logo-image-desktop {
        display: none
    }
}

@media (min-width: 1025px) {
    .header__logo-image-mobile {
        display: none
    }
}

@media (--lg-up) {
    .header__logo-image-mobile {
        display: none
    }
}

.header__search {
    height: 100%;
    max-width: 150px;
    background-color: var(--bg-secondary);
    border-radius: var(--rounded)
}

@media (max-width: 1536px) {
    .header__search {
        max-width: unset;
        width: -moz-fit-content;
        width: fit-content;
        padding: var(--indent-3)
    }

    .header__search>span {
        display: none
    }
}

@media (--2xl-down) {
    .header__search {
        max-width: unset;
        width: -moz-fit-content;
        width: fit-content;
        padding: var(--indent-3)
    }

    .header__search>span {
        display: none
    }
}

@media (max-width: 1024px) {
    .header__search {
        display: none
    }
}

@media (--lg-down) {
    .header__search {
        display: none
    }
}

/* .header__unauthorized-buttons {
    gap: var(--indent-4);
    display: flex;
    align-items: center;
    overflow: hidden;
} */

/* ----- */
/* .header__unauthorized-buttons { 
  min-width: 0;               
}
.header__unauthorized-buttons button {
  flex: 0 1 auto;              
  min-width: 0;                 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;      
}

.locale-switcher { 
  flex-shrink: 0; 
}

@media (max-width: 840px) {
  .header__unauthorized-buttons { gap: 8px !important; }
  .header__unauthorized-buttons button { font-size: 14px; padding: 8px 10px; }
}
@media (max-width: 720px) {
  .header__unauthorized-buttons button { font-size: 13px; padding: 6px 8px; }
}

@media (max-width: 640px) {
  .header__sign-in  { max-width: 120px; }
  .header__sign-up  { max-width: 150px; }
}

@media (max-width: 420px) {
  .header__sign-in,
  .header__sign-up { 
    padding: 8px !important; 
    font-size: 0 !important;
  }
  .header__sign-in::before  { content: "🔑"; font-size: 18px; }
  .header__sign-up::before  { content: "📝"; font-size: 18px; }
} */
/* ----- */


.header__unauthorized-buttons { 
  gap: var(--indent-4);
  display: flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}

.header__unauthorized-buttons button {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(12px, 2vw, 20px); /* адаптивный размер текста */
  padding: 8px 12px; /* универсальный отступ */
}

.locale-switcher { 
  flex-shrink: 0; 
}








.header__sign-in {
    color: var(--tx-secondary);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.header__sign-up {
    text-transform: capitalize;
    border-radius: var(--rounded-sm);
    background: var(--bg-accent);
    padding: var(--indent-3) var(--indent-6);
    font-weight: 600;
    color: var(--tx-active);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.main-layout {
    display: flex;
    overflow: hidden;
    background-color: var(--bg-layout);
    height: 100dvh;
    position: relative
}

@media (max-width: 1024px) {
    .main-layout {
        height: auto
    }
}

@media (--lg-down) {
    .main-layout {
        height: auto
    }
}

.main-layout__sidebar {
    display: block;
    background-color: var(--bg-secondary)
}

@media (max-width: 1024px) {
    .main-layout__sidebar {
        display: none
    }
}

@media (--lg-down) {
    .main-layout__sidebar {
        display: none
    }
}

.main-layout__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0
}

.main-layout__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto
}

@media (max-width: 1024px) {
    .main-layout__content-wrapper {
        padding: var(--mobile-header-height) 0 var(--mobile-bottom-menu-height);
        overflow-y: initial
    }
}

@media (--lg-down) {
    .main-layout__content-wrapper {
        padding: var(--mobile-header-height) 0 var(--mobile-bottom-menu-height);
        overflow-y: initial
    }
}

.main-layout__main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1
}

.main-layout__betslip-container {
    height: 100vh;
    width: 0;
    transition: width .3s ease;
    overflow: hidden;
    flex-shrink: 0
}

.main-layout__betslip-container--open {
    width: var(--betslip-desktop-width)
}

@media (max-width: 1024px) {
    .main-layout__betslip-container {
        display: none
    }
}

@media (--lg-down) {
    .main-layout__betslip-container {
        display: none
    }
}

@media (max-width: 1024px) {
    #chat-widget-container {
        overflow: initial !important;
        bottom: var(--mobile-bottom-menu-height) !important
    }

    #chat-widget-minimized {
        position: relative !important
    }
}

@media (--lg-down) {
    #chat-widget-container {
        overflow: initial !important;
        bottom: var(--mobile-bottom-menu-height) !important
    }

    #chat-widget-minimized {
        position: relative !important
    }
}

.page-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 640px
}

.maintenance-screen {
    padding: var(--indent-8);
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-main);
    background: url(/images/maintenance-cards-background.png) no-repeat bottom 10px right 10px/500px, linear-gradient(145deg, #2a0939, #13574e)
}

@media (max-width: 768px) {
    .maintenance-screen {
        background: url(/images/maintenance-cards-background.png) no-repeat bottom 0px right 0px/300px, linear-gradient(145deg, #2a0939, #13574e)
    }
}

@media (--md-down) {
    .maintenance-screen {
        background: url(/images/maintenance-cards-background.png) no-repeat bottom 0px right 0px/300px, linear-gradient(145deg, #2a0939, #13574e)
    }
}

.maintenance-screen__title {
    padding-bottom: 14rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--tx-main);
    text-align: center;
    white-space: pre-line
}

@media (max-width: 768px) {
    .maintenance-screen__title {
        font-size: 2.5rem
    }
}

@media (--md-down) {
    .maintenance-screen__title {
        font-size: 2.5rem
    }
}

.modal__overlay {
    background-color: var(--bg-modal-overlay);
    opacity: .9;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.modal__content {
    max-height: 100vh;
    position: fixed;
    overflow: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-main);
    border-radius: var(--rounded-sm);
    box-shadow: 0 0 var(--indent-6) 0 var(--modal-shadow)
}

.modal__close-button {
    background: none;
    position: absolute;
    right: var(--indent-6);
    top: var(--indent-5)
}

.error-message {
    font-weight: 600;
    font-size: var(--indent-3);
    color: var(--error)
}

.input-label__item,
.input-label__item--required {
    font-weight: 600;
    font-size: var(--indent-3);
    color: var(--tx-main)
}

.input-label__item--required,
.input-label__item--required--required {
    color: var(--input-required-color)
}

.input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    height: -moz-fit-content;
    height: fit-content
}

.input__item {
    width: 100%;
    font-size: var(--indent-4);
    color: var(--tx-main);
    background: var(--bg-secondary);
    border-radius: var(--rounded);
    padding: var(--indent-3) var(--indent-4);
    border: 1px solid transparent;
    line-height: 24px
}

.input__item:disabled {
    opacity: .6
}

.input__item--error {
    border: 1px solid var(--error)
}

.input__item::-moz-placeholder {
    color: var(--tx-secondary)
}

.input__item::placeholder {
    color: var(--tx-secondary)
}

.password-input {
    font-size: var(--indent-4);
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.password-input__container {
    position: relative
}

.password-input__item {
    color: var(--tx-main);
    flex-grow: 1;
    width: 100%;
    padding: var(--indent-3) var(--indent-4);
    border-radius: var(--rounded);
    background: var(--bg-secondary);
    box-sizing: border-box;
    border: 1px solid transparent
}

.password-input__item--error {
    border: 1px solid var(--error)
}

.password-input__item::-moz-placeholder {
    color: var(--tx-secondary)
}

.password-input__item::placeholder {
    color: var(--tx-secondary)
}

.password-input__visibility-toggle-button {
    position: absolute;
    font-size: 0;
    right: var(--indent-4);
    top: 50%;
    transform: translateY(-50%)
}

.submit-button {
    background: var(--bg-accent);
    color: var(--tx-active);
    font-weight: 600;
    border-radius: var(--rounded);
    height: var(--indent-13);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize
}

.submit-button:disabled {
    opacity: .6;
    cursor: initial
}

.submit-button .submit-button__loader {
    width: 25px;
    height: 25px;
    border-width: 4px
}

.sign-in-modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.sign-in-modal-form__forgot-password {
    background: none;
    color: var(--tx-accent);
    font-weight: 600;
    align-self: flex-end
}

.sign-in-modal-form__dont-have-account {
    color: var(--tx-secondary);
    align-self: center;
    text-align: center
}

.sign-in-modal-form__dont-have-account--yellow {
    color: var(--tx-accent);
    font-weight: 600;
    text-transform: capitalize
}

.sign-in-modal-form__input-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.checkbox {
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkbox__root {
    min-width: 20px;
    min-height: 20px;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--rounded-xs);
    background: var(--bg-secondary)
}

.checkbox--error .checkbox__root {
    border: 1px solid var(--error)
}

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

.checkbox--error .checkbox__text * {
    color: var(--error)
}

.choose-promo-code {
    padding: 40px;
    min-width: 500px;
    min-height: 300px;
    border-radius: var(--rounded);
    overflow: hidden;
    color: var(--tx-main);
    display: flex;
    flex-direction: column
}

@media (max-width: 640px) {
    .choose-promo-code {
        min-width: 90vw;
        height: unset;
        padding: 20px
    }
}

@media (--sm-down) {
    .choose-promo-code {
        min-width: 90vw;
        height: unset;
        padding: 20px
    }
}

.choose-promo-code__title {
    font-size: var(--tx-lg);
    font-weight: 600;
    text-align: center;
    color: var(--tx-main)
}

.choose-promo-code__loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1
}

.choose-promo-code__button {
    height: auto;
    width: auto;
    padding: var(--indent-3) var(--indent-6);
    font-weight: 600;
    color: var(--tx-active)
}

.choose-promo-code__options {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    width: 100%
}

.choose-promo-code__option {
    padding: 10px;
    flex-shrink: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    border-radius: var(--rounded-sm);
    border: 1px solid transparent;
    transition: all .2s
}

.choose-promo-code__option--selected {
    border: 1px solid var(--bg-accent);
    background-color: #353223
}

.choose-promo-code__option-title {
    color: var(--tx-main);
    font-size: var(--tx-base);
    font-weight: 600
}

.choose-promo-code__option-description {
    margin-top: var(--indent-2);
    font-size: var(--tx-sm);
    color: var(--tx-secondary)
}

.sign-up-loader-container {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center
}

.sign-up-modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.sign-up-modal-form__already-registered {
    color: var(--tx-secondary);
    align-self: center;
    text-align: center
}

.sign-up-modal-form__already-registered--yellow {
    color: var(--tx-accent);
    font-weight: 600;
    text-transform: capitalize
}

.sign-up-modal-form__row {
    display: flex;
    gap: var(--indent-4);
    flex-wrap: wrap
}

.sign-up-modal-form__row>* {
    width: 0;
    flex-grow: 1
}

@media (max-width: 640px) {
    .sign-up-modal-form__row>* {
        width: 100%
    }
}

@media (--sm-down) {
    .sign-up-modal-form__row>* {
        width: 100%
    }
}

.sign-up-modal-form .sign-up-modal-form__select-button,
.sign-up-modal-form .sign-up-modal-form__combobox-button {
    font-size: var(--indent-4);
    color: var(--tx-main);
    background: var(--bg-secondary);
    border-radius: var(--rounded);
    padding: var(--indent-3) var(--indent-4);
    border: 1px solid transparent;
    height: 50px
}

.sign-up-modal-form .sign-up-modal-form__select-button--error,
.sign-up-modal-form .sign-up-modal-form__combobox-button--error {
    border: 1px solid var(--error)
}

.sign-up-modal-form__select-item {
    text-transform: capitalize
}

.sign-up-modal-form__field-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.sign-up-modal-form-rules {
    color: var(--tx-secondary)
}

.sign-up-modal-form-rules__link {
    color: var(--tx-accent);
    text-decoration: none;
    font-weight: 600
}

body .second-step-modal {
    padding-top: var(--indent-6)
}

.auth-modal-title {
    padding: 0 var(--indent-6);
    font-size: var(--tx-lg);
    color: var(--tx-main)
}

.auth-modal {
    padding-top: var(--indent-14);
    border-radius: var(--rounded);
    background-color: var(--bg-layout)
}

@media (max-width: 640px) {
    .auth-modal {
        width: 100vw;
        border-radius: 0
    }
}

@media (--sm-down) {
    .auth-modal {
        width: 100vw;
        border-radius: 0
    }
}

.sign-up-additional-modal {
    border-radius: var(--rounded);
    background-color: var(--bg-layout)
}

@media (max-width: 640px) {
    .sign-up-additional-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

@media (--sm-down) {
    .sign-up-additional-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

.auth-modal-tabs__list {
    display: flex
}

.auth-modal-tabs__tab {
    display: block;
    width: 250px;
    background: var(--bg-secondary);
    color: var(--tx-secondary);
    border-bottom-width: 2px;
    font-weight: 900;
    padding: var(--indent-4) 0
}

.auth-modal-tabs__tab[data-state=active] {
    color: var(--tx-main);
    border-bottom: 2px solid var(--bg-accent)
}

@media (max-width: 640px) {
    .auth-modal-tabs__tab {
        width: auto;
        flex-grow: 1
    }
}

@media (--sm-down) {
    .auth-modal-tabs__tab {
        width: auto;
        flex-grow: 1
    }
}

.auth-modal-content {
    padding: var(--indent-6);
    width: 500px
}

@media (max-width: 640px) {
    .auth-modal-content {
        width: auto
    }
}

@media (--sm-down) {
    .auth-modal-content {
        width: auto
    }
}

.auth-modal-socials {
    background: var(--bg-secondary);
    border-radius: var(--rounded-sm) var(--rounded-sm) 0 0;
    padding: var(--indent-6);
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.auth-modal-socials-or {
    position: relative;
    display: flex;
    justify-content: center
}

.auth-modal-socials-or__line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: var(--socials-or-color)
}

.auth-modal-socials-or__text {
    background: var(--bg-secondary);
    text-align: center;
    padding: 0 var(--indent-3);
    position: relative;
    color: var(--socials-or-color)
}

.auth-modal-socials-buttons {
    display: flex;
    gap: var(--indent-2)
}

.auth-modal-socials-buttons__item {
    background: var(--bg-tertiary);
    flex-grow: 1;
    border-radius: var(--rounded-sm);
    padding: var(--indent-4)
}

.combobox-button {
    all: unset;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: var(--indent-2);
    color: var(--tx-main);
    line-height: 24px;
    padding: 0 var(--indent-4);
    cursor: pointer
}

.combobox-button:disabled {
    cursor: initial;
    opacity: .6
}

.combobox-button__placeholder {
    color: var(--tx-secondary)
}

.combobox-button>span:first-child {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.combobox-button__icon {
    display: flex;
    align-items: center;
    transition: var(--duration)
}

.combobox-button--expanded .combobox-button__icon {
    transform: rotate(180deg)
}

.combobox-content {
    width: var(--radix-popover-trigger-width);
    max-height: var(--radix-popover-content-available-height);
    padding: var(--indent-1);
    background-color: var(--bg-tertiary);
    color: var(--tx-main);
    border-radius: var(--rounded);
    overflow: hidden;
    z-index: 1
}

.combobox-content__viewport {
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 300px;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.combobox-content__viewport::-webkit-scrollbar {
    display: none
}

.combobox-content__item {
    padding: var(--indent-2) var(--indent-3);
    width: 100%;
    cursor: pointer;
    transition: .1s;
    line-height: 24px;
    border-radius: var(--rounded-sm);
    color: var(--tx-secondary);
    border-bottom: 1px solid var(--bg-main);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-align: left
}

.combobox-content__item:last-child {
    border-bottom: 0;
    margin-bottom: 0
}

.combobox-content__item:hover {
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm)
}

.combobox-content__item:focus-visible {
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm)
}

.combobox-content__item>span:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.combobox-content__item:hover {
    background-color: var(--bg-main)
}

.combobox-content__item:focus-visible {
    outline: 1px solid var(--bg-accent)
}

.combobox-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    border-radius: var(--rounded);
    padding: var(--indent-3) var(--indent-4);
    background: var(--bg-main);
    margin-bottom: var(--indent-1)
}

.combobox-search__icon {
    position: absolute;
    left: var(--indent-4)
}

.combobox-search__input {
    display: block;
    width: 100%;
    background: inherit;
    color: var(--tx-main);
    padding-left: var(--indent-8)
}

.combobox-search__input::-moz-placeholder {
    color: var(--tx-secondary)
}

.combobox-search__input::placeholder {
    color: var(--tx-secondary)
}

.cancel-withdrawal-modal {
    padding: var(--indent-6);
    width: 500px;
    border-radius: var(--rounded);
    background-color: var(--bg-layout)
}

@media (max-width: 640px) {
    .cancel-withdrawal-modal {
        width: calc(100vw - 20px)
    }
}

@media (--sm-down) {
    .cancel-withdrawal-modal {
        width: calc(100vw - 20px)
    }
}

.cancel-withdrawal {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.cancel-withdrawal__title {
    font-weight: 600;
    color: var(--tx-main);
    padding-right: var(--indent-6)
}

.cancel-withdrawal__buttons {
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    height: 52px
}

.cancel-withdrawal__primary-button {
    text-transform: uppercase
}

.cancel-withdrawal__button {
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    border-radius: var(--rounded);
    color: var(--tx-main);
    text-transform: uppercase
}

.password-recovery-first {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.password-recovery-first__title {
    font-weight: 600;
    color: var(--tx-main)
}

.password-recovery-first__buttons {
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.password-recovery-first button {
    width: 100%;
    height: 52px
}

.password-recovery-first__sign-in {
    background: none;
    color: var(--tx-accent);
    font-weight: 600;
    align-self: flex-end
}

.password-recovery-first__input-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.status-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    flex-shrink: 0
}

.status-circle--big {
    width: 248px;
    height: 248px
}

.status-circle--medium {
    width: 176px;
    height: 176px
}

.status-circle--small {
    width: 104px;
    height: 104px
}

.status-circle--success {
    background: linear-gradient(180deg, #28ae661a, #7ff3b51a)
}

.status-circle--error {
    background: linear-gradient(180deg, #ff00001a, #ff54541a)
}

.status-circle--warning {
    background: linear-gradient(180deg, #ffb7001a, #ffd9001a)
}

.status {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-4);
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .status {
        width: 100%;
        height: 100%
    }
}

@media (--lg-down) {
    .status {
        width: 100%;
        height: 100%
    }
}

.status__info {
    padding-top: 40px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-4)
}

.status__title {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    color: var(--tx-main)
}

.status__subtitle {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    color: var(--tx-secondary);
    white-space: break-spaces
}

.status__description {
    padding-top: var(--indent-4);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    color: #504e4b;
    white-space: break-spaces
}

.password-recovery-modal {
    padding: var(--indent-6);
    width: 500px;
    border-radius: var(--rounded);
    background-color: var(--bg-layout)
}

@media (max-width: 640px) {
    .password-recovery-modal {
        width: calc(100vw - 20px)
    }
}

@media (--sm-down) {
    .password-recovery-modal {
        width: calc(100vw - 20px)
    }
}

.password-recovery-second {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.password-recovery-second__title {
    font-weight: 600;
    color: var(--tx-main)
}

.password-recovery-second__input-container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.payment-status__details-table {
    margin-top: auto;
    padding: var(--indent-6);
    width: 100%;
    background-color: #151410;
    box-sizing: border-box;
    border-radius: var(--indent-2);
    border-spacing: 0;
    overflow: hidden
}

.payment-status__details-table td {
    font-size: 16px;
    font-weight: 600;
    color: var(--tx-secondary);
    padding: var(--indent-2) 0
}

.payment-status__details-table tr:not(:last-child) td {
    border-bottom: 1px solid var(--bg-main)
}

.payment-status__details-table .right {
    text-align: right
}

.payment-status-modal {
    padding: 100px 40px 40px;
    width: 580px;
    height: 840px;
    border-radius: var(--rounded);
    overflow: hidden
}

@media (max-width: 1024px) {
    .payment-status-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

@media (--lg-down) {
    .payment-status-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

.payment-status-modal__loader-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.payment-alert {
    padding: var(--indent-4) var(--indent-6);
    background-color: var(--bg-secondary);
    border-left: 2px solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-4)
}

.payment-alert--success {
    border-color: var(--success);
    color: var(--success)
}

.payment-alert--error {
    border-color: var(--error);
    color: var(--error)
}

.payment-alert--warning {
    border-color: var(--warning);
    color: var(--warning)
}

.payment-alert--info {
    border-color: var(--info);
    color: var(--info)
}

.payment-alert svg {
    flex-shrink: 0
}

.payment-alert__text,
.payment-alert__text .description {
    display: flex;
    flex-direction: column
}

.payment-alert__text * {
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    white-space: pre-line
}

.gateway-form-field--hidden {
    display: none
}

.gateway-form-field input,
.gateway-form-field select {
    width: 100%;
    height: 48px;
    padding: 0 var(--indent-4);
    margin-top: var(--indent-1);
    border: 1px solid var(--bg-separator);
    border-radius: var(--rounded);
    background-color: var(--bg-secondary);
    color: var(--tx-main);
    font-size: 1rem;
    line-height: 24px;
    font-family: Open Sans, sans-serif
}

.gateway-form-field input::-moz-placeholder,
.gateway-form-field select::-moz-placeholder {
    color: var(--tx-secondary)
}

.gateway-form-field input::placeholder,
.gateway-form-field select::placeholder {
    color: var(--tx-secondary)
}

.gateway-form-field input.error,
.gateway-form-field select.error {
    border-color: var(--error)
}

.gateway-form-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.gateway-form-field label {
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    color: var(--tx-main);
    font-family: Open Sans, sans-serif
}

.money-form-field {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.money-form-field__options {
    margin-top: var(--indent-2);
    display: grid;
    gap: var(--indent-1);
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr)
}

.money-form-field__option {
    height: 48px;
    background-color: var(--bg-tertiary);
    border-radius: var(--rounded-sm);
    color: var(--tx-secondary)
}

.money-form-field__input--error {
    border-color: var(--error)
}

.money-form-field__error {
    color: var(--error);
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: left
}

.grid-item {
    padding: 10px;
    flex-shrink: 0;
    width: 100%;
    height: 64px;
    background-color: var(--bg-main);
    border-radius: var(--rounded-sm);
    border: 1px solid transparent;
    transition: all .2s
}

.grid-item img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.grid-item--selected {
    border: 1px solid var(--bg-accent);
    background-color: #353223
}

.hpf,
.hpf label {
    color: #fff
}

.hpf iframe {
    width: 100%
}

.hpf form {
    padding: var(--indent-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.hpf .praxis-field {
    margin-top: var(--indent-1);
    height: 48px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--bg-tertiary)
}

.hpf .praxis-field--error {
    border-color: var(--error)
}

.hpf .praxis-field-label {
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    color: var(--tx-main);
    font-family: Open Sans, sans-serif
}

.hpf .praxis-field-error {
    color: var(--error);
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: left
}

.hpf button[type=submit]:disabled {
    opacity: .5
}

.credit-card-form-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: var(--indent-2)
}

@media (max-width: 1024px) {
    .credit-card-form-header {
        flex-direction: column-reverse;
        gap: var(--indent-4)
    }
}

@media (--lg-down) {
    .credit-card-form-header {
        flex-direction: column-reverse;
        gap: var(--indent-4)
    }
}

.credit-card {
    position: relative;
    padding: var(--indent-6) var(--indent-4);
    min-width: 290px;
    max-width: 340px;
    width: 100%;
    height: 190px;
    background-color: var(--bg-tertiary);
    border-radius: var(--rounded-lg);
    display: grid;
    gap: var(--indent-4);
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr
}

.credit-card__field-wrapper:first-child {
    grid-column: 1 / span 3
}

.credit-card__field-wrapper:nth-child(2) {
    grid-column: 1 / span 2
}

.credit-card__field {
    position: relative;
    height: 32px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--bg-tertiary)
}

.credit-card__field--error {
    border-color: var(--error)
}

.credit-card__field-label {
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 15px
}

.credit-card__field-error {
    color: var(--error);
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: left
}

.credit-card__cards-list {
    width: calc(100% - var(--indent-8));
    padding: var(--indent-2) 0;
    position: absolute;
    top: 75px;
    left: var(--indent-4);
    border-radius: 4px;
    box-shadow: 0 2px 3px #0000007f;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    max-height: 160px;
    overflow: auto;
    z-index: 1;
    background-color: #262523
}

.credit-card__cards-list-item {
    padding: var(--indent-2) var(--indent-4);
    width: 100%;
    color: var(--tx-secondary);
    font-size: 14px;
    text-align: left;
    background-color: transparent
}

.credit-card__cards-list-item:hover {
    background-color: var(--bg-tertiary)
}

.credit-card__cards-list-trigger {
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center
}

.credit-card__cards-list-trigger-icon {
    fill: var(--tx-secondary);
    transition: transform var(--duration)
}

.credit-card__cards-list-trigger-icon--expanded {
    transform: rotate(180deg)
}

.payment-limits {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

@media (max-width: 1024px) {
    .payment-limits {
        width: 290px;
        flex-direction: row
    }
}

@media (--lg-down) {
    .payment-limits {
        width: 290px;
        flex-direction: row
    }
}

@media (max-width: 1024px) {
    .payment-limits__group {
        flex-basis: 50%
    }
}

@media (--lg-down) {
    .payment-limits__group {
        flex-basis: 50%
    }
}

.payment-limits__label {
    color: #504e4b;
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px
}

.payment-limits__value {
    color: var(--tx-secondary);
    font-family: Fira Sans, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px
}

.form-cover {
    padding: var(--indent-4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-main)
}

.required-marker {
    color: var(--error)
}

.list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-6)
}

.list-item__logo-container {
    padding: 10px;
    flex-shrink: 0;
    width: 130px;
    height: 64px;
    background-color: var(--bg-main);
    border-radius: var(--rounded-sm);
    border: 1px solid transparent;
    transition: all .2s
}

.list-item__logo-container img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.list-item--selected .list-item__logo-container {
    border: 1px solid var(--bg-accent);
    background-color: #353223
}

.list-item__description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--indent-1)
}

.list-item__title {
    font-size: 1rem;
    color: var(--tx-main);
    font-weight: 600;
    text-align: left
}

.list-item__constraints {
    text-align: left;
    font-size: 14px;
    color: var(--tx-secondary)
}

.mode-switcher {
    width: 96px;
    height: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--bg-separator);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary)
}

.mode-switcher__button {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--duration)
}

.mode-switcher__button--active {
    background-color: var(--bg-tertiary)
}

.react-international-phone-country-selector {
    position: relative
}

.react-international-phone-country-selector-button {
    display: flex;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, gainsboro));
    margin: 0;
    -moz-appearance: button;
    appearance: button;
    -webkit-appearance: button;
    background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, white));
    cursor: pointer;
    text-transform: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.react-international-phone-country-selector-button:hover {
    background-color: var(--react-international-phone-country-selector-background-color-hover, whitesmoke)
}

.react-international-phone-country-selector-button--hide-dropdown {
    cursor: auto
}

.react-international-phone-country-selector-button--hide-dropdown:hover {
    background-color: transparent
}

.react-international-phone-country-selector-button__button-content {
    display: flex;
    align-items: center;
    justify-content: center
}

.react-international-phone-country-selector-button__flag-emoji {
    margin: 0 4px
}

.react-international-phone-country-selector-button__flag-emoji--disabled {
    opacity: .75
}

.react-international-phone-country-selector-button__dropdown-arrow {
    border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
    border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    margin-right: 4px;
    transition: all .1s ease-out
}

.react-international-phone-country-selector-button__dropdown-arrow--active {
    transform: rotateX(180deg)
}

.react-international-phone-country-selector-button__dropdown-arrow--disabled {
    border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999)
}

.react-international-phone-country-selector-button--disabled {
    background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
    cursor: auto
}

.react-international-phone-country-selector-button--disabled:hover {
    background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke))
}

.react-international-phone-flag-emoji {
    width: var(--react-international-phone-flag-width, 24px);
    height: var(--react-international-phone-flag-height, 24px);
    box-sizing: border-box
}

.react-international-phone-country-selector-dropdown {
    position: absolute;
    z-index: 1;
    top: var(--react-international-phone-dropdown-top, 44px);
    left: var(--react-international-phone-dropdown-left, 0);
    display: flex;
    width: 300px;
    max-height: 200px;
    flex-direction: column;
    padding: 4px 0;
    margin: 0;
    background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, white));
    box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px rgba(0, 0, 0, .25));
    color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
    list-style: none;
    overflow-y: scroll
}

.react-international-phone-country-selector-dropdown__preferred-list-divider {
    height: 1px;
    border: none;
    margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0);
    background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, gainsboro))
}

.react-international-phone-country-selector-dropdown__list-item {
    display: flex;
    min-height: var(--react-international-phone-dropdown-item-height, 28px);
    box-sizing: border-box;
    align-items: center;
    padding: 2px 8px
}

.react-international-phone-country-selector-dropdown__list-item-flag-emoji {
    margin-right: 8px
}

.react-international-phone-country-selector-dropdown__list-item-country-name {
    overflow: hidden;
    margin-right: 8px;
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
    text-overflow: ellipsis;
    white-space: nowrap
}

.react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px)
}

.react-international-phone-country-selector-dropdown__list-item:hover {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
    cursor: pointer
}

.react-international-phone-country-selector-dropdown__list-item--selected,
.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke);
    color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222))
}

.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code,
.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray))
}

.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke))
}

.react-international-phone-dial-code-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, gainsboro));
    margin-right: -1px;
    background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, white));
    color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
    font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px))
}

.react-international-phone-dial-code-preview--disabled {
    background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
    color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666))
}

.react-international-phone-input-container {
    display: flex
}

.react-international-phone-input-container .react-international-phone-country-selector-button {
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin-right: -1px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.react-international-phone-input-container .react-international-phone-input {
    overflow: visible;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-border-color, gainsboro);
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin: 0;
    background-color: var(--react-international-phone-background-color, white);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    color: var(--react-international-phone-text-color, #222);
    font-family: inherit;
    font-size: var(--react-international-phone-font-size, 13px)
}

.react-international-phone-input-container .react-international-phone-input:focus {
    outline: none
}

.react-international-phone-input-container .react-international-phone-input--disabled {
    background-color: var(--react-international-phone-disabled-background-color, whitesmoke);
    color: var(--react-international-phone-disabled-text-color, #666)
}

.react-international-phone-input-container {
    --react-international-phone-background-color: var(--bg-secondary);
    --react-international-phone-text-color: var(--tx-main);
    --react-international-phone-border-color: none;
    --react-international-phone-border-radius: var(--rounded);
    --react-international-phone-font-size: var(--indent-4);
    --react-international-phone-height: 50px;
    --react-international-phone-dropdown-item-font-size: var(--indent-4);
    --react-international-phone-dropdown-item-height: 50px;
    --react-international-phone-dropdown-item-background-color: var(--bg-tertiary);
    --react-international-phone-focused-dropdown-item-background-color: var(--bg-main);
    --react-international-phone-selected-dropdown-item-background-color: var(--bg-main);
    --react-international-phone-dropdown-top: 50px;
    --react-international-phone-country-selector-background-color-hover: var(--bg-main)
}

.react-international-phone-input-container.border {
    border: 1px solid var(--bg-separator);
    border-radius: var(--rounded)
}

.react-international-phone-input-container.error {
    border: 1px solid var(--error);
    border-radius: var(--rounded)
}

.react-international-phone-input-container .react-international-phone-input {
    width: 100%
}

.react-international-phone-input-container .react-international-phone-country-selector-dropdown {
    border-radius: var(--rounded);
    padding: 8px;
    overflow-y: auto;
    box-shadow: none;
    display: none
}

.react-international-phone-input-container .react-international-phone-country-selector-dropdown::-webkit-scrollbar-thumb {
    background: var(--bg-accent)
}

.react-international-phone-input-container .react-international-phone-country-selector-dropdown__list-item {
    border-radius: var(--rounded-sm)
}

.react-international-phone-input-container .react-international-phone-country-selector-button {
    padding-left: 16px;
    padding-right: 8px
}

.payment-tabs {
    height: 56px;
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    border-bottom: 1px solid var(--bg-separator)
}

.payment-tabs__tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: var(--tx-secondary);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    transition: background-color .2s
}

.payment-tabs__tab:hover {
    background-color: var(--bg-main)
}

.payment-tabs__tab--active {
    color: var(--tx-main);
    border-bottom: 1px solid var(--bg-accent)
}

@media (max-width: 1024px) {
    .payment-tabs__tab {
        background-color: var(--bg-main)
    }
}

@media (--lg-down) {
    .payment-tabs__tab {
        background-color: var(--bg-main)
    }
}

.payments-modal {
    border-radius: var(--rounded);
    overflow: hidden
}

.payments-modal section {
    overflow: hidden
}

@media (max-width: 1024px) {
    .payments-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }

    .payments-modal section {
        height: 100%;
        width: 100%
    }
}

@media (--lg-down) {
    .payments-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }

    .payments-modal section {
        height: 100%;
        width: 100%
    }
}

@media (max-width: 1024px) {
    .payments-modal .mobile-hidden {
        display: none
    }
}

@media (--lg-down) {
    .payments-modal .mobile-hidden {
        display: none
    }
}

.mobile-header {
    height: 56px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--indent-4);
    flex-shrink: 0;
    padding: var(--indent-4) var(--indent-6);
    background-color: var(--bg-secondary);
    font-size: 20px;
    color: var(--tx-main);
    font-weight: 700
}

.mobile-header svg {
    fill: var(--tx-secondary)
}

@media (min-width: 1025px) {
    .mobile-header {
        display: none
    }
}

@media (--lg-up) {
    .mobile-header {
        display: none
    }
}

.payments-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 900px;
    height: 840px;
    max-height: 100vh
}

@media (max-width: 1024px) {
    .payments-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex
    }
}

@media (--lg-down) {
    .payments-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex
    }
}

.gateways {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-secondary)
}

.gateways__loader {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.gateways__controls {
    padding: var(--indent-6);
    display: flex;
    gap: var(--indent-4)
}

.gateways__filter {
    width: 100%;
    height: 48px;
    padding: 0 var(--indent-4);
    border: 1px solid var(--bg-separator);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary);
    color: var(--tx-main);
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.gateways__container {
    overflow: auto
}

.gateways__group-title {
    padding: var(--indent-2) var(--indent-6);
    color: var(--tx-main);
    font-size: 12px
}

.gateways__list {
    padding: 0 var(--indent-6) var(--indent-6)
}

.gateways__list--list {
    display: flex;
    flex-direction: column;
    gap: var(--indent-1)
}

.gateways__list--grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--indent-4)
}

.gateway-details {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-main)
}

.gateway-details__header {
    padding: 0 var(--indent-6);
    height: 56px;
    display: flex;
    flex-shrink: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: var(--indent-4)
}

.gateway-details__back-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-secondary);
    border: none;
    border-radius: var(--rounded-sm)
}

@media (min-width: 1025px) {
    .gateway-details__back-button {
        display: none
    }
}

@media (--lg-up) {
    .gateway-details__back-button {
        display: none
    }
}

.gateway-details__logo {
    height: 24px;
    width: 40px;
    -o-object-fit: contain;
    object-fit: contain
}

.gateway-details__title {
    font-size: 1.25rem;
    color: var(--tx-main);
    font-weight: 700
}

.gateway-details__content {
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.gateway-details__content--status {
    padding: var(--indent-6);
    justify-content: center
}

.gateway-details__content--status button {
    width: 100%;
    height: 40px
}

.gateway-details__content--status>* {
    justify-content: center
}

.gateway-details__form {
    padding: var(--indent-6) 0;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.gateway-details__form-controls {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4);
    padding: 0 var(--indent-6)
}

.gateway-details__date-of-birth-wrapper {
    display: flex;
    flex-direction: column
}

.gateway-details__date-of-birth-fields {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-2)
}

.gateway-details__date-of-birth-fields>* {
    flex-grow: 1
}

.gateway-details__iframe {
    width: 100%;
    height: 100%;
    border: none
}

.gateway-details button[type=submit] {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: var(--rounded-sm);
    background-color: var(--bg-accent);
    color: var(--tx-active);
    font-size: 1rem;
    cursor: pointer
}

.gateway-details__info {
    list-style-type: decimal;
    color: var(--tx-secondary);
    font-size: 12px;
    line-height: 18px;
    padding-left: 15px
}

.gateway-details__info a {
    color: var(--tx-accent)
}

.promo-code-activation-error__button {
    height: auto;
    width: auto;
    padding: var(--indent-3) var(--indent-6);
    font-weight: 600;
    color: var(--tx-active)
}

.promo-code-activation-error__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--indent-4)
}

.promo-code-activation-success__container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.promo-code-activation-success__button {
    height: auto;
    width: auto;
    padding: var(--indent-3) var(--indent-6);
    font-weight: 600;
    color: var(--tx-active)
}

.casino-group {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    cursor: pointer
}

@media (max-width: 768px) {
    .casino-group {
        gap: 0
    }
}

@media (--md-down) {
    .casino-group {
        gap: 0
    }
}

.group-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.group-header__name {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 900;
    font-size: 40px;
    line-height: 40px;
    color: var(--tx-main);
    text-transform: capitalize;
    gap: var(--indent-2)
}

@media (max-width: 768px) {
    .group-header__name {
        font-size: 24px;
        line-height: 24px
    }
}

@media (--md-down) {
    .group-header__name {
        font-size: 24px;
        line-height: 24px
    }
}

.group-header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-4)
}

.group-header__text-button {
    font-size: 16px;
    line-height: 24px;
    color: var(--tx-secondary);
    text-decoration: underline;
    background-color: transparent
}

.group-header__slider-controls {
    display: flex;
    flex-direction: row;
    gap: var(--indent-1)
}

@media (max-width: 768px) {
    .group-header__slider-controls {
        display: none
    }
}

@media (--md-down) {
    .group-header__slider-controls {
        display: none
    }
}

.group-header__icon-button {
    height: 40px;
    width: 40px;
    padding: var(--indent-3);
    background-color: var(--bg-secondary);
    border-radius: var(--rounded-sm);
    cursor: pointer
}

.casino-group-swiper-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.games-swiper {
    width: 100%;
    height: 100%
}

.games-swiper .swiper-slide {
    width: -moz-fit-content;
    width: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content
}

.game-card {
    padding-top: 16px;
    position: relative;
    transition: var(--duration)
}

@media (min-width: 1025px) {
    .game-card:hover {
        transform: translateY(-16px)
    }
}

@media (--lg-up) {
    .game-card:hover {
        transform: translateY(-16px)
    }
}

.game-card--swiper {
    width: 169px;
    height: 185px
}

@media (max-width: 1024px) {
    .game-card--swiper {
        width: 137px;
        height: 153px
    }
}

@media (--lg-down) {
    .game-card--swiper {
        width: 137px;
        height: 153px
    }
}

.game-card__image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    border-radius: var(--rounded-sm);
    aspect-ratio: 1 / 1
}

.game-card__badge {
    position: absolute;
    top: 24px;
    left: 8px;
    font-size: 16px;
    line-height: 24px;
    padding: 2px 16px;
    text-transform: capitalize;
    border-radius: var(--rounded-xs)
}

.search-modal-empty-results {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--indent-2)
}

.search-modal-empty-results__title {
    font-weight: 900;
    color: var(--tx-main);
    font-size: 1.5rem
}

.search-modal-empty-results__text {
    color: var(--tx-secondary)
}

.search-modal-casino-content {
    padding: var(--indent-3) var(--indent-6) var(--indent-6);
    background: var(--bg-secondary);
    overflow: auto;
    height: 60vh
}

@media (max-width: 640px) {
    .search-modal-casino-content {
        height: 100%
    }
}

@media (--sm-down) {
    .search-modal-casino-content {
        height: 100%
    }
}

.search-modal-casino-content__grid {
    display: grid;
    gap: var(--indent-2) var(--indent-6);
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr))
}

.search-type-select__button,
.search-type-select__item,
.search-type-select__item:last-child {
    border: 1px solid var(--bg-accent);
    border-radius: var(--rounded-sm);
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-accent);
    font-weight: 600
}

.search-event {
    padding: var(--indent-1) var(--indent-2);
    background-color: var(--bg-main);
    border-radius: var(--rounded-sm);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10.5px;
    text-decoration: none
}

.search-event:hover {
    background-color: var(--bg-secondary);
    transition: var(--duration);
    cursor: pointer
}

.search-event__info {
    display: flex;
    flex-direction: column
}

.search-event__date {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary)
}

.search-event__name {
    font-size: var(--tx-base);
    font-weight: 600;
    line-height: 24px;
    color: var(--tx-main)
}

.search-events-league-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    padding: var(--indent-2);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-tertiary)
}

.search-events-league-container__category-name {
    font-size: var(--tx-base);
    font-weight: 600;
    line-height: 24px;
    color: var(--tx-secondary)
}

.search-events-league-container__competition-name {
    font-size: var(--tx-base);
    font-weight: 400;
    line-height: 24px;
    color: var(--tx-secondary);
    text-decoration: none
}

.search-events-league-container__competition-name:hover {
    color: var(--tx-accent);
    transition: var(--duration);
    cursor: pointer
}

.search-events-league-container__events {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.search-events-sport-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    padding-bottom: var(--indent-6)
}

.search-events-sport-container__header {
    width: 100%;
    padding: var(--indent-2) 0
}

.search-events-sport-container__sport-name {
    font-size: var(--tx-md);
    font-weight: 900;
    line-height: 30px;
    color: var(--tx-main);
    text-decoration: none
}

.search-events-sport-container__sport-name:hover {
    color: var(--tx-accent);
    transition: var(--duration)
}

.search-events-sport-container__leagues {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.search-events-sport-container__events {
    width: 100%;
    padding: var(--indent-2);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-tertiary);
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.search-sports-group {
    padding: var(--indent-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2);
    width: 100%
}

.search-sports-group__group-name {
    text-transform: uppercase;
    color: var(--tx-main);
    font-size: var(--tx-md);
    font-weight: 700
}

.search-sports-group__sport {
    padding: var(--indent-3) var(--indent-2);
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    background-color: var(--bg-main);
    border-radius: var(--rounded-sm);
    color: var(--tx-secondary);
    text-decoration: none;
    font-size: var(--tx-base)
}

.search-sports-group__sport:hover {
    color: var(--tx-accent);
    transition: var(--duration)
}

.search-sports-group__sport:hover svg {
    fill: var(--tx-accent);
    transition: var(--duration)
}

.search-modal-sports-content {
    width: 100%;
    background: var(--bg-secondary);
    overflow: auto;
    height: 60vh;
    display: flex;
    flex-direction: column;
    padding: var(--indent-3) var(--indent-6) var(--indent-6)
}

@media (max-width: 640px) {
    .search-modal-sports-content {
        height: 100%
    }
}

@media (--sm-down) {
    .search-modal-sports-content {
        height: 100%
    }
}

.search-modal-sports-content__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-main);
    font-weight: 900;
    font-size: var(--tx-lg);
    height: 100%;
    text-align: center
}

.search-modal-sports-content__events-groups {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: var(--indent-4)
}

.search-modal {
    border-radius: var(--rounded);
    width: 90%;
    max-width: 1140px;
    max-height: 90%;
    display: flex;
    flex-direction: column
}

@media (max-width: 640px) {
    .search-modal {
        width: 100%;
        height: 100%;
        max-height: initial;
        border-radius: 0
    }
}

@media (--sm-down) {
    .search-modal {
        width: 100%;
        height: 100%;
        max-height: initial;
        border-radius: 0
    }
}

.search-modal__header {
    padding: var(--indent-4) var(--indent-6);
    display: flex;
    flex-direction: column;
    gap: var(--indent-10)
}

.search-modal__title {
    color: var(--tx-main);
    font-weight: 900;
    font-size: 2rem
}

.search-modal__filters {
    display: flex;
    gap: var(--indent-2);
    height: var(--indent-13)
}

@media (max-width: 640px) {
    .search-modal__filters {
        flex-wrap: wrap;
        height: auto
    }
}

@media (--sm-down) {
    .search-modal__filters {
        flex-wrap: wrap;
        height: auto
    }
}

.search-modal__filter-column {
    display: flex;
    flex-grow: 1;
    background: var(--bg-secondary);
    border-radius: var(--rounded);
    padding: var(--indent-1);
    height: var(--indent-13)
}

.search-modal__input {
    flex-grow: 1;
    width: auto
}

.provider-select__button {
    width: 180px;
    background: var(--bg-secondary);
    border-radius: var(--rounded);
    height: var(--indent-13)
}

@media (max-width: 640px) {
    .provider-select__button {
        width: 100%
    }
}

@media (--sm-down) {
    .provider-select__button {
        width: 100%
    }
}

.provider-select__button,
.provider-select__item {
    color: var(--tx-secondary)
}

.status-modal {
    padding: 60px;
    width: 580px;
    border-radius: var(--rounded);
    overflow: hidden
}

@media (max-width: 1024px) {
    .status-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

@media (--lg-down) {
    .status-modal {
        width: 100vw;
        height: 100dvh;
        border-radius: 0
    }
}

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

.status-modal .status__info {
    max-width: initial;
    gap: var(--indent-4)
}

.status-modal .status__subtitle {
    text-transform: none
}

.general-notification {
    padding: var(--indent-12);
    max-width: 550px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--indent-4)
}

@media (max-width: 640px) {
    .general-notification {
        max-width: none
    }
}

@media (--sm-down) {
    .general-notification {
        max-width: none
    }
}

.general-notification__title {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--tx-main)
}

.general-notification__image {
    width: 100%
}

.general-notification__description {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--tx-secondary);
    white-space: break-spaces
}

.general-notification__button {
    font-weight: 600;
    text-transform: capitalize;
    padding: var(--indent-3) var(--indent-6);
    overflow: hidden;
    width: auto;
    max-width: 100%
}

.settings-layout {
    padding-top: var(--indent-2);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    gap: var(--indent-6)
}

.settings-layout__header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--indent-2)
}

.settings-layout__header svg {
    fill: var(--tx-secondary);
    width: 24px;
    height: 24px
}

.settings-layout__header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--tx-main)
}

.settings-layout__content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .settings-layout__content-wrapper {
        flex-direction: column
    }
}

@media (--lg-down) {
    .settings-layout__content-wrapper {
        flex-direction: column
    }
}

.settings-layout__desktop-navigation {
    height: -moz-fit-content;
    padding: 2px;
    width: 170px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: fit-content;
    background: var(--bg-secondary);
    border-radius: var(--rounded)
}

.settings-layout__mobile-navigation {
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    background-color: var(--bg-secondary);
    border-radius: var(--rounded);
    overflow: hidden
}

.settings-layout__content {
    width: 100%
}

.settings-layout .swiper-slide {
    width: -moz-fit-content;
    width: fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content
}

.settings-layout .swiper {
    width: 100%;
    height: 100%
}

.navigation-item {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--tx-secondary);
    text-decoration: none;
    text-align: center;
    border-radius: var(--rounded);
    background-color: var(--bg-secondary);
    transition: all .3s
}

.navigation-item:hover {
    color: var(--tx-focused)
}

.navigation-item--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active)
}

.navigation-item--active:hover {
    color: var(--tx-active)
}

@media (max-width: 1024px) {
    .navigation-item {
        padding: 0 16px
    }
}

@media (--lg-down) {
    .navigation-item {
        padding: 0 16px
    }
}

.settings-page__title {
    font-weight: 700;
    font-size: 36px;
    color: var(--tx-main)
}

.sportsbook-layout {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle 800px at top left, var(--sportsbook-radial-gradient-color), var(--bg-layout))
}

@media (max-width: 1024px) {
    .sportsbook-layout {
        background: radial-gradient(circle 400px at top left, var(--sportsbook-radial-gradient-color), var(--bg-layout))
    }
}

@media (--lg-down) {
    .sportsbook-layout {
        background: radial-gradient(circle 400px at top left, var(--sportsbook-radial-gradient-color), var(--bg-layout))
    }
}

.bonus-description {
    min-height: 130px
}

.bonus-description__list {
    list-style-type: disc;
    list-style-position: inside;
    transition: var(--duration)
}

.bonus-description__item {
    color: var(--tx-secondary);
    line-height: 24px;
    font-size: 14px
}

.bonus-description__item--hidden {
    display: none
}

.bonus-description__item a {
    background: none;
    border: none;
    color: var(--tx-accent);
    font-size: 14px;
    font-family: Open Sans, sans-serif;
    text-decoration: none
}

.bonus-description__toggle-button {
    background: none;
    display: flex;
    border: none;
    font-size: 14px;
    font-family: Open Sans, sans-serif;
    color: var(--tx-accent);
    margin: var(--indent-1) 0 var(--indent-6)
}

.bonus-description__collapsed-icon,
.bonus-description__expanded-icon {
    color: var(--tx-accent);
    margin-right: var(--indent-2)
}

.bonus-description__expanded-icon {
    transform: rotate(180deg)
}

.bonus-name {
    font-family: Fira Sans, sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--tx-main);
    margin-top: 10px
}

.bonus-reward {
    font-family: Fira Sans, sans-serif;
    font-size: 32px;
    color: var(--tx-accent);
    margin-top: var(--indent-3)
}

.bonus-status-indicator {
    --bonus-pending: #f1e158;
    --bonus-completed: #8268ed;
    --bonus-cancelled: #38b9c1;
    --bonus-expired: #ca1a1a;
    --bonus-active: #1aca2c;
    font-size: var(--tx-base);
    font-family: Open Sans, sans-serif;
    margin-right: var(--indent-6);
    text-transform: capitalize;
    white-space: nowrap
}

.bonus-status-indicator:before {
    content: "\a";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    margin: 3px 8px 3px 0
}

.bonus-status-indicator__pending {
    color: var(--bonus-pending)
}

.bonus-status-indicator__pending:before {
    background-color: var(--bonus-pending);
    box-shadow: 0 0 6px var(--bonus-pending)
}

.bonus-status-indicator__completed {
    color: var(--bonus-completed)
}

.bonus-status-indicator__completed:before {
    background-color: var(--bonus-completed);
    box-shadow: 0 0 6px var(--bonus-completed)
}

.bonus-status-indicator__cancelled {
    color: var(--bonus-cancelled)
}

.bonus-status-indicator__cancelled:before {
    background-color: var(--bonus-cancelled);
    box-shadow: 0 0 6px var(--bonus-cancelled)
}

.bonus-status-indicator__expired {
    color: var(--bonus-expired)
}

.bonus-status-indicator__expired:before {
    background-color: var(--bonus-expired);
    box-shadow: 0 0 6px var(--bonus-expired)
}

.bonus-status-indicator__active {
    color: var(--bonus-active)
}

.bonus-status-indicator__active:before {
    background-color: var(--bonus-active);
    box-shadow: 0 0 6px var(--bonus-active)
}

.bonus-timer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: var(--indent-2);
    justify-content: center
}

.bonus-timer__time-pair {
    display: flex;
    gap: var(--indent-2)
}

.bonus-timer__container {
    display: flex;
    flex-direction: column;
    gap: var(--indent-1)
}

.bonus-timer__label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-size: 14px
}

.bonus-timer__number {
    display: flex;
    width: 90px;
    height: 70px;
    flex-direction: row;
    gap: var(--indent-1);
    padding: var(--indent-2);
    border-radius: var(--rounded-lg);
    box-shadow: 5px 5px 5px var(--bg-main), inset 0 10px 10px var(--bg-secondary)
}

.bonus-timer__digit {
    text-align: left;
    position: relative;
    width: 28px;
    height: 50px;
    display: inline-block;
    margin: 0 4px
}

.bonus-timer__stick {
    background-color: var(--bg-main);
    border-color: var(--bg-main);
    position: absolute;
    transition: .25s
}

.bonus-timer__stick:before,
.bonus-timer__stick:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 5px solid transparent
}

.bonus-timer__stick-1 {
    height: 5px;
    width: 16px;
    top: 0;
    left: 6px
}

.bonus-timer__stick-1:before {
    border-width: 0 5px 5px 0;
    border-right-color: inherit;
    left: -5px
}

.bonus-timer__stick-1:after {
    border-width: 0 0 5px 5px;
    border-left-color: inherit;
    right: -5px
}

.bonus-timer__stick-2 {
    height: 5px;
    width: 16px;
    top: 24px;
    left: 6px
}

.bonus-timer__stick-2:before {
    border-width: 3px 4px 2px;
    border-right-color: inherit;
    left: -8px
}

.bonus-timer__stick-2:after {
    border-width: 3px 4px 2px;
    border-left-color: inherit;
    right: -8px
}

.bonus-timer__stick-3 {
    height: 5px;
    width: 15px;
    top: 47px;
    left: 6px
}

.bonus-timer__stick-3:before {
    border-width: 5px 5px 0 0;
    border-right-color: inherit;
    left: -5px
}

.bonus-timer__stick-3:after {
    border-width: 5px 0 0 5px;
    border-left-color: inherit;
    right: -5px
}

.bonus-timer__stick-4 {
    width: 5px;
    height: 14px;
    top: 7px;
    left: 0
}

.bonus-timer__stick-4:before {
    border-width: 0 5px 5px 0;
    border-bottom-color: inherit;
    top: -5px
}

.bonus-timer__stick-4:after {
    border-width: 0 0 5px 5px;
    border-left-color: inherit;
    bottom: -5px
}

.bonus-timer__stick-5 {
    width: 5px;
    height: 14px;
    top: 7px;
    right: 0
}

.bonus-timer__stick-5:before {
    border-width: 0 0 5px 5px;
    border-bottom-color: inherit;
    top: -5px
}

.bonus-timer__stick-5:after {
    border-width: 5px 0 0 5px;
    border-top-color: inherit;
    bottom: -5px
}

.bonus-timer__stick-6 {
    width: 5px;
    height: 14px;
    top: 32px;
    left: 0
}

.bonus-timer__stick-6:before {
    border-width: 0 5px 5px 0;
    border-bottom-color: inherit;
    top: -5px
}

.bonus-timer__stick-6:after {
    border-width: 0 0 5px 5px;
    border-left-color: inherit;
    bottom: -5px
}

.bonus-timer__stick-7 {
    width: 5px;
    height: 14px;
    top: 32px;
    right: 0
}

.bonus-timer__stick-7:before {
    border-width: 0 0 5px 5px;
    border-bottom-color: inherit;
    top: -5px
}

.bonus-timer__stick-7:after {
    border-width: 5px 0 0 5px;
    border-top-color: inherit;
    bottom: -5px
}

.bonus-timer__digit-1 .bonus-timer__stick-5,
.bonus-timer__digit-1 .bonus-timer__stick-7,
.bonus-timer__digit-2 .bonus-timer__stick-1,
.bonus-timer__digit-2 .bonus-timer__stick-5,
.bonus-timer__digit-2 .bonus-timer__stick-2,
.bonus-timer__digit-2 .bonus-timer__stick-6,
.bonus-timer__digit-2 .bonus-timer__stick-3,
.bonus-timer__digit-3 .bonus-timer__stick-1,
.bonus-timer__digit-3 .bonus-timer__stick-5,
.bonus-timer__digit-3 .bonus-timer__stick-2,
.bonus-timer__digit-3 .bonus-timer__stick-7,
.bonus-timer__digit-3 .bonus-timer__stick-3,
.bonus-timer__digit-4 .bonus-timer__stick-5,
.bonus-timer__digit-4 .bonus-timer__stick-2,
.bonus-timer__digit-4 .bonus-timer__stick-4,
.bonus-timer__digit-4 .bonus-timer__stick-7,
.bonus-timer__digit-5 .bonus-timer__stick-1,
.bonus-timer__digit-5 .bonus-timer__stick-2,
.bonus-timer__digit-5 .bonus-timer__stick-4,
.bonus-timer__digit-5 .bonus-timer__stick-3,
.bonus-timer__digit-5 .bonus-timer__stick-7,
.bonus-timer__digit-6 .bonus-timer__stick-1,
.bonus-timer__digit-6 .bonus-timer__stick-2,
.bonus-timer__digit-6 .bonus-timer__stick-4,
.bonus-timer__digit-6 .bonus-timer__stick-3,
.bonus-timer__digit-6 .bonus-timer__stick-6,
.bonus-timer__digit-6 .bonus-timer__stick-7,
.bonus-timer__digit-7 .bonus-timer__stick-1,
.bonus-timer__digit-7 .bonus-timer__stick-5,
.bonus-timer__digit-7 .bonus-timer__stick-7,
.bonus-timer__digit-8 .bonus-timer__stick-1,
.bonus-timer__digit-8 .bonus-timer__stick-2,
.bonus-timer__digit-8 .bonus-timer__stick-3,
.bonus-timer__digit-8 .bonus-timer__stick-4,
.bonus-timer__digit-8 .bonus-timer__stick-5,
.bonus-timer__digit-8 .bonus-timer__stick-6,
.bonus-timer__digit-8 .bonus-timer__stick-7,
.bonus-timer__digit-9 .bonus-timer__stick-1,
.bonus-timer__digit-9 .bonus-timer__stick-2,
.bonus-timer__digit-9 .bonus-timer__stick-3,
.bonus-timer__digit-9 .bonus-timer__stick-4,
.bonus-timer__digit-9 .bonus-timer__stick-5,
.bonus-timer__digit-9 .bonus-timer__stick-7,
.bonus-timer__digit-0 .bonus-timer__stick-1,
.bonus-timer__digit-0 .bonus-timer__stick-3,
.bonus-timer__digit-0 .bonus-timer__stick-4,
.bonus-timer__digit-0 .bonus-timer__stick-5,
.bonus-timer__digit-0 .bonus-timer__stick-6,
.bonus-timer__digit-0 .bonus-timer__stick-7 {
    background-color: var(--bg-accent);
    border-color: var(--bg-accent)
}

.bonus-wagering-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    height: 80px
}

.bonus-wagering-progress__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 95%
}

.bonus-wagering-progress__label {
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: var(--grey)
}

.bonus-wagering-progress__wagered {
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    color: var(--white)
}

.bonus-wagering-progress__bar {
    width: 95%;
    height: 8px;
    background-color: var(--bg-bonus-progress-bar);
    border-radius: var(--rounded);
    margin-top: 8px;
    overflow: hidden
}

.bonus-wagering-progress__fill {
    position: relative;
    top: -8px;
    width: 95%;
    height: 8px;
    background-color: var(--bg-accent);
    border-radius: var(--rounded);
    margin-top: 8px
}

.cancel-bonus-button {
    width: 100%;
    height: 48px;
    color: var(--tx-main);
    background: var(--bg-main)
}

.activated-bonus-card {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100% + 2 * var(--indent-6));
    margin-left: calc(-1 * var(--indent-6));
    margin-top: calc(-1 * var(--indent-6));
    background-image: url(/images/arrows.png), linear-gradient(#00000080, #00000080);
    background-position: center;
    background-blend-mode: darken
}

.activated-bonus-card__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: var(--content-max-width);
    padding: var(--indent-10) var(--indent-2)
}

.activated-bonus-card__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    padding: var(--indent-4)
}

.activated-bonus-card__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    row-gap: var(--indent-9);
    width: 100%;
    max-width: 400px
}

.activated-bonus-card__cancel-bonus {
    width: 236px;
    height: 48px
}

@media (max-width: 768px) {
    .activated-bonus-card__content {
        flex-direction: column;
        padding: var(--indent-6) var(--indent-4)
    }

    .activated-bonus-card__right {
        align-items: center
    }
}

@media (--md-down) {
    .activated-bonus-card__content {
        flex-direction: column;
        padding: var(--indent-6) var(--indent-4)
    }

    .activated-bonus-card__right {
        align-items: center
    }
}

.bonus-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-secondary);
    border-radius: var(--rounded-sm)
}

.bonus-card__header {
    background-color: var(--bg-tertiary);
    border-radius: var(--rounded-sm);
    padding: var(--indent-4);
    margin: var(--indent-2) var(--indent-2) 0;
    background-repeat: no-repeat;
    background-position: right top
}

.bonus-card__header--pending {
    background-image: url("data:image/svg+xml,%3csvg%20width='136'%20height='136'%20viewBox='0%200%20136%20136'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.2'%3e%3cpath%20d='M67.9987%2011.332C36.7527%2011.332%2011.332%2036.7527%2011.332%2067.9987C11.332%2099.2447%2036.7527%20124.665%2067.9987%20124.665C99.2447%20124.665%20124.665%2099.2447%20124.665%2067.9987C124.665%2036.7527%2099.2447%2011.332%2067.9987%2011.332ZM67.9987%20113.332C43.003%20113.332%2022.6654%2092.9944%2022.6654%2067.9987C22.6654%2043.003%2043.003%2022.6654%2067.9987%2022.6654C92.9944%2022.6654%20113.332%2043.003%20113.332%2067.9987C113.332%2092.9944%2092.9944%20113.332%2067.9987%20113.332Z'%20fill='%23F1E158'/%3e%3cpath%20d='M73.6654%2039.668H62.332V70.3473L80.9924%2089.0076L89.005%2080.995L73.6654%2065.6553V39.668Z'%20fill='%23F1E158'/%3e%3c/g%3e%3c/svg%3e")
}

.bonus-card__header--completed {
    background-image: url("data:image/svg+xml,%3csvg%20width='136'%20height='136'%20viewBox='0%200%20136%20136'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.2'%3e%3cpath%20d='M67.9987%2011.332C36.7527%2011.332%2011.332%2036.7527%2011.332%2067.9987C11.332%2099.2447%2036.7527%20124.665%2067.9987%20124.665C99.2447%20124.665%20124.665%2099.2447%20124.665%2067.9987C124.665%2036.7527%2099.2447%2011.332%2067.9987%2011.332ZM67.9987%20113.332C43.003%20113.332%2022.6654%2092.9944%2022.6654%2067.9987C22.6654%2043.003%2043.003%2022.6654%2067.9987%2022.6654C92.9944%2022.6654%20113.332%2043.003%20113.332%2067.9987C113.332%2092.9944%2092.9944%20113.332%2067.9987%20113.332Z'%20fill='%238268ED'/%3e%3cpath%20d='M60.3472%2089.4708L44.5117%2073.6353L51.7282%2066.4188L60.3472%2075.0633L85.5412%2049.8438L92.7577%2057.0603L60.3472%2089.4708Z'%20fill='%238268ED'/%3e%3c/g%3e%3c/svg%3e")
}

.bonus-card__header--cancelled {
    background-image: url("data:image/svg+xml,%3csvg%20width='136'%20height='136'%20viewBox='0%200%20136%20136'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.2'%3e%3cpath%20d='M28.3072%20107.382C22.9085%20102.168%2018.6023%2095.9305%2015.6399%2089.0342C12.6774%2082.1379%2011.1181%2074.7207%2011.0529%2067.2154C10.9877%2059.71%2012.4179%2052.2668%2015.26%2045.3201C18.1021%2038.3734%2022.2993%2032.0623%2027.6066%2026.755C32.9139%2021.4477%2039.225%2017.2506%2046.1717%2014.4084C53.1184%2011.5663%2060.5616%2010.1361%2068.067%2010.2014C75.5723%2010.2666%2082.9895%2011.8259%2089.8858%2014.7883C96.7821%2017.7507%20103.019%2022.0569%20108.234%2027.4556C118.53%2038.1164%20124.227%2052.3947%20124.099%2067.2154C123.97%2082.0361%20118.025%2096.2132%20107.545%20106.693C97.0648%20117.174%2082.8876%20123.118%2068.067%20123.247C53.2463%20123.376%2038.9679%20117.678%2028.3072%20107.382ZM36.2772%2099.412C44.7623%20107.897%2056.2706%20112.664%2068.2704%20112.664C80.2701%20112.664%2091.7784%20107.897%20100.264%2099.412C108.749%2090.9268%20113.516%2079.4186%20113.516%2067.4188C113.516%2055.4191%20108.749%2043.9108%20100.264%2035.4257C91.7784%2026.9405%2080.2701%2022.1737%2068.2704%2022.1737C56.2706%2022.1737%2044.7623%2026.9405%2036.2772%2035.4257C27.7921%2043.9108%2023.0252%2055.4191%2023.0252%2067.4188C23.0252%2079.4186%2027.7921%2090.9268%2036.2772%2099.412ZM92.237%2051.4222L76.2404%2067.4188L92.237%2083.4154L84.2669%2091.3854L68.2704%2075.3888L52.2738%2091.3854L44.3038%2083.4154L60.3004%2067.4188L44.3038%2051.4222L52.2738%2043.4522L68.2704%2059.4488L84.2669%2043.4522L92.237%2051.4222Z'%20fill='%2338B9C1'/%3e%3c/g%3e%3c/svg%3e")
}

.bonus-card__header--expired {
    background-image: url("data:image/svg+xml,%3csvg%20width='136'%20height='136'%20viewBox='0%200%20136%20136'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20opacity='0.2'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M53.5563%2018.4161C53.5563%2016.5373%2054.3025%2014.7354%2055.6309%2013.4069C56.9593%2012.0784%2058.761%2011.332%2060.6396%2011.332H74.8062C76.6849%2011.332%2078.4865%2012.0784%2079.8149%2013.4069C81.1433%2014.7354%2081.8896%2016.5373%2081.8896%2018.4161C81.8896%2020.2949%2081.1433%2022.0968%2079.8149%2023.4253C78.4865%2024.7538%2076.6849%2025.5002%2074.8062%2025.5002V25.9961C81.9098%2027.0231%2088.7058%2029.5803%2094.7245%2033.491L101.156%2027.0587C101.643%2026.5367%20102.229%2026.118%20102.881%2025.8276C103.532%2025.5372%20104.236%2025.3811%20104.949%2025.3685C105.662%2025.3559%20106.371%2025.4871%20107.033%2025.7543C107.694%2026.0215%20108.295%2026.4193%20108.799%2026.9238C109.304%2027.4283%20109.702%2028.0293%20109.969%2028.6908C110.236%2029.3524%20110.367%2030.061%20110.355%2030.7744C110.342%2031.4878%20110.186%2032.1913%20109.895%2032.8431C109.605%2033.4948%20109.186%2034.0814%20108.665%2034.5678L102.998%2040.235C110.834%2048.1722%20115.766%2058.52%20116.997%2069.6065C118.227%2080.6929%20115.684%2091.8705%20109.779%20101.333C103.873%20110.796%2094.9501%20117.991%2084.4512%20121.756C73.9523%20125.52%2062.4908%20125.635%2051.9187%20122.081C41.3465%20118.527%2032.2813%20111.512%2026.1875%20102.17C20.0938%2092.8274%2017.3276%2081.703%2018.3359%2070.5941C19.3442%2059.4852%2024.068%2049.0408%2031.7441%2040.9483C39.4203%2032.8558%2049.6004%2027.588%2060.6396%2025.9961V25.5002C58.761%2025.5002%2056.9593%2024.7538%2055.6309%2023.4253C54.3025%2022.0968%2053.5563%2020.2949%2053.5563%2018.4161ZM106.681%2075.0886C106.681%2085.4221%20102.577%2095.3323%2095.2706%20102.639C87.9645%20109.946%2078.0553%20114.051%2067.7229%20114.051C57.3905%20114.051%2047.4813%20109.946%2040.1752%20102.639C32.8692%2095.3323%2028.7646%2085.4221%2028.7646%2075.0886C28.7646%2064.7552%2032.8692%2054.8449%2040.1752%2047.5381C47.4813%2040.2312%2057.3905%2036.1263%2067.7229%2036.1263C78.0553%2036.1263%2087.9645%2040.2312%2095.2706%2047.5381C102.577%2054.8449%20106.681%2064.7552%20106.681%2075.0886ZM73.0354%2052.0654C73.0354%2050.6563%2072.4757%2049.3049%2071.4794%2048.3085C70.4831%2047.3121%2069.1319%2046.7524%2067.7229%2046.7524C66.3139%2046.7524%2064.9627%2047.3121%2063.9664%2048.3085C62.9701%2049.3049%2062.4104%2050.6563%2062.4104%2052.0654V77.2847L63.9687%2078.8432L79.9346%2094.8107C80.4209%2095.3327%2081.0074%2095.7514%2081.6591%2096.0418C82.3107%2096.3322%2083.0142%2096.4883%2083.7275%2096.5009C84.4408%2096.5135%2085.1494%2096.3822%2085.8109%2096.115C86.4724%2095.8478%2087.0733%2095.4501%2087.5777%2094.9456C88.0822%2094.441%2088.4799%2093.8401%2088.7471%2093.1785C89.0143%2092.5169%2089.1455%2091.8083%2089.1329%2091.0949C89.1203%2090.3815%2088.9642%2089.678%2088.6738%2089.0263C88.3835%2088.3745%2087.9648%2087.788%2087.4429%2087.3016L73.0354%2072.8855V52.0654Z'%20fill='%23CA1A1A'/%3e%3c/g%3e%3c/svg%3e")
}

.bonus-card__top-line {
    display: flex;
    gap: var(--indent-4);
    margin-bottom: var(--indent-4)
}

.bonus-card__expired-time {
    color: var(--white);
    font-family: Open Sans, sans-serif;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.bonus-card__expired-time svg {
    margin-right: var(--indent-2)
}

.bonus-card__expired-time span {
    white-space: nowrap
}

.bonus-card__body {
    padding: var(--indent-6)
}

.bonus-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--indent-4)
}

.bonus-card__activate-button {
    width: 100%;
    height: 48px
}

.bonus-card__activate-button:disabled {
    opacity: .5;
    cursor: default
}

.bonus-card__loader {
    width: 25px;
    height: 25px;
    border-width: 4px
}

@media (max-width: 1024px) {
    .bonus-card__header {
        background-size: 100px
    }

    .bonus-card__top-line {
        flex-direction: column
    }
}

@media (--lg-down) {
    .bonus-card__header {
        background-size: 100px
    }

    .bonus-card__top-line {
        flex-direction: column
    }
}

.no-bonuses {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px
}

.no-bonuses__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    margin-bottom: var(--indent-6)
}

.no-bonuses__icon svg {
    height: 32px;
    width: 32px;
    fill: #504e4b
}

.no-bonuses__title {
    font-family: Fira Sans, sans-serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--indent-4)
}

.no-bonuses__description {
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: var(--tx-secondary)
}

.no-bonuses__description a {
    background: none;
    border: none;
    color: var(--tx-accent);
    font-size: 14px;
    font-family: Open Sans, sans-serif;
    text-decoration: none
}

.bonus-hub-page {
    min-height: calc(100vh - var(--header-height));
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 640px) {
    .bonus-hub-page {
        gap: var(--indent-3)
    }
}

@media (--sm-down) {
    .bonus-hub-page {
        gap: var(--indent-3)
    }
}

.bonus-hub-page__wrapper {
    display: flex;
    flex-direction: column;
    max-width: var(--content-max-width);
    gap: var(--indent-6)
}

@media (max-width: 640px) {
    .bonus-hub-page__wrapper {
        gap: var(--indent-3)
    }
}

@media (--sm-down) {
    .bonus-hub-page__wrapper {
        gap: var(--indent-3)
    }
}

.bonus-hub-page__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.bonus-hub-page__title {
    color: var(--tx-main);
    font-weight: 900;
    font-size: 36px
}

@media (max-width: 1024px) {
    .bonus-hub-page__title {
        font-size: 30px
    }
}

@media (--lg-down) {
    .bonus-hub-page__title {
        font-size: 30px
    }
}

.bonus-hub-page__bonus-type {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.bonus-hub-page__bonus-type-label {
    color: var(--tx-secondary);
    font-size: var(--tx-base)
}

.bonus-hub-page__bonus-type-label--selected {
    color: var(--tx-main)
}

.bonus-hub-page__bonuses-list {
    width: 100%;
    height: 100%;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: var(--indent-10)
}

@media (max-width: 1024px) {
    .bonus-hub-page__bonuses-list {
        grid-template-columns: 100%
    }
}

@media (--lg-down) {
    .bonus-hub-page__bonuses-list {
        grid-template-columns: 100%
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-vertical>.swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-vertical>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.banners-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: var(--bg-secondary)
}

.banners-swiper .swiper-button-prev,
.banners-swiper .swiper-button-next {
    color: #fff;
    background-color: #201f1d;
    width: 2rem;
    height: 2rem;
    border-radius: .5rem
}

.banners-swiper .swiper-button-prev:after,
.banners-swiper .swiper-button-next:after {
    font-size: .5rem
}

.banners-swiper .swiper-button-prev {
    position: absolute;
    right: 4.5rem;
    bottom: 40px;
    top: unset;
    left: unset
}

.banners-swiper .swiper-button-next {
    position: absolute;
    right: 2rem;
    bottom: 40px;
    top: unset;
    left: unset
}

.banners-swiper .swiper-button-disabled {
    opacity: .6;
    pointer-events: initial
}

.banners-swiper .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    top: unset;
    height: .25rem;
    display: flex
}

.banners-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: .4
}

.banners-swiper .swiper-pagination-bullet {
    margin: 0 !important;
    flex-basis: 100%;
    background-color: #fff;
    border-radius: 0;
    opacity: .2
}

.banner-card {
    height: 255px;
    width: 100%;
    position: relative;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

@media (max-width: 640px) {
    .banner-card {
        height: 180px
    }
}

@media (--sm-down) {
    .banner-card {
        height: 180px
    }
}

.banner-card__link {
    width: 100%;
    height: 100%
}

.banner-card__background {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.banner-card-button {
    cursor: pointer
}

.table {
    box-sizing: border-box;
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--rounded);
    border-spacing: 0;
    overflow: hidden
}

.table__header {
    background-color: var(--bg-secondary);
    color: var(--tx-main)
}

.table__row {
    color: var(--tx-secondary)
}

.table__row:nth-child(2n) {
    background-color: var(--bg-tertiary)
}

.table__cell {
    padding: var(--indent-4)
}

.table__cell:first-child {
    padding-left: var(--indent-6)
}

.table__cell:last-child {
    padding-right: var(--indent-6)
}

.table__cell--left {
    text-align: left
}

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

.table__cell--right {
    text-align: right
}

@media (min-width: 1025px) {
    .table__cell--desktop-hidden {
        display: none
    }
}

@media (--lg-up) {
    .table__cell--desktop-hidden {
        display: none
    }
}

@media (max-width: 1024px) {
    .table__cell--mobile-hidden {
        display: none
    }
}

@media (--lg-down) {
    .table__cell--mobile-hidden {
        display: none
    }
}

.table__skeleton-value {
    width: 70px;
    color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: var(--rounded-xs)
}

.casino-bets-table .table {
    width: 100%
}

.casino-bets-table__game-link {
    color: var(--tx-accent)
}

.casino-bets-table__amount--win {
    color: var(--success)
}

.casino-bets-table__email-container {
    display: flex
}

.casino-bets-table .table__cell:first-child {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.activity-board {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.sportsbook-bet-details-modal {
    width: 500px;
    border-radius: var(--rounded);
    background-color: var(--bg-layout)
}

@media (max-width: 640px) {
    .sportsbook-bet-details-modal {
        width: calc(100vw - 20px)
    }
}

@media (--sm-down) {
    .sportsbook-bet-details-modal {
        width: calc(100vw - 20px)
    }
}

.sportsbook-bet-details {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.sportsbook-bet-details__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 64px
}

.sportsbook-bet-details__header-title {
    font-size: var(--tx-base);
    line-height: 24px;
    font-weight: 600;
    color: var(--tx-main);
    margin-bottom: var(--indent-4)
}

.sportsbook-bet-details__header-bet-id {
    font-size: var(--tx-base);
    line-height: 24px;
    font-weight: 600;
    color: var(--tx-main);
    margin-bottom: var(--indent-4);
    display: inline-flex;
    align-items: center;
    gap: var(--indent-2)
}

.sportsbook-bet-details__header-bet-id-copy-icon {
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    transition: var(--duration)
}

.sportsbook-bet-details__header-bet-id-copy-icon:hover {
    color: var(--tx-main)
}

.sportsbook-bet-details__header-date {
    font-size: var(--tx-sm);
    font-weight: 400;
    color: var(--tx-secondary)
}

.sportsbook-bet-details__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--indent-4);
    background-color: var(--bg-main);
    padding: var(--indent-6)
}

.sportsbook-bet-details__add-bets-button {
    padding: var(--indent-4);
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto
}

.sportsbook-bets-table .table {
    width: 100%
}

.sportsbook-bets-table .table__cell:first-child {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.sportsbook-bets-table__event-button {
    color: var(--tx-accent);
    text-decoration: underline;
    text-align: start
}

.load-more-button {
    text-decoration: underline;
    color: var(--tx-secondary);
    background: var(--bg-tertiary);
    padding: var(--indent-4);
    border-radius: var(--rounded-sm)
}

.load-more-button:disabled {
    opacity: .8
}

.casino-grid-view {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.placeholder__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: var(--tx-main)
}

.placeholder__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--tx-secondary)
}

.casino-lobby-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

@media (max-width: 640px) {
    .casino-lobby-page {
        gap: var(--indent-4)
    }
}

@media (--sm-down) {
    .casino-lobby-page {
        gap: var(--indent-4)
    }
}

.casino-lobby-page__banner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.casino-lobby-page__filters {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-1)
}

@media (max-width: 1024px) {
    .casino-lobby-page__filters {
        flex-direction: column;
        gap: var(--indent-2)
    }
}

@media (--lg-down) {
    .casino-lobby-page__filters {
        flex-direction: column;
        gap: var(--indent-2)
    }
}

.casino-lobby-page__search {
    background-color: var(--bg-secondary);
    height: 52px
}

.casino-lobby-page__select-button {
    height: 52px;
    background-color: var(--bg-secondary);
    width: 200px;
    border-radius: var(--rounded);
    color: var(--tx-secondary)
}

@media (max-width: 1024px) {
    .casino-lobby-page__select-button {
        width: 100%
    }
}

@media (--lg-down) {
    .casino-lobby-page__select-button {
        width: 100%
    }
}

.casino-lobby-page__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
    grid-template-rows: auto;
    -moz-column-gap: 16px;
    column-gap: 16px
}

.pagination {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.pagination__button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--pagination-button-border);
    border-radius: var(--rounded);
    font-size: var(--tx-base);
    line-height: 24px;
    min-width: 130px;
    color: var(--tx-main);
    cursor: pointer;
    background-color: transparent
}

.pagination__button:first-child {
    padding: var(--indent-2) var(--indent-6) var(--indent-2) var(--indent-4)
}

.pagination__button:last-child {
    padding: var(--indent-2) var(--indent-4) var(--indent-2) var(--indent-6)
}

.pagination__button--disabled {
    color: var(--tx-secondary);
    pointer-events: none;
    cursor: auto
}

.pagination__button svg {
    stroke: currentColor
}

.pagination__page {
    color: var(--tx-main);
    font-weight: 600
}

.casino-bets {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-6);
    margin-bottom: var(--indent-6)
}

.casino-bets-loader,
.casino-bets-placeholder-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px
}

.casino-bets__bet-id-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-1);
    max-width: 150px
}

.casino-bets__bet-id {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.casino-bets__bet-id-icon {
    cursor: pointer;
    min-width: 24px;
    min-height: 24px
}

.casino-bets__placeholder {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--tx-main)
}

.casino-bets__game-link {
    color: var(--tx-accent)
}

.casino-bets__amount--win {
    color: var(--success)
}

.casino-bets .table {
    width: 100%;
    border-collapse: separate;
    border: 0
}

.casino-bets .table__header .table__row,
.casino-bets .table__header .table__row .table__cell {
    color: var(--tx-main)
}

.casino-bets .table__body .table__row {
    background-color: transparent
}

.casino-bets .table__body .table__row .table__cell {
    border-bottom: 1px solid var(--bg-tertiary)
}

.casino-bets .table__body .table__row .table__cell:first-child {
    border-left: 1px solid var(--bg-tertiary)
}

.casino-bets .table__body .table__row .table__cell:last-child {
    border-right: 1px solid var(--bg-tertiary)
}

.casino-bets .table__body .table__row:last-child .table__cell:first-child {
    border-left: 1px solid var(--bg-tertiary);
    border-bottom-left-radius: var(--rounded)
}

.casino-bets .table__body .table__row:last-child .table__cell:last-child {
    border-right: 1px solid var(--bg-tertiary);
    border-bottom-right-radius: var(--rounded)
}

.casino-favorites-page__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .casino-favorites-page__title {
        font-size: 30px
    }
}

@media (--lg-down) {
    .casino-favorites-page__title {
        font-size: 30px
    }
}

.casino-favorites-page__title svg {
    fill: var(--tx-secondary);
    width: 24px;
    height: 24px;
    padding: 0 var(--indent-2)
}

.casino-favorites-page__placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--tx-main)
}

.player {
    background-color: var(--bg-tertiary);
    border-radius: var(--indent-2);
    overflow: hidden
}

.player .loader {
    margin: auto
}

.player__message {
    color: var(--tx-main);
    padding: var(--indent-4);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px
}

.player__content-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--indent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary)
}

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

.player__content iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000
}

.player__controls {
    height: 72px;
    padding: var(--indent-6);
    display: flex;
    justify-content: space-between
}

.player__controls-group {
    display: flex;
    gap: var(--indent-10)
}

.game-mode-switcher {
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer
}

.game-mode-switcher__label-fun {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tx-secondary)
}

.game-mode-switcher__label-real {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tx-accent)
}

.casino-game-page {
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: var(--indent-12)
}

/* .casino-game-page__description {
    display: flex;
    align-items: center;
    gap: var(--indent-6)
}

.casino-game-page__name {
    color: var(--tx-main);
    font-size: 2.25rem
}

.casino-game-page__provider {
    color: var(--tx-secondary);
    font-size: 1rem
} */

@media (max-width: 1024px) {
    .casino-game-page {
        width: 100dvw
    }
}

@media (--lg-down) {
    .casino-game-page {
        width: 100dvw
    }
}

.table-group {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6);
    overflow-x: scroll
}

.casino-group-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

@media (max-width: 640px) {
    .casino-group-page {
        gap: var(--indent-3)
    }
}

@media (--sm-down) {
    .casino-group-page {
        gap: var(--indent-3)
    }
}

.casino-group-page__filters {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-1)
}

@media (max-width: 1024px) {
    .casino-group-page__filters {
        flex-direction: column;
        gap: var(--indent-2)
    }
}

@media (--lg-down) {
    .casino-group-page__filters {
        flex-direction: column;
        gap: var(--indent-2)
    }
}

.casino-group-page__search {
    background-color: var(--bg-secondary);
    height: 52px
}

.casino-group-page__select-button {
    height: 52px;
    background-color: var(--bg-secondary);
    width: 200px;
    border-radius: var(--rounded);
    color: var(--tx-secondary)
}

@media (max-width: 1024px) {
    .casino-group-page__select-button {
        width: 100%
    }
}

@media (--lg-down) {
    .casino-group-page__select-button {
        width: 100%
    }
}

.casino-group-page__title {
    text-transform: capitalize;
    color: var(--tx-main);
    font-weight: 900;
    font-size: 2rem
}

.document-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6);
    min-height: 640px
}

@media (max-width: 640px) {
    .document-page {
        gap: var(--indent-2)
    }
}

@media (--sm-down) {
    .document-page {
        gap: var(--indent-2)
    }
}

.document-page__placeholder {
    width: 100%;
    height: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-main);
    font-size: 36px
}

.document-page__title {
    color: var(--tx-main);
    text-align: center
}

.error-page {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.error-page__title {
    color: var(--tx-main);
    font-size: 3rem
}

.error-page__description,
.error-page__message {
    color: var(--tx-secondary);
    font-size: 1.5rem
}

.casino-home-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 640px) {
    .casino-home-page {
        gap: var(--indent-4)
    }
}

@media (--sm-down) {
    .casino-home-page {
        gap: var(--indent-4)
    }
}

.casino-home-page__banners {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: var(--indent-6)
}

@media (min-width: 769px) {
    .casino-home-page__banners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(1, minmax(0, 1fr))
    }
}

@media (--md-up) {
    .casino-home-page__banners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(1, minmax(0, 1fr))
    }
}

@media (max-width: 640px) {
    .casino-home-page__banners {
        gap: var(--indent-3)
    }
}

@media (--sm-down) {
    .casino-home-page__banners {
        gap: var(--indent-3)
    }
}

.casino-home-page__casino-groups {
    display: flex;
    flex-direction: column;
    gap: 64px
}

@media (max-width: 768px) {
    .casino-home-page__casino-groups {
        gap: 40px
    }
}

@media (--md-down) {
    .casino-home-page__casino-groups {
        gap: 40px
    }
}

.casino-home-page__casino-groups {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.mobile-casino-game {
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-layout)
}

@media (orientation: landscape) {
    .mobile-casino-game {
        flex-direction: row
    }
}

.mobile-casino-game__header {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--indent-4);
    position: relative
}

@media (orientation: landscape) {
    .mobile-casino-game__header {
        flex-direction: column;
        height: auto;
        padding: var(--indent-2) var(--indent-2);
        order: 1
    }
}

.mobile-casino-game__logo {
    width: 55px
}

.mobile-casino-game__logo img {
    width: 100%
}

@media (orientation: landscape) {
    .mobile-casino-game__logo {
        order: 4;
        width: 25px
    }
}

.mobile-casino-game__deposit {
    height: 25px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: var(--gradient-horizontal);
    border-radius: var(--rounded-sm)
}

.mobile-casino-game__deposit>svg {
    fill: var(--tx-active)
}

@media (orientation: landscape) {
    .mobile-casino-game__deposit {
        order: 3;
        width: 30px;
        height: 55px
    }
}

@media (orientation: landscape) {
    .mobile-casino-game__close {
        order: 1
    }
}

@media (orientation: landscape) {
    .mobile-casino-game__favorites {
        order: 2
    }
}

.mobile-casino-game__content-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-secondary)
}

.mobile-casino-game__content {
    width: 100%;
    height: 100%
}

.mobile-casino-game__message {
    color: var(--tx-main);
    padding: var(--indent-4);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px
}

body:has(.mobile-casino-game) #chat-widget-container {
    display: none
}

.promo-codes-page {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.promo-codes-page section {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .promo-codes-page section {
        width: 100%
    }
}

@media (--lg-down) {
    .promo-codes-page section {
        width: 100%
    }
}

.promo-codes-page__section-header {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.promo-codes-page__section-title {
    font-family: Fira Sans, sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .promo-codes-page__section-title {
        font-size: 30px
    }
}

@media (--lg-down) {
    .promo-codes-page__section-title {
        font-size: 30px
    }
}

.promo-codes-page__section-subtitle {
    font-size: 14px;
    color: var(--tx-secondary)
}

.promo-codes-page__section-body {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary)
}

.promo-codes-page__section-content {
    padding: var(--indent-4);
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.promo-codes-page__section-content .input__item {
    color: var(--tx-secondary);
    border: 1px solid var(--bg-tertiary)
}

.promo-codes-page__section-controls {
    padding: var(--indent-4);
    border-top: 1px solid var(--bg-tertiary)
}

.promo-codes-page__section-controls button {
    margin-left: auto;
    width: 200px;
    padding: var(--indent-3) var(--indent-6);
    font-size: var(--tx-base);
    line-height: 24px;
    font-weight: 600;
    cursor: pointer
}

@media (max-width: 1024px) {
    .promo-codes-page__section-controls button {
        width: 100%
    }
}

@media (--lg-down) {
    .promo-codes-page__section-controls button {
        width: 100%
    }
}

.general-promotion {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary);
    position: relative
}

@media (max-width: 768px) {
    .general-promotion {
        width: 340px;
        flex-shrink: 0
    }
}

@media (--md-down) {
    .general-promotion {
        width: 340px;
        flex-shrink: 0
    }
}

.general-promotion__image {
    width: 100%;
    height: 190px;
    min-height: 190px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: var(--rounded-sm);
    border-top-right-radius: var(--rounded-sm)
}

.general-promotion__info {
    padding-top: var(--indent-9);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-5)
}

.general-promotion__title {
    width: 100%;
    padding: 0 var(--indent-9);
    font-size: var(--tx-md);
    line-height: 30px;
    font-weight: 700;
    color: var(--tx-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.general-promotion__preview-text-wrapper {
    width: 100%;
    overflow-y: scroll;
    height: 100px;
    flex-grow: 1
}

.general-promotion__preview-text-wrapper::-webkit-scrollbar {
    width: 2px
}

.general-promotion__preview-text-wrapper::-webkit-scrollbar-thumb {
    background: var(--tx-accent)
}

.general-promotion__preview-text {
    padding: 0 var(--indent-9);
    font-size: 14px;
    line-height: 21px;
    color: var(--tx-secondary);
    overflow-y: scroll
}

.general-promotion__buttons {
    min-height: 97px;
    padding-bottom: var(--indent-5);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    gap: 10px;
    background-color: var(--bg-dark);
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm)
}

.general-promotion__info-button {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 130px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--tx-secondary);
    color: var(--tx-secondary);
    font-weight: 700
}

.general-promotion__info-button:hover {
    background-color: var(--bg-secondary)
}

.general-promotion__bonus-button {
    min-width: 130px;
    height: 48px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700
}

.general-promotion__details {
    position: absolute;
    width: 100%;
    height: 0;
    top: 100%;
    background-color: var(--bg-secondary);
    padding: var(--indent-5);
    display: flex;
    opacity: 0;
    flex-direction: column;
    gap: var(--indent-3);
    border-radius: var(--rounded-sm);
    transition: all .3s ease;
    will-change: auto
}

.general-promotion__details--open {
    opacity: 1;
    height: 100%;
    top: 0
}

.general-promotion__details-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.general-promotion__details-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--tx-secondary)
}

.general-promotion__details-content {
    overflow-y: auto;
    padding-right: var(--indent-2);
    color: var(--tx-secondary)
}

.general-promotion__details-content::-webkit-scrollbar {
    width: 2px
}

.general-promotion__details-content::-webkit-scrollbar-thumb {
    background: var(--tx-accent)
}

.promotions-header {
    flex-direction: row;
    justify-content: center;
    display: flex
}

.tournament-promotion {
    width: 100%;
    height: 509px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary);
    position: relative
}

@media (max-width: 768px) {
    .tournament-promotion {
        width: 340px;
        flex-shrink: 0
    }
}

@media (--md-down) {
    .tournament-promotion {
        width: 340px;
        flex-shrink: 0
    }
}

.tournament-promotion__image {
    width: 100%;
    height: 190px;
    min-height: 190px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: var(--rounded-sm);
    border-top-right-radius: var(--rounded-sm)
}

.tournament-promotion__title {
    padding: var(--indent-9) var(--indent-9) 0;
    width: 100%;
    font-size: var(--tx-lg);
    line-height: 150%;
    font-weight: 700;
    color: var(--tx-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.tournament-promotion__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--indent-5);
    padding: 0 var(--indent-9)
}

.tournament-promotion__info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.tournament-promotion__info-row-label {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center
}

.tournament-promotion__info-row-label-text {
    font-size: var(--tx-sm);
    line-height: 150%;
    color: var(--tx-secondary);
    max-width: 70px
}

.tournament-promotion__prize-pool-value {
    font-size: var(--tx-lg);
    line-height: 150%;
    color: var(--tx-accent);
    font-weight: 700
}

.tournament-promotion__countdown {
    display: flex;
    flex-direction: row;
    gap: 5px
}

.tournament-promotion__countdown-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.tournament-promotion__countdown-item-value {
    font-size: var(--tx-base);
    line-height: 150%;
    font-weight: 700;
    color: var(--tx-secondary)
}

.tournament-promotion__countdown-item-unit {
    font-size: 10px;
    line-height: 150%;
    font-weight: 400;
    color: var(--tx-secondary)
}

.tournament-promotion__buttons {
    min-height: 97px;
    padding-bottom: var(--indent-5);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
    background-color: var(--bg-dark);
    border-bottom-left-radius: var(--rounded-sm);
    border-bottom-right-radius: var(--rounded-sm)
}

.tournament-promotion__show-more-button {
    min-width: 130px;
    height: 48px;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700
}

.tournament-promotion__details {
    position: absolute;
    width: 100%;
    height: 0;
    top: 100%;
    background-color: var(--bg-secondary);
    padding: var(--indent-5);
    display: flex;
    opacity: 0;
    flex-direction: column;
    gap: var(--indent-3);
    border-radius: var(--rounded-sm);
    transition: all .3s ease;
    will-change: auto
}

.tournament-promotion__details--open {
    opacity: 1;
    height: 100%;
    top: 0
}

.tournament-promotion__details-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.tournament-promotion__details-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--tx-secondary)
}

.tournament-promotion__details-content {
    overflow-y: auto;
    padding-right: var(--indent-2);
    color: var(--tx-secondary)
}

.tournament-promotion__details-content::-webkit-scrollbar {
    width: 2px
}

.tournament-promotion__details-content::-webkit-scrollbar-thumb {
    background: var(--tx-accent)
}

.promotions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .promotions {
        gap: var(--indent-3)
    }
}

@media (--lg-down) {
    .promotions {
        gap: var(--indent-3)
    }
}

.promotions__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    grid-template-rows: auto;
    -moz-column-gap: var(--indent-5);
    column-gap: var(--indent-5);
    row-gap: var(--indent-5)
}

@media (max-width: 768px) {
    .promotions__container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: var(--indent-5);
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .promotions__container::-webkit-scrollbar {
        display: none
    }
}

@media (--md-down) {
    .promotions__container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: var(--indent-5);
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none
    }

    .promotions__container::-webkit-scrollbar {
        display: none
    }
}

.promotions__placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--tx-main)
}

.verification-badge {
    padding: var(--indent-1) var(--indent-2);
    font-family: Open Sans, sans-serif;
    color: var(--tx-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    border-radius: 80px
}

.verification-badge--pending {
    background-color: #89781a
}

.verification-badge--approved {
    background-color: #144f53
}

.verification-badge--declined {
    background-color: #952c2c
}

.settings-general-page {
    display: flex;
    flex-direction: column;
    align-items: center
}

.settings-general-page section {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .settings-general-page section {
        width: 100%
    }
}

@media (--lg-down) {
    .settings-general-page section {
        width: 100%
    }
}

.settings-general-page__section-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-6)
}

.settings-general-page__section-title {
    font-family: Fira Sans, sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: var(--tx-main)
}

.settings-general-page__section-body {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary)
}

.settings-general-page__section-content {
    padding: var(--indent-4)
}

.settings-general-page__section-content .input__item {
    color: var(--tx-secondary);
    border: 1px solid var(--bg-tertiary)
}

.settings-general-page__section-controls {
    display: flex;
    flex-direction: row;
    padding: var(--indent-4);
    border-top: 1px solid var(--bg-tertiary)
}

.settings-general-page__section-controls button {
    margin-left: auto;
    padding: var(--indent-3) var(--indent-6);
    font-size: 16;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer
}

.settings-form .switch {
    border: 1px solid var(--bg-tertiary)
}

.settings-form__label {
    display: flex;
    align-items: center;
    padding: var(--indent-4);
    gap: var(--indent-2)
}

.settings-form__description {
    display: flex;
    flex-direction: column;
    gap: var(--indent-1)
}

.settings-form__description-title {
    color: var(--tx-secondary);
    font-weight: 600;
    font-size: 14px
}

.settings-form__description-text {
    color: var(--tx-secondary);
    font-size: var(--tx-sm);
    opacity: .5
}

.settings-form__controls {
    display: flex;
    flex-direction: row;
    padding: var(--indent-4);
    border-top: 1px solid var(--bg-tertiary)
}

.settings-form__controls button {
    width: auto;
    margin-left: auto;
    padding: var(--indent-3) var(--indent-10);
    line-height: 24px;
    font-weight: 600;
    cursor: pointer
}

@media (max-width: 640px) {
    .settings-form__controls button {
        width: 100%
    }
}

@media (--sm-down) {
    .settings-form__controls button {
        width: 100%
    }
}

.settings-preferences-page {
    display: flex;
    flex-direction: column;
    align-items: center
}

.settings-preferences-page section {
    width: 550px;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .settings-preferences-page section {
        width: 100%
    }
}

@media (--lg-down) {
    .settings-preferences-page section {
        width: 100%
    }
}

.settings-preferences-page__section-title {
    font-family: Fira Sans, sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: var(--tx-main)
}

.settings-preferences-page__section-body {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4);
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary)
}

.error-message {
    font-size: var(--tx-sm);
    line-height: var(--tx-sm);
    font-weight: 600;
    font-size: var(--indent-3);
    color: var(--error)
}

.id-scan-file-picker {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.id-scan-file-picker__drag-here {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--bg-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-secondary);
    font-size: var(--tx-lg);
    background-color: rgb(from var(--bg-accent) r g b / .3)
}

@media (max-width: 1024px) {
    .id-scan-file-picker__drag-here {
        font-size: var(--tx-base)
    }
}

@media (--lg-down) {
    .id-scan-file-picker__drag-here {
        font-size: var(--tx-base)
    }
}

.id-scan-file-picker__preview {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--indent-4)
}

.id-scan-file-picker__preview-image {
    flex-shrink: 0;
    width: 178px;
    height: 114px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width: 1024px) {
    .id-scan-file-picker__preview-image {
        width: 113px;
        height: 72px
    }
}

@media (--lg-down) {
    .id-scan-file-picker__preview-image {
        width: 113px;
        height: 72px
    }
}

.id-scan-file-picker__preview-info {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.id-scan-file-picker__preview-info-title {
    font-size: var(--tx-lg);
    font-weight: 700;
    color: var(--tx-main)
}

.id-scan-file-picker__preview-info-text {
    font-weight: 400;
    line-height: 20px;
    color: var(--tx-secondary)
}

.id-scan-file-picker__preview-file {
    display: flex;
    flex-direction: row;
    gap: var(--indent-2);
    align-items: center
}

.id-scan-file-picker__preview-file-name {
    font-weight: 400;
    line-height: 21px;
    font-size: var(--tx-sm);
    color: var(--tx-secondary)
}

.id-scan-file-picker__preview-file-icon-button {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--error);
    display: flex;
    justify-content: center;
    align-items: center
}

.id-scan-file-picker__preview-file-icon-button svg {
    width: 8px;
    height: 8px
}

.id-scan-file-picker__preview-error {
    font-weight: 400;
    line-height: 21px;
    font-size: var(--tx-sm);
    color: var(--error)
}

.id-scan-file-picker__button {
    width: 100%;
    height: 120px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-tertiary);
    border-radius: var(--rounded-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--indent-4)
}

.id-scan-file-picker__button_icon {
    width: 24px;
    height: 24px
}

.id-scan-file-picker__button-text {
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary)
}

.success-message {
    width: 100%;
    padding: var(--indent-6);
    display: flex;
    flex-direction: row;
    gap: var(--indent-3);
    align-items: center;
    color: var(--tx-secondary);
    border: 1px solid var(--success);
    border-radius: var(--rounded-sm)
}

.success-message svg {
    fill: var(--success);
    min-width: 24px
}

.success-message span {
    display: flex;
    flex-direction: row;
    align-items: start;
    line-height: 20px
}

.id-scan-verification {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.id-scan-verification__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .id-scan-verification__title {
        font-size: 32px
    }
}

@media (--lg-down) {
    .id-scan-verification__title {
        font-size: 32px
    }
}

.id-scan-verification__text {
    margin: 0;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary)
}

.id-scan-verification__info {
    border: 2px solid rgb(from var(--bg-accent) r g b / .3);
    border-radius: var(--rounded-sm);
    padding: var(--indent-4) var(--indent-6);
    display: flex;
    align-items: center;
    gap: var(--indent-3)
}

.id-scan-verification__info-icon {
    border: 2px solid var(--warinig);
    border-radius: 100%;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.id-scan-verification__info-icon path {
    stroke: var(--warinig)
}

.id-scan-verification__warning {
    border: 2px solid var(--error);
    border-radius: var(--rounded-sm);
    padding: var(--indent-4) var(--indent-6);
    display: flex;
    align-items: center;
    gap: var(--indent-3)
}

.id-scan-verification__warning-icon {
    border: 2px solid var(--error);
    border-radius: 100%;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.id-scan-verification__warning-icon path {
    stroke: var(--error)
}

.id-scan-verification__form {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.id-scan-verification__submit-button {
    width: 40%
}

@media (max-width: 1024px) {
    .id-scan-verification__submit-button {
        width: 100%
    }
}

@media (--lg-down) {
    .id-scan-verification__submit-button {
        width: 100%
    }
}

.settings-profile-form {
    display: flex;
    flex-direction: column;
    gap: var(--indent-5);
    padding-bottom: 34px
}

.settings-profile-form__header {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.settings-profile-form__header-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    color: var(--tx-main)
}

@media (max-width: 1024px) {
    .settings-profile-form__header-title {
        font-size: 32px
    }
}

@media (--lg-down) {
    .settings-profile-form__header-title {
        font-size: 32px
    }
}

.settings-profile-form__header-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--tx-secondary)
}

.settings-profile-form__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

.settings-profile-form__section {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.settings-profile-form__section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    color: var(--tx-main)
}

.settings-profile-form__section-fields {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.settings-profile-form__section-fields-row {
    display: flex;
    flex-direction: row;
    gap: var(--indent-4)
}

.settings-profile-form__field-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.settings-profile-form__select-button,
.settings-profile-form__combobox-button {
    background-color: var(--bg-secondary);
    padding: var(--indent-3) var(--indent-4);
    border-radius: var(--rounded);
    height: 50px
}

.settings-profile-form__select-button--error,
.settings-profile-form__combobox-button--error {
    border: 1px solid var(--error)
}

.settings-profile-form__submit-button {
    width: 200px;
    background: var(--gradient-horizontal)
}

@media (max-width: 1024px) {
    .settings-profile-form__submit-button {
        width: 100%
    }
}

@media (--lg-down) {
    .settings-profile-form__submit-button {
        width: 100%
    }
}

.settings-verify-page {
    display: flex;
    flex-direction: column;
    align-items: center
}

.settings-verify-page section {
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 1024px) {
    .settings-verify-page section {
        max-width: initial;
        width: 100%
    }
}

@media (--lg-down) {
    .settings-verify-page section {
        max-width: initial;
        width: 100%
    }
}

.settings-verify-page__tab {
    width: 138px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-main);
    border-bottom: 4px solid rgb(from var(--bg-accent) r g b / .3);
    font-size: var(--tx-base);
    line-height: 24px
}

.settings-verify-page__tab--completed {
    border-bottom: 4px solid rgb(from var(--success) r g b / .3)
}

.settings-verify-page__tab--active {
    border-bottom: 4px solid var(--bg-accent)
}

.settings-verify-page__tab--completed.settings-verify-page__tab--active {
    border-bottom: 4px solid var(--success)
}

.settings-verify-page-tabs__list {
    display: flex;
    margin-bottom: var(--indent-6)
}

.sports-group {
    border-top: 1px solid var(--bg-separator);
    padding: var(--indent-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.sports-group__group-name {
    text-transform: uppercase;
    color: var(--tx-main);
    font-size: 1.25rem;
    font-weight: 700
}

.sports-group__sport {
    padding: var(--indent-3) var(--indent-2);
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    background: var(--bg-secondary);
    border-radius: var(--rounded-sm);
    color: var(--tx-secondary);
    text-decoration: none
}

.all-sports-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

@media (max-width: 640px) {
    .all-sports-page {
        gap: var(--indent-4)
    }
}

@media (--sm-down) {
    .all-sports-page {
        gap: var(--indent-4)
    }
}

.all-sports-page__search {
    background-color: var(--bg-secondary);
    height: 52px
}

.live-indicator {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center
}

.live-indicator__icon {
    width: 6px;
    height: 6px;
    background: green;
    box-shadow: 0 0 8px green;
    border-radius: 6px
}

.live-indicator__text {
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--tx-secondary)
}

.outright-event-row {
    padding: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 44px 66px;
    row-gap: 8px;
    background-color: var(--bg-main);
    border-radius: 8px
}

.outright-event-row__primary-info {
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--tx-secondary);
    border-bottom: 1px solid var(--bg-tertiary)
}

.outright-event-row__primary-info span {
    white-space: nowrap
}

@media (max-width: 768px) {
    .outright-event-row__primary-info {
        padding-left: 0;
        padding-right: 0
    }
}

@media (--md-down) {
    .outright-event-row__primary-info {
        padding-left: 0;
        padding-right: 0
    }
}

.outright-event-row__sport-icon {
    fill: var(--tx-accent);
    color: var(--tx-accent)
}

.outright-event-row__competition {
    color: var(--tx-accent);
    text-decoration: none
}

.outright-event-row__secondary-info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px
}

@media (max-width: 768px) {
    .outright-event-row__secondary-info {
        padding-left: 0;
        padding-right: 0
    }
}

@media (--md-down) {
    .outright-event-row__secondary-info {
        padding-left: 0;
        padding-right: 0
    }
}

.outright-event-row__event-name {
    color: var(--tx-main);
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden;
    text-decoration: none
}

.outright-event-row__event-name:hover {
    text-decoration: underline;
    text-decoration-color: var(--tx-main)
}

.outright-event-row__control {
    color: var(--tx-secondary);
    transition: all var(--duration)
}

.outright-event-row__control:hover {
    color: var(--tx-main)
}

.outright-event-row__control svg {
    fill: currentColor
}

.outright-event-row__count {
    text-decoration: none;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px
}

.event-row-score {
    margin-left: auto;
    display: grid;
    row-gap: 4px;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column
}

.event-row-score__item {
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-main);
    text-align: center;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px
}

.event-row-score__item--active {
    width: 50px;
    border-radius: 8px;
    color: var(--tx-accent);
    background-color: var(--bg-secondary)
}

.event-row {
    padding: 8px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 44px 66px;
    row-gap: 8px;
    background-color: var(--bg-main);
    border-radius: 8px
}

@media (max-width: 768px) {
    .event-row {
        grid-template-columns: 1fr;
        grid-template-rows: 40px 44px 66px 24px 110px
    }
}

@media (--md-down) {
    .event-row {
        grid-template-columns: 1fr;
        grid-template-rows: 40px 44px 66px 24px 110px
    }
}

.event-row__primary-info {
    padding-left: 16px;
    padding-right: 16px;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--tx-secondary);
    border-bottom: 1px solid var(--bg-tertiary)
}

.event-row__primary-info span {
    white-space: nowrap
}

@media (max-width: 768px) {
    .event-row__primary-info {
        padding-left: 0;
        padding-right: 0;
        order: 1
    }
}

@media (--md-down) {
    .event-row__primary-info {
        padding-left: 0;
        padding-right: 0;
        order: 1
    }
}

.event-row__sport-icon {
    fill: var(--tx-accent)
}

@media (max-width: 768px) {
    .event-row__category-competition-wrapper-desktop {
        display: none
    }
}

@media (--md-down) {
    .event-row__category-competition-wrapper-desktop {
        display: none
    }
}

.event-row__category-competition-wrapper-mobile {
    order: 2;
    display: none;
    color: var(--tx-secondary);
    align-items: center;
    border-bottom: 1px solid var(--bg-tertiary);
    overflow: hidden
}

@media (max-width: 768px) {
    .event-row__category-competition-wrapper-mobile {
        display: flex
    }
}

@media (--md-down) {
    .event-row__category-competition-wrapper-mobile {
        display: flex
    }
}

.event-row__competition {
    color: var(--tx-accent);
    text-decoration: none
}

.event-row__secondary-info {
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--tx-secondary);
    border-bottom: 1px solid var(--bg-tertiary)
}

@media (max-width: 768px) {
    .event-row__secondary-info {
        order: 4;
        border-bottom: none
    }
}

@media (--md-down) {
    .event-row__secondary-info {
        order: 4;
        border-bottom: none
    }
}

.event-row__secondary-info-placeholder {
    flex-basis: 100px;
    flex-shrink: 100
}

@media (max-width: 768px) {
    .event-row__secondary-info-placeholder {
        display: none
    }
}

@media (--md-down) {
    .event-row__secondary-info-placeholder {
        display: none
    }
}

.event-row__controls {
    flex-shrink: 100;
    flex-basis: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.event-row__control {
    width: 40px;
    height: 40px;
    color: var(--tx-main);
    transition: all var(--duration)
}

.event-row__control svg {
    fill: currentColor
}

.event-row__count {
    height: auto;
    width: auto;
    min-width: 40px;
    text-decoration: none;
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px
}

.event-row__competitors-score {
    padding-left: 16px;
    padding-right: 16px;
    display: flex
}

@media (max-width: 768px) {
    .event-row__competitors-score {
        order: 3;
        padding-left: 0;
        padding-right: 0
    }
}

@media (--md-down) {
    .event-row__competitors-score {
        order: 3;
        padding-left: 0;
        padding-right: 0
    }
}

.event-row__competitors {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    text-decoration: none
}

.event-row__competitors:hover {
    text-decoration: underline;
    text-decoration-color: var(--tx-main)
}

.event-row__competitor {
    display: flex;
    align-items: center;
    color: var(--tx-main);
    font-family: Open Sans, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    overflow: hidden
}

.event-row__selections {
    width: 100%;
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-template-rows: 1fr
}

.event-row__selections>:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px
}

.event-row__selections>:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

@media (max-width: 768px) {
    .event-row__selections {
        order: 5
    }
}

@media (--md-down) {
    .event-row__selections {
        order: 5
    }
}

.trim-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.events-page__loader {
    margin: auto
}

.events-page__title {
    margin-top: 48px;
    margin-bottom: 32px;
    font-family: Fira Sans, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    color: var(--tx-main)
}

@media (max-width: 768px) {
    .events-page__title {
        margin-top: 24px;
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 24px
    }
}

@media (--md-down) {
    .events-page__title {
        margin-top: 24px;
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 24px
    }
}

.events-page__content {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--bg-accent)
}

.events-page__empty-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-size: 24px
}

.sportsbook-lobby-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

@media (max-width: 640px) {
    .sportsbook-lobby-page {
        gap: var(--indent-3)
    }
}

@media (--sm-down) {
    .sportsbook-lobby-page {
        gap: var(--indent-3)
    }
}

.sportsbook-lobby-page__banner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.masonry__container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--indent-6)
}

.masonry__column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.sportsbook-bets {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--indent-6);
    margin-bottom: var(--indent-6)
}

.sportsbook-bets__loader-container,
.sportsbook-bets__placeholder-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px
}

.sportsbook-bets__placeholder {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--tx-main)
}

.categories__category {
    background: var(--bg-secondary);
    padding: var(--indent-2) 0
}

.categories__category .expandable__button {
    color: var(--tx-secondary);
    font-weight: 600;
    padding: var(--indent-2) var(--indent-4);
    transition: color var(--duration)
}

.categories__category .expandable__button:hover,
.categories__category .expandable--expanded .expandable__button {
    color: var(--tx-accent)
}

.categories__container>*:first-child {
    border-radius: var(--rounded-sm) var(--rounded-sm) 0 0
}

.categories__container>*:last-child {
    border-radius: 0 0 var(--rounded-sm) var(--rounded-sm)
}

.categories__container>*:not(:last-child) {
    border-bottom: 1px solid var(--bg-main)
}

.categories__competitions-container {
    display: flex;
    flex-direction: column;
    margin: var(--indent-2) var(--indent-4)
}

.categories__competitions-container>*:first-child {
    border-radius: var(--rounded-sm) var(--rounded-sm) 0 0
}

.categories__competitions-container>*:last-child {
    border-radius: 0 0 var(--rounded-sm) var(--rounded-sm)
}

.categories__competitions-container>*:only-child {
    border-radius: var(--rounded-sm)
}

.categories__competitions-container>*:not(:last-child) {
    border-bottom: 1px solid var(--bg-tertiary)
}

.categories__competition {
    text-decoration: none;
    color: var(--tx-secondary);
    background: var(--bg-main);
    padding: var(--indent-3) var(--indent-4);
    transition: color var(--duration)
}

.categories__competition:hover {
    color: var(--tx-accent)
}

.competition-events__loader {
    margin: auto
}

.competition-events__content {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--bg-secondary);
    border-radius: 8px
}

.competition-events__empty-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-size: 24px
}

.competition-page {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.competition-page__loader {
    margin: auto
}

.competition-page__banner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.competition-page__title-container {
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.competition-page__title-container .sport-icon {
    fill: var(--bg-accent)
}

.competition-page__title {
    color: var(--tx-main);
    text-transform: capitalize;
    font-weight: 700
}

.event-info {
    background: var(--bg-main);
    min-width: 350px
}

.event-info__header {
    background: var(--bg-secondary);
    padding: var(--indent-2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--tx-secondary)
}

.event-info__header .sport-icon {
    margin-left: auto
}

.event-info__header--live .sport-icon {
    margin-left: initial
}

.event-info__live {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.event-info__live-indicator {
    background: var(--success);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success)
}

.event-info__part--minutes {
    font-weight: 600;
    color: var(--tx-main)
}

.event-info__row {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    padding-left: var(--indent-2)
}

.event-info__row:not(:last-child) {
    border-bottom: 1px solid var(--bg-tertiary)
}

.event-info__team-logo {
    width: 18px;
    height: 18px
}

.event-info__team {
    color: var(--tx-secondary);
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.event-info__team .sport-icon {
    fill: var(--bg-accent)
}

.event-info__results {
    height: 100%;
    display: flex
}

.event-info__result {
    display: inline-block;
    height: 100%;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-secondary)
}

.event-info__result--total {
    background: var(--bg-tertiary);
    color: var(--tx-accent)
}

.sr-bb {
    font-family: Roboto, Noto, Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align: left;
    background: #1b1c1b
}

.sr-bb.sr-rtl {
    text-align: right
}

.sr-bb .sr-bb {
    background: none
}

.sr-bb .srt-base-1 {
    background-color: transparent;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-win {
    background-color: transparent;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-draw {
    background-color: transparent;
    color: #fff6;
    border-color: #fff6
}

.sr-bb .srt-base-1-lose {
    background-color: transparent;
    color: #f1e806;
    border-color: #f1e806
}

.sr-bb .srt-base-1-is-active {
    background-color: #07af421f;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-is-active-2 {
    background-color: #303130fe;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-is-hoverable:hover {
    background-color: #07af421f;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-primary,
.sr-bb .srt-base-1-home-1 {
    background-color: transparent;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-away-1 {
    background-color: transparent;
    color: #f1e806;
    border-color: #f1e806
}

.sr-bb .srt-base-1-home-2 {
    background-color: transparent;
    color: #07af42;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-away-2 {
    background-color: transparent;
    color: #f1e806;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-home-3 {
    background-color: transparent;
    color: #07af42;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-away-3 {
    background-color: transparent;
    color: #f1e806;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-home-4 {
    background-color: transparent;
    color: #0d8336;
    border-color: #0d8336
}

.sr-bb .srt-base-1-away-4 {
    background-color: transparent;
    color: #b1ab0c;
    border-color: #b1ab0c
}

.sr-bb .srt-base-1-home-5 {
    background-color: transparent;
    color: #58c980fb;
    border-color: #58c980fb
}

.sr-bb .srt-base-1-away-5 {
    background-color: transparent;
    color: #f6f058fb;
    border-color: #f6f058fb
}

.sr-bb .srt-base-1-background,
.sr-bb .srt-base-2 {
    background-color: #1b1c1b;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-2-is-active,
.sr-bb .srt-base-2-is-hoverable:hover,
.sr-bb .srt-base-3 {
    background-color: #192e20;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-3-is-active,
.sr-bb .srt-base-3-is-hoverable:hover {
    background-color: #183522;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-3-background {
    background-color: #1b1c1b;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-4 {
    background-color: #1a231d;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-5-is-active,
.sr-bb .srt-base-5-is-hoverable:hover {
    background-color: #164225;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-base-6 {
    background-color: transparent;
    color: #fffffff2;
    border-color: #ffffff4d
}

.sr-bb .srt-primary-1 {
    background-color: #07af42;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-1-is-active,
.sr-bb .srt-primary-1-is-hoverable:hover {
    background-color: #20b755;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-1-is-disabled {
    background-color: #39bf68;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-2 {
    background-color: #4cc577fb;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-3 {
    background-color: #20b755;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-4,
.sr-bb .srt-primary-5 {
    background-color: #0f7432;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-5-is-hoverable:hover {
    background-color: #07af42;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-6 {
    background-color: #69cf8dfa;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-7,
.sr-bb .srt-primary-8 {
    background-color: #07af42;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-8-is-active-1 {
    background-color: #20b755;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-8-is-active-2 {
    background-color: #20b755;
    color: #fff;
    border-color: #1b1c1b
}

.sr-bb .srt-primary-9 {
    background-color: #154827;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-primary-10 {
    background-color: #0b923a;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-11 {
    background-color: #20b755;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-primary-12 {
    background-color: #07af42;
    color: #fff;
    border-color: #fff
}

.sr-bb .srt-primary-13 {
    background-color: #1a231d;
    color: #fff;
    border-color: #07af424d
}

.sr-bb .srt-base-1-primary-1 {
    background-color: transparent;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-primary-2 {
    background-color: transparent;
    color: #4cc577fb;
    border-color: #4cc577fb
}

.sr-bb .srt-base-1-primary-3 {
    background-color: transparent;
    color: #20b755;
    border-color: #20b755
}

.sr-bb .srt-base-1-primary-4,
.sr-bb .srt-base-1-primary-5 {
    background-color: transparent;
    color: #0f7432;
    border-color: #0f7432
}

.sr-bb .srt-base-1-primary-6 {
    background-color: transparent;
    color: #69cf8dfa;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-primary-7,
.sr-bb .srt-base-1-primary-8 {
    background-color: transparent;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-primary-9 {
    background-color: transparent;
    color: #154827;
    border-color: #154827
}

.sr-bb .srt-base-1-primary-10 {
    background-color: transparent;
    color: #0b923a;
    border-color: #0b923a
}

.sr-bb .srt-base-1-primary-11 {
    background-color: transparent;
    color: #20b755;
    border-color: #20b755
}

.sr-bb .srt-base-1-primary-13 {
    background-color: #1b1c1b;
    color: #1a231d;
    border-color: #07af424d
}

.sr-bb .srt-base-1-neutral-1 {
    background-color: transparent;
    color: #363736;
    border-color: #363736
}

.sr-bb .srt-base-1-neutral-2 {
    background-color: transparent;
    color: #e6e6e6;
    border-color: #e6e6e6
}

.sr-bb .srt-base-1-neutral-3 {
    background-color: transparent;
    color: #ffffff1f;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-neutral-4 {
    background-color: transparent;
    color: #aaa;
    border-color: #aaa
}

.sr-bb .srt-base-1-neutral-5 {
    background-color: transparent;
    color: #c2c2c2;
    border-color: #c2c2c2
}

.sr-bb .srt-base-1-neutral-6 {
    background-color: transparent;
    color: #4e4e4e;
    border-color: #4e4e4e
}

.sr-bb .srt-base-1-neutral-7 {
    background-color: transparent;
    color: #aaa;
    border-color: #aaa
}

.sr-bb .srt-base-1-neutral-8 {
    background-color: transparent;
    color: #363736;
    border-color: #363736
}

.sr-bb .srt-base-1-neutral-9 {
    background-color: transparent;
    color: #272827fe;
    border-color: #272827fe
}

.sr-bb .srt-base-1-neutral-10 {
    background-color: transparent;
    color: #343534;
    border-color: #343534
}

.sr-bb .srt-base-1-neutral-11 {
    background-color: transparent;
    color: #717171fa;
    border-color: #717171fa
}

.sr-bb .srt-base-1-neutral-12 {
    background-color: transparent;
    color: #b6b6b6;
    border-color: #b6b6b6
}

.sr-bb .srt-base-1-neutral-13 {
    background-color: transparent;
    color: #303130;
    border-color: #303130
}

.sr-bb .srt-base-1-is-active-primary,
.sr-bb .srt-base-1-is-active-home-1 {
    background-color: #07af421f;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-is-active-away-1 {
    background-color: #07af421f;
    color: #f1e806;
    border-color: #f1e806
}

.sr-bb .srt-base-1-is-active-home-2 {
    background-color: #07af421f;
    color: #07af42;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-is-active-away-2 {
    background-color: #07af421f;
    color: #f1e806;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-is-active-home-3 {
    background-color: #07af421f;
    color: #07af42;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-is-active-away-3 {
    background-color: #07af421f;
    color: #f1e806;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-is-active-home-4 {
    background-color: #07af421f;
    color: #0d8336;
    border-color: #0d8336
}

.sr-bb .srt-base-1-is-active-away-4 {
    background-color: #07af421f;
    color: #b1ab0c;
    border-color: #b1ab0c
}

.sr-bb .srt-base-1-is-active-home-5 {
    background-color: #07af421f;
    color: #58c980fb;
    border-color: #58c980fb
}

.sr-bb .srt-base-1-is-active-away-5 {
    background-color: #07af421f;
    color: #f6f058fb;
    border-color: #f6f058fb
}

.sr-bb .srt-base-1-is-active-primary-1 {
    background-color: #07af421f;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-is-active-primary-2 {
    background-color: #07af421f;
    color: #4cc577fb;
    border-color: #4cc577fb
}

.sr-bb .srt-base-1-is-active-primary-3 {
    background-color: #07af421f;
    color: #20b755;
    border-color: #20b755
}

.sr-bb .srt-base-1-is-active-primary-4,
.sr-bb .srt-base-1-is-active-primary-5 {
    background-color: #07af421f;
    color: #0f7432;
    border-color: #0f7432
}

.sr-bb .srt-base-1-is-active-primary-6 {
    background-color: #07af421f;
    color: #69cf8dfa;
    border-color: #69cf8dfa
}

.sr-bb .srt-base-1-is-active-primary-7,
.sr-bb .srt-base-1-is-active-primary-8 {
    background-color: #07af421f;
    color: #07af42;
    border-color: #07af42
}

.sr-bb .srt-base-1-is-active-primary-9 {
    background-color: #07af421f;
    color: #154827;
    border-color: #154827
}

.sr-bb .srt-base-1-is-active-primary-10 {
    background-color: #07af421f;
    color: #0b923a;
    border-color: #0b923a
}

.sr-bb .srt-base-1-is-active-primary-11 {
    background-color: #07af421f;
    color: #20b755;
    border-color: #20b755
}

.sr-bb .srt-base-1-is-active-neutral-1 {
    background-color: #07af421f;
    color: #363736;
    border-color: #363736
}

.sr-bb .srt-base-1-is-active-neutral-2 {
    background-color: #07af421f;
    color: #e6e6e6;
    border-color: #e6e6e6
}

.sr-bb .srt-base-1-is-active-neutral-3 {
    background-color: #07af421f;
    color: #ffffff1f;
    border-color: #ffffff1f
}

.sr-bb .srt-base-1-is-active-neutral-4 {
    background-color: #07af421f;
    color: #aaa;
    border-color: #aaa
}

.sr-bb .srt-base-1-is-active-neutral-5 {
    background-color: #07af421f;
    color: #c2c2c2;
    border-color: #c2c2c2
}

.sr-bb .srt-base-1-is-active-neutral-6 {
    background-color: #07af421f;
    color: #4e4e4e;
    border-color: #4e4e4e
}

.sr-bb .srt-base-1-is-active-neutral-7 {
    background-color: #07af421f;
    color: #aaa;
    border-color: #aaa
}

.sr-bb .srt-base-1-is-active-neutral-8 {
    background-color: #07af421f;
    color: #363736;
    border-color: #363736
}

.sr-bb .srt-base-1-is-active-neutral-9 {
    background-color: #07af421f;
    color: #272827fe;
    border-color: #272827fe
}

.sr-bb .srt-base-1-is-active-neutral-10 {
    background-color: #07af421f;
    color: #343534;
    border-color: #343534
}

.sr-bb .srt-base-1-is-active-neutral-11 {
    background-color: #07af421f;
    color: #717171fa;
    border-color: #717171fa
}

.sr-bb .srt-base-1-is-active-neutral-12 {
    background-color: #07af421f;
    color: #b6b6b6;
    border-color: #b6b6b6
}

.sr-bb .srt-base-1-is-active-neutral-13 {
    background-color: #07af421f;
    color: #303130;
    border-color: #303130
}

.sr-bb .srt-home-1 {
    background-color: #07af42;
    color: #fff;
    border-color: #07af42
}

.sr-bb .srt-away-1 {
    background-color: #f1e806;
    color: #000;
    border-color: #f1e806
}

.sr-bb .srt-home-2 {
    background-color: #07af42;
    color: #fff;
    border-color: #69cf8dfa
}

.sr-bb .srt-away-2 {
    background-color: #f1e806;
    color: #000;
    border-color: #69cf8dfa
}

.sr-bb .srt-home-3 {
    background-color: #07af42;
    color: #fff;
    border-color: #1b1c1b
}

.sr-bb .srt-away-3 {
    background-color: #f1e806;
    color: #000;
    border-color: #1b1c1b
}

.sr-bb .srt-home-4 {
    background-color: #0d8336;
    color: #fff;
    border-color: #0d8336
}

.sr-bb .srt-away-4 {
    background-color: #b1ab0c;
    color: #000;
    border-color: #b1ab0c
}

.sr-bb .srt-home-5 {
    background-color: #58c980fb;
    color: #fff;
    border-color: #58c980fb
}

.sr-bb .srt-away-5 {
    background-color: #f6f058fb;
    color: #000;
    border-color: #f6f058fb
}

.sr-bb .srt-home-6 {
    background-color: #07af4233;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-away-6 {
    background-color: #f1e80633;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-home-6-is-hoverable:hover {
    background-color: #07af4233;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-away-6-is-hoverable:hover {
    background-color: #f1e80633;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-1 {
    background-color: #363736;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-2 {
    background-color: #e6e6e6;
    color: #000;
    border-color: #ffffff29
}

.sr-bb .srt-neutral-3 {
    background-color: #ffffff1f;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-4 {
    background-color: #aaa;
    color: #000;
    border-color: #00000029
}

.sr-bb .srt-neutral-5 {
    background-color: #c2c2c2;
    color: #000;
    border-color: #00000029
}

.sr-bb .srt-neutral-6 {
    background-color: #4e4e4e;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-7 {
    background-color: #aaa;
    color: #000;
    border-color: #00000029
}

.sr-bb .srt-neutral-8 {
    background-color: #363736;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-9 {
    background-color: #272827fe;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-10 {
    background-color: #343534;
    color: #ffffffd1;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-11 {
    background-color: #717171fa;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-neutral-12 {
    background-color: #b6b6b6;
    color: #000;
    border-color: #00000029
}

.sr-bb .srt-neutral-13 {
    background-color: #303130;
    color: #fffffff2;
    border-color: #ffffff1f
}

.sr-bb .srt-win {
    background-color: #07af42;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-draw {
    background-color: #fff6;
    color: #000;
    border-color: #ffffff29
}

.sr-bb .srt-lose {
    background-color: #f1e806;
    color: #000;
    border-color: #ffffff29
}

.sr-bb .srt-text-secondary {
    opacity: .8;
    -webkit-font-smoothing: antialiased
}

.sr-bb .srt-text-disabled {
    opacity: .6
}

.sr-bb .srt-text-tertiary {
    opacity: .7
}

.sr-bb .srt-primary-1 .srt-text-secondary,
.sr-bb .srt-primary-1.srt-text-secondary,
.sr-bb .srt-primary-1-is-active .srt-text-secondary,
.sr-bb .srt-primary-1-is-active.srt-text-secondary,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-secondary,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-secondary,
.sr-bb .srt-primary-1-is-disabled .srt-text-secondary,
.sr-bb .srt-primary-1-is-disabled.srt-text-secondary,
.sr-bb .srt-primary-2 .srt-text-secondary,
.sr-bb .srt-primary-2.srt-text-secondary,
.sr-bb .srt-primary-3 .srt-text-secondary,
.sr-bb .srt-primary-3.srt-text-secondary,
.sr-bb .srt-primary-4 .srt-text-secondary,
.sr-bb .srt-primary-4.srt-text-secondary,
.sr-bb .srt-primary-5 .srt-text-secondary,
.sr-bb .srt-primary-5.srt-text-secondary,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-secondary,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-secondary,
.sr-bb .srt-primary-6 .srt-text-secondary,
.sr-bb .srt-primary-6.srt-text-secondary,
.sr-bb .srt-primary-7 .srt-text-secondary,
.sr-bb .srt-primary-7.srt-text-secondary,
.sr-bb .srt-primary-8 .srt-text-secondary,
.sr-bb .srt-primary-8.srt-text-secondary,
.sr-bb .srt-primary-8-is-active-1 .srt-text-secondary,
.sr-bb .srt-primary-8-is-active-1.srt-text-secondary,
.sr-bb .srt-primary-8-is-active-2 .srt-text-secondary,
.sr-bb .srt-primary-8-is-active-2.srt-text-secondary,
.sr-bb .srt-primary-9 .srt-text-secondary,
.sr-bb .srt-primary-9.srt-text-secondary,
.sr-bb .srt-primary-10 .srt-text-secondary,
.sr-bb .srt-primary-10.srt-text-secondary,
.sr-bb .srt-primary-11 .srt-text-secondary,
.sr-bb .srt-primary-11.srt-text-secondary,
.sr-bb .srt-primary-12 .srt-text-secondary,
.sr-bb .srt-primary-12.srt-text-secondary,
.sr-bb .srt-primary-13 .srt-text-secondary,
.sr-bb .srt-primary-13.srt-text-secondary {
    opacity: .8;
    -webkit-font-smoothing: antialiased
}

.sr-bb .srt-primary-1 .srt-text-disabled,
.sr-bb .srt-primary-1.srt-text-disabled,
.sr-bb .srt-primary-1-is-active .srt-text-disabled,
.sr-bb .srt-primary-1-is-active.srt-text-disabled,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-disabled,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-disabled,
.sr-bb .srt-primary-1-is-disabled .srt-text-disabled,
.sr-bb .srt-primary-1-is-disabled.srt-text-disabled,
.sr-bb .srt-primary-2 .srt-text-disabled,
.sr-bb .srt-primary-2.srt-text-disabled,
.sr-bb .srt-primary-3 .srt-text-disabled,
.sr-bb .srt-primary-3.srt-text-disabled,
.sr-bb .srt-primary-4 .srt-text-disabled,
.sr-bb .srt-primary-4.srt-text-disabled,
.sr-bb .srt-primary-5 .srt-text-disabled,
.sr-bb .srt-primary-5.srt-text-disabled,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-disabled,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-disabled,
.sr-bb .srt-primary-6 .srt-text-disabled,
.sr-bb .srt-primary-6.srt-text-disabled,
.sr-bb .srt-primary-7 .srt-text-disabled,
.sr-bb .srt-primary-7.srt-text-disabled,
.sr-bb .srt-primary-8 .srt-text-disabled,
.sr-bb .srt-primary-8.srt-text-disabled,
.sr-bb .srt-primary-8-is-active-1 .srt-text-disabled,
.sr-bb .srt-primary-8-is-active-1.srt-text-disabled,
.sr-bb .srt-primary-8-is-active-2 .srt-text-disabled,
.sr-bb .srt-primary-8-is-active-2.srt-text-disabled,
.sr-bb .srt-primary-9 .srt-text-disabled,
.sr-bb .srt-primary-9.srt-text-disabled,
.sr-bb .srt-primary-10 .srt-text-disabled,
.sr-bb .srt-primary-10.srt-text-disabled,
.sr-bb .srt-primary-11 .srt-text-disabled,
.sr-bb .srt-primary-11.srt-text-disabled,
.sr-bb .srt-primary-12 .srt-text-disabled,
.sr-bb .srt-primary-12.srt-text-disabled,
.sr-bb .srt-primary-13 .srt-text-disabled,
.sr-bb .srt-primary-13.srt-text-disabled {
    opacity: .6
}

.sr-bb .srt-primary-1 .srt-text-tertiary,
.sr-bb .srt-primary-1.srt-text-tertiary,
.sr-bb .srt-primary-1-is-active .srt-text-tertiary,
.sr-bb .srt-primary-1-is-active.srt-text-tertiary,
.sr-bb .srt-primary-1-is-hoverable:hover .srt-text-tertiary,
.sr-bb .srt-primary-1-is-hoverable:hover.srt-text-tertiary,
.sr-bb .srt-primary-1-is-disabled .srt-text-tertiary,
.sr-bb .srt-primary-1-is-disabled.srt-text-tertiary,
.sr-bb .srt-primary-2 .srt-text-tertiary,
.sr-bb .srt-primary-2.srt-text-tertiary,
.sr-bb .srt-primary-3 .srt-text-tertiary,
.sr-bb .srt-primary-3.srt-text-tertiary,
.sr-bb .srt-primary-4 .srt-text-tertiary,
.sr-bb .srt-primary-4.srt-text-tertiary,
.sr-bb .srt-primary-5 .srt-text-tertiary,
.sr-bb .srt-primary-5.srt-text-tertiary,
.sr-bb .srt-primary-5-is-hoverable:hover .srt-text-tertiary,
.sr-bb .srt-primary-5-is-hoverable:hover.srt-text-tertiary,
.sr-bb .srt-primary-6 .srt-text-tertiary,
.sr-bb .srt-primary-6.srt-text-tertiary,
.sr-bb .srt-primary-7 .srt-text-tertiary,
.sr-bb .srt-primary-7.srt-text-tertiary,
.sr-bb .srt-primary-8 .srt-text-tertiary,
.sr-bb .srt-primary-8.srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-1 .srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-1.srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-2 .srt-text-tertiary,
.sr-bb .srt-primary-8-is-active-2.srt-text-tertiary,
.sr-bb .srt-primary-9 .srt-text-tertiary,
.sr-bb .srt-primary-9.srt-text-tertiary,
.sr-bb .srt-primary-10 .srt-text-tertiary,
.sr-bb .srt-primary-10.srt-text-tertiary,
.sr-bb .srt-primary-11 .srt-text-tertiary,
.sr-bb .srt-primary-11.srt-text-tertiary,
.sr-bb .srt-primary-12 .srt-text-tertiary,
.sr-bb .srt-primary-12.srt-text-tertiary,
.sr-bb .srt-primary-13 .srt-text-tertiary,
.sr-bb .srt-primary-13.srt-text-tertiary {
    opacity: .7
}

.sr-bb .srt-icon {
    opacity: .33
}

.sr-bb .srt-icon-secondary {
    opacity: .7
}

.sr-bb .srt-elevation-1 {
    box-shadow: 0 1px 2px #0003, 0 1px 3px #0000001a
}

.sr-bb .srt-elevation-2 {
    box-shadow: 0 3px 6px #0000003b, 0 3px 6px #00000029
}

.sr-bb .srt-elevation-3 {
    box-shadow: 0 6px 6px #00000042, 0 10px 20px #00000030
}

.sr-bb .srt-elevation-center-2 {
    box-shadow: 0 1px 5px #0000003b, 0 1px 5px #00000029
}

.sr-bb .srt-inset-top-1 {
    box-shadow: inset 0 1px 2px #0000003b
}

.sr-bb .srt-inset-bottom-1 {
    box-shadow: inset 0 -1px 2px #0000003b
}

.sr-bb .srt-inset-top-2 {
    box-shadow: inset 0 3px 6px #0000003b
}

.sr-bb .srt-inset-bottom-2 {
    box-shadow: inset 0 -3px 6px #0000003b
}

.sr-bb .srt-inset-top-3 {
    box-shadow: inset 0 6px 6px #0000003b
}

.sr-bb .srt-inset-bottom-3 {
    box-shadow: inset 0 -6px 6px #0000003b
}

.sr-bb .srt-info {
    background-color: #0072b11a;
    color: #0072b1;
    border-color: #0072b1
}

.sr-bb .srt-fill-info {
    fill: #0072b1
}

.sr-bb .srt-stroke-info {
    stroke: #0072b1
}

.sr-bb .srt-warning {
    background-color: #e573001a;
    color: #e57300;
    border-color: #e57300
}

.sr-bb .srt-fill-warning {
    fill: #e57300
}

.sr-bb .srt-stroke-warning {
    stroke: #e57300
}

.sr-bb .srt-error {
    background-color: #ee3b3b1a;
    color: #ee3b3b;
    border-color: #ee3b3b
}

.sr-bb .srt-fill-error {
    fill: #ee3b3b
}

.sr-bb .srt-stroke-error {
    stroke: #ee3b3b
}

.sr-bb .srt-fill-blue-card {
    fill: #2579ad
}

.sr-bb .srt-stroke-blue-card {
    stroke: #2579ad
}

.sr-bb .srt-fill-green-card {
    fill: #2cbd00
}

.sr-bb .srt-stroke-green-card {
    stroke: #2cbd00
}

.sr-bb .srt-fill-soccer-yellow-card {
    fill: #ffbf00
}

.sr-bb .srt-stroke-soccer-yellow-card {
    stroke: #ffbf00
}

.sr-bb .srt-fill-soccer-red-card {
    fill: #e43b3b
}

.sr-bb .srt-stroke-soccer-red-card {
    stroke: #e43b3b
}

.sr-bb .srt-stroke-soccer-substitution-in {
    stroke: #4fbe30;
    fill: transparent
}

.sr-bb .srt-fill-soccer-substitution-in {
    fill: #4fbe30
}

.sr-bb .srt-stroke-soccer-substitution-out {
    stroke: #e43b3b;
    fill: transparent
}

.sr-bb .srt-fill-soccer-substitution-out {
    fill: #e43b3b
}

.sr-bb .srt-stroke-soccer-own-goal {
    stroke: #e43b3b;
    fill: transparent
}

.sr-bb .srt-fill-soccer-own-goal {
    fill: #e43b3b
}

.sr-bb .srt-fill-soccer-relegation-1 {
    fill: #fdd835
}

.sr-bb .srt-stroke-soccer-relegation-1 {
    stroke: #fdd835
}

.sr-bb .srt-fill-soccer-relegation-2 {
    fill: #ffb848
}

.sr-bb .srt-stroke-soccer-relegation-2 {
    stroke: #ffb848
}

.sr-bb .srt-fill-soccer-relegation-3 {
    fill: #ef6c00
}

.sr-bb .srt-stroke-soccer-relegation-3 {
    stroke: #ef6c00
}

.sr-bb .srt-fill-soccer-relegation-4 {
    fill: #e93a34
}

.sr-bb .srt-stroke-soccer-relegation-4 {
    stroke: #e93a34
}

.sr-bb .srt-fill-soccer-relegation-5 {
    fill: #941d1d
}

.sr-bb .srt-stroke-soccer-relegation-5 {
    stroke: #941d1d
}

.sr-bb .srt-fill-soccer-promotion-1 {
    fill: #51d151
}

.sr-bb .srt-stroke-soccer-promotion-1 {
    stroke: #51d151
}

.sr-bb .srt-fill-soccer-promotion-2 {
    fill: #1b911b
}

.sr-bb .srt-stroke-soccer-promotion-2 {
    stroke: #1b911b
}

.sr-bb .srt-fill-soccer-promotion-3 {
    fill: #0e8094
}

.sr-bb .srt-stroke-soccer-promotion-3 {
    stroke: #0e8094
}

.sr-bb .srt-fill-soccer-promotion-4 {
    fill: #0a6cce
}

.sr-bb .srt-stroke-soccer-promotion-4 {
    stroke: #0a6cce
}

.sr-bb .srt-fill-soccer-promotion-5 {
    fill: #4a9fe4
}

.sr-bb .srt-stroke-soccer-promotion-5 {
    stroke: #4a9fe4
}

.sr-bb .srt-nfl-timeout-1 {
    background-color: #f5a623;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-nfl-timeout-2 {
    background-color: #f5a6234d;
    color: #fff;
    border-color: #ffffff29
}

.sr-bb .srt-nfl-penalty {
    background-color: #f4a621;
    color: #fff;
    border-color: #f4a621
}

.sr-bb .srt-nfl-negative-yards-1,
.sr-bb .srt-nfl-negative-yards-2 {
    background-color: #ac182e;
    color: #fff;
    border-color: #ac182e
}

.sr-bb .srt-nfl-first-line {
    background-color: #4b90de;
    color: #fff;
    border-color: #4b90de
}

.sr-bb .srt-nfl-ten-line {
    background-color: #f5a623;
    color: #fff;
    border-color: #f5a623
}

.sr-bb .srt-fill-nfl-penalty {
    fill: #f4a621
}

.sr-bb .srt-stroke-nfl-penalty {
    stroke: #f4a621
}

.sr-bb .srt-fill-nfl-negative-yards-1 {
    fill: #ac182e
}

.sr-bb .srt-stroke-nfl-negative-yards-1 {
    stroke: #ac182e
}

.sr-bb .srt-fill-nfl-negative-yards-2 {
    fill: #ac182e
}

.sr-bb .srt-stroke-nfl-negative-yards-2 {
    stroke: #ac182e
}

.sr-bb .srt-fill-nfl-first-line {
    fill: #4b90de
}

.sr-bb .srt-stroke-nfl-first-line {
    stroke: #4b90de
}

.sr-bb .srt-fill-nfl-ten-line {
    fill: #f5a623
}

.sr-bb .srt-stroke-nfl-ten-line {
    stroke: #f5a623
}

.sr-bb .srt-mlb-run-1 {
    background-color: #090;
    color: #fff;
    border-color: #090
}

.sr-bb .srt-mlb-run-2 {
    background-color: #fff;
    color: #090;
    border-color: #090
}

.sr-bb .srt-mlb-hit-1 {
    background-color: #f7ab11;
    color: #fffffff2;
    border-color: #f7ab11
}

.sr-bb .srt-mlb-hit-2 {
    background-color: #fff;
    color: #f7ab11;
    border-color: #f7ab11
}

.sr-bb .srt-mlb-hit-3 {
    background-color: #00a4ff;
    color: #fff;
    border-color: #00a4ff
}

.sr-bb .srt-mlb-error-1 {
    background-color: #d0021b;
    color: #fff;
    border-color: #d0021b
}

.sr-bb .srt-mlb-error-2 {
    background-color: #fff;
    color: #d0021b;
    border-color: #d0021b
}

.sr-bb .srt-mlb-neutral-1 {
    background-color: #212121;
    color: #fff;
    border-color: #fff
}

.sr-bb .srt-fill-mlb-base,
.sr-bb .srt-strole-mlb-base {
    fill: #00a4ff
}

.sr-bb .srt-fill-change-increase {
    fill: #07af42
}

.sr-bb .srt-stroke-change-increase {
    stroke: #07af42
}

.sr-bb .srt-fill-change-decrease {
    fill: #f1e806
}

.sr-bb .srt-stroke-change-decrease {
    stroke: #f1e806
}

.sr-bb .srt-fill-text {
    fill: #fffffff2
}

.sr-bb .srt-fill-text-invert {
    fill: #fff
}

.sr-bb .srt-fill-text-secondary {
    fill-opacity: .8
}

.sr-bb .srt-fill-text-disabled {
    fill-opacity: .6
}

.sr-bb .srt-fill-base-1 {
    fill: transparent
}

.sr-bb .srt-stroke-base-1 {
    stroke: transparent
}

.sr-bb .srt-fill-base-1-active {
    fill: #07af421f
}

.sr-bb .srt-stroke-base-1-active {
    stroke: #07af421f
}

.sr-bb .srt-fill-base-1-active-2 {
    fill: #303130fe
}

.sr-bb .srt-stroke-base-1-active-2 {
    stroke: #303130fe
}

.sr-bb .srt-fill-base-1-primary {
    fill: transparent
}

.sr-bb .srt-stroke-base-1-primary {
    stroke: transparent
}

.sr-bb .srt-fill-base-1-home {
    fill: transparent
}

.sr-bb .srt-stroke-base-1-home {
    stroke: transparent
}

.sr-bb .srt-fill-base-1-away {
    fill: transparent
}

.sr-bb .srt-stroke-base-1-away {
    stroke: transparent
}

.sr-bb .srt-fill-base-2 {
    fill: currentColor
}

.sr-bb .srt-stroke-base-2 {
    stroke: currentColor
}

.sr-bb .srt-fill-base-2-active {
    fill: #192e20
}

.sr-bb .srt-stroke-base-2-active {
    stroke: #192e20
}

.sr-bb .srt-fill-base-2-hover {
    fill: #192e20
}

.sr-bb .srt-stroke-base-2-hover {
    stroke: #192e20
}

.sr-bb .srt-fill-base-3 {
    fill: #192e20
}

.sr-bb .srt-stroke-base-3 {
    stroke: #192e20
}

.sr-bb .srt-fill-base-3-active {
    fill: #183522
}

.sr-bb .srt-stroke-base-3-active {
    stroke: #183522
}

.sr-bb .srt-fill-base-3-hover {
    fill: #183522
}

.sr-bb .srt-stroke-base-3-hover {
    stroke: #183522
}

.sr-bb .srt-fill-primary-1 {
    fill: #07af42
}

.sr-bb .srt-stroke-primary-1 {
    stroke: #07af42
}

.sr-bb .srt-fill-primary-2 {
    fill: #4cc577fb
}

.sr-bb .srt-stroke-primary-2 {
    stroke: #4cc577fb
}

.sr-bb .srt-fill-primary-3 {
    fill: #20b755
}

.sr-bb .srt-stroke-primary-3 {
    stroke: #20b755
}

.sr-bb .srt-fill-primary-4 {
    fill: #0f7432
}

.sr-bb .srt-stroke-primary-4 {
    stroke: #0f7432
}

.sr-bb .srt-fill-primary-5 {
    fill: #0f7432
}

.sr-bb .srt-stroke-primary-5 {
    stroke: #0f7432
}

.sr-bb .srt-fill-primary-6 {
    fill: #69cf8dfa
}

.sr-bb .srt-stroke-primary-6 {
    stroke: #69cf8dfa
}

.sr-bb .srt-fill-primary-7 {
    fill: #07af42
}

.sr-bb .srt-stroke-primary-7 {
    stroke: #07af42
}

.sr-bb .srt-fill-primary-8 {
    fill: #07af42
}

.sr-bb .srt-stroke-primary-8 {
    stroke: #07af42
}

.sr-bb .srt-fill-primary-8-is-active-1 {
    fill: #20b755
}

.sr-bb .srt-stroke-primary-8-is-active-1 {
    stroke: #20b755
}

.sr-bb .srt-fill-primary-8-is-active-2 {
    fill: #20b755
}

.sr-bb .srt-stroke-primary-8-is-active-2 {
    stroke: #20b755
}

.sr-bb .srt-fill-primary-9 {
    fill: #154827
}

.sr-bb .srt-stroke-primary-9 {
    stroke: #154827
}

.sr-bb .srt-fill-primary-10 {
    fill: #0b923a
}

.sr-bb .srt-stroke-primary-10 {
    stroke: #0b923a
}

.sr-bb .srt-fill-primary-11 {
    fill: #20b755
}

.sr-bb .srt-stroke-primary-11 {
    stroke: #20b755
}

.sr-bb .srt-fill-primary-12 {
    fill: #07af42
}

.sr-bb .srt-stroke-primary-12 {
    stroke: #07af42
}

.sr-bb .srt-fill-home-1 {
    fill: #07af42
}

.sr-bb .srt-stroke-home-1 {
    stroke: #07af42
}

.sr-bb .srt-fill-home-2 {
    fill: #07af42
}

.sr-bb .srt-stroke-home-2 {
    stroke: #07af42
}

.sr-bb .srt-fill-home-3 {
    fill: #07af42
}

.sr-bb .srt-stroke-home-3 {
    stroke: #07af42
}

.sr-bb .srt-fill-home-4 {
    fill: #0d8336
}

.sr-bb .srt-stroke-home-4 {
    stroke: #0d8336
}

.sr-bb .srt-fill-home-5 {
    fill: #58c980fb
}

.sr-bb .srt-stroke-home-5 {
    stroke: #58c980fb
}

.sr-bb .srt-fill-away-1 {
    fill: #f1e806
}

.sr-bb .srt-stroke-away-1 {
    stroke: #f1e806
}

.sr-bb .srt-fill-away-2 {
    fill: #f1e806
}

.sr-bb .srt-stroke-away-2 {
    stroke: #f1e806
}

.sr-bb .srt-fill-away-3 {
    fill: #f1e806
}

.sr-bb .srt-stroke-away-3 {
    stroke: #f1e806
}

.sr-bb .srt-fill-away-4 {
    fill: #b1ab0c
}

.sr-bb .srt-stroke-away-4 {
    stroke: #b1ab0c
}

.sr-bb .srt-fill-away-5 {
    fill: #f6f058fb
}

.sr-bb .srt-stroke-away-5 {
    stroke: #f6f058fb
}

.sr-bb .srt-fill-neutral-1 {
    fill: #363736
}

.sr-bb .srt-stroke-neutral-1 {
    stroke: #363736
}

.sr-bb .srt-fill-neutral-2 {
    fill: #e6e6e6
}

.sr-bb .srt-stroke-neutral-2 {
    stroke: #e6e6e6
}

.sr-bb .srt-fill-neutral-3 {
    fill: #ffffff1f
}

.sr-bb .srt-stroke-neutral-3 {
    stroke: #ffffff1f
}

.sr-bb .srt-fill-neutral-4 {
    fill: #aaa
}

.sr-bb .srt-stroke-neutral-4 {
    stroke: #aaa
}

.sr-bb .srt-fill-neutral-5 {
    fill: #c2c2c2
}

.sr-bb .srt-stroke-neutral-5 {
    stroke: #c2c2c2
}

.sr-bb .srt-fill-neutral-6 {
    fill: #4e4e4e
}

.sr-bb .srt-stroke-neutral-6 {
    stroke: #4e4e4e
}

.sr-bb .srt-fill-neutral-7 {
    fill: #aaa
}

.sr-bb .srt-stroke-neutral-7 {
    stroke: #aaa
}

.sr-bb .srt-fill-neutral-8 {
    fill: #363736
}

.sr-bb .srt-stroke-neutral-8 {
    stroke: #363736
}

.sr-bb .srt-fill-neutral-9 {
    fill: #272827fe
}

.sr-bb .srt-stroke-neutral-9 {
    stroke: #272827fe
}

.sr-bb .srt-fill-neutral-10 {
    fill: #343534
}

.sr-bb .srt-stroke-neutral-10 {
    stroke: #343534
}

.sr-bb .srt-fill-neutral-11 {
    fill: #717171fa
}

.sr-bb .srt-stroke-neutral-11 {
    stroke: #717171fa
}

.sr-bb .srt-fill-neutral-12 {
    fill: #b6b6b6
}

.sr-bb .srt-stroke-neutral-12 {
    stroke: #b6b6b6
}

.sr-bb .srt-fill-neutral-13 {
    fill: #303130
}

.sr-bb .srt-stroke-neutral-13 {
    stroke: #303130
}

.sr-bb .srt-fill-win {
    fill: #07af42
}

.sr-bb .srt-stroke-win {
    stroke: #07af42
}

.sr-bb .srt-fill-draw {
    fill: #fff6
}

.sr-bb .srt-stroke-draw {
    stroke: #fff6
}

.sr-bb .srt-fill-lose {
    fill: #f1e806
}

.sr-bb .srt-stroke-lose {
    stroke: #f1e806
}

.sr-bb .srt-stop-base-1 {
    stop-color: transparent
}

.sr-bb .srt-stop-primary-1 {
    stop-color: #07af42
}

.sr-bb .srt-stop-primary-2 {
    stop-color: #4cc577fb
}

.sr-bb .srt-stop-primary-3 {
    stop-color: #20b755
}

.sr-bb .srt-stop-primary-4,
.sr-bb .srt-stop-primary-5 {
    stop-color: #0f7432
}

.sr-bb .srt-stop-primary-6 {
    stop-color: #69cf8dfa
}

.sr-bb .srt-stop-primary-7,
.sr-bb .srt-stop-primary-8 {
    stop-color: #07af42
}

.sr-bb .srt-stop-primary-9 {
    stop-color: #154827
}

.sr-bb .srt-stop-primary-10 {
    stop-color: #0b923a
}

.sr-bb .srt-stop-primary-11 {
    stop-color: #20b755
}

.sr-bb .srt-stop-primary-12,
.sr-bb .srt-stop-home-1 {
    stop-color: #07af42
}

.sr-bb .srt-stop-away-1 {
    stop-color: #f1e806
}

.sr-bb .srt-fill-neutral-14 {
    fill: #1b1c1b
}

.sr-bb .srt-stroke-neutral-14 {
    stroke: #1b1c1b
}

.sr-bb .srt-logo-powered-by-light {
    display: none
}

.sr-bb .srt-logo-powered-by-dark {
    display: inline-block
}

.live-match-tracker {
    min-width: 280px;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: var(--rounded-sm);
    background-color: var(--bg-secondary);
    z-index: 0
}

@media (min-width: 1281px) {
    .live-match-tracker {
        min-height: 280px
    }
}

@media (--xl-up) {
    .live-match-tracker {
        min-height: 280px
    }
}

.live-match-tracker .sr-bb {
    border-radius: var(--rounded-sm)
}

.live-match-tracker .sr-bb,
.live-match-tracker .sr-bb .srt-elevation-2 {
    background-color: var(--bg-secondary)
}

.game-selection {
    background: var(--bg-secondary);
    border-radius: var(--rounded-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--indent-2) var(--indent-4);
    gap: var(--indent-4);
    transition: all var(--duration)
}

.game-selection:hover {
    background-color: rgb(from var(--bg-accent) r g b / .3)
}

.game-selection--active {
    background-color: var(--bg-accent)
}

.game-selection--active .game-selection__name,
.game-selection--active .game-selection__odds {
    color: var(--tx-active)
}

@media (max-width: 768px) {
    .game-selection--two-rows-mobile {
        flex-direction: column;
        align-items: start;
        gap: var(--indent-1)
    }
}

@media (--md-down) {
    .game-selection--two-rows-mobile {
        flex-direction: column;
        align-items: start;
        gap: var(--indent-1)
    }
}

.game-selection__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--tx-secondary);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%
}

.game-selection__odds {
    color: var(--tx-accent)
}

.sportsbook-event-page {
    display: flex;
    gap: var(--indent-4);
    flex-direction: column
}

.sportsbook-event-page__main-container {
    display: flex;
    gap: var(--indent-4)
}

@media (max-width: 1280px) {
    .sportsbook-event-page__main-container--lmt-enabled {
        flex-direction: column
    }

    .sportsbook-event-page__main-container--lmt-enabled .live-match-tracker {
        order: -1
    }

    .sportsbook-event-page__main-container--lmt-enabled .sportsbook-event-page__banner {
        display: none
    }
}

@media (--xl-down) {
    .sportsbook-event-page__main-container--lmt-enabled {
        flex-direction: column
    }

    .sportsbook-event-page__main-container--lmt-enabled .live-match-tracker {
        order: -1
    }

    .sportsbook-event-page__main-container--lmt-enabled .sportsbook-event-page__banner {
        display: none
    }
}

.sportsbook-event-page__event-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: var(--indent-8)
}

.sportsbook-event-page__group-button {
    padding: 0 var(--indent-6);
    height: var(--indent-10);
    font-weight: 600;
    color: var(--tx-secondary);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    gap: var(--indent-1)
}

.sportsbook-event-page__group-button--active {
    background-image: var(--gradient-horizontal);
    color: var(--tx-active)
}

.sportsbook-event-page__search {
    background-color: var(--bg-secondary);
    height: 52px
}

.sportsbook-event-page__banner {
    border-radius: var(--rounded-sm);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 255px;
    background-size: cover;
    background-position-y: center;
    background-image: url(/images/event-page-soccer-background-blended.png);
    background-repeat: no-repeat;
    background-color: var(--bg-secondary)
}

.sportsbook-event-page__markets {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.sportsbook-event-page__markets .expandable {
    background: var(--bg-secondary);
    border-radius: var(--rounded-sm)
}

.sportsbook-event-page__markets .expandable__button {
    color: var(--tx-secondary);
    font-weight: 600;
    padding: var(--indent-3) var(--indent-5)
}

.sportsbook-event-page__selections {
    border-radius: var(--rounded-sm);
    background: var(--bg-main);
    padding: var(--indent-2);
    margin: 0 var(--indent-1) var(--indent-1);
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    display: grid;
    gap: var(--indent-2)
}

.sportsbook-event-page__selections--col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.sportsbook-event-page__selections--col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.sport-events__loader {
    margin: auto
}

.sport-events__content {
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--bg-secondary);
    border-radius: 8px
}

.sport-events__empty-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--tx-secondary);
    font-family: Open Sans, sans-serif;
    font-size: 24px
}

.sport-page {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.sport-page__loader {
    margin: auto
}

.sport-page__banner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr))
}

.sport-page__title-container {
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.sport-page__title-container .sport-icon {
    fill: var(--bg-accent)
}

.sport-page__title {
    color: var(--tx-main);
    text-transform: capitalize;
    font-weight: 700
}

.transactions-page-status {
    display: flex;
    align-items: center;
    gap: var(--indent-4)
}

.transactions-page-status__column {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.transactions-page-status__item {
    color: var(--tx-main)
}

.transactions-page-status__item-button {
    all: unset;
    text-decoration: underline;
    cursor: pointer
}

.transactions-page-status__date {
    font-size: 14px
}

@media (max-width: 1024px) {
    .transactions-page-status__icon {
        display: none
    }
}

@media (--lg-down) {
    .transactions-page-status__icon {
        display: none
    }
}

.transactions-page-type {
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    font-weight: 600
}

.transactions-page-type--withdraw {
    color: var(--error)
}

.transactions-page-type--deposit {
    color: var(--success)
}

.transactions-page {
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

@media (max-width: 640px) {
    .transactions-page {
        gap: var(--indent-2)
    }
}

@media (--sm-down) {
    .transactions-page {
        gap: var(--indent-2)
    }
}

.transactions-page__title-container {
    display: flex;
    align-items: center;
    gap: var(--indent-2)
}

.transactions-page__title {
    text-transform: capitalize;
    color: var(--tx-main);
    font-weight: 900;
    font-size: 36px
}

@media (max-width: 1024px) {
    .transactions-page__title {
        font-size: 30px
    }
}

@media (--lg-down) {
    .transactions-page__title {
        font-size: 30px
    }
}

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

@media (max-width: 1024px) {
    .transactions-page__header {
        flex-direction: column;
        align-items: start;
        gap: var(--indent-4)
    }
}

@media (--lg-down) {
    .transactions-page__header {
        flex-direction: column;
        align-items: start;
        gap: var(--indent-4)
    }
}

@media (max-width: 640px) {
    .transactions-page__header {
        gap: var(--indent-2)
    }
}

@media (--sm-down) {
    .transactions-page__header {
        gap: var(--indent-2)
    }
}

.transactions-page__filter {
    display: flex;
    align-items: center;
    gap: var(--indent-4)
}

@media (max-width: 1024px) {
    .transactions-page__filter {
        width: 100%
    }
}

@media (--lg-down) {
    .transactions-page__filter {
        width: 100%
    }
}

.transactions-page__filter-label {
    color: var(--tx-main);
    font-weight: 600
}

.transactions-page__table-container {
    background-color: var(--bg-secondary);
    padding: var(--indent-4);
    border-radius: var(--rounded);
    display: flex;
    flex-direction: column;
    gap: var(--indent-4)
}

.transactions-page__left-column {
    display: flex;
    flex-direction: column;
    gap: var(--indent-6)
}

.transactions-page .table {
    border: 0;
    border-radius: 0;
    border-collapse: collapse
}

@media (max-width: 1024px) {
    .transactions-page .table__header {
        display: none
    }
}

@media (--lg-down) {
    .transactions-page .table__header {
        display: none
    }
}

.transactions-page .table__header .table__cell {
    color: var(--tx-main)
}

.transactions-page .table__header .table__cell:nth-child(1) {
    padding-left: calc(var(--indent-6) + 14px + var(--indent-4))
}

.transactions-page .table__body .table__row {
    border: 1px solid var(--bg-main)
}

.transactions-page .table__body .table__cell {
    vertical-align: top
}

.transactions-page .table__row:nth-child(2n) {
    background-color: var(--bg-secondary)
}

.transactions-page-select__button {
    width: 180px;
    background: var(--bg-secondary);
    border-radius: var(--rounded);
    height: var(--indent-13);
    border: 1px solid var(--bg-separator)
}

@media (max-width: 1024px) {
    .transactions-page-select__button {
        width: 100%
    }
}

@media (--lg-down) {
    .transactions-page-select__button {
        width: 100%
    }
}

.transactions-page-select__button,
.transactions-page-select__item {
    color: var(--tx-secondary)
}

.club-benefit {
    background: var(--bg-secondary);
    border-radius: 32px;
    padding: var(--indent-6) var(--indent-10);
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.club-benefit.vip-page__gradient-border:before {
    border-width: 2px
}

.club-benefit__star {
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: calc(50% - 15px);
    left: -15px
}

@media (max-width: 1280px) {
    .club-benefit__star {
        top: -15px;
        left: calc(50% - 15px)
    }
}

@media (--xl-down) {
    .club-benefit__star {
        top: -15px;
        left: calc(50% - 15px)
    }
}

.club-benefit__star.vip-page__gradient-border {
    position: absolute
}

.club-benefit__star.vip-page__gradient-border:before {
    border-width: 2px;
    top: -2px;
    left: -2px
}

.club-benefit__title {
    color: var(--tx-main);
    font-size: var(--tx-md);
    font-weight: 700
}

.club-benefit__description {
    font-size: 14px;
    color: var(--tx-secondary)
}

.vip-faq {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: var(--indent-10);
    width: 100%;
    gap: var(--indent-6);
    border-radius: 32px
}

.vip-faq__header {
    display: flex;
    flex-direction: column;
    gap: var(--indent-2)
}

.vip-faq__title {
    font-size: var(--tx-md);
    color: var(--tx-main);
    font-weight: 700
}

.vip-faq__description {
    color: var(--tx-secondary)
}

.vip-faq__tab {
    color: var(--tx-secondary);
    padding: var(--indent-1) var(--indent-6);
    border-radius: 50px;
    font-weight: 600
}

.vip-faq__tab.tab-button--active {
    color: var(--tx-active)
}

.vip-faq__tab-content .expandable {
    border-bottom: 1px solid var(--bg-main);
    padding-top: var(--indent-4)
}

.vip-faq__tab-content .expandable__button {
    font-size: 14px;
    color: var(--tx-main);
    font-weight: 600;
    margin-bottom: var(--indent-4);
    text-align: left
}

.vip-faq__expandable-content {
    color: var(--tx-secondary);
    font-size: var(--tx-sm)
}

.vip-page__badge {
    background: var(--bg-main);
    width: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-2);
    padding: var(--indent-6) var(--indent-8);
    border-radius: 32px;
    border-left: 2px solid var(--gradient-color-start);
    border-right: 2px solid var(--gradient-color-end);
    position: relative
}

@media (max-width: 1536px) {
    .vip-page__badge {
        width: 390px
    }
}

@media (--2xl-down) {
    .vip-page__badge {
        width: 390px
    }
}

@media (max-width: 640px) {
    .vip-page__badge {
        width: 100%
    }
}

@media (--sm-down) {
    .vip-page__badge {
        width: 100%
    }
}

.vip-page__badge:before,
.vip-page__badge:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%
}

.vip-page__badge:before {
    left: -5px;
    background: var(--gradient-color-start)
}

.vip-page__badge:after {
    right: -5px;
    background: var(--gradient-color-end)
}

.vip-page__badge-ring-quarter {
    width: 40px;
    height: 40px;
    position: absolute;
    border-style: solid
}

.vip-page__badge-ring-quarter--left-top {
    border-color: var(--gradient-color-start);
    border-width: 4px 0 0 4px;
    border-radius: 50px 0 0;
    top: -3px;
    left: -3px
}

.vip-page__badge-ring-quarter--left-bottom {
    border-color: var(--gradient-color-start);
    border-width: 0 0 4px 4px;
    border-radius: 0 0 0 50px;
    bottom: -3px;
    left: -3px
}

.vip-page__badge-ring-quarter--right-top {
    border-color: var(--gradient-color-end);
    border-width: 4px 4px 0 0;
    border-radius: 0 50px 0 0;
    top: -3px;
    right: -3px
}

.vip-page__badge-ring-quarter--right-bottom {
    border-color: var(--gradient-color-end);
    border-width: 0 4px 4px 0;
    border-radius: 0 0 50px;
    bottom: -3px;
    right: -3px
}

.vip-page__badge-title {
    padding-bottom: var(--indent-2);
    color: var(--tx-main);
    font-weight: 700;
    font-size: var(--tx-md)
}

.vip-page__badge-title>strong {
    color: var(--tx-accent)
}

.vip-page__badge-progress-messages {
    color: var(--tx-secondary);
    width: 100%;
    display: flex;
    justify-content: space-between
}

.vip-page__badge-progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 50px
}

.vip-page__badge-progress-bar {
    background: var(--bg-accent);
    height: 100%;
    border-radius: 50px
}

.vip-page__badge-legend {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--tx-legend-color)
}

.vip-page__badge-legend-item {
    display: flex;
    align-items: center;
    gap: var(--indent-1)
}

.ranking-system {
    background: var(--bg-ranking-system);
    border-radius: 32px;
    padding: var(--indent-6);
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media (max-width: 640px) {
    .ranking-system {
        padding-top: 80px;
        flex-direction: column;
        height: auto;
        gap: var(--indent-6)
    }
}

@media (--sm-down) {
    .ranking-system {
        padding-top: 80px;
        flex-direction: column;
        height: auto;
        gap: var(--indent-6)
    }
}

.ranking-system__ribbon-container {
    --f: 16px;
    --r: 15px;
    display: flex;
    position: absolute;
    left: calc(-1 * var(--f));
    top: 30px
}

@media (max-width: 640px) {
    .ranking-system__ribbon-container {
        --f: 8px
    }
}

@media (--sm-down) {
    .ranking-system__ribbon-container {
        --f: 8px
    }
}

.ranking-system__ribbon-element {
    padding: 5px 10px;
    min-width: 150px;
    max-width: 300px;
    background: #a67a38;
    border-bottom: var(--f) solid #0005;
    text-align: center;
    line-height: 1.25em;
    color: var(--tx-main);
    font-weight: 800;
    font-size: var(--tx-base);
    border-right: var(--r) solid #0000;
    clip-path: polygon(100% 0, 0 0, 0 calc(100% - var(--f)), var(--f) 100%, var(--f) calc(100% - var(--f)), 100% calc(100% - var(--f)), calc(100% - var(--r)) calc(50% - var(--f)/2))
}

.ranking-system__ribbon-star {
    margin-top: 6px;
    margin-left: 2px
}

@media (max-width: 640px) {
    .ranking-system__mobile-separator {
        width: 100%;
        height: 1px;
        background: var(--gradient-horizontal)
    }
}

@media (--sm-down) {
    .ranking-system__mobile-separator {
        width: 100%;
        height: 1px;
        background: var(--gradient-horizontal)
    }
}

.ranking-system__amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    margin-bottom: -40px
}

@media (max-width: 640px) {
    .ranking-system__amount {
        margin-bottom: 0
    }
}

@media (--sm-down) {
    .ranking-system__amount {
        margin-bottom: 0
    }
}

.ranking-system__amount-value {
    font-weight: 700;
    font-size: 36px;
    color: var(--tx-main)
}

.ranking-system__amount-label {
    color: var(--tx-secondary)
}

.ranking-system__benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--indent-2);
    height: 100%;
    width: 45%;
    padding-left: var(--indent-4);
    border-left: 1px solid var(--gradient-color-end)
}

@media (max-width: 640px) {
    .ranking-system__benefits {
        gap: var(--indent-3);
        border-left: none;
        align-self: flex-start;
        padding: 0;
        width: auto
    }
}

@media (--sm-down) {
    .ranking-system__benefits {
        gap: var(--indent-3);
        border-left: none;
        align-self: flex-start;
        padding: 0;
        width: auto
    }
}

.ranking-system__benefit {
    display: flex;
    align-items: center;
    gap: var(--indent-2);
    color: var(--tx-secondary);
    font-size: 14px
}

.ranking-system__benefit-mark {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-horizontal)
}

.vip-page {
    width: 100%;
    max-width: var(--content-max-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--indent-6);
    gap: 80px
}

@media (max-width: 640px) {
    .vip-page {
        padding: var(--indent-3)
    }
}

@media (--sm-down) {
    .vip-page {
        padding: var(--indent-3)
    }
}

.vip-page__gradient-border {
    position: relative
}

.vip-page__gradient-border:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 32px;
    border: 1px solid transparent;
    background: var(--gradient-horizontal) border-box;
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.vip-page-container.vip-page-container {
    padding: 0;
    max-width: initial;
    background: var(--bg-vip);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 0
}

.vip-page__title {
    font-weight: 700;
    font-size: var(--tx-lg);
    color: var(--tx-main)
}

.vip-page__header {
    padding: 0 var(--indent-6);
    height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center
}

@media (max-width: 1024px) {
    .vip-page__header {
        padding: var(--indent-3);
        align-items: center;
        justify-content: flex-end
    }
}

@media (--lg-down) {
    .vip-page__header {
        padding: var(--indent-3);
        align-items: center;
        justify-content: flex-end
    }
}

@media (max-width: 640px) {
    .vip-page__header {
        height: 300px
    }
}

@media (--sm-down) {
    .vip-page__header {
        height: 300px
    }
}

.vip-page__header-img {
    background: radial-gradient(48% 48% at 48% 48%, var(--vip-radial-gradient-color) 10%, transparent) 0 25px;
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width: 1536px) {
    .vip-page__header-img {
        left: -300px
    }
}

@media (--2xl-down) {
    .vip-page__header-img {
        left: -300px
    }
}

@media (max-width: 640px) {
    .vip-page__header-img {
        width: 800px;
        top: -25px
    }
}

@media (--sm-down) {
    .vip-page__header-img {
        width: 800px;
        top: -25px
    }
}

.vip-page__main {
    border-top: 2px solid var(--vip-separator);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding-top: var(--indent-6);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(400px 250px at 30% 55%, var(--vip-radial-gradient-color) -150%, transparent) 0 25px
}

.vip-page__ranking-system-container,
.vip-page__club-benefits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--indent-8);
    width: 100%
}

.vip-page__ranking-system {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--indent-10) var(--indent-8)
}

@media (max-width: 1280px) {
    .vip-page__ranking-system {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--indent-6)
    }
}

@media (--xl-down) {
    .vip-page__ranking-system {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--indent-6)
    }
}

.vip-page__club-benefits {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--indent-6) var(--indent-8)
}

@media (max-width: 1280px) {
    .vip-page__club-benefits {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--indent-8)
    }
}

@media (--xl-down) {
    .vip-page__club-benefits {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--indent-8)
    }
}

.vip-page__footer {
    width: 100%;
    padding: var(--indent-6);
    display: flex;
    justify-content: center;
    background: url(/images/vip-page-footer-background.png) no-repeat;
    background-position: center top
}

@media (max-width: 640px) {
    .vip-page__footer {
        background-position: center
    }
}

@media (--sm-down) {
    .vip-page__footer {
        background-position: center
    }
}

@media (max-width: 640px) {
    .vip-page__footer-robot {
        width: 100%
    }
}

@media (--sm-down) {
    .vip-page__footer-robot {
        width: 100%
    }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    font-family: Helvetica, sans-serif;
    background-color: var(--bg-main)
}

@supports not (selector(::-webkit-scrollbar)) {
    body * {
        scrollbar-color: var(--bg-accent) transparent;
        scrollbar-width: thin
    }
}

body *::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

body *::-webkit-scrollbar-button {
    width: 0;
    height: 0
}

body *::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 24px
}

@media (hover: hover) {
    body *::-webkit-scrollbar-thumb:hover {
        background: var(--bg-accent)
    }
}

body *::-webkit-scrollbar-thumb:active {
    background: var(--bg-accent)
}

body *::-webkit-scrollbar-track {
    background: transparent
}

@media (hover: hover) {
    body *::-webkit-scrollbar-track:hover {
        background: transparent
    }
}

body *::-webkit-scrollbar-track:active {
    background: transparent
}

body *::-webkit-scrollbar-corner {
    background: transparent
}

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

div,
nav,
section,
main,
span,
header,
input {
    box-sizing: border-box
}

p {
    margin: 0;
    padding: 0
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400
}

input {
    outline: none;
    box-shadow: none;
    border: none
}

.page {
    min-height: calc(100vh - var(--header-height));
    padding: var(--indent-6);
    width: 100%;
    max-width: var(--content-max-width)
}

@media (max-width: 1024px) {
    .page {
        min-height: calc(100dvh - var(--mobile-header-height) - var(--mobile-bottom-menu-height))
    }
}

@media (--lg-down) {
    .page {
        min-height: calc(100dvh - var(--mobile-header-height) - var(--mobile-bottom-menu-height))
    }
}

@media (max-width: 640px) {
    .page {
        padding: var(--indent-3)
    }
}

@media (--sm-down) {
    .page {
        padding: var(--indent-3)
    }
}

.swiper {
    z-index: 0
}

body>img {
    display: none
}

.skeleton {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden
}

.skeleton:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translate(-100%);
    background-image: linear-gradient(90deg, #fff0 0, #ffffff1a 20%, #fff3 60%, #fff0);
    animation: shimmer 1.5s infinite
}

@keyframes shimmer {
    to {
        transform: translate(100%)
    }
}

:root {
    --black-darker: #0A0A07;
    --black-dark: #100f0c;
    --black: #151410;
    --grey-layout: #25241e;
    --grey-darker: #201f1d;
    --grey-dark: #312f2d;
    --grey-light: #4b4a48;
    --grey-lighter: #504E4B;
    --grey: #aea798;
    --white: #f9f9f9;
    --green: #144f53;
    --pastel-green: #2B8D54;
    --green-light: #1aca2c;
    --green-dark: #011E11;
    --bronze: #B65B00;
    --silver: #A7A7A7;
    --platinum: #A7CBCD;
    --gold: #a4873f;
    --yellow-light: #f1e158;
    --yellow: #ffe74d;
    --blue: #4d64ff;
    --red: #b63232;
    --content-max-width: 1280px;
    --header-height: 80px;
    --mobile-header-height: 60px;
    --mobile-bottom-menu-height: 60px;
    --betslip-desktop-width: 295px;
    --gradient-color-start: var(--yellow);
    --gradient-color-end: var(--gold);
    --gradient-vertical: linear-gradient(180deg, var(--gradient-color-start) 0%, var(--gradient-color-end) 100%);
    --gradient-horizontal: linear-gradient(90deg, var(--gradient-color-start) 0%, var(--gradient-color-end) 100%);
    --vip-radial-gradient-color: var(--pastel-green);
    --sportsbook-radial-gradient-color: var(--pastel-green);
    --indent-1: .25rem;
    --indent-2: .5rem;
    --indent-3: .75rem;
    --indent-4: 1rem;
    --indent-5: 1.25rem;
    --indent-6: 1.5rem;
    --indent-7: 1.75rem;
    --indent-8: 2rem;
    --indent-9: 2.25rem;
    --indent-10: 2.5rem;
    --indent-11: 2.75rem;
    --indent-12: 3rem;
    --indent-13: 3.25rem;
    --indent-14: 3.5rem;
    --rounded-xs: .25rem;
    --rounded-sm: .5rem;
    --rounded: .75rem;
    --rounded-lg: 1rem;
    --tx-sm: .75rem;
    --tx-base: 1rem;
    --tx-md: 1.25rem;
    --tx-lg: 1.5rem;
    --duration: .3s;
    --tx-main: var(--white);
    --tx-secondary: var(--grey);
    --tx-accent: var(--yellow-light);
    --tx-active: var(--black);
    --tx-focused: var(--white);
    --bg-main: var(--grey-darker);
    --bg-secondary: var(--black);
    --bg-tertiary: var(--grey-dark);
    --bg-dark: var(--black-dark);
    --bg-accent: var(--yellow-light);
    --bg-separator: rgba(255, 255, 255, .1);
    --error: var(--red);
    --success: var(--green-light);
    --warning: var(--yellow);
    --info: var(--blue);
    --bg-layout: var(--grey-layout);
    --bg-footer: var(--black-dark);
    --bg-modal-overlay: var(--grey-light);
    --modal-shadow: #0000004d;
    --socials-or-color: var(--grey-light);
    --input-required-color: var(--red);
    --pagination-button-border: var(--grey-light);
    --bg-bonus-progress-bar: var(--grey);
    --bg-betslip-selection-counter: var(--grey);
    --tx-betslip-grey-dimmed: #504E4B;
    --bg-sportsbook-bet-totals-divider: var(--grey-light);
    --bg-vip: var(--black-darker);
    --bg-ranking-system: var(--green-dark);
    --bg-bronze: var(--bronze);
    --bg-silver: var(--silver);
    --bg-platinum: var(--platinum);
    --tx-legend-color: var(--grey-lighter);
    --vip-separator: var(--pastel-green)
}


.locale-switcher__item {
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}


.locale-switcher__viewport {
  position: absolute;
  margin-top: 5px;
  top: 100%;
  left:0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: max-content;
}


.select-content__item:hover {
  background-color: var(--bg-secondary);
  border: 1px solid var(--yellow-light);
}




.banners-swiper {
  width: 100%;
  max-width: 100%;
}

.swiper-wrapper {
  display: flex;
  justify-content: center;
}

.swiper-slide {
  width: 100% !important;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.banner-card {
  width: 100%;
  max-width: 600px;         
  aspect-ratio: 16 / 9;    
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.banner-card__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* 🎨 Table (casino) */
:root{
  --casino-bg:#161719; /* slightly lighter for better contrast */
  --casino-bg-soft:#1c1d1f;
  --casino-text:#e9edf1;
  --casino-muted:#a9b1ba;
  --casino-line:rgba(255,255,255,.08);
  --casino-accent:rgba(255,255,255,.06);
  --casino-radius:14px;
}

.custom-table table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:var(--casino-bg);
  color:var(--casino-text);
  border:1px solid var(--casino-line);
  border-radius:var(--casino-radius);
  overflow:hidden;
  table-layout:fixed;
}

/* base table cells */
.custom-table table td,
.custom-table table tr > td{
  padding:16px 18px;
  padding-left:20px;        /* left padding for all cells */
  vertical-align:top;
  line-height:1.45;
  border-bottom:1px solid var(--casino-line);
}
.custom-table table tr:last-child td{ border-bottom:none; }

/* first column */
.custom-table table td:first-child{
  width:34%;
  padding-left:24px;        /* slightly larger for first column */
  font-weight:600;
  color:var(--casino-muted);
  background:var(--casino-accent);
}

/* remove paragraph margin inside cells */
.custom-table table td > p{ margin:0; }

.custom-table table tr:hover td{
  background:linear-gradient(0deg, rgba(255,255,255,.02), rgba(255,255,255,.02));
}

/* 📱 Mobile */
@media (max-width:640px){
  .custom-table table{
    border:0;
    background:transparent;
  }
  .custom-table table tbody{ display:grid; gap:12px; }
  .custom-table table tr{
    display:block;
    background:var(--casino-bg-soft);
    border:1px solid var(--casino-line);
    border-radius:var(--casino-radius);
    overflow:hidden;
  }
  .custom-table table td,
  .custom-table table tr > td{
    display:block;
    border:0;
    padding:14px 16px;
    padding-left:18px;      /* general left padding on mobile */
  }
  .custom-table table td:first-child{
    width:auto;
    padding-left:20px;      /* slightly larger for first column */
    background:var(--casino-accent);
    font-size:14px;
    color:var(--casino-muted);
    border-bottom:1px solid var(--casino-line);
  }
  .custom-table table td:last-child{
    font-size:16px;
  }
}
