

/* Start:/local/templates/burburo/components/bitrix/catalog.smart.filter/drop-catalog/style.css?17459344395256*/
.top-header-sections .toast-close {
	padding: 6px;
	color: var(--blue);
	padding: 6px;
	border-radius: 9px;
	margin-right: 10px;
	z-index: 1;
}

.top-header-sections {
	opacity: 0;
	left: -100%;
	transition: 0.3s opacity ease-out, 0.3s display ease-out allow-discrete,
		transform 0.2s ease-out;
	overflow-x: hidden;
}

.top-header-sections {
	position: fixed;
	display: none;
	z-index: 4;
	width: 100%;
	opacity: 0;
	inset: 0;
	bottom: auto;
	height: 100vh;
	overflow-x: hidden;
	left: -100%;
	right: auto;
}

.top-header-sections.visible {
	display: block;
	transform: translateX(100%);
	opacity: 1;
	z-index: 11;
}

@starting-style {
	.top-header-sections.visible {
		opacity: 0;
		transform: translateX(0);
	}
}

@media (min-width: 720px) {
	.top-header-sections {
		display: none;
		position: absolute;
		overflow: hidden;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		bottom: auto;
		margin: 0 !important;
		height: 84vh;
		overflow-y: auto;
	}

	#topHeadeSectionsBack {
		display: none;
	}

	.top-header-sections.visible {
		transform: unset;
	}

	@starting-style {
		.top-header-sections.visible {
			opacity: 0;
		}
	}
}

@media (min-width: 1024px) {
	.top-header-sections {
		height: auto;
		overflow: visible;
	}
}

.top-header-sections__wrapper {
	display: grid;
	grid-template-columns: max-content 0fr 10fr;
	padding: 40px;
	gap: 30px;
	box-shadow: var(--card-shadow);
	border-radius: 12px;
	background: rgb(255 255 255 / 96%);
	backdrop-filter: blur(12px);
}

.top-header-sections__name {
	color: #152e54c2;
	font-size: 18px;
	margin-bottom: 1em;
}

.top-header-sections__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
}

.top-header-sections__link svg {
	min-width: 13px;
	color: var(--some-gray);
}

.top-header-sections__column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.top-header-sections__tiles {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.top-header-sections__tile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	width: fit-content;
	min-width: 58px;
	position: relative;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	transition: .2s ease;
	overflow: hidden;
}

.top-header-sections__tile:not(.has-image) {
	padding: 10px 12px;
	background: #e8ecf2;
}

@media (hover: hover) {
	.top-header-sections__tile:hover+.top-header-sections__tile-label {
		opacity: 1;
	}
}

.top-header-sections__tiles-list-item {
	position: relative;
}

.top-header-sections__tile-label {
	position: absolute;
	background-color: var(--pure-white);
	width: fit-content;
	white-space: nowrap;
	padding: 8px;
	border-radius: 8px;
	left: 80%;
	bottom: -24px;
	font-size: 13px;
	box-shadow: var(--card-shadow);
	transition: opacity .2s ease-out;
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}

.top-header-sections__tile:hover {
	background: var(--ozone-hover);
}

.top-header-sections__tile picture {
	width: fit-content;
	height: fit-content;
}

.top-header-sections__tile img {
	max-width: 80px;
}

.top-header-sections__color {
	width: 300px;
	height: 100%;
	max-height: 400px;
	background-image: url(/upload/img/gallery/1.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 8px;
	align-items: flex-end;
	display: flex;
	justify-content: center;
	padding: 14px;
	margin-inline: 10px;
}

.sections-color__btn {
	padding: 10px 40px;
	border-radius: 6px 6px 0 0;
	font-size: 14px;
	font-weight: 410;
	border-radius: 6px;
	background: #1d2428ba;
	color: var(--pure-white);
}

.top-header-sections__download {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-left: -9px;
	width: fit-content;
	border-radius: 8px;
	padding: 5px 10px;
	margin-left: -18px;
	margin-top: 23px;
}

.top-header-sections__download-pdf {
	display: flex;
	align-items: center;
	border-radius: 9px;
	width: fit-content;
	padding: 4px 5px;
	gap: 8px;
	font-size: 14px;
}

.top-header-sections__filter {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	grid-template-areas:
		"form color"
		"form color"
		"form color"
		"bold color"
		"purpose purpose";
}

.top-header-sections__filter .top-header-sections__name {
	font-size: 14px;
	font-weight: 600;
}

.top-header-sections__block.forma_h {
	grid-area: form;
}

.top-header-sections__block.color_h {
	grid-area: color;
}

.top-header-sections__block.bold {
	grid-area: bold;
}

.top-header-sections__block.purpose {
	grid-area: purpose;
}

@media screen and (max-width: 1280px) {
	.top-header-sections__filter {
		display: flex;
		flex-wrap: wrap;
	}

	.top-header-sections__color {
		display: none;
	}
}

@media screen and (max-width: 720px) {
	.top-header-sections__wrapper {
		display: flex;
		flex-direction: column;
		padding: 20px;
		padding-bottom: 80px;
		border-radius: 0;
	}

	.top-header-sections__column {
		gap: 0;
	}

	.top-header-sections__filter {
		display: flex;
		flex-direction: column;
	}

	.top-header-sections__color {
		width: 100%;
		height: 200px;
		margin: 0;
	}

	.top-header-sections__name {
		font-size: 24px;
		font-weight: 540;
		margin-bottom: 18px;
	}

	.top-header-sections__color {
		display: flex;
	}

	.top-header-sections__link {
		padding: 10px 0;
	}
}
/* End */


/* Start:/local/templates/burburo/styles.css?174593443914370*/
ul.catalog-sections li a.catalog-sections-card {
	height: 100%;
}

.product-card-details img {
	aspect-ratio: 1.334 / 1;
	object-fit: cover;
	border-radius: 8px;
}

.select-items__picker {
	position: relative;
	width: fit-content;
}

.product-detail__picker {
	position: relative;
}

@media (min-width: 1024px) {
	.product-detail__picker {
		width: 300px;
	}
}

.product-detail__picker-heading {
	border-radius: 12px;
	font-size: 14px;
	padding: 7px 10px;
	padding-inline: 10px 16px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 3;
	align-items: center;
	background: #f0f0f6;
}

.product-detail__picker .accordeon-arrow__svg {
	color: var(--ozone);
	transition: .2s ease;
}

.product-detail__picker-wrapper.active[data-accordeon-wrapper],
.select-items__picker-wrapper.active[data-accordeon-wrapper] {
	z-index: 5;
}

.product-detail__picker-wrapper {
	position: absolute;
	left: 0;
	top: calc(100% + 11px);
	border-radius: 10px;
	width: max-content;
	min-width: 100%;
	padding: 10px 0;
	font-size: 15px;
	background: var(--white);
	box-shadow: var(--block-shadow);
}

.product-detail__picker-content {
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	max-height: 280px;
}

.product-detail__picker-content::-webkit-scrollbar {
	width: 5px;
}

.product-detail__picker-content::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: var(--some-gray);
}

.catalog-top-collection-type-drop-menu__list-item input[type="checkbox"] {
	position: absolute;
	z-index: -2;
}

.product-detail__picker-item[inert],
.select-items__picker-item[inert] {
	opacity: 0.65;
}

.product-detail__picker-item {
	padding: 6px 12px;
	display: inline-grid;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	justify-content: start;
	grid-template-columns: auto 1fr auto;
	width: 100%;
}

.product-detail__picker-item img {
	position: relative;
	width: 80px;
	height: 44px;
	border-radius: 12px;
	overflow: hidden;
}

.select-items__picker-item {
	transition: color 0.3s ease-out, background-color 0.3s ease-out;
	border-radius: 10px;
	cursor: pointer;
}

form:not(.filter) input[type="checkbox"]:checked+.select-items__picker-item {
	background-color: var(--blue);
	color: var(--pure-white);
}

.product-card-details__name {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.products-slider {
	padding: 10px;
	margin-inline: -9px;
}

@media screen and (min-width: 720px) {
	.products-slider {
		padding: 10px 0;
		margin: 0;
		overflow: visible;
	}
}

.products-slider__slide.swiper-slide {
	align-self: stretch;
	height: auto;
}

.products-slider__slide .product-card-details {
	height: 100%;
}

.about-block__water {
	width: 240px;
	height: 266px;
	top: 678px !important;
	right: -30px !important;
}

@media (min-width: 480px) {
	.about-block__water {
		top: 648px !important;
		right: -30px !important;
	}
}

@media (min-width: 720px) {
	.about-block__water {
		width: 444px;
		height: 417px;
		top: 387px !important;
		right: 10px !important;
	}
}

@media (min-width: 1280px) {
	.about-block__water {
		top: 513px !important;
		left: 229px !important;
		right: auto !important;
	}
}

@media (min-width: 1440px) {
	.about-block__water {
		top: 386px !important;
		left: 229px !important;
	}
}

@media (min-width: 1920px) {
	.about-block__water {
		top: 266px !important;
		left: 527px !important;
	}
}

.product-card-details__buy-block .quantity-block,
.product-card .quantity-block {
	height: 44px;
	max-width: 150px;
}

.product-card-details__buy-block .quantity-block .quantity-block__count,
.product-card .quantity-block .quantity-block__count {
	width: 100%;
}

.product-card,
.product-card-details {
	transition: box-shadow 0.3s ease-out;
	border-radius: 10px;
	position: relative;
}

.product-card-details a {
	transition: .2s ease;
}

.product-card-details:has(a.product-card__link:hover) a.product-card__link {
	color: var(--ozone);
}

.page-wrapper table {
	border-collapse: collapse;
}

.page-wrapper table td {
	border: 1px solid var(--dark);
	padding: 5px;
}

.fancybox-custom .fancybox__slide {
	overflow: hidden;
}

.fancybox-custom .fancybox__content {
	--bb: #414244;
	--r: 23px;
	position: relative;
	padding: 50px;
	max-width: 515px;
	width: 100%;
	gap: 40px;
	border-radius: var(--r);
	overflow: hidden;
	z-index: 1;
}

.fancybox-custom .fancybox__content:after {
	content: "";
	position: absolute;
	border-radius: 0 0 0 var(--r);
	width: 60px;
	height: 60px;
	right: -7px;
	top: -5px;
	box-shadow: 20px 20px 0px 2000px var(--white);
	background: linear-gradient(45deg, var(--bb) 38%, #fff0);
	z-index: -2;
}

.popup__b-title {
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 100%;
	font-size: 230px;
	text-wrap-mode: nowrap;
	font-weight: 800;
	color: #f1f2f6;
	z-index: -1;
	background: linear-gradient(to right, transparent, #bdc7d9) center / cover fixed;
	-webkit-text-fill-color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	pointer-events: none;
	user-select: none;
}

.fancybox-custom .fancybox__content .f-button.is-close-btn {
	--wr: 54px;
	--tr: -2px;
	top: var(--tr);
	right: var(--tr);
	opacity: 1;
	border-radius: 71px;
	width: var(--wr);
	overflow: visible;
	height: var(--wr);
}

.fancybox-custom .fancybox__content .f-button.is-close-btn:before {
	content: '';
	position: absolute;
	top: 2px;
	left: -24px;
	transform: scale(1, -1) rotate(270deg);
	--mask: radial-gradient(var(--r) at 100% 0, #0000 98%, #000);
	-webkit-mask: var(--mask);
	mask: var(--mask);
	width: var(--r);
	height: var(--r);
	z-index: 235;
	background: var(--bb);
}

.fancybox-custom .fancybox__content .f-button.is-close-btn:after {
	content: '';
	position: absolute;
	bottom: -26px;
	right: 1px;
	transform: scale(1, -1) rotate(270deg);
	--mask: radial-gradient(var(--r) at 100% 0, #0000 98%, #000);
	-webkit-mask: var(--mask);
	mask: var(--mask);
	width: var(--r);
	height: var(--r);
	z-index: 235;
	background: var(--bb);
}

.fancybox-custom .fancybox__content .f-button.is-close-btn svg {
	stroke-width: 2.5px;
	stroke: #fff;
	padding: 2px;
	margin-right: 5px;
	margin-top: 5px;
}

.fancybox-custom .fancybox__content .f-button.is-close-btn:hover {
	background: none;
}

.fancybox-custom .fancybox__content .btn {
	width: 250px;
	height: 48px;
}

@media screen and (max-width: 720px) {
	.fancybox-custom .fancybox__content {
		--r: 0;
		height: 100%;
		padding: 50px 30px 0;
		background-color: var(--white);
	}

	.fancybox-custom .fancybox__content:after {
		background: unset;
	}

	.fancybox-custom .fancybox__content .f-button.is-close-btn svg {
		--f-button-svg-width: 24px;
		--f-button-svg-height: 24px;
		stroke: var(--ozone);
	}
}

.g-recaptcha {
	overflow: scroll;
}

.fancybox-custom h2 {
	font-weight: 700;
	color: var(--blue);
	font-size: 22px;
}

@media (min-width: 480px) {
	.fancybox-custom h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}
}

.fancybox-custom__form>*:not(:last-child) {
	margin-bottom: 20px;
}

.terms-line {
	font-size: 14px;
	font-weight: 300;
	color: var(--blue);
}

.fancybox-custom__button-center {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.fancybox-custom__mega {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 14px;
}

@media (min-width: 480px) {
	.fancybox-custom__mega {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
	}
}

.fancybox-custom__min p {
	color: var(--blue);
	font-weight: 400;
	font-size: 15px;
	margin-bottom: 5px;
}

.fancybox-custom__min button {
	color: var(--ozone);
}

.product-card-table__deleted-hide {
	color: var(--red) !important;
}

.product-card-table__deleted-undo {
	color: var(--ozone) !important;
}

.page-header-burger__nav .page-header-nav__li-content {
	width: fit-content;
	margin: auto;
}

@media (min-width: 1024px) {
	.page-header-burger__nav .page-header-nav__li-content span {
		text-wrap: nowrap;
	}

	.page-header-burger__nav .page-header-nav__li-content {
		margin: 0;
	}
}

@media (min-width: 1440px) {
	.page-header-burger__nav .page-header-nav__li-content span {
		text-wrap: auto;
	}
}

@media (min-width: 1920px) {
	.product-card .quantity-block {
		grid-template-columns: 1fr 100px 1fr;
	}

	.product-card .quantity-block__count-wrapper {
		align-items: center;
		justify-content: center;
	}

	.product-card .quantity-block__count {
		width: 55px;
	}

	.product-card__buy-block {
		width: 78%;
		/* margin : auto; */
	}
}

.reviews-slider__slide .reviews-card__comment {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
}

.special-offers-slides__name {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.special-offers-content__pictures img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.product-detail__picker-block {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.product-detail__picker-img {
	position: relative;
	width: 80px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
}

.product-detail__picker-block img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 100%;
}

@media (min-width: 1280px) {
	.special-offers-content__wrapper .style-h1 {
		font-size: 45px;
	}
}

@media (min-width: 1440px) {
	.special-offers-content__wrapper .style-h1 {
		font-size: 50px;
	}
}

@media (min-width: 1920px) {
	.special-offers-content__wrapper .style-h1 {
		font-size: 60px;
	}
}

.dealler-card {
	display: flex;
	gap: 8px;
	flex-direction: column;
	background-color: var(--cream-white);
	padding: 20px;
	border-radius: 10px;
	color: var(--blue);
	font-size: 24px;
	font-weight: 500;
	width: 100%;
}

.deallers__list {
	max-height: 806px;
	overflow-y: auto;
	padding-right: 10px;
}

.deallers__list::-webkit-scrollbar {
	width: 15px;
	height: 0px;
}

.deallers__list::-webkit-scrollbar-thumb {
	background: var(--some-gray);
	border-radius: 10px;
}

.deallers__list::-webkit-scrollbar-track {
	background: var(--somber-sky);
	border-radius: 10px;
}

.deallers__list .dealler-card+.dealler-card {
	margin-top: 10px;
}

.dealler-card * {
	color: inherit;
	line-height: 1.3;
}

.dealler-card>*:nth-child(2) {
	font-size: 0.8333em;
	font-weight: 300;
}

.deallers__select {
	margin-bottom: 40px;
}

.deallers__map {
	height: 394px;
}

@media (min-width: 480px) {
	.deallers__list {
		max-height: 702px;
	}

	.deallers__map {
		height: 540px;
	}

	.deallers__select {
		margin-bottom: 30px;
	}
}

@media (min-width: 720px) {
	.deallers__list {
		max-height: 598px;
	}

	.deallers__map {
		height: 811px;
	}

	.deallers__select {
		margin-bottom: 40px;
	}
}

@media (min-width: 1024px) {
	.deallers__list {
		max-height: none;
		height: 702px;
	}

	.deallers__map {
		height: auto;
	}

	.deallers__select {
		margin-bottom: 0;
	}

	.deallers {
		display: grid;
		grid-template-columns: auto 565px;
		gap: 30px;
	}
}

@media (min-width: 1280px) {
	.deallers {
		grid-template-columns: 486px auto;
	}
}

.gradient-background {
	background: linear-gradient(173deg, #152e548f, #7c99ff96, #bdc6d96e);
	background-size: 180% 180%;
	animation: gradient-animation 6s ease infinite;
}

@keyframes gradient-animation {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.ymap-custom-cluster {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: var(--blue);
	font-size: 18px;
	color: var(--pure-white);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.deallers__selector-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.deallers__selector-title {
	color: var(--blue);
	font-size: 20px;
	font-weight: 500;
}

.v-field--variant-outlined.v-field--focused .v-field__outline {
	/* --v-field-border-width: 0 !important; */
	--v-field-border-width: 1px;
	--v-field-border-opacity: 0.38;
}

.form-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.form-inner__fields {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

@media (min-width: 1280px) {
	.form-inner__fields {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: 100%;
		gap: 30px;
	}

	.form-inner__fields>*:last-child:nth-child(2n + 1) {
		grid-column-start: 1;
		grid-column-end: 3;
	}
}

.catalog-top-collection-type-drop-menu {
	position: absolute;
	border-radius: 10px;
	overflow: hidden;
	left: 0;
	width: 100%;
	background-color: var(--somber-sky);
	z-index: 4;
	transition: opacity 0.3s ease;
	margin-top: 4px;
}

.catalog-top-collection-type-drop-menu__list {
	display: grid;
	padding: 30px 30px;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(439px, 1fr));
	overflow-x: hidden;
	overflow-y: auto;
	max-height: 500px;
}

form:not(.filter) input[type="checkbox"]:checked+label.select-items__picker-item {
	background-color: var(--blue);
	color: var(--white);
	overflow: hidden;
}

.catalog-top-collection-type-drop-menu__list-item label {
	padding: 20px 30px;
	display: flex;
	gap: 36px;
	align-items: center;
	font-size: 24px;
	font-weight: 600;
	transition: color 0.3s ease-out, background-color 0.3s ease-out;
}

.catalog-top-collection-type-drop-menu__list-item label img {
	width: 126px;
	height: 84px;
}

@media (max-width: 479px) {
	.catalog-top-collection-type-drop-menu__list {
		padding: 5px 15px;
		display: flex;
		flex-direction: column;
		max-height: 250px;
	}

	.catalog-top-collection-type-drop-menu__list-item label {
		padding: 8px 16px;
		gap: 10px;
		font-size: 18px;
	}

	.catalog-top-collection-type-drop-menu__list-item label img {
		width: calc(126px / 1.4);
		height: calc(84px / 1.4);
	}
}

.products-wrapper-details {
	transition: opacity 0.3s ease-out;
}

.inpt-box-group {
	display: flex;
	gap: 12px;
}

.toggler-group {
	display: flex;
	flex-wrap: nowrap;
	background-color: #d9deec45;
	gap: 20px;
	padding: 4px;
	border-radius: 9px;
}

.toggler-group__item input[type="radio"] {
	position: absolute;
	z-index: -10;
}

.toggler-group__item {
	flex: 1;
}

.toggler-group__item label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--blue);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	padding: 13px 0;
	border-radius: 9px;
	transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.toggler-group__item input[type="radio"]:checked+label {
	background: var(--pure-white);
}
/* End */
/* /local/templates/burburo/components/bitrix/catalog.smart.filter/drop-catalog/style.css?17459344395256 */
/* /local/templates/burburo/styles.css?174593443914370 */
