.order-form .d-grid.grid-count-2 {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    grid-template-columns: auto  432px;
}

.order-form .driversForm .d-grid.grid-count-4 {
    grid-template-columns: 25% auto auto 50px;
}

/*.webform-section .type-text input, .webform-section .type-text textarea, .webform-section .type-select select*/

.webform-section.order-form .type-text input,
.webform-section.order-form .type-select select
{
    padding: 10px;
}
.webform-section.order-form .type-text input + .label {

}


.order-form .info-block {
    border: 1px solid #cdcdcd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.order-form h5 {
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}
.order-form .block-frame {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow:0 5px 10px rgba(0, 0, 0, 0.1);
}

.block-form-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.info-block .info-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.info-block .info-row {
    display: table-row;
    border-top: 1px solid #ccc;
}

.info-block .info-row:first-child {
    border-top: none;
}

.info-block .info-cell {
    display: table-cell;
    padding: 8px;
    vertical-align: middle;
}

.info-block .label {
    width: 65%; /* Фиксированная ширина первого столбца */
    font-weight: normal;
}

.info-block .value {
    width: 35%;
    font-weight: bold;
    text-align: right;
}

.info-block p {
    font-family: var(--bs-body-font-family);
}

.info-block.applicantPerson .value {
    text-align: left;
    font-weight: unset;
    width: 100%;
}
.info-block.applicantPerson .info-cell {
    padding: unset;
}
.info-block.applicantPerson .label {
    width: 35%;
}

button {
    cursor: pointer;
}

.webform-section .type-text input.error {
    border-color: red !important;
}

.webform-section .type-text input:focus,
.webform-section textarea:focus {
    border: 1px solid #D9D9D9;
    -webkit-box-shadow: 0 0 5px #D9D9D9;
    box-shadow: 0 0 5px #D9D9D9;
    outline: none;
}

.webform-section .type-text input.valid {
    border-color: #26b413 !important;
}

select {
    padding: 15px;
    width: 200px;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 6px;
    margin-bottom: 25px;
}

.block_result_info div {
    display: flex;
    margin: 5px auto;
}
.block_result_info span {
    width: 185px;
    font-weight: bolder;
}

.ui-btn {
    background-color: #FE7333;
    border-color: #ffffff;
    display: block;
}

.ui-btn:hover, a.ui-btn:focus {
    background-color: #ff8e59;
    border-color: #ffffff;
}

.ui-btn.ui-btn-disabled {
    background-color: #FE7333;
    border-color: #ffffff;
}


.click_logo i {
    background: url('https://m.click.uz/static/img/logo.png') no-repeat top left;
    width: 30px;
    height: 25px;
    display: block;
    float: left;
}


.payment-block {
    display: flex;
}

.payment-block div {
    display: inline-flex;
    height: 73px;
    margin: 10px;
    justify-content: center;
    align-items: center;
}

.payment-block div a {
    height: 30px;
    display: flex;
}


.tarif-select {
    display: inline-flex;
}
.tarif-select select {
    width: unset;
}
.tarif-select blockquote {
    margin-bottom: 25px;
    align-content: center;
}


.disabled-link {
    pointer-events: none;
    opacity: 0.5;
}


.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.radio-group--inline {
    flex-direction: row; /* Располагаем элементы в один ряд */
    align-items: center;
}
.radio-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.radio-label input {
    display: none; /* Скрываем стандартный input */
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ff6f30;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: 8px;
}

.radio-label input:checked + .custom-radio::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff6f30;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input:not(:checked) + .custom-radio {
    border-color: #ccc; /* Серый цвет для неактивного */
}

.radio-label input:not(:checked) + .custom-radio::before {
    display: none;
}

