.order-wrap {

}

.order-tabs {
    display: inline-flex;
    gap: 45px;
    background-image: url('/bitrix/templates/glinki/img/order/line.png');
    background-position: center;
    background-repeat: repeat-x;
    margin: 0 -10px;
    margin-bottom: 35px;
}

.order-tab {
    padding: 0 10px;
    background: #fff;
}

.order-tab span {
    display: block;
    font-size: 20px;
    color: #383838;
    padding: 10px 25px;
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 100px;
}

.order-tab.active span {
    background: #F48700;
    border: 1px solid #F48700;
    color: #fff;
}

.order-tab.last span {
    background: #FF9F29;
    border: 1px solid #FF9F29;
    color: #fff;
}

.order-container {
    display: flex;
    gap: 37px;
    align-items: start;
}

.order-left {
    width: 70%;
}

.order-right {
    width: 30%;
}

.order-form-item {
    margin-bottom: 25px;
}

.order-form-info {
    margin-bottom: 10px;
    font-size: 16px;
}

.order-form-group {
    display: flex;
    gap: 20px;
}

.order-form-input input {
    background-color: #F4F4F4;
    border-radius: 10px;
    padding: 12px 18px;
    width: calc(100% - 30px) !important;
    border: 0;
    font-size: 16px;
}

.order-form-textarea textarea {
    background-color: #F4F4F4;
    border-radius: 10px;
    padding: 12px 18px;
    border: 0;
    font-size: 16px;
    width: calc(100% - 30px) !important;
    height: 100px;
}

.order-form-radio {
	margin-bottom: 10px;
}
.order-form-radio input[type=radio] {
	display: none;
}
.order-form-radio label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 28px;
	margin-right: 0;
	line-height: 18px;
	user-select: none;
}
.order-form-radio label:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	bottom: -1px;
	background: url('/bitrix/templates/glinki/img/order/radio.svg') 0 0 no-repeat;
}
 
/* Checked */
.order-form-radio input[type=radio]:checked + label:before {
	background: url('/bitrix/templates/glinki/img/order/radio-check.svg') 0 0 no-repeat;
}
 
/* Hover */
.order-form-radio label:hover:before {
	filter: brightness(120%);
}
 
/* Disabled */
.order-form-radio input[type=radio]:disabled + label:before {
	filter: grayscale(100%);
}

.order-required {
    color: #D93333;
    margin-left: 5px;
}

.order-summary {
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 40px 45px;
    margin-bottom: 20px;
}

.order-info {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 10px;
    font-size: 16px;
}

.order-info-value {
    text-align: right;
}

.order-result {
    border-top: 1px solid #D9D9D9;
    margin-top: 30px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 10px;
    font-size: 20px;
}

.order-buttoms {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.order-buttoms button {
    width: calc(100% - 20px);
}

.order-btn {
    padding: 18px 20px;
    color: #383838;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.5s;
}

.order-btn .btn-icon {
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 8px;
}

.order-btn .btn-icon.icon-arrow {
    background-image: url(/bitrix/templates/glinki/img/order/arrow.svg);
    width: 25px;
    height: 13px;
}

.order-btn.btn-grey {
    background-color: #D9D9D9;
}

.order-btn.btn-grey:hover {
    background-color: #ededed;
}

.order-btn.btn-primary {
    background-color: #FF3D08;
    color: #fff;
}

.order-btn.btn-primary:hover {
    background-color: #F48700;
}

@media (max-width: 1400px) {
    .order-right {
        width: 40%;
    }

    .order-left {
        width: 60%;
    }
}

@media (max-width: 1000px) {
    .order-right {
        width: 50%;
    }

    .order-left {
        width: 50%;
    }

    .order-tabs {
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .order-container {
        flex-wrap: wrap;
    }

    .order-right {
        width: 100%;
    }

    .order-left {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .order-tab span {
        font-size: 16px;
        padding: 5px 10px;
    }

    .order-tabs {
        gap: unset;
    }
}

@media (max-width: 360px) {
    .order-form-radio label:before {
        bottom: 10px;
    }
}