.success-form-wrapper {
    border: none;
    outline: none;
    border-radius: 5px;
    width: 480px;
    padding: 0;
    background-color: transparent;
    z-index: 100;
}

.success-form-popup-inner {
    position: relative;
    margin-right: 50px;
    background-color: #fff;
    padding: 25px;
}

.success-form-inner {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.success-icon {
    display: block;
    margin-bottom: 16px;
}

.success-title {
    font-size: 18px;
    color: #292836;
    display: block;
    margin-bottom: 35px;
}

.success-form-wrapper .success-to-main:hover {
    background-color: #fff;
    color: #fb0000;
    transition: all 0.5s;
    cursor: pointer;
}

.success-form-popup-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(180.00deg, rgb(72, 69, 100), rgb(41, 40, 54) 100%);
    z-index: -1;
}

@media (max-width: 480px) {
    .contact-company-form-wrap {
        margin: 0 auto 45px;
    }

    .success-form-popup-inner {
        padding: 15px;
    }

    .success-form-wrapper .success-to-main {
        width: 100%;
        padding: 10px;
    }
}