section:has(.send-request-container) {
    background: var(--lazure-green);
}

.send-request-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-bottom: 80px;
}

.send-request-header {
    padding: 80px 16px 0;
    display: flex;
    flex-direction: column;
}

.send-request-header h2 {
    color: var(--white);
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.send-request-header span {
    color: var(--white);
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 16px;
    margin-bottom: 60px;
}

.send-request-header-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.send-request-header-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.send-request-header-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.send-request-header-icon__number {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: flex-end;
    border-radius: 999px;
    background: var(--dark);

    & div {
        margin-top: 2px;
        color: var(--white);
        text-align: center;
        font-family: Manrope, sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
    }
}

.send-request-header-icon__line {
    width: 1px;
    height: 64px;
    background: var(--white);
    align-self: center;
}

.send-request-header-step:nth-child(3) .send-request-header-icon__line {
    display: none;
}

.send-request-header-step__description {
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-form {
    padding: 40px 16px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.send-request-form-content {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
}

.send-request-form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.send-request-form-field label {
    color: var(--gray);
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.send-request-form-field input, .send-request-form-field textarea, .send-request-form-field select {
    display: flex;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--light-gray);
    background: transparent;
    outline: none;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-form-field select.send-request-form-select {
    cursor: pointer;
    appearance: auto;
}

/* Плейсхолдер (пустое value): приглушённый серый; в списке пункты остаются читаемыми */
.send-request-form-field select.send-request-form-select option {
    color: var(--black, #151515);
}

.send-request-form-field select.send-request-form-select:has(> option[value='']:checked) {
    color: #9096a3;
    font-weight: 400;
}

/* Hide browser default validation bubbles */
.send-request-form-field input:invalid,
.send-request-form-field textarea:invalid,
.send-request-form-field select:invalid {
    box-shadow: none;
}

.send-request-form-field input:invalid:not(:focus):not(:placeholder-shown),
.send-request-form-field textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: #dc3545;
}

.send-request-form-error {
    display: none;
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.4;
    font-family: Manrope, sans-serif;
}

.send-request-form-error.show {
    display: block;
}

.send-request-form-field input:focus,
.send-request-form-field input:focus-within,
.send-request-form-field textarea:focus,
.send-request-form-field textarea:focus-within,
.send-request-form-field select:focus {
    outline: none;
    box-shadow: none;
}

.send-request-form-field input::placeholder, .send-request-form-field textarea::placeholder {
    color: var(--light-gray);
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-submit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    height: min-content;
    margin-top: 14px;
}

.send-request-form-alternative {
    color: #000;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.send-request-form-email {
    color: var(--lazure-green);
    text-decoration: none;
}

.send-request-form-email:hover {
    text-decoration: underline;
}

.send-request-form-privacy {
    color: var(--privacy-gray);
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

@media (min-width: 768px) {
    .send-request-header h2 {
        font-size: 40px;
    }

    .send-request-header span {
        font-size: 18px;
    }

    .send-request-header-steps {
        width: 472px;
    }

    .send-request-container {
        padding: 0 16px 80px;
    }

    .send-request-form {
        padding: 40px;
    }

    .send-request-submit-wrapper {
        flex-direction: row;
        gap: 24px;
    }

    .send-request-form-alternative, .send-request-form-privacy {
        text-align: start;
    }
}

@media (min-width: 992px) {
    .send-request-container {
        padding: 0 195px 80px;
    }
}

@media (min-width: 1200px) {
    .send-request-container {
        display: flex;
        flex-direction: row;
        padding: 80px 120px;
        align-items: stretch;
    }

    .send-request-header {
        padding: 0;
    }

    .send-request-header h2 {
        font-size: 56px;
        max-width: 500px;
        text-align: start;
    }

    .send-request-header span {
        text-align: start;
    }

    .send-request-submit-wrapper {
        min-width: 462px;
    }

    .send-request-header-steps {
        width: auto;
        min-width: 350px;
        margin-top: auto;
        margin-bottom: auto;
    }

    .send-request-form {
        min-height: 100%;
        justify-content: space-between;
    }
}

.send-request-custom-select {
    position: relative;
    width: 100%;
}

.send-request-custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid var(--light-gray);

    background: transparent;
    cursor: pointer;

    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.send-request-custom-select__placeholder {
    color: var(--light-gray);
    text-align: left;
}

.send-request-custom-select.active .send-request-custom-select__placeholder {
    color: var(--black);
}

.send-request-custom-select__arrow {
    transition: transform .2s ease;
}

.send-request-custom-select.open .send-request-custom-select__arrow {
    transform: rotate(180deg);
}

.send-request-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    width: 100%;
    max-height: 260px;

    overflow-y: auto;

    background: #fff;
    border: 1px solid #dfe3e8;

    z-index: 100;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);

    transition: .2s ease;
}

.send-request-custom-select.open .send-request-custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.send-request-custom-select__option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: color .2s ease;
}

.send-request-custom-select__icon .icon-plus {
    display: none;
}

.send-request-custom-select[data-multiple] .send-request-custom-select__icon .icon-plus {
    display: block;
}

.send-request-custom-select__icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    position: relative;
}

.send-request-custom-select__icon svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.icon-plus {
    display: block;
}

.icon-check {
    display: none;
}

/* Цвет плюса */

.icon-plus path {
    fill: var(--black);
}

/* Цвет выбранного */

.icon-check circle {
    fill: var(--white);
}

.icon-check path {
    fill: var(--lazure-green);
}

.send-request-custom-select__option.selected {
    color: var(--lazure-green);
}

.send-request-custom-select__option.selected .icon-plus {
    display: none;
}

.send-request-custom-select__option.selected .icon-check {
    display: block;
}


.send-request-custom-select__option:hover {
    background: #f5f5f5;
}

/* выбранный пункт */

.send-request-custom-select__option.selected {
    background: #2fc178;
    color: #fff;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.send-request-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;

    width: 100%;

    background: #fff;
    border: 1px solid #dfe3e8;

    overflow: hidden;
}

.send-request-custom-select__options {
    max-height: 250px;
    overflow-y: auto;
}

.hide-gradient .send-request-custom-select__fade {
    display: none;
}

.send-request-custom-select__fade {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 36px;

    pointer-events: none;

    background: linear-gradient(
            transparent,
            var(--white)
    );
}

