

/* Start:/local/templates/sever/components/bitrix/catalog.section/calc-form-multi/style.css?17866175294335*/
.calc-form__form .select:before {
	display: none;
}

.form-group .nice-select {
	width: 100%;
}

.form-group .nice-select .option:before {
	display: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}


/* ==========================================================================
   tz6, 13.08.2026 — кастомные выпадающие списки калькулятора.
   Поле повторяет дизайн-систему сайта (рамка #7CBE69, радиус 6, шрифт
   500 16/24, цвет #1b2b45); панель списка своя — одинакова во всех
   браузерах. Логика — в script.js (блок tz6 внизу файла).
   ========================================================================== */

/* нативный select прячем, но оставляем в DOM — на нём вся логика каскада */
.select.csel select.my-sel {
    display: none;
}

.csel__toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 37px 16px 23px;
    background: #fff;
    border: 0.8px solid #7CBE69;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1b2b45;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.csel__toggle:hover {
    border-color: #43812F;
}

.csel__toggle:focus-visible {
    outline: 2px solid #7CBE69;
    outline-offset: 2px;
}

/* стрелка обёртки: поворот при раскрытии */
.select.csel-open::after {
    transform: rotate(180deg);
}

.csel__drop {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    border: 1px solid #e2e8e0;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(21, 33, 26, .18);
    overflow: hidden;
}

.select.csel-open .csel__drop {
    display: block;
}

.select.csel-up .csel__drop {
    top: auto;
    bottom: calc(100% + 6px);
}

/* тройной класс в селекторе: тема задаёт инпутам формы
   `.form-group input[type="text"] { width:100%; padding:15px }` — этот
   селектор специфичнее одиночного .csel__search и растягивал поле поиска
   за край панели (обрезалось overflow'ом). */
.select.csel .csel__drop .csel__search {
    display: block;
    width: calc(100% - 20px);
    margin: 10px 10px 4px;
    padding: 10px 12px;
    border: 1px solid #dfe5ea;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.4;
    color: #1b2b45;
}

.select.csel .csel__drop .csel__search:focus {
    outline: none;
    border-color: #7CBE69;
}

.csel__list {
    max-height: min(280px, 46vh);
    overflow-y: auto;
    padding: 6px 0;
}

.csel__item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 23px;
    background: none;
    border: 0;
    font-size: 15px;
    line-height: 1.4;
    color: #1b2b45;
    cursor: pointer;
}

.csel__item:hover,
.csel__item:focus-visible {
    background: #EAF2E4;
    outline: none;
}

.csel__item.is-selected {
    background: #f2f8ee;
    color: #43812F;
    font-weight: 600;
}

.csel__empty {
    padding: 12px 23px;
    color: #66756B;
    font-size: 15px;
}

/* ==========================================================================
   tz6 — крестик модалки калькулятора: внутри границ окна, с отступом от
   угла, область нажатия 40×40 (было 25×25 вплотную к краю).
   ========================================================================== */
#form-calc .modal-content {
    position: relative;
}

#form-calc .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    background-size: 14px;
    border-radius: 8px;
    opacity: .55;
    z-index: 5;
}

#form-calc .btn-close:hover,
#form-calc .btn-close:focus {
    opacity: 1;
    background-color: #f2f4f7;
}

/* End */


/* Start:/local/templates/sever/components/bitrix/system.pagenavigation/.default/style.css?16635865282469*/
.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	display: inline-block;
	font-size: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 8px;
}
.bx-pagination .bx-pagination-container ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: var(--MainBlack);
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	border-radius: 50%;
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
       -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	 -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    		transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}
.bx-pagination .bx-pagination-container ul li a {
	display: block;
	text-decoration: none;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span {
	color: var(--MainGreen);
	/* border-color: #e1d5ec; */
	border-color: rgba(225, 213, 236, .5);
}
.bx-pagination .bx-pagination-container ul li.bx-active span { cursor: default }
.bx-pagination .bx-pagination-container ul li.bx-active span,
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span {
	background-color: #f8f5fa;
	color: var(--MainGreen);
	border-color: #f8f5fa;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span { background: #f8f5fa url('/local/templates/sever/components/bitrix/system.pagenavigation/.default/images/next-b.svg') center no-repeat }
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span { transform: rotate(180deg) }
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span { background: #fff url('/local/templates/sever/components/bitrix/system.pagenavigation/.default/images/next-g.svg') center no-repeat }
/* End */
/* /local/templates/sever/components/bitrix/catalog.section/calc-form-multi/style.css?17866175294335 */
/* /local/templates/sever/components/bitrix/system.pagenavigation/.default/style.css?16635865282469 */
