.modal__wrapper {
    max-height: calc(var(--vh, 1vh) * 95);
}

.mask {
    background: var(--mask-background-color-dark);
    top: var(--site-header-height);
    height: calc(100vh - var(--site-header-height));
}

@media (min-width: 576px) {
    .mask {
        display: none;
    }
}

.chat-tab {
    width: 3.4375rem;
    height: 3.4375rem;
    bottom: 32px;
    background: #191a21;
    box-shadow: 2px 0 4px #00000080;
    border-radius: 0 3px 3px 0;
    transition: opacity 0.4s, transform 0.4s, color var(--global-transition);
    transform: translate(0);
    cursor: pointer;
    padding-top: 3px;
}

.chat-tab:hover {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.chat-tab--chat-open {
    transform: translate(var(--site-chat-width));
}

@media (min-width: 1200px) {
    .chat-tab--chat-open {
        transform: translate(calc(-100% - 4px));
    }
}

.ui-popover-button {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 0.8125rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    border-radius: 0.25rem;
    background-color: transparent;
    height: 2.375rem;
    transition: background var(--global-transition);
}

.ui-popover-button:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.ui-popover-button__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    fill: currentColor;
    margin-right: 8px;
}

.ui-popover-button .tertiary-button {
    padding: 0 0.4375rem;
}

.chat-input-popover .popover-panel {
    width: calc(var(--site-chat-width) - 20px) !important;
    max-width: 100% !important;
}

.chat {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--site-chat-width);
    height: calc(var(--vh, 1vh) * 100);
    padding-top: var(--site-header-height);
    transform: translate(-100%);
    transition: transform 0.4s, padding 0.4s ease-in-out;
    background: #191a21;
}

.chat--open {
    transform: translate(0);
}

.chat__messages {
    position: relative;
    height: 100%;
    flex: 1 1 0%;
    transform: translateZ(0);
}

.chat-pinned-message {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    font-size: 0.8125rem;
    line-height: 20px;
    padding: 10px;
}

.loader-spinner {
    animation: animateSpinner-88460558 2s linear infinite;
}

.loader-spinner__path {
    stroke-linecap: butt;
    animation: animateSpinnerPath-88460558 1.5s ease-in-out infinite;
}

@keyframes animateSpinner-88460558 {
    to {
        transform: rotate(360deg);
    }
}

@keyframes animateSpinnerPath-88460558 {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40;
    }

    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.img-user {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: conic-gradient(#e9b10e var(--progress), #1d1e26 0deg);
}

.steam-name {
    margin-left: 8px;
    margin-right: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 96px;
}

.flyout-head {
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    height: 62px;
}

.rank {
    position: relative;
    display: flex;
    height: 1.375rem;
    align-items: center;
    border-radius: 0.25rem;
    --tw-bg-opacity: 0.1;
    padding-left: 4px;
    padding-right: 4px;
    line-height: 1.25;
}

.rank--null {
    width: 18px;
    padding: 0;
}

.rank__badge {
    height: 16px;
    width: 16px;
}

.primary-link {
    width: 100%;
    height: 46px;
    transition: color var(--global-transition);
    border-left: 1px solid transparent;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    padding: 16px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.primary-link:hover,
.primary-link.router-link-exact-active {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.flyout {
    width: 280px;
    height: calc(var(--vh, 1vh) * 100);
    padding-top: var(--site-header-height);
    transform: translate(280px);
    transition: transform 0.4s, padding 0.4s ease-in-out;
}

.flyout--open {
    transform: translate(0);
}

.flyout {
    width: 280px;
    height: calc(var(--vh, 1vh) * 100);
    padding-top: var(--site-header-height);
    transform: translate(280px);
    transition: transform 0.4s;
}

.flyout--open {
    transform: translate(0);
}

.mask {
    background: var(--mask-background-color-dark);
    top: var(--site-header-height);
    height: calc(100vh - var(--site-header-height));
}

.footer__inner {
    max-width: 1366px;
}

@media (min-width: 992px) {
    .footer__inner {
        padding-left: 4vw;
        padding-right: 4vw;
    }
}

.footer,
.footer a {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.footer a {
    transition: color var(--global-transition);
}

.footer a:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.footer .logo {
    max-width: 155px;
}

.footer .visa-logo {
    display: block;
    width: auto;
    height: 20px;
}

.footer .mastercard-logo {
    display: block;
    width: auto;
    height: 25px;
}

.footer .eighteen-certificate {
    display: block;
    width: 32px;
    height: 32px;
}

.footer-wrap {
    display: grid;
    grid-template-areas: "about community" "empire empire" "icons icons" "copyright copyright";
}

@media (min-width: 992px) {
    .footer-wrap {
        grid-template-columns: 450px 164px 1fr;
        grid-template-areas: "empire about community" "copyright icons icons";
    }
}

.icons {
    grid-area: icons;
}

.empire {
    grid-area: empire;
}

.about {
    grid-area: about;
}

.about a {
    text-decoration-line: none;
}

.community {
    grid-area: community;
}

.copyright {
    grid-area: copyright;
}

h4 {
    height: 60px;
    line-height: normal;
}

button {
    font-size: 14px;
    line-height: 1;
    height: 38px;
}

button:focus-visible .front {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
    outline-width: 1px;
}

button.pop {
    margin-top: 2px;
    height: 36px;
}

button.pop .front {
    padding: 11px;
    transform: translateY(-2px);
}

button.pop .front:active,
button.pop.active .front {
    transform: translateY(-1px);
}

button .front {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 0.25rem;
    padding: 11px 12px;
    transition: all 0.1s;
}

button.loading,
button:disabled {
    opacity: 0.3;
}

button.btn-primary {
    background-color: #cc6c31;
}

button.btn-primary .front {
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-primary .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(255 207 66 / var(--tw-bg-opacity, 1));
    }
}

button.btn-primary.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(255 207 66 / var(--tw-bg-opacity, 1));
}

button.btn-secondary {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    background-color: #0f1116;
}

button.btn-secondary .front {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-secondary .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(46 50 64 / var(--tw-bg-opacity, 1));
    }
}

button.btn-secondary .front:active,
button.btn-secondary.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(46 50 64 / var(--tw-bg-opacity, 1));
}

button.btn-tertiary {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-tertiary .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
        --tw-text-opacity: 1;
        color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    }
}

button.btn-tertiary.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

button.btn-red {
    background-color: #cf3535;
}

button.btn-red .front {
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-red .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(255 126 127 / var(--tw-bg-opacity, 1));
    }
}

button.btn-red .front:active,
button.btn-red.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(255 126 127 / var(--tw-bg-opacity, 1));
}

button.btn-green {
    background-color: #00963b;
}

button.btn-green .front {
    --tw-bg-opacity: 1;
    background-color: rgb(1 191 77 / var(--tw-bg-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-green .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(0 227 89 / var(--tw-bg-opacity, 1));
    }
}

button.btn-green.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(0 227 89 / var(--tw-bg-opacity, 1));
}

button.btn-rounded {
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-rounded:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
        --tw-text-opacity: 1;
        color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    }
}

button.btn-rounded.active {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

button.btn-table {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

button.btn-table .front {
    justify-content: flex-start;
}

@media (hover: hover) and (pointer: fine) {
    button.btn-table .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    }
}

button.btn-table.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

button.btn-tab {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

button.btn-tab .front {
    border-radius: 8px 8px 0 0;
    --tw-bg-opacity: 1;
    background-color: rgb(25 26 33 / var(--tw-bg-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    button.btn-tab .front:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    }
}

button.btn-tab.active .front {
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

button.stretch {
    width: 100%;
}

.balance {
    display: inline-flex;
    height: 2.5rem;
    align-items: center;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(41 42 52 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
    padding-left: 0.9375rem;
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
    padding-right: 0.4375rem;
    border-radius: 4px;
    transition: border var(--global-transition),
        background var(--global-transition), color var(--global-transition);
}

.balance--has-win {
    --tw-border-opacity: 1;
    border-color: rgb(0 227 89 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(0 227 89 / var(--tw-text-opacity, 1));
    background: #10d9600f;
}

@media (min-width: 1200px) {
    .balance {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
        height: 38px;
    }
}

.balance__button {
    margin-left: 0.625rem;
    display: flex;
    height: 1.625rem;
    width: 1.625rem;
    align-items: center;
    justify-content: center;
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
    fill: currentColor;
    --tw-text-opacity: 1;
    color: rgb(16 16 20 / var(--tw-text-opacity, 1));
    box-shadow: inset 0 -2px #cc6c31;
    border-radius: 4px;
}

.balance__button svg {
    height: 0.625rem;
    width: 0.625rem;
}

.user-action {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.alert {
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
}

.inactive:hover {
    color: unset;
}

.tag-primary__green {
    background-color: #01bf4d1a;
    --tw-text-opacity: 1;
    color: rgb(1 191 77 / var(--tw-text-opacity, 1));
}

.tag-primary__red {
    background-color: #ff5c5c1a;
    --tw-text-opacity: 1;
    color: rgb(255 92 92 / var(--tw-text-opacity, 1));
}

.tag-primary__yellow {
    background-color: #e9b10e1a;
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.tag-primary__grey {
    background-color: #9293a61a;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.tag-secondary {
    --tw-text-opacity: 1;
    color: rgb(21 22 29 / var(--tw-text-opacity, 1));
}

.tag-secondary__green {
    --tw-bg-opacity: 1;
    background-color: rgb(0 227 89 / var(--tw-bg-opacity, 1));
}

.tag-secondary__red {
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
}

.tag-secondary__yellow {
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
}

.tag-secondary__grey {
    --tw-bg-opacity: 1;
    background-color: rgb(146 147 166 / var(--tw-bg-opacity, 1));
}

.nav-button {
    min-width: 100px;
}

.link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.link:after {
    display: none;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
}

.link.router-link-exact-active {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.link.router-link-exact-active:after {
    display: block;
}

.button-inventory {
    width: var(--button-height);
}

.button-inventory svg {
    width: 18px;
    height: 18px;
}

.notify {
    width: 0.3125rem;
    height: 0.3125rem;
    right: 0.625rem;
}

@media (min-width: 576px) {
    .notify {
        width: 0.4375rem;
        height: 0.4375rem;
    }
}

.panel {
    box-shadow: 0 4px 8px #0003;
}

.status {
    background: #121319;
}

.status__rank {
    width: 20px;
    height: 20px;
}

.status__bar {
    width: 140px;
}

.status__bar,
.status__bar > div {
    height: 8px;
    border-radius: 8px;
    transition: width 0.4s;
}

.status__logout {
    color: #464854;
}

.status__logout,
.status__logout svg {
    width: 18px;
    height: 18px;
}

.layout {
    display: grid;
    grid-template-columns: var(--site-chat-width) calc(
            100% - var(--site-chat-width)
        );
    grid-template-rows: var(--site-header-row-a-height) var(
            --site-header-row-b-height
        );
    height: 100%;
}

.logo {
    grid-row-start: 1;
    grid-row-end: span 2;
}

.logo svg {
    display: block;
    width: 100%;
    max-width: 12.75rem;
    height: auto;
}

.bg-color {
    background: #121319;
}

.layout {
    display: grid;
    grid-template-columns: var(--site-chat-width) calc(
            100% - var(--site-chat-width)
        );
    grid-template-rows: var(--site-header-row-height);
    height: 100%;
}

.logo {
    grid-row-start: 1;
    grid-row-end: span 2;
}

.logo svg {
    display: block;
    width: 100%;
    max-width: 12.75rem;
    height: auto;
}

.select-button {
    min-width: -moz-max-content;
    min-width: max-content;
}

.spoiler {
    transition: color 0.5s;
    position: relative;
}

.spoiler:not(:hover),
.spoiler:not(:hover) * {
    color: transparent;
    background: #000;
}

.spoiler * {
    transition: color 0.5s, background 0.5s;
}

.spoiler:not(:hover) * {
    background: #000;
}

.spoiler:not(:hover):after {
    color: #666;
    background: #000;
    transition: color 0.3s 0.3s;
}

.alert-error {
    width: 100%;
    padding: 0.625rem 0.9375rem;
    background-color: #96000066;
    border: 1px solid rgba(150, 0, 0, 0.8);
    border-radius: 5px;
    color: #fff;
    text-align: center;
}

.qr-code {
    width: 154px;
    height: 154px;
    border-radius: 0.25rem;
}

.manual-entry-key {
    margin-top: 4px;
    font-size: 0.875rem;
}

#input_2fa {
    text-align: left;
}

.popover-panel {
    box-shadow: 0 4px 8px #0003;
}

.sidebar {
    --z-sidebar-structure: 35;
    --z-sidebar-overlay: 30;
    position: fixed;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    border-radius: 0.625rem;
}

.sidebar__inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: var(--z-sidebar-structure);
}

.sidebar__component {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: var(--site-sidebar-width);
}

.sidebar__desktop {
    --sidebar-spacing-offset: 32px;
    padding: 16px;
}

.sidebar__desktop .sidebar__inner {
    border-radius: 0.625rem;
}

.sidebar__mobile {
    --sidebar-spacing-offset: 8px;
    border-top-left-radius: 0.625rem;
    padding-top: 8px;
}

.sidebar__mobile .sidebar__inner {
    border-top-left-radius: 0.625rem;
}

.sidebar__mask {
    position: fixed;
    left: 0;
    height: 100%;
    width: 100vw;
    background: var(--mask-background-color-dark);
    top: var(--site-header-height);
    transition: top 0.4s ease-in-out;
    z-index: var(--z-sidebar-overlay);
}

.sidebar-slide-animation-enter-active,
.sidebar-slide-animation-leave-active {
    transition: all 0.45s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar-slide-animation-enter-from,
.sidebar-slide-animation-leave-to {
    transform: translate(calc(var(--site-sidebar-width) + 16px));
}

.sidebar-slide-animation-enter-to,
.sidebar-slide-animation-leave-from {
    transform: translate(0);
}

.support-wrap--sidebar-space {
    right: calc(var(--site-sidebar-width) + 32px);
}

.toast-img-icon {
    margin-right: 16px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.toast-img img {
    width: 32px;
    height: auto;
}

.toast-icon {
    border-radius: 0.3125rem;
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.toast-timer {
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    height: 4px;
}

.toast-close-button {
    position: absolute;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    top: 19px;
    right: 16px;
}

.toast-close-button:hover {
    opacity: 0.7;
}

.reward {
    height: 3.125rem;
    width: 3.125rem;
}

@media (min-width: 768px) {
    .reward {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.level-up__rewards {
    max-width: 42rem;
}

.level-up__rewards--rust .level-up__rewards-border {
    background-image: linear-gradient(90deg, #d2c3b300, #d2c3b3, #d2c3b300);
}

.level-up__rewards--bronze .level-up__rewards-border {
    background-image: linear-gradient(90deg, #ffcbaa00, #ffcbaa, #ffcbaa00);
}

.level-up__rewards--silver .level-up__rewards-border {
    background-image: linear-gradient(90deg, #dee8f600, #dee8f6, #dee8f600);
}

.level-up__rewards--gold .level-up__rewards-border {
    background-image: linear-gradient(90deg, #f3d88600, #f3d886, #f3d88600);
}

.level-up__rewards--diamond .level-up__rewards-border {
    background-image: linear-gradient(90deg, #c2f8fe00, #c2f8fe, #c2f8fe00);
}

.level-up__rewards--uranium .level-up__rewards-border {
    background-image: linear-gradient(90deg, #abfe8d00, #abfe8d, #abfe8d00);
}

.level-up__rewards--unbreakable .level-up__rewards-border {
    background-image: linear-gradient(90deg, #abfe8d00, #ff5011, #abfe8d00);
}

.level-up__xp {
    position: relative;
    display: flex;
    height: 1.875rem;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    max-width: 24.375rem;
    border-radius: 1.875rem;
}

.level-up__xp-bar {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    height: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(255 90 50 / var(--tw-bg-opacity, 1));
    border-radius: 1.875rem;
    transition: none;
}

.level-up__xp-bar.animating {
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

table.CookieDeclarationTable {
    word-break: break-all;
    font-size: 10px;
}

div.CookieDeclarationType {
    margin-left: -8px;
    margin-right: -8px;
}

@media (min-width: 768px) {
    table.CookieDeclarationTable {
        overflow-wrap: normal;
        word-break: normal;
        font-size: inherit;
    }

    div.CookieDeclarationType {
        margin-left: 0;
        margin-right: 0;
    }
}

#CookiebotWidget {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.size-xl {
    font-size: 20px;
    line-height: 1.5;
}

.size-large {
    font-size: 16px;
    line-height: 1.6;
}

.size-medium {
    font-size: 14px;
    line-height: 1.6;
}

.size-small {
    font-size: 12px;
    line-height: 1.6;
}

.size-xs {
    font-size: 10px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration-line: underline;
}

a:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.currency-loader {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.currency-loader:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    transform: translate3d(-100%, 0, 0);
    background-image: linear-gradient(
        90deg,
        #22232c00 0,
        #22232cb3 50%,
        #22232c00
    );
    animation: currency-loader-e5565c81 1s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes currency-loader-e5565c81 {
    to {
        transform: translate3d(100%, 0, 0);
    }
}

.site-layout__head {
    left: 0;
    position: fixed;
    height: var(--site-header-height);
    top: 0;
    transition: height 275ms;
}

.site-layout__main {
    padding-top: var(--site-header-height);
    transition: padding-top 0.4s ease-in-out;
    min-height: calc(100vh - var(--site-header-height));
}

@media (min-width: 1200px) {
    .site-layout--matchbetting-open .page-layout,
    .site-layout--trades.site-layout--trades-open .page-layout {
        padding-right: calc(var(--site-sidebar-width) + 16px);
    }

    .site-layout--chat-open .page-layout {
        padding-left: var(--site-chat-width);
    }
}

.page-layout__inner {
    min-height: calc(100vh - var(--site-header-height));
}

@media (hover: none) {
    .hit-area {
        display: block !important;
    }
}

.hit-area {
    height: 38px;
    display: none;
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-family: Flama-Bold, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    font-size: 42px;
}

h2 {
    line-height: 1.2;
    font-size: 20px;
}

h3 {
    line-height: 1.2;
    font-size: 16px;
}

h4 {
    line-height: 1.2;
    font-size: 14px;
}

h5 {
    line-height: 1.2;
    font-size: 12px;
}

h6 {
    line-height: 1.2;
    font-size: 10px;
}

.base-table {
    font-size: unset;
}

.top-grid {
    display: grid;
    grid-template-areas: "top-left top-right" "bot-left bot-right";
    grid-template-columns: auto auto;
}

.top-right {
    grid-area: top-right;
}

.bot-left {
    grid-area: bot-left;
}

.bot-right {
    grid-area: bot-right;
}

.fit-content {
    width: 1%;
    white-space: nowrap;
}

.overflow-shrink {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toggle {
    box-sizing: border-box;
    height: 22px;
    width: 40px;
}

.toggle.enabled .ball {
    transform: translate3d(18px, 0, 0);
}

.toggle.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.ball {
    height: 18px;
    transition: all 0.15s ease-in-out;
    transform: translateZ(0);
    width: 18px;
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.ms-absolute {
    position: absolute;
}

.ms-relative {
    position: relative;
}

.ms-inset-x-0 {
    left: 0;
    right: 0;
}

.ms-top-\[-8px\] {
    top: -8px;
}

.ms-z-50 {
    z-index: 50;
}

.ms-z-\[60\] {
    z-index: 60;
}

.ms-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ms-my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.ms-my-\[20px\] {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ms-mt-\[10px\] {
    margin-top: 10px;
}

.ms-flex {
    display: flex;
}

.ms-size-\[14px\] {
    width: 14px;
    height: 14px;
}

.ms-size-\[24px\] {
    width: 24px;
    height: 24px;
}

.ms-h-0 {
    height: 0px;
}

.ms-h-\[22px\] {
    height: 22px;
}

.ms-h-\[38px\] {
    height: 38px;
}

.ms-h-\[40px\] {
    height: 40px;
}

.ms-h-full {
    height: 100%;
}

.ms-h-screen {
    height: 100vh;
}

.ms-w-\[1\%\] {
    width: 1%;
}

.ms-w-\[36px\] {
    width: 36px;
}

.ms-w-\[500px\] {
    width: 500px;
}

.ms-w-full {
    width: 100%;
}

.ms-max-w-\[1px\] {
    max-width: 1px;
}

.ms-flex-shrink-0 {
    flex-shrink: 0;
}

.ms-translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.ms-translate-y-4 {
    --tw-translate-y: 1rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.ms-transform-gpu {
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.ms-cursor-pointer {
    cursor: pointer;
}

.ms-appearance-none {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ms-flex-row {
    flex-direction: row;
}

.ms-flex-col {
    flex-direction: column;
}

.ms-items-center {
    align-items: center;
}

.ms-justify-start {
    justify-content: flex-start;
}

.ms-justify-center {
    justify-content: center;
}

.ms-gap-\[20px\] {
    gap: 20px;
}

.ms-overflow-hidden {
    overflow: hidden;
}

.ms-overflow-y-auto {
    overflow-y: auto;
}

.ms-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ms-whitespace-nowrap {
    white-space: nowrap;
}

.ms-rounded {
    border-radius: 0.25rem;
}

.ms-rounded-\[11px\] {
    border-radius: 11px;
}

.ms-border {
    border-width: 1px;
}

.ms-border-\[\#444\] {
    --tw-border-opacity: 1;
    border-color: rgb(68 68 68 / var(--tw-border-opacity, 1));
}

.ms-bg-\[\#222\] {
    --tw-bg-opacity: 1;
    background-color: rgb(34 34 34 / var(--tw-bg-opacity, 1));
}

.ms-bg-\[\#555\] {
    --tw-bg-opacity: 1;
    background-color: rgb(85 85 85 / var(--tw-bg-opacity, 1));
}

.ms-bg-\[\#EEEEEE\] {
    --tw-bg-opacity: 1;
    background-color: rgb(238 238 238 / var(--tw-bg-opacity, 1));
}

.ms-bg-\[\#ddd\] {
    --tw-bg-opacity: 1;
    background-color: rgb(221 221 221 / var(--tw-bg-opacity, 1));
}

.ms-p-\[2px\] {
    padding: 2px;
}

.ms-p-\[8px\] {
    padding: 8px;
}

.ms-px-\[12px\] {
    padding-left: 12px;
    padding-right: 12px;
}

.ms-py-\[5px\] {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ms-align-text-bottom {
    vertical-align: text-bottom;
}

.ms-tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero)
        var(--tw-numeric-figure) var(--tw-numeric-spacing)
        var(--tw-numeric-fraction);
}

.ms-text-\[\#333333\] {
    --tw-text-opacity: 1;
    color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.ms-text-\[\#EEE\],
.ms-text-\[\#eee\] {
    --tw-text-opacity: 1;
    color: rgb(238 238 238 / var(--tw-text-opacity, 1));
}

.ms-text-green-500 {
    --tw-text-opacity: 1;
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}

.ms-opacity-0 {
    opacity: 0;
}

.ms-opacity-100 {
    opacity: 1;
}

.ms-outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.ms-transition {
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke, opacity, box-shadow, transform,
        filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.ms-transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.ms-transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.ms-transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.ms-duration-150 {
    transition-duration: 0.15s;
}

.ms-duration-200 {
    transition-duration: 0.2s;
}

.ms-duration-500 {
    transition-duration: 0.5s;
}

.ms-ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ms-ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ms-will-change-transform {
    will-change: transform;
}

.before\:ms-absolute:before {
    content: var(--tw-content);
    position: absolute;
}

.before\:ms-left-\[2px\]:before {
    content: var(--tw-content);
    left: 2px;
}

.before\:ms-top-1\/2:before {
    content: var(--tw-content);
    top: 50%;
}

.before\:ms-size-\[18px\]:before {
    content: var(--tw-content);
    width: 18px;
    height: 18px;
}

.before\:ms-translate-x-0:before {
    content: var(--tw-content);
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:ms-translate-y-\[-50\%\]:before {
    content: var(--tw-content);
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:ms-rounded-full:before {
    content: var(--tw-content);
    border-radius: 9999px;
}

.before\:ms-bg-current:before {
    content: var(--tw-content);
    background-color: currentColor;
}

.before\:checked\:ms-left-\[16px\]:checked:before {
    content: var(--tw-content);
    left: 16px;
}

*,
:before,
:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black-a {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.bg-black-b {
    --tw-bg-opacity: 1;
    background-color: rgb(21 22 29 / var(--tw-bg-opacity, 1));
}

.bg-black-c {
    --tw-bg-opacity: 1;
    background-color: rgb(18 19 25 / var(--tw-bg-opacity, 1));
}

.bg-black\/50 {
    background-color: #00000080;
}

.bg-blue-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(0 170 232 / var(--tw-bg-opacity, 1));
}

.bg-blue-1\/20 {
    background-color: #00aae833;
}

.bg-cyan-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(14 195 246 / var(--tw-bg-opacity, 1));
}

.bg-dark-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(46 50 64 / var(--tw-bg-opacity, 1));
}

.bg-dark-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.bg-dark-2\/20 {
    background-color: #292a3433;
}

.bg-dark-3 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
}

.bg-dark-4 {
    --tw-bg-opacity: 1;
    background-color: rgb(25 26 33 / var(--tw-bg-opacity, 1));
}

.bg-dark-5 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 22 29 / var(--tw-bg-opacity, 1));
}

.bg-dark-6 {
    --tw-bg-opacity: 1;
    background-color: rgb(15 17 22 / var(--tw-bg-opacity, 1));
}

.bg-dark-7 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey {
    --tw-bg-opacity: 1;
    background-color: rgb(25 26 33 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(21 22 29 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-3 {
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-3-alt {
    --tw-bg-opacity: 1;
    background-color: rgb(34 35 44 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-4 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.bg-dark-grey-4-alt {
    --tw-bg-opacity: 1;
    background-color: rgb(44 46 57 / var(--tw-bg-opacity, 1));
}

.bg-green-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(0 227 89 / var(--tw-bg-opacity, 1));
}

.bg-green-1\/10 {
    background-color: #00e3591a;
}

.bg-green-1\/20 {
    background-color: #00e35933;
}

.bg-green-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(1 191 77 / var(--tw-bg-opacity, 1));
}

.bg-green-2\/10 {
    background-color: #01bf4d1a;
}

.bg-green-2\/5 {
    background-color: #01bf4d0d;
}

.bg-light-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 220 220 / var(--tw-bg-opacity, 1));
}

.bg-light-1\/10 {
    background-color: #dcdcdc1a;
}

.bg-light-1\/30 {
    background-color: #dcdcdc4d;
}

.bg-light-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 147 166 / var(--tw-bg-opacity, 1));
}

.bg-light-3 {
    --tw-bg-opacity: 1;
    background-color: rgb(78 80 88 / var(--tw-bg-opacity, 1));
}

.bg-light-grey-3 {
    --tw-bg-opacity: 1;
    background-color: rgb(146 147 166 / var(--tw-bg-opacity, 1));
}

.bg-orange-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 90 50 / var(--tw-bg-opacity, 1));
}

.bg-purple-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(156 109 255 / var(--tw-bg-opacity, 1));
}

.bg-purple-1\/20 {
    background-color: #9c6dff33;
}

.bg-purple-1\/5 {
    background-color: #9c6dff0d;
}

.bg-rank-bronze {
    --tw-bg-opacity: 1;
    background-color: rgb(216 161 110 / var(--tw-bg-opacity, 1));
}

.bg-rank-bronze-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(39 35 35 / var(--tw-bg-opacity, 1));
}

.bg-rank-bronze\/30 {
    background-color: #d8a16e4d;
}

.bg-rank-default {
    background-color: #d4a16d1a;
}

.bg-rank-diamond {
    --tw-bg-opacity: 1;
    background-color: rgb(14 195 246 / var(--tw-bg-opacity, 1));
}

.bg-rank-diamond-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(18 38 49 / var(--tw-bg-opacity, 1));
}

.bg-rank-gold {
    --tw-bg-opacity: 1;
    background-color: rgb(255 203 57 / var(--tw-bg-opacity, 1));
}

.bg-rank-gold-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(42 39 30 / var(--tw-bg-opacity, 1));
}

.bg-rank-rust {
    --tw-bg-opacity: 1;
    background-color: rgb(170 153 135 / var(--tw-bg-opacity, 1));
}

.bg-rank-rust-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(34 34 37 / var(--tw-bg-opacity, 1));
}

.bg-rank-silver {
    --tw-bg-opacity: 1;
    background-color: rgb(214 224 238 / var(--tw-bg-opacity, 1));
}

.bg-rank-silver-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(38 41 48 / var(--tw-bg-opacity, 1));
}

.bg-rank-unbreakable {
    --tw-bg-opacity: 1;
    background-color: rgb(251 93 71 / var(--tw-bg-opacity, 1));
}

.bg-rank-unbreakable-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(42 28 31 / var(--tw-bg-opacity, 1));
}

.bg-rank-uranium {
    --tw-bg-opacity: 1;
    background-color: rgb(98 249 36 / var(--tw-bg-opacity, 1));
}

.bg-rank-uranium-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(27 44 28 / var(--tw-bg-opacity, 1));
}

.bg-red-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
}

.bg-red-2\/20 {
    background-color: #ff5c5c33;
}

.bg-red-2\/5 {
    background-color: #ff5c5c0d;
}

.bg-slate-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
    background-color: transparent;
}

.bg-wear-bs-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(48 14 15 / var(--tw-bg-opacity, 1));
}

.bg-wear-fn-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(11 40 47 / var(--tw-bg-opacity, 1));
}

.bg-wear-ft-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(46 37 7 / var(--tw-bg-opacity, 1));
}

.bg-wear-mw-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(40 45 10 / var(--tw-bg-opacity, 1));
}

.bg-wear-ww-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(50 28 8 / var(--tw-bg-opacity, 1));
}

.bg-yellow-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
}

.bg-yellow-2\/10 {
    background-color: #e9b10e1a;
}

.bg-yellow-2\/20 {
    background-color: #e9b10e33;
}

.bg-yellow-2\/30 {
    background-color: #e9b10e4d;
}

.bg-yellow-2\/5 {
    background-color: #e9b10e0d;
}

.bg-yellow-3 {
    --tw-bg-opacity: 1;
    background-color: rgb(204 108 49 / var(--tw-bg-opacity, 1));
}

.bg-opacity-10 {
    --tw-bg-opacity: 0.1;
}

.bg-opacity-20 {
    --tw-bg-opacity: 0.2;
}

.bg-opacity-5,
.bg-opacity-\[0\.05\] {
    --tw-bg-opacity: 0.05;
}

.bg-\[radial-gradient\(50\%_50\%_at_50\%_50\%\,_rgba\(43\,_156\,_184\,_0\.2\)_0\%\,_rgba\(43\,_156\,_184\,_0\)_100\%\)\] {
    background-image: radial-gradient(50% 50% at 50% 50%, #2b9cb833, #2b9cb800);
}

.bg-gradient-radial {
    background-image: radial-gradient(
        50% 50% at 50% 50%,
        var(--tw-gradient-stops)
    );
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(
        to bottom right,
        var(--tw-gradient-stops)
    );
}

.bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.bg-none {
    background-image: none;
}

.from-\[\#16171D\] {
    --tw-gradient-from: #16171d var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(22 23 29 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#1D1E2600\] {
    --tw-gradient-from: #1d1e2600 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(29 30 38 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#292a34\] {
    --tw-gradient-from: #292a34 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(41 42 52 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#302F2D\] {
    --tw-gradient-from: #302f2d var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(48 47 45 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#666\] {
    --tw-gradient-from: #666 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(102 102 102 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#d8a16e\] {
    --tw-gradient-from: #d8a16e var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(216 161 110 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-\[\#dcdcdc\] {
    --tw-gradient-from: #dcdcdc var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(220 220 220 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-cyan-1 {
    --tw-gradient-from: #0ec3f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(14 195 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-dark-2 {
    --tw-gradient-from: #292a34 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(41 42 52 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-dark-3 {
    --tw-gradient-from: #1d1e26 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(29 30 38 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-dark-4 {
    --tw-gradient-from: #191a21 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(25 26 33 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-dark-5 {
    --tw-gradient-from: #15161d var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(21 22 29 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-dark-5\/50 {
    --tw-gradient-from: rgb(21 22 29 / 0.5) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(21 22 29 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-green-1 {
    --tw-gradient-from: #00e359 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 227 89 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-green-1\/5 {
    --tw-gradient-from: rgb(0 227 89 / 0.05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 227 89 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-light-1\/5 {
    --tw-gradient-from: rgb(220 220 220 / 0.05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(220 220 220 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-red-1 {
    --tw-gradient-from: #ff7e7f var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 126 127 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-transparent {
    --tw-gradient-from: transparent var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-yellow-1\/20 {
    --tw-gradient-from: rgb(255 207 66 / 0.2) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 207 66 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-yellow-2\/5 {
    --tw-gradient-from: rgb(233 177 14 / 0.05) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(233 177 14 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-\[\#1D1F2A\] {
    --tw-gradient-to: rgb(29 31 42 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from),
        #1d1f2a var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-\[\#24252F\] {
    --tw-gradient-to: rgb(36 37 47 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from),
        #24252f var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-\[\#292a34\] {
    --tw-gradient-to: rgb(41 42 52 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from),
        #292a34 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-\[\#9293A6\] {
    --tw-gradient-to: rgb(146 147 166 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from),
        #9293a6 var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-50\% {
    --tw-gradient-via-position: 50%;
}

.to-\[\#16171D\] {
    --tw-gradient-to: #16171d var(--tw-gradient-to-position);
}

.to-\[\#1D1E2600\] {
    --tw-gradient-to: #1d1e2600 var(--tw-gradient-to-position);
}

.to-\[\#fff\]\/\[3\%\] {
    --tw-gradient-to: rgb(255 255 255 / 3%) var(--tw-gradient-to-position);
}

.to-dark-3 {
    --tw-gradient-to: #1d1e26 var(--tw-gradient-to-position);
}

.to-dark-5 {
    --tw-gradient-to: #15161d var(--tw-gradient-to-position);
}

.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.to-50\%,
.to-\[50\%\] {
    --tw-gradient-to-position: 50%;
}

.to-\[80\%\] {
    --tw-gradient-to-position: 80%;
}

.bg-\[length\:1117px_550px\] {
    background-size: 1117px 550px;
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.bg-top {
    background-position: top;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.fill-current {
    fill: currentColor;
}

.stroke-current {
    stroke: currentColor;
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fill {
    -o-object-fit: fill;
    object-fit: fill;
}

.object-top {
    -o-object-position: top;
    object-position: top;
}

.\!p-0 {
    padding: 0 !important;
}

.\!p-\[6px\] {
    padding: 6px !important;
}

.\!p-xs {
    padding: 2px !important;
}

.p-0 {
    padding: 0;
}

.p-02 {
    padding: 2px;
}

.p-03 {
    padding: 3px;
}

*,
html,
body {
    font-family: Flama, sans-serif;
}

button,
input,
optgroup,
select,
textarea {
    line-height: 1.25;
}

.marker\:text-xs *::marker {
    font-size: 0.75rem;
}

.marker\:text-xs::marker {
    font-size: 0.75rem;
}

.placeholder\:text-light-grey-3::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.placeholder\:text-light-grey-3::placeholder {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.placeholder\:opacity-100::-moz-placeholder {
    opacity: 1;
}

.placeholder\:opacity-100::placeholder {
    opacity: 1;
}

.placeholder\:transition-opacity::-moz-placeholder {
    -moz-transition-property: opacity;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.placeholder\:transition-opacity::placeholder {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.before\:transition-all:before {
    content: var(--tw-content);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.before\:duration-150:before {
    content: var(--tw-content);
    transition-duration: 0.15s;
}

.after\:absolute:after {
    content: var(--tw-content);
    position: absolute;
}

.after\:inset-0:after {
    content: var(--tw-content);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.after\:-translate-x-full:after {
    content: var(--tw-content);
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
        rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y))
        scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:bg-gradient-to-r:after {
    content: var(--tw-content);
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.after\:from-dark-grey-3-alt\/0:after {
    content: var(--tw-content);
    --tw-gradient-from: rgb(34 35 44 / 0) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(34 35 44 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.after\:via-dark-grey-3-alt\/25:after {
    content: var(--tw-content);
    --tw-gradient-to: rgb(34 35 44 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from),
        rgb(34 35 44 / 0.25) var(--tw-gradient-via-position),
        var(--tw-gradient-to);
}

.after\:to-dark-grey-3-alt\/0:after {
    content: var(--tw-content);
    --tw-gradient-to: rgb(34 35 44 / 0) var(--tw-gradient-to-position);
}

.first\:border-t-0:first-child {
    border-top-width: 0;
}

.last\:py-md:last-child {
    padding-top: 8px;
    padding-bottom: 8px;
}

.last\:pb-0:last-child {
    padding-bottom: 0;
}

.even\:bg-dark-2:nth-child(2n) {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.even\:bg-dark-3:nth-child(2n) {
    --tw-bg-opacity: 1;
    background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
}

.even\:bg-dark-4:nth-child(2n) {
    --tw-bg-opacity: 1;
    background-color: rgb(25 26 33 / var(--tw-bg-opacity, 1));
}

.first-of-type\:pl-\[12px\]:first-of-type {
    padding-left: 12px;
}

.last-of-type\:pr-\[12px\]:last-of-type {
    padding-right: 12px;
}

.focus-within\:border-light-2:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(146 147 166 / var(--tw-border-opacity, 1));
}

.focus-within\:border-red-2:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(255 92 92 / var(--tw-border-opacity, 1));
}

.focus-within\:text-light-1:focus-within {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

@media (hover: hover) and (pointer: fine) {
    .hover\:cursor-pointer:hover {
        cursor: pointer;
    }

    .hover\:border-light-2\/20:hover {
        border-color: #9293a633;
    }

    .hover\:bg-dark-1:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(46 50 64 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-dark-2:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-dark-3:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-dark-4:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(25 26 33 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-dark-grey-4:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-dark-grey-4-alt:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(44 46 57 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-light-grey-1:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(220 220 220 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-red-1:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(255 126 127 / var(--tw-bg-opacity, 1));
    }

    .hover\:bg-red-2:hover {
        --tw-bg-opacity: 1;
        background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
    }

    .hover\:\!text-yellow-2:hover {
        --tw-text-opacity: 1 !important;
        color: rgb(233 177 14 / var(--tw-text-opacity, 1)) !important;
    }

    .hover\:text-green-1:hover {
        --tw-text-opacity: 1;
        color: rgb(0 227 89 / var(--tw-text-opacity, 1));
    }

    .hover\:text-light-1:hover {
        --tw-text-opacity: 1;
        color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    }

    .hover\:text-light-2:hover {
        --tw-text-opacity: 1;
        color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    }

    .hover\:text-light-grey-1:hover {
        --tw-text-opacity: 1;
        color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    }

    .hover\:text-light-grey-2:hover {
        --tw-text-opacity: 1;
        color: rgb(192 192 192 / var(--tw-text-opacity, 1));
    }

    .hover\:text-red-3:hover {
        --tw-text-opacity: 1;
        color: rgb(207 53 53 / var(--tw-text-opacity, 1));
    }

    .hover\:text-yellow-2:hover {
        --tw-text-opacity: 1;
        color: rgb(233 177 14 / var(--tw-text-opacity, 1));
    }

    .hover\:underline:hover {
        text-decoration-line: underline;
    }

    .hover\:opacity-100:hover {
        opacity: 1;
    }
}

.focus\:border-light-2:focus {
    --tw-border-opacity: 1;
    border-color: rgb(146 147 166 / var(--tw-border-opacity, 1));
}

.focus\:border-yellow-2:focus {
    --tw-border-opacity: 1;
    border-color: rgb(233 177 14 / var(--tw-border-opacity, 1));
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:placeholder\:opacity-75:focus::-moz-placeholder {
    opacity: 0.75;
}

.focus\:placeholder\:opacity-75:focus::placeholder {
    opacity: 0.75;
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.active\:text-light-1:active {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.active\:text-yellow-2:active {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.disabled\:bg-dark-7:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.disabled\:text-light-3:disabled {
    --tw-text-opacity: 1;
    color: rgb(78 80 88 / var(--tw-text-opacity, 1));
}

.disabled\:opacity-30:disabled {
    opacity: 0.3;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

@media (hover: hover) and (pointer: fine) {
    .group\/item:hover .group-hover\/item\:visible {
        visibility: visible;
    }

    .group:hover .group-hover\:block {
        display: block;
    }

    .group:hover .group-hover\:flex {
        display: flex;
    }

    .group:hover .group-hover\:hidden {
        display: none;
    }

    .group:hover .group-hover\:rotate-\[5deg\] {
        --tw-rotate: 5deg;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .group:hover .group-hover\:scale-\[1\.15\] {
        --tw-scale-x: 1.15;
        --tw-scale-y: 1.15;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y))
            rotate(var(--tw-rotate)) skew(var(--tw-skew-x))
            skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
            scaleY(var(--tw-scale-y));
    }

    .group:hover .group-hover\:text-light-1,
    .group:hover .group-hover\:text-light-grey-1 {
        --tw-text-opacity: 1;
        color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    }

    .group:hover .group-hover\:opacity-100 {
        opacity: 1;
    }
}

.group:disabled .group-disabled\:text-light-3 {
    --tw-text-opacity: 1;
    color: rgb(78 80 88 / var(--tw-text-opacity, 1));
}

.group\/form.validated .group-\[\.validated\]\/form\:block {
    display: block;
}

.ui-selected\:bg-dark-2[data-headlessui-state~="selected"] {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.ui-selected\:text-light-1[data-headlessui-state~="selected"] {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

:where([data-headlessui-state~="selected"]) .ui-selected\:bg-dark-2 {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

:where([data-headlessui-state~="selected"]) .ui-selected\:text-light-1 {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.ui-not-selected\:text-light-2[data-headlessui-state]:not(
        [data-headlessui-state~="selected"]
    ) {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

:where([data-headlessui-state]:not([data-headlessui-state~="selected"]))
    .ui-not-selected\:text-light-2:not([data-headlessui-state]) {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.ui-active\:text-light-1[data-headlessui-state~="active"] {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

:where([data-headlessui-state~="active"]) .ui-active\:text-light-1 {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

@font-face {
    font-family: Flama;
    src: url(../fonts/FlamaBasic-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Flama;
    src: url(../fonts/Flama-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Flama;
    src: url(../fonts/FlamaSemibold-Regular.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Flama-Medium;
    src: url(../fonts/FlamaMedium-Regular.ttf) format("truetype")
        url(../fonts/FlamaMedium-Regular.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    unicode-range: U+30-39;
}

@font-face {
    font-family: Flama-Condensed;
    src: url(../fonts/FlamaCondensedBold-Regular.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Flama-Bold;
    src: url(../fonts/Flama-Bold.otf);
    font-weight: 800;
}

.font-bold {
    font-family: Flama-Medium, Flama, sans-serif;
    font-weight: 700;
}

:root {
    --site-chat-width: calc(100vw - 4.375rem);
    --site-sidebar-width: 280px;
    --button-height: 36px;
    --global-transition: 175ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    --mask-background-color: rgba(0, 0, 0, 0.5);
    --mask-background-color-dark: rgba(0, 0, 0, 0.8);
    --real-100vh: calc(var(--vh, 1vh) * 100);
    --no-v-scrollbar-offset: 0px;
}

@media (min-width: 576px) {
    :root {
        --site-chat-width: 280px;
    }
}

body {
    --tw-bg-opacity: 1;
    background-color: rgb(21 22 29 / var(--tw-bg-opacity, 1));
    font-family: Flama, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

button:focus {
    outline: none !important;
}

hr {
    margin: 0;
}

input[type="text"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="email"] {
    outline: none;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

input[type="text"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    opacity: 0.75;
    -moz-transition: opacity var(--global-transition);
    transition: opacity var(--global-transition);
}

input[type="text"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="search"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    opacity: 0.75;
    transition: opacity var(--global-transition);
}

input[type="text"]:focus::-moz-placeholder,
input[type="url"]:focus::-moz-placeholder,
input[type="number"]:focus::-moz-placeholder,
input[type="search"]:focus::-moz-placeholder,
input[type="password"]:focus::-moz-placeholder,
input[type="email"]:focus::-moz-placeholder {
    opacity: 0.5;
}

input[type="text"]:focus::placeholder,
input[type="url"]:focus::placeholder,
input[type="number"]:focus::placeholder,
input[type="search"]:focus::placeholder,
input[type="password"]:focus::placeholder,
input[type="email"]:focus::placeholder {
    opacity: 0.5;
}

input[type="text"]:disabled,
input[type="url"]:disabled,
input[type="number"]:disabled,
input[type="search"]:disabled,
input[type="password"]:disabled,
input[type="email"]:disabled {
    cursor: not-allowed;
}

input[type="text"].placeholder-light-grey-1::-moz-placeholder,
input[type="url"].placeholder-light-grey-1::-moz-placeholder,
input[type="number"].placeholder-light-grey-1::-moz-placeholder,
input[type="search"].placeholder-light-grey-1::-moz-placeholder,
input[type="password"].placeholder-light-grey-1::-moz-placeholder,
input[type="email"].placeholder-light-grey-1::-moz-placeholder {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

input[type="text"].placeholder-light-grey-1::placeholder,
input[type="url"].placeholder-light-grey-1::placeholder,
input[type="number"].placeholder-light-grey-1::placeholder,
input[type="search"].placeholder-light-grey-1::placeholder,
input[type="password"].placeholder-light-grey-1::placeholder,
input[type="email"].placeholder-light-grey-1::placeholder {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

textarea {
    outline: none;
    display: block;
    width: 100%;
    border-radius: 0.25rem;
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
    padding: 0.9375rem;
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

textarea::-moz-placeholder {
    -moz-transition: opacity var(--global-transition);
    transition: opacity var(--global-transition);
}

textarea::placeholder {
    transition: opacity var(--global-transition);
}

textarea:focus::-moz-placeholder {
    opacity: 0.25;
}

textarea:focus::placeholder {
    opacity: 0.25;
}

.input label {
    margin-bottom: 0.625rem;
    display: block;
    font-size: 0.75rem;
}

.input input {
    position: relative;
    z-index: 10;
    height: 3.125rem;
    width: 100%;
    border-radius: 0.25rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(41 42 52 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    transition: padding var(--global-transition), color var(--global-transition),
        border var(--global-transition), background var(--global-transition);
    outline: none !important;
}

.input input:focus {
    --tw-border-opacity: 1;
    border-color: rgb(146 147 166 / var(--tw-border-opacity, 1));
    outline: none;
}

.input input:invalid:focus,
.input input.invalid:focus {
    --tw-border-opacity: 1;
    border-color: rgb(255 92 92 / var(--tw-border-opacity, 1));
}

.input input.success {
    --tw-border-opacity: 1;
    border-color: rgb(0 227 89 / var(--tw-border-opacity, 1));
    background: #10d9600f;
}

.input input:disabled {
    cursor: not-allowed;
}

.input input::-moz-selection {
    color: #000;
    background: #e9b10bfc;
}

.input input::selection {
    color: #000;
    background: #e9b10bfc;
}

.link {
    cursor: pointer;
    text-align: left;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    transition: color var(--global-transition);
}

.link.active,
.link:hover {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.link.link-highlight {
    --tw-text-opacity: 1;
    color: rgb(1 191 77 / var(--tw-text-opacity, 1));
}

.link svg {
    transition: fill var(--global-transition);
    fill: currentColor;
}

.link-yellow-2 {
    cursor: pointer;
    text-align: left;
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
    transition: color var(--global-transition);
}

.link-yellow-2.active {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.link-yellow-2 svg {
    transition: fill var(--global-transition);
    fill: currentColor;
}

.coinstack {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYCAMAAABGS8AGAAAANlBMVEUAAADpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQvpsQs7bjUoAAAAEXRSTlMAQMCA8WAQMCDQoFDhkLBwyazXKMIAAAIZSURBVFjD7ZnpjusgDEYT2yTsDO//sveOorKESQMTV2pHOX+qLjqlhPgzdLq5eUPWuWS5bAuoASj+hAJANKPfIQ2CjX2Axj79GjzFUZQW8qnV6CQdl+N6NAGNddgtlla7QmSAcKdeXGTCmsqrIh+iECcvs9lEVmwSY+Qlib8+TgysWirEnzHiW/w3xIHXSy+rbq+sx/wFzs4PpVBmi1KuzMsZ6h8pzRilgspZkcFe0PoiRue4EYpGSP1qrLpuKdIAvSyWiHFDcoK2BzruNObggHqcIklL6l/T9HXLbBABoBHarYndfRp1FteokNwNy/O2exE+xq9WnN3OTMNI4beJ2YlbuVgHpDotgSw+6dRP9KvBdIE7xRkAh2iqqf3/JKCr9hKt+Aq3uEtM8RRKj+foJBaRE5LTS8xULXtDXF617msSz3Bxu3lKu0S6HM2Paq4jyKrmqStaL1L1SDmXkEH91rpkyebQTa3Wg3JwcxVnlHuhNifQd9mVDrtkkj6/mV50+0MbRAB7VEebQt10O7kNoCCPgy4zHWD8kx2kF8k9xCI0nbX0ys2DUuNU714BnOkauZzR29FNCOUL1PKdeB6u7W4AwGHCAwC9y7bp88SO12uTWBKr2BTVgdMsqvUObPOwvwGE5cs+XnXOvpZZE0P28Z5Ne7Hwn6YD9pfbVTjosBN07VfaZBKoAWKLBXDp34oryDmzTjc378Q/M5AvDF+/1TwAAAAASUVORK5CYII=)
        center center/100% auto no-repeat;
}

.btc {
    background: url(../img/payment/crypto/bitcoin.png) center center/100% auto
        no-repeat;
}

.bch {
    background: url(../img/payment/crypto/bitcoin-cash.png) center center/100%
        auto no-repeat;
}

.eth {
    background: url(../img/payment/crypto/ethereum.png) center center/100% auto
        no-repeat;
}

.ltc {
    background: url(../img/payment/crypto/litecoin.png) center center/100% auto
        no-repeat;
}

.usdc {
    background: url(../img/payment/crypto/usdc.png) center center/100% auto
        no-repeat;
}

.usdt {
    background: url(../img/payment/crypto/usdt.png) center center/100% auto
        no-repeat;
}

span.coinstack {
    display: inline-block;
}

.stop-ios-flickering {
    transform: translateZ(0);
}

.coin-t {
    background: url(../img/coins/coin-t.png) center center/100% auto no-repeat;
}

.coin-t-halloween {
    background: url(../img/coins/coin-t-halloween.png) center center/100% auto
        no-repeat;
}

.coin-ct {
    background: url(../img/coins/coin-ct.png) center center/100% auto no-repeat;
}

.coin-ct-halloween {
    background: url(../img/coins/coin-ct-halloween.png) center center/100% auto
        no-repeat;
}

.coin-bonus {
    background: url(../img/coins/coin-bonus.png) center center/100% auto
        no-repeat;
}

.coin-bonus-halloween {
    background: url(../img/coins/coin-bonus-halloween.png) center center/100%
        auto no-repeat;
}

.coin-bonuspot {
    background: url(../img/coins/coin-bonuspot.png) center center/100% auto
        no-repeat;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(174px, 1fr));
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}

@media screen and (min-width: 440px) {
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

.label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: Flama-Medium, Flama, sans-serif;
    font-weight: 700;
}

.font-numeric {
    font-variant-numeric: tabular-nums;
}

.heading {
    font-family: Flama-Condensed, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.heading-small {
    font-family: Flama-Condensed, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.heading-large {
    font-family: Flama-Condensed, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.heading-x-large {
    font-family: Flama-Condensed, sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

@media (min-width: 576px) {
    .heading-x-large {
        font-size: 2.25rem;
    }
}

.heading-gradient {
    background: -webkit-linear-gradient(
        135deg,
        #c99f21 0%,
        #ffe9a5 25%,
        #f8ebb8 30%,
        #dcbb60 39%,
        #dab341 81%,
        #dbc345 87%,
        #ffeacc 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.flex-order-first {
    order: 0;
}

.flex-order-last {
    order: 999;
}

.grayscale {
    filter: grayscale(1);
}

.word-break-all {
    word-break: break-all;
}

.word-break-word {
    word-break: break-word;
}

.page-wrapper {
    max-width: 768px;
    margin: 0 auto;
}

.input-text-center .input__field {
    text-align: center;
}

.line-divider {
    width: 100%;
    background-color: #191a21;
    height: 1px;
}

.pipe {
    width: 1px;
    height: 16px;
    --tw-bg-opacity: 1;
    background-color: rgb(46 50 64 / var(--tw-bg-opacity, 1));
}

.standard-icon {
    fill: currentColor;
    width: 14px;
    height: 14px;
}

.content-link {
    text-decoration: underline;
}

.content-link:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    cursor: pointer;
}

.page-layout__inner p a {
    text-decoration: underline;
}

.page-layout__inner p a:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    cursor: pointer;
}

.v--modal-overlay p a {
    text-decoration: underline;
}

.v--modal-overlay p a:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    cursor: pointer;
}

.csgo-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    font-size: 16px;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

@media (min-width: 728px) {
    .csgo-layout-wrapper {
        width: 664px;
    }
}

@media (min-width: 992px) {
    .csgo-layout {
        padding: 64px;
    }
}

.csgo-layout .article-category {
    margin-bottom: 8px;
    text-transform: uppercase;
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.csgo-layout-content .blackboard {
    padding-bottom: 32px;
    padding-top: 16px;
}

.csgo-layout-content .blackboard-content {
    border-radius: 0.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(18 19 25 / var(--tw-bg-opacity, 1));
    padding: 16px 32px;
}

.csgo-layout-content .blackboard-content-tab {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.csgo-layout-content .blackboard-content-item {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.csgo-layout-content .blackboard-other {
    padding-top: 32px;
}

.csgo-layout-content .blackboard-other .blackboard-content {
    padding: 16px;
}

@media (min-width: 728px) {
    .csgo-layout-content .blackboard-other .blackboard-content {
        padding: 32px;
    }
}

.csgo-layout-content .blackboard-other .blackboard-content .img-icon {
    height: 100%;
    width: 32px;
}

@media (min-width: 728px) {
    .csgo-layout-content .blackboard-other .blackboard-content .img-icon {
        width: 64px;
    }
}

.csgo-layout-content .blackboard-other .blackboard-content .blackboard-body {
    padding-left: 16px;
}

@media (min-width: 728px) {
    .csgo-layout-content
        .blackboard-other
        .blackboard-content
        .blackboard-body {
        padding-left: 32px;
    }
}

.csgo-layout-content .blackboard-other .blackboard-content .blackboard-body h3 {
    margin-bottom: 4px;
}

.csgo-layout-content .blackboard-other .blackboard-content .blackboard-body p {
    margin-bottom: 0;
}

.csgo-layout-content h1,
.csgo-layout-content h2,
.csgo-layout-content h3 {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.csgo-layout-content h1,
.csgo-layout-content h2 {
    margin-bottom: 16px;
    padding-top: 16px;
}

.csgo-layout-content ol,
.csgo-layout-content ul {
    margin-bottom: 16px;
    margin-left: 32px;
}

.csgo-layout-content ol li,
.csgo-layout-content ul li {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.csgo-layout-content ol {
    list-style-type: decimal;
}

.csgo-layout-content ul {
    list-style-type: disc;
}

.csgo-layout-content p:not(table p) {
    margin-bottom: 16px;
}

.csgo-layout-content a {
    text-decoration: underline;
}

.csgo-layout-content a:hover {
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    cursor: pointer;
}

.button-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.15;
    height: var(--button-height);
    transition: color var(--global-transition),
        background var(--global-transition), box-shadow var(--global-transition),
        opacity var(--global-transition);
}

.button-primary--gold {
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(16 16 20 / var(--tw-text-opacity, 1));
    box-shadow: inset 0 -3px #cc6c31;
    padding-bottom: 3px;
}

.button-primary--gold:hover {
    background: #f5c432;
}

.button-primary--gold:disabled {
    background: #8e7326;
    box-shadow: inset 0 -3px #805139;
    cursor: default;
}

.button-primary--green {
    --tw-text-opacity: 1;
    color: rgb(21 22 29 / var(--tw-text-opacity, 1));
    background: #02bf4d;
    box-shadow: inset 0 -3px #00963b;
    padding-bottom: 3px;
}

.button-primary--green:hover {
    background: #00e359;
}

.button-primary--green:disabled {
    background: #015a24;
    box-shadow: inset 0 -3px #003013;
    cursor: default;
}

.button-primary--red {
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(16 16 20 / var(--tw-text-opacity, 1));
    box-shadow: inset 0 -3px #cf3535;
    padding-bottom: 3px;
}

.button-primary--red:hover {
    background: #ff7e7f;
}

.button-primary--red:disabled {
    background: #943e42;
    box-shadow: inset 0 -3px #7c2a2e;
    cursor: default;
}

.button-primary--dark {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    box-shadow: inset 0 -3px #15161d;
    padding-bottom: 3px;
}

.button-primary--dark:hover {
    background: #353849;
}

.button-primary--light {
    --tw-bg-opacity: 1;
    background-color: rgb(220 220 220 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(41 42 52 / var(--tw-text-opacity, 1));
    box-shadow: inset 0 -3px #dcdcdc;
    padding-bottom: 3px;
}

.button-primary--light:hover {
    background: #f2f2f2;
}

.button-primary--large {
    height: 3rem;
    font-size: 0.9375rem;
}

.button-primary--disabled-opacity-0:disabled {
    opacity: 0;
}

.button-primary--success {
    --tw-text-opacity: 1;
    color: rgb(21 22 29 / var(--tw-text-opacity, 1));
    background: #02bf4d;
    box-shadow: inset 0 -3px #00963b;
}

.button-primary--success:disabled {
    cursor: default;
}

.button-primary.router-link-exact-active,
.button-primary.router-link-active {
    background: #d68b00;
    box-shadow: none;
}

.button-primary--none {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.button-primary--none:hover {
    fill: #123123;
    color: #e9b10b;
}

.button-secondary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    height: var(--button-height);
    transition: color var(--global-transition),
        background var(--global-transition);
}

.button-secondary--gold {
    --tw-bg-opacity: 1;
    background-color: rgb(233 177 14 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(16 16 20 / var(--tw-text-opacity, 1));
}

.button-secondary--gold:hover {
    background: #f5c432;
}

.button-secondary--green {
    --tw-text-opacity: 1;
    color: rgb(21 22 29 / var(--tw-text-opacity, 1));
    background: #02bf4d;
}

.button-secondary--green:hover {
    background: #00e359;
}

.button-secondary--red {
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(16 16 20 / var(--tw-text-opacity, 1));
}

.button-secondary--red:hover {
    background: #ff7e7f;
}

.button-secondary--dark {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.button-secondary--dark:hover {
    background: #353849;
}

.button-secondary--light {
    --tw-bg-opacity: 1;
    background-color: rgb(220 220 220 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(41 42 52 / var(--tw-text-opacity, 1));
}

.button-secondary--light:hover {
    background: #f2f2f2;
}

.button-secondary--large {
    height: 3.125rem;
    font-size: 0.9375rem;
}

.button-tertiary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    border-width: 1px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    height: var(--button-height);
    transition: color var(--global-transition), border var(--global-transition);
}

.button-tertiary--gold {
    --tw-border-opacity: 1;
    border-color: rgb(233 177 14 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.button-tertiary--gold:hover {
    --tw-border-opacity: 1;
    border-color: rgb(192 192 192 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

.button-tertiary--green {
    --tw-border-opacity: 1;
    border-color: rgb(0 227 89 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(0 227 89 / var(--tw-text-opacity, 1));
}

.button-tertiary--green:hover {
    --tw-border-opacity: 1;
    border-color: rgb(192 192 192 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

.button-tertiary--red {
    --tw-border-opacity: 1;
    border-color: rgb(255 92 92 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(255 92 92 / var(--tw-text-opacity, 1));
}

.button-tertiary--red:hover {
    --tw-border-opacity: 1;
    border-color: rgb(192 192 192 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

.button-tertiary--dark {
    --tw-border-opacity: 1;
    border-color: rgb(146 147 166 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.button-tertiary--dark:hover {
    --tw-border-opacity: 1;
    border-color: rgb(192 192 192 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

.button-tertiary--dark:disabled {
    cursor: default;
    --tw-border-opacity: 1;
    border-color: rgb(146 147 166 / var(--tw-border-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.button-tertiary--large {
    height: 3.125rem;
    font-size: 0.9375rem;
}

.button-pill {
    height: 1.625rem;
    border-radius: 0.125rem;
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
}

.button-pill:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.button-pill {
    transition: color var(--global-transition),
        background var(--global-transition);
}

.button-pill:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(44 46 57 / var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
}

@media (min-width: 992px) {
    .button-pill {
        height: 1.25rem;
    }
}

.button-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    height: var(--button-height);
    background: #0006;
}

.button-matchbetting {
    margin-top: auto;
    margin-bottom: auto;
    width: 100%;
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
    padding-left: 16px;
    padding-right: 16px;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
    height: 38px;
    box-shadow: inset 0 -2px #0f1116;
    border-radius: 4px;
}

.button-matchbetting:hover {
    background-color: #2e3240;
}

.button-matchbetting:disabled {
    opacity: 0.3;
}

.button-matchbetting:disabled:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.button-matchbetting--active {
    background-color: #2e3240;
}

.level-up {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    padding: 1.5625rem;
    background: var(--mask-background-color-dark);
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.level-up__inner {
    display: flex;
    min-height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.level-up__main {
    transform: translateZ(0) rotate(0.01deg);
    backface-visibility: hidden;
}

.level-up__badge {
    width: 6rem;
}

@media (min-width: 768px) {
    .level-up__badge {
        width: 10rem;
    }
}

.level-up__level {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-family: Flama-Condensed, sans-serif;
    font-weight: 400;
    line-height: 1;
    font-size: 3.5rem;
}

.table-standard {
    width: 100%;
    text-align: left;
    font-size: 0.8125rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-color: #292a34 transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.table-standard::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.table-standard::-webkit-scrollbar-track {
    background: transparent;
}

.table-standard::-webkit-scrollbar-corner {
    background: transparent;
}

.table-standard::-webkit-scrollbar-thumb {
    background-color: #292a34;
    border-radius: 8px;
}

.table-standard table {
    display: table;
    width: 100%;
    white-space: nowrap;
    --tw-text-opacity: 1;
    color: rgb(220 220 220 / var(--tw-text-opacity, 1));
}

.table-standard table thead tr {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.table-standard table thead tr th {
    display: none;
    padding: 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .table-standard table thead tr th {
        display: table-cell;
    }
}

.table-standard table tbody tr {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.table-standard table tbody tr:nth-child(2n) {
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.table-standard table tbody td {
    display: block;
    padding: 0.3125rem 0.625rem;
}

.table-standard table tbody td:first-child {
    padding-top: 0.625rem;
}

.table-standard table tbody td:last-child {
    padding-bottom: 0.625rem;
}

.table-standard table tbody td:before {
    margin-bottom: 0.3125rem;
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    content: attr(data-label) ":";
}

@media (min-width: 768px) {
    .table-standard table tbody td {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
        display: table-cell;
    }

    .table-standard table tbody td:before {
        display: none;
    }
}

.table-wrapper {
    overflow: hidden;
    border-radius: 0.5rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(29 30 38 / var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: rgb(16 16 20 / var(--tw-bg-opacity, 1));
}

.transition {
    transition: all var(--global-transition);
}

.transition-2 {
    transition: all 0.2s ease-in-out;
}

.transition-10 {
    transition: all 1s ease-in-out;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.4s;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.matchbetting-enter-active {
    transition: opacity 0.4s;
}

.matchbetting-leave-active {
    transition: opacity 0ms;
    transition-delay: 0ms !important;
}

.matchbetting-enter-from,
.matchbetting-leave-to {
    opacity: 0;
}

.matchbetting-move {
    transition: all 0.2s ease-in-out;
}

.tabbed-content-enter-active,
.tabbed-content-leave-active {
    transition: opacity 0.4s;
}

.tabbed-content-leave-active {
    position: absolute;
}

.tabbed-content-enter-from,
.tabbed-content-leave-to {
    opacity: 0;
}

.quick-fade-enter-active,
.quick-fade-leave-active {
    transition: opacity var(--global-transition);
}

.quick-fade-enter-from,
.quick-fade-leave-to {
    opacity: 0;
}

.scale-fade-enter-active,
.scale-fade-leave-active {
    transition: all 0.4s;
}

.scale-fade-enter-from,
.scale-fade-leave-to {
    transform: scale(0.85) translateZ(0);
    opacity: 0;
}

.scale-fade-enter-to,
.scale-fade-leave-from {
    transform: scale(1) translateZ(0);
    opacity: 1;
}

.previous-rolls-enter-active,
.previous-rolls-leave-active,
.previous-rolls-item {
    transition: all 1s;
}

.previous-rolls-enter-from {
    opacity: 0;
    transform: translate(29px);
}

.previous-rolls-leave-to {
    opacity: 0;
    transform: translate(-29px);
}

.previous-rolls-leave-active {
    position: absolute;
}

.bets-enter-from {
    opacity: 0;
}

.bets-enter-to {
    opacity: 1;
}

.bets-leave-to {
    opacity: 0;
}

.coinflipgrid-enter-active {
    transition-delay: 0.15s;
    transition: all 0.5s;
}

.coinflipgrid-leave-active {
    opacity: 0;
    position: absolute;
}

.slide-left-enter-active,
.slide-left-leave-active,
.slide-right-enter-active,
.slide-right-leave-active {
    transition-duration: 0.4s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
}

.slide-left-leave-active,
.slide-right-leave-active {
    position: absolute;
}

.slide-left-enter-from,
.slide-right-leave-active {
    opacity: 0;
    transform: translate(15%);
}

.slide-left-leave-active,
.slide-right-enter-from {
    opacity: 0;
    transform: translate(-15%);
}

.kyc-form-slide-left-enter-active,
.kyc-form-slide-left-leave-active,
.kyc-form-slide-right-enter-active,
.kyc-form-slide-right-leave-active {
    transition-duration: 0.75s;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
}

.kyc-form-slide-left-leave-active,
.kyc-form-slide-right-leave-active {
    position: absolute;
}

.kyc-form-slide-left-enter-from,
.kyc-form-slide-right-leave-active {
    opacity: 0;
    transform: translate(100%);
}

.kyc-form-slide-left-leave-active,
.kyc-form-slide-right-enter-from {
    opacity: 0;
    transform: translate(-100%);
}

.page-enter-from {
    opacity: 0;
}

.page-enter-active {
    transition: opacity 225ms;
}

.page-enter-to {
    opacity: 1;
}

.page-leave-to {
    opacity: 0;
}

.betrow-enter-from {
    transform: scale(0.65) translateZ(0);
    opacity: 0;
}

.betrow-enter-active {
    transition: all 0.4s;
    transition-delay: 0.1s;
}

.betrow-enter-to {
    transform: scale(1) translateZ(0);
    opacity: 1;
}

.betrow-leave-active {
    display: none;
}

.betrow-move {
    transition: all 0.5s;
}

.expand-collapse-enter-active,
.expand-collapse-leave-active {
    transition: 0.4s grid-template-rows ease;
    display: grid;
}

.expand-collapse-enter-from,
.expand-collapse-leave-to {
    grid-template-rows: 0fr;
}

.expand-collapse-enter-to,
.expand-collapse-leave-from {
    grid-template-rows: 1fr;
}

body:not(.is-safari) .scrollbar,
body:not(.is-safari) .scroll-x,
body:not(.is-safari) .scroll-y,
body:not(.is-safari) .scroll-xy {
    scrollbar-width: thin;
}

.scrollbar,
.scroll-x,
.scroll-y,
.scroll-xy {
    scrollbar-color: #292a34 transparent;
    -webkit-overflow-scrolling: touch;
}

.scrollbar::-webkit-scrollbar,
.scroll-x::-webkit-scrollbar,
.scroll-y::-webkit-scrollbar,
.scroll-xy::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.scrollbar::-webkit-scrollbar-track,
.scroll-x::-webkit-scrollbar-track,
.scroll-y::-webkit-scrollbar-track,
.scroll-xy::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar::-webkit-scrollbar-corner,
.scroll-x::-webkit-scrollbar-corner,
.scroll-y::-webkit-scrollbar-corner,
.scroll-xy::-webkit-scrollbar-corner {
    background: transparent;
}

.scrollbar::-webkit-scrollbar-thumb,
.scroll-x::-webkit-scrollbar-thumb,
.scroll-y::-webkit-scrollbar-thumb,
.scroll-xy::-webkit-scrollbar-thumb {
    background-color: #292a34;
    border-radius: 8px;
}

.scrollbar--contain,
.scroll-x--contain,
.scroll-y--contain,
.scroll-xy--contain {
    overscroll-behavior: contain;
}

.scrollbar--hide-bar,
.scroll-x--hide-bar,
.scroll-y--hide-bar,
.scroll-xy--hide-bar {
    scrollbar-width: none;
}

.scrollbar--hide-bar::-webkit-scrollbar,
.scroll-x--hide-bar::-webkit-scrollbar,
.scroll-y--hide-bar::-webkit-scrollbar,
.scroll-xy--hide-bar::-webkit-scrollbar {
    display: none;
}

.scroll-y {
    overflow-x: hidden;
    overflow-y: auto;
}

.scroll-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.scroll-xy {
    overflow-x: auto;
    overflow-y: auto;
}

.list-message {
    position: relative;
    margin-bottom: 0.3125rem;
    margin-right: 0.9375rem;
    display: flex;
    cursor: pointer;
    align-items: center;
    border-radius: 0.3125rem;
    padding: 0.625rem;
    transition: background var(--global-transition);
}

.list-message__avatar {
    height: 2.5rem;
    width: 2.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.list-message__notification-orb {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 8px;
    margin-top: 8px;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 92 92 / var(--tw-bg-opacity, 1));
}

.user-message p {
    padding-bottom: 0.625rem;
}

.inbox {
    padding: 0;
    height: 70vh;
}

.btn-tertiary {
    opacity: 0.33;
}

.btn-tertiary.active {
    opacity: 1;
}

.list-container {
    height: 100%;
    display: flex;
    width: 33.33333%;
    flex-direction: column;
    overflow: hidden;
    border-right-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(21 22 29 / var(--tw-border-opacity, 1));
    padding: 16px 0 16px 16px;
    min-width: 15rem;
}

@media (max-width: 767px) {
    .list-container {
        width: 100%;
        flex-shrink: 0;
    }
}

.details-container {
    display: flex;
    width: 66.66667%;
    flex-grow: 1;
    flex-direction: column;
    overflow: hidden;
}

@media (max-width: 767px) {
    .details-container {
        width: 100%;
        flex-shrink: 0;
        --tw-bg-opacity: 1;
        background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1));
        display: none;
    }

    .details-container--mobile-open {
        display: flex;
        transform: translate(-100%);
    }
}

.wrapper > * {
    --tw-bg-opacity: 1;
    /* background-color: rgb(29 30 38 / var(--tw-bg-opacity, 1)); */
}

.wrapper-dark > * {
    --tw-bg-opacity: 1;
    /* background-color: rgb(21 22 29 / var(--tw-bg-opacity, 1)); */
}

.wrapper-regular > * {
    padding: 16px;
}

.wrapper-large > * {
    padding: 32px;
}

.wrapper > *:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.wrapper > *:last-child {
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.wrapper.tabbed > *:first-child {
    border-top-left-radius: 0;
}

.wrapper.tabbed.separated > *:first-child {
    margin-top: 0;
}

.separated > * {
    margin-top: 1px;
}

.highlight > *:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(41 42 52 / var(--tw-bg-opacity, 1));
}

.collapsible-content-animation-enter-active,
.collapsible-content-animation-leave-active {
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.collapsible-content-animation-enter-active {
    transition: all 0.45s;
}

.collapsible-content-animation-leave-active {
    transition: all 0.2s;
}

.collapsible-content-animation-enter-from,
.collapsible-content-animation-leave-to {
    height: 0;
}

.disclosure-panel-ui {
    overflow: hidden;
}

.message {
    position: relative;
}

.message__inner {
    display: flex;
    padding: 8px 16px;
}

.message__avatar,
.message__icon {
    flex-shrink: 0;
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 4px;
}

.message__avatar {
    top: 0.05em;
    cursor: pointer;
}

.message__avatar img {
    width: 100%;
    border-radius: 100%;
}

.message__icon--large {
    width: 66px;
    height: auto;
    margin-right: 8px;
}

.message__main {
    width: calc(100% - 22px);
    line-height: 1.25rem;
}

.message__text {
    --tw-text-opacity: 1;
    color: rgb(192 192 192 / var(--tw-text-opacity, 1));
    font-size: 0.8125rem;
    word-wrap: break-word;
}

.message__text img {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -2px;
}

.chat-head {
    height: 60px;
    padding: 10px;
}

.chat-head-button {
    --tw-text-opacity: 1;
    color: rgb(146 147 166 / var(--tw-text-opacity, 1));
    height: 40px;
    font-size: 0.8125rem;
    padding: 0 15px;
    border-radius: 3px;
    box-shadow: inset 0 -2px #15161d;
}

.chat-head-button__indicator {
    width: 8px;
    height: 8px;
}

.chat-head-button__caret {
    transition: color 0.4s;
}

.v-popper--shown .chat-head-button__caret {
    --tw-text-opacity: 1;
    color: rgb(233 177 14 / var(--tw-text-opacity, 1));
}

.room-box__mobile {
    max-height: calc(100vh - 130px);
}

.room-box__desktop {
    max-height: calc(100vh - 160px);
}

.chat-head-popover .popover-panel {
    width: calc(var(--site-chat-width) - 20px) !important;
    max-width: 100% !important;
}

.lang-picker-flyout {
    padding-left: 16px;
    padding-right: 16px;
}

.lang-picker-flyout__inner {
    position: relative;
}

.lang-picker-flyout__inner .icon-chevron-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lang-picker-flyout img {
    width: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lang-picker-flyout select {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    color: inherit;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 16px 18px 16px 22px;
    font-weight: 700;
    transform: translateZ(0);
    z-index: 2;
}

.lang-picker-flyout select::-ms-expand {
    display: none;
}

.lang-picker-flyout select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #dcdcdc;
}

.lang-picker-flyout select:focus {
    outline: none;
}

.lang-picker-flyout select option {
    color: #000;
}

.container {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: calc(100vh - var(--site-header-height));
    max-width: 1366px;
    margin: 0 auto;
}

.side-menu {
    width: 130px;
    min-width: -moz-max-content;
    min-width: max-content;
}

.notify {
    width: 5px;
    height: 5px;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 90 50 / var(--tw-bg-opacity, 1));
    margin-top: -7px;
    margin-left: 4px;
}

.last-transaction-column {
    min-width: 170px;
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.no-transactions {
    width: 320px;
}
