:root {
    --body: #181A21;
    --dark: #121419;
    --light: #212530;
    --gray-btn: #1F212A;
    --primary: #E8B00B;
    --primary-hover: #F8CE3C;
    --gray-text: #717787;
    --gray-hover-btn: rgb(50, 56, 71);
    --red-gradient: #db3131;
    --level-0: #AE572F;
    --level-1: #96ade3;
    --level-2: #53cfb6;
    --level-3: #a1ff7c;
    --level-4: #ffc702;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@media (min-width: 1625px) {
    html {
        font-size: .83333333vw;
    }
}

@media (max-width: 1624px) {
    html {
        font-size: 14px;
    }
}

.pulse-effect {
    animation: pulse 1.3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}


.container {
    max-width: 90rem !important;
}

.ss-content {
    display: flex;
    flex-direction: column;
}

.scrollbar-track {
    background: transparent !important;
}

.scrollbar-thumb {
    background: #313444 !important;
    width: 8px !important;
    top: 6px !important;
    left: -6px !important;
}


* {
    line-height: 140%;
    font-family: 'Montserrat', sans-serif !important;
}


[x-cloak] {
    display: none !important;
}

::-webkit-scrollbar {
    width: 0;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 50px;
}

.scroll-0::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.popup {
    opacity: 0;
    transform: translateY(-25px);
}

.popup.active {
    animation: showPopup 500ms ease forwards;
}

.popup.closed {
    animation: closePopup 500ms ease forwards;
}

@keyframes showPopup {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes closePopup {
    from {
        opacity: 1;
        transform: translateY(0px);
    }

    to {
        opacity: 0;
        transform: translateY(-25px);
    }
}

.tippy-box {
    background: white !important;
    color: black !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.tippy-arrow {
    color: white !important
}

.break-word {
    word-break: break-word;
}

@keyframes iconGame {
    from {
        transform: translateY(-0px);
    }

    to {
        transform: translateY(-5px);
    }
}

.slots {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.slots__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.slots__head h1 {
    color: white;
    font-size: 32px;
}

.slots__right {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 10px;
}

.slots__input {
    position: relative;
}

.slots__input input {
    height: 48px;
    background: #1a1a1a;
    padding: 0px 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

@media (min-width: 1145px) {
    .slots__input input {
        min-width: 360px;
    }
}

@media (max-width: 992px) {

    .slots__input,
    .slots__input input,
    .slots__right {
        width: 100%;
    }
}

.slots__input input:focus::placeholder {
    opacity: 0;
}

.slots__input .slots__input-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757575;
}

.slots__input .slots__input-icon~input {
    padding-left: 48px;
}

.slots__provider-btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1.25rem;
    background: #2e2e2e;
    color: #000;
    border-radius: .625rem;
    transition: 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.slots__provider-btn:hover {
    background: #424242;
}

@media (max-width: 360px) {
    .slots__right {
        flex-direction: column;
        gap: 12px;
    }

    .slots__right {
        background: transparent;
    }

    .slots__input input {
        border-radius: .625rem;
    }

    .slots__provider-btn {
        width: 100%;
    }
}

.slots__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.5rem;
    margin-right: -.5rem;
    gap: 1rem 0px;
    width: calc(100% + 1rem);
}

.slots__wrap-item {
    padding: 0 .5rem;
    width: calc(100% / 5);
}

@media (min-width: 1291px) {
    .slots__wrap-item {
        width: calc(100% / 6);
    }
}

@media (max-width: 1290px) and (min-width: 1081px) {
    .slots__wrap-item {
        width: calc(100% / 6);
    }
}

@media (max-width: 1080px) and (min-width: 781px) {
    .slots__wrap-item {
        width: calc(100% / 5);
    }
}

@media (max-width: 780px) and (min-width: 651px) {
    .slots__wrap-item {
        width: calc(100% / 4);
    }
}

@media (max-width: 650px) and (min-width: 481px) {
    .slots__wrap-item {
        width: calc(100% / 3);
    }
}

@media (max-width: 480px) and (min-width: 0px) {
    .slots__wrap-item {
        width: calc(100% / 2);
    }
}

.slots__item {
    position: relative;
    display: grid;
}

.slots__item:before {
    content: '';
    padding-top: 130%;
}

.slots__item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.slots__item:hover .slots__item-img {
    transform: scale(1.05)
}

.slots__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slots__item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #323232 4%, transparent 25%);
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease;
}

.slots__item:hover .slots__item-overlay {
    opacity: .8;
}

.slots__item-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 1.25rem;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.slots__item-btns {
    display: flex;
    align-items: center;
    gap: .625rem;
    position: relative;
    transform: translateY(120%);
    opacity: 0;
    transition: 0.5s ease;
}

.slots__item:hover .slots__item-btns {
    transform: translateY(100%);
    opacity: 1;
}

.slots__item-btn-play {
    display: flex;
    align-items: center;
    padding: .25rem 1rem .25rem .375rem;
    background: #5b647a;
    border-radius: 3.125rem;
    gap: .625rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0px 0px 1.875rem #0006;
    transition: 0.3s ease;
    pointer-events: auto;
}

.slots__item-btn-play svg {
    color: #fff;
    transition: 0.3s ease;
}

.slots__item-btn-play:hover {
    background: #ffffff;
    color: #000;
}

.slots__item-btn-play:hover svg {
    color: #000;
}

.slots__item-btn-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 3.125rem;
    background: #5b647a;
    box-shadow: 0rem 0rem 1.875rem #00000094;
    color: #fff;
    transition: 0.3s ease;
    pointer-events: auto;
}

.slots__item-btn-favorite-icon {
    display: none;
    width: 1.1875rem;
}

.slots__item-btn-favorite-icon.active {
    display: block;
}

.slots__item-btn-favorite:hover {
    background: #ffffff;
    color: #000;
}

.slots__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.slots__info-view {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.slots__info-view span {
    color: #ffc702;
}

.slots__progress {
    width: 17.5rem;
    height: .5rem;
    border-radius: .625rem;
    background: #12141a;
    position: relative;
    overflow: hidden;
}

.slots__progress-inner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #ffc702;
}

.slots__provider-btn.yellow {
    background: var(--primary);
}

.slots__provider-btn.yellow:hover {
    background: var(--primary-hover);
}

.slots__providers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slots__providers h3 {
    color: var(--gray-text);
    font-weight: 500;
}

.slots__providers-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.slots__provider-item {
    color: #fff;
    font-size: 1rem;
    padding: .5625rem .875rem;
    border-radius: 3.125rem;
    border: solid .0625rem #242730;
    cursor: pointer;
    transition: 0.3s ease;
}

.slots__provider-item:hover {
    background: #313644;
    border: solid 1px #313644;
    transform: scale(1.05);
}

@media (max-width: 425px) {
    .slots__provider-item {
        font-size: 1rem;
    }
}

@keyframes minesImg {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(.3125rem);
    }
}

@keyframes minesEllipse {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 0.25;
    }
}


.scroll::-webkit-scrollbar {
    width: 4px;
}


#loader svg {
    width: 40vw;
    height: 40vh;
    display: block;
    position: absolute;
}

#loader svg .big_star {
    opacity: 1;
    stroke-width: 18;
    stroke: url(#gradient);
    stroke-linecap: round;
    stroke-dasharray: 0 754;
    animation: orbit 2.2s linear infinite;
}

#loader svg .big_star_glow {
    stroke-width: 40;
    stroke-opacity: 0.6;
    stroke: url(#gradient);
    stroke-linecap: round;
    stroke-dasharray: 0 754;
    animation: orbit 2.2s linear infinite;
    filter: blur(8px);
}

#loader svg .big_star_tail {
    stroke-width: 4;
    stroke-dasharray: 0 25 331 400;
    animation: orbit 2.2s linear infinite;
    stroke: url(#gradient);
    stroke-opacity: 0.8;
    stroke-linecap: round;
}

#loader svg .big_star_tail_glow {
    opacity: 1;
    stroke-width: 12;
    stroke-dasharray: 0 25 331 400;
    animation: orbit 2.2s linear infinite;
    stroke: url(#gradient);
    stroke-opacity: 0.5;
    stroke-linecap: round;
    filter: blur(2px);
}

#loader svg .inverse {
    stroke-width: 3;
    stroke-dasharray: 300 454;
    animation: inverse_orbit 2.2s linear infinite;
    stroke: url(#gradient);
    stroke-opacity: 0.4;
    stroke-linecap: round;
    filter: blur(2px);
}


@keyframes orbit {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 754;
    }
}

@keyframes inverse_orbit {
    0% {
        stroke-dashoffset: 350;
    }

    100% {
        stroke-dashoffset: 1104;
    }
}

.border-yellow {
    border: 2px solid #ffc703
}


.cooper__checkbox {
    margin-bottom: 25px;
}

.cooper-checkbox__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 18px;
}

.cooper-checkbox__input {
    position: absolute;
    opacity: 0;
    width: 0;
}

.cooper-checkbox__input:checked+.cooper-checkbox__button {
    background: #656565;
}

.cooper-checkbox__input:checked+.cooper-checkbox__button::after {
    left: 24px;
    background: #f6b400;
}

.cooper-checkbox__button {
    background: #c5c5c5;
    width: 40px;
    padding: 2px;
    border-radius: 12px;
    height: 18px;
    position: relative;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
    cursor: pointer;
}

.cooper-checkbox__button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    display: block;
    -webkit-transition-duration: .5s;
    -o-transition-duration: .5s;
    transition-duration: .5s;
}

.cooper__table {
    font-size: 16px;
}

@media (max-width: 992px) {
    .cooper__table {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .cooper__table {
        font-size: 10px;
    }
}

.coopert-table__header {
    display: grid;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
}

@media (max-width: 767px) {
    .coopert-table__header {
        grid-template-columns: 50px auto 50px 50px;
    }
}

.coopert-table__td {
    text-align: center;
}

.coopert-table__td:first-child {
    text-align: left;
}

.coopert-table__td:last-child {
    text-align: right;
}

.coopert-table__row {
    display: grid;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #717171;
}

@media (max-width: 767px) {
    .coopert-table__row {
        grid-template-columns: 50px auto 50px 50px;
    }
}

.coopert-table__header,
.coopert-table__row {
    display: grid;
    grid-template-columns: 10% auto 20% 20%;
    gap: 10px;
}


.cooper__radio {
    position: absolute;
    width: 0;
    visibility: hidden;
    opacity: 0;
}

.cooper__radio:checked+.cooper-radio__title {
    background: #FFC702;
    color: #000;
}

.cooper__radio-wrap {
    width: 100%;
}

.cooper__radios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
    width: 100%;
}

@media (max-width: 767px) {
    .cooper__radios {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.cooper__label-radio {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.cooper-radio__title {
    font-weight: 500;
    font-size: 16px;
    color: #717171;
    font-family: var(--adds-font);
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: #252a35;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition-duration: var(--trds);
    -o-transition-duration: var(--trds);
    transition-duration: var(--trds);
}

.cooper-radio__title:hover {
    background: rgba(175, 175, 175, 0.5);
}

.coopert-table__header,
.coopert-table__row {
    display: grid !important;
    grid-template-columns: 80px 1fr auto 120px !important;
    gap: 10px !important;
}

.cooper__table .coopert-table__td {
    user-select: text !important;
    /* Разрешает выделение текста для каждой ячейки */
}

.coopert-table__header,
.coopert-table__row {
    display: grid !important;
    grid-template-columns: 80px 1fr 1fr 120px !important; /* ID | Название | Цена | Количество */
    gap: 10px !important;
    align-items: center;
}
