.success-container {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s linear;
}

.success-container.open {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.2s linear;
}

.success-message {
    position: relative;
    background-color: #FFFFFF;
    padding: 95px 134px 86px 89px;
}

.success-message > h2 {
    padding: 0;
    margin: 0 0 43px 0;
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 17px;
    color: #3C434F;
}

.success-message > p {
    font-style: normal;
    font-weight: normal;
    font-size: 23px;
    line-height: 34px;
    color: #3A4450;
    white-space: pre-wrap;
}

.success-popup-close {
    content: '';
    position: absolute;
    top: 22px;
    right: 24px;
    background-image: url('/static/images/close.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {
    .success-container.open {
        background-color: transparent;
    }

    .success-message {
        position: fixed;
        bottom: 0;
        width: 100vw;
        padding: 15px 15px 37px 15px;
        box-sizing: border-box;
    }

    .success-message > h2 {
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 33px;
        margin-bottom: 3px;
    }

    .success-message > p {
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
    }
}