.received-bonus-modal.active {
    display: flex;
}

.received-bonus-modal {
    display: none;
    justify-content: center;
    align-items: center;
}

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

.received-bonus-modal__content {
    min-height: 200px;
    background: #1b2b38;
    text-align: center;
    padding: 20px 50px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.received-bonus-modal-thanks-button {
    border: 1px white solid;
    padding: 7px 30px;
    cursor: pointer;
    border-radius: 10px;
}

.received-bonus-modal-thanks-button:hover {
    text-decoration: underline;
}