#modal {
    display: none;
    background: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    overflow: auto;
    width: 100%;
    padding: 0 15px;
}

#modal .container {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}
.request__tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    max-width: 900px;
    margin-inline:auto;margin-bottom: 20px
}

.request__tabs::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 14px;
    width: calc(100% - 26px);
    height: 4px;
    background: #fa6338
}
.request__tabs.first_step::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 14px;
    width: calc(100% - 26px);
    height: 4px;
    background: #fa6338
}

.request__tabs::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 13px;
    width: 32%;
    height: 4px;
    background: #e8e8e8
}

.request__tabs.first_step::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 13px;
    width: 65%;
    height: 4px;
    background: #e8e8e8
}

@media (max-width: 500px) {
    .request__tabs::after {
        width:28%
    }
}

@media (max-width: 600px) {
    .request__tabs {
        max-width:90%
    }
}

.request__tab {
    z-index: 2;
    flex: 0 1 33.333%;
    width: 100%;
    color: #000;
    font-weight: 700;
    font-size: 16px
}

.request__tab:nth-child(1) .request__tab-icon {
    margin-left: 13px
}

.request__tab:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center
}

.request__tab:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: end
}

.first_step .request__tab:nth-child(2) .request__tab-icon,
.request__tab:nth-child(3) .request__tab-icon {
    margin-right: 10px;
    background: #e8e8e8
}

.request__tab:nth-child(3) .request__tab-icon {
    margin-right: 0;
}

.request__tab:nth-child(3) p {
    margin-right: 5px;
}

.request__tab p {
    white-space: nowrap
}

.request__tab-icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #fa6338;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px
}

.request__products {
    margin-bottom: 50px
}

.request__product {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,.1019607843);
    margin-bottom: 10px;
}

.request__product-img img {
    width: 60px;
    object-fit: contain
}

.request__product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px
}

.request__product-name span {
    display: block;
    color: #fa6338
}

.request__order {
    border-bottom: 1px solid rgba(0,0,0,.1019607843);
    padding-bottom: 10px
}

.request__order-title {
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    margin-bottom: 15px
}

.request__order-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px
}

.request__form .button {
    margin-top: 30px
}

form .field {
    position: relative;
}

form .field-title {
    padding: 20px 0;
    font-size: 15px;
    display: block;
}

form label {
    position: absolute;
    left: 6px;
    top: 4px;
    font-size: 12px;
    z-index: 30;
    width: auto;
    white-space: nowrap;
    opacity: .7;
}

form input {
    outline: none;
    width: 100%;
    height: 48px;
    margin: 0;
    background: #f5f5f5;
    border: none;
    font-size: 16px !important;
    color: #000;
    padding: 20px 8px 6px;
    margin-bottom: 20px;
}

form input[type="tel"] {
    padding-left: 5.1rem;
}

.country-input__value {
    position: absolute;
    left: -5px;
    top: 21px;
    padding-left: 3rem;
    font-size: 1rem;
}

.country-input__value:before {
    content: "";
    display: block;
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    float: left;
    width: 1.8rem;
    height: 1.4rem;
    background: url(../65.png) no-repeat;
    background-size: 100% 100%;
}

form button {
    display: block;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    padding: 9px 0;
    box-shadow: 0 7px 11px 0 rgba(12, 28, 228, .2);
    width: 100%;
    border-radius: 20px;
    text-align: center;
    background: #fa6338;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease 0s;
}
form button[disabled] {
    background: #ccc;
}

form button:hover {
    background:#fa4311
}
