.feedback-form__checkbox{
    position: relative;
    padding-top: 8rem;
    display: flex;
    padding-left: 1rem;
    align-items: center;
    gap: 5rem;
    opacity: 0.4;
}

.feedback-form__checkbox--white{
    justify-content: flex-start;
    padding-left: 0;


}

.feedback-form__checkbox--short {
    justify-content: flex-start;
}

.feedback-form__checkbox input{
    inset:0;
    opacity: 0;
    position:absolute;
}

.feedback-form__checkbox p{
    color: #282828;
    font-size: 13rem;
    font-weight: 400;
    letter-spacing: -0.05em;
    white-space: nowrap;
    line-height: 246%;
    @media (max-width: 480px) {
        white-space: normal;
        line-height: 150%;
    }
}

.feedback-form__checkbox--white p{
    color: #fff;
    font-size: 16rem;
    line-height: 206%;
    letter-spacing: -0.04em;
    @media (max-width: 1400px) {
            font-size: 14rem;
            padding-top: 16rem;
    }
    @media (max-width: 639px) {
        width: 190rem;
        white-space: normal;
        line-height: 150%;
        font-size: 10rem;
    }

}

.feedback-form__checkbox--short p{
    color: #fff;
    font-size: 13rem;
    line-height: 246%;
    letter-spacing: -0.05em;
    @media (max-width: 639px) {
        width: 190rem;
        white-space: normal;
        line-height: 150%;
        font-size: 10rem;
    }
}

.feedback-form__checkbox--catalog p{
    padding-top: 8rem;
    font-size: 14rem;
    line-height: 231%;
    letter-spacing: -0.04em;
    color: #f1efec;
    @media (max-width: 639px) {
        width: 190rem;
        white-space: normal;
        line-height: 150%;
        font-size: 10rem;
    }
}


.feedback-form__checkbox a{
    text-decoration: underline;
}

.feedback-form__checkbox-square{
    cursor: pointer;
    position: relative;
    border: 1rem solid #282828;
    width: 11.6rem;
    height: 11.6rem;
        @media (max-width: 1670px) {
        margin-bottom: 2rem;
    }
        @media (max-width: 1600px) {
        display: none;
    }
}


.feedback-form__checkbox-square::after {
    cursor: pointer;
    content: '';
    position: absolute;
    width: 8rem;
    height: 7rem;
    top: 1.3rem; 
    left: 1.3rem; 
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='1' d='M0.533203 2.75808L2.35889 4.58388L5.84121 1.10156' stroke='%23282828' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feedback-form__checkbox-square--white{
    border: 1rem solid #FFF;
}

.feedback-form__checkbox-square--white::after {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 7 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='1' d='M0.533203 2.75808L2.35889 4.58388L5.84121 1.10156' stroke='%23ffffff' /%3E%3C/svg%3E");
}

.feedback-form__checkbox input:checked + .feedback-form__checkbox-square::after {
    opacity: 1;
}

.feedback-form__checkbox.parsley-error .feedback-form__checkbox-square {
  border: 1rem solid red;
}

#parsley-id-multiple-consent-feedback-form {
  display: none !important;
}

.pt_18{
    padding-top:18rem
}

.mt_180{
    margin-top: 180rem;
        @media (max-width: 639px) {
        margin-top: 13rem;
    }
}