

/* Start:/library/style.css?1780092088782*/
.scs-library-page {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 80px;
}

@media (max-width: 991px) {
	.scs-library-page {
		gap: 60px;
	}
}

@media (max-width: 575px) {
	.scs-library-page {
		gap: 40px;
	}
}

.scs-library-page-title {
	font-family: Manrope;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.2;
	color: var(--scs-main-text);
	margin: 0 0 32px;
}

.scs-library-page-title-h3 {
	font-family: Manrope;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	color: var(--scs-main-text);
	margin: 0 0 32px;
}

@media (max-width: 991px) {
	.scs-library-page-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.scs-library-page-title {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.scs-library-page-title {
		font-size: 28px;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/button.css?17800827711678*/
.scs-btn {
	border-radius: 16px;
	padding: 8px 32px;
	box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.04);
	background: var(--scs-accent-primary);
	color: var(--scs-bg-default);
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	border: none;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	font-family: Manrope;
	transition: background-color .25s ease-in-out,
				color .25s ease-in-out;
}
.scs-btn--small {
	padding: 8px 16px;
	height: 40px;
	border-radius: 12px;
}
.scs-btn:hover {
	background: var(--scs-soft-accent);
	color: var(--scs-main-text);
}
.scs-btn:active {
	background: var(--scs-accent-hover);
	color: var(--scs-bg-default);
}

.scs-btn--accent {
	background: var(--scs-soft-accent);
	color: var(--scs-main-text);
}
.scs-btn--accent:hover {
	background: var(--scs-accent-primary);
	color: var(--scs-main-text);
}
.scs-btn--accent:active {
	background: var(--scs-accent-hover);
	color: var(--scs-main-text);
}

.scs-btn--green {
	background: var(--scs-green);
	color: var(--scs-bg-default);
}
.scs-btn--green:hover {
	background: var(--scs-green-light);
	color: var(--scs-bg-default);
}
.scs-btn--green:active {
	background: var(--scs-green);
	color: var(--scs-main-text);
}

.scs-btn--gray {
	background: var(--scs-bg-soft);
	color: var(--scs-grey);
	box-shadow: none;
}
.scs-btn--gray:hover {
	background: var(--scs-soft-accent);
	color: var(--scs-main-text);
}
.scs-btn--gray:active {
	background: var(--scs-accent-hover);
	color: var(--scs-bg-default);
}

.scs-btn:disabled {
	background: var(--scs-bg-soft);
	color: var(--scs-grey);
	box-shadow: none;
}
/* End */


/* Start:/library/blocks/banner/style.css?17800778272012*/
body:has(.scs-library-banner) .scs-page-top-info__title {
	display: none
}

.scs-library-banner {
	line-height: 1.2;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	padding: 20px;
	min-height: 700px;
}
.scs-library-banner img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}
.scs-library-banner__content {
	border-radius: 16px;
	padding: 20px 24px;
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 30px;
	flex-direction: column;
	max-width: 608px;
	width: 100%;
	min-height: 100%;
}
.scs-library-banner__content .scs-btn {
	margin-top: auto;
	align-self: flex-start;
}
.scs-library-banner__h1 {
	font-family: Manrope;
	font-weight: 700;
	font-size: 64px;
	color: var(--scs-main-text);
	margin: 0;
}
.scs-library-banner__text {
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	color: var(--scs-main-text);
}

@media (max-width: 1599px) {
	.scs-library-banner__h1 {
		font-size: 48px;
	}
	.scs-library-banner__text {
		font-size: 18px;
		max-width: 100%;
	}
}

@media (max-width: 1199px) {
	.scs-library-banner {
		padding-bottom: 0;
		display: grid;
		align-items: flex-start;
		gap: 16px;
		min-height: auto;
		background: linear-gradient(90deg, #e5e3dc, #bfbbb0);
	}
	.scs-library-banner img {
		position: static;
		order: 99;
		width: calc(100% + 40px);
		height: auto;
		margin: 0 -20px;
		border-radius: 16px;
		max-width: none;
	}
	.scs-library-banner__content {
		max-width: none;
	}
}

@media (max-width: 991px) {
	.scs-library-banner__content {
		flex-direction: column;
		align-items: normal;
	}
	.scs-library-banner__h1 {
		display: none;
	}

	body:has(.scs-library-banner) .scs-page-top-info__title {
		display: block
	}
}

@media (max-width: 575px) {
	.scs-library-banner {
		padding: 16px 16px 0;
	}
	.scs-library-banner__content {
		padding: 16px;
	}
	.scs-library-banner__text {
		font-size: 16px;
	}
	.scs-library-banner__content .scs-btn {
		max-height: 44px;
	}
}
/* End */


/* Start:/library/blocks/role/style.css?17803325533608*/
.scs-role-item {
  border: 3px solid var(--scs-light-grey);
  border-radius: 16px;
  padding: 24px;
  line-height: 1.2;
  background: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  color: var(--scs-main-text);
  transition: background-color .25s ease-in-out,
        border-color .25s ease-in-out;
}

.scs-role-item__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px 16px;
  transition: color .25s ease-in-out;
}

.scs-role-item__title svg {
  width: 70px;
  height: 71px;
  flex-shrink: 0;
}

.scs-role-item__title svg path[stroke-width] {
  transition: stroke .25s ease-in-out;
}

.scs-role-item__text {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px 16px;
  transition: color .25s ease-in-out;
}

.scs-role-item__text > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.scs-role-item__text > div > * {
  margin: 0;
}

.scs-role-item__text > .scs-btn-icon {
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: transform .25s ease-in-out,
        background-color .25s ease-in-out,
        border-color .25s ease-in-out;
}

.scs-role-item__text > .scs-btn-icon svg path[stroke-width] {
  transition: stroke .25s ease-in-out;
}

/* ACTIVE STATE */

.scs-role-item--active {
  border-color: var(--scs-soft-accent);
  background: var(--scs-bg-alt);
}

.scs-role-item--active .scs-role-item__title {
  color: var(--scs-accent-primary);
}

.scs-role-item--active .scs-role-item__title svg path[stroke-width] {
  stroke: var(--scs-accent-primary);
}

.scs-role-item--active .scs-role-item__text > .scs-btn-icon {
  transform: rotate(180deg);
  background: transparent;
  border-color: var(--scs-accent-hover);
}

.scs-role-item--active .scs-role-item__text > .scs-btn-icon svg path[stroke-width] {
  stroke: var(--scs-accent-hover);
}

/* ===== GRID ===== */

.scs-role-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* 2 колонки */
@media (max-width: 1199px) {
  .scs-role-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 колонка */
@media (max-width: 767px) {
  .scs-role-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* центрирование последней карточки, если она одна в строке */
@media (max-width: 1199px) {
  .scs-role-list .scs-role-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 420px;
    width: 100%;
  }
}

/* TEXT */

.scs-role-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}

/* DETAIL */

.scs-role-detail {
  display: none;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.scs-role-detail--active {
  display: flex;
}

.scs-role-detail > * {
  margin: 0;
}

/* BOTTOM BLOCK */

.scs-role-bottom-block {
  border-radius: 16px;
  padding: 40px;
  background: var(--scs-bg-alt);
  display: flex;
  gap: 40px;
  align-items: center;
}

.scs-role-bottom-block svg {
  flex-shrink: 0;
}

.scs-role-bottom-block > div {
  max-width: 650px;
}

.scs-role-bottom-block .scs-btn {
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 991px) {
  .scs-role-bottom-block {
    padding: 24px;
    gap: 24px;
    flex-wrap: wrap;
  }

  .scs-role-bottom-block > div {
    flex-basis: min-content;
    flex-grow: 1;
  }

  .scs-role-bottom-block .scs-btn {
    flex-basis: 100%;
  }
}
/* End */


/* Start:/library/blocks/role-design/style.css?17801690361747*/
.scs-role-design-advantages {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}
.scs-role-design-advantages-item {
	border-radius: 16px;
	padding: 24px;
	line-height: 1.2;
	/*border: 1px solid var(--scs-grey);*/
	background: var(--scs-bg-alt);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.scs-role-design-advantages-item > img {
	object-fit: scale-down;
	object-position: center;
	width: 100%;
	height: 100%;
}
.scs-role-design-advantages-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.scs-role-design-advantages-item__title {
	font-weight: 700;
	font-size: 20px;
}
.scs-role-design-advantages-item__text {
	font-weight: 500;
	font-size: 18px;
	color: var(--scs-secondary-text);
}
.scs-role-design-advantages-item__icons {
	margin-top: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}
.scs-role-design-advantages-item__icons > div {
	font-weight: 400;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.scs-role-design-advantages-item__icons svg{

}

@media (max-width: 1599px) {
	.scs-role-design-advantages-item {
		display: flex;
		flex-direction: column;
	}
	.scs-role-design-advantages-item > img {
		order: -1;
		aspect-ratio: 16 / 9;
		height: auto;
		max-height: 300px;
	}
	.scs-role-design-advantages-item__content {
		flex-grow: 1;
	}
}

@media (max-width: 991px) {
	.scs-role-design-advantages {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 575px) {
	.scs-role-design-advantages-item__icons {
		grid-template-columns: minmax(0, 1fr);
	}
	.scs-role-design-advantages-item__icons > div {
		flex-direction: row;
		align-items: center;
	}
}
/* End */


/* Start:/library/blocks/role-buyer/style.css?17801707841201*/
.scs-role-buyer-advantages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.scs-role-buyer-advantages-item {
	line-height: 1.2;
	border-radius: 16px;
	padding: 16px;
	border: 1px solid var(--scs-grey);
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	gap: 16px;
}
.scs-role-buyer-advantages-item > img {
	object-fit: scale-down;
	object-position: center;
	width: 100%;
	height: 100%;
}
.scs-role-buyer-advantages-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.scs-role-buyer-advantages-item__title {
	font-weight: 700;
	font-size: 20px;
}
.scs-role-buyer-advantages-item__text {
	font-weight: 500;
	font-size: 18px;
	color: var(--scs-secondary-text);
}

@media (max-width: 1399px) {
	.scs-role-buyer-advantages {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.scs-role-buyer-advantages {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 575px) {
	.scs-role-buyer-advantages-item {
		display: flex;
		flex-direction: column;
	}
	.scs-role-buyer-advantages-item > img {
		aspect-ratio: 16 / 9;
		height: auto;
		max-height: 300px;
	}
}
/* End */


/* Start:/library/blocks/role-brand/style.css?17801716651202*/
.scs-role-brand-advantages {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
}

.scs-role-brand-advantages-item {
	line-height: 1.2;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid var(--scs-grey);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
}
.scs-role-brand-advantages-item > img {
	object-fit: scale-down;
	object-position: center;
	width: 100%;
	aspect-ratio: 329 / 269;
}
.scs-role-brand-advantages-item__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.scs-role-brand-advantages-item__title {
	font-weight: 700;
	font-size: 20px;
}
.scs-role-brand-advantages-item__text {
	font-weight: 500;
	font-size: 18px;
	color: var(--scs-secondary-text);
}

@media (max-width: 1199px) {
	.scs-role-brand-advantages {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.scs-role-brand-advantages {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.scs-role-brand-advantages {
		grid-template-columns: minmax(0, 1fr);
	}

	.scs-role-brand-advantages-item > img {
		aspect-ratio: 16 / 9;
		height: auto;
		max-height: 300px;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/card-14.css?1764874879596*/
.card-14 {
	line-height: 1.2;
	text-align: center;
	font-weight: 500;
	font-size: 18px;
	color: var(--scs-secondary-text);
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
}
.card-14__img {
	aspect-ratio: 1 / 1;
	max-height: 380px;
	max-width: 100%;
	border-radius: 16px;
}
.card-14__img--big {
	max-height: 600px;
}
.card-14__name {
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--scs-accent-primary);
	margin-top: 8px;
}
.card-14__name--big {
	font-size: 28px;
}

@media (max-width: 767px) {
	.card-14__name--big {
		font-size: 24px;
	}
}
/* End */


/* Start:/library/blocks/design/style.css?1780331006339*/
.scs-library-design-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px 16px;
}

@media (max-width: 900px) {
	.scs-library-design-grid .card-14:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 400px;
		width: 100%;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/custom/js/owl.carousel/owl.carousel.min.css?17627628673351*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/local/templates/kubaturamall/custom/js/owl.carousel/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* End */


/* Start:/library/blocks/gallery/style.css?17800894541443*/
.scs-gallery-carousel__item {
	--scs-count: 2.5;

	aspect-ratio: 4 / 3;
	border-radius: 16px;
	overflow: hidden;
	width: calc(100vw / var(--scs-count) - 40px);
}
.scs-gallery-carousel__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 1199px) {
	.scs-gallery-carousel__item {
		--scs-count: 1.5;
	}
}

@media (max-width: 575px) {
	.scs-gallery-carousel__item {
		--scs-count: 1.1;
	}
}

body:has(.scs-gallery-carousel),
html:has(.scs-gallery-carousel) {
	overflow-x: hidden;
}
.scs-gallery-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.scs-gallery-carousel.owl-carousel .owl-nav {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}
.scs-gallery-carousel.owl-carousel .owl-nav button.owl-prev,
.scs-gallery-carousel.owl-carousel .owl-nav button.owl-next {
	width: 56px;
	height: 56px;
	background: rgba(245, 245, 245, 0.9);
	border-radius: 70px;
	transition: background-color .25s ease-out;
}

@media (max-width: 991px) {
	.scs-gallery-carousel.owl-carousel .owl-nav {
		margin-top: 24px;
	}
}

@media (max-width: 575px) {
	.scs-gallery-carousel.owl-carousel .owl-nav {
		margin-top: 16px;
	}
	.scs-gallery-carousel.owl-carousel .owl-nav button.owl-prev,
	.scs-gallery-carousel.owl-carousel .owl-nav button.owl-next {
		width: 44px;
		height: 44px;
	}
	.scs-gallery-carousel.owl-carousel .owl-nav button svg {
		width: 60%;
		height: 60%;
	}
}
/* End */


/* Start:/library/blocks/steps/style.css?17803369291956*/
.scs-library-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 160px;
}

/* 3 → 2 колонки */
@media (max-width: 1199px) {
	.scs-library-steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* центрирование последнего элемента ТОЛЬКО на 2 колонках */
@media (max-width: 1199px) and (min-width: 768px) {
	.scs-library-steps-grid .scs-library-steps-item:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 520px;
		width: 100%;
	}
}

/* мобилка: строго 1 колонка, без центрирования хака */
@media (max-width: 767px) {
	.scs-library-steps-grid {
		grid-template-columns: 1fr;
	}
}

.scs-library-steps-item {
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.scs-library-steps-item__number {
	font-family: Manrope;
	font-weight: 700;
	font-size: 80px;
	background-color: #e7e5e5;
	color: transparent;
	text-shadow: 0px 4px 4px rgba(255, 255, 255, 0.5);
	background-clip: text;
}

.scs-library-steps-item__content {
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
	color: var(--scs-main-text);
	border-radius: 16px;
	padding: 24px;
	box-shadow: inset 4px 4px 10px 0 rgba(101, 108, 120, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
	height: 100%;
}

.scs-library-steps-item__title {
	font-family: Manrope;
	font-weight: 700;
	font-size: 32px;
	text-transform: none;
	color: var(--scs-accent-primary);
}

@media (max-width: 1599px) {
	.scs-library-steps-grid {
		gap: 24px 80px;
	}

	.scs-library-steps-item__title {
		font-size: 28px;
	}
}

@media (max-width: 1399px) {
	.scs-library-steps-grid {
		gap: 24px 16px;
	}
}

@media (max-width: 575px) {
	.scs-library-steps-item__title {
		font-size: 24px;
	}

	.scs-library-steps-item__content {
		font-size: 14px;
		padding: 16px;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/components/bitrix/catalog.section.list/scs-sections-library-list/style.css?178017736975*/
.scs-library-sections-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
/* End */


/* Start:/library/blocks/faq/style.css?17800894901400*/
.scs-library-faq-block {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
	gap: 20px;
}
.scs-library-faq-block__img {
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	position: relative;
}
.scs-library-faq-block__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 991px) {
	.scs-library-faq-block {
		grid-template-columns: minmax(0, 1fr);
	}
	.scs-library-faq-block__img {
		height: auto;
		aspect-ratio: 16 / 9;
	}
	.scs-library-faq-block__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: static;
	}
}

.scs-library-faq {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.scs-library-faq-item {
	line-height: 1.2;
}
.scs-library-faq-item summary {
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 16px;
}
.scs-library-faq-item summary > div {
	flex-grow: 1;
}
.scs-library-faq-item summary .scs-btn-icon {
	flex-shrink: 0;
	transform: rotate(180deg);
	transition: transform .25s ease-in-out;
}
.scs-library-faq-item__content {
	font-size: 18px;
	padding: 8px 16px 16px;
}
.scs-library-faq-item:open summary .scs-btn-icon {
	transform: rotate(0);
}

@media (max-width: 575px) {
	.scs-library-faq-item summary,
	.scs-library-faq-item__content {
		padding: 8px 0;
	}
}

/* End */


/* Start:/library/blocks/feedback/style.css?1780091324904*/
.scs-feedback-grid {
	line-height: 1.2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 20px;
}
.scs-feedback-grid__content {
	border-radius: 16px;
	padding: 32px 40px 40px;
	background: var(--scs-bg-additional);
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 18px;
}
.scs-feedback-grid__content > * {
	margin: 0;
}
.scs-feedback-grid__content .scs-label a {
	color: var(--scs-main-text);
}
.scs-feedback-grid__form {
	border: 1px solid var(--scs-bg-soft);
	border-radius: 16px;
	padding: 40px;
	background: var(--scs-bg-default);
	display: flex;
	align-items: center;
}

@media (max-width: 1399px) {
	.scs-feedback-grid__form,
	.scs-feedback-grid__content {
		padding: 24px;
	}
}

@media (max-width: 1199px) {
	.scs-feedback-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.scs-feedback-grid__form,
	.scs-feedback-grid__content {
		padding: 16px;
	}
}
/* End */


/* Start:/library/blocks/form/style.css?1780091355846*/
.scs-feedback-form {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	color: var(--scs-main-text);
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}
.scs-feedback-form__title {
	font-family: Manrope;
	font-weight: 600;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--scs-accent-primary);
}
.scs-feedback-form > * {
	margin: 0;
}

.scs-feedback-form-select-them {
	margin-bottom: -8px;
}

.scs-feedback-form-block-them {
	display: none;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}
.scs-feedback-form-block-them  > * {
	margin: 0;
}
.scs-feedback-form-block-them--active {
	display: flex;
}

@media (max-width: 575px) {
	.scs-feedback-form,
	.scs-feedback-form-block-them {
		gap: 16px;
	}
	.scs-feedback-form__title {
		font-size: 20px;
	}

	.scs-feedback-form-select-them {
		margin-bottom: 0;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/components/bitrix/form.result.new/scs-form/style.css?1762762867940*/
div[id^="comp_"] form:has(.scs-feedback-form-grid) {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.scs-feedback-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.scs-feedback-form-grid__item--full {
	grid-column: 1 / -1;
}

div[id^="comp_"] form:has(.scs-feedback-form-grid) .scs-btn {
	max-width: 300px;
}

.scs-form-result {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
	text-align: center;
	color: var(--scs-main-text);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
}
.scs-form-result > * {
	margin: 0;
}
.scs-form-result > h2 {
	font-family: Manrope;
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 575px) {
	div[id^="comp_"] form:has(.scs-feedback-form-grid) {
		gap: 16px;
	}

	div[id^="comp_"] form:has(.scs-feedback-form-grid) .scs-btn {
		max-width: 100%;
	}

	.scs-feedback-form-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/input.css?1762762867379*/
.scs-input {
	border-radius: 16px;
	padding: 8px 24px;
	width: 100%;
	height: 52px;
	background: var(--scs-bg-soft);
	color: var(--scs-main-text);
	outline: none;
	border: 1px solid transparent;
	transition: border-color .25s ease-out;
}
.scs-input::placeholder {
	color: var(--scs-disabled-text);
}
.scs-input:not(:placeholder-shown):valid {
	border-color: var(--scs-success);
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/input-date.css?17627628672509*/
.scs-input-date {
	position: relative;
}
.scs-input-date summary {
	border-radius: 16px;
	padding: 8px 24px;
	width: 100%;
	height: 52px;
	background: var(--scs-bg-soft);
	color: var(--scs-disabled-text);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	border: 1px solid transparent;
	transition: border-color .25s ease-out;
	cursor: pointer;
}
.scs-input-date summary svg {
	flex-shrink: 0;
}
.scs-input-date input {
	display: none;
}
.scs-input-date--selected summary {
	border-color: var(--scs-success);
	color: var(--scs-main-text);
}
.scs-input-date__content {
	border-radius: 16px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12), 0 4px 12px 0 rgba(0, 0, 0, 0.12);
	background: var(--scs-bg-soft);
	padding: 16px;
	font-family: Manrope;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--scs-secondary-text);
	position: absolute;
	width: 100%;
	max-width: 380px;
	transform: translateY(8px);
	opacity: 0;
	transition: opacity .25s ease-out;
	z-index: 2;
}
.scs-input-date[open] .scs-input-date__content {
	opacity: 1;
}

.scs-datepicker {
	line-height: 1.2;
	color: var(--scs-main-text);
	font-weight: 500;
	font-size: 16px;
}
.scs-datepicker__top {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	align-items: center;
	margin-bottom: 8px;
}
.scs-datepicker__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 48px;
	border: none;
	background: transparent;
	cursor: pointer;
}
.scs-datepicker__year {
	font-weight: 700;
	font-size: 18px;
	text-transform: capitalize;
}
.scs-datepicker__calendar {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}
.scs-datepicker__calendar > div {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-align: center;
	color: var(--scs-secondary-text);
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.scs-datepicker__link {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--scs-main-text);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: none;
	cursor: pointer;
}
.scs-datepicker__link--disabled {
	color: var(--scs-disabled-text);
	cursor: default;
}
.scs-datepicker__link--now {
	background: var(--scs-light-grey);
}
.scs-datepicker__link--selected {
	background: var(--scs-accent-primary);
	color: var(--scs-bg-default);
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/input-file.css?17659887461086*/
.scs-input-file {
	border-radius: 16px;
	padding: 8px 24px;
	width: 100%;
	height: 52px;
	background: var(--scs-bg-soft);
	color: var(--scs-disabled-text);
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	border: 1px solid transparent;
	transition: border-color .25s ease-out;
}
.scs-input-file label {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.scs-input-file label input {
	display: none;
}
.scs-input-file label div {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.scs-input-file label svg {
	flex-shrink: 0;
}
.scs-input-file label input:placeholder-shown + div {
	color: var(--scs-disabled-text);
}
.scs-input-file button {
	flex-shrink: 0;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	display: none;
}
.scs-input-file--selected {
	color: var(--scs-main-text);
	border-color: var(--scs-success);
}
.scs-input-file--selected label svg {
	display: none;
}
.scs-input-file--selected button {
	display: flex;
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/textarea.css?1762762867411*/
.scs-textarea {
	border-radius: 16px;
	padding: 8px 24px;
	width: 100%;
	min-height: 90px;
	background: var(--scs-bg-soft);
	color: var(--scs-main-text);
	outline: none;
	resize: vertical;
	border: 1px solid transparent;
	transition: border-color .25s ease-out;
}
.scs-textarea::placeholder {
	color: var(--scs-disabled-text);
}
.scs-textarea:not(:placeholder-shown):valid {
	border-color: var(--scs-success);
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/select.css?17627628671401*/
.scs-select {
	position: relative;
	z-index: 5;
}
.scs-select summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	border-radius: 16px;
	padding: 8px 24px;
	height: 52px;
	background: var(--scs-bg-soft);
	color: var(--scs-main-text);
	border: 1px solid var(--scs-success);
	transition: border-color .25s ease-out;
}
.scs-select summary svg {
	flex-shrink: 0;
	transition: transform .25s ease-out;
}
.scs-select[open] {
	z-index: 7;
}
.scs-select[open] summary svg {
	transform: rotate(180deg);
}
.scs-select input[value=""] + summary {
	color: var(--scs-disabled-text);
	border-color: transparent;
}
.scs-select__options {
	border-radius: 16px;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12), 0 4px 12px 0 rgba(0, 0, 0, 0.12);
	background: var(--scs-bg-default);
	padding: 16px;
	font-family: Manrope;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--scs-secondary-text);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
	position: absolute;
	width: 100%;
	transform: translateY(4px);
	opacity: 0;
	transition: opacity .25s ease-out;
}
.scs-select[open] .scs-select__options {
	opacity: 1;
}
.scs-select__options div {
	padding: 8px 0;
	cursor: pointer;
	transition: color .25s ease-out;
}
.scs-select__options div:hover,
.scs-select__options div.selected {
	color: var(--scs-accent-primary);
}


/* End */


/* Start:/local/templates/kubaturamall/custom/css/checkbox.css?1762762867986*/
.scs-checkbox {
	display: inline-flex;
	margin: 0;
	gap: 8px;
	position: relative;
	font-size: 14px;
}
.scs-checkbox input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.scs-checkbox > div {
	align-self: center;
}
.scs-checkbox > div a {
	color:  var(--scs-accent-primary);
}
.scs-checkbox:before {
	content: '';
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 1px solid var(--scs-disabled-text);
	border-radius: 6px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70%;
	transition: background-color .25s ease-in-out,
				border-color .25s ease-in-out,
				color .25s ease-in-out;
}
.scs-checkbox:has(input:checked):before {
	border-color: var(--scs-accent-primary);
	background-color: var(--scs-accent-primary);
	background-image: url(/local/templates/kubaturamall/custom/css/../images/check.svg);
}
.scs-checkbox:has(input:disabled):before {
	border-color: var(--scs-bg-soft);
}

@media (max-width: 575px) {
	.scs-checkbox {
		font-size: 12px;
	}
}
/* End */


/* Start:/local/templates/kubaturamall/custom/css/popup-small.css?17627628671449*/
.scs-dialog-small {
	display: flex;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0 0 32px;
	border: none;
	max-width: none;
	max-height: 100dvh;
	background: var(--scs-glass);
	/*backdrop-filter: blur(4px);*/
	transform: translateX(100%);
	overflow: hidden;
	visibility: hidden;
}
.scs-dialog-small[open] {
	width: 100%;
	height: 100dvh;
	transform: translateX(0);
	position: fixed;
	top: 0;
	left: 0;
	visibility: visible;
	z-index: 999;
	transition: transform .4s ease-out;
}

.scs-dialog-small-wrapper {
	margin: auto 0;
	max-height: 100%;
	display: flex;
	flex-direction: column;
}
.scs-dialog-small-wrapper.maxwidth-theme {
	max-width: 470px;
}

.scs-dialog-small-header {
	color: var(--scs-bg-default);
	line-height: 1.2;
	margin-bottom: 8px;
	padding: 14px 0;
	display: flex;
	align-items: center;
	gap: 16px;
}
.scs-dialog-small-header__close {
	flex-shrink: 0;
	margin-left: auto;
}

.scs-dialog-small-content {
	padding: 40px;
	border-radius: 16px;
	background: var(--scs-bg-default);
	overflow: auto;
}

.scs-dialog-small-content-wrapper {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

@media (max-width: 767px) {
	.scs-dialog-small-content {
		padding: 24px;
	}
}

@media (max-width: 575px) {
	.scs-dialog-small-header {
		margin-bottom: 0;
		position: sticky;
		top: 0;
		z-index: 99;
	}

	.scs-dialog-small-content {
		padding: 16px;
	}
}

body:has(.scs-dialog-small[open]) {
	touch-action: none;
}

/* End */


/* Start:/library/blocks/text/style.css?178009197845*/
.scs-library-text-block {
	font-size: 18px;
}
/* End */
/* /library/style.css?1780092088782 */
/* /local/templates/kubaturamall/custom/css/button.css?17800827711678 */
/* /library/blocks/banner/style.css?17800778272012 */
/* /library/blocks/role/style.css?17803325533608 */
/* /library/blocks/role-design/style.css?17801690361747 */
/* /library/blocks/role-buyer/style.css?17801707841201 */
/* /library/blocks/role-brand/style.css?17801716651202 */
/* /local/templates/kubaturamall/custom/css/card-14.css?1764874879596 */
/* /library/blocks/design/style.css?1780331006339 */
/* /local/templates/kubaturamall/custom/js/owl.carousel/owl.carousel.min.css?17627628673351 */
/* /library/blocks/gallery/style.css?17800894541443 */
/* /library/blocks/steps/style.css?17803369291956 */
/* /local/templates/kubaturamall/components/bitrix/catalog.section.list/scs-sections-library-list/style.css?178017736975 */
/* /library/blocks/faq/style.css?17800894901400 */
/* /library/blocks/feedback/style.css?1780091324904 */
/* /library/blocks/form/style.css?1780091355846 */
/* /local/templates/kubaturamall/components/bitrix/form.result.new/scs-form/style.css?1762762867940 */
/* /local/templates/kubaturamall/custom/css/input.css?1762762867379 */
/* /local/templates/kubaturamall/custom/css/input-date.css?17627628672509 */
/* /local/templates/kubaturamall/custom/css/input-file.css?17659887461086 */
/* /local/templates/kubaturamall/custom/css/textarea.css?1762762867411 */
/* /local/templates/kubaturamall/custom/css/select.css?17627628671401 */
/* /local/templates/kubaturamall/custom/css/checkbox.css?1762762867986 */
/* /local/templates/kubaturamall/custom/css/popup-small.css?17627628671449 */
/* /library/blocks/text/style.css?178009197845 */
