.cta_persoonlijk_voorstel {
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px;
    background-color: #F4F4F0;
    
    @media screen and (min-width: 1200px) {
        margin-top: 24px;
        flex-direction: row;
        gap: 24px;
        padding: 22px 24px 22px 156px;
    }
    
    img {
        width: 100%;
        max-width: 140px;
        
        @media screen and (min-width: 1200px) {
            max-width: 132px;
            aspect-ratio: unset;
            position: absolute;
            left: 0;
            bottom: 0;
        }
    }
    
    .text-wrapper {
        margin-top: 22px;
        display: flex;
        flex-direction: column;
        
        @media screen and (min-width: 1200px) {
            margin-top: 0;
        }
        
        h3 {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.375rem;
            margin-bottom: unset;
            
            @media screen and (min-width: 1200px) {
                font-size: 1.0625rem;
                line-height: 1.625rem;
                
            }
        }
        
        p {
            margin-top: 12px;
            margin-bottom: unset;
            font-size: .875rem;
            line-height: 1.4375rem;
            color: #000000;
            
            @media screen and (min-width: 1200px) {
                margin-top: 9px;
                font-size: 1.125rem;
                line-height: 1.75rem;
            }
        }
        
        .usp-wrapper {
            position: relative;
            margin-top: 26px;
            margin-bottom: unset;
            display: flex;
            flex-direction: column;
            gap: 6px;
            list-style: none;
            line-height: 1.4375rem;
            font-weight: 500;
            
            @media screen and (min-width: 1200px) {
                flex-direction: row;
                gap: 48px;
            }
            
            li {
                position: relative;
                
                &::before {
                    content: "";
                    position: absolute;
                    left: -20px;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 10px;
                    height: 7px;
                    background-image: url("/uploads/afbeeldingen/icon-feather-check.svg");
                    background-size: contain;
                }
            }
        }
    }
}

.divider {
    width: 100%;
    height: 1px;
    border: 0;
    background-color: #F4F4F0;
    margin: 32px 0;
    max-width: unset;
}

.cta-vul-contactgegevens-in {
    font-weight: 700;
    
    @media screen and (min-width: 1200px) {
        font-size: 1.125rem;
    }
}

.configurator-layout .container .options-container .form .form-group:nth-of-type(4),
.configurator-layout .container .options-container .form .form-group:nth-of-type(5) {
    flex: 1 1 100%;
    max-width: unset;
    
    @media screen and (min-width: 1200px) {
        flex: 1 1 calc(50% - 10px);
    }
}