/* --- BASIS --- */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="date"],
input[type="url"],
textarea {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
    appearance: none;
    color: #242424;
}
textarea {
    height: auto;
    min-height: 10rem;
    line-height: 1.2;
    resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
    outline: none;
}
fieldset {
    padding: 0;
    border: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.form .text-col {
    padding-right: 0;
    padding-left: 0;
}
.form__label {
    font-weight: 700;
}
.form__bg-gray {
    background-color: #ededed;
    border-radius: 10px;
    padding: 20px;
}
.form__title {
    font-size: 16px;
    margin: 0 0 20px;
}
.form__fieldset-title {
    font-size: 16px;
    margin: 0 0 20px;
    color: #7d7d7d;
}
.form__field.mb-3 {
    margin-bottom: 20px;
}
.form__field.mb-3.form__field--error {
    margin-bottom: 40px;
}
.form__navigation .btn {
    width: 100%;
}
.form__field:has(.form-field--hidden) {
    display: none;
}


/* --- TITLES --- */
legend {
    margin-bottom: 1.5rem;
}

/* --- MULTILINE LABELS --- */

.multiline-labels .text-field,
.multiline-labels .select-field,
.multiline-labels .autocomplete {
    padding: 18px 20px 18px 20px;
}
.multiline-labels .text-field.text-field--active,
.multiline-labels .select-field.select-field--active,
.multiline-labels .autocomplete.autocomplete--active {
    padding: 6px 20px 6px;
}
.multiline-labels .select-field {
    padding: 18px 40px 18px 20px;
}
.multiline-labels .select-field.select-field--active {
    padding: 6px 40px 6px 20px;
}
.multiline-labels .text-field label,
.multiline-labels .select-field label,
.multiline-labels .autocomplete label {
    display: initial;
    position: relative;
    padding: 2px 20px 0 0;
    white-space: normal;
    font-weight: 400;
    z-index: 2;
}
.form__field--date .text-field:not(.text-field--active) .form__label  {
    display: initial !important;
    padding-left: 0 !important;
}
.multiline-labels .form__field--date .form__label  {
    position: static;
}
.multiline-labels .select-field:not(.select-field--active) label {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.multiline-labels .text-field--required label,
.multiline-labels .select-field--required label {
    font-weight: bold;
}

.multiline-labels .text-field input,
.multiline-labels .select-field__value,
.multiline-labels .autocomplete input,
.multiline-labels .autocomplete__value {
    position: absolute;
    left: 20px;
    top: 20px;
    width: calc(100% - 40px);
    z-index: 1;
}
.multiline-labels .text-field.text-field--active input,
.multiline-labels .select-field.select-field--active .select-field__value,
.multiline-labels .autocomplete.autocomplete--active input,
.multiline-labels .autocomplete.autocomplete--active .autocomplete__value {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
}
.multiline-labels .form__field--date .text-field.text-field--active input {
    position: absolute;
}
.multiline-labels .select-field.select-field--active .select-field__value {
    height: auto;
    pointer-events: none;
}

/* --- TEXT/SELECT/AUTOCOMPLETE --- */
.text-field,
.select-field,
.autocomplete {
    overflow: hidden;
    position: relative;
    padding: 27px 20px 9px 20px;
    border: 1px solid #7D7D7D;
    border-radius: 10px;
    color: #7D7D7D;
    background: #FFF;
    transition: color .5s, border .3s, box-shadow .3s, opacity .3s;
}

.text-field--disabled {
    background-color: rgba(239, 239, 239, 0.3);
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.form__navigation-button {
    display: inline-block;
    margin-bottom: 1rem;
    order: 2;
    text-align: right;
}
.form__navigation-autosave-text {
    display: inline-block;
    margin-bottom: 1.5rem;
    order: 1;
    text-align: left;
}
.button-left > .form__navigation-button {
    order: 1;
    text-align: left;
}
.button-left > .form__navigation-autosave-text {
    order: 2;
    text-align: right;
}
.form__autosave-text.right {
    order: 2;
    text-align: right;
}
.dl__filter-form .select-field.select-field--active,
.dl__filter-form .text-field.text-field--active,
.form__field:not(.form__field--error) .select-field.select-field--active,
.form__field:not(.form__field--error) .text-field.text-field--active,
.autocomplete--active {
    border: 1px solid #00AAB8;
    box-shadow: inset 0 0 0 1px #00AAB8;
}
.form__field:not(.form__field--error) .select-field.select-field--active .form__label,
.form__field:not(.form__field--error) .text-field.text-field--active .form__label,
.form__field:not(.form__field--error) .autocomplete--active .form__label {
    color: #00AAB8;
}
.select-field {
    color: #242424;
    padding: 27px 40px 9px 20px;
}
.text-field label,
.select-field label,
.autocomplete label {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    margin: 0;
    padding: 0 20px;
    white-space: nowrap;
    font-weight: 400;
    cursor: pointer;
    transition: height .5s, font-size .5s, color .3s;
}
.text-field--fixed label,
.text-field--active label,
.select-field--active label,
.autocomplete--active label,
.autocomplete--fixed label {
    height: 34px;
    font-size: 14px;
}
.text-field label .optional,
.select-field label .optional,
.autocomplete label .optional {
    opacity: .5;
    margin-left: 3px;
    display: inline-block;
}
.text-field input,
.select-field__value,
.autocomplete input,
.autocomplete__value {
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    color: #242424;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.form__help {
    font-size: 14px;
}

/* text field */
.text-field:hover {
    /*color: #00AAB8;*/
}
.text-field--active,
.text-field--active:hover {
    color: #7D7D7D;
}
.text-field input::placeholder { color: transparent; }
.text-field input::-webkit-input-placeholder { color: transparent; } /* Chrome legacy, Edge */
.text-field input:-ms-input-placeholder { color: transparent; } /* IE 10+ */
.text-field--active input::placeholder { color: rgba(0,0,0,0.3); }
.text-field--active input::-webkit-input-placeholder { color: rgba(0,0,0,0.3); }
.text-field--active input:-ms-input-placeholder { color: rgba(0,0,0,0.3); } /* IE 10+ */

.text-field:has(.text-field--hidden) {
    opacity: 0;
    pointer-events: none;
}

.text-field:has(.text-field--visible) {
    opacity: 1;
    pointer-events: all;
}
/* animate col-containers height having .text-field--hidden */
.form__row .col-md-6 {
    transition: max-height 0.3s ease;
}
.form__row .col-md-6:has(.text-field--hidden) {
    max-height: 0;
}
.form__row .col-md-6:has(.text-field--visible) {
    max-height: 200px;
}

/* select */
.select-field::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.6rem;
    color: #00AAB8;
    transform: translateY(-50%);
    transition: color .5s;
    pointer-events: none;
}
.select-field:hover,
.select-field:hover::before {
    color: #00AAB8;
}
.select-field label {
    padding-right: 35px;
}
.select-field select {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
    opacity: 0.001;
    background: transparent;
    cursor: pointer;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.select-field select::-ms-expand {
    display: none;
}
.select-field--disabled,
.select-field--disabled::before,
.select-field--disabled:hover,
.select-field--disabled:hover::before {
    color: #7D7D7D;
    background: #EDEDED;
}
.select-field--disabled select {
    cursor: default;
}
.form__field--select {
    max-height: 200px;
    transition: opacity .3s ease, max-height .3s ease;
}
.form__field--select:has(.select-field--hidden) {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
}

/* multi-select */
.multi-select-field {
    padding: 27px 40px 9px 20px;
    position: relative;
    border: 1px solid #7D7D7D;
    border-radius: 10px;
    background: #fff;
    transition: color .5s, border-color .5s, box-shadow .5s;
}
.multi-select-field--active {
    border: 1px solid #00AAB8;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    box-shadow: inset 0 0 0 1px #00AAB8;
}
.multi-select-field:has(input.form-check__input:checked) {
    border: 1px solid #00AAB8;
    box-shadow: inset 0 0 0 1px #00AAB8;
}
.multi-select-field--active .form__label,
.multi-select-field:has(input.form-check__input:checked) .form__label {
    height: 34px;
    font-size: 14px;
    color: #00AAB8;
}
.multi-select-field::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.6rem;
    color: #00AAB8;
    transform: translateY(-50%);
    transition: color .5s;
    pointer-events: none;
}
.multi-select-field:hover .form__label,
.multi-select-field:hover::before .form__label {
    color: #00AAB8;
}
.multi-select-field--disabled,
.multi-select-field--disabled::before,
.multi-select-field--disabled:hover,
.multi-select-field--disabled:hover::before {
    color: #7D7D7D;
    background: #EDEDED;
}
.multi-select-field .form__label {
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0 35px 0 20px;
    white-space: nowrap;
    font-weight: 400;
    cursor: pointer;
    transition: height .5s, font-size .5s, color .3s;
}
.multi-select-field .multi-select-field__content {
    position: absolute;
    top: 100%;
    display: none;
    right: -1px;
    left: -1px;
    width: auto;
    max-height: 400px;
    padding: 0;
    border-radius: 0 0 10px 10px;
    border: 1px solid #7D7D7D;
    border-top-color: #EFEFEF;
    background: #FFF;
    z-index: 1;
    transform: none;
}
.multi-select-field--active .multi-select-field__content {
    display: block;
    border-color: #EFEFEF #00AAB8 #00AAB8;
}
.multi-select-field .multi-select-field__content .form__input-list {
    padding: 15px;
}
.multi-select-field--disabled {
    cursor: default;
}

/* autocomplete */
.autocomplete {
    overflow: visible;
}
.autocomplete--active {
    border-radius: 10px 10px 0 0;
}
.autocomplete__content {
    overflow: hidden;
    position: absolute;
    z-index: 12;
    height: 0;
    max-height: 320px;
    top: calc(100% - 2px);
    right: -1px;
    left: -1px;
    padding: 0 20px;
    color: #242424;
    background: #FFF;
    opacity: 0;
    transition: padding .2s ease-out, opacity .2s;
}
.autocomplete--active .autocomplete__content {
    height: auto;
    overflow: auto;
    padding: 10px 20px;
    border: 2px solid #00AAB8;
    border-top: 1px solid #7D7D7D;
    border-radius: 0 0 10px 10px;
    opacity: 1;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05);
}
.autocomplete__options {
    list-style: none;
    margin: 0 -20px;
    padding: 0;
}
.autocomplete__options li {
    padding: 5px 20px;
    cursor: pointer;
}
.autocomplete__options li:hover {
    background: #EDEDED;
}
.autocomplete__value {
    cursor: pointer;
}
.autocomplete__value::before {
    position: absolute;
    top: 50%;
    right: 12px;
    font-size: 22px;
    color: #00AAB8;
    transform: translateY(-50%);
}



/* --- RADIO/CHECKBOX --- */
.form-radio,
.form-check {
    display: block;
    margin-bottom: 0.75rem;
}
.form-radio:last-child,
.form-check:last-child {
    margin-bottom: 0;
}
.form__input-list--inline {
    margin-left: -1rem;
    margin-right: -1rem;
}
.form__input-list--inline .form-radio,
.form__input-list--inline .form-check {
    display: inline-block;
    margin-right: 1rem;
    margin-left: 1rem;
}
.form-radio__input,
.form-check__input {
    position: absolute;
    opacity: 0;
}
.form-radio__label,
.form-check__label {
    display: block;
    position: relative;
    padding-left: calc(20px + 0.5em);
    line-height: 1.4rem;
    cursor: pointer;
}
.form-check__label-xsmall ~ .form-check__label {
    font-size: 0.75rem;
    line-height: 1.2rem;
}
.form-radio__label::before,
.form-radio__label::after,
.form-check__label::before {
    content: '';
    position: absolute;
    top: calc(0.75rem - 11px);
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #00AAB8;
    border-radius: 4px;
    transition: border .2s;
    background: #FFF;
}
.form-radio__label::before {
    border-radius: 50%;
}
.form-radio__label::after {
    top: calc(0.75rem - 9px);
    left: 2px;
    width: 16px;
    height: 16px;
    border: 8px solid #FFF;
    border-radius: 50%;
    background: #00AAB8;
}
.form-check__label::after {
    content: '\e80b';
    position: absolute;
    top: calc(0.75rem - 10px);
    left: 0;
    width: 20px;
    height: 20px;
    text-align: center;
    font: normal 400 10px/16px "fontello";
    font-size: 14px;
    speak: none;
    color: #fff;
    transform: scale(0);
    transition: transform .4s;
}
.form-check__input:checked + .form-check__label::before {
    border: 10px solid #00AAB8;
}
.form-radio__input:checked + .form-radio__label::after {
    border-width: 3px;
}
.form-check__input:checked + .form-check__label::after {
    transform: scale(1);
}
.form-radio--disabled .form-radio__input:checked + .form-check__label::before,
.form-check--disabled .form-check__input:checked + .form-check__label::before {
    border-color: #808080;
}
.form__input-list__grid .form__input-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.form__field--fileupload .form__label {
    font-size: 14px;
}

/* --- RequestType Radio with Icon --- */
form[id^=hydac-general-contact]:has(.requestType) .form__input-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
form[id^=hydac-general-contact]:has(.requestType) .form-radio {
    position: relative;
    margin-bottom: 0;
}
.requestType .form-radio__label {
    width: 100%;
    height: 140px;
    background: var(--hy-light-grey);
    border-radius: 10px;
    transition: .3s background-color, .3s color;
}
.requestType .form-radio__label > span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 120px;
}
.requestType .form-radio:hover .form-radio__label {
    background: var(--hy-teal);
    color: #FFFFFF;
}
.requestType .form-radio__label::before,
.requestType .form-radio__label::after,
.requestType .form-check__label::before {
    border: unset;
    border-radius: unset;
    background: unset;
    position: unset;
}
.form-radio:has(.requestType)::after {
    position: absolute;
    top: 50%;
    right: 30px;
    text-align: center;
    font: normal 400 32px/48px "fontello";
    font-size: 100px;
    color: #fff;
    transform: translate(20px, -50%);
    cursor: pointer;
}
.form-radio:has(.requestType):has(input[value="sales"])::after {
    content: '\e838';
}
.form-radio:has(.requestType):has(input[value="product"])::after {
    content: '\e837';
}
.form-radio:has(.requestType):has(input[value="technical"])::after {
    content: '\e839';
}
.requestType ~ .actions,
.requestType ~ .form__required-notice{
    display: none;
}
.requestType .form__label {
    padding-bottom: 5px;
}
.requestType .form__label span {
    display: block;
    padding-bottom: 20px;
}

/* --- DATE INPUT --- */
.form__field--date .text-field:not(.text-field--active) {
    padding-top: 15px;
    height: 62px;
}
.form__field--date :not(.text-field--active) .form__label {
    position: absolute;
    left: 55px;
    top: 18px;
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
}
.form__field--date .text-field input {
    position: absolute;
    left: 0;
    top: 0;
}
.form__field--date .text-field {
    overflow: visible;
}

/* --- LOGIN FORM --- */
.felogin-login .link-center {
    display: block;
    text-align: center;
}

/* --- SEARCH FIELD --- */
.search-field {
    display: flex;
}
.search-field__input {
    flex-grow: 1;
}
.search-field__input input {
    height: 100%;
    padding: 0 20px;
    border: 1px solid #CFC8BF;
    border-radius: 10px 0 0 10px;
    border-right: 0;
}
.search-field__btn {
    border-radius: 0 10px 10px 0;
}
.search-field__btn::before {
    font-size: 20px;
}

.form__row.d-flex {
    flex-wrap: wrap;
}
.form__separator {
    text-align: center;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    padding-top: 20px;
    flex: 1 0 auto;
    width: 100%;
}
.form__separated-column {
    flex: 1 0 auto;
    width: 100%;
}

/* --- FORM STEPS --- */
.form__steps {
    position: relative;
    flex-wrap: wrap;
    margin: 0 auto 20px;
    flex-wrap: nowrap;
}
.form__steps-separator {
    width: 40px;
    height: 1px;
    border-top: 2px solid #242424;
    opacity: .2;
}
/* .form__steps-separator:last-of-type {
    display: none;
} */
.form__steps-step {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    align-items: center;
    position: relative;
    margin: 0 10px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    color: #7D7D7D;
    background-color: #efefef;
}
.form__bg-gray .form__steps-step {
    background-color: #fff;
}
.form__steps-step:first-of-type {
    margin-left: 0;
}
.form__steps-step:last-of-type {
    margin-right: 0;
}
.form__steps-step.active {
    background-color: #242424;
    color: #fff;
}
.form__steps-number {
    font-size: 18px;
    font-weight: bold;
}
.form__steps-backlink {
    flex-basis: 100%;
    font-weight: bold;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: -5px;
    padding-left: 0;
    text-align: left;
}
.form__steps-backlink::before {
    content: '\e812';
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    vertical-align: middle;
    transform: rotate(-90deg);
}
button.form__steps-number,
.form__steps-backlink {
    border: 0;
    outline: none;
    color: #00AAB8;
    background-color: transparent;
}

.btn-pdf::before {
    content: '';
    /** ToDo Update @Franzi */
    background-image: url('../../Icons/pdf-icon.svg');
    background-size: contain;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* --- FORM ERRORS --- */
.form__field--error input[type="text"],
.form__field--error input[type="password"],
.form__field--error input[type="number"],
.form__field--error input[type="tel"],
.form__field--error input[type="email"],
.form__field--error input[type="search"],
.form__field--error input[type="date"],
.form__field--error input[type="url"],
.form__field--error textarea,
.form__field--error .text-field,
.form__field--error .select-field,
.form__field--error .form-radio__label::before,
.form__field--error .form-check__label::before {
    border-color: #E2001A;
}
.form__field--error .text-field,
.form__field--error .select-field {
    box-shadow: inset 0 0 0 1px #E2001A;
}
.form__field {
    position: relative;
}

.form__field--error label,
.form__field--error .form__label {
    color: #E2001A;
}
.form__error {
    position: absolute;
    left: 20px;
    top: calc(100% + .5rem);
    color: #E2001A;
    line-height: 1.2;
}

/* --- Filter IT --- */
.alert-message {
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-weight: 700;
}
.alert::marker {
    content:'';
}

/* --- SPECIFIC FORM STYLES --- */
form[id^=hydac-water-treatment-], form[id^=hydac-tank-optimization-] {
    .form__required-notice, .form__navigation-button {
        text-align: left;
    }
}
form[id^=hydac-water-treatment-] .form__navigation-button:has(.form__submit), form[id^=hydac-tank-optimization-] .form__navigation-button:has(.form__submit) {
    text-align: right;
}
form[id^=hydac-water-treatment-] .form__required-notice:has(+ .actions .form__submit), form[id^=hydac-tank-optimization-] .form__required-notice:has(+ .actions .form__submit) {
    text-align: right;
}



/* ==========================================================================
   Media Queries
   ========================================================================== */

/* --- TABLET (MD) --- */
@media ( min-width: 768px ) {

    .form__field__small {
        width: 300px;
    }

    .felogin-login fieldset {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form__navigation-button {
        margin-bottom: 0;
    }

    .requestType .form-radio__label > span {
        font-size: 18px;
    }

    .form__help--nowrap .form__help {
        white-space: nowrap;
    }

    .form__row .col-md-6 {
        max-height: unset !important;
    }

}



/* --- DESKTOP (LG) --- */
@media ( min-width: 992px ) {
    .form__steps {
        flex-wrap: nowrap;
    }
    .form__steps-backlink {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 18px;
        margin-bottom: 0;
    }
    .form__steps.btn-previous__below {
        margin-bottom: 70px;
    }
    .form__steps.btn-previous__below .form__steps-backlink {
        margin-top: 75px;
    }
    .form__row.d-flex {
        flex-wrap: nowrap;
    }
    .form__separator {
        flex: 0 0 auto;
        width: 120px;
    }
    .form__separated-column {
        flex: 1 0 auto;
        width: calc(50% - 60px);
    }
    .form__separated-column:only-child {
        width: 100%;
    }

    /* --- FORM STEPS --- */
    .form__steps {
        margin-bottom: 40px;
    }
    .form__steps-step {
        width: 48px;
        height: 48px;
        margin: 0 20px;
    }
    .form__steps-separator {
        width: 80px;
    }
    .form__steps-number {
        font-size: 24px;
    }
    .form__bg-gray {
        padding: 40px;
    }
    .form__title {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .form__navigation .btn {
        width: auto;
    }
    .form__navigation-autosave-text {
        margin-bottom: 0;
    }
    .alert-message {
        font-size: 1.125rem;
    }
    .requestType .form__label {
        padding-bottom: 20px;
        font-size: 20px;
    }
    form[id^=hydac-general-contact]:has(.requestType) .form__input-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .modal__container form[id^=hydac-general-contact]:has(.requestType) .form__input-list {
        grid-template-columns: unset;
        gap: 10px;
    }
    .requestType .form-radio__label > span {
        font-size: 1rem;
    }
}



/* --- DESKTOP (XL) --- */
@media ( min-width: 1200px ) {
    .alert-message {
        font-size: 1.125rem;
    }
    form[id^=hydac-general-contact]:has(.requestType) .form__input-list {
        gap: 40px;
    }
    .requestType .form-radio__label {
        height: 200px;
        padding-left: 35px;
    }
    .requestType .form-radio__label > span {
        padding-right: 140px;
        font-size: 20px;
        line-height: 1.7rem;
    }
    .form-radio:has(.requestType)::after {
        right: 35px;
        font-size: 120px;
    }

}



/* --- DESKTOP (XXL) --- */
@media ( min-width: 1440px ) {

    .requestType .form-radio__label {
        padding-left: 50px;
    }
    .requestType .form-radio__label > span {
        padding-right: 160px;
    }
    .form-radio:has(.requestType)::after {
        right: 50px;
        font-size: 130px;
    }
    /* --- BASIS --- */

}
