:root {
    --color-bg-input: #fff; 
}
.consult {
    padding: 20px 0 60px;
}
 
 
.consult__form {
}
.consult__fields {display: grid;grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));gap: 20px 30px;margin-bottom: 20px;}


.consult__field {
}
 
.consult__field select {
}
 
.form-field {
    width: 100%;
    font-size: 16px;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 90px;
    outline: none;
    border: none;
    box-shadow: none;
    border: 1px solid #000000;
    background: var(--color-bg-input);
}
.form-field.error {
    color: red;
    border-color: red;
  
}
.form-field.error::placeholder,
.form-field.error::-webkit-input-placeholder,
.form-field.error::-moz-placeholder,
.form-field.error:-moz-placeholder,
.form-field.error:-ms-input-placeholder {
    color: red !important;
      
}
.consult__submit {
    display:flex;
    justify-content: center;
}
.consult__submit .button-icon {
    /* font-weight: 400; */
    /* font-size: 13px; */
    letter-spacing: 0px;
}
.consult__wrapper {
    position:relative;
    padding: 90px 0;
    
}
.consult__wrapper:before {
    display:block;
    content:'';
    position: absolute;
    left: -90px;
    top: 0;
    bottom: 0;
    right: -90px;
    background: #363635;
    z-index: 0;
    border-radius: 90px;
}
@media (max-width: 1400px){
    .consult__wrapper:before  {
        border-radius:20px;
        left: -14px;
        right: -14px;
    }
}
.consult__wrapper > * {
       z-index: 2;
    position:relative;
}
.consult__title {
    margin-bottom: 30px;
}
.consult__descr {
    margin-bottom: 40px;
    font-size: 16px;
}
.form-field--date {
    background-image:url(../images/date.svg);
    background-repeat:no-repeat;
    background-position:93% center ; 
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    color: #000;
}

body .select2 {
    width: 100%;
}
body .select2-container--default .select2-selection--single {
   border: 1px solid #000000;
   border-radius: 26px;
   height: 51px;
   display: block;
   background: var(--color-bg-input);
}
body .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
 /* border-radius: 90px; */
 border-top: none;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 51px;
    padding-left: 20px;
    padding-right: 30px;
    max-width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
   display:none 
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
 right: 25px;
 top: 0;
 bottom: 2px;
 margin: AUTO;
 border-bottom: 1px solid #999999;
 border-left: 1px solid #999999;
 width: 10px;
 height: 10px;
 transform: rotate(-45deg);
}
body  .select2-search--dropdown .select2-search__field{
    display:none
}

body .select2-container--open .select2-dropdown {
    background:var(--color-bg-input);
    border-color: #000;
    border-radius: 0;
    border-bottom: none;
}
.select2-container--default .select2-results>.select2-results__options {
    min-height: 170px;
    max-height: 250px;
}

body .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
     border-bottom: none;
}
body .select2-search--dropdown {
    padding:0;
    display: none;
}
body .select2-results__option {
   color: #999999;
   cursor: initial;
}
.select2-results__option[aria-selected] {
    cursor:inherit;
    color: #000;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
     background: #000;
}
body .select2-container--default .select2-results__option[aria-selected=true]{
   background: #000;
   color: #fff;
}

@media (max-width: 960px) {
    body .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 13px;
        padding: 0;
        color: #fff;
        line-height: 29px;
    }
    .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #fff;
    }
    .form-field {
         font-size: 13px;
         border-radius: 0;
         background: transparent;
         color: #fff;
         border: none;
         border-bottom: 1px solid #fff;
         padding: 5px 0;
    }
    .form-field::placeholder {
        color:inherit;
    }
    .consult__wrapper {
        padding: 25px 0 30px;
    }
    body .select2-container--default .select2-selection--single {
        background:transparent;
        border:none;
        border-bottom: 1px solid #fff;
        border-radius:0;
        height: 29px;
    }
 
    .consult__fields {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        margin-bottom: 30px;
    }
    .consult__descr {
        /* font-size: 16px; */
    }
    .consult__title {
        margin-bottom: 20px;
    }
    body .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 3px;
        width: 8px;
        height: 8px;
        bottom: 5px;
    }
    body .select2-results__option {
        border-bottom: 1px solid #515151;
        background: #363635;
    }
    .select2-results__option[aria-selected] {
        color:#fff;
        font-size: 13px;
        padding: 7px 20px;
    }
    .select2-container--default .select2-results>.select2-results__options {
     
    }
    body .select2-container--open .select2-dropdown {
          border-color: #515151; 
         border-top: 1px solid #515151; 
    }
    
}