#ostavit-otzyv_bg {
    padding: 30px;
    border-radius: 30px;
    background-size: cover;
    background-position: top;
}

#ostavit-otzyv_bg .customers-feedback-table {
    gap: 30px;
}

#ostavit-otzyv_bg .trapezoid-gray-back.form_stl {
    background: #fff;
    padding: 30px;
    border-radius: 30px
}

#ostavit-otzyv_bg .customers-feedback-aside {
    color: #fff;
    display: flex;
    flex-direction: column;
}

#ostavit-otzyv_bg .customers-feedback-aside .customers-feedback-person-text {
    height: calc(100% - 79px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0 0;
}

#ostavit-otzyv_bg .customers-feedback-aside .customers-feedback-person-text p {
    font-size: 20px;
    font-weight: 600;
}

#ostavit-otzyv_bg .customers-feedback-aside .customers-feedback-person-text p.small-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

#ostavit-otzyv_bg .white-bg {
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    margin: 0;
}

#ostavit-otzyv_bg.customers-feedback .customers-feedback-main .trapezoid-gray-back form .form_row {
    flex-direction: column;
}

#ostavit-otzyv_bg.customers-feedback .customers-feedback-main .trapezoid-gray-back form .form_row label {
    margin-bottom: 10px;
    width: auto;
}

#ostavit-otzyv_bg.customers-feedback .customers-feedback-main .trapezoid-gray-back form .form_row::before {
    bottom: -5px;
    top: auto;
    right: 0;
    width: 50px;
    height: 30px;
}

#ostavit-otzyv_bg.customers-feedback .customers-feedback-main .trapezoid-gray-back form .button {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}


.custom-dropdown_regions {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    user-select: none;
}

.custom-dropdown_regions.disabled {
    background: #f5f5f5;
    pointer-events: none; /* Блокирует клики */
    opacity: 0.6;
}

/* Выбранное значение */
.selected-value {
    padding: 10px 15px;
    position: relative;
}

.selected-value:after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    border: 5px solid transparent;
    border-top-color: #333;
    margin-top: -2px;
}

/* Список опций */
.options-list {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-dropdown_regions.open .options-list {
    display: block;
}

.options-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.options-list li:hover {
    background: #f0f7ff;
}

.options-list li strong { font-size: 14px; }
.options-list li small { color: #666; font-size: 12px; }
