.container_for-switch {
    padding: 2rem;
    font-size: 1.2rem;
    text-align: center;
}

.switch-box {
    display: flex;
    gap: 2rem;
}

.switch-btn {
    display: inline-block;
    width: 4rem; /* ширина переключателя */
    height: 1rem; /* высота переключателя */
    border-radius: 12px; /* радиус скругления */
    background: #bfbfbf; /* цвет фона */
    z-index: 0;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer;
    position: relative;
    transition-duration: 300ms; /* анимация */
}
.switch-btn::after {
    content: "";
    height: 2.5rem; /* высота кнопки */
    width: 2.5rem; /* ширина кнопки */
    border-radius: 18px; /* радиус кнопки */
    background: #fff; /* цвет кнопки */
    top: -0.6rem; /* положение кнопки по вертикали относительно основы */
    left: -0.6rem; /* положение кнопки по горизонтали относительно основы */
    transition-duration: 300ms; /* анимация */
    box-shadow: 0 0 10px 0 #999999; /* тень */
    position: absolute;
    z-index: 1;
}
.switch_on {
    background: #fff;
    box-shadow: inset 0 0 10px 0 #999999; /* тень */
}
.switch_on::after {
    left: 2.5rem;
    background: var(--red);
}

.service-item {
    display: flex;
    width: 100%;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--default-border-color);
    border-left: none;
    border-right: none;
	font-size: 1.2rem;
}

.service-item__name {
    width: 60%;

}

.service-item__price {
    font-size: 1.2rem;
}

.service-item__price_hidden{
    display: none;
}

.container_for_services {
    gap: 1rem;
	width: 80%;
}

.text_type_p {
    padding: 2rem 2rem 1rem 2rem;
}

.pagination-next-button {
    width: 2rem;
    height: 2rem;
    border-radius: 25px;
    background-color: var(--white);
    border: 1px solid var(--default-border-color);
}