.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0c0a0a80;
    z-index: 100;
    opacity: 0;
    visibility: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: all 0.2s;
}

.success-popup__container {
    padding: 24px 48px;
    background: #FFF;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;

}

.success-popup__container-btn {
    color: #FFFFFF;
    background-color: #0C0A0A;
    width: fit-content;
    align-self: center;
}

.success-popup__container-btn:hover {
    opacity: .8;
    background-color: #0C0A0A;
    color: #FFFFFF;
}

.success-popup__container-text {
    flex-direction: column;
    gap: 16px;
    color: #0C0A0A;
    text-align: center;
}

.js-active.success-popup {
    opacity: 1;
    visibility: visible;
}

.js-hidden {
    display: none !important;
}