.transport-order {
    background-color: #ffffff;
    display: grid;
    grid-template-rows: max-content max-content max-content max-content;
    grid-template-areas: "title" "order-fields" "payment" "client-fields";
    grid-auto-flow: dense;
    grid-template-columns: 100%;
    width: 100%;
    padding: 0;
}
.order__title {
    padding: 40px 35px 15px 35px;
    grid-area: title;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 1px solid #F2F2F2;
}
.order__title-text {
    padding-bottom:25px;
}
.order__fields {
    grid-area: order-fields;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 35px 50px 35px;
}
.order__fields-title {
    margin-bottom: 16px;
    text-align: left;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #1D2D53;
}
.order__fields-item {
    margin: 20px 0 0 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: stretch;
    border: 2px solid #F2F2F2;
    border-radius: 8px;
}
.order__fields-item__title {
    width: 40%;
    padding: 15px 0 15px 20px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 17px;
    line-height: 17px;
    color: rgba(39, 42, 49, 0.85);
}
.order__fields-item__select {
    padding: 12px 25px;
    margin: 8px 20px 8px 10px;
    height: 50px;
    flex-grow: 1;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: rgb(39, 42, 49);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='dimagray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 99%;
    background-position-y: 12.5px;
  }


.order__fields-item__input {
    padding: 12px 25px;
    margin: 8px 20px 8px 10px;
    height: 50px;
    flex-grow: 1;
    border-radius: 4px;
    border: 1.5px solid #F2F2F2;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: rgb(39, 42, 49);
}
input[type="text"].no-color {
    border-color: #F2F2F2 !important;
}
.order__fields-item__counter {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 8px 20px 8px auto;
    align-self: flex-end;
    width: 135px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.order__payment {
    grid-area: payment;
}
.order__info {
    grid-area: client-fields;
}

#counter-peoples-value.active {
    background: #85B562CC;
}

#counter-hours-value.active {
    background: #85B562CC;
}

.discount s::before {
    top: 50%;
    background: red;
    opacity: .7;
    content: '';
    width: 110%;
    position: absolute;
    height: 0.1em;
    border-radius: 0.1em;
    left: -5%;
    white-space: nowrap;
    display: block;
    transform: rotate(-15deg);
}
