/**/
/**/
:root {
	--font-family: "Montserrat", sans-serif;
	--second-family: "Ruberoid", sans-serif;
	--third-family: "Proxima Nova", sans-serif;
	--font3: "Inter", sans-serif;
	--font4: "NauryzRedKeds", sans-serif;
	--font5: "Qwitcher Grypen", sans-serif;
	--font6: "Pilowlava", sans-serif;
	--font7: "Exo 2", sans-serif;
	--font8: "Single Day", sans-serif;
	--font9: "SF Pro Text", sans-serif;
	--font10: "Pixelify Sans", sans-serif;
	--font11: "NEOPIXEL", sans-serif;
}
:root {
	--blakc: #333;
	--white: #fff;
	--service-colors-green: #60c339;
	--service-colors-violet: #893ca9;
	--service-colors-color: #ffd83a;
	--gray-100: #f8f8f8;
	--gray-200: #e5e5e5;
	--gray-400: #8b8b8b;
	--service-colors-green-dark: #3fa517;
	--blue: #0075ff;
	--transparent-500: rgba(51, 51, 51, 0.5);
	--service-colors-red-accent: #ff1a2e;
	--transparent-700: rgba(51, 51, 51, 0.7);
	--transparent-900: rgba(51, 51, 51, 0.9);
	--transparent-300: rgba(51, 51, 51, 0.3);
	--transparent-200: rgba(51, 51, 51, 0.2);
	--transparent-100: rgba(51, 51, 51, 0.1);
	--transparent-50: rgba(51, 51, 51, 0.05);
	--color: #ff00c8;
}

html, body{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 20px;
	width:100%;
	min-height: 100vh;
}
body{
	background-color: #000;
	color:#fff;
	font-family: var(--third-family);
}
body *{
	box-sizing: border-box;
}

#bxPanel {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 20;
}

.siteConteiner {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100%;
	width: 100%;
	padding: 0 32px;
	position: fixed;
	left:0;
	top:0;
	z-index:10;
	background: #000;
}

header .logo img{
	width: 148px;
}

header .topMenu ul,
header .topMenu li{
	list-style: none;
	margin: 0;
	padding: 0;
}
header .topMenu nav > ul{
	display: flex;
	width: auto;
}
header .topMenu nav > ul > li{
	margin: auto 12px;
	display: flex;
	height: 70px;
	justify-content: center;
	align-items: center;
	position: relative;
}
header .topMenu nav > ul > li > a{
	font-family: var(--third-family);
	text-decoration: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 60%;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--white);
}
header .topMenu nav > ul > li:after{
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	background: transparent;
	transition: background-color ease 0.3s;
	position: absolute;
	left:0;
	bottom:0;
}
header .topMenu nav > ul > li:hover:after,
header .topMenu nav > ul > li.select:after{
	background: #7ebc51;
	transition: background-color ease 0.3s;
}

header .topRight{
	display: flex;
}
header .topFind{
	width: 32px;
	height: 32px;
	background: url(img/topFind.svg) no-repeat center left;
	opacity: 0.7;
	margin-right: 24px;
	cursor: pointer;
	transition: opacity ease 0.3s;
}
header .topFind:hover{
	opacity: 1;
	transition: opacity ease 0.3s;
}
header .topCart{
	margin-right: 32px;
}
header .topRight > div > a,
header .topGeo .curCity{
	display: inline-block;
	padding-left: 32px;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0.02em;
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
	transition: opacity ease 0.3s;
}
header .topCart a{
	background: url(img/topCart.svg) no-repeat center left;
}
#citySelect{
	position: relative;
}
#citySelect .curCity {
	text-overflow: ellipsis;
	overflow: hidden;
	text-transform: capitalize;
	white-space: nowrap;
}
#citySelect .cityList {
	display: none !important;
	position: absolute;
	left: 0;
	top: 54px;
	width: 142px;
	height: auto;
	border-radius: 6px;
	flex-direction: column;
	background: #fff;
}
#citySelect:hover .cityList{
	display: flex !important;
}
#citySelect .cityList:after{
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 32px;
	top:-30px;
	left:0;
}
#citySelect .cityList .cityItem{
	padding:15px 16px;
	font-weight: 400;
	font-size: 14px;
	line-height: 60%;
	letter-spacing: 0.02em;
	background: #fff;
	cursor: pointer;
	color:#000;
}
#citySelect .cityList .cityItem.select{
	cursor: default;
}
#citySelect .cityList .cityItem.select,
#citySelect .cityList .cityItem:hover{
	background: rgba(0, 0, 0, 0.05);
}
#citySelect .cityList .cityItem:first-child{
	border-radius: 6px 6px 0 0;
}
#citySelect .cityList .cityItem:last-child{
	border-radius: 0 0 6px 6px;
}
.citysList {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	padding-left: 30px;
}
.citysList .citysListItem{
	font-size: 16px;
	width: 33%;
	cursor:pointer;
	margin-bottom: 6px;
}
.citysList .citysListItem.select{
	font-weight: bold;
	cursor: default;
}
.citysList .citysListItem:hover{
	text-decoration: underline;
}
.citysList .citysListItem.select:hover{
	text-decoration: none;
}
header .topGeo .curCity{
	cursor: default;
	background: url(img/topGeo.svg) no-repeat center left;
}
header .topGeo:hover .curCity,
header .topRight > div > a:hover{
	opacity: 1;
	transition: opacity ease 0.3s;
}

.siteConteiner > main{
	margin: 0 0 auto;
	padding-top: 100px;
}
.container{
	width: 1405px;
	margin:0 auto;
}

footer{
	margin-top: 200px;
}
footer a{
	text-decoration: none;
}
footer .title{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 64px;
	line-height: 50%;
	letter-spacing: -0.02em;
	text-align: center;
	color: var(--white);
}
footer .title .sub{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	letter-spacing: 0.01em;
	text-align: center;
	color: var(--white);
	margin-top: 30px;
}
footer .socFlex{
	margin-top: 96px;
	display: flex;
	justify-content: space-evenly;
	align-items: flex-start;
}
footer .socFlex .fTitle{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0.01em;
	color: var(--white);
	margin-bottom: 20px;
}
footer .socFlex .fList{
	display: flex;
	flex-direction: column;
}
footer a.phone{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 0.08em;
	color: var(--white);
}
footer a.soc{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 120%;
	color: var(--white);
	padding-left: 48px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 24px;
	display: inline-block;
	margin-bottom: 16px;
}
footer .soc.tg{background-image:url(img/tg.svg)}
footer .soc.vk{background-image:url(img/vk.svg)}
footer .soc.wp{background-image:url(img/wp.svg)}

footer .footerLine{
	text-align: center;
	display: flex;
	justify-content: center;
	padding: 96px 0 80px;
}
footer .footerLine a{
	display: inline-block;
	margin: auto 25px;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 200%;
	letter-spacing: -0.03em;
	text-align: center;
	color: var(--white);
}

.bread{

}
.bread a{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0.01em;
	color: var(--white);
	text-decoration: none;
	opacity: 0.6;
	transition: opacity ease 0.3s;
}
.bread a:hover{
	opacity: 1;
	transition: opacity ease 0.3s;
}
.bread .sep{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0.01em;
	color: var(--white);
	opacity: 0.6;
}

.elementDetail{
	padding-top: 28px;
}
.elementDetailRow{
	display: flex;
}
.elementDetailRow .edLeft{
	width: 810px;
	min-width: 810px;
}
.elementDetailRow .edRight{
	width: 100%;
	padding-left: 76px;
}
.elementDetail h1{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 56px;
	line-height: 100%;
	color: var(--white);
	margin: 0 0 1rem;
}

.loader3{
	position: relative;
	overflow: hidden;
}
.loader3:before{
	content: "";
	position: absolute;
	display: block;
	background: #fff5 url(img/loader3.svg) no-repeat center;
	background-size: contain;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}
main.loader3:before{
	position: fixed;
	z-index:100;
	background: #7775 url(img/loader3.svg) no-repeat center;
	background-size: 10vw;
}

.edBigImage{
	background-color: #fff;
	position: relative;
	padding-top: 95%;
}
.edBigImage img{
	max-width: 96%;
	max-height: 96%;
	width:auto;
	height:auto;
	position: absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
}

.edTumbs{
	padding-top: 14px;
}
.edTumbs .swiper-slide{
	width: 88px;
	height: 88px;
	background-color: #fff;
	position: relative;
	cursor: pointer;
}
.edTumbs .swiper-slide img{
	max-width: 88px;
	max-height: 88px;
	width:auto;
	height:auto;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.deSubText{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: var(--white);
	opacity: 0.8;
}
.dePrice{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 40px;
	line-height: 140%;
	color: var(--white);
	margin-top: 32px;
}
.edButtons{
	margin-top: 70px;
}
.edAddBtn{
	border:0 none;
	width: 100%;
	border-radius: 8px;
	padding: 25px 40px;
	background: #7ebc51;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #000;
	cursor:pointer;
	transition: background-color ease 0.3s;
}
.edAddBtn:hover{
	background: #97dc63;
	transition: background-color ease 0.3s;
}
.edAddBtn.incart{
	background: #446c27;
	color: #fff;
	transition: background-color ease 0.3s;
}
.edAddBtn.incart{
	background: #679348;
	transition: background-color ease 0.3s;
}
.edQuickBtn{
	width: 100%;
	border-radius: 8px;
	padding: 25px 40px;
	border: 1px solid #7ebc51;
	background: transparent;
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #7ebc51;
	margin-top: 10px;
	cursor: pointer;
	transition: all ease 0.3s;
}
.edQuickBtn:hover{
	color: #000;
	background: #5e8740;
	border: 1px solid #5e8740;
	transition: all ease 0.3s;
}
.edPropsList{
	margin-top: 60px;
}

.edPropsList{
	display: flex;
	flex-direction: column;
}
.edPropElement{
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 12px 0;
}
.edPropElement .edPropTitle{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	color: var(--white);
	position: relative;
	cursor: pointer;
}
.edPropElement .edPropTitle:after{
	content: "";
	display: block;
	position: absolute;
	right:0;
	top:2px;
	width: 24px;
	height: 24px;
	background: url(img/down.svg) no-repeat center;
	transition: all ease 0.3s;
}
.edPropElement .edPropText{
	display: none;
	padding: 14px 0 0;
	font-size:14px;
}
.edPropElement .edPropText h2{
	font-size:20px;
}
.edPropElement .edPropText h3{
	font-size:18px;
}
.edPropElement .edPropTitle.active:after{
	transform: rotate(-180deg);
	transition: all ease 0.3s;
}

.elementDetailProducts{
	margin-top: 165px;
}
.elementDetailProductsTitle{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 48px;
	line-height: 200%;
	color: var(--white);
	margin-bottom: 30px;
}
.dopProductSlide{
	display: block;
	background-color: #fff;
	text-decoration: none;
}
.dopProductSlide:hover{
	text-decoration: none;
}
.dopProductSlide .img{
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	padding-top: 103%;
}
.dopProductSlide .title{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 125%;
	letter-spacing: -0.02em;
	color: #000;
	padding:0 16px;
	height:40px;
	overflow: hidden;
}
.dopProductSlide .price{
	font-family: var(--third-family);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: -0.02em;
	color: #000;
	margin-top: 10px;
	padding:0 16px 14px;
}
.elementDetailProductsList .addBtn{
	display: block;
	margin: 16px auto 1px;
	text-align: center;
	border: 1px solid #7ebc51;
	border-radius: 8px;
	padding: 14px 8px;
	white-space: nowrap;
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	text-transform: uppercase;
	color: #7ebc51;
	cursor: pointer;
	transition: all ease 0.3s;
}
.elementDetailProductsList .addBtn:hover{
	color: #000;
	background: #5e8740;
	border: 1px solid #5e8740;
	transition: all ease 0.3s;
}

.achiListArea{
	background: #7ebc51;
	padding: 26px 0 60px;
	margin-top: 165px;
}
.achiTitle{
	font-weight: 400;
	font-size: 48px;
	line-height: 90%;
	color: #000;
	margin-bottom: 36px;
	padding-left: 140px;
}
.achiTitle:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 216px;
	height: 34px;
	background: url(img/bLogo.png) no-repeat center;
	margin-right: 23px;
}
.achiList{
	display: flex;
	justify-content: space-evenly;
}
.achiList .achiListItem{
	width: 230px;
}
.achiListItem .img{
	width: 100px;
	height: 100px;
	margin: 0 auto 24px;
}
.achiListItem .title{
	font-family: var(--third-family);
	font-weight: 700;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #000;
	margin-bottom: 8px;
}
.achiListItem .text{
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 137%;
	text-align: center;
	color: #000;
	opacity: 0.5;
}

.homeProductsSwiper .swiper-wrapper {
	flex-wrap: wrap;
	justify-content: center;
	max-height: calc(24.6vw + 60px);
	transition: all ease 0.3s;
}
.homeProductsSwiper:not(.active) .swiper-wrapper .swiper-slide:nth-child(n+6){
	display:none;
}
.homeProductsSwiper.active .swiper-wrapper{
	max-height: 6008px;
	transition: all ease 0.3s;
}
.homeProductsSwiper .swiper-wrapper .swiper-slide{
	width: calc(20% - 12px);
	margin:6px;
}