.success-submit {
    text-align: center;
    background: #fff;
    padding: 30px;
    width: 320px;
    position: relative;
}

.success-submit--hidden {
    display: none;
}

.success-submit__title {
    font-size: 20px;
    font-weight: bold;
}

.success-submit__description {
    margin: 20px 0;
}

.success-submit__close {
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
    opacity: 0.4;
    transition: 200ms ease all;
    font-weight: bold;
    font-size: 22px;
}

.success-submit__close:hover {
    opacity: 1;
}

.success-submit__link {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border: 2px solid #E20932;
    font-weight: bold;
    text-align: center;
    transition: 200ms ease all;
    background: #E20932;
    width: 150px;
}

.success-submit__link:hover {
    background: #fff;
    color: #E20932;
}