input[name=f_last_name] {
    display: none !important;
}
._last_name {
    display: contents;
    height: 0!important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    float: left;
    width: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}
#make__order {
    max-width: 800px;
    padding: 50px
}

.table__order {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    /*border-bottom: 1px solid #e7e7e7*/
}

.table__order .product__image_ {
    max-width: 100px;
    width: 100px;
    border-radius: 0
}

.table__order .product__info_ {
    padding: 0
}

.table__order .product__image_ img {
    border-radius: 10px
}

.table__order .product__title_ {
    color: #000;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px
}

input, textarea {
    width: 100%;
    /*min-width: 200px;*/
    border-radius: 0;
    background: white;
    backdrop-filter: blur(4px);
    border: 1px solid #D9D9D9;
    padding: 5px 20px;
    height: 40px;
    transition: .2s ease;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

textarea {
    padding: 15px 20px 27px;
    height: 150px;
}

input:focus, textarea:focus {
    outline: none !important;
    border: 1px solid var(--primary-color);
    opacity: 1;
}



.form__section input, .form__section textarea {
    color: #fff;
    border: 2px solid #FFF;
    background: rgba(217, 217, 217, 0.02);
}

.form__section input:focus, .form__section textarea:focus {
    outline: none !important;
    border: 1px solid var(--primary-color);
    opacity: 1;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ababab;
    opacity: 1; /* Firefox */
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ababab;
}
  
::-ms-input-placeholder { /* Microsoft Edge */
    color: #ababab;
}

.form__section ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1; /* Firefox */
}
  
.form__section :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffff;
}
  
.form__section ::-ms-input-placeholder { /* Microsoft Edge */
    color: #ffffff;
}

.error::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: orange  !important;
    opacity: 1; /* Firefox */
}
  
.error:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: orange  !important;
}
  
.error::-ms-input-placeholder { /* Microsoft Edge */
    color: orange  !important;
}

.checkbox {
    opacity: 1;
    display: flex;
    gap: 15px;
}

[type=checkbox] + label {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    opacity: 1;
    color: rgba(255,255,255,.35);
}
label input+span {

}
label {cursor: pointer;    line-height: 1.4;}


[type=checkbox] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    color: #fff;
    vertical-align: middle;
    -webkit-appearance: none;
    background: none;
    border: 0;
    outline: 0;
    flex-grow: 0;
    border-radius: 0;
    border: 2px solid #D9D9D9!important;
    background: transparent!important;
    background-color: transparent!important;
    transition: background 300ms;
    cursor: pointer;
    border-width: 1px !important;
    padding: 1px;
    opacity: 1;
    margin-top: -2px;
  }

  
  [type=checkbox]::before {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background: transparent;
    background-color: transparent;
    background-size: contain;
    width: 12px;
    height: 12px;
    left: 2px;
    top: 2px;
    position: absolute;
  }
  
  [type=checkbox]:checked {
    background-color: transparent;
  }
  
  [type=checkbox]:checked::before {
    box-shadow: none;
    background-image: url(../../img/icons/check.svg);
    filter: brightness(0.7);
  }
  
  /* IE */
  
  [type=checkbox]::-ms-check {
    content: "";
    color: transparent;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: 0;
    background-color: transparent;
    background-size: contain;
  }
  
  [type=checkbox]:checked::-ms-check {
    box-shadow: none;
    background-image: url(../../img/icons/check.svg);
    filter: brightness(0.7);
  }

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0 35px 0 0px;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
    z-index: 1;
}

select::-ms-expand {
    display: none;
}

.select {
    width: 100%;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    grid-template-areas: "select";
    align-items: center;
    position:relative;
    cursor: pointer;
}

.select::after {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('img/icons/select.png');
    justify-self: end;
    background-size: 30px;
    z-index: 0;
    position: relative;
}

select,
.select:after {
  grid-area: select;
}

.select .focus {
    transition: border .2s ease;
}

select:focus + .focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    border-radius: inherit;
}

select option {
    background-color: white;
    color: gray;
    width: 310px;
    padding: 10px 15px;
    height: 20px;
    cursor: pointer;
  }
  
  select option:hover {
    padding-left: 25px;
    width: 270px;
    color: var(--primary-color);
  }

form .form__errors {
    display: none;
    padding: 15px 15px 15px 25px;
    margin-top: -15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    background: rgb(233, 72, 72, 10%);
}

input.error {
    outline: none !important;
    border: 2px solid orange !important;
    color: orange !important;
    opacity: 1 !important;
}

select.error+.focus {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--primary-color);
    border-radius: inherit;
}

.popup-window {
    position: relative;
    background: #FFF;
    padding: 90px 55px 100px;
    width: auto;
    max-width: 1170px;
    margin: 20px auto;
}

.popup-window .h3 {
    text-align: center!important;
}

.popup-small {
    position: relative;
    background: #FFF;
    padding: 70px 55px 70px;
    width: auto;
    max-width: 450px;
    margin: 50px auto;
}
.popup-window.popup-order {
    max-width: 585px !important;
}

.mfp-inline-holder .mfp-close {
    content: '';
    background: url(img/icons/close.svg) no-repeat !important;
    background-size: contain !important;
    width: 27px;
    height: 27px;
    right: 30px;
    top: 25px!important;
    opacity: 1;
    color: transparent;
    transition: .2s ease;
}
.mfp-inline-holder .mfp-close:hover {
    filter: brightness(0);
}

.mfp-bg {
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(20px);
    opacity: 1;
    height: 100vh;
}

.inline__form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
    gap: 10px; 
    width: 100%;
}

@media (max-width: 991px) {
    .inline__form {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr)); 
        gap: 10px; 
        width: 100%;
        max-width: 370px;
    }
}