.sts_ordering_sect .ordering_head {
    display: flex;
    border-bottom: 0.125em solid #D9D9D9;
    justify-content: space-between;
    padding-bottom: 1.75em;
    align-items: flex-start;
}
.sts_ordering_sect .ordering_head:not(:last-child) {
    margin-bottom: 2.25em;
}
.sts_ordering_sect.fixed_head .ordering_head {
    position: fixed;
    top: 0;
    padding: 1.75em 0;
    z-index: 3;
    background-color: #F5F5F5;
    max-width: 75em;
    width: calc(100% - 2em);
}
.admin-bar .sts_ordering_sect.fixed_head .ordering_head {
    top: 32px;
}
.sts_ordering_sect.fixed_head .wrap {
    padding-top: 7.625em;
}
.sts_ordering_sect .back_butt {
    font-size: 1.5em;
    display: flex;
    align-items: center;
    padding-left: 1.34em;
    background-position: left center;
    background-size: auto 0.75em;
    background-repeat: no-repeat;
    background-image: url(../../img/icons/chevron-left-000.svg);
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.5;
    font-family: inherit;
    text-decoration: none;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.sts_ordering_sect .back_butt:hover {
    opacity: 1;
}
.sts_ordering_sect .cost_and_next_wrap {
    display: flex;
    align-items: center;
}
.sts_ordering_sect .order_cost_wrap {
    padding-right: 3em;
    text-align: right;
}
.sts_ordering_sect .order_cost {
    font-size: 1.25em;
    font-weight: 600;
}
.sts_ordering_sect .order_cost b {
    font-size: 1.2em;
    font-weight: inherit;
}
.sts_ordering_sect .order_cost_text {
    font-size: 0.875em;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}
.sts_ordering_sect .info {
    background-color: rgba(217, 217, 217, 0.2);
    border-radius: 1.125em;
    position: relative;
    box-sizing: border-box;
    padding: 1em 1em 1em 3.5em;
}
.sts_ordering_sect .info:not(:last-child) {
    margin-bottom: 1.25em;
}
.sts_ordering_sect .info_icon {
    position: absolute;
    top: 0.75em;
    left: 0.75em;
    max-width: 1.75em;
    max-height: 1.75em;
}
.sts_ordering_sect .info_text {
    font-size: 0.875em;
}
.sts_ordering_sect .description {
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.62);
}
.sts_ordering_sect .description b {
    color: #000;
}
.sts_ordering_sect .description:not(:last-child) {
    margin-bottom: 3.64em;
}
.sts_ordering_sect .insurances {
    display: flex;
    flex-wrap: wrap;
    margin: -0.75em;
    justify-content: center;
}
.sts_ordering_sect .insurances:not(:last-child) {
    margin-bottom: 2.25em;
}
.sts_ordering_sect .insurance {
    margin: 0.75em;
    box-sizing: border-box;
    width: 24em;
    border-radius: 1.125em;
    padding: 1.25em;
    background-color: #ffffff;
    background-image: linear-gradient(141deg, #FFF -81.8%, #DBDBDB 100%);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 25.5em;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.sts_ordering_sect .insurance.selected {
    color: #ffffff;
}
.sts_ordering_sect .insurance:before {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: -1;
    position: absolute;
    border: 0.125em solid #FF5F25;
    opacity: 0;
    box-sizing: border-box;
    transition-property: opacity;
    transition-duration: 0.3s;
}
.sts_ordering_sect .insurance:hover:before,
.sts_ordering_sect .insurance.selected:before {
    opacity: 1;
}
.sts_ordering_sect .insurance:after {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: -2;
    position: absolute;
    opacity: 0;
    box-sizing: border-box;
    background-color: #000;
    background-image: linear-gradient(141deg, #FFF -81.8%, #000 100%);
    transition-property: opacity;
    transition-duration: 0.3s;
}
.sts_ordering_sect .insurance.selected:after {
    opacity: 1;
}
.sts_ordering_sect .insurance_name {
    font-size: 1.5em;
    font-weight: 600;
    max-width: calc(100% - 1.75em);
}
.sts_ordering_sect .insurance_name:not(:last-child) {
    margin-bottom: 2em;
}
.sts_ordering_sect .insurance_info {
    margin-top: auto;
}
.sts_ordering_sect .insurance_title {
    font-weight: 600;
    font-size: 1.25em;
}
.sts_ordering_sect .insurance_title:not(:last-child) {
    margin-bottom: 0.25em;
}
.sts_ordering_sect .insurance_description {
    font-weight: 500;
    font-size: 0.875em;
}
.sts_ordering_sect .insurance_no_franchise {
    color: #4B9600;
}
.sts_ordering_sect .insurance.selected .insurance_no_franchise {
    color: #51FF22;
}
.sts_ordering_sect .insurance_description:not(:last-child) {
    margin-bottom: 2em;
}
.sts_ordering_sect .insurance_price {
    font-weight: 600;
}
.sts_ordering_sect .insurance_price b {
    font-weight: inherit;
    font-size: 2em;
    vertical-align: middle;
}
.sts_ordering_sect .insurance_checked {
    position: absolute;
    top: 1em;
    right: 1em;
    box-sizing: border-box;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    border: 0.125em solid #ffffff;
}
.sts_ordering_sect .insurance.selected .insurance_checked:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    border-radius: 50%;
    width: 0.75em;
    height: 0.75em;
    transform: translate(-50%, -50%);
}
.sts_ordering_sect .order_preview_container {
    padding: 2.5em 3.25em;
    border-radius: 1.125em;
    background-color: #ECECEC;
}
.sts_ordering_sect .col .order_preview_container {
    padding: 1.5em 2.25em 2.5em;
    background-color: #E7E7E7;
    position: relative;
}
.sts_ordering_sect .order_preview {
    line-height: 1.5;
}
.sts_ordering_sect .order_preview_head {
    display: block;
    max-width: 100%;
    font-size: 1em;
    font-weight: 600;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    background-color: transparent;
}
.sts_ordering_sect .order_preview_head:not(:last-child) {
    margin-bottom: 1em;
}
.sts_ordering_sect .order_preview_body {
    font-weight: 500;
}
.sts_ordering_sect .order_preview_body ul {
    margin: 0;
    padding-left: 1.25em;
}
.sts_ordering_sect .order_preview_body li:not(:last-child) {
    margin-bottom: 1em;
}

.sts_ordering_sect .continue_butt_mob {
    display: none;
}




.sts_ordering_sect .cols {
    display: flex;
    justify-content: space-between;
}
.sts_ordering_sect .col:first-child {
    width: 57.5%;
}
.sts_ordering_sect .col:last-child {
    width: 40%;
}
.sts_ordering_sect .additional_service {
    box-sizing: border-box;
    border: 1px solid #000;
    border-radius: 1.125em;
    padding: 1.5em;
}
.sts_ordering_sect .additional_service:not(:last-child) {
    margin-bottom: 0.625em;
}
.sts_ordering_sect .additional_service_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sts_ordering_sect .additional_service_head:not(:last-child) {
    margin-bottom: 1.5em;
}
.sts_ordering_sect .additional_service_info {
    position: relative;
    padding-left: 3em;
    min-height: 2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sts_ordering_sect .additional_service_icon {
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translate(-50%, -50%);
    max-width: 2em;
    max-height: 2em;
}
.sts_ordering_sect .additional_service_name {
    font-weight: 600;
    font-size: 1.25em;
}
.sts_ordering_sect .additional_service_name:not(:last-child) {
    margin-bottom: 0.25em;
}
.sts_ordering_sect .additional_service_price {
    font-size: 0.875em;
    font-weight: 500;
}
.sts_ordering_sect .additional_service_price.free {
    color: #309500;
    font-weight: 700;
}
.sts_ordering_sect .additional_service_head_right {
    display: flex;
    align-items: center;
}
.sts_ordering_sect .additional_service_description_toggle {
    font-size: 0.875em;
    font-family: inherit;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    color: inherit;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
}
.sts_ordering_sect .additional_service_description + .additional_service_description_toggle {
    display: none;
}
.sts_ordering_sect .toggle {
    margin-left: 1.375em;
}
.sts_ordering_sect .additional_service_description {
    background-color: #E3E3E3;
    font-size: 0.875em;
    border-radius: 1.29em;
    padding: 1.71em 1.89em;
    font-weight: 500;
}
.sts_ordering_sect .additional_service_description:not(:last-child) {
    margin-bottom: 1.71em;
}
.sts_ordering_sect .additional_service_description:not(.opened) {
    display: none;
}
.sts_ordering_sect .additional_sub_service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 0;
}
.sts_ordering_sect .additional_sub_service:not(:first-child) {
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
}
.sts_ordering_sect .additional_sub_service_name {
    font-weight: 600;
}














.sts_ordering_sect .form_group:not(:first-child) {
    padding-top: 1.5em;
}
.sts_ordering_sect .form_group:not(:last-child) {
    padding-bottom: 1.5em;
    border-bottom: 0.125em solid #D9D9D9;
}
.sts_ordering_sect .form {
    background-color: #ffffff;
    box-shadow: 0 0.25em 1.5em 0 rgba(0, 0, 0, 0.08);
    padding: 2.75em 2em 3.25em;
    border-radius: 1.625em;
    position: relative;
    z-index: 1;
}
.sts_ordering_sect .form:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
}
.sts_ordering_sect .form.loading:before {
    visibility: visible;
    opacity: 1;
}
.sts_ordering_sect .form_title {
    font-weight: 600;
    font-size: 1.25em;
}
.sts_ordering_sect .form_title:not(:last-child) {
    margin-bottom: 1em;
}
.sts_ordering_sect .fields {
    display: flex;
    margin: -0.625em -0.5em;
    flex-wrap: wrap;
}
.sts_ordering_sect .field {
    padding: 0.625em 0.5em;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.sts_ordering_sect .field.w50 {
    width: 50%;
}
.sts_ordering_sect .field.w40 {
    width: 40%;
}
.sts_ordering_sect .field.w60 {
    width: 60%;
}
.sts_ordering_sect .field_label {
    font-weight: 500;
}
.sts_ordering_sect .field_label:not(:last-child) {
    margin-bottom: 0.5em;
}
.sts_ordering_sect .field_input {
    border-radius: 1em;
    border: 0.11em solid #A5A5A5;
    box-sizing: border-box;
    font-size: 1.125em;
    height: 2.78em;
    padding: 0 1em;
    font-family: inherit;
    color: #000000;
    width: 100%;
    font-weight: 500;
}
.sts_ordering_sect .checkbox_line {
    display: flex;
    align-items: center;
    margin: auto 0;
}
.sts_ordering_sect .checkbox:not(:last-child) {
    margin-right: 0.5em;
}
.sts_ordering_sect .checkbox_line_label {
    font-size: 0.875em;
    font-weight: 500;
}
.sts_ordering_sect .field .info {
    padding: 0.75em 0.75em 0.75em 3.25em;
}
.sts_ordering_sect .field .info_text {
    font-size: 0.625em;
    opacity: 1;
}
.sts_ordering_sect .checkbox_row {
    display: flex;
    align-items: center;
}
.sts_ordering_sect .checkbox_row:not(:last-child) {
    margin-bottom: 1em;
}
.sts_ordering_sect .checkbox:not(:last-child) {
    margin-right: 1.25em;
}
.sts_ordering_sect .checkbox_row_label {
    font-weight: 600;
    font-size: 1.25em;
}
.sts_ordering_sect .total_table {
    border-collapse: collapse;
    width: 100%;
    font-weight: 600;
}
.sts_ordering_sect .total_table td:nth-child(2) {
    text-align: right;
}
.sts_ordering_sect .total_table:not(:last-child) {
    margin-bottom: 2.5em;
}
.sts_ordering_sect .total_table_total_label {
    font-size: 1.25em;
}
.sts_ordering_sect .total_table_total_value {
    font-size: 2em;
}
.sts_ordering_sect .important:not(:last-child) {
    margin-bottom: 4em;
}
.sts_ordering_sect .important_head {
    font-size: 0.875em;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    width: max-content;
    max-width: 100%;
    padding-right: 2.21em;
    position: relative;
    cursor: pointer;
}
.sts_ordering_sect .important_head:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1.125em;
    height: 1.125em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../img/icons/chevron-bottom-a5a5a5.svg);
}
.sts_ordering_sect .important_body {
    font-size: 0.875em;
    color: rgba(0, 0, 0, 0.5);
    display: none;
}
.sts_ordering_sect .important_body:not(:first-child) {
    margin-top: 1.5em;
}
.sts_ordering_sect .important.opened .important_head:after {
    transform: translateY(-50%) scaleY(-1);
}
.sts_ordering_sect .important.opened .important_body {
    display: block;
}
.sts_ordering_sect .form_submit {
    width: 25.75em;
    max-width: 100%;
}





.sts_ordering_sect .order_car:not(:last-child) {
    margin-bottom: 1em;
}
.sts_ordering_sect .order_car_name {
    font-size: 2.25em;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}
.sts_ordering_sect .order_car_name:not(:last-child) {
    margin-bottom: 0.25em;
}
.sts_ordering_sect .order_car_image {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.sts_ordering_sect .order_car_image:not(:last-child) {
    margin-bottom: 0.5em;
}
.sts_ordering_sect .order_car_term {
    font-weight: 500;
}
.sts_ordering_sect .order_car_term:not(:last-child) {
    padding-bottom: 0.5em;
    margin-bottom: 1.25em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sts_ordering_sect .order_car_term_label {
    display: inline;
    opacity: 0.5;
}
.sts_ordering_sect .order_car_term_value {
    display: inline;
}
.sts_ordering_sect .order_route_items {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 1.25em 0;
}
.sts_ordering_sect .order_route_items:not(:last-child) {
    margin-bottom: 1em;
}
.sts_ordering_sect .order_route_item {
    position: relative;
    padding-left: 4.5em;
}
.sts_ordering_sect .order_route_item:not(:last-child) {
    margin-bottom: 2em;
}
.sts_ordering_sect .order_route_item:not(:last-child):before {
    content: '';
    display: block;
    height: calc(100% - 0.5em);
    top: 2.25em;
    left: 1em;
    width: 0.125em;
    background-color: #000000;
    transform: translateX(-50%);
    position: absolute;
}
.sts_ordering_sect .order_route_item_icon {
    position: absolute;
    max-width: 2em;
    max-height: 2em;
    top: 1em;
    left: 1em;
    transform: translate(-50%, -50%);
}
.sts_ordering_sect .order_route_item_title {
    font-weight: 500;
    opacity: 0.5;
    font-size: 0.75em;
}
.sts_ordering_sect .order_route_item_name {
    font-weight: 700;
}
.sts_ordering_sect .order_route_item_date {
    font-weight: 500;
    font-size: 0.75em;
}