.success-modal-container {
    max-width: 547px;
}

.success-modal-content {
    width: 547px;
    height: 547px;
    background-image: url("image/modal/success-modal.png");
    background-position: center;
    background-size: cover;
    padding: 15px 31px 43px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.success-modal-logo {
    width: 226px;
    height: 53.361px;
    flex-shrink: 0;
    background-image: url("icon/modal/success-modal-logo.svg");
}

.success-modal-text-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.success-modal-title {
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px; /* 126.667% */
    text-transform: uppercase;
    width: 452px;
}

.success-modal-text {
    color: var(--color-grey-86, #DCDCDC);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.success-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-image: url("icon/modal/success-modal-close.svg");
}

@media (max-width: 1208px) {
    .success-modal-container {
        width: 320px;
    }

    .success-modal-content {
        width: 320px;
        height: 424px;
        background: url(image/modal/success-modal.png) lightgray -4.324px 0px / 142.187% 107.311% no-repeat;
        padding: 15px 10px 22px;
    }

    .success-modal-logo {
        width: 192px;
        height: 45.333px;
        background-size: cover;
    }

    .success-modal-text-container {
        gap: 5px;
    }

    .success-modal-title {
        width: 292px;
        color: #FFF;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 24px */
        text-transform: uppercase;
    }

    .success-modal-text {
        color: var(--color-grey-86, #DCDCDC);
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .success-modal-close {
        top: 19px;
        right: 14px;
    }
}