.order-block {
    border-radius: 5px;
    background: var(--White, #fff);
    padding: 15px 20px 1px 20px;
    margin-bottom: 10px;
}
.order-block {
.input__group {
    margin-bottom: 21px;
    width: 67%;
}
.input__field {
    width: 100%;
}
}
.bx-blue .btn.btn-default {
    outline: none;
    background-color: #f54500;
    border-color: #f54500;
    color: #FFF;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.bx-blue .btn.btn-default:hover {
    background-color: #d43c00;
    border-color: #d43c00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.title_order
{
    max-width: 100%;
    font-size: 48px;
    line-height: 111%;
    margin-bottom: 15px;
    padding-bottom: 23px;
    margin-top: 10px;
    border-bottom: 1px solid;
}
.person-type-container
{
    display:flex;
    flex-direction: column;
}
.radio_group
{
    display: flex;
    padding-top:15px;
    gap:15px;
}
.radio-inline {
    margin-bottom: 10px; /* Отступ между вариантами */
}

/* Скрываем нативный input */
.radio_type_btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Базовые стили кастомного радио */
.radio_type_btn {
    position: relative;
    padding-left: 28px; /* Место для кружка */
    cursor: pointer;
    display: inline-block;
    line-height: 20px; /* Выравнивание по вертикали */
}

/* Стили круга (псевдо-радио) */
.radio_type_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    box-sizing: border-box;
}

.radio_type_btn input[type="radio"] + span::after {
    content: "";
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f7f7f7; /* Белый фон вместо оранжевого */
    border-radius: 50%;
    border: 1px solid #eeeeee;
    box-sizing: border-box;
    padding: 0;
    transition: all 0.2s ease; /* Плавное изменение состояний */
}

.radio_type_btn input[type="radio"]:checked + span::before {
    border-color: #f54500;
}

.radio_type_btn input[type="radio"]:checked + span::after {
    content: "";
    position: absolute;
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #f7f7f7; /* Белый фон вместо оранжевого */
    border-radius: 50%;
    border: 1px solid #eeeeee;
    box-sizing: border-box; /* Чтобы border не увеличивал размеры */
    padding: 0; /* Убираем padding */
}


.radio_type_btn input[type="radio"]:checked + span::before {
    content: "";
    position: absolute;
    left: -18px; /* Подгоняем позицию */
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #f54500; /* Оранжевая точка */
    border-radius: 50%;
    z-index: 10;
}

.radio_type_btn span {
    position: relative;
    padding-left: 5px;
}

.radio_type_btn:hover::before {
    border-color: #d0d0d0;
}
.radio-inline
{
    padding-left: 0;
}
.label_group_title{
    font-size: 20px !important;
    line-height: 100%;

}
