.Boxes_title__Q9Vhf {
    margin-top: 50px;
}
.Boxes_title__Q9Vhf h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-common-white);
}
.Boxes_title__Q9Vhf h1 span {
    color: var(--color-secondary-main);
}
.Boxes_title__Q9Vhf p {
    font-size: 25px;
}
.Boxes_subtitle__Vf7oV {
    margin-top: 30px;
    font-size: 25px;
    font-weight: 700;
}
.Boxes_container__kKRtg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    place-items: center;
    margin-top: 20px;
}
.Boxes_box__ukrTF {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    width: 100%;
    max-width: 220px;
    border-radius: var(--border-radius-max);
    background: linear-gradient(180deg, var(--color-box-secondary) 0, rgba(var(--color-box-secondary--rgb), 0) 100%);
    transition: transform 0.2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
    --color-box-secondary: #041c3f;
    --color-box-secondary--rgb: 4, 28, 63;
    --color-box-primary: #5fd4f9;
    --color-box-primary--rgb: 95, 212, 249;
}
.Boxes_box__ukrTF.Boxes_info__53kTY {
    cursor: default;
}
.Boxes_box__ukrTF.Boxes_info__53kTY ul,
.Boxes_box__ukrTF.Boxes_info__53kTY:before {
    animation: Boxes_flicker__hk6mL 2s linear infinite reverse;
}
.Boxes_box__ukrTF img {
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(var(--color-box-primary--rgb), 0.2);
    transition: box-shadow 0.2s ease;
    -webkit-transition: box-shadow 0.2s ease;
    z-index: 2;
}
.Boxes_box__ukrTF:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 10px;
    background-color: var(--color-box-primary);
    box-shadow: 0 0 20px rgba(var(--color-box-primary--rgb), 0.9);
    border-radius: 8px;
    z-index: 3;
}
.Boxes_box__ukrTF:not(.Boxes_info__53kTY):hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}
.Boxes_box__ukrTF:not(.Boxes_info__53kTY):hover ul,
.Boxes_box__ukrTF:not(.Boxes_info__53kTY):hover:before {
    animation: Boxes_flicker__hk6mL 2s linear infinite reverse;
}
.Boxes_box__ukrTF:not(.Boxes_info__53kTY):hover img {
    box-shadow: 0 4px 20px rgba(var(--color-box-primary--rgb), 0.3);
}
.Boxes_box__ukrTF.Boxes_red__d9oYa {
    --color-box-secondary: #3f0904;
    --color-box-secondary--rgb: 63, 9, 4;
    --color-box-primary: #ff2b46;
    --color-box-primary--rgb: 255, 43, 70;
}
.Boxes_box__ukrTF.Boxes_green__dgyen {
    --color-box-secondary: #043f0a;
    --color-box-secondary--rgb: 4, 63, 10;
    --color-box-primary: #67ee06;
    --color-box-primary--rgb: 103, 238, 6;
}
.Boxes_box__ukrTF.Boxes_purple__pyjy0 {
    --color-box-secondary: #1a043f;
    --color-box-secondary--rgb: 26, 4, 63;
    --color-box-primary: #f85aee;
    --color-box-primary--rgb: 248, 90, 238;
}
.Boxes_box__ukrTF.Boxes_yellow__M2Uxb {
    --color-box-secondary: #3f3904;
    --color-box-secondary--rgb: 63, 57, 4;
    --color-box-primary: #f5f85a;
    --color-box-primary--rgb: 245, 248, 90;
}
.Boxes_accent__rROlS {
    position: absolute;
    top: 15px;
    left: 10px;
    border-radius: 8px;
    padding: 5px 10px;
    background-color: var(--color-box-primary);
    color: var(--color-box-secondary);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 30px rgba(var(--color-box-primary--rgb), 0.5);
    z-index: 3;
}
.Boxes_name__ZEUy5 {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    z-index: 2;
    text-align: center;
}
.Boxes_name__ZEUy5.Boxes_name_info__LGMMz {
    margin-top: 30px;
}
.Boxes_name__ZEUy5 span {
    color: var(--color-box-primary);
}
.Boxes_price__bOUhW {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 100px;
    margin-top: 10px;
    padding: 5px 20px;
    background-color: var(--color-box-secondary);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    z-index: 2;
}
.Boxes_price__bOUhW:after,
.Boxes_price__bOUhW:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: var(--color-box-primary);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(var(--color-box-primary--rgb), 0.9);
}
.Boxes_price__bOUhW:before {
    left: -2px;
}
.Boxes_price__bOUhW:after {
    right: -2px;
}
@keyframes Boxes_flicker__hk6mL {
    0%,
    80% {
        opacity: 0.4;
    }
    25%,
    45%,
    5%,
    90% {
        opacity: 0.5;
    }
    10% {
        opacity: 0.6;
    }
    15%,
    70% {
        opacity: 0.85;
    }
    30%,
    60%,
    to {
        opacity: 1;
    }
    35% {
        opacity: 0.1;
    }
    40% {
        opacity: 0.25;
    }
}
.Boxes_box__ukrTF:hover .Boxes_circles__KI6X0 li {
    background: rgba(var(--color-box-primary--rgb), 0.2);
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(var(--color-box-primary--rgb), 0.1);
    animation: Boxes_animate__V__xE 25s linear infinite;
    -webkit-animation: Boxes_animate__V__xE 25s linear infinite;
    bottom: -150px;
    transition: background 0.2s ease-in-out;
    -webkit-transition: background 0.2s ease-in-out;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:first-child {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 0s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(2) {
    left: 10%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 12s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(4) {
    left: 40%;
    width: 40px;
    height: 40px;
    animation-delay: 0s;
    animation-duration: 18s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(6) {
    left: 75%;
    width: 70px;
    height: 70px;
    animation-delay: 3s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(7) {
    left: 35%;
    width: 80px;
    height: 80px;
    animation-delay: 7s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}
.Boxes_box__ukrTF .Boxes_circles__KI6X0 li:nth-child(10) {
    left: 85%;
    width: 10px;
    height: 10px;
    animation-delay: 0s;
    animation-duration: 11s;
}
@keyframes Boxes_animate__V__xE {
    0% {
        transform: translateY(0) rotate(0deg);
        -webkit-transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    50% {
        border-radius: 50%;
        transform: translateY(-500px) rotate(1turn);
        -webkit-transform: translateY(-500px) rotate(1turn);
        opacity: 0.5;
    }
    to {
        transform: translateY(-1000px) rotate(2turn);
        -webkit-transform: translateY(-1000px) rotate(2turn);
        opacity: 0;
    }
}
@media (max-width: 890px) {
    .Boxes_container__kKRtg {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .Boxes_box__ukrTF.Boxes_info__53kTY {
        max-width: 280px;
        height: 368px;
    }
    .Boxes_box__ukrTF.Boxes_info__53kTY img {
        width: calc(100% - 20px);
        max-width: 218px;
        height: auto;
    }
    .Boxes_box__ukrTF.Boxes_info__53kTY .Boxes_name__ZEUy5 {
        font-size: 20px;
    }
}
@media (max-width: 500px) {
    .Boxes_title__Q9Vhf {
        text-align: center;
    }
    .Boxes_title__Q9Vhf h1 {
        font-size: 40px;
    }
    .Boxes_title__Q9Vhf p {
        font-size: 18px;
    }
    .Boxes_subtitle__Vf7oV {
        text-align: center;
    }
    .Boxes_container__kKRtg {
        grid-template-columns: 1fr;
    }
}
.BoxInfo_box_info__DoayX {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(var(--color-block-bg--rgb), 0) 0, var(--color-block-bg) 100%);
    border-radius: 8px;
    overflow: hidden;
}
.BoxInfo_box_info__DoayX h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 105%;
    color: var(--color-common-white);
    text-transform: uppercase;
}
.BoxInfo_box_info__DoayX h1 span {
    color: var(--color-box-primary);
}
.BoxInfo_box_loader__zT7pj {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-block-bg--rgb), 0.8);
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    z-index: 10;
}
.BoxInfo_box_desc_wrapper__pk1LY {
    display: flex;
    flex-direction: column;
    flex-grow: 3;
    width: 100%;
    max-width: 678px;
    position: relative;
}

.block1 {
    z-index: 1; /* Блок 1 всегда поверх */
}

.block2 {
    z-index: 0; /* Блок 2 под блоком 1 */
}

.BoxInfo_box_desc_wrapper__pk1LY.BoxInfo_text_case_default__YnvJj h1 {
    text-transform: none;
}
.BoxInfo_box_desc__lAWEB {
    display: flex;
    margin-top: 20px;
    flex-grow: 3;
}
.BoxInfo_box_desc__lAWEB svg {
    flex-shrink: 0;
    margin-right: 10px;
}
.BoxInfo_box_desc__lAWEB svg path {
    stroke: var(--color-box-primary);
}
.BoxInfo_box_desc__lAWEB p {
    font-size: 15px;
    line-height: 120%;
    color: #fff;
}
.BoxInfo_box_action__yuVjR {
    padding: 10px 38px;
}
.BoxInfo_box_action__yuVjR div {
    display: flex;
    align-items: center;
}
.BoxInfo_box_action__yuVjR div h2 {
    font-size: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}
@keyframes BoxInfo_rotation__3WPTK {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(1turn);
    }
}
.BoxInfo_box_buy_btn__PYOtq {
    position: relative;
    width: 170px;
    padding: 14px 0 14px 30px;
    background-color: var(--color-box-secondary);
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
}
.BoxInfo_box_buy_btn__PYOtq.BoxInfo_refresh__ftQfs:after {
    content: url(../img/refresh-circle.svg);
    animation: BoxInfo_rotation__3WPTK 1s linear infinite;
}
.BoxInfo_box_buy_btn__PYOtq:after {
    position: absolute;
    content: url(../img/box-cart.svg);
    top: 54%;
    right: 25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.BoxInfo_box_buy_btn__PYOtq:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}
.BoxInfo_box_buy_btn__PYOtq:active {
    transform: scale(0.95) translateY(-3px);
    -webkit-transform: scale(0.95) translateY(-3px);
}
.BoxInfo_box_order__aK8o_ {
    width: 100%;
    max-width: 600px;
    margin: 15px auto 0;
}
.BoxInfo_box_form__0YpGD,
.BoxInfo_box_order__aK8o_ {
    display: flex;
    flex-direction: column;
}
.BoxInfo_box_form_inputs__Fgq_M {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    gap: 10px;
}
.BoxInfo_box_form_action__jr5tO {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
.BoxInfo_box_form_action__jr5tO p {
    font-size: 13px;
    text-align: center;
}
.BoxInfo_box_form_action__jr5tO p span {
    font-weight: 700;
    color: var(--color-secondary-main);
}
.BoxInfo_box_form_action__jr5tO p a {
    color: var(--color-secondary-main);
    text-decoration: underline;
}
.BoxInfo_box_form_action__jr5tO a {
    flex-shrink: 0;
    color: var(--color-common-white);
}
.BoxInfo_box_form_action__jr5tO a span {
    color: var(--color-secondary-main);
    margin-left: 5px;
}
.BoxInfo_box_data_with_btn__hN25_ {
    display: flex;
    align-items: center;
    gap: 10px;
}
.BoxInfo_box_data_with_btn__hN25_ button {
    margin-top: 10px;
    color: var(--color-common-white);
}
.BoxInfo_box_data_with_btn__hN25_ button svg {
    margin-right: 15px;
}
.BoxInfo_box_data_with_btn__hN25_ button svg path {
    stroke: var(--color-common-white);
}
.BoxInfo_box_data_block__VCcrW {
    display: flex;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-top: 10px;
    background-color: var(--color-common-white);
    background: linear-gradient(118.05deg, var(--color-block-lights) -267.42%, var(--color-block-bg) 63%);
    border-radius: var(--border-radius-min);
    overflow: hidden;
}
.BoxInfo_box_data_block__VCcrW .BoxInfo_data_block_icon__pA5Jh {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(var(--color-secondary-main--rgb), 0.05);
    margin-right: 10px;
}
.BoxInfo_box_data_block__VCcrW .BoxInfo_data_block_icon__pA5Jh svg {
    height: 20px;
}
.BoxInfo_box_data_block__VCcrW .BoxInfo_data_block_icon__pA5Jh svg path {
    stroke: var(--color-common-white);
}
.BoxInfo_box_data_block__VCcrW p {
    font-size: 16px;
    color: var(--color-default);
}
.BoxInfo_box_data_block__VCcrW p b {
    color: var(--color-common-white);
}
.BoxInfo_box_data_block__VCcrW p span {
    font-size: 14px;
    color: var(--color-box-primary);
}
@media (max-width: 890px) {
    .BoxInfo_box_form_inputs__Fgq_M {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
@media (max-width: 500px) {
    .BoxInfo_box_info__DoayX h1 {
        font-size: 30px;
    }
    .BoxInfo_box_desc__lAWEB p {
        font-size: 13px;
    }
    .BoxInfo_box_action__yuVjR {
        padding: 20px 38px 10px;
    }
    .BoxInfo_box_action__yuVjR h2 {
        font-size: 25px;
    }
    .BoxInfo_box_buy_btn__PYOtq {
        font-size: 18px;
        width: 130px;
        padding: 10px 0 10px 15px;
    }
    .BoxInfo_box_buy_btn__PYOtq:after {
        right: 15px;
    }
    .BoxInfo_box_form_action__jr5tO {
        flex-direction: column;
    }
    .BoxInfo_box_form_action__jr5tO button {
        margin-top: 10px;
        width: 100%;
    }
    .BoxInfo_box_data_with_btn__hN25_ {
        flex-direction: column;
        gap: 0;
    }
    .BoxInfo_box_data_with_btn__hN25_ button {
        width: 100%;
    }
}
@media (max-width: 425px) {
    .BoxInfo_box_info__DoayX h1 {
        font-size: 28px;
    }
}
@media (max-width: 375px) {
    .BoxInfo_box_action__yuVjR div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .BoxInfo_box_action__yuVjR div h2 {
        font-size: 30px;
    }
}
.BoxRoulette_box_roulette__quou6 {
    position: relative;
    width: 100%;
    padding: 20px 0;
    border-radius: var(--border-radius-max);
    background-color: var(--color-block-bg);
    margin-top: 28px;
    overflow: hidden;
}
.BoxRoulette_roulette_inner__dzYfF {
    width: 100%;
    height: 100px;
    overflow: hidden;
    padding-left: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.BoxRoulette_roulette_item__dxP1g {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100px;
    background: linear-gradient(180deg, var(--color-box-primary) -275%, var(--color-box-secondary) 100%);
    border-radius: 8px;
    margin-right: 14px;
    flex-shrink: 0;
}
.BoxRoulette_roulette_item__dxP1g h4 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}
.BoxRoulette_roulette_item__dxP1g b {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-box-primary);
}
.BoxRoulette_fade__Dc8ck {
    pointer-events: none;
    background: linear-gradient(90deg, var(--color-block-bg), transparent 30%, transparent 70%, var(--color-block-bg));
    position: absolute;
    inset: 0;
}
.BoxContentModal_overlay__CSr0y {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 10px;
    background-color: rgba(var(--color-bg--rgb), 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
}
.BoxContentModal_drawer__cT8TZ {
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    background-color: rgba(var(--color-block-bg--rgb), 0.9);
    border-radius: var(--border-radius-max);
    box-shadow: 0 11px 200px rgba(var(--color-secondary-main--rgb), 0.2);
    max-height: 70vh;
    overflow-y: overlay;
}
.BoxContentModal_drawer__cT8TZ::-webkit-scrollbar {
    background-color: transparent;
    width: 14px;
}
.BoxContentModal_drawer__cT8TZ::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary-main);
    border: 4px solid transparent;
    background-clip: content-box;
    border-radius: 8px;
}
.BoxContentModal_header__luU02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 25px;
    background-color: rgba(var(--color-block-bg--rgb), 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.BoxContentModal_header__luU02 h3 {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.BoxContentModal_header__luU02 h3 b {
    color: var(--color-secondary-main);
}
.BoxContentModal_header__luU02 h3 span {
    text-transform: none;
    font-weight: 400;
    font-size: 18px;
    color: var(--color-default);
}
.BoxContentModal_close__JRA1X {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.BoxContentModal_close__JRA1X:hover {
    opacity: 0.8;
}
.BoxContentModal_close__JRA1X:active {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}
.BoxContentModal_close__JRA1X path {
    fill: var(--color-secondary-main);
}
.BoxContentModal_content__4jjEQ {
    display: flex;
    flex-direction: column;
    padding: 0 25px 25px;
}
@media (max-width: 500px) {
    .BoxContentModal_header__luU02 h3 {
        font-size: 16px;
    }
    .BoxContentModal_header__luU02 h3 span {
        font-size: 14px;
    }
    .BoxContentModal_drawer__cT8TZ {
        margin-top: 90px;
    }
}
.Confetti_confetti__q9sua {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}
.Confetti_confetti-piece__SyAZn {
    position: absolute;
    width: 10px;
    height: 18px;
    background: #ffd300;
    top: 0;
    opacity: 0;
}
.Confetti_confetti-piece__SyAZn:first-child {
    left: 7%;
    transform: rotate(13deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1377ms;
    animation-duration: 3.69s;
}
.Confetti_confetti-piece__SyAZn:nth-child(2) {
    left: 14%;
    transform: rotate(43deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1.97s;
    animation-duration: 3821ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(3) {
    left: 21%;
    transform: rotate(-41deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1686ms;
    animation-duration: 2877ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(4) {
    left: 28%;
    transform: rotate(-76deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 62ms;
    animation-duration: 4784ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(5) {
    left: 35%;
    transform: rotate(-34deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 199ms;
    animation-duration: 3839ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(6) {
    left: 42%;
    transform: rotate(-18deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 109ms;
    animation-duration: 4566ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(7) {
    left: 49%;
    transform: rotate(15deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 447ms;
    animation-duration: 3449ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(8) {
    left: 56%;
    transform: rotate(52deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1521ms;
    animation-duration: 4027ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(9) {
    left: 63%;
    transform: rotate(37deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1523ms;
    animation-duration: 4.11s;
}
.Confetti_confetti-piece__SyAZn:nth-child(10) {
    left: 70%;
    transform: rotate(-45deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 195ms;
    animation-duration: 4138ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(11) {
    left: 77%;
    transform: rotate(-2deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 575ms;
    animation-duration: 4123ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(12) {
    left: 84%;
    transform: rotate(68deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1.16s;
    animation-duration: 3709ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(13) {
    left: 91%;
    transform: rotate(-42deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 694ms;
    animation-duration: 3138ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(14) {
    left: 98%;
    transform: rotate(-28deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 528ms;
    animation-duration: 4391ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(15) {
    left: 105%;
    transform: rotate(0deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1645ms;
    animation-duration: 3515ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(16) {
    left: 112%;
    transform: rotate(-25deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1645ms;
    animation-duration: 4252ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(17) {
    left: 119%;
    transform: rotate(-18deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1031ms;
    animation-duration: 2873ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(18) {
    left: 126%;
    transform: rotate(23deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1777ms;
    animation-duration: 3775ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(19) {
    left: 133%;
    transform: rotate(-77deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 326ms;
    animation-duration: 3159ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(20) {
    left: 140%;
    transform: rotate(-45deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1683ms;
    animation-duration: 4554ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(21) {
    left: 147%;
    transform: rotate(32deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1623ms;
    animation-duration: 3718ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(22) {
    left: 154%;
    transform: rotate(-14deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1.92s;
    animation-duration: 4.56s;
}
.Confetti_confetti-piece__SyAZn:nth-child(23) {
    left: 161%;
    transform: rotate(-66deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1393ms;
    animation-duration: 3067ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(24) {
    left: 168%;
    transform: rotate(-53deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 152ms;
    animation-duration: 3206ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(25) {
    left: 175%;
    transform: rotate(69deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 961ms;
    animation-duration: 4013ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(26) {
    left: 182%;
    transform: rotate(-54deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 606ms;
    animation-duration: 3094ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(27) {
    left: 189%;
    transform: rotate(8deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 106ms;
    animation-duration: 4048ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(28) {
    left: 196%;
    transform: rotate(57deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1674ms;
    animation-duration: 3353ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(29) {
    left: 203%;
    transform: rotate(71deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1604ms;
    animation-duration: 3442ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(30) {
    left: 210%;
    transform: rotate(-65deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 958ms;
    animation-duration: 4512ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(31) {
    left: 217%;
    transform: rotate(-31deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1157ms;
    animation-duration: 3.61s;
}
.Confetti_confetti-piece__SyAZn:nth-child(32) {
    left: 224%;
    transform: rotate(-61deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1794ms;
    animation-duration: 3402ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(33) {
    left: 231%;
    transform: rotate(-20deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1063ms;
    animation-duration: 3637ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(34) {
    left: 238%;
    transform: rotate(-15deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 162ms;
    animation-duration: 3543ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(35) {
    left: 245%;
    transform: rotate(70deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1602ms;
    animation-duration: 3758ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(36) {
    left: 252%;
    transform: rotate(-29deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1854ms;
    animation-duration: 4587ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(37) {
    left: 259%;
    transform: rotate(-35deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1452ms;
    animation-duration: 3807ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(38) {
    left: 266%;
    transform: rotate(60deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1126ms;
    animation-duration: 3366ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(39) {
    left: 273%;
    transform: rotate(-77deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 973ms;
    animation-duration: 3096ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(40) {
    left: 280%;
    transform: rotate(-5deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1561ms;
    animation-duration: 3826ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(41) {
    left: 287%;
    transform: rotate(73deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1726ms;
    animation-duration: 3906ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(42) {
    left: 294%;
    transform: rotate(67deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 874ms;
    animation-duration: 3544ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(43) {
    left: 301%;
    transform: rotate(-38deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 0.94s;
    animation-duration: 4502ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(44) {
    left: 308%;
    transform: rotate(-56deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1664ms;
    animation-duration: 2839ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(45) {
    left: 315%;
    transform: rotate(-54deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 632ms;
    animation-duration: 4.39s;
}
.Confetti_confetti-piece__SyAZn:nth-child(46) {
    left: 322%;
    transform: rotate(-19deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 998ms;
    animation-duration: 3.74s;
}
.Confetti_confetti-piece__SyAZn:nth-child(47) {
    left: 329%;
    transform: rotate(26deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1554ms;
    animation-duration: 4494ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(48) {
    left: 336%;
    transform: rotate(-53deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1867ms;
    animation-duration: 3419ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(49) {
    left: 343%;
    transform: rotate(-38deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 1056ms;
    animation-duration: 3252ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(50) {
    left: 350%;
    transform: rotate(54deg);
    animation: Confetti_makeItRain__a9juq 4s ease-out infinite;
    animation-delay: 462ms;
    animation-duration: 3586ms;
}
.Confetti_confetti-piece__SyAZn:nth-child(odd) {
    background: #17d3ff;
}
.Confetti_confetti-piece__SyAZn:nth-child(2n) {
    z-index: 1;
}
.Confetti_confetti-piece__SyAZn:nth-child(4n) {
    width: 5px;
    height: 12px;
    animation-duration: 8s;
}
.Confetti_confetti-piece__SyAZn:nth-child(3n) {
    width: 3px;
    height: 10px;
    animation-duration: 10s;
    animation-delay: 4s;
}
.Confetti_confetti-piece__SyAZn:nth-child(4n-7) {
    background: #ff4e91;
}
@keyframes Confetti_makeItRain__a9juq {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        transform: translateY(800px);
    }
}
.BoxPrise_root__tEGTC {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 10px;
    background: rgba(var(--color-bg--rgb), 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
}
.BoxPrise_root__tEGTC:after,
.BoxPrise_root__tEGTC:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/smoke3.jpg), rgba(var(--color-block-lights--rgb), 0.1);
    background-blend-mode: screen;
    background-repeat: no-repeat;
    background-size: cover;
    animation: BoxPrise_fogmove__N771E 20s linear 0s infinite;
    z-index: 10001;
    opacity: 0;
    transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
}
.BoxPrise_root__tEGTC:after {
    left: 100%;
}
.BoxPrise_root__tEGTC.BoxPrise_wait__WdIkL:after,
.BoxPrise_root__tEGTC.BoxPrise_wait__WdIkL:before {
    opacity: 0.4;
}
.BoxPrise_win_box__sd4tV {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 10px;
    width: 100%;
    max-width: 580px;
    background-color: rgba(var(--color-common-white--rgb), 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--border-radius-max);
    position: relative;
    z-index: 10002;
}
.BoxPrise_win_box__sd4tV > h2 {
    font-size: 48px;
    line-height: 56px;
}
.BoxPrise_win_box__sd4tV > h2,
.BoxPrise_win_box__sd4tV > h3 {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.BoxPrise_win_box__sd4tV > h3 {
    font-size: 15px;
    width: 100%;
    max-width: 450px;
}
.BoxPrise_waiting__ylKJ6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/smoke.jpg), var(--color-block-bg) 50% / cover no-repeat;
    background-blend-mode: color-dodge;
    background-position: 70% 70%;
    border-radius: var(--border-radius-max);
    overflow: hidden;
    animation: BoxPrise_bg-fade2__cUN_1 10s ease-in-out infinite;
    z-index: 999999;
    visibility: visible;
    transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear, visibility 1s linear;
    filter: drop-shadow(0 11px 50px var(--color-block-lights));
}
.BoxPrise_waiting__ylKJ6.BoxPrise_closed__3R934 {
    visibility: hidden;
    opacity: 0;
}
.BoxPrise_waiting__ylKJ6 svg {
    filter: drop-shadow(0 11px 50px var(--color-block-lights));
    animation: BoxPrise_bg-fade__vCWip 10s ease-in-out infinite;
}
.BoxPrise_waiting__ylKJ6:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(var(--color-block-lights--rgb), 0.5), inset 0 0 50px rgba(var(--color-block-lights--rgb), 0.5), inset 0 0 50px rgba(var(--color-block-lights--rgb), 0.5);
}
.BoxPrise_prise__GFJ6t {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 300px;
    height: 200px;
    padding: 35px 0;
    background: linear-gradient(180deg, var(--color-block-lights) -275%, var(--color-block-bg) 100%);
    box-shadow: 0 20px 200px 5px var(--color-block-lights);
    border-radius: var(--border-radius-max);
    animation: BoxPrise_pulse__wKYEv 15s ease-in-out infinite;
    -webkit-animation: BoxPrise_pulse__wKYEv 15s ease-in-out infinite;
    font-size: 44px;
    text-align: center;
}
.BoxPrise_prise__GFJ6t p {
    font-weight: 700;
    color: var(--color-secondary-main);
}
.BoxPrise_close_btn__bePoA {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.BoxPrise_close_btn__bePoA svg {
    width: 25px;
    height: 25px;
}
.BoxPrise_close_btn__bePoA svg path {
    transition: stroke 0.2s ease-in-out;
    -webkit-transition: stroke 0.2s ease-in-out;
}
.BoxPrise_close_btn__bePoA:hover svg path {
    stroke: #fff;
}
@keyframes BoxPrise_pulse__wKYEv {
    0%,
    50%,
    to {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 1);
    }
    10% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.8);
    }
    20% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.9);
    }
    30% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.7);
    }
    40% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.5);
    }
    60% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.6);
    }
    70% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.3);
    }
    80% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.5);
    }
    90% {
        box-shadow: 0 20px 200px 5px rgba(var(--color-block-lights--rgb), 0.8);
    }
}
@keyframes BoxPrise_bg-pos__FDMAh {
    0%,
    to {
        background-position: 50% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
}
@keyframes BoxPrise_bg-fade__vCWip {
    0%,
    to {
        filter: drop-shadow(0 11px 50px var(--color-block-lights));
    }
    30% {
        filter: drop-shadow(20px 30px 50px var(--color-block-lights));
    }
    60% {
        filter: drop-shadow(0 20px 20px var(--color-block-lights));
    }
}
@keyframes BoxPrise_bg-fade2__cUN_1 {
    0%,
    to {
        filter: drop-shadow(20px 11px 100px var(--color-block-lights));
    }
    30% {
        filter: drop-shadow(-20px 30px 80px var(--color-block-lights));
    }
    60% {
        filter: drop-shadow(0 20px 50px var(--color-block-lights));
    }
}
@keyframes BoxPrise_fogmove__N771E {
    0% {
        transform: translateZ(0);
    }
    to {
        transform: translate3d(-100%, 0, 0);
    }
}
.BoxPage_wrapper__PmCOi {
    --color-box-secondary: #041c3f;
    --color-box-secondary--rgb: 4, 28, 63;
    --color-box-primary: #5fd4f9;
    --color-box-primary--rgb: 95, 212, 249;
}
.BoxPage_wrapper__PmCOi.BoxPage_red___4csZ {
    --color-box-secondary: #3f0904;
    --color-box-secondary--rgb: 63, 9, 4;
    --color-box-primary: #ff2b46;
    --color-box-primary--rgb: 255, 43, 70;
}
.BoxPage_wrapper__PmCOi.BoxPage_green__ozltH {
    --color-box-secondary: #043f0a;
    --color-box-secondary--rgb: 4, 63, 10;
    --color-box-primary: #67ee06;
    --color-box-primary--rgb: 103, 238, 6;
}
.BoxPage_wrapper__PmCOi.BoxPage_purple___wnHj {
    --color-box-secondary: #1a043f;
    --color-box-secondary--rgb: 26, 4, 63;
    --color-box-primary: #f85aee;
    --color-box-primary--rgb: 248, 90, 238;
}
.BoxPage_wrapper__PmCOi.BoxPage_yellow__c_uRY {
    --color-box-secondary: #3f3904;
    --color-box-secondary--rgb: 63, 57, 4;
    --color-box-primary: #f5f85a;
    --color-box-primary--rgb: 245, 248, 90;
}
.BoxPage_box_img_bg__BYvei {
    position: absolute;
    width: 100%;
    height: 80%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.3s linear;
}
.BoxPage_box_img_bg__BYvei.BoxPage_loaded__40yTp {
    opacity: 0.5;
}
.BoxPage_box_img_bg__BYvei:before {
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, var(--color-bg), transparent 0, transparent 0, var(--color-bg)), linear-gradient(90deg, var(--color-bg), transparent 30%, transparent 70%, var(--color-bg));
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.BoxPage_inner__whlsl {
    width: 100%;
    margin-top: 90px;
}
.BoxPage_box_data__0XtwQ {
    display: grid;
    grid-template-columns: 1.2fr 4fr;
    place-items: center;
    grid-gap: 25px 20px;
}
.BoxPage_box_data_block__0xJs7 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.BoxPage_box_data_block__0xJs7 button:not(.BoxPage_content_btn__YMIeo) {
    display: none;
    margin-bottom: 20px;
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 0;
    background-color: var(--color-box-secondary);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    -webkit-transition: transform 0.2s ease-in-out;
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo svg {
    margin-left: 10px;
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:after,
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 30px;
    border-radius: 8px;
    background-color: var(--color-box-primary);
    box-shadow: 0 0 20px rgba(var(--color-box-primary--rgb), 0.3);
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: box-shadow 0.2s ease-in-out;
    -webkit-transition: box-shadow 0.2s ease-in-out;
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:after {
    left: auto;
    right: -5px;
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:hover:after,
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:hover:before {
    box-shadow: 0 0 20px rgba(var(--color-box-primary--rgb), 0.9);
}
.BoxPage_box_data__0XtwQ .BoxPage_content_btn__YMIeo:active {
    transform: scale(0.95) translateY(-3px);
    -webkit-transform: scale(0.95) translateY(-3px);
}
@media (max-width: 890px) {
    .BoxPage_box_data__0XtwQ {
        grid-template-columns: 1fr;
    }
    .BoxPage_box_data_block__0xJs7 {
        width: calc(100% - 20px);
        max-width: 300px;
    }
    .BoxPage_box_data_block__0xJs7 button:not(.BoxPage_content_btn__YMIeo) {
        display: flex;
    }
}
@media (max-width: 500px) {
    .BoxPage_inner__whlsl {
        margin-top: 30px;
    }
    .BoxPage_box_img_bg__BYvei {
        height: 400px;
    }
    .BoxPage_box_img_bg__BYvei.BoxPage_loaded__40yTp {
        opacity: 0.7;
    }
    .BoxPage_box_img_bg__BYvei:before {
        background: linear-gradient(180deg, var(--color-bg), transparent 0, transparent 10%, var(--color-bg));
    }
}
