
/**/
.order_step2_form {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
    margin: calc(50% - 50vw);
    padding: 1em calc(50vw - 50%) 0;
    position: relative;
    z-index: 1;
}
.order_step2_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;
}
.order_step2_form.loading:before {
    visibility: visible;
    opacity: 1;
}
.order_step2_form .fields:not(:last-child) {
    margin-bottom: 1.375em;
}
.order_step2_form .field:not(:last-child) {
    margin-bottom: 1.625em;
}
.order_step2_form .field_title {
    font-weight: 600;
    line-height: 1.18;
}
.order_step2_form .field_title:not(:last-child) {
    margin-bottom: 0.5em;
}
.order_step2_form .radio_item {
    display: block;
    line-height: 1.18;
}
.order_step2_form .radio_item:not(:first-child) {
    margin-top: -0.125em;
}
.order_step2_form .radio_item_input {
    display: none;
}
.order_step2_form .radio_item_view {
    position: relative;
    padding: 0.75em 0.75em 0.75em 4.125em;
    box-sizing: border-box;
    border: 0.125em solid #EBEBEB;
    cursor: pointer;
    transition-property: border-color;
    transition-duration: 0.3s;
}
.order_step2_form .radio_item_input:checked + .radio_item_view {
    z-index: 1;
    border-color: #FF5F25;
}
.order_step2_form .radio_item:first-child .radio_item_view {
    border-top-left-radius: 1.125em;
    border-top-right-radius: 1.125em;
}
.order_step2_form .radio_item:last-child .radio_item_view {
    border-bottom-left-radius: 1.125em;
    border-bottom-right-radius: 1.125em;
}
.order_step2_form .radio_item_view .radio_item_checkbox {
    display: block;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    border-radius: 50%;
    box-sizing: border-box;
    border: 0.125em solid #EBEBEB;
}
.order_step2_form .radio_item_input:checked + .radio_item_view .radio_item_checkbox {
    border-color: #FF5F25;
}
.order_step2_form .radio_item_input:checked + .radio_item_view .radio_item_checkbox:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.75em;
    height: 0.75em;
    border-radius: 50%;
    background-color: #FF5F25;
}
.order_step2_form .radio_item_title {
    font-weight: 600;
}
.order_step2_form .radio_item_title:not(:last-child) {
    margin-bottom: 0.25em;
}
.order_step2_form .radio_item_desc {
    opacity: 0.4;
    font-size: 0.75em;
}
.order_step2_form .radio_item_price {
    display: none;
}
.order_step2_form .totals:not(:last-child) {
    margin-bottom: 2.5em;
}
.order_step2_form .prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.order_step2_form .price {
    font-weight: 600;
}
.order_step2_form .price b {
    font-weight: inherit;
    font-size: 1.875em;
    vertical-align: middle;
}
.order_step2_form .price_total {
    opacity: 0.4;
    font-weight: 500;
    font-size: 0.75em;
}
.order_step2_form .price_total:not(:first-child) {
    margin-left: 0.75em;
}
.order_step2_form .more_link_wrap {
    font-weight: 600;
    font-size: 0.875em;
}
.order_step2_form .more_link_wrap a {
    text-decoration: underline;
}
.order_step2_form .actions {
    display: flex;
    flex-wrap: wrap;
    margin: -0.25em;
}
.order_step2_form .action {
    margin: 0.25em;
    flex-grow: 1;
    padding: 0 1em;
}