body {
	min-height: 100vh;
	min-width: 320px;

	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-x: hidden;
}

body, html {
	overflow-x: hidden;
}

.wow {
	visibility: hidden;
}

.tooltip  {
	fill: #E61D5C!important;
}

.notRobot {
    margin: 10px 0;
}

.notRobot label {
    padding-left: 25px;
    position: relative;
}

.notRobot.error label {
    font-size: 14px;
}

.notRobot input {
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
}

/* ============================ Логотип */
.logo {
	display: block;
	
	text-decoration: none;
}

.headerLogo {
	margin-right: 30px;
}

/* ============================ Контакты в шапке */
.headerContacts .tel {
	font-weight: bold;
	font-size: 20px;
	color: #4A3185;
}


/* ============================ Верхнее меню */
.topMenuWrap > .dropdownBut {
	display: none;
}

.topMenu a {
	position: relative;
  display: flex;
  align-items: center;
	color: #4A3185;
	font-size: 18px;
	text-decoration: none;

	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.topMenu .level1 > li {
	margin-right: 25px;
}

/* Уровень 1 */ 
.topMenu .level1 > li > a {
	color: #727271;
	font-size: 18px;
	text-decoration: none;

	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	padding: 35px 0;
	padding-right: 15px;
}

.topMenu .level1 > li:hover > a,
.topMenu .level1 > li.active:hover > a{
	color: #E61D5C;
	font-weight: bold;
}
.topMenu .level1 > li.active > a {
	color: #4A3185;
	font-weight: bold;
}

.topMenu > ul > li:first-child > a {
	background: url('../img/ico/arrow_1.svg') no-repeat right center;
}

.topMenu > ul > li:first-child:hover > a {
	background: url('../img/ico/arrow_2.svg') no-repeat right center;
}

.headerTop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 7px 45px rgba(0,0,0,.1);
	z-index: 99;
}

.headerTop__container {
	width: 100%;
  max-width: 1880px;
  min-height: 1px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.htc{
	margin-right: 4%;
}

.hico{
	width: 15%;
	max-width: 200px;
	margin-right: 3%;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1560px){
	.htc{
		margin-right: 1%;
	}

	.hico{
		width: 12%;
		margin-right: 0;
	}

}
@media (max-width: 1440px){
	.htc{
		margin-right: 0;
	}

	.hico{
		width: 10%;
		margin-right: 0;
	}

	.hico svg{
		width: 32px;
		height: 32px;
	}
}

@media (max-width: 1319px){
	.hico svg{
		width: 43px;
		height: 42px;
	}
}


.headerTop__basket {
  width: 48px;
  height: 48px;
	margin-left: auto;
  background-image: url(../img/basket.svg);
  background-position: center;
}


.headerTop > .container, .headerTop > .container > .row > .col, .topMenu .level1 > li {
	position: static;
}

.headerTopMenuSub {
	position: fixed;
	top: 75px;
	left: 0;
	right: 0;
	max-width: 100%;
	margin: 0 auto;
	z-index: 1000;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	box-shadow: 0 7px 45px rgba(0,0,0,.1);
}

/* Выпадающий список */
.topMenu li:hover .headerTopMenuSub {
	opacity: 1;
	visibility: visible;

	-webkit-transform: none;
	transform: none;
}

.headerTopMenuSub > ul > li {
	-webkit-flex-basis: 33.33333333%;
	-ms-flex-basis: 33.33333333%;
	flex-basis: 33.33333333%;
	max-width: 33.33333333%;
	display: flex;
    justify-content: center;
}

.headerTopMenuSub > ul > li > a {
	color: #727271;
	font-size: 18px;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	display: flex;
	align-items: center;
	height: 100%;
	width: 100%;
}

.linkItem {
	text-align: center;
	position: relative;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.linkItemImg {
	display: flex;
    align-items: center;
    justify-content: center;
    margin: 34px 25px 34px 0;
    margin-right: 25px;
}

.linkItemImg img {
	max-width: 140px;
}

.linkItemTitle {
	color: #4A3185;
	font-weight: bold;
	font-size: 20px;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.headerTopMenuSub li:hover .linkItemTitle {
	color: #E61D5C;
}

.headerTopMenuSub li .linkItem:before,
.headerTopMenuSub li .linkItem:after {
	content: '';
	position: absolute;
	left: 0;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}

.headerTopMenuSub li:hover .linkItem:before {
	transform: translateX(20px);
}

.headerTopMenuSub li:hover .linkItem:after {
	transform: translateX(20px);
}

.headerTopMenuSub li:nth-child(1) .linkItem:before {
	background: url(../img/menuImgIco/1.svg) no-repeat center / contain;
    width: 41px;
    height: 30px;
    left: 0;
    top: 0;
}

/* .headerTopMenuSub li:nth-child(2) .linkItem:before {
	background: url('../img/menuImgIco/2.svg') no-repeat center;
	width: 90px;
	height: 90px;
	left: 4px;
	top: 0px;
	background-size: 100px;
} */

.headerTopMenuSub li:nth-child(2) .linkItem:after {
	background: url(../img/menuImgIco/3.svg) no-repeat center / contain;
    width: 38px;
    height: 35px;
    right: 0;
    top: 0px;
}

.headerTopMenuSub li:nth-child(3) .linkItem:before {
	background: url('../img/menuImgIco/4.svg') no-repeat center;
	width: 27px;
	height: 26px;
	left: 0;
	top: 0;
}

/* .headerTopMenuSub li:nth-child(3) .linkItem:after {
	background: url('../img/menuImgIco/5.svg') no-repeat center;
	width: 20px;
	height: 30px;
	right: 98px;
	top: 25px;
} */

.mainSection {
	background: url('../img/mainBg1.png') no-repeat top center, url('../img/mainBgSub1.png') no-repeat center 100%;
	margin-top: 95px;
	position: relative;
}

.mainSectionItems {
	max-width: 53%;
	height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 50px;
}

.mainSectionTitle {
	font-weight: 800;
	font-size: 88px;
	line-height: 72px;
	color: #FFFFFF;
	margin-bottom: 15px;
	z-index: 10;
}

.mainSectionIcoItem {
	display: inline-flex;
	z-index: 10;
	align-items: center;

}

.mainSectionIcoItem div {
	min-width: 45px;
}

.mainSectionDesk {
	font-size: 24px;
	line-height: 35px;
	color: #FFFFFF;
	margin-bottom: 35px;
	z-index: 10;
}

.mainSectionIcoItem span {
	display: inline-block;
	vertical-align: middle;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 24px;
	margin-left: 10px;
}

.mainSectionIcos {
	width: 90%;
	margin-bottom: 60px;
}

@-webkit-keyframes pulse1 {
	0% {
		box-shadow: 0 0 0 0px rgba(255,255,255, 0.1);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(255,255,255, 0.1);
	}

	100% {
		box-shadow: 0 0 0 0px rgba(255,255,255, 0);
	}
}
@keyframes pulse1 {
	0% {
		box-shadow: 0 0 0 0 rgba(255,255,255, 0.1);
	}

	50% {
		box-shadow: 0 0 0 15px rgba(255,255,255, 0.1);
	}
	100% {
		box-shadow: 0 0 0 0px rgba(255,255,255, 0);
	}
}

.linkVideo {
	background: #71BEF7;
	border-radius: 36px;
	height: 62px;
	width: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 0px rgba(255,255,255, 0.1);
	animation: pulse1 3s infinite;
}

.linkVideo img {
	padding-left: 7px;
}

.mainImg {
	position: absolute;
}

.cosmoTitle {
	font-size: 76px;
	line-height: 72px;
	width: 120%;
}

.cosmoImg1 {
	left: 53%;
	top: 290px;
	z-index: 2;
}

.cosmoImg2 {
	right: -100px;
	top: 100px;
	z-index: 2;
}

.cosmoImg3 {
	top: 82px;
	left: -200px;
}

.cosmoImg4 {
	top: 382px;
	left: -300px;
}

.cosmoImg5 {
	top: -3px;
	left: 51%;
}

.cosmoImg6 {
	right: -300px;
	top: 300px;
}

.mainImg1 {
	top: 88px;
	right: -55px;
	z-index: 1;
}

.mainImg2 {
	left: -10px;
	top: 29%;
}

.mainImg3 {
	left: -322px;
	bottom: 15%;
	opacity: 0.4;
}

.mainImg4 {
	left: 47%;
	top: -20px;
	z-index: 2;
}

.mainImg5 {
	right: -124px;
	top: 80px;
}

.mainImg6 {
	right: -30px;
	top: 215px;
	z-index: 2;
}

.mainImg7 {
	right: -100px;
	top: 64%;
	opacity: 0.4;
}

.muzItems .cosmoImg1 {
    left: 53%;
    top: 290px;
    z-index: 2;
}

.muzItems .cosmoImg2 {
    right: -47px;
    top: 145px;
    z-index: 2;
}

.mainSection.muzItems {
    background: url('../img/meteoIco/1.png') no-repeat center -100px,
                url('../img/mainBg1.png') no-repeat top center,
                url('../img/mainBgSub1.png') no-repeat center 100%;
}

.muzItems .cosmoImg3 {
    top: 171px;
    left: -245px;
}

.muzItems .cosmoImg4 {
    top: 402px;
    left: -124px;
}

.muzItems .cosmoImg5 {
    top: 105px;
    left: 74%;
}

.muzItems .cosmoImg6 {
    right: -258px;
    top: 369px;
}

.sectionTitle {
	color: #4A3185;
	font-weight: bold;
	font-size: 42px;
	margin-bottom: 35px;
	text-align: center;
}

.sectionTitle span {
	color: #E61D5C;
}

.tabsPlaces {
	max-width: 600px;
	margin: 0 auto;
	border-bottom: 1px solid #CECECE;
	margin-bottom: 50px;
}

.tabsPlaceItemImg img {
	border-radius: 30px;
}

.tabsPlaces a {
	color: #727271;
	padding-bottom: 20px;
	border-bottom: 5px solid transparent;
	font-weight: 350;
	font-size: 22px;
}

.tabsPlaces li.active a {
	border-bottom: 5px solid #E61D5C;
	color: #4A3185;
	font-weight: bold;
}

.tabsPlaces li:hover a {
	font-weight: bold;
	color: #4A3185;
}

.listPlace {
	margin-top: 50px;
	margin-left: 80px;
}

.listPlace li {
	position: relative;
	color: #4A3185;
	font-weight: 300;
	font-size: 20px;
	margin-bottom: 30px;
	padding-left: 62px;
}

.listPlace li:before {
	content: '';
	position: absolute;
	background: url('../img/ico/check.svg') no-repeat center;
	width: 41px;
	height: 41px;
	left: 0;
}

.secondSection {
	padding-bottom: 120px;
}

.equipmentItems {
	height: 650px;
	background: url('../img/grass.png') no-repeat center ;
	background-size: cover;
	margin-top: 80px;
	position: relative;
}

.equipmentSubTitle {
	color: #4A3185;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
}

.equipmentSubTitle span {
    color: #E61D5C;
    font-weight: bold;
}



.equipmentImg {
	position: absolute;
	top: -155px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	z-index: 2;
}

.cosmoImg {
	top: -52px;
}

.muzImg {
    top: 28px;
}

.plus {
	position: absolute;
	width: 53px;
	height: 53px;
	background: url('../img/ico/circe.png') no-repeat center;
	cursor: pointer;
	animation: pulse 2s infinite;
	z-index: 3;
}

.muzPlus1 {
	left: 186px;
}

.muzPlus2 {
	left: 310px;
	top: 140px;
}

.muzPlus3 {
	left: 407px;
	top: 339px;
}

.muzPlus4 {
	left: 480px;
	top: 54px;
}

.muzPlus5 {
	left: 600px;
	top: 265px;
}

.muzPlus6 {
	left: 634px;
	top: 93px;
}

.muzPlus7 {
	left: 790px;
	top: 350px;
}

.muzPlus8 {
	left: 828px;
	top: 167px;
}

.muzPlus9 {
	 left: 917px;
	 top: 320px;
 }

.muzPlus10 {
	left: 961px;
	top: 100px;
}


.muzEq .muzPlus1 {
    left: 186px;
    top: 375px;
}

.muzEq .muzPlus2 {
    left: 286px;
    top: 397px;
}

.muzEq .muzPlus3 {
    left: 340px;
    top: 128px;
}

.muzEq .muzPlus4 {
    left: 523px;
    top: 137px;
}

.muzEq .muzPlus5 {
    left: 650px;
    top: 392px;
}

.muzEq .muzPlus6 {
    left: 752px;
    top: 430px;
}

.muzEq .muzPlus7 {
    left: 821px;
    top: 394px;
}

.muzEq .muzPlus8 {
    left: 808px;
    top: 143px;
}

.muzEq .muzPlus9 {
    left: 847px;
    top: 202px;
}

.muzEq .muzPlus10 {
    left: 900px;
    top: 284px;
}

.cosmoPlus1 {
	top: 412px;
	left: 229px;
}

.cosmoPlus2 {
	top: 379px;
	left: 331px;
}

.cosmoPlus3 {
	top: 161px;
	left: 350px;
}

.cosmoPlus4 {
	top: 213px;
	left: 415px;
}

.cosmoPlus5 {
	top: 63px;
	left: 401px;
}

.cosmoPlus6 {
	top: 43px;
	left: 460px;
}

.cosmoPlus7 {
	top: 73px;
	left: 566px;
}

.cosmoPlus8 {
	top: 337px;
	left: 581px;
}

.cosmoPlus9 {
	top: 190px;
	left: 652px;
}

.cosmoPlus10 {
	top: 478px;
	left: 677px;
}

.cosmoPlus11 {
	top: 393px;
	left: 852px;
}

.cosmoPlus12 {
	top: 249px;
	left: 865px;
}

.cosmoPlus13 {
	top: 106px;
	left: 876px;
}

.cosmoPlus14 {
	top: 157px;
	left: 780px;
}

.cosmoPlus15 {
	top: 36px;
	left: 793px;
}

.muzContent .ComplectItemGift {
    right: 0;
}

.muzImg1 {
    position: absolute;
    top: 28px;
    left: -200px;
}

.muzImg2 {
    position: absolute;
    top: 323px;
    left: -176px;
}

.muzImg3 {
    position: absolute;
    top: 50px;
    right: -142px;
}

.muzImg4 {
    position: absolute;
    top: 362px;
    right: -148px;
}

.equipmentModalBody {
	max-width: 880px;
	background: #E61D5C;
	width: 100%;
	border-radius: 30px;
	position: relative;
}

.modalEq .modalDialog {
	max-width: 880px;
}

.equipmentSliderImg {
	height: 490px;
	background: center / cover no-repeat;
	width: 100%;
	border-radius: 30px;
}

.equipmentModalInfo {
	padding: 20px 40px;
}

.equipmentModalTitle {
	font-weight: bold;
	font-size: 32px;
	color: #FFFFFF;
	line-height: 35px;
    margin-bottom: 10px;
}

.equipmentModalText {
	font-weight: 350;
	font-size: 20px;
	color: #FFFFFF;
}

.equipmentPagination {
	text-align: end;
	padding-right: 50px;
}

.imgCloud {
	position: absolute;
}

.imgCloud1 {
	left: -67px;
	top: -99px;
	animation: movingRight 8s infinite;
}

.imgCloud2 {
	right: -77px;
	top: -99px;
	animation: movingLeft 8s infinite;
}

@-webkit-keyframes movingRight {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(60px);
	}

	100% {
		transform: translateX(0);
	}
}
@keyframes movingRight {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(60px);
	}

	100% {
		transform: translateX(0);
	}
}

@-webkit-keyframes movingLeft {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-60px);
	}

	100% {
		transform: translateX(0);
	}
}
@keyframes movingLeft {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-60px);
	}

	100% {
		transform: translateX(0);
	}
}

.equipmentBut {
	text-align: center;
	margin-top: -70px;
}

.butIco {
	padding: 14px;
	box-shadow: 8px 15px 30px #E1ECF4;
	border-radius: 50px;
	font-weight: bold;
	font-size: 20px;
	color: #4A3185;
	display: inline-flex;
	align-items: center;
	background: #fff;
}

.butIcoWrap {
	background: #E61D5C;
	border-radius: 36px;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.butIcoWrap img {
	padding-left: 7px;
}

.butIcoText {
	padding-left: 15px;
	padding-right: 20px;
}

.tabsComplectItem {
	background: #FFFFFF;
	box-shadow: 8px 15px 30px #E1ECF4;
	border-radius: 30px;
	padding: 40px;
}

.equipmentSection {
	padding-bottom: 70px;
}

.tabsComplect {
	max-width: 1000px;
	margin: 0 auto;
}

.cosmoComplect {
	max-width: 800px;
}

.tabsComplect li.active a {
	border-bottom: 4px solid #E61D5C;
	font-weight: bold;
	color: #E61D5C;
}

.tabsComplect li:hover a {
	color: #E61D5C;
}

.tabsComplect a {
	color: #4A3185;
	padding-bottom: 5px;
	border-bottom: 4px solid transparent;
	font-weight: bold;
	font-size: 26px;
}

.complectItemWrap {
	text-align: center;
}

.complectItemImg {
	padding: 20px 0 60px 0;
	position: relative;
}

.ComplectItemGift {
	position: absolute;
	right: 40px;
	bottom: 60px;
	display: inline-block;
	cursor: pointer;
}

.ComplectItemGiftText {
	display: inline-block;
	vertical-align: bottom;
	padding-left: 10px;
	color: #E61D5C;
	font-weight: bold;
	font-size: 18px;
	line-height: 16px;
	text-align: left;
	padding-bottom: 7px;
}

.ComplectItemGiftText span {
	border-bottom: 2px solid #E61D5C;
}

.ComplectItemPrice {
	display: inline-block;
	font-weight: bold;
	font-size: 28px;
	line-height: 20px;
	color: #4A3185;
}

.ComplectItemPriceText {
	font-size: 15px;
	line-height: 20px;
	color: #727271;
	display: inline-block;
	vertical-align: sub;
	text-align: left;
	padding-left: 30px;
}

.ComplectItemPriceText span {
	color: #279814;
}

.ComplectItemPrices {
	margin-bottom: 30px;
}

.priceList li {
	position: relative;
	padding-left: 30px;
	color: #4A3185;
	font-size: 16px;
	line-height: 24px;
	opacity: .4;

}

.priceList li.active {
	opacity: 1;
}

.priceList li.active:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #E61D5C;
	border-radius: 20px;
	left: 0;
	top: 6px;
}

.priceList li:before {
	content: '';
	position: absolute;
	background: #E1ECF4;
	width: 10px;
	height: 10px;
	left: 0;
	top: 6px;
	border-radius: 20px;
}

.priceList li a {
	cursor: pointer;
	font-size: 16px;
	line-height: 24px;
	color: #4A3185;
	text-decoration: none;
	transition: all .2s;
	border-bottom: 1px solid transparent;
	pointer-events: none;
}

.priceList li.active a {
	color: #4A3185;
	opacity: 1;
	pointer-events: all;
}

.priceList li.active a:hover {
	border-bottom: 1px solid #E61D5C;
	color: #E61D5C;
}

.butDownload {
	margin: 40px 0 80px 0;
	text-align: center;
}

.butDownload .butIcoWrap img {
	padding-left: 0;
}

.childrenSlider .swiper-wrapper {
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.childrenSlider .swiper-wrapper .swiper-slide {
	-webkit-flex-basis: 25%;
	-ms-flex-basis: 25%;
	flex-basis: 25%;
	max-width: 25%;
}

.cosmoChldSlider .swiper-wrapper {
	justify-content: space-around;
}

.cosmoChldSlider .swiper-wrapper .swiper-slide {
	-webkit-flex-basis: 33%;
	-ms-flex-basis: 33%;
	flex-basis: 33%;
	max-width: 33%;
}

.childrenItem {
	text-align: center;
	padding: 0 20px;
	margin-bottom: 50px;
}

.childrenItemImg {
	margin-bottom: 20px;
}

.childrenItemTitle {
	font-weight: bold;
	font-size: 22px;
	color: #4A3185;
	margin-bottom: 15px;
	min-height: 84px;
	line-height: 28px;
}

.childrenItemText {
	font-weight: 350;
	font-size: 18px;
	color: #4A3185;
}

.childrenBut {
	text-align: center;
}

.childrenSection {
	padding-bottom: 80px;
	position: relative;
}

.childrenImg {
	position: absolute;
}

.childrenImg1 {
	left: -100px;
	top: 700px;
}

.childrenImg2 {
	right: -100px;
	top: -130px;
}

.featureSection {
	padding: 80px 0 100px 0;
	background: url('../img/featureBg.png') no-repeat center bottom;
	background-size: cover;
	position: relative;
	margin-bottom: 80px;
}

.featureGroupItemImg {
	z-index: 4;
	position: absolute;
}

.featureGroupItemImgCloud1 {
	position: absolute;
	top: 0;
	z-index: 0;
	left: 10px;
}

.featureGroupItemImgCloud2 {
	position: absolute;
	right: -25px;
	top: 35px;
}

.featureItemsWrap {
	padding-left: 90px;
}

.featureItem {
	padding: 0 10px;
	margin-bottom: 50px;
}

.featureItemIco {
	margin-bottom: 11px;
}

.featureItemText {
	font-size: 16px;
	line-height: 20px;
	color: #4A3185;
}

.snowImg1 {
	position: absolute;
	left: 100px;
	top: 50%;
	width: 52px;
}

.snowImg2 {
	position: absolute;
	right: 150px;
	top: 55%;
	width: 52px;
}

.cloudImg3 {
	position: absolute;
	width: 155px;
	left: -92px;
	top: 35%;
	z-index: 2;
}

.cloudImg4 {
	position: absolute;
	top: -183px;
	right: -210px;
}

.meteorImg1 {
	position: absolute;
	left: -240px;
	top: 50%;
}

.meteorImg2 {
	position: absolute;
	right: -70px;
	top: 0;
}

.reviewItemVideo {
	display: block;
	height: 264px;
	width: 100%;
	position: relative;
	background: center / cover no-repeat;
	cursor: pointer;
	margin-bottom: 15px;
	pointer-events: none;
}

/*.reviewItemVideo:before {
	content: '';
	position: absolute;
	background: url('../img/ico/play1.svg') no-repeat center;
	width: 72px;
	height: 72px;
	left: calc(50% - 36px);
	top: calc(50% - 36px);
}*/

.reviewItemTextWrap {
	background: #FFFFFF;
	box-shadow: 8px 15px 30px #E1ECF4;
	border-radius: 30px;
	padding: 24px 30px;
	text-align: center;
	min-height: 316px;
}

.reviewItemTextTitle {
	font-weight: bold;
	font-size: 28px;
	line-height: 28px;
	color: #4A3185;
	margin-bottom: 20px;
}

.reviewItemTextGroup {
	font-size: 16px;
	line-height: 20px;
	color: #4A3185;
	margin-bottom: 10px;
}

.reviewItemButBlock {
	text-align: center;
}

.reviewsSection {
	margin-bottom: 80px;
}

.sectionSubTitle {
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	color: #4A3185;
	margin-top: -25px;
	margin-bottom: 40px;
}

.sectionSubTitle span {
	color: #E61D5C;
}

.videoSlider .swiper-button-prev {
	left: 24%;
	top: calc(50% - 22px);
	background-image: url('../img/ico/butPrev.svg');
	background-size: 72px;
	width: 72px;
	height: 72px;
}

.videoSlider .swiper-button-next {
	right: 24%;
	top: calc(50% - 22px);
	background-image: url('../img/ico/butPrev.svg');
	background-size: 72px;
	width: 72px;
	height: 72px;
	transform: rotate(180deg);
}

.reviewItems {
	margin-bottom: 40px;
}

.itemVideo {
	display: block;
	height: 460px;
	width: 100%;
	border-radius: 30px;
	position: relative;
	background: center / cover no-repeat;
	cursor: pointer;
	margin-bottom: 15px;
}

.itemVideo:before {
	content: '';
	position: absolute;
	background: url('../img/ico/play1.svg') no-repeat center;
	width: 72px;
	height: 72px;
	left: calc(50% - 36px);
	top: calc(50% - 36px);
}

.videoSlider .swiper-slide {
	width: 40%;
	opacity: 0.1;
}

.videoSlider .swiper-slide-active {
	opacity: 1;
}

.garantSection {
    background: url('../img/garantBg.png') no-repeat center bottom #fff;
}

.videoSection {
	margin-bottom: 80px;
}

.garantSection {
	padding-top: 80px;
}

.garantImages .garantImage {
	position: absolute;
	left: 100px;
}

.garantImages .garantImage:nth-child(1) {
	z-index: 5;
}

.garantImages .garantImage:nth-child(2) {
	z-index: 4;
	left: 150px;
	margin-top: 15px;
}

.garantImages .garantImage:nth-child(3) {
	z-index: 3;
	left: 200px;
	margin-top: 30px;
}

.garantImages .garantImage:nth-child(4) {
	z-index: 2;
	left: 250px;
	margin-top: 45px;
}

.garantImages .garantImage:nth-child(5) {
	z-index: 1;
	left: 300px;
	margin-top: 60px;
}

.garantChildImages .garantChildImage:nth-child(1) {
	position: absolute;
	bottom: 0;
	left: 48%;
	z-index: 3;
}

.garantChildImages .garantChildImage:nth-child(2) {
	position: absolute;
	bottom: 0;
	left: 72%;
	z-index: 1;
}

.garantChildImages .garantChildImage:nth-child(3) {
	position: absolute;
	bottom: 0;
	left: 87%;
	z-index: 2;
}

.garantChildCosmos  .garantChildImage:nth-child(3) {
	left: 96%;
}

.garantChildMuz .garantChildImage:nth-child(2) {
    left: 60%;
}

.garantChildImages {
	min-height: 400px;
}

.ellipse1 {
	position: absolute;
	left: -70px;
	top: 18%;
}

.ellipse2 {
	position: absolute;
	right: -77px;
	top: 23%;
}

.ellipse3 {
	position: absolute;
	top: 123px;
	left: -56px;

}

.faqSection {
	padding: 80px 0;
}

.faqItem {
	padding: 20px 0;
	border-bottom: 2px solid #C3E0EF;
}

.faqSpoiler .spoilerNumber {
	font-weight: bold;
	font-size: 24px;
	line-height: 40px;
	color: #E61D5C;
	display: inline-block;
}

.faqSpoiler {
	cursor: pointer;
}

.faqSpoiler .spoilerTitle {
	font-weight: bold;
	font-size: 24px;
	line-height: 40px;
	color: #4A3185;
	display: inline-block;
	padding-left: 10px;
}

.spoilerBody {
	background: #FFFFFF;
	box-shadow: 8px 15px 30px #E1ECF4;
	border-radius: 30px;
	padding: 35px;

	font-size: 18px;
	line-height: 28px;
	color: #4A3185;
	margin-top: 10px;
}

.faqSpoiler .spoilerImg {
	transition: all .2s;
	transform: rotate(-90deg);
}

.faqSpoiler.collapsed .spoilerImg {
	transition: all .2s;
	transform: none;
}

.faqItems {
	max-width: 1024px;
	margin: 0 auto;
}

.costFormContainer {
	background: #F7FBFD;
	box-shadow: 8px 15px 30px #E1ECF4;
	border-radius: 30px;
	padding: 50px 60px;
}

.costFormStep {
	text-align: right;
	font-weight: 350;
	font-size: 16px;
	line-height: 40px;
	color: #727271;
}

.costFormTitle {
	font-size: 22px;
	line-height: 40px;
	text-align: center;
	color: #4A3185;
	margin-bottom: 15px;
}

.rangeSliderTitle {
	font-weight: 350;
	font-size: 16px;
	line-height: 40px;
	color: #727271;
	margin-bottom: 30px;
}

.rangeSlider {
	margin-bottom: 10px;
}

.rangeSliderValText {
	font-weight: bold;
	font-size: 16px;
	line-height: 40px;
	color: #727271;
}

.rangeSliderVal {
	display: none;
}

.checkboxes {
	margin-top: 20px;
	margin-bottom: 25px;
}

.formButBlock {
	text-align: center;
}

.costFormStepWrap {
	display: none;
}

.costFormStepWrap.active {
	display: block;
}

.costInputs {
	margin: 25px 0;
}

.costFormStepWrapSuccess {
	display: none;
	text-align: center;
}

.costSuccessImg {
	margin-bottom: 40px;
}

.costSuccessTitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 40px;
	color: #E61D5C;
	margin-bottom: 30px;
}

.costSuccessInfo {
	font-weight: 350;
	font-size: 20px;
	line-height: 30px;
	color: #4A3185;
}

.formSection {
	padding: 80px 0;
	background: #fff;
}

.costForm {
	margin-bottom: 60px;
}

.giftImage1 {
	position: absolute;
	z-index: 1;
	left: -32px;
}

.giftImage2 {
	position: absolute;
	z-index: 2;
	left: 273px;
	top: 80px;
}

.giftImage3 {
	position: absolute;
	left: 40px;
	z-index: 3;
	transform: rotate(25deg);
	top: 134px;
}

.giftImage4 {
	position: absolute;
	left: 495px;
	z-index: 3;
	transform: rotate(-35deg);
	top: 54px;
}

.formGiftText {
	font-size: 26px;
	line-height: 38px;
	color: #4A3185;
}

.formGiftText span {
	color: #E61D5C;
	font-weight: bold;
}

.giftImages {
	min-height: 325px;
}

.imgCloud5 {
	position: absolute;
	left: -260px;
	top: 10%;
}

.imgCloud6 {
	position: absolute;
	right: -272px;
	top: 70%;
}

.formModalBody {
	background: #fff;
	padding: 90px 100px;
	border-radius: 30px;
}

.modalTitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 40px;
	color: #E61D5C;
	margin-bottom: 20px;
	text-align: center;
}

.modalText {
	color: #4A3185;
	font-size: 16px;
	text-align: center;
	margin-bottom: 35px;
}

.modalFooter {
	text-align: center;
}

.modalSuccess {
	text-align: center;
}

.modalGift .modalDialog {
	max-width: 880px;
}

.giftModalBody {
	background: #fff;
	padding: 100px 120px;
	border-radius: 30px;
}

.modalGiftTitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 38px;
	text-align: center;
	color: #4A3185;
	margin-bottom: 40px;
}

.modalGiftTitle span {
	color: #E61D5C;
}

.modalGiftImg {
	position: relative;
}

.modalGift2 {
	position: absolute;
	top: 57px;
	right: -31px;
}

.modalGift4 {
	position: absolute;
	top: 40px;
	right: -70px;
}

.modalGiftImg {
	margin-bottom: 40px;
	min-height: 220px;
}

.modalGiftInfo {
	text-align: center;
	font-weight: 350;
	font-size: 16px;
	line-height: 24px;
	color: #4A3185;
}

.modalGiftInfo span {
	font-weight: bold;
}

.modalGifts .row .col:first-child:after {
	content: 'или';
	font-weight: bold;
	font-size: 18px;
	color: #E61D5C;
	position: absolute;
	left: 110%;
	top: 86px;
}

.reviewModalImg {
	width: 114px;
}

.reviewModalImg img {
	border-radius: 100%;
}

.reviewModalTitle {
	font-weight: bold;
	font-size: 24px;
	line-height: 40px;
	color: #E61D5C;
}

.reviewModalSpec {
	font-size: 16px;
	color: #727271;
	margin-bottom: 25px;
}

.reviewModalBody {
	border-radius: 30px;
	border: 1px solid;
	padding: 30px;

	font-size: 16px;
	line-height: 24px;
	color: #4A3185;
}

.modalRev .giftModalBody {
	background: #fff;
	padding: 70px 60px;
	border-radius: 30px;
}

.reviewModal {
	padding: 0 50px;
}

.modalRev .swiper-button-prev {
	left: 0;
	top: calc(50% - 22px);
	background-image: url('../img/ico/arrow_4.svg');
	background-size: 18px;
}

.modalRev .swiper-button-next {
	right: 0;
	top: calc(50% - 22px);
	background-image: url('../img/ico/arrow_4.svg');
	background-size: 18px;
	transform: rotate(180deg);
}

.mobilePhone {
	position: absolute;
	right: 20px;
	display: none;
}

.butSecondary br {
    display: none;
}

.equipmentSliderMobile  {
    padding-bottom: 20px;
}

.swiperPaginationMobile .swiper-pagination-bullet-active {
    background: #4A3185;
    width: 15px;
    height: 15px;
    border: none!important;
}

.swiperPaginationMobile .swiper-pagination-bullet {
    border: 2px solid #E61D5C;
}

.equipmentsMobileItems {
    display: none;
}

.childrenSlider .swiper-pagination {
    display: none;
}

.featureItemsSlider {
    display: none;
}

.mainPageImg1 {
	top: 124px;
	right: -89px;
	z-index: 2;
}

.mainPageImg2 {
	z-index: 1;
	top: 80px;
	right: -117px;
}

.mainPageSection {
	background: url('../img/bgLine.png') no-repeat 0 400px #F7FBFD;
}

.mainPageSectionTitle {
	font-weight: 800;
	font-size: 60px;
	color: #4A3185;
	margin-bottom: 20px;
}

.mainPageSectionTitle span {
	color: #E61D5C;
}

.mainPageSection .mainPageSectionTitle {
	width: 130%;
}

.mainPageSectionDesk {
	font-size: 32px;
	color: #4A3185;
	margin-bottom: 35px;
}

.mainPageSectionIcos {
	max-width: 480px;
}

.mainPageSectionIcos .mainSectionIcoItem span {
	color: #4A3185;
}

.mainPageSectionIcos .mainSectionIcoItem {
	margin-bottom: 25px;
}

.mainPageSectionIcos {
	margin-bottom: 60px;
}

.mainPageSection .linkVideos {
	position: relative;
	margin-left: 30px;
}

.mainVideoText {
	position: absolute;
	top: 14px;
	left: 80px;
	width: 160px;
	font-weight: bold;
	font-size: 20px;
	color: #4A3185;
	line-height: 20px;
}

.tabsMain {
	max-width: 1100px;
	margin: 0 auto;
}

.tabsMain li {
	position: relative;
	padding-left: 80px;
}

.tabsMain li:first-child:before {
	content: '';
	position: absolute;
	background: url('../img/tabsMain/4.svg') no-repeat center;
	width: 78px;
	height: 35px;
	left: 0;
	top: 3px;
}


.tabsMain li:nth-child(2):before {
	content: '';
	position: absolute;
	background: url('../img/tabsMain/5.svg') no-repeat center;
	width: 100px;
	height: 100px;
	left: -7px;
	top: -28px;
}

.tabsMain li:nth-child(3):before {
	content: '';
	position: absolute;
	background: url('../img/tabsMain/6.svg') no-repeat center;
	width: 33px;
	height: 31px;
	left: 33px;
	top: 6px;
}

.tabsMain li a {
	font-weight: bold;
	font-size: 26px;
	color: #4A3185;
	padding-bottom: 10px;

	border-bottom: 4px solid transparent;
}

.tabsMain li.active a {
	color: #E61D5C;
	border-bottom: 4px solid #E61D5C;
}

.tabsMain li:hover a {
	color: #E61D5C;
}

.tabsMainImg {
	margin-left: -80px;
}

.tabsMainLinkVideos {
	position: absolute;
	right: 166px;
	bottom: 65px;
}

.tabsMainParallaxImg1 {
	left: -19px;
	top: 532px;
}

.tabsMainParallaxImg2 {
	right: -100px;
	top: 312px;
}

.tabsMainTitle {
	font-weight: bold;
	font-size: 34px;
	color: #4A3185;
	margin-bottom: 50px;
}

.tabsMainIcons {
	margin-bottom: 50px;
	max-width: 85%;
}

.tabsMainIcoItem {
	display: inline-flex;
	align-items: start;
}

.tabsMainIcoItem div {
	min-width: 43px;
}

.tabsMainIcoItem span {
	padding-left: 15px;
	font-size: 16px;
	line-height: 24px;
	color: #4A3185;
}

.tabsMainText {
	max-width: 75%;
	font-size: 16px;
	color: #4A3185;
	margin-bottom: 40px;
}

.mainPageProductsSection {
	padding-bottom: 80px;
}

.workSection {
	background: url('../img/mainBg2.jpg') no-repeat center;
	background-size: cover;
	padding: 120px 0 180px 0;
}

.workItems {
	text-align: center;
	max-width: 630px;
	margin: 0 auto;
	color: #fff;
}

.workItemsTitle {
	font-weight: bold;
	font-size: 42px;
	color: #FFFFFF;
	margin-bottom: 40px;
}

.workItemsImg {
	position: relative;
	margin-bottom: 60px;
}

.workItemsImg:before {
	content: '';
	position: absolute;
	background: url('../img/ico/6.svg') no-repeat center;
	width: 98px;
	height: 7px;
	left: 27%;
	top: 26px;
}

.workItemsImg:after {
	content: '';
	position: absolute;
	background: url('../img/ico/6.svg') no-repeat center;
	width: 98px;
	height: 7px;
	right: 27%;
	top: 26px;
}

.workItemsText {
	font-size: 24px;
	line-height: 34px;
	color: #FFFFFF;
}

.workNumbersSection {
	background: url('../img/mainBg3.png') no-repeat bottom center #fff;
	padding: 50px 0 160px 0;
}

.workNumberItem {
	display: inline-flex;
	width: 100%;
	justify-content: center;
}

.workNumber {
	background: linear-gradient(113.06deg, #FADDE6 0%, #C8B5F7 100%);
	-webkit-background-clip: text;  /* подробнее про background-clip */
	color: transparent;
	font-size: 150px;
	font-weight: 800;
	line-height: 135px;
}

.workNumberInfo {
	padding-left: 10px;
	font-weight: bold;
	font-size: 22px;
	color: #4A3185;
	line-height: 24px;
	margin-top: 25px;
}

.workNumberItems {
	padding-bottom: 180px;
	position: relative;
}

.workNumberItems:after {
	content: '';
	position: absolute;
	background: url('../img/ico/7.svg') no-repeat center;
	width: 98px;
	height: 7px;
	left: 48%;
	bottom: 90px;
}

.workFeatureItem {
	display: inline-flex;
	width: 100%;
	justify-content: center;
}

.workFeatureText {
	max-width: 75%;
	padding-left: 30px;
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	color: #4A3185;
}

.borisSection {
	background: #fff;
	padding-top: 60px;
}

.borisTextTitle {
	color: #4A3185;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
}

.borisTextTitle span {
	color: #E61D5C;
}

.borisText {
	font-size: 16px;
	color: #4A3185;
}

.borisTextItems {
	padding-left: 50px;
}

.borisImg {
	text-align: center;
	position: relative;
	z-index: 3;
}

.borisImgShape {
	position: absolute;
	z-index: 0;
	top: 105px;
	left: -39px;
}

.borisText {
	margin-bottom: 30px;
}

.borisFooter {
	display: inline-flex;
	align-items: end;
}

.borisFooterTitle {
	font-weight: 350;
	font-size: 16px;
	color: #727271;
	padding-left: 30px;
}

.partnersSection {
	padding: 80px 0;
}

.partnersItem {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	margin: 40px 0;
}

.partnersBut {
	text-align: center;
}

.partnerSection {
	margin-top: 95px;
	padding-top: 50px;
	padding-bottom: 120px;
}

.pageTitle {
	text-align: center;
	font-weight: bold;
	font-size: 42px;
	color: #4A3185;
	margin-bottom: 25px;
}

.pageTitle span {
	color: #E61D5C;
}

.pageTitleSub {
	text-align: center;
	font-size: 16px;
	color: #4A3185;
	margin-bottom: 90px;

	display: none;
}

.tendersTitle {
	font-weight: bold;
	font-size: 26px;
	line-height: 36px;
	color: #4A3185;
	margin-bottom: 30px;
}

.tendersImgWrap {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.partnersListSection {
	background: #fff;
	padding: 45px 0;
}

.partnersListTitle {
	font-weight: bold;
	font-size: 26px;
	color: #4A3185;
	margin-bottom: 35px;
}

.partnersList li {
	position: relative;
	padding-left: 70px;
	margin-bottom: 25px;
	font-size: 18px;
	color: #4A3185;
}

.partnersList li:before {
	content: '';
	position: absolute;
	background: url('../img/ico/check3.svg') no-repeat center;
	width: 36px;
	height: 36px;
	left: 0;
	top: -6px;
}

.partnersFaqSection {
	padding: 50px 0 100px 0;
}

.contactsSection {
	margin-top: 95px;
	padding-top: 30px;
	padding-bottom: 20px;
}

#map {
	height: 600px;
	width: 100%;
}

.mapSection .container {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 2;
}

.mapContacts {
	background: #FFFFFF;
	border-radius: 30px;
	width: 390px;
	padding: 50px 35px;
	pointer-events: all;
}

.mapContactsGroup {
	font-size: 18px;
	line-height: 26px;
	color: #4A3185;
	font-weight: bold;
	margin-bottom: 25px;
}

.mapContactsGroup .tel, .mapContactsGroup .mail {
	display: inline-block;
}

.mapContactsGroup span {
	font-weight: normal;
}

.mapContactsBut {
	margin-top: 40px;
}

.tabsForm {
	margin-bottom: 35px;
}

.tabsForm li {
	padding: 0 15px;
}

.tabsForm li a {
	font-weight: bold;
	font-size: 20px;
	color: #4A3185;
	padding-bottom: 3px;
	border-bottom: 4px solid transparent;
}

.tabsForm li.active a {
	border-color: #E61D5C;
	color: #E61D5C;
}

.upload {
	width: 100%;
	opacity: 0;
	height: 0;
}

.fileButton {
	font-size: 16px;
	line-height: 20px;
	color: #4A3185;
	position: relative;
	display: block;
}

.fileButton:after {
	content: '';
	position: absolute;
	background: url('../img/ico/file.svg') no-repeat center;
	width: 14px;
	height: 28px;
	right: 0;
	top: 0;
}

.fileLabel {
	color: #E61D5C;
	font-size: 14px;
	margin-top: 10px;
}

.partnerInnerText p {
    font-size: 16px;
    line-height: 30px;
    color: #4A3185;
}

.partnerInnerItems {
    text-align: right;
}

.partnerInnerTitle {
    font-weight: bold;
    font-size: 26px;
    color: #4A3185;
    margin-bottom: 15px;
}

.partnerInnerNumber {
    font-weight: bold;
    font-size: 22px;
    color: #E61D5C;
    margin-bottom: 15px;
}

.partnerInnerWrap {
    padding: 30px 0 80px 0;
}

.partnerMapImage path {
    fill: #C2B5DF;
    transition: all .2s;
    cursor: pointer;
}

.partnerMapImage path:hover {
    fill: #E61D5C;
    position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
	background: #fff;
	border: 3px solid red;
	border-radius: 6px;
	box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);
}

.partnerMapSection {
    padding: 20px 0;
    background: #fff;
}

.partnersLogosSection {
    padding: 60px 0;
}

.partnersLogoItem {
    margin-bottom: 60px;
}

.partnersLogoImg {
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partnersLogoInfo {
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    color: #4A3185;
}

.modalFooterTextPolitics {
	text-align: center;

}

.modalFooterTextPolitics a {
	color: #4A3185;
}



	/* ============================ Подвал */
.footer {
	padding: 40px 0;
	background: #F7FBFD;
}

.logoFooterTitle {
	display: block;
	padding-left: 75px;
	padding-top: 10px;
}

.logoSocBlock {
	text-align: center;
}

.hidden {
	display: none;
}

.logoSocItem {
	text-decoration: none;
	padding: 0 8px;
}

.linkPolitics {
	font-size: 16px;
	line-height: 28px;
	color: #4A3185;
	text-decoration: none;
}

.logoFootBlock {
	padding-left: 10%;
}

.logoFootImg {
	display: inline-block;
	padding-right: 15px;
}

.logoFootImg img {
	height: 30px
}

.tendersImg {
	display: inline-flex;
	padding-right: 30px;
    margin-bottom: 15px;
}

.logoFootBlockTitle {
	font-size: 16px;
	color: #727271;
	margin-bottom: 10px;
}

.footPerson {
	font-size: 14px;
	line-height: 30px;
	color: #727271;
	padding-top: 10px;
	padding-left: 25px;
}

.logoLink {
	padding-left: 25px;
}


.equipmentSection {
    margin-top: 95px;
    padding-top: 50px;
    padding-bottom: 42px;
}

.equipmentSection .pageTitleSub {
	margin-bottom: 0;
}

.equipmentItem {
    background: #FFFFFF;
    border-radius: 30px;
    width: 100%;
    max-width: 1288px;
    margin: 0 auto;
    position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 50px 40px;
	margin-bottom: 30px;
}

.equipmentItem > div {
	width: 50%;
	position: relative;
}

.equipmentItemLeft {
	min-height: 545px;
}

.equipmentItemSliderWrap {
	height: 490px;
	background: #FFFFFF;
    box-shadow: 8px 15px 30px #E1ECF4;
    border-radius: 30px;
    position: absolute;
    top: 50%;
    width: 730px;
    left: -180px;
	transform: translateY(-50%);
}

.equipmentItemSlider {
    height: 490px;
}

.equipmentItemImg {
	width: 100%;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* .equipmentItemImg img {
	max-height: 490px
} */

.equipmentItemTitle {
	font-weight: bold;
    font-size: 26px;
    color: #4A3185;
    margin-bottom: 20px;
}

.equipmentItemPrice {
	margin-bottom: 20px;
	color: #E61D5C;
	font-weight: bold;
	font-size: 26px;
	line-height: 36px;
}

.equipmentItemDesc {
	margin-bottom: 40px;
	max-width: 535px;
}

.equipmentItemBenefits {
    display: flex;
}

.equipmentItemBenefit {
    position: relative;
    padding-left: 60px;
    display: flex;
    align-items: center;
	margin-right: 34px;
	width: calc(33.3333% - 30px);
}

.equipmentItemBenefit:last-child {
	margin-right: 0;
}

.equipmentItemBenefit:before {
	content: '';
	width: 49px;
	height: 49px;
	background: url(../img/benefits.svg);
	position: absolute;
	left: 0;
}

.equipmentItemBenefits, .equipmentItemDesc, .equipmentItemComplectionDesc {
	font-size: 16px;
	color: #4A3185;
}

.equipmentItemComplectionTitle {
	font-style: normal;
	font-weight: bold;
	font-size: 26px;
	line-height: 36px;
	color: #4A3185;
	margin: 40px 0 20px;
}

.equipmentItemComplectionDesc {
    padding-left: 30px;
}

.equipmentItemComplectionDesc:before {
	content: '';
    width: 16px;
    height: 2px;
    background: #4A3185;
    position: absolute;
    top: 10px;
    left: 0;
}

.equipmentItemComplectionItem {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.equipmentItemComplectionDesc {
    padding-left: 30px;
    position: relative;
    padding-right: 50px;
}

.equipmentItemComplectionPrice {
    white-space: nowrap;
    color: #4A3185;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
}

.flickity-viewport	{
	overflow: hidden;
	border-radius: 30px;
}

.flickity-page-dots {
	bottom: -80px !important;
}

.flickity-page-dots .dot {
    width: 22px !important;
    height: 22px !important;
	background: transparent !important;
	position: relative;
}

.flickity-page-dots .dot:before {
	content: '';
    border: 1px solid rgb(230, 29, 92);
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flickity-page-dots .dot.is-selected:before {
	content: '';
	background: rgb(230, 29, 92);
    width: 22px;
	height: 22px;
	transition: width .45s, height .45s, background .45s;
}

.equipmentBottom {
	width: 100% !important;
    text-align: center;
    margin-top: 65px;
}

.moreEquipment {
	text-align: center;
	margin-bottom: 85px;
}

.moreEquipmentDesc {
	font-size: 24px;
	line-height: 34px;
	color: #4A3185;
	margin: 50px 0 24px;
}

.equipmentPageLink {
    text-align: center;
    margin: 60px 0;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    text-decoration-line: underline;
    color: #E61D5C;
}

.equipmentPageLink a {
    text-decoration: none;
    color: #E61D5C;
}

.menusubTitle {
	font-weight: bold;
	font-size: 26px;
	line-height: 36px;
	align-items: center;
	color: #4A3185;
	position: relative;
    width: 100%;
    max-width: 1220px;
    min-height: 1px;
	margin: 0 auto;
	padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.menuLine {
	background: #ecc5df;
	width: 100%;
	margin: 30px auto;
	max-width: 1220px;
	min-height: 1px;
}

.equipmentMenu {
	padding-bottom: 30px;
}

.equipmentMenu li a:before, .equipmentMenu li a:after {
	display: none;
}

@media screen and (max-width: 1600px) {
	.equipmentItemSliderWrap {
		width: 100%;
		left: -80px;
	}

	.equipmentItemSliderWrap, .equipmentItemSlider {
		height: auto;
	}
}

@media screen and (max-width: 1400px) {
	.equipmentItemSliderWrap {
		width: 94%;
		left: 0;
	}
	.topMenu .level1 > li {
    margin-right: 9px;
	}
	.headerLogo {
    margin-right: 15px;
	}
	.headerContacts .tel {
		font-size: 16px;
	}
	.butPrimary {
		font-size: 14px;
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media screen and (max-width: 1319px) {
	.headerContacts .tel {
		font-size: 18px;
	}
	.mobico{
		display: flex;
		width: 186px;
		justify-content: space-between;
		flex-wrap: wrap;
		flex-direction: row;
		margin-top: 20px;
	}
}


@media screen and (max-width: 1070px) {

	.headerContacts .tel {
		font-size: 16px;
	}
	.equipmentItem {
		width: 94%;
	}

	.equipmentItem > div {
		width: 100%;
		position: relative;
	}

	.equipmentItemLeft {
		min-height: auto;
	}

	.equipmentItemSliderWrap {
		width: 100%;
		left: 0;
		max-width: 730px;
		margin: 0 auto;
		position: relative;
		top: 0;
		transform: translateY(0);
		margin-bottom: 105px;
	}

	.equipmentItemComplectionItem {
		justify-content: space-between;
	}

	.menusubTitle {
		font-size: 24px;
		line-height: 34px;
		align-items: normal;
		margin: 0 auto;
		padding-top: 0;
		text-align: left;
		padding-bottom: 30px;
	}

	.linkItemTitle {
		margin-left: 0;
	}

	.linkItemImg {
		min-height: auto;
		margin-top: 0;
		width: 30%;
		max-width: 110px;
	}

	.linkItemImg img {
		max-width: 110px;
	}
	.headerTop__basket {
    display: none;
	}
}

@media screen and (max-width: 768px) {
	.equipmentItemBenefits {
		flex-wrap: wrap;
	}

	.equipmentItemBenefit {
		margin-right: 0;
		width: 100%;
		margin-bottom: 45px;
	}
}

@media screen and (max-width: 480px) {
	.equipmentItem {
		padding: 20px;
	}

	.equipmentItemComplectionItem {
		flex-wrap: wrap;
	}

	.equipmentItemComplectionPrice {
		padding-left: 30px;
	}
	
}
/* 25.06.21 */
.frame-link{
	position: relative;
	z-index: 50;
	text-align: center;
	margin-top: 5px;
}
.frame-link a{
	color: #4A3185;
	font-size: 20px;
    font-weight: 300;
	text-decoration: none;
	transition: .3s;
}
.frame-link a:hover{
	color: #E61D5C;
}
/* 28.06.2021 */
.equipmentBut--mt-custom{
	margin: 20px 0 30px !important;
	position: relative;
	z-index: 50;
}
.equipmentBut--mt-custom a{
	white-space: normal;
}
.equipmentBut--mt-custom .butIcoWrap{
	flex-shrink: 0;
}

.flickity-viewport{
	height: 490px !important;
}
@media (max-width: 569px){
.flickity-viewport {
    height: 200px!important;
}
}



:root {
  --e-5007-e: #E5007E;
	--e-61-d-5-c: #E61D5C;
  --Linear: linear-gradient(rgba(81, 49, 133, 1), rgba(225, 30, 93, 1));
  --linear2: linear-gradient(rgb(255, 222, 232), rgb(192, 203, 246));
  --white: #fff;
	--SP-violet: #4A3185;
	--c312782: #312782;
	--Style: #A8A8A8;
	--light-gray: #F4F3F1;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

*:focus-visible {
  outline: 0;
}

button {
  background-color: transparent;
  border: transparent;
  cursor: pointer;
}

html {
  min-width: 300px;
  background-color: var(--white);
}

.header__catalog-menu {
  padding: 50px 0;
  background-color: var(--white);
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.05);
}

.catalog-menu__container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.topMenu .catalog-menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  padding: 12px 22px;
  max-width: 180px;
  color: var(--e-5007-e, #E5007E);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  background-color: var(--white);
  border-radius: 100px;
  border: 2px solid var(--e-5007-e, #E5007E);
}

.catalog-menu__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 66px;
  row-gap: 47px;
}

.catalog-menu__item {
  display: flex;
  justify-content: center;
}

.catalog-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 48px;
  width: 100%;
  padding-left: 80px;
  border: 2px solid transparent;
  color: #4A3185;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; 
}

.catalog-menu__link svg {
  position: absolute;
  left: 0;
  top: auto;
  bottom: auto;
  margin-right: 14px;
	overflow: visible;
}

.topMenu .catalog-menu__link-up {
	align-items: start;
	min-height: 28px;
  
}

.catalog-menu__link-up svg {
  top: 0;
}

.catalog-menu__item {
  display: flex;
  flex-direction: column;
}

.catalog-menu__submenu {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
}

.catalog-menu__sub-item {
  margin-bottom: 8px;
}

.catalog-menu__sub-link {
  display: flex;
  align-items: center;
  padding-left: 24px;
  color: #4A3185;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  background-image: url(../img/Arrow.svg);
  background-repeat: no-repeat;
  background-position: left center;
}


/* Страница Каталог */



.section-main {
	margin-top: 106px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-main__container {
	display: flex;
	justify-content: space-between;
	padding-left: 35px;
	padding-right: 35px;
	max-width: 1255px;
}

.left-content {
	width: 33%;
	margin-right: 67px;
}

.section-main__list {
	display: flex;
	flex-direction: column;
	max-width: 360px;
}

.section-main__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
	/*height: 62px;*/
	background-color: var(--white);
	border-radius: 20px;
}

.section-main__item-sub {
	min-height: 87px;
}

.right-content__dropdown-btn .section-main__item-sub{
	min-height: auto;
}

.right-content__dropdown-btn .section-main__link-up{
	margin-bottom: 0;
}

.section-main__item__active {
	background: linear-gradient(35deg, rgba(81, 49, 133, 1), rgba(225, 30, 93, 1));
}

.section-main__item__active .section-main__link {
  display: flex;
	align-items: center;
	width: calc(100% - 4px);
  height: calc(100% - 4px);
	border-radius: 20px;
	background: var(--white);
}

.section-main__item-sub.section-main__item__active .section-main__link {
  display: flex;
	align-items: center;
	width: calc(100% - 4px);
  height: calc(100% - 4px);
	border-radius: 20px;
	background: var(--white);
}



.section-main__link {
	position: relative;
	display: flex;
	align-items: center;
  width: 100%;
	height: 100%;
	padding: 16px 30px 16px 0;
	color: #4A3185;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
	cursor: pointer;
	margin-top: 2px;
	margin-bottom: 2px;

}



.section-main__link-up {
	display: flex;
	align-items: start;
	margin-bottom: 11px;
	padding-top: 0;
	padding-bottom: 0;
}

.section-main__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 100%;
}

.section-main__submenu {
  display: flex;
  flex-direction: column;
}

.section-main__sub-item {
  margin-bottom: 8px;
}

.section-main__sub-link {
  display: flex;
  align-items: center;
  padding-left: 24px;
  color: #4A3185;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  background-image: url(../img/Arrow.svg);
  background-repeat: no-repeat;
  background-position: left center;
}

.right-content {
	display: none;
}

.right-content__active {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 69%;
}

.right-content__top {
	position: relative;
	margin-bottom: 50px;
	padding: 40px;
	color: var(--light-gray);
	border-radius: 30px;
	background: linear-gradient(93deg, #876ACC 0%, #523286 101.06%);
	overflow: hidden;
}

.right-content__top-content {
	position: relative;
	z-index: 3;
}

.cosmo-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0px;
	width: 337px;
	height: 295px;
	background-image: url(../img/categories/cosmo-group.svg);
	border-top-right-radius: 27px;
	background-repeat: no-repeat;
}

.meteo-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	right: -131px;
	width: 360px;
	height: 461px;
	background-image: url(../img/categories/meteo-group.svg);
	border-top-right-radius: 27px;
	background-repeat: no-repeat;
}

.muz-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 26px;
	right: 14px;
	width: 204px;
	height: 328px;
	background-image: url(../img/categories/muz-group.svg);
	border-top-right-radius: 27px;
	background-repeat: no-repeat;
}

.zvezda-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 38px;
	right: -36px;
	width: 304px;
	height: 337px;
	background-image: url(../img/categories/zvezda-group.svg);
	border-top-right-radius: 27px;
	background-repeat: no-repeat;
}

.modul-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	right: 0;
	width: 260px;
	height: 100%;
	background-image: url(../img/categories/modul-group.svg);
	background-repeat: no-repeat;
}

.busy-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: -1px;
	right: -48px;
	width: 245px;
	height: 245px;
	background-image: url(../img/categories/busy-group.svg);
	background-repeat: no-repeat;
}

.game-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: -7px;
	right: -9px;
	width: 242px;
	height: 211px;
	background-image: url(../img/categories/game-group.svg);
	background-repeat: no-repeat;
}

.sandbox-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: auto;
	bottom: 34px;
	right: 30px;
	width: 193px;
	height: 193px;
	background-image: url(../img/categories/sandbox-group.svg);
	background-repeat: no-repeat;
}

.fence-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	top: 45px;
	right: -31px;
	width: 267px;
	height: 267px;
	background-image: url(../img/categories/fence-group.svg);
	background-repeat: no-repeat;
}

.science-content::after {
	content: "";
	position: absolute;
	z-index: 2;
	bottom: 15px;
	right: 0;
	width: 237px;
	height: 240px;
	background-image: url(../img/categories/science-group.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.right-content__heading {
	margin-bottom: 14px;
	font-size: 40px;
	font-style: normal;
	font-weight: 800;
	line-height: 100%;
}

.right-content__descr {
	display: inline-block;
	margin-bottom: 31px;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
}

.right-content__descr-sm {
	margin-bottom: 60px;
}

.right-content__descr-width {
	width: 70%;
}

.right-content__icons {
	width: 74%;
	margin-bottom: 22px;
}

.right-content__img {
	margin-bottom: 72px;
}

.img-cosmo {
	width: 296px;
	height: 238px;
}

.img-meteo {
	width: 296px;
	height: 199px;
}

.img-muz {
	width: 296px;
	height: 176px;
}

.right-content__listPlus {
	display: flex;
	justify-content: space-between;
}

.right-content__listPlace {
	margin-top: 0;
	margin-left: 0;
	width: 50%;
}

.right-content__listPlace-1 {
	margin-right: 30px;
}

.zvezda-content__swiper, .modul-content__swiper {
	width: 100%;
	overflow: hidden;
}

.zvezda-content__swiper {
	width: 100%;
	overflow: hidden;
	margin-bottom: 48px;
}

.zvezda-content__slide {
	border-radius: 20px;
}

.right-content__select {
	display: none;
}

.modul-content__swiper {
	position: relative;
	overflow: hidden;
	margin-bottom: 53px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modul-content__slide img {
	border-radius: 30px;
}

.modul-content__navigation {
  position: relative;
  z-index: 6;
  display: block;
  left: 0;
  right: 0;
  top: 100px;
  width: 100%;
  height: 32px;
}

.modul-content__btn {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.modul-content__btn-left {
  left: -35px;
  background-image: url(/app/img/categories/btn-left.svg);
}

.modul-content__btn-right {
  right: -35px;
  background-image: url(/app/img/categories/btn-right.svg);
}

.modul-content__btn-left.swiper-button-disabled {
	background-image: url(/app/img/categories/left-dis.svg);
}

.modul-content__btn-right.swiper-button-disabled {
	background-image: url(/app/img/categories/right-dis.svg);
}

.busy-content__swiper {
	overflow: hidden;
	width: 100%;
	margin-bottom: 50px;
}

.right-content__link-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.right-content__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - 8px);
	height: 73px;
	border-radius: 20px;
	background: linear-gradient(#FFDEE8, rgb(192, 203, 246));
	margin-bottom: 17px;
}

.right-content__link-bg {
	display: flex;
	align-items: center;
	width: calc(100% - 4px);
  height: calc(100% - 4px);
	border-radius: 20px;
	background: var(--white);
	justify-content: space-between;
	padding-right: 57px;
}


.right-content__link-img {
	margin-top: auto;
	margin-right: 11px;
	padding-left: 18px;
}

.right-content__link-text {
	position: relative;
	display: block;
	width: 66%;
	color: #4A3185;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

.right-content__link-text::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -43px;
	width: 44px;
	height: 10px;
	background-image: url(/app/img/categories/Arrow-eco.svg);
	background-repeat: no-repeat;
	background-position: center;
}

.right-content__dropdown {
	display: none;
}

/* Страница Комплектации */

.sectionEquipment {
	padding-top: 80px;
	padding-bottom: 0;
}

.sectionEquipment-container {
	max-width: 1608px;
}

.sectionEquipment__content {
	display: flex;
	justify-content: space-between;
}

.sectionEquipment__left {
	border-radius: 30px;
	background-color: var(--white);
	margin-right: 40px;
	padding: 40px;
	max-width: 340px;
	height: max-content;
}

.sectionEquipment__left-form {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.choices {
	width: 260px;
	height: 30px;
	margin: 0;
	border-color: var(--white);
}

.choices.is-open {
	background-color: #fff;
}

.is-focused .choices__inner, .is-open .choices__inner {
	border: 1px solid var(--white);
}




.js-selected{
	/*background-image: url(/app/img/eco/arrow-up.svg);*/
	background-repeat: no-repeat;
	background-position: 95% 0;
	background-color: transparent;
	margin-bottom: 1.7rem;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
	width: 100%;
}


.select-wrap{
	position: relative;

}
.select-wrap:after{
	content: '';
	height: 0;
	width: 0;
	border-style: solid;
	border-color: #333 transparent transparent;
	border-width: 5px;
	position: absolute;
	right: 11.5px;
	top: 50%;
	margin-top: -2.5px;
	pointer-events: none;
}

.select-wrap:after,
.choices[data-type*=select-one]:after {
	position: absolute;
	height: 11px;
	width: 15px;
	z-index: 3;
	top: 8px;
	border-color: transparent;
	background-image: url(/app/img/eco/arrow-up.svg);
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(-180deg);
}

.choices[data-type*=select-one].is-open:after {
	top: 28px;
	border-color: transparent;
	transform: none;
}

.choices__inner {
	position: relative;
	background-color: #fff;
	border-color: var(--white);
	z-index: 2;
}

.is-open .choices__inner {
	border-radius: 10px;
}

.choices__placeholder {
	opacity: 1;
}

.choices__item--selectable.choices__placeholder {
	color: var(--e-61-d-5-c);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; 
}

.choices__list--dropdown .choices__placeholder {
	display: none;
}

.choices__list--dropdown { 
	padding-top: 22px; 
	top: calc(100% - 12px);
}

.js_shop_search_param .choices__list--dropdown {
	padding-top: 0;
	top: 0;
}

.choices__list--dropdown.is-active {
	border: 1px solid var(--white);
	overflow-y: scroll;
}

.choices__list--dropdown .choices__item {
	padding: 6px 6px 6px 0;
	color: #4A3185;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; 
}

.choices[data-type*=select-one] .choices__inner {
	padding: 0;
}

.choices__list--single {
	padding-left: 0;
}

.choices__item--selectable {
	color: #E61D5C;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}


.custom_scroll {
	width: 254px;
	height: 350px;
}

.simplebar-wrapper {
	top: 20px;
}
.simplebar-content-wrapper {
	overflow-y: scroll;
	border-radius: 20px;
}
.simplebar-scrollbar::before {
	background-color: #4A3185;
	width: 3px;
}
.simplebar-track, .simplebar-track.simplebar-vertical {
	top: 82px;
	bottom: 13px;
	width: 9px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
	right: 1px;
	left: 1px;
	background: #4A3185;
	opacity: 1;
	width: 9px;
	border-radius: 0;
}
.simplebar-track.simplebar-vertical {
	top: 82px;
	bottom: 13px;
	right: 14px;
	width: 9px;
	background: var(--light-gray);
	border-radius: 0;
}

.sectionEquipment__left-title {
	display: block;
	margin-bottom: 12px;
	color: var(--SP-violet);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; 
}

.checkbox__list {
	margin-bottom: 18px;
}

.checkbox__item {
	position: relative;
	display: inline-block;
	width: 100%;
	margin-bottom: 12px;
	padding-left: 16px;
	color: var(--Style);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.checkbox__item:last-child {
	margin-bottom: 0;
}

.checkbox__item_mb {
	margin-bottom: 18px;
}

label {
	cursor: pointer;
	padding-left: 0;
}

.sectionEquipment__check {
	display: none;
	margin-left: 9px;
}

.sectionEquipment__check + span {
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0;
	top: 6px;
	border-radius: 2px;
	border: 1px solid var(--Style);
}

.sectionEquipment__check + span:before {
	content: '';
	background: url(/app/img/eco/Checkbox.svg) no-repeat;
	background-position: center;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin-left: -1px;
	margin-top: -1px;
	opacity: 0;
	border-radius: 2px;
	transition: opacity 0.3s ease-in-out;
}

.sectionEquipment__check:checked + span:before {
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.sectionEquipment__left-link {
	margin-bottom: 37px;
	color: var(--e-61-d-5-c);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-decoration-line: underline;
}

.sectionEquipment__form-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 62px;
	margin-bottom: 20px;
	padding: 10px 60px;
	background-color:  var(--c312782);
	border-radius: 100px;
	color: var(--white);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.sectionEquipment__right {
	display: flex;
	flex-direction: column;
}

.sectionEquipment__right-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr;
	gap: 20px;
	margin-bottom: 30px;
	width: 100%;
}

.sectionEquipment__card {
	display: flex;
	flex-direction: column;
	background-color: var(--white);
	border-radius: 30px;
	padding: 30px 11px 154px;
	/* height: max-content; */
	min-height: 550px;
}

.sectionEquipment__card-img {
	padding-left: 5px;
	padding-right: 5px;
	margin: 0 auto 20px;
}

.seceq_img .sectionEquipment__card-img{
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
}

.price_more{
	position: absolute;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	left: 0;
	padding: 11px;
}

.seceq_img {
	height: 250px;
	display: block;
	overflow: hidden;
}

@media (max-width: 768px) {
	.seceq_img{
		height: auto;
	}
}


.sectionEquipment__card-name {
	display: block;
	margin-bottom: 4px;
	color: var(--SP-violet);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;

}


.sectionEquipment__card-art {
	display: block;
	margin-bottom: 14px;
	color: #393938;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.sectionEquipment__card-price {
	display: block;
	margin-bottom: 20px;
	color: var(--SP-violet);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.sectionEquipment__btn-wrap {
	margin-top: auto;
}

.sectionEquipment__btn-buy {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	margin-bottom: 20px;
	padding: 10px 60px;
	height: 62px;
	border-radius: 100px;
	background-color: var(--c312782);
	color: var(--white);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.sectionEquipment__btn-mng {
	padding-left: 20px;
	padding-right: 20px;
}

.sectionEquipment__btn-more {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 60px;
	height: 62px;
	border-radius: 100px;
	background-color: var(--white);
	color: var(--SP-violet);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	box-shadow: 8px 15px 30px 0px rgba(225, 236, 244, 0.25);
}

.sectionEquipment__pagination {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sectionEquipment__pagination-number {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 36px;
	height: 36px;
	margin-right: 6px;
	border-radius: 100px;
	border: 1px solid var(--light-gray);
	background: var(--white);
	color: var(--SP-violet);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; 
}

.sectionEquipment__pagination-last {
	padding: 16px 25px;
	width: max-content;
}

.sectionEquipment__last-number {
	margin-right: 17px;
}

.sectionEquipment__pagination-active {
	background: var(--SP-violet);
	color: var(--white);
}


.reviewItemVideo {
	border-radius: 30px;
}

.formModalBody_buy {
	padding-top: 75px;
	padding-bottom: 75px;
}

.formModalBody_more {
	padding: 42px 10px;
}

.modalDialog__more {
	max-width: 1154px;
}

.modalMore__but {
	margin-bottom: 30px;
}

.modalMore__heading {
	margin-bottom: 0;
	color: var(--SP-violet);
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.modalMore__art {
	display: block;
	margin-bottom: 21px;
	color: #393938;
	font-size: 21px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.modalMore__price {
	display: block;
	margin-bottom: 30px;
	color: var(--SP-violet);
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; 
}

.sectionEquipment__pagination-more {
	display: none;
}

.sectionEquipment__filter-btn {
	display: none;
}

.sectionEquipment__btn-close {
	display: none;
}


/* Страница Корзина */ 

.section-basket {
	margin-top: 106px;
	padding-top: 60px;
	padding-bottom: 60px;
	background: #F7FBFD;
}

.section-basket__container {
	max-width: 1420px;
}

.section-basket__heading {
	margin-bottom: 30px;
	color: var(--SP-violet);
	text-align: center;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%;
}

.section-basket__content {
	display: flex;
	justify-content: space-between;
}

.section-basket__left {
	display: flex;
	flex-direction: column;
	width: calc(50% - 10px);
	margin-right: 20px;
}

.section-basket__item {
	display: flex;
	position: relative;
	background-color: var(--white);
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px 90px 42px 15px;
}

.section-basket__item:last-child {
	margin-bottom: 0;
}

.section-basket__btn-close {
	position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: url(../img/ico/close.svg) no-repeat center #F4F3F1;
  right: 37px;
  top: 30px;
  z-index: 5;
}

.section-basket__img {
	margin-right: 30px;
	box-shadow: 8px 15px 30px 0px rgba(225, 236, 244, 0.25);
}

.section-basket__item-text {
	display: flex;
	flex-direction: column;
	
}

.section-basket__item-name {
	margin-bottom: 10px;
	color: var(--SP-violet);
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.section-basket__item-art {
	display: block;
	margin-bottom: 20px;
	color: #393938;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.section-basket__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
	margin-bottom: 20px;
  border: 2px solid #E0DEEC;
  border-radius: 10px;
}

.section-basket__number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  color: #393938;
	text-align: center;
	font-size: 21px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border: 2px solid #E0DEEC;
}

.section-basket__minus, .section-basket__plus {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
  width: 38px;
	height: 40px;
	background-position: center;
	background-repeat: no-repeat;
}

.section-basket__minus {
	background-image: url(../img/basket/minus.svg);
}

.section-basket__plus {
	background-image: url(../img/basket/plus.svg);
}

.section-basket__item-price {
	color: var(--SP-violet);
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.section-basket__form {
	display: flex;
	flex-direction: column;
	width: calc(50% - 10px);
	height: max-content;
	padding: 30px 40px;
	background-color: var(--white);
	border-radius: 30px;
}

.section-basket__form-title {
	margin-bottom: 18px;
	color: var(--SP-violet);
	font-size: 21px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.section-basket__but {
	margin-left: auto;
}

.section-basket__form-wrap {
	margin-bottom: 25px;
}


/* Страница Видео */ 

.sectionVideo {
	padding-top: 50px;
	padding-bottom: 50px;
}

.videoItems {
	max-width: 66%;
}

.sectionVideo__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	gap: 20px;
	margin-bottom: 60px;
}

.sectionVideo__item {
	display: flex;
	flex-direction: column;
	padding: 20px 20px 13px;
	background-color: var(--white);
	border-radius: 30px;
}

.sectionVideo__video {
	position: relative;
	border-radius: 10px;
	margin-bottom: 17px;
	min-height: 140px;
	background-image: url(../img/video/video.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.sectionVideo__btn-play {
	position: absolute;
	z-index: 2;
	top: calc(50% - 35px);
	left: calc(50% - 35px);
	width: 70px;
	height: 70px;
	background-image: url(../img/video/play.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.sectionVideo__heading {
	margin-bottom: 17px;
	color: var(--SP-violet);
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.sectionVideo__descr {
	color: #393938;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.sectionVideo__pagination {
	margin-bottom: 0;
}


.modalDialog__main-swiper, .modalDialog__prev-swiper {
	overflow: hidden;
}

.modalDialog__prev-wrap {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	margin-bottom: 40px;
}

.modalDialog__prev-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modalDialog__prev-slide img {
	border-radius: 10px;
	border: 2px solid #F8F8F9;
	min-height: 90px;
	object-fit: contain;
}

.modalDialog__navigation {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 32px;
  width: 100%;
  height: 27px;
}

.modalDialog__btn {
  position: absolute;
  z-index: 2;
  top: 0;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.modalDialog__btn-right {
	right: -37px;
  width: 27px;
  height: 27px;
  background-color: var(--blue-gray-15);
  border-radius: 50%;
  background-image: url(/app/img/eco/nav-right.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.modalDialog__btn-left {
	left: -37px;
  width: 27px;
  height: 27px;
  background-color: var(--blue-gray-15);
  border-radius: 50%;
  background-image: url(/app/img/eco/nav-left.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.modalDialog__btn-left.swiper-button-disabled {
	background-image: url(/app/img/eco/left-btn-dis.svg);
}

.modalDialog__btn-right.swiper-button-disabled {
	background-image: url(/app/img/eco/right-btn-dis.svg);
}


@media screen and (max-width: 1400px) {
	.sectionEquipment__right-list {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.sectionEquipment__card:last-child {
		display: none;
	}
}



@media screen and (max-width: 1319px){
	.catalog-menu__submenu{
		display: none;

	}

	.header__catalog-menu {
		padding: 10px 0;
		border-radius: 20px;

	}
	.open .header__catalog-menu {
		position: relative;
		opacity: 1;
		visibility: visible;
		top: 0;
		box-shadow:none;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	.catalog-menu__btn{
		display: none;
	}
	.catalog-menu__container {
		padding-left: 13px;
		padding-right: 13px;
	}
	.catalog-menu__btn {
		margin-bottom: 24px;
	}
	.catalog-menu__list {
		display: flex;
		flex-direction: row;
		gap: 0;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.catalog-menu__item {
		margin-bottom: 12px;
		padding-top: 0;
		padding-bottom: 0;
		width: 33%;
	}
	.topMenu .level1 .catalog-menu__link,
	.topMenu .level1 .catalog-menu__btn {
		font-size: 16px;
		line-height: 1;
		min-height: 30px;
		margin-top: 12px;
	}


	.catalog-menu__link svg {
		left: 11px;
	}
	.topMenu .level1 .catalog-menu__sub-link {
		margin-bottom: 5px;
		font-size: 16px;
		line-height: 100%;
	}
	.topMenu .level1 .catalog-menu__link-up {
		margin-bottom: 0;
	}

}



@media screen and (max-width: 1200px) {
  .catalog-menu__list {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 40px;
    row-gap: 30px;
  }
	.right-content__active {
		width: 63%;
	}
	.sectionEquipment__left {
		margin-bottom: 20px;
	}
	.sectionEquipment__right {
		width: 70%;
	}
	.sectionEquipment__right-list {
		grid-template-columns: 1fr 1fr;
	}
	.sectionEquipment__card:last-child {
		display: flex;
	}
}

.header .dropdownBut {
	display: none;
}

@media screen and (max-width: 1069px) {



	.header__catalog-menu {
		padding: 10px 0;
		border-radius: 20px;

	}
	.open .header__catalog-menu {
		position: relative;
		opacity: 1;
		visibility: visible;
		top: 0;
		box-shadow:none;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	.catalog-menu__btn{
		display: none;
	}
	.catalog-menu__container {
		padding-left: 13px;
		padding-right: 13px;
	}
	.catalog-menu__btn {
		margin-bottom: 24px;
	}
	.catalog-menu__list {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.catalog-menu__item {
		margin-bottom: 12px;
		padding-top: 0;
		padding-bottom: 0;
	}
	.topMenu .level1 .catalog-menu__link,
	.topMenu .level1 .catalog-menu__btn {
		font-size: 16px;
		line-height: 1;
		min-height: 30px;
		margin-top: 12px;
	}


	.catalog-menu__link svg {
		left: 11px;
	}
	.topMenu .level1 .catalog-menu__sub-link {
		margin-bottom: 5px;
		font-size: 16px;
		line-height: 100%;
	}
	.topMenu .level1 .catalog-menu__link-up {
		margin-bottom: 0;
	}






	.right-content__listPlace-1.listPlace {
		margin-right: 10px;
	}
	.section-main {
    margin-top: 53px;
	}
	.right-content__img {
		margin-left: auto;
		margin-right: auto;
	}
	.left-content {
    width: 34%;
    margin-right: 30px;
	}
	.right-content__active {
		width: 62%;
	}
	.section-main__icon {
    min-width: 75px;
	}
	.cosmo-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 0;
		right: -24px;
		width: 297px;
		height: 100px;
		background-image: url(../img/categories/cosmo-group-mob.svg);
		background-repeat: no-repeat;
	}
	.meteo-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 0;
		right: -88px;
		width: 216px;
		height: 216px;
		margin-left: 20px;
		background-image: url(../img/categories/meteo-group-mob.svg);
		background-repeat: no-repeat;
		opacity: .6;
	}
	.muz-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 0;
		right: 1px;
		width: 274px;
		height: 71px;
		background-image: url(../img/categories/muz-group-mob.svg);
		background-repeat: no-repeat;
	}
	.zvezda-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 0;
		right: -11px;
		width: 297px;
		height: 127px;
		background-image: url(../img/categories/zvezda-group-mob.svg);
		background-repeat: no-repeat;
	}
	.modul-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: auto;
		bottom: -12px;
		right: -16px;
		width: 146px;
		height: 207px;
		background-image: url(../img/categories/modul-group-mob.svg);
		background-repeat: no-repeat;
	}
	.game-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 15px;
		bottom: auto;
		right: -2px;
		width: 113px;
		height: 96px;
		background-image: url(../img/categories/game-group-mob.svg);
		background-repeat: no-repeat;
	}
	.sandbox-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 11px;
		bottom: auto;
		right: 7px;
		width: 55px;
		height: 55px;
		background-image: url(../img/categories/sandbox-group-mob.svg);
		background-repeat: no-repeat;
	}
	.fence-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: auto;
		bottom: 7px;
		right: -13px;
		width: 97px;
		height: 97px;
		background-image: url(../img/categories/fence-group-mob.svg);
		background-repeat: no-repeat;
	}
	.science-content::after {
		content: "";
		position: absolute;
		z-index: 2;
		top: 11px;
		bottom: auto;
		right: 8px;
		width: 59px;
		height: 59px;
		background-image: url(../img/categories/science-group-mob.svg);
		background-repeat: no-repeat;
	}
	.modul-content.right-content__top {
		padding-bottom: 71px;
	}
	.modul-content__btn-right {
		right: -15px;
	}
	.modul-content__btn-left {
		left: -15px;
	}
	.sectionEquipment-container.container {
		padding-left: 16.5px;
		padding-right: 16.5px;
	}
	.sectionEquipment__content {
		flex-wrap: wrap;
	}
	.sectionEquipment__right {
		width: 100%;
	}


	.section-basket {
    margin-top: 55px;
    padding-top: 50px;
    padding-bottom: 50px;
	}
	.section-basket__heading {
		font-size: 36px;
	}
	.section-basket__content {
		flex-direction: column;
	}
	.section-basket__left, .section-basket__form {
		width: 100%;
		max-width: 700px;
		margin-bottom: 30px;
	}


	.sectionVideo__list {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 15px;
	}
	.sectionVideo__item:last-child {
		display: none;
	}
}  

@media screen and (max-width: 768px) {
	.section-main__container.container {
		flex-direction: column;
		padding-left: 10px;
		padding-right: 10px;
	}
	.section-main {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.left-content {
		display: none;
	}
	.right-content__active {
		width: 100%;
	}
	.right-content__top {
		padding: 75px 20px 26px;
		margin-bottom: 30px;
	}
	.right-content__heading {
		font-size: 24px;
	}
	.right-content__descr {
		line-height: 24px;
	}
	.right-content__btn.butSecondary {
		padding: 20px 40px;
	}
	.right-content__listPlus {
		flex-direction: column;
	}
	.right-content__listPlace.listPlace {
		width: 100%;
		margin-right: 0;
	}
	.right-content__select {
		display: block;
	}
	.zvezda-content__swiper {
		margin-bottom: 34px;
	}
	.busy-content__slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.busy-content__swiper {
		padding-left: 30px;
		padding-right: 30px;
		overflow: hidden;
	}
	.modul-content__navigation {
		top: 105px;
	}
	.modul-content__btn-right {
		right: 0px;
	}
	.modul-content__btn-left {
		left: 0px;
	}
	.right-content__descr-sm {
		margin-bottom: 16px;
	}
	.right-content__descr-width {
		width: 100%;
	}

	.right-content__dropdown {
		position: relative;
		display: flex;
		flex-direction: column;
	}
	.right-content__dropdown-btn {
		position: relative;
		z-index: 25;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 62px;
		margin-bottom: 20px;
		padding: 0;
		border-radius: 20px;
		background: linear-gradient(35deg, rgba(81, 49, 133, 1), rgba(225, 30, 93, 1));
	}
	.right-content__dropdown-btn .section-main__link {
		position: relative;
		z-index: 25;
		background: var(--white);
		justify-content: start;
		width: calc(100% - 4px);
    height: calc(100% - 4px);
		padding-left: 16px;
		border-radius: 20px;
	}
	.right-content__dropdown-btn .section-main__link::after {
		content: "";
		position: absolute;
		top: 26px;
		right: 10px;
		width: 17px;
		height: 10px;
		background-image: url(/app/img/categories/arrow_1_1.svg);
		background-position: center;
		background-repeat: no-repeat;
	}
	.right-content__dropdown-btn .section-main__submenu{
		display: none;

	}
	.right-content__dropdown-btn .section-main__link__active::after {
		background-image: url(/app/img/categories/arrow_1_up.svg);
	}
	.right-content__dropdown-btn .section-main__link.section-main__link-up::after {
		display: none;
	}
	.body-scroll {
		overflow-y: hidden;
	}
	.right-content__dropdown-menu {
		position: absolute;
		z-index: 1;
		top: 0px;
		left: 0;
		right: 20px;
		width: 100%;
		height: 836px;
		padding-top: 62px;
		padding-bottom: 13px;
		background-color: var(--white);
		border-radius: 20px;
		overflow: hidden;
		opacity: 0;
	}
	.right-content__dropdown-menu__active {
		position: absolute;
    top: 2px;
    right: 20px;
    bottom: 10px;
    right: 0;
    padding: 30px; 
		padding-top: 60px;
    overflow-y: scroll;
    overflow-x: hidden;
		opacity: 1;
		z-index: 23;
	}
	#simple-bar {
		border: 1px solid var(--SP-violet);
		width: 80%;
		max-height: 200px;
		min-height: 100px;
		margin: 50px auto;
	}


	




	.section-main__link .section-main__item {
		display: none;
	}
	.section-main__link .section-main__item__active {
		position: absolute;
		z-index: 30;
		top: -20px;
		left: -20px;
		right: -20px;
		display: flex;
		background: linear-gradient(35deg, rgba(81, 49, 133, 1), rgba(225, 30, 93, 1));
		width: 100%;
		height: 100%;
		margin: 20px;
		background: var(--white);
	}
	.right-content__dropdown-menu__active .section-main__item__active {
		background: var(--white);
	}
	.modalMore__right {
		display: flex;
		flex-direction: column;
	}
	.modalMore__but {
		order: -1;
		max-width: 280px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 22px;
	}
	.modalMore__heading {
		margin-bottom: 10px;
		font-size: 18px;
	}
	.modalMore__art {
		margin-bottom: 2px;
		font-size: 18px;
	}
	.modalMore__price {
		margin-bottom: 12px;
	}

	.sectionEquipment__content {
		flex-direction: column;
	}
	.sectionEquipment__right {
		width: 100%;
	}
	.sectionEquipment__right-list {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.sectionEquipment__card {
		align-items: center;
		margin-bottom: 20px;

	}
	.sectionEquipment__card:nth-child(n + 5) {
		display: none;
	}
	.sectionEquipment__pagination-more {
		display: flex;
	}
	.sectionEquipment__pagination-mob {
		display: none;
	}
	.sectionEquipment__pagination {
		flex-wrap: wrap;
	}
	.sectionEquipment__pagination-number {
		margin-bottom: 25px;
	}
	.sectionEquipment__pagination-last {
		max-width: 100%;
		margin-bottom: 0;
	}
	.sectionEquipment__pagination-more {
		margin-right: 0;
	}
	.cosmoTitle {
		padding-top: 15px;
	}
	.sectionEquipment__filter-btn {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
		padding: 23px 20px 23px 44px;
		background-color: var(--white);
		border-radius: 20px;
		color: var(--SP-violet);
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 100%;
		background-image: url(/app/img/eco/filter-icon.svg);
		background-repeat: no-repeat;
		background-position: left 20px center;
	}
	.sectionEquipment__left {
		display: none;
	}
	.sectionEquipment__left.active {
		display: flex;
		margin-bottom: 20px;
		margin-right: 0;
		padding: 40px 30px;
		max-width: 100%;
	}
	.sectionEquipment__btns-filter {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.sectionEquipment__btn-close.active {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		background-color: var(--white);
		background-image: url(/app/img/eco/close.svg);
		background-position: center;
		background-repeat: no-repeat;
	}
	.sectionEquipment__form-btn, .sectionEquipment__btn-reset {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}
	.sectionEquipment__left-form .choices {
		width: 255px
	}


	.section-basket__heading {
		text-align: left;
	}
	.section-basket__item {
		flex-direction: column;
		padding: 33px 50px 33px 12px;
	}
	.section-basket__img {
		max-width: 170px;
		max-height: 170px;
		margin-bottom: 30px;
	}
	.section-basket__item-name {
		margin-bottom: 14px;
		font-size: 18px;
	}
	.section-basket__item-art {
		margin-bottom: 17px;
		font-size: 18px;
	}
	.section-basket__item-price {
		font-size: 18px;
	}
	.section-basket__btn-close {
		top: 10px;
		right: 10px;
	}
	.section-basket__form {
		padding: 20px 10px;
	}
	.section-basket__form-title {
		margin-bottom: 20px;
	}
	.section-basket__but.butSecondary {
		margin-right: auto;
		margin-left: 0;
		padding: 20px 40px;
		font-size: 16px;
		line-height: 1;
	}

	.sectionVideo__container.container {
		padding-left: 16px;
		padding-right: 16px;
	}
	.mainSectionItems.videoItems {
		max-width: 100%;
		height: 290px;
	}
	.videoTitle {
		padding-top: 44px;
	}
	.sectionVideo__list {
		display: flex;
		flex-direction: column;
		gap: 0;
		margin-bottom: 30px;
	}
	.sectionVideo__item {
		margin-bottom: 20px;
	}
	.sectionVideo__item:nth-child(n + 5) {
		display: none;
	}

	.modalDialog__prev-wrap {
		width: 100%;
	}
	.modalDialog__navigation {
		display: none;
	}
}

.section-basket,
.js_shop_id .error{
	font-size: 16px;
}