@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

:root{
	--color-dark-green:		#3C4536;
	--color-green:			#76785F;
	--color-green-hover:	#9C9E7C;
	--color-yellow:			#FBF1DC;

	--color-brown:			#4F3E35;

	--color-red:			#FF5454;

	--color-grey:			#7F8288;
	--color-grey-hover:		#686b6f;
	--color-light-grey:		#DFDFDF;

	--color-white:			#ffffff;
	--color-black:			#000000;
	--color-dark:			#323031;
}

.color-grey{ color: var(--color-grey); }
.color-red{ color: var(--color-red); }
.color-black{ color: var(--color-black); }
.color-white{ color: var(--color-white); }

.background-yellow{ background-color: var(--color-yellow); }
.background-grey{ background-color: var(--color-grey); }
.background-black{ background-color: var(--color-black); }
.background-white{ background-color: var(--color-white); }

.hr1{ border-top: 1px solid rgba(50, 48, 49, 0.5); }

.sticky-preset-1{
	position: sticky;
	top: 6rem;
}





html{
	font-size: 16px;
}

body, input, textarea, button, select{
	font-family: 'Onest', sans-serif;
	color: var(--color-dark);
}

#page{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}







header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 5rem;
	z-index: 100;
	width: 100%;
}

main{
	flex: 1 0 auto;
}

footer{

}







body.admin-bar header{ top: 32px; }
/* body.admin-bar .header_mobile{ margin-top: 32px; } */

@media screen and (max-width: 782px){
	body.admin-bar header{ top: 46px; }
	/* body.admin-bar .header_mobile{ margin-top: 46px; } */
}





.header{
	--color: var(--color-black);
	--background: var(--color-white);
	color: var(--color);
	background-color: var(--background);
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: inherit;
	padding: 0.75rem 0;
}

header.is-scrolled .header {
	box-shadow: 0 0 0.2em rgb(0 0 0 / 10%);
}

body.header-transparent header:not(.is-scrolled):not(.is-mobile-menu-open) .header {
	--color: var(--color-white);
	--background: transparent;
}

body:not(.header-transparent){
	padding-top: 5rem;
}

.header .__svg{
	fill: var(--color);
}

.header .logo .__svg{
	width: 7em;
	height: 3.5em;
}

.header__container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	width: 100%;
}

.header .menu{
	flex: 1;
}

.header .links{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}






.header_mobile{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	width: 100%;
	z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s cubic-bezier(0.79,0,0.27,1.55);
}

header.is-mobile-menu-open .header_mobile{
	visibility: visible;
	opacity: 1;
}

.header_mobile .overlay{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.5);
}

.header_mobile .menu{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 24em;
	max-width: 100%;
	background-color: #ffffff;
	z-index: 2;
	box-sizing: border-box;
	padding: 6em 0 3em;
	box-shadow: 0 0.5em 0.5em rgba(0, 0, 0, 0.1);
}

.header_mobile .menu ul{
	height: 100%;
	overflow: auto;
}

.header_mobile .menu ul li{
	padding: 0.25em 0;
}






.nav_menu > div > ul{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2vw;
}

.nav_menu > div > ul > li.haschild > a:after{
	content: "\25BC";
	font-size: 0.65em;
	margin-left: 0.25rem;
}

.nav_menu > div > ul > li > div{
	position: absolute;
	top: 0;
	bottom: 0;
	visibility: hidden;
	transition-delay: 0.5s;
}

.nav_menu > div > ul > li:hover > div{
	visibility: visible;
	transition-delay: 0s;
}

.nav_menu > div > ul > li > div > ul{
	position: absolute;
	top: 100%;
	width: max-content;
	background-color: #FBF1DC;
	color: #000000;
	padding: 0.5rem 0.75rem;
}

.nav_menu > div > ul > li > div > ul > li{
	padding: 0.25rem 0;
}


.footer{
	color: var(--color-brown);
	background: rgba(184, 171, 155, 0.63);
}

.footer .logo .__svg.--large{
	width: 10em;
	height: 5em;
}

.footer .logo .__svg.--small{
	width: 10em;
	height: 3em;
}

.footer .__svg {
	fill: var(--color-brown);
}


/*
.grid-home-slider{
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 1.25rem;
}

.grid-home-slider .col:nth-of-type(1){
	min-width: 0;
	grid-row: 3 span;
}
*/

.nav-catalog ul li{
	padding: 0.25em 0;
}

.nav-catalog ul li > div{
	padding: 0.25em 0 0 0.75em;
}

.nav-catalog ul li:not(.is-open) > div{
	display: none;
}


.product-colors{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.product-colors a{
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 2em;
	height: 2em;
	background-color: #f1f1f1;
	border: 1px solid rgb(124 124 124 / 15%);
	border-radius: 50%;
}

.product-colors a.small{
	width: 0.75em;
	height: 0.75em;
}

.product-colors a.is-active:after{
	content: '';
	position: absolute;
	top: -4px;
	right: -4px;
	bottom: -4px;
	left: -4px;
	border: 2px solid var(--color-dark);
	border-radius: 50%;
}















.__item_product{

}

.__product_attributes{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
}

.__product_attributes .__label{
	width: auto;
}

.__item_order{
	/*border-bottom: 1px solid var(--color-black);*/
}




.__gallery .grid-flex .row .col .img{
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.__gallery .grid-flex .row .col .img a{
	height: 100%;
}


















.full-screen{
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	max-height: 30rem;
}

@media screen and (min-width: 600px){
}

@media screen and (min-width: 900px){
}

@media screen and (min-width: 1200px){
	.full-screen{ aspect-ratio: initial; max-height: initial; min-height: calc(100svh - 0rem); }

	.__gallery .grid-flex .row .col .img.large{ height: calc(100vh - 2rem); width: 90%; }
	.__gallery .grid-flex .row .col .img.small{ height: calc(70vh - 0rem); width: 70%; }
}

@media screen and (min-width: 1500px){

}

@media screen and (min-width: 1800px){
	html{ font-size: 18px; }
}


@media screen and (max-width: 1499px){
	/*._header nav ul li:nth-child(6){ display: none; }*/
}

@media screen and (max-width: 1199px){
}

@media screen and (max-width: 899px){
	.grid-home-slider{ grid-template-columns: 1fr 1fr 1fr; }
	.grid-home-slider .col:nth-of-type(1){ grid-row: 1 span; grid-column: 3 span; }
}

@media screen and (max-width: 599px){
	.grid-home-slider{ grid-template-columns: 1fr ; }
	.grid-home-slider .col:nth-of-type(1){ grid-column: 1 span; }
}

.btn-index{
	display: flex;
	justify-content: center;
}

.history-product{
	margin-top: 13rem;
	margin-bottom: 15rem;
}

.history-product-items{
	margin-top: 3.25rem;
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 1.5rem;
}

@media screen and (max-width: 850px){
	.history-product-items {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 450px){
	.history-product-items {
		grid-template-columns: repeat(2, 1fr);
	}
}

.favorite-items{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1.5rem;
}

@media screen and (max-width: 600px){
	.favorite-items{
		display: grid;
		grid-template-columns: repeat(1,1fr);
		gap: 1.5rem;
	}
}

.input-profile{
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle;
	font-size: 1em;
	font-weight: 300;
	line-height: 1.2em;
	color: #323031;
	text-align: left;
	padding: 0.5em 0.75em 0.3em 0em;
	border: 0px;
	border-bottom: 1px solid rgba(95, 94, 92, 0.60);
	background-color: #FFFDFC;
	width: 100%;
	transition: color 0.2s ease-out, background 0.2s ease-out;
}

._label{
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	color: #5A6170;
	font-family: Onest;
	font-size: 1rem;
	font-style: normal;
	font-weight: 300;
	line-height: 237.188%; /* 2.37188rem */
}

.btn-profile{
	border-radius: 0.3125rem;
	border: 0.5px solid rgba(127, 130, 136, 0.88);
	background: #828282;
	color: #FFF;
	font-family: Onest;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 100%;
	padding: 0.8rem;
}

.form-profile{
	max-width: 19.25rem;
	width: 100%;
}

.btn-cart{
	opacity: 1;
	border-radius: 0.3125rem;
	border: 1px solid #B8AB9B;
	background: rgba(184, 171, 155, 0.63);
}

.btn-cart span{
	color: #4F3E35;
	font-family: Roboto;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
}

.header-search{
	padding: 0.35rem 0.3rem;
	display: flex;
	align-items: center;
	gap: .3rem;
	border-radius: 0.375rem;
	border: 0.5px solid rgba(255, 255, 255, 0.38);
	background: #E7E7E7;
	max-width: 18.5625rem;
	width: 100%;
}

.header-search input{
	background: none;
	border: none;
	color: #000000;
	font-size: 1rem;
}

.header-search input::placeholder{
	color: #828282;
}

.header-search svg{
	flex-shrink: 0;
}

@media screen and (max-width: 1000px){
	.header-search{
		max-width: 13.5625rem;
	}
}

@media screen and (max-width: 750px){
	.header-search{
		display: none;
	}

	.header-mobile-search{
		padding: 0.35rem 0.3rem;
		display: flex;
		align-items: center;
		gap: .3rem;
		border-radius: 0.375rem;
		border: 0.5px solid rgba(255, 255, 255, 0.38);
		background: #E7E7E7;
		width: 100%;
	}

	.header-mobile-search input{
		background: none;
		border: none;
		color: #828282;
		font-size: 1.125rem;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}

	.header-mobile-search input::placeholder{
		color: #828282;
		font-size: 1.125rem;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}

	.header-mobile-search svg{
		flex-shrink: 0;
	}

	.header-mobile-search button{
		background: none;
		border: none;
		width: min-content;
		height: min-content;
		cursor: pointer;
	}

	.header-mobile-search form{
		display: flex;
		align-items: center;
		gap: .3rem;
	}
}

.swiper-vertical>.swiper-wrapper{
	height: fit-content;
}

.header-search form{
	display: flex;
	align-items: center;
	gap: .3rem;
}

.header-search button{
	background: none;
	border: none;
	width: min-content;
	height: min-content;
	cursor: pointer;
}



.select2{
	width: 100% !important;
}

.select2-container--default .select2-selection--single{
	border-radius: 0.5em !important;
	border: 1px solid rgb(128 128 128 / 50%) !important;
	height: 2.6em !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
	color: #000000 !important;
	padding: 0.5em 1em !important;
	height: 2.6em !important;
	box-sizing: border-box;
}

.select2-container--open .select2-dropdown{
	top: 1.2em !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 2.6em !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear{
	height: 2.6em !important;
}
.js-get-cdek-deliverypoints-container.remove {
	display: none !important;
}
.door-address {
	display: none;
	padding: 0.5rem;
	width: 100%;
	max-width: 25rem;
}

.door-address input {

}
.door-address.active {
	display: block;
}
.door-address input::placeholder {
	color: #444;
}