.personal-consent {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.35;
    cursor: pointer;
    transition: opacity .2s ease, color .2s ease;
    text-align: left;
}
.personal-consent__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.personal-consent__box {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid currentColor;
    box-sizing: border-box;
    margin-top: 1px;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.personal-consent__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transform-origin: center;
    transition: transform .18s ease;
}
.personal-consent__input:checked + .personal-consent__box::after {
    transform: rotate(45deg) scale(1);
}
.personal-consent__input:focus-visible + .personal-consent__box {
    box-shadow: 0 0 0 3px rgba(75, 143, 255, .35);
}
.personal-consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.personal-consent--light {
    color: #8a8a8a;
}
.personal-consent--dark {
    color: #fff;
}
.personal-consent--light .personal-consent__box {
    background: #fff;
}
.personal-consent--dark .personal-consent__box {
    background: rgba(255, 255, 255, .08);
}
.personal-consent--error {
    color: #ff3b30 !important;
}
.personal-consent--error .personal-consent__box {
    border-color: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255, 59, 48, .18);
}
.who-likes-form .personal-consent,
.who-likes-form__agree.personal-consent,
.presentation-privacy.personal-consent,
.investor-form__policy.personal-consent,
.modal-polit.personal-consent,
.new-dental-inline-form__agree.personal-consent {
    margin-bottom: 0;
}
.who-likes-form__agree.personal-consent {
    max-width: 320px;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.35;
}
.new-dental-overlay .modal-polit.personal-consent {
    max-width: 420px;
    margin-top: 24px;
    color: rgba(138, 138, 138, .85);
    font-size: 14px;
    line-height: 1.35;
}
.presentation-privacy.personal-consent,
.investor-form__policy.personal-consent,
.modal-polit.personal-consent {
    justify-content: flex-start;
    text-align: left;
}
.modal-polit .personal-consent {
    max-width: 420px;
    margin-top: 24px;
    color: rgba(138, 138, 138, .85);
    font-size: 14px;
    line-height: 1.35;
}
