.steps__more-text small {
    display: block;
    font-size: 16px;
    margin-top: 10px;
    text-transform: none;;
}
.blokform {
	position:relative;
}
.blokform::before {
    content: "";
    display:block;
	padding-top:40%;
    background:#000; 
} 
.blokform > img {
    position: relative;
    opacity: .55;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
}
.blokform .cont {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	justify-content:center;
}
.blokform .cont * {
	color:#fff;
}
.blokform .cont > div {
	text-align:center;
}
.blokform .cont h3 {
	color: #fff;
    font-weight: 500;
    line-height: 140%;
    text-transform: uppercase;
    font-size: 50px;
    text-align: center;
	margin-bottom: 30px;
}
.blokform .cont p {
	color: #fff;
    font-weight: 300;
    line-height: 140%;
    /* text-transform: uppercase; */
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
}
.blokform .cont .logo {
	background: #fff;
    width: 140px;
    height: 140px;
    border-radius: 140px;
    margin-bottom: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

@media (max-width:1600px) {
	.blokform {
		background:#000;
	}
	.blokform::before {
		content:none;
	}
	.blokform .cont {
		top:auto;
		right:auto;
		bottom:auto;
		left:auto;
		position:relative;
		padding-top:150px;
		padding-bottom:150px;
	}
}

@media (max-width:991px) {
	.blokform .cont {
		padding-top:50px;
		padding-bottom:50px;
	}
	.blokform .cont h3 {
		font-size: 36px;
	}
	.blokform .cont p {
		color: #fff;
		font-size: 16px;
	}
}

@media (max-width:575px) {
	.blokform .cont {
		padding:50px;
	}
	.blokform .cont h3 {
		font-size: 24px;
	}
	.blokform .cont p {
		font-size: 14px;
	}
	.blokform .cont .logo {
		width: 90px;
		height: 90px;
		padding: 10px;
	}
}

.quiz-block .content .prog + .flex {
	display:flex;
	gap:30px;
}

.quiz-block .btn.btn-secondary.prev {
	background:#c0c0c0;
}

.quiz-block .btn.btn-secondary.prev::before {
	order: 0;
	margin: -8px 0 -8px -10px;
	transform:rotate(180deg);
}
.quiz-block .btn.btn-secondary.prev:hover {
	background:#b0b0b0;
}
@media (min-width: 767.98px) {
	.quiz-block .btn.btn-secondary.prev::before {
		margin: -12px 0 -12px -16px;
		padding: 15px;
	}
}
@media (min-width: 1599.98px) {
	.quiz-block .btn.btn-secondary.prev::before {
		padding: 19px;
		margin: -16px 0 -16px -23px;
	}
}

@media (min-width: 1199.98px) {
	.quiz-block .btn.btn-secondary.prev.btn-sm::before {
		padding: 14px;
	}
}

.qfrm {
    width: 700px;
	max-width:100%;
    text-align: center;
	margin-left:auto;
	margin-right:auto;
}

.isqviz.frmmodal {
	width:1200px;
	background:#fff;
	padding:0;
}
.quiz-block * {
	outline:none!important;
}
.quiz-block {
    font-family: "Unbounded", sans-serif;
	width: 1200px;
    max-width: 100%;
}
.quiz-block .content {
  /*border-radius: 8px;*/
  padding: 30px;
  display: none;
}
.quiz-block .content.active {
  display: block;
}
.quiz-block .content .step {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 26px;
}
.quiz-block .content .name {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}
.quiz-block .content .prog {
  margin-bottom: 30px;
  background: #f0f0f0;
  /*border-radius: 56px;*/
  height: 25px;
  position: relative;
  overflow: hidden;
  border-radius:5px;
}
.quiz-block .content .prog span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--terem-main-color);
  overflow: hidden;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.quiz-block .content .prog span:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 10000000px;
  height: 100%;
  background: var(--terem-main-color) url('../img/progr.png') center;
  animation: prog 50000s infinite linear;
}
.quiz-block .content .prog + .flex {
	flex-wrap:wrap;
}
.quiz-block .content .prog p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  z-index: 3;
}
.quiz-block .content .radio {
  display: none;
}
.quiz-block .content .radio + label {
    display: block;
    width: 23%;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    width: calc(50% - 15px);
    text-align: left;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin: 0;
    border: 3px solid #f0f0f0;
	padding:5px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
#r211 + input,
#r405 + input {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
#r211 + input:focus,
#r405 + input:focus {
	border-color:var(--terem-main-color);
}
.quiz-block .content .radio + label.small .text {
	width:100%;
	text-align:center;
}
.quiz-block .content .radio + input[type="text"] {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    text-align: left;
    font-size: 18px;
    display: flex;
    margin: 0;
    border: 3px solid #f0f0f0;
	padding:15px 15px;
}
.quiz-block .content .radio + label .img {
	width: 120px;
    height: 90px;
    border-radius: 5px;
    display: inline-flex;
    margin-right: 15px;
}
.quiz-block .content .radio + label .img img {
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:5px;
}

.quiz-block .content .radio + label .text {
	display: block;
	font-size: 18px;
	line-height: 21px;
	width: calc(100% - 135px);
}
.quiz-block .content .radio:checked + label {
    border: 3px solid var(--terem-main-color);
}
.quiz-block .content .buttons {
  padding-top: 24px;
  text-align:center;
}
.quiz-block .content .buttons .button {
  width: 212px;
  height: 67px;
  text-decoration: none;
  line-height: 67px;
  text-align: center;
  display: inline-block;
  /*border-radius: 8px;*/
  /*font-weight: 600;*/
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.045em; 
  cursor:pointer;
}
.quiz-block .content .buttons .button:nth-child(1) {
  margin-right: 20px;
  background: #EBEBEB;
}
.quiz-block .content .buttons .button:nth-child(1):hover {
  filter: brightness(95%);
}
.quiz-block .content .buttons .button:nth-child(2) {
  background: #329546;
}
.quiz-block .content .buttons .button:nth-child(2):hover {
  opacity: .8;
}
.quiz-block .content .buttons .button img {
  vertical-align: middle;
  margin: -2px 5px 0 5px;
}
@keyframes prog {
  from {
    left: -900000px;
  }
  to {
    left: 0px;
  }
}

.quiz-block .content .radio + label.small {
    width: calc(20% - 24px);
    padding: 15px;
    justify-content: center;
}
.quiz-block .content .radio + label.small2 {
    width: calc(50% - 15px);
}

.quiz-block .content .buttons .button:nth-child(2).pen {
	background: #EBEBEB;
}

.quiz-block .last.icon-arrow:before {
	content: "\e901";
}

@media (max-width: 1199px) {
  .quiz-block .content {
    padding: 40px;
  }
  .quiz-block .content .radio + label {
	  width:100%;
  }
}
@media (max-width: 767px) {
	.quiz-block .content .radio + label.small {
		width:calc(50% - 15px);
	}
	.quiz-block .content .radio + label.small2 {
		width:100%;
	}
  .quiz-block .content {
    padding: 20px;
  }
   .quiz-block .block-name {
    width: auto;
    font-size: 32px;
  }
  .quiz-block .content .radio + label .text {
    /*padding: 25px 0 0 0;*/
    font-size: 14px;
    line-height: 18px;
  }
  .quiz-block .content .buttons .button {
    width: 100%;
  }
  .quiz-block .content .buttons .button:nth-child(1) {
    margin: 0 0 10px 0;
  }
  .quiz-block .content .radio + label .text {
	  width:100%;
	  text-align:center;
  }
	.quiz-block .content .radio + label .img {
		display:none;
	}
	.quiz-block .content .radio + label {
		padding:15px;
	}
	.quiz-block .content .prog + .flex {
		gap:10px;
	}
	.quiz-block .content .radio + input[type="text"] {
		font-size:14px;
		text-align:center;  
	}
}

@media (max-width:575px) {
}

.gocalc { 
	z-index: 10;
	position: fixed;
    right: 0;
    padding: 10px;
    background: var(--terem-main-color);
    top: calc(50% - 84px);
    cursor: pointer;
    border-radius: 10px 0 0 10px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.gocalc:hover { 
	/*background-color: var(--terem-main-color-active);*/
	filter:brightness(1.1);
}
.gocalc .itms {
	display:flex;
	gap:10px;
	flex-wrap:wrap;
} 
.gocalc .itms span { 
	width: calc(50% - 5px);
    background: #303030;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--terem-main-color);
    height: 36px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.gocalc:hover .itms span { 
    color: #fff;
}
.gocalc .itms + span {
	font-size: 16.5px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin: 8px 0 0 0;
}
.gocalc .itms + span + span {
    font-size: 12px;
    width: 100%;
    display: block;
}

@media (max-width:767px) {
	/*.gocalc { 
		right: auto;
		left: 20px;
		bottom: 110px;
		top: auto;
		border-radius: 5px;
		padding: 5px;
	}*/
	.gocalc {
        right: -50%;
        left: -50%;
        bottom: 30px;
        top: auto;
        border-radius: 5px;
        padding: 5px;
        margin: 0 auto;
        width: 80px;
    }
	.gocalc .itms span { 
		width: calc(50% - 2.5px);
		font-size: 16px;
		height: 24px;
	}
	.gocalc .itms + span {
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		display: block;
		margin: 8px 0 0 0;
	}
	.gocalc .itms span:nth-child(3), .gocalc .itms span:nth-child(4) {
	  display: none;
	}
	.gocalc .itms {
		gap: 5px;
	}
	.gocalc .itms + span + span {
		font-size: 9px;
	}
}


.categories__body .steps__more {
	font-family: "Unbounded", sans-serif;
}
.categories__body .steps__more-image {
	height: 635px;
	overflow: hidden;
}
.categories__body .steps__more-image img {
    min-height: 320px;
    border-radius: 0!important;
}
.categories__body .steps__more-text {
    font-size: 36px;
	font-weight: 600;
    line-height: 1.4;
	font-family: "Unbounded", sans-serif;
}
.categories__body .steps__more-text small {
    font-size: 24px;
    margin-top: 20px;
    opacity: .8;
    line-height: 1.2;
	font-weight: normal;
}
@media (max-width:1899px) {
	.categories__body .steps__more-image {
		height: 515px;
	}
}
@media (max-width:1599px) {
	.categories__body .steps__more-image {
		height: 452px;
	}
}
@media (max-width:1399px) {
	.categories__body .steps__more-image {
		height: 388px;
	}
	.categories__body .steps__more-text {
		font-size: 24px;
	}
	.categories__body .steps__more-text small {
		font-size: 20px;
	}
}
.steps__more-text {
	font-size: 28px;
	font-weight: 600;
}
@media (max-width:767px) {
	.benefits__image > a > span > span:first-child,
	.categories__body .steps__more-text,
	.steps__more-text {
		font-size: 24px;
		font-weight: normal;
	}
}



.complectation.v2 .istable table {
	width:100%;	
	border-collapse:collapse;
}
.complectation.v2 .istable {
	background: #fff;
    padding: 40px;
    border-radius: 60px;
}

.complectation.v2 .maintitle span {
	border-radius: 100px;
    background: var(--terem-main-color-hover);
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
}
.complectation.v2 tr:not(.maintitle) td {
	border-bottom:1px solid #e0e0e0;
	padding:10px 20px;
	border-right:1px solid #e0e0e0;
}
.complectation.v2 tr:not(.maintitle) td:last-child {
	border-bottom:1px solid #e0e0e0;
	border-right:none;
}
.complectation.v2 tr.noborder td {
	border-bottom:none!important;
}
.complectation.v2 td.border-left {
	border-radius:0 0 0 100px;
	border-left:none!important;
}
.complectation.v2 td.border-none {
	border-radius:0 0 0 0 !important;
}
.complectation.v2 td.border-right {
	border-radius:0 100px 0 0;
	border-right:none!important;
}

.complectation.v2 .subtitle td {
    background: #e0e0e0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px!important;
	/*border-radius: 100px 0 0 100px;*/
	border-bottom:none!important;
}
.complectation.v2 .subtitle td:first-child {
	border-radius: 100px 0 0 100px;
}
.complectation.v2 .subtitle td:last-child {
	border-radius: 0 100px 100px 0;
}



@media (max-width:1199px) { 
	.complectation.v2 .istable {
		padding: 20px;
		border-radius: 30px;
	}
	.complectation.v2 .maintitle span {
		padding: 15px;
		margin-right: 15px;
		width: calc(100% - 15px);
		font-size: 18px;
		text-align: center;
	}
	.complectation.v2 .maintitle td:last-child span {
		padding: 15px;
		margin-right: 0;
		margin-left:15px;
		width: calc(100% - 15px);
		font-size: 18px;
		text-align: center;
	}
	.complectation.v2 tr:not(.maintitle) td {
		font-size: 14px;
		border-bottom: 1px solid #e0e0e0;
		padding: 10px;
	}
	.complectation.v2 tr:not(.maintitle) td:last-child {
		padding: 10px!important;
	}
	.complectation.v2 .subtitle td {
		font-size: 16px!important;
		padding: 10px 20px!important;
	}
}

@media (max-width:991px) { 
	.complectation.v2 .maintitle span {
		font-size:16px;
		margin-bottom: 20px; 
	}
	.complectation.v2 .maintitle td:last-child span {
		font-size:16px;
		margin-bottom: 20px; 
	}
}

@media (max-width:767px) {
	.complectation.v2 td {
		padding:5px!important;
	}
	.complectation.v2 .istable {
		padding: 10px;
		border-radius: 10px;
	}
	.complectation.v2 .maintitle span {
		font-size: 14px!important;
		width: 100%!important;
		margin: 0 0 10px 0!important;
	} 
	.complectation.v2 tr:not(.maintitle) td {
		font-size: 14px!important;
		word-break: break-word;
		padding: 10px!important;
	}
	.complectation.v2 tr:not(.maintitle) td,
	.complectation.v2 tr:not(.maintitle) td:last-child {
		padding: 10px!important; 
	}
	.complectation.v2 .subtitle td {
		border-radius: 8px 0 0 8px;
	}
	.complectation.v2 tr:not(.maintitle) td:last-child {
		border-radius: 0 8px 8px 0;
	}
	.complectation.v2 td.tdhidden {
		display:none!important;
	}
	.complectation.v2 td:not(.tdhidden) {
		width:100%;
		border-left:none!important;
		border-right:none!important;
		border-radius:0!important;
	}
}

.complectation__row.hidd {
	display:none!important;
}

.show_hidefilters {
	display:none;
}

@media (max-width:575px) {
	.page_card .product-card__price {
		position: fixed;
		top: 0;
		border-radius: 0;
		left: 0;
		right: 0;
		padding-top: 40px;
		padding: 70px 10px 10px 10px;
		z-index:5;
	}
	.page_card .header__logo {
		position: fixed!important;
		left: 20px;
		top: 10px;
	}
	.page_card .header__logo::before {
		content: "";
		position: absolute;
		inset: -10px;
		border-radius: 0 0 20px 20px!important;
		background: #fff;
		z-index: -1;
	}
	.page_card .product-card__price-header {
		align-items:center;
	}
	.page_card .product-card__price-desc {
		margin-top:0;
	}
	.page_card .product-card__price-desc {
		font-size:12px;
	}
	.page_card .product-card__price-value {
		font-size:18px!important;
	}
	.page_card .product-card__price::before {
		content: 'СМЕТА';
		font-family: "Unbounded", sans-serif;
		width: 126px;
		color: #000;
		height: 34px;
		font-size: 14px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-webkit-transform: rotate(0eg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		background: #fff;
		color: #303030;
		border-radius: 10px;
		position: fixed;
		top: 15px;
		left: calc(50% - 63px);
		font-weight:800;
	}
	.page_card .breadcrumbs {
		padding-top:155px;
	}
	.page_card .product-card__action {
		width: 60px;
		height: 60px;
		font-size: 24px;
		
	}
	.page_card .header {
		padding-top:0;
	}
	.page_card .icon-menu {
		position: fixed!important;
		top: 10px;
		right: 10px;
	}
	.page_card .product-card__price-main {
		width:100%;
	}
	.page_card .product-card__price-desc {
		max-width:100%;
		width:100%;
	}
	.page_card .product-card__props {
		padding: 0;
		margin-top: 5px;
	}
	.page_card .product-card__props > .row {
		--bs-gutter-x: 0;
		--bs-gutter-y: 0;
		gap:15px;
	}
	.page_card .product-card__props-item {
		width:calc(50% - 7.5px);
	}
	.page_card .product-card__props-value {
		font-size: 16px;
	}
	.page_card .product-card__props-desc {
		font-size: 14px;
	}
	.page_card .product-card__block {
		border-radius: 30px;
		padding: 15px;
	}
	.page_card .product-card__label-btn {
		padding:14px 20px;
		border-radius:50px;
	}
	.catalog__filters {
		margin-top:15px;
	}
	.show_hidefilters {
		display: block;
		background: var(--terem-main-color);
		padding: 15px 60px 15px 15px;
		border-radius: 100px;
		margin-top: 30px;
		text-align: center;
		position: relative;
	}
	.show_hidefilters .show {
		display:inline-block;
		color:#fff;
		border-bottom:1px dashed #fff;
	}
	.show_hidefilters .hide {
		display:none;
	}
	.show_hidefilters.active .show {
		display:none;
	}
	.show_hidefilters.active .hide {
		display:inline-block;
		color:#fff;
		border-bottom:1px dashed #fff;
	}
	.show_hidefilters::before {
		display: block;
		width: 40px;
		height: 40px;
		background: #fff;
		position: absolute;
		right: 6px;
		border-radius: 45px;
		display: flex;
		align-items: center;
		justify-content: center;
		top: 6px;
		rotate: 90deg;
		font-size: 12px;
	}
	.show_hidefilters.active::before {
		rotate: 270deg;
	}
	body:not(.page_catalog_hasimg) .show_hidefilters:not(.active) + .catalog__filters-body {
		display:none;
	} 
	body:not(.page_catalog_hasimg) .show_hidefilters:not(.active) + .catalog__filters-body + .catalog__filters-bottom {
		margin-top:15px;
	}
}

@media (min-width:768px) {
	.menu__item.mob {
		display:none;
	}
}
@media (max-width:767px) {
	.header.open-menu .menu {
		padding-bottom:120px;
		padding-top: 80px;
	}
	.menu__item.mob .gosearch2 {
		width:100%;
		max-width:100%;
	}
	
	.header .menu {
		display: flex;
		flex-wrap: wrap;
	}
	.menu__body {
		order: 1;
		display: flex;
		width: 100%;
	}
	.menu__list {
		width: 100%;
	}
	.menu__contacts {
		order:0;
		margin-bottom:15px;
	}
}

.menu__item.mob .header__search-btn {
	position: static;
    top:auto;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    color: var(--terem-main-color);
    left: auto;
    font-size: 48px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.product-card__block + div + span {
    padding: 24px;
    font-size: 24px;
    border-radius: 100px;
    text-align: left;
    display: block!important;
    position: relative;
    background: #fff!important;
    color: #333!important;
	border:3px solid var(--terem-main-color-hover)!important;
}
.product-card__block + div + span:hover {
    background: var(--terem-main-color-hover)!important;
    color: #fff!important;
}
.product-card__block + div + span > span {
	background: #f0f0f0;
	width: 90px;
    height: 90px;
	position: absolute;
    top: calc(50% - 45px);
    right: 15px;
    margin: 0;
	border-radius: 90px;
}
.product-card__block + div + span > span::before {
	content: '';
    display:block;
	width: 90px;
    height: 90px;
	position: absolute;
    background: url(../img/btn_like.svg);
    background-size: 48px;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center center;
	animation: pulse 2s infinite;
}
.product-card__block + div + span::before {
    content:none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse2 {
  0% {
    transform: rotate(-45deg) scale(1);
  }
  40% {
    transform: rotate(-45deg) scale(1);
  }
  50% {
    transform: rotate(-35deg) scale(1.05);
  }
  60% {
    transform: rotate(-45deg) scale(1);
  }
  70% {
    transform: rotate(-35deg) scale(1.05);
  }
  80% {
    transform: rotate(-45deg) scale(1);
  }
  100% {
    transform: rotate(-45deg) scale(1);
  }
}

@media (max-width:1399px) and (min-width:1200px) {
	.product-card__block + div + span {
		font-size:20px;
	}
}
@media (max-width:480px) {
	.product-card__block + div + span {
		font-size:20px;
	}
}
@media (max-width:400px) { 
	.product-card__block + div + span {
		font-size:18px;
	}
}

@media (min-width:576px) {
	.product-card__price::before {
		animation: pulse2 2s infinite;
	}
}
.product-card__plan {
	flex-wrap: wrap;
}

.product-card__plan .change_plan {
    border-radius: 60px;
    background: #ddd;
    padding: 20px;
    text-align: center;
}

.product-card__plan .change_plan h3 {
    font-size: 28px;
    font-weight: 500;
}

.product-card__block + div {
	width:100%;
	margin-bottom:15px;
	font-size:24px;
}
 
@media (min-width:1200px) {
	.product-card__plan > a {
		width: calc(50% - 15px);
		display: block;
		text-align: center;
		background: #fff;
		border-radius: 30px;
		max-height:600px;
	}
	.product-card__plan > a img {
		object-fit:contain; 
		object-position:center center;
		border-radius:0;
	}
}

@media (max-width:1199px) {
	.product-card__plan .change_plan {
		border-radius: 30px;
	}
}

@media (max-width:575px) {
	.product-card__plan .change_plan h3 {
		font-size: 20px;
	}
	.product-card__plan .change_plan { 
		padding:15px;
	}
}

@media (max-width:575px) and (min-width:400px) {
	.page_card .product-card__price::before {
		font-size:18px;	
	}
}

.channel {
    margin-bottom: 15px;
}
.channel .flex {
	margin-top:15px;
	display:flex;
	flex-wrap:wrap;
	gap:15px;
}
.channel .flex .item {
	justify-content: center;
    gap: 8px;
	background:#fff;
	width:calc(20% - 15px);
	padding:10px 5px;
	border:2px solid #e0e0e0;
	border-radius:15px;
	border-radius:50px;
	display:flex;
	flex-wrap:wrap;
	cursor:pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.channel .flex .item.active {
	border:2px solid var(--terem-main-color);
}
.channel .flex .item:not(.active):hover {
	border:2px solid var(--terem-main-color-hover);
}
.channel .flex .item .iname {
    font-size: 16px;
    width: 100%;
    display: block;
    text-align: center;
    font-family: "SFUIDisplay";
    font-weight: 500; 
}

@media (max-width:767px) {
	.channel .flex .item .iname {
		display:none; 
	}
	.channel .flex .item {
		width: 48px;
		height: 48px;
	}
	.channel .flex {
		gap: 5px;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
}


.frmmodal#frmshema {
	width:1200px;
}
.msheme {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}
.msheme .item {
	display: flex;
    width: calc(50% - 10px);
    background: #fff;
    padding: 15px;
    gap: 10px;
    align-items: center;
    border-radius: 100px;
    font-family: "SFUIDisplay";
    font-weight: 500; 
}
.msheme .item .img {
	width:48px;
	height:48px;
	background:var(--terem-main-color);
	border-radius:100px;
	position:relative;
	overflow:hidden;
}
.msheme .item .img img { 
	max-width:unset;
	width:calc(100% + 10px);
	height:calc(100% + 10px);
	top:-5px;
	right:-5px;
	bottom:-5px;
	left:-5px;
	position:absolute;
}
.msheme .item .numb {
	width: 38px;
    font-size: 32px;
    font-weight: normal;
    opacity: .2;
}
.msheme .item .desc {
	width:calc(100% - 106px);
}
.msheme .item .desc span {
	width:100%;
	display:block;
	font-weight:700;
}

.compl_buttons {
	display:flex;
	justify-content:center;
	gap:30px;
	border-radius: 40px;
    background: #ddd;
    padding: 20px;
}
.compl_buttons > span {
	font-size:24px;
}

@media (max-width:1199px) {
	.msheme .item {
		border-radius: 30px;
	}
}

@media (max-width:991px) {
	.msheme .item {
		width:100%;
	}
	.msheme {
		gap:5px;
	}
}

@media (max-width:575px) {
	.msheme .item {
		flex-wrap:wrap;
	}
	.msheme .item .desc {
		width:100%;
}
	.msheme {
		gap:5px;
	}

	.compl_buttons {
		flex-wrap:wrap;
		gap:15px;
	}
	.compl_buttons > span {
		width:100%;
		font-size:18px;
	}
}

@media (min-width:1900px) {
	.gocalc {
		position: absolute;
		/* margin-left: 100px; */
		border-radius: 10px!important;
		top: -35px;
		transform: scale(.6);
	}
	.header__actions .relative {
		position: relative;
		left: 170px;
	}
	.header.scroll .gocalc {
		top:-30px;
	}
}

@media (min-width:1600px) and (max-width:1899px) {
	.gocalc {
		position: absolute;
		/* margin-left: 100px; */
		border-radius: 10px!important;
		top: -35px;
		transform: scale(.6);
	}
	.header__actions .relative {
		position: relative;
		left: 110px;
	}
	.header.scroll .gocalc {
		top: -30px;
	}
}

@media (max-width:1599px) {
	.gocalc {
		top: calc(100vh - 175px);
		right:unset;
		left: 15px;
		position: fixed;
		border-radius: 10px;
	}
}

@media (min-width:768px) {
	.gocalc.gocalc2 {
		display:none;
	}
}

@media (max-width:767px) {
	.gocalc {
		top: calc(100vh - 80px);
		left: 15px;
		bottom: unset;
		width: auto;
		right: unset;
	}
}


.thanks {
	margin-top: -130px;
}

@media (max-width:767px) {
	.thanks {
		margin-top: -60px;
	}	
}

.promo_slider:not(.slick-initialized) > div {
	display:none;
}
.promo_slider:not(.slick-initialized) > div:first-child {
	display:block;
}
.promo_slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    left: 60px;
    display: flex;
    gap: 10px;
}
.promo_slider .slick-dots li {
	display:block;
	cursor:pointer;
	width:24px;
	height:24px;
	background:#fff;
	border-radius:24px;
}
.promo_slider .slick-dots li.slick-active {
	background: var(--terem-main-color);
}
.promo_slider .slick-dots li button {
	display:none;
}


.promo_slider .slide2 .promo__main {
	position:relative;
}
.promo_slider .slide2 .promo__main > * {
	position:relative;
}
.promo_slider .slide2 .promo__main {
	background-image: url(../img/slide002.jpg);
}
.promo_slider .slide2 .promo__main::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(30,30,30,.4);
    pointer-events: none;
    border-radius: 30px;
}


.promo_slider .slide3 .promo__main {
	position:relative;
}
.promo_slider .slide3 .promo__main > * {
	position:relative;
}
.promo_slider .slide3 .promo__main {
	background-image: url(../img/slide003.jpg);
}
.promo_slider .slide3 .promo__main::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(30,30,30,.2);
    pointer-events: none;
    border-radius: 30px;
}

@media (max-width:1599px) {
	.promo_slider .slick-dots {
		bottom: 15px;
		left: 30px;
	}
}

@media (max-width:1199px) {
	.promo_slider .slick-dots {
		bottom: 40px;
		left: 20px;
	}
	.promo_slider .slide3 .promo__main {
		margin-bottom:30px;
	}
}

@media (max-width:767px) {
	.promo_slider .slide2 .promo__main::before {
		border-radius: 20px;
	}
	.promo_slider .slide3 .promo__main::before {
		border-radius: 20px;
	}
	.promo_slider .slide2 .promo__main {
		background-position: left top;
	}
	.promo_slider .slide3 .promo__main {
		background-position: 80% top;
	} 
	.promo_slider .slick-dots {
		bottom: auto;
		top: 30px;
		left: calc(50% - 46px);
		z-index: 6;
	}
}
.promo__title span.grn {
	color:var(--terem-main-color);
}
.promo__title span.grn span {
	color:#fff;
}
@media (min-width:1200px) {
	.promo__title span.grn {
		font-size:140%;
	}
	.promo__title span.grn span {
		font-size: 71.5%;
	}
}

@media (max-width:1199px) and (min-width:992px) {
	.promo_slider .slick-dots {
		bottom: auto;
		left: auto;
		top: 105px;
		right: 40px;
	}
}

@media (max-width:991px) and (min-width:768px) {
	.promo_slider .slick-dots {
		bottom: auto;
		left: auto;
		top: 45px;
		right: 90px;
	}
}

.catalog_bg {
    position: relative;
    margin-top: 40px;
    border-radius: 30px;
    overflow: hidden;
}
.catalog_bg .bg {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background:#444444;
}
.catalog_bg .bg img {
	opacity:.55;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
}
.catalog_bg .breadcrumbs {
	position:relative;
	padding:30px 0;
}
.catalog_bg .breadcrumbs .B_crumbBox {
    display: inline-block;
    background: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: normal;
}
.catalog_bg .breadcrumbs .B_crumbBox * {
	color:#444!important;
}
.catalog_bg .catalog__title {
	color:#fff;
}
.catalog_bg .catalog__header {
	position:relative;
}
.catalog_bg .catalog__header h1 {
    padding: 120px 30px 30px 30px;
    max-width: 60%;
}
.catalog_bg .catalog__header h1 + h3 {
	color: #fff;
    padding: 0 30px 100px 30px;
    font-size: 28px;
    line-height: 1.4;
}
.catalog_bg  .showfilters {
    position: relative;
    background: #fff;
    display: inline-flex;
    padding: 5px 25px 5px 5px;
    align-items: center;
    gap: 15px;
    margin: 0 0 30px 30px;
    border-radius: 100px;
    cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.catalog_bg .showfilters div {
	background: var(--terem-main-color-hover);
	border-radius:100px;
	padding: 12px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.catalog_bg  .showfilters:hover {
    background: var(--terem-main-color);
}
.catalog_bg .showfilters:hover div {
	background: #fff;
}
.catalog_bg .showfilters path,
.catalog_bg .showfilters rect { 
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.catalog_bg .showfilters:hover path,
.catalog_bg .showfilters:hover rect {
	fill:#444!important; 
}
.page_catalog_hasimg:not(.filters_opened) .catalog__filters {
	margin:0;
}
.page_catalog_hasimg:not(.filters_opened) .catalog__filters-header {
	display:none;
}
.page_catalog_hasimg:not(.filters_opened) .catalog__filters-body {
	display:none;
}
.page_catalog_hasimg:not(.filters_opened) .catalog__filters-bottom {
	margin-top:30px;
}

@media (max-width:1899px) {
	.catalog_bg .catalog__header h1 {
		max-width: 60%;
	}
	.catalog_bg .catalog__header h1 + h3 { 

	}
}

@media (max-width:1599px) {
	.catalog_bg .catalog__header h1 {
		padding: 60px 30px 30px 30px;
	}
	.catalog_bg .catalog__header h1 + h3 {
		padding: 0 30px 70px 30px;
		font-size: 24px;
	}
}

@media (max-width:1199px) {
	.catalog_bg .catalog__header h1 {             
		max-width: 80%;
		padding: 30px 30px 30px 30px; 
	}
	.catalog_bg .catalog__header h1 + h3 {
		padding: 0 30px 45px 30px;
		font-size: 18px; 
	}
}

@media (max-width:991px) {
	.catalog_bg .catalog__header h1 + h3 {
		font-size: 14px; 
		font-size: 15px; 
		font-size: 14px; 
	}
}

@media (max-width:575px) {
	.catalog_bg .catalog__header h1 { 
		padding-left:15px;
		padding-right:15px;
	}
	.catalog_bg .catalog__header h1 + h3 {
		padding-left:15px;
		padding-right:15px;
	}
	.catalog_bg .showfilters {
		margin-left:15px;
	}
} 

.page_catalog_hasimg .show_hidefilters {
	display:none!important; 
}

.link:hover {
	color: inherit;
	text-decoration: underline;
}