.getBonusPopup_container {
    z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);

    /* display: none; */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.getBonusPopup {
    padding: 64px 32px 24px;
    background-color: var(--ultraDark20);
    border-radius: var(--brad);
    border: 1px solid var(--yellowLight);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.getBonusPopup_img {
    margin-bottom: 29px;
}
.getBonusPopup_img > img {
    opacity: 0.5;
    /* aspect-ratio: 2/1; */
}
.getBonusPopup_img > p,
.getBonusPopup_img > div {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateY(0%) translateX(-50%);
    z-index: 600;
}
.getBonusPopup_img > p {
    top: 15px;
    color: var(--yellowLight) !important;
    font-weight: 700 !important;
    text-align: center;
    min-width: max-content;
}
.getBonusPopup_img > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    justify-content: center;
}
.getBonusPopup_img > div img {
    object-fit: contain;
    width: 32px;
    height: auto;
}
.getBonusPopup_img > div p {
    min-width: max-content;
    font-weight: 600 !important;
    color: white !important;
}

.getBonusPopup_title {
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
    color: white !important;
    text-transform: uppercase;
}

.getBonusPopup_bonuses {
    background-color: #1f222c;
    padding: 17px;
    border-radius: var(--brad);
}
.getBonusPopup_bonuses p {
    font-weight: 600 !important;
    color: white !important;
}
.getBonusPopup_bonuses:not(:last-child) {
    margin-bottom: 29px;
}

.getBonusPopup .btn {
    margin-top: 16px;
}
.getBonusPopup_skip {
    margin-top: 12px;
    font-weight: 600 !important;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.getBonusPopup_close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 12px;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.getBonusPopup_open {
    opacity: 1;
    z-index: 600;
    display: block;
}

@media (max-width: 768px) {
    .getBonusPopup {
        width: 90vw;
        height: max-content;
        max-height: 90vh;
        overflow-y: scroll;
    }
    .getBonusPopup_img > img {
        /* aspect-ratio: 1.8/1; */
        min-height: 124px;
    }
}
