.input_text_front{
    background:linear-gradient(to right, #249867 0%, #249867 0%, #E4E4E4 0%, #E4E4E4 100%);
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--color-semantic-foreground-accent);
    padding: 5px;
    padding-left: 15px;

}


/* Base Styles */
*,
*:before,
*:after {
    box-sizing: border-box;
}




.range-slider {
    margin: 60px 0 0 0;
}

/* Range Slider */
.range-slider {
    width: 100%;
}

.range-slider__range {
    -webkit-appearance: none;
    width: calc(100%);
    height: 10px;
    border-radius: 5px;

    background: linear-gradient(to right, #1abc9c 0%, #1abc9c var(--progress), #d7dcdf var(--progress), #d7dcdf 100%);
    outline: none;
    padding: 0;
    margin: 0;
}

/* Range Handle for Webkit Browsers */
.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: green;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-webkit-slider-thumb {
    background: #1abc9c;
}

/* Range Handle for Firefox */
.range-slider__range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 50%;
    background: #2c3e50;
    cursor: pointer;
    transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
    background: #1abc9c;
}

.range-slider__range:active::-moz-range-thumb {
    background: #1abc9c;
}

/* Focus State */
.range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}

/* Firefox Overrides */
::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}

/* Range Label */
/*.range-slider__value {*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    width: 100px;*/
/*    color: #fff;*/
/*    line-height: 20px;*/
/*    text-align: center;*/
/*    border-radius: 3px;*/
/*    background: #2c3e50;*/
/*    padding: 5px 10px;*/
/*    margin-left: 8px;*/
/*}*/

.range-slider__value:after {

    position: absolute;
    top: 8px;
    left: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-right: 7px solid #2c3e50;
    border-bottom: 7px solid transparent;
    content: "";
    font-size: 20px;
}


#submit_form{
    margin: 10px 0;
}



.reviews-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.review {
    display: none; /* Скрываем все отзывы */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
}

/*.review.active {*/
/*    display: block; !* Показываем только активный отзыв *!*/
/*}*/

.controls {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}









/*слайдер*/
.reviews-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Плавный переход */
}

.review {
    display: none; /* Скрываем все отзывы */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
}

.review.active {
    display: block; /* Показываем только активный отзыв */
}

.controls {
    margin-top: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.review {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}

.review.active {
    opacity: 1;
}


/* Скрываем ответы по умолчанию */
.ease-cubic-close {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* Показываем ответы */
.ease-cubic-open {
    max-height: 500px; /* Максимальная высота для открытия */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}


/*Отзывы*/



.testimonial-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative; /* For positioning arrows */
}

.testimonial-slider {
    position: relative; /* For positioning arrows */
    overflow: hidden;
}

.testimonial-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* 3 testimonials wide on larger screens */
}

.testimonial-item {
    width: 33.33%;
    padding: 10px;
    box-sizing: border-box;
    min-height: 150px;
    border: 1px solid #ddd;
    text-align: center; /* Center text */
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


/* Mobile Styles - Corrected */
@media (max-width: 768px) {
    .testimonial-items {
        width: 100%; /* Only one testimonial wide on mobile */
    }
    .testimonial-item {
        width: 100%;
    }
    .prev-btn, .next-btn {
        display: none; /* Hide arrows on mobile - swipe only */
    }
}



#cta-banner-button {
    background-color: white; /* Замените на ваш основной цвет */
    color: black; /* Замените на ваш цвет текста */
    border: none; /* Убираем границу, если она не нужна */
    cursor: pointer; /* Добавляем указатель руки при наведении */
    transition: background-color 0.3s ease; /* Плавный переход для hover */
}

#cta-banner-button:hover {
    background-color: #09936f; /* Цвет фона при наведении */
}

