html {
  scroll-padding-top: 5.3vw;
}
body {
	position: relative;
	margin:0;
	font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
	overflow-x: hidden;
	cursor: default;
	width: 100%;
	outline: none !important;
	background: #E9E5E3;
	color: #000;
}
a{
	text-decoration: none;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
a:active,
a:focus,
a:hover {
	outline: none !important;
}
* {
	scroll-behavior: smooth;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
}
*:before,
*:after {
	position: absolute;
	content: "";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(12, 12, 12, 0.36) #D9D9D9;
}

/* для Chrome/Edge/Safari */
*::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
*::-webkit-scrollbar-track {
  background: rgba(12, 12, 12, 0.36);
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(12, 12, 12, 0.36);
  border-radius: 5px;
  border: 3px solid #D9D9D9;
}
* {
	-webkit-tap-highlight-color: transparent;
}
button,
input,
textarea,
select {
	outline: none;
	font-family: "Montserrat", sans-serif;
}
button {
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}
ol, ul {
	list-style: none;
	margin:0;
	padding:0;
}
p, li {
	position: relative;
	font-size: 1.04vw;
	font-weight: 400;
}
img {
	max-width: 100%;
	display: block;
}
.container {
	position: relative;
	width: 100%;
	padding: 0 5.21vw;
}
section {
	position: relative;
	overflow: hidden;
}
.section {
	padding: 7.29vw 0;
}
input::-webkit-input-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}
input::-moz-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}
input:-ms-input-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}
textarea::-webkit-input-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}
textarea::-moz-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}
textarea:-ms-input-placeholder {
	font-family: "Montserrat", sans-serif;
	color: rgba(0, 0, 0, 0.34) !important;
}

/* --------------------------------
	
	modal-box
	
-------------------------------- */
.modal, .modal-box {
	z-index: 1000;
}
.modal-sandbox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
}
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
	backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
	background: rgba(12, 12, 12, 0.34);
  -webkit-transition: 0.25s ease-out 0.25s;
	transition: 0.25s ease-out 0.25s;
}
.modal.open {
	opacity: 1;
	visibility: visible;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
.modal-box {
  display: block;
  width: 100%;
  height: 100%;
}
.modal-body {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.modal_container {
	margin: 0 auto;
	width: 95%;
	padding: 2.34vw;
	position: relative;
	background: #fff;
	color: #0C0C0C;
	will-change: transform;
	transform: translateX(-300%);
	max-width: 28.65vw;
	-webkit-transition: 0.25s ease-out 0s;
	transition: 0.25s ease-out 0s;
}
.open .modal_container {
	transform: translateX(0);
	-webkit-transition: 0.25s ease-out 0.25s;
	transition: 0.25s ease-out 0.25s;
}
.close-modal {
	position: absolute;
	top: 1.04vw;
	right: 1.04vw;
	cursor: pointer;
	width: 14px;
	height: 14px;
	z-index: 9999;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
.close-modal:hover {
	opacity: 0.6;
}
.close-modal img {
	position: relative;
	width: 100%;
	display: block;
}
.modal-header {
	margin: 0 0 1.67vw 0;
}
.modal-title {
	font-size: 1.25vw;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.52vw 0;
}

/* --------------------------------
	
	burger
	
-------------------------------- */
.burger {
	position: relative;
	width: 32px;
	height: 16px;
	cursor: pointer;
	display: none;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin: 0 0 0 32px;
	z-index: 999;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.burger::before, .burger span, .burger::after {
	width: 100%;
	height: 3px;
	display: block;
	background: #4C4744;
	border-radius: 2px;
	opacity: 1;
}
.burger:before, .burger:after {
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
}
.burger::before {
	top: 0;
}
.burger span {
  position: relative;
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
}
.burger:after {
  top: auto;
  bottom: 0;
  -webkit-transition: 0.35s ease-out;
  transition: 0.35s ease-out;
}

/* Click */
.burger.cross span {
  opacity: 0;
}
.burger.cross:before, .burger.cross:after {
  top: 50%;
}
.burger.cross:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger.cross:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger:focus {
  outline: none;
}


/* --------------------------------
	
	cookie-box
	
-------------------------------- */
.cookie-box {
	position: fixed;
	bottom: 30px;
	right: 160px;
	background: #F8F9F9;
	color: #000;
	padding: 32px;
	width: 25vw;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 10px 35px rgba(29, 81, 179, 0.18);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(120%);
	will-change: transform;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.cookie-box.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
}
.cookie-box img {
	width: 50px;
	margin: 0 0 24px 0;
}
.cookie-box p {
	font-size: 14px;
	margin: 0 0 16px 0;
}
.btn-cookie {
	position: relative;
	display: block;
	padding: 15px 30px;
	width: 100%;
	border: 2px solid #000;
	background: #000;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.btn-cookie:hover {
	background: transparent;
	color: #555;
}
@media (max-width: 1400px) {
	.cookie-box {
		padding: 20px;
		border-radius: 10px;
	}
	.cookie-box p {
		font-size: 12px;
	}
}
@media (max-width: 1200px) {
	.cookie-box {
		width: 300px;
	}
}
@media (max-width: 767px) {
	.cookie-box {
		width: 100%;
		right: 0;
		bottom: 0;
	}
}

/* --------------------------------
	
	header
	
-------------------------------- */
header {
	position: fixed;
	width: 100%;
	z-index: 10;
	top: 0;
	left: 0;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
	padding: 1.46vw 0;
}
.shrink {
	padding: 0.83vw 0;
}
.header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25vw 0;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.shrink .header-flex {
	padding: 1vw 0;
}
.header-content {
	position: relative;
	padding: 0 2.50vw;
	background: #fff;
	border-radius: 5.21vw;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.shrink .header-content {
	box-shadow: 0 6px 12px rgba(0,0,0,0.055);
}
.logo {
	display: block;
	width: 11.46vw;
	flex: 0 0 auto;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.logo img {
	width: 100%;
}
.header-flex-group {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 0 1.67vw;
}
.header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
}
.nav {
	display: flex;
	align-items: center;
}
.nav-top {
	padding: 0 0 0.52vw 0;
	margin: 0 0 0.52vw 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}
.contact-item {
	display: flex;
	align-items: center;
	color: #000;
	font-size: 1.25vw;
	font-weight: 500;
}
.contact-ico {
	width: 1.25vw;
	margin: 0 0.63vw 0 0;
	flex: 0 0 auto;
}
.menu-item {
	font-size: 0.73vw;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 2.92vw 0 0;
}
.menu-item a {
	position: relative;
	color: rgba(0, 0, 0, 0.61);
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.menu-item a:hover {
	color: #FF3200;
}
.nav-top .menu-item {
	font-weight: 700;
} 
.menu-item:last-child {
	margin: 0;
}
.nav-top .menu-item a {
	color: rgba(0, 0, 0, 1);
}
#search-input {
	position: absolute;
	bottom: -0.83vw ;
	left: 0;
	width: 100%;
	padding: 1vw 2.50vw;
	background: #fff;
	border-radius: 3.65vw;
	will-change: transform;
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
#search-input.open {
	opacity: 1;
	visibility: visible;
}
.searchform {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#s {
	width: 100%;
	border: 0;
	font-size: 1.04vw;
	height: 2.92vw;
}
.searchsubmit {
	width: 2.92vw;
}
.header-control {
	display: flex;
	align-items: center;
	margin: 0 0 0 2.19vw;
}
.search-btn {
	width: 2.50vw;
	display: block;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.search-btn:hover {
	opacity: 0.85;
}
.btn {
	position: relative;
	font-weight: 700;
	text-align: center;
	background: #FF3200;
	color: #fff;
	padding: 1vw;
	border-radius: 2.50vw;
	font-size: 1.25vw;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.btn:hover {
	background: #4C4744;
}
.login-btn {
	width: 1.67vw;
	margin: 0 1.25vw;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.login-btn:hover {
	opacity: 0.85;
}
.login-btn img {
	width: 100%
}
.cart-btn {
	position: relative;
	width: 1.67vw;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.cart-btn:hover {
	opacity: 0.85;
}
.cart-btn img {
	width: 100%
}
#cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: #EBE6D7;
	width: 1.04vw;
	height: 1.04vw;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.63vw;
	font-weight: 600;
	color: #FF3200;
	transform: translate(25%,-25%);
}

/* --------------------------------
	
	intro
	
-------------------------------- */
.intro-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.intro-flex {
	position: relative;
	min-height: 100vh;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 0 8.33vw 0;
}
.intro-grid {
	display: flex;
}
.intro-item {
	display: flex;
	align-items: center;
	background: rgba(233, 229, 227, 0.69);
	padding: 1.67vw 2.50vw;
	border-radius: 1.25vw;
	color: #000;
	margin: 0 8px;
	font-size: 1.88vw;
	font-weight: 700;
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	-webkit-transition: 0.45s ease-out;
	transition: 0.45s ease-out;
}
.intro-item:hover {
	background: rgba(233, 229, 227, 0.85);
}
.intro-item img {
	width: 3.65vw;
	margin: 0 1.25vw 0 0;
	flex: 0 0 auto;
}
.intonext {
	position: absolute;
	bottom: 1.67vw;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.21vw;
	height: 5.21vw;
	background: #fff;
	border-radius: 50%;
	animation: next 1s ease-out infinite alternate;
  -webkit-animation: next 1s ease-out infinite alternate;
}
.intonext img {
	width: 1.25vw;
}
@keyframes next {
  0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}
@-webkit-keyframes next {
	0% { transform: translateY(-10px); }
  100% { transform: translateY(10px); }
}

/* --------------------------------
	
	b1
	
-------------------------------- */
.title {
	font-size: 2.50vw;
	text-align: center;
	text-transform: uppercase;
	margin: 0 0 3.33vw 0;
}
.b1-grid {
	display: flex;
	justify-content: center;
}
.b1-item {
	position: relative;
	width: 33.333%;
	background: #fff;
	padding: 2.50vw;
	border-radius: 1.67vw;
	margin: 0 0.63vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: space-between;
	-webkit-transition: 0.45s ease-out;
	transition: 0.45s ease-out;
}
.b1-item:hover {
	background: rgba(255, 255, 255, 0.4);
}
.b1-img {
	width: 85%;
	border-radius: 50%;
	margin: 0 0 1.25vw 0;
}
.b1-item h3 {
	background: #E9E5E3;
	padding: 1vw 2vw;
	border-radius: 2.50vw;
	margin: 0 0 1.25vw 0;
	font-size: 1.25vw;
	text-transform: uppercase;
	min-width: 75%;
}
.b1-item p {
	flex-grow: 1;
	margin: 0 0 1.67vw 0;
}
.b1-item .btn {
	width: 100%;
}

/* --------------------------------
	
	b2
	
-------------------------------- */
#b2 {
	background: #fff;
	border-radius: 32px;
}
.b2-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -0.63vw;
}
.b2-item {
	position: relative;
	width: calc(33.333% - 1.26vw);
	margin: 0.63vw;
	border: 1px solid rgba(0, 0, 0, 0.29);
	padding: 2.08vw;
	border-radius: 1.25vw;
	text-align: center;
}
.b2-item span {
	display: block;
	font-size: 3.33vw;
	font-weight: 700;
	color: #FF3200;
}

/* --------------------------------
	
	b3
	
-------------------------------- */







/* --------------------------------
	
	b4
	
-------------------------------- */
#b4 {
	background: #fff;
	border-radius: 32px;
}
.b4-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -0.63vw;
}
.b4-item {
	position: relative;
	width: calc(33.333% - 1.26vw);
	margin: 0.63vw;
	padding: 2.08vw 2.08vw 6vw 2.08vw;
	border-radius: 1.25vw;
	background: #E9E5E3;
	overflow: hidden;
}
.b4-item-num {
	position: absolute;
	bottom: 0;
	right: 2.08vw;
	font-size: 6.67vw;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.46);
	line-height: 1;
	transform: translateY(25%);
}
.b4-item h3 {
	margin: 0 0 0.83vw 0;
	font-size: 1.25vw;
	text-transform: uppercase;
}

/* --------------------------------
	
	b5
	
-------------------------------- */
.b5-slider-item.swiper-slide {
	padding: 2.08vw;
	border-radius: 1.25vw;
	background: #fff;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.b5-slider-header {
	display: flex;
	align-items: center;
	margin: 0 0 1.25vw 0;
	text-transform: uppercase;
}
.b5-slider-header p {
	font-size: 1.25vw;
	font-weight: 700;
}
.b5-ico {
	width: 3.65vw;
	flex: 0 0 auto;
	margin: 0 1.25vw 0 0;
	border-radius: 50%;
}
.b5-slider-descr {
	flex-grow: 1;
	margin: 0 0 2.08vw 0;
}
.b5-slider-raiting {
	width: 7.08vw;
}
.b5-slider {
	position: relative;
}
.slider-btn {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.65vw;
	height: 3.65vw;
	cursor: pointer;
	background: #FF3200;
	border-radius: 50%;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
	top: 42%;
	z-index: 1;
}
.slider-btn img {
	position: relative;
	width: 1.25vw;
	height: 1.25vw;
}
.slider-btn:hover {
	background: #86776F;
}
.prev-button-slide {
	left: 0;
	transform: translateX(-70%);
}
.next-button-slide {
	right: 0;
	transform: translateX(70%);
}

/* --------------------------------
	
	footer
	
-------------------------------- */
footer {
	position: relative;
	overflow: hidden;
	background: #fff;
	border-radius: 32px 32px 0 0;
}
.footer-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5.21vw 0 3.91vw 0;
}
.footer-logo {
	width: 13.54vw;
}
.footer-logo img {
	width: 100%;
}
.footer-nav-group {
	display: flex;
	align-items: center;
}
.footer-nav-main {
	padding: 1.04vw 2.50vw 1.04vw 0;
	margin: 0 2.50vw 0 0;
	border-right: 1px solid rgba(0, 0, 0, 0.33);
}
.footer-nav-main .menu-item {
	font-size: 1.25vw;
	font-weight: 700;
}
.footer-nav-main .menu-item a {
	color: #000;
}
.footer-nav-main .menu-item a:hover {
	color: rgba(0, 0, 0, 0.7);
}
.footer-nav-inner .menu-item {
	font-size: 0.83vw;
}
.footer-contact {
	background: rgba(233, 229, 227, 0.37);
	padding: 2.08vw 0;
}
.footer-contact-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-contact-list {
	display: flex;
	align-items: flex-start;
}
.footer-contact-item {
	margin: 0 6.25vw 0 0;
}
.footer-contact-item:last-child {
	margin: 0;
}
.footer-contact-title {
	display: block;
	font-size: 0.73vw;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.61);
	margin: 0 0 0.42vw 0;
}
.footer-contact-item a, .footer-contact-item p {
	font-size: 1.04vw;
	font-weight: 600;
	color: #000;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.footer-contact-item a:hover{
	color: rgba(0, 0, 0, 0.65);
}
.footer-soc, .footer-online {
	display: flex;
	align-items: center;
}
.footer-soc a, .footer-online a {
	width: 2.50vw;
	margin: 0 0 0 0.42vw;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.footer-soc a:hover, .footer-online a:hover {
	opacity: 0.85;
}
.footer-soc a img, .footer-online a img {
	width: 100%;
}
.footer-info {
	position: relative;
	padding: 1.25vw 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-info-list {
	display: flex;
	align-items: center;
}
.copy {
	font-size: 0.83vw;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.61);
	margin: 0 8.85vw 0 0;
}
.footer-info-list a {
	font-size: 0.83vw;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.61);
	margin: 0 4.69vw 0 0;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.footer-info-list a:hover {
	color: rgba(0, 0, 0, 0.85);
}
.footer-info-list a:last-child {
	margin: 0;
}
.footer-online span {
	font-size: 0.83vw;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.61);
	margin: 0 1.25vw 0 0;
	text-transform: uppercase;
}

/* --------------------------------
	
	product
	
-------------------------------- */
.product-grid {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 0 0 2.50vw 0;
}
.product-item {
	position: relative;
	background: #fff;
	display: flex;
	justify-content: flex-end;
	overflow: hidden;
	border-radius: 1.67vw;
	width: calc(50% - 0.83vw);
}
.product-item-img {
	width: 45%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.product-item-img img {
	width: 100%;
	border-radius: 1.67vw;
	height: 100%;
	object-fit: cover;
}
.product-item-content {
	width: 55%;
	padding: 2.50vw 1.67vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.product-item-title {
	color: #000;
	font-size: 1.25vw;
	margin: 0 0 0.83vw 0;
	text-transform: uppercase;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.product-item-title:hover {
	color: #ff3200;
}
.product-item-txt {
	flex-grow: 1;
	margin: 0 0 2.50vw 0;
}
.btn.btn-cart {
	justify-content: flex-start;
	padding: 0 1.67vw;
	height: 3.80vw;
	justify-content: space-between;
}
.add_to_cart_button {
	color: #fff;
	font-size: 1.04vw;
	font-weight: 600;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	text-align: right;
	padding: 0 1.67vw;
	height: 3.80vw;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.woocommerce-Price-amount.amount {
	font-size: 1.88vw;
	font-weight: 700;
	pointer-events: none;
}
.flex-center {
	display: flex;
	justify-content: center;
}
.btn2 {
	position: relative;
	display: inline-flex;
	font-size: 1.04vw;
	font-weight: 700;
	text-transform: uppercase;
	align-items: center;
	color: #FF3200;
	border: 1px solid #FF3200;
	border-radius: 2.60vw;
	padding: 4px 4px 4px 1.67vw;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.btn2 img {
	width: 3.13vw;
	flex: 0 0 auto;
	margin: 0 0 0 1.67vw;
}
.btn2:hover {
	color: #4C4744;
	border: 1px solid #4C4744;
}

/* --------------------------------
	
	page
	
-------------------------------- */
#page {
	padding: 11vw 0 5.21vw 0;
	min-height: 80vh;
}
#page .title {
	text-align: left;
}
.breadcrumbs {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 0.83vw;
	font-weight: 400;
	color: #000;
	margin: 0 0 1.82vw 0;
}
.breadcrumbs a {
	color: rgba(0,0,0,0.6);
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.breadcrumbs a:hover {
	color: #000;
}
.breadcrumb_last {
	color: #000;
}
.woocommerce.columns-4 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.woocommerce-notices-wrapper {
	width: 100%;
}
.woocommerce-result-count {
	width: 50%;
	margin: 0;
	display: flex;
	align-items: center;
}
.products.columns-4 {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 24px 0 0 0;
	flex-wrap: wrap;
}
.products.columns-4 .product-item {
	margin: 0.83vw 0;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background: #fff;
  border-radius: 0.83vw;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: flex;
	align-items: center;
  font-family: inherit;
  font-size: 1.04vw;
  height: 2.92vw;
  outline: none;
  padding-left: 24px;
  padding-right: 40px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  white-space: nowrap;
	width: auto; 
}
.nice-select:hover {
	
}
.nice-select:active, .nice-select.open, .nice-select:focus {
	
}
.nice-select:after {
	border-bottom: 2px solid #999;
	border-right: 2px solid #999;
	content: '';
	display: block;
	height: 5px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 12px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	width: 5px; 
}
.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg); 
}
.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0); 
}
.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none; 
}
.nice-select.disabled:after {
	border-color: #cccccc; 
}
.nice-select.wide {
	width: 100%; 
}
.nice-select.wide .list {
	left: 0 !important;
	right: 0 !important; 
}
.nice-select.right {
  float: right; 
}
.nice-select.right .list {
	left: auto;
	right: 0; 
}
.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px; 
}
.nice-select.small:after {
	height: 4px;
	width: 4px; 
}
.nice-select.small .option {
	line-height: 34px;
	min-height: 34px; 
}
.nice-select .list {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	width: 100%;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.75) translateY(-21px);
	-ms-transform: scale(0.75) translateY(-21px);
	transform: scale(0.75) translateY(-21px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9; 
}
.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important; 
}
.nice-select .option {
	cursor: pointer;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding: 8px 24px;
	text-align: left;
	font-size: 1.04vw;
	display: flex;
	align-items: center;
	-webkit-transition: all 0.2s;
	transition: all 0.2s; 
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
background-color: #f6f6f6; }
.nice-select .option.selected {
	font-weight: bold; 
}
.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default; 
}
.no-csspointerevents .nice-select .list {
	display: none; 
}
.no-csspointerevents .nice-select.open .list {
	display: block; 
}

#woocommerce_loop_add_to_cart_link_describedby_110 {
	display: none;
}
.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.added {
	display: none;
}
.added_to_cart.wc-forward {
	color: #fff;
	font-size: 0.74vw;
	font-weight: 600;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	text-align: right;
	padding: 0 1.67vw;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.page-flex {
	position: relative;
	display: flex;
	justify-content: flex-end;
	min-height: 70vh;
}
.product-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	overflow: hidden;
	border-radius: 24px;
}
.product-content {
	position: relative;
	width: 50%;
}
.woocommerce-product-gallery__trigger {
	display: none;
}
.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.images, .woocommerce-product-gallery__image, .woocommerce-product-gallery__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}
.woocommerce-product-gallery__wrapper a {
	width: 100%;
	height: 100%;
	display: block;
}
.zoomImg {
	top: 0 !important;
	left: 0 !important;
	transform: scale(1) !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	max-width: 100% !important;
	position: relative !important;
}
.wp-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product_title.entry-title {
	font-size: 2.50vw;
	text-transform: uppercase;
	margin: 0 0 3.33vw 0;
}
.product_meta {
	display: none;
}
.woocommerce-product-details__short-description {
	width: 70%;
	margin: 0 0 1.25vw 0;
}
.price {
	font-size: 1.88vw;
	font-weight: 700;
	margin: 0 0 0.83vw 0;
}
.btn .price {
	margin: 0;
}
.cart {
	display: flex;
	align-items: center;
}
.single_add_to_cart_button.button {
	position: relative;
	font-weight: 700;
	text-align: center;
	background: #FF3200;
	color: #fff;
	padding: 1vw 2.50vw;
	border-radius: 2.50vw;
	font-size: 1.25vw;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.single_add_to_cart_button.button:hover {
	background: #4C4744;
}
.quantity {
	margin: 0 1.25vw 0 0;
	display: flex;
	align-items: center;
}
.quantity-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.50vw;
	height: 2.50vw;
	border-radius: 50%;
	background: #86776F;
	color: #fff;
	font-size: 1.25vw;
}
.input-text {
	margin: 0 8px;
	border: 0;
	height: 2.50vw;
	font-size: 1.04vw;
	text-align: center;
	width: 2.50vw;
	border-radius: 8px;
}
.single-sub {
	display: block;
	font-size: 0.73vw;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.55);
	text-transform: uppercase;
}
.screen-reader-text {
	display: none;
}
.wc-block-components-sidebar-layout {
	margin: 0 !important;
	justify-content: space-between;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
	margin: 0;
	background: #fff;
	padding: 1.67vw;
	border-radius: 24px;
}
.wc-block-components-sidebar {
	padding: 0;
	width: 30%;
}
.wc-block-cart-items thead {
	display: none;
}
.wc-block-cart-item__total {
	display: table-cell !important;
}
.wc-block-cart__main .wc-block-cart-items td, .wc-block-cart__main .wc-block-cart-items {
	border: 0 !important;
}
.wc-block-cart-items__row {
	display: flex;
	justify-content: space-between;
	padding: 0.83vw 0;
}
.wc-block-cart-item__image {
	padding: 0;
	width: 15%;
	flex: 0 0 auto;
}
.wc-block-cart-item__image a {
	height: 100%;
	display: block;
}
.wc-block-cart-item__image img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.wc-block-cart__main .wc-block-cart-items td {
	padding: 0 !important;
}
.wc-block-cart__main .wc-block-cart-items td.wc-block-cart-item__product {
	flex-grow: 1;
	padding: 0 1.25vw !important;
}
.wc-block-components-product-name {
	color: #000;
	font-weight: 700 !important;
	font-size: 1.25vw !important;
	margin: 0 0 1.25vw 0;
}
.wc-block-cart-item__prices {
	display: none !important;
}
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
	font-size: 1.25vw;
	font-weight: 700;
	padding: 0 0 0.83vw 0;
}
.wc-block-components-totals-item__label {
	font-size: 1.25vw !important;
}
.wc-block-components-totals-item__value {
	font-size: 1.88vw !important;
	font-weight: 700 !important;
	color: #ff3200;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
	font-weight: 500;
}
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
	position: relative;
	font-weight: 700;
	text-align: center;
	background: #FF3200;
	color: #fff;
	padding: 1vw;
	width: 100%;
	border-radius: 2.50vw;
	font-size: 1.04vw;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
	background: #4C4744;
}
.wp-block-woocommerce-checkout {
	padding-top: 0;
}
.wc-block-components-title.wc-block-components-checkout-step__title {
	font-size: 1.25vw;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	font-size: 0.83vw;
	left: 0.83vw;
	max-width: calc(100% - 1.67vw);
	top: 1.04vw;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
	border: 1px solid #86776F4F;
	font-size: 1.04vw;
	height: 4.6vw;
	line-height: 1;
	padding: 0.83vw;
}
.wc-block-components-address-form__country.wc-block-components-country-input {
	margin: 0.83vw 0 0 0 !important;
}
.wc-blocks-components-select__label {
	font-size: 0.83vw !important;
	left: 0.83vw !important;
	max-width: calc(100% - 1.67vw) !important;
	top: 0.83vw !important;
}
.wc-block-components-address-form__country.wc-block-components-country-input {
	display: none;
}
.wc-block-components-address-form__address_2-toggle {
	font-size: 1.04vw !important;
}
.wc-block-components-checkbox label {
	font-size: 1.04vw;
	line-height: 1;
	align-items: center;
}
.wc-block-components-notice-banner.is-error {
	background-color: #ff32001a;
	border-color: transparent;
}
.wc-block-checkout__terms {
	margin: 0 0 1.24vw;
	font-size: 1.04vw;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
	padding-top: 1.24vw;
}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained {
	position: relative;
	font-weight: 700;
	text-align: center;
	background: #FF3200;
	color: #fff;
	padding: 1vw;
	width: 100%;
	border-radius: 2.50vw;
	font-size: 1.04vw;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained:hover {
	background: #4C4744;
}
.wp-block-woocommerce-checkout-order-summary-block {
	border: none;
	border-radius: 0;
}
.woocommerce-checkout section {
	overflow: initial;
}
.wc-block-checkout__sidebar {
	top: 11vw !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
	margin-top: 0;
}
.wc-block-components-checkout-order-summary__title-text {
	font-size: 1.25vw !important;
	font-weight: 700!important;
	padding: 0 0 0.83vw 0 !important;
	margin: 0 !important;
	text-transform: uppercase;
	border-bottom: 1px solid color-mix(in srgb,currentColor 20%,transparent);
}
.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block.wc-block-components-totals-wrapper {
	padding: 0 !important;
}
.wc-block-components-order-summary {
	padding: 0;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item {
	width: 100%;
	padding: 1.24vw 0;
	border-bottom: 1px solid color-mix(in srgb,currentColor 20%,transparent);
}
.wc-block-components-order-summary .wc-block-components-order-summary__content {
	display: block;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
	margin-top: 0;
	padding-bottom: 0;
	width: 20%;
	flex: 0 0 auto;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
	padding: 0 1.24vw;
	word-break: break-word;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
	padding-top: 0;
}
.wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
	font-size: 1.24vw;
}
.wc-block-components-totals-wrapper {
	padding: 1.24vw 0;
}
.wc-block-components-sidebar .slot-wrapper .wc-block-components-panel, .wc-block-components-sidebar .wc-block-components-panel, .wc-block-components-sidebar .wc-block-components-totals-coupon, .wc-block-components-sidebar .wc-block-components-totals-item {
	padding: 0;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
	font-weight: 700;
	text-transform: uppercase;
}
.wp-block-woocommerce-checkout-order-summary-subtotal-block.wc-block-components-totals-wrapper {
	display: none;
}
.wp-block-woocommerce-checkout-order-summary-totals-block {
	display: none;
}
.wc-block-components-notice-banner {
	font-size: 0.83vw;
	margin: 0.83vw 0;
	padding: 1.24vw !important;
}
.wc-block-components-textarea {
	border: 1px solid #86776F4F;
	font-size: 1.04vw;
	line-height: 1;
	padding: 0.83vw;
	resize: vertical;
}
.wc-block-components-checkbox__label, .wc-block-components-radio-control__option-layout {
	position: relative;
	padding: 0 0 0 2.08vw;
}
input[type="checkbox"], input[type="radio"] {
	display: none;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input {
	display: none;
}
input[type="checkbox"] ~ .wpcf7-list-item-label::before, input[type="radio"] ~ .wpcf7-list-item-label::before, input[type="checkbox"] ~ span:before, input[type="radio"] ~ span:before, input[type="radio"] ~ .wc-block-components-radio-control__option-layout:before {
	background: url(../img/ch1.svg) no-repeat center / contain;
	width: 1.25vw;
	height: 1.25vw;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: 0.25s ease-out;
	transition: 0.25s ease-out;
}
input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before, input[type="radio"]:checked ~ .wpcf7-list-item-label::before, input[type="checkbox"]:checked ~ span:before, input[type="radio"]:checked ~ span:before, input[type="radio"]:checked ~ .wc-block-components-radio-control__option-layout:before {
	background: url(../img/ch2.svg) no-repeat center / contain;
}
.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	padding: 0.83vw;
	border: 1px solid color-mix(in srgb,currentColor 20%,transparent);
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
	font-size: 0.83vw;
}
.wc-block-components-radio-control-accordion-content {
	padding: 0;
	font-size: 1.04vw;
	font-weight: 400;
}
.wc-block-components-radio-control__option-layout {
	position: relative;
	padding: 0 0 0 2.08vw;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
	padding: 0;
	margin: 0 0 0.42vw 0;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
	box-shadow: none;
}


/* --------------------------------

woocommerce-account
	
-------------------------------- */
.woocommerce-account .woocommerce {
	display: flex;
	justify-content: space-between;
}
.woocommerce-MyAccount-content {
	width: 70%;
	background: #fff;
	padding: 2.08vw;
	border-radius: 24px;
}
.woocommerce-MyAccount-content p {
	margin: 0 0 0.83vw 0;
}
.woocommerce-MyAccount-content a {
	color: #ff3200;
}
.woocommerce-MyAccount-navigation {
	width: 25%;
}
.woocommerce-MyAccount-navigation-link {
	font-size: 0.83vw;
	margin: 0 0 8px;
	text-transform: uppercase;
	width: 100%;
	font-weight: 700;
	text-align: center;
}
.woocommerce-MyAccount-navigation-link a {
	background: #fff;
	color: #000;
	width: 100%;
	border-radius: 2.08vw;
	padding: 1.24vw 0.83vw;
	display: block;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.woocommerce-MyAccount-navigation-link a:hover {
	opacity: 0.7;
}
.woocommerce-MyAccount-navigation-link.is-active a {
	background: #ff3200;
	color: #fff;
}
.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--downloads {
	display: none;
}
.woocommerce-Address-title p {
	margin: 0 0 0.83vw 0;
	font-size: 1.25vw;
	text-transform: uppercase;
	font-weight: 700;
}
.woocommerce-Address {
	padding: 0 0 1.25vw 0;
	margin: 0 0 1.25vw 0;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.edit {
	padding: 0.83vw 1.25vw;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 2.08vw;
	margin: 0 0 0.83vw 0;
	font-size: 1.04vw;
	font-weight: 600;
	text-transform: uppercase;
}
address {
	font-size: 1.04vw;
	font-weight: 400;
}
.woocommerce-MyAccount-content h2 {
	font-size: 1.25vw;
	font-weight: 700;
	padding: 0 0 0.83vw 0;
	text-transform: uppercase;
	border-bottom: 1px solid color-mix(in srgb,currentColor 20%,transparent);
	margin: 0 0 1.25vw 0;
}
.woocommerce-address-fields__field-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.form-row {
	width: 47%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.form-row label {
	font-size: 0.83vw;
	margin: 0 0 4px 0;
	position: relative;
}
.form-row label span {
	padding: 0 0 0 2.08vw;
}
.form-row label span.required {
	padding: 0;
}
.woocommerce-LostPassword.lost_password a {
	color: #ff3200;
}
.form-row .input-text {
	font-size: 1.04vw;
	text-align: left;
	width: 100%;
	margin: 0;
	border-radius: 8px;
	border: 1px solid #86776F4F;
	font-size: 1.04vw;
	height: 4vw;
	line-height: 1;
	padding: 0 0.83vw;
}
#billing_country_field {
	display: none;
}
.button {
	position: relative;
	font-weight: 700;
	text-align: center;
	background: #FF3200;
	color: #fff;
	padding: 1vw 3vw;
	border-radius: 2.50vw;
	font-size: 1.04vw;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: 0.35s ease-out;
	transition: 0.35s ease-out;
}
.button:hover {
	background: #4C4744;
}
.woocommerce-EditAccountForm.edit-account {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.clear {
	display: none;
}
#account_display_name_description {
	display: none;
}
fieldset {
	display: block;
	width: 100%;
	padding: 1.67vw;
	margin: 1.25vw 0;
	border-radius: 8px;
	border: 1px solid #86776F4F;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
legend {
	font-size: 1.25vw;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	padding: 0 1.25vw;
}  
.woocommerce-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 1.04vw;
}
.woocommerce-Button.wc-forward.button {
	color: #fff;
	margin: 1.25vw 0 0 0;
	background: transparent;
	border: 1px solid #FF3200;
	color: #FF3200;
}
#billing_country_field {
	display: none !important;
}
#billing_address_2_field .screen-reader-text, #shipping_address_2_field .screen-reader-text {
	display: block;
}
#shipping_country_field {
	display: none !important;
}
.woocommerce-message {
	padding: 1.25vw;
	margin: 0 0 1.25vw 0;
	background: rgba(255, 50, 0, 0.1);
	border-radius: 0.83vw;
	font-size: 1.04vw;
}
.page-id-102.woocommerce-account .woocommerce {
	flex-wrap: wrap;
}
.page-id-102.woocommerce-account h2 {
	width: 100%;
}
.woocommerce-form.woocommerce-form-login.login {
	background: #fff;
	padding: 1.67vw;
	border-radius: 1.25vw;
	margin: 1.67vw 0 0 0;
	width: 40%;
}
.woocommerce-form-login.login .form-row {
	width: 100%;
	margin: 0 0 0.83vw 0;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator.wp-block-woocommerce-checkout-terms-block .wc-block-components-checkbox__label {
	padding: 0;
}
.wc-block-components-checkout-step__content {
	width: 100%;
}
.wc-block-components-address-card__edit {
	color: #ff3200;
	font-size: 1.04vw;
	font-weight: 600;
	padding: 0.21vw 0.42vw;
	border: 1px solid #ff3200;
	border-radius: 8px;
}
.wc-block-components-address-card__edit:hover {
	text-decoration: none;
}
.woocommerce-order {
	position: relative;
	background: #fff;
	padding: 1.67vw;
	border-radius: 24px;
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	font-size: 1.67vw;
	margin: 0 0 2.08vw 0;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
	margin: 0 0 1.25vw 0;
	padding: 0 0 1.25vw 0;
	border-bottom: 1px solid #ddd;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
	margin: 0 0 0.42vw 0;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li .woocommerce-Price-amount.amount {
	font-size: 1.04vw;
}
.woocommerce-order-details {
	padding: 1.67vw;
	margin: 2.25vw 0;
	background: #e9e5e3;
	border-radius: 16px;
}
.woocommerce-order-details__title, .woocommerce-column__title {
	font-size: 1.25vw;
	margin: 0 0 0.83vw 0;
	text-transform: uppercase;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
	width: 100%;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details thead {
	display: none;
}
.woocommerce-table__line-item.order_item {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 8px 0;
	align-items: center;
}
.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
	display: block;
}
.shop_table.order_details tbody {
	display: block;
	width: 100%;
}
.woocommerce-table__product-name.product-name a {
	color: #000;
}
.shop_table.order_details tfoot {
	display: block;
	width: 100%;
	border-top: 1px solid #ddd;
	padding: 0.83vw 0 0 0;
	margin: 0.83vw 0 0 0;
}
.shop_table.order_details tfoot tr {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 4px 0;
}
.shop_table.order_details tfoot tr th {
	margin: 0 2.08vw 0 0;
}
.my_account_orders.account-orders-table {
	display: block;
	font-size: 1.04vw;
  font-weight: 400;
}
.my_account_orders.account-orders-table thead {
	display: block;
	border-bottom: 1px solid #ddd;
	padding: 0 0 0.83vw 0;
}
.account-orders-table thead tr {
	display: flex;
	justify-content: space-between;
}
.my_account_orders.account-orders-table tbody {
	display: block;
	width: 100%;
}
.woocommerce-orders-table__row.woocommerce-orders-table__row--status-processing.order {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.83vw 0;
	border-bottom: 1px solid #ddd;
}
.account-orders-table thead th, .account-orders-table tbody th, .account-orders-table tbody td {
	width: 100%;
	text-align: left;
}
.account-orders-table .woocommerce-Price-amount.amount {
	font-size: 1.04vw;
	font-weight: 600;
}
.account-orders-table .button {
	padding: 1vw;
	font-size: 0.83vw;
}
.woocommerce-MyAccount-content a.button {
	color: #fff;
}
.woocommerce-orders-table__header.woocommerce-orders-table__header-order-actions {
	text-align: right;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
	text-align: right;
}
mark {
	background: #ff320026;
	padding: 8px;
	border-radius: 4px;
}
.shop_table.order_details .woocommerce-Price-amount.amount {
	font-size: 1.40vw;
}
.btn .button {
	background: transparent;
	padding: 0;
	border-radius: 0;
	font-size: 1.04vw;
	width: auto;
}
.wc-block-components-form .wc-block-components-text-input input:autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="url"], .wc-block-components-text-input input:autofill, .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-text-input.is-active input[type="url"] {
	padding: 1.25vw 0.83vw 0.83vw 0.83vw;
}
.wc-block-components-address-card {
	font-size: 1.04vw;
	padding: 0.83vw;
}











/* --------------------------------
	
	адаптив
	
-------------------------------- */
@media (max-width: 1200px) {
	* {
		scrollbar-color: rgba(12, 12, 12, 0.2) rgba(12, 12, 12, 0);
	}
	/* для Chrome/Edge/Safari */
	*::-webkit-scrollbar {
		height: auto;
		width: auto;
	}
	*::-webkit-scrollbar-track {
		background: transparent;
	}
	*::-webkit-scrollbar-thumb {
		background-color: transparent;
		border-radius: 5px;
		border: 3px solid rgba(12, 12, 12, 0.2);
	}
	* {
		-webkit-tap-highlight-color: transparent;
	}
	header {
		padding: 16px 0;
	}
	.container {
		padding: 0 24px;
	}
	.header-flex, .shrink .header-flex {
		padding: 16px 0;
	}
	.header-nav {
		position: fixed;
		display: flex;
		align-items: normal;
		top: 0;
		flex-direction: column;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.75);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		transform: translateX(-100%);
		visibility: hidden;
		-webkit-transition: 0.35s ease-out;
		transition: 0.35s ease-out;
		justify-content: flex-start;
		padding: 100px 24px 40px 24px;
		overflow: auto;
		justify-content: space-between;
	}
	.header-nav.open {
		transform: translateX(0%);
		visibility: visible;
	}
	.nav-group {
		display: flex;
		flex-direction: column;
	}
	.nav-top {
		padding: 0 0 24px 0;
		margin: 0 0 24px 0;
	}
	.nav {
		align-items: flex-start;
		flex-direction: column;
	}
	.menu-item {
		font-size: 2vw;
		margin: 0 0 16px 0;
	}
	.contact-item {
		font-size: 4vw;
		font-weight: 400;
	}
	.contact-ico {
		width: 4vw;
		margin: 0 1vw 0 0;
	}
	.burger {
		display: flex;
	}
	p, li {
		font-size: 16px;
		line-height: 1.3;
	}
	.logo {
		width: 120px;
	}
	.header-flex-group {
		width: auto;
		justify-content: flex-end;
		padding: 0;
	}
	.header-control {
		margin: 0;
	}
	.search-btn {
		width: 40px;
	}
	.login-btn {
		width: 24px;
		margin: 0 16px;
	}
	.cart-btn {
		width: 24px;
	}
	#cart-count {
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
	#search-input {
		bottom: -8px;
		padding: 16px 24px;
		border-radius: 40px;
	}
	.header-content {
		padding: 0 24px;
		border-radius: 50px;
	}
	.searchsubmit {
		width: 32px;
	}
	#s {
		width: 100%;
		font-size: 14px;
		height: 40px;
	}
	.intonext {
		bottom: 24px;
		width: 70px;
		height: 70px;+
	}
	.intro-flex {
		padding: 0 0 100px 0;
	}
	.intro-item {
		padding: 24px 32px;
		border-radius: 16px;
		margin: 0 8px;
		font-size: 24px;
	}
	.intro-item img {
		width: 48px;
		margin: 0 16px 0 0;
	}
	.title {
		font-size: 32px;
		margin: 0 0 40px 0;
	}
	.b1-grid {
		justify-content: space-between;
	}
	.b1-item {
		width: 48%;
		padding: 32px;
		border-radius: 16px;
		margin: 0;
	}
	.b1-img {
		width: 70%;
		margin: 0 0 24px 0;
	}
	.b1-item h3 {
		padding: 16px 24px;
		border-radius: 40px;
		margin: 0 0 16px 0;
		font-size: 20px;
	}
	.b1-item p {
		margin: 0 0 24px 0;
	}
	.btn {
		padding: 16px;
		border-radius: 40px;
		font-size: 16px;
	}
	.section {
		padding: 70px 0;
	}
	.b2-item span {
		font-size: 48px;
		margin: 0 0 8px 0;
	}
	.b2-grid {
		margin: -8px;
	}
	.b2-item {
		width: calc(33.333% - 16px);
		margin: 8px;
		padding: 24px;
		border-radius: 16px;
	}
	.product-grid {
		margin: 0 0 24px 0;
		flex-direction: column;
	}
	.product-item {
		border-radius: 16px;
		width: 100%;
		margin: 0 0 16px 0;
	}
	.product-item-img img {
		border-radius: 16px;
	}
	.product-item-content {
		padding: 40px 24px;
	}
	.product-item-title {
		font-size: 20px;
		margin: 0 0 24px 0;
	}
	.add_to_cart_button {
		font-size: 16px;
		padding: 0 24px;
		height: 56px;
	}
	.btn.btn-cart {
		padding: 0 24px;
		height: 56px;
	}
	.woocommerce-Price-amount.amount {
		font-size: 24px;
	}
	.product-item-txt {
		margin: 0 0 48px 0;
	}
	.btn2 {
		font-size: 16px;
		border-radius: 40px;
		padding: 8px 8px 8px 24px;
	}
	.btn2 img {
		width: 40px;
		margin: 0 0 0 24px;
	}
	.b4-grid {
		margin: -8px;
	}
	.b4-item {
		width: calc(50% - 16px);
		margin: 8px;
		padding: 24px 24px 56px 24px;
		border-radius: 16px;
	}
	.b4-item-num {
		right: 24px;
		font-size: 100px;
	}
	.b4-item h3 {
		margin: 0 0 16px 0;
		font-size: 20px;
	}
	.b5-slider-item.swiper-slide {
		padding: 24px;
		border-radius: 16px;
	}
	.b5-slider-header {
		margin: 0 0 16px 0;
	}
	.b5-ico {
		width: 48px;
		margin: 0 16px 0 0;
	}
	.b5-slider-header p {
		font-size: 16px;
	}
	.b5-slider-descr {
		margin: 0 0 32px 0;
	}
	.b5-slider-raiting {
		width: 35%;
	}
	.slider-btn {
		width: 56px;
		height: 56px;
	}
	.prev-button-slide {
		transform: translateX(-35%);
	}
	.next-button-slide {
		transform: translateX(35%);
	}
	.slider-btn img {
		width: 16px;
		height: 16px;
	}
	.footer-nav {
		align-items: flex-start;
		padding: 70px 0 40px 0;
		flex-direction: column;
	}
	.footer-logo {
		width: 240px;
		margin: 0 0 32px 0;
	}
	.footer-nav-group {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-nav-main {
		padding: 0;
		margin: 0 0 32px 0;
		border-right: 0;
	}
	.footer-nav-inner .menu-item {
		font-size: 14px;
	}
	.footer-nav-main .menu-item {
		font-size: 18px;
	}
	.footer-contact {
		padding: 40px 0;
	}
	.footer-contact-list {
		flex-direction: column;
	}
	.footer-contact-item {
		margin: 0 0 24px 0;
	}
	.footer-contact-title {
		font-size: 10px;
		margin: 0 0 4px 0;
	}
	.footer-contact-item a, .footer-contact-item p {
		font-size: 16px;
	}
	.footer-soc a, .footer-online a {
		width: 56px;
		margin: 0 0 0 8px;
	}
	.footer-contact-flex {
		align-items: flex-end;
	}
	.footer-info {
		padding: 24px 0;
		align-items: flex-end;
	}
	.footer-info-list {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	.copy {
		font-size: 14px;
		margin: 0;
	}
	.footer-info-list a {
		font-size: 14px;
		margin: 0 0 16px 0;
	}
	.footer-info-list a:last-child {
		margin: 0 0 16px 0;
	}
	.footer-online span {
		font-size: 14px;
		margin: 0 16px 0 0;
	}
	.intonext img {
		width: 16px;
	}
	.woocommerce-result-count {
	font-size: 12px;
}
.nice-select {
	border-radius: 8px;
	font-size: 12px;
	height: 40px;
}	
	.nice-select .option {
	min-height: 32px;
	font-size: 12px;
}
	.btn .button {
	font-size: 14px;
}
	#page {
	padding: 120px 0 70px 0;
}
	.breadcrumbs {
	font-size: 12px;
	margin: 0 0 32px 0;
}
	.products.columns-4 .product-item {
	margin: 0 0 16px 0;
}
	.product-thumb {
	width: 45%;
}
.woocommerce-product-details__short-description {
	width: 100%;
	margin: 0 0 24px 0;
}	
	.single-sub {
	font-size: 10px;
}
	.price {
	font-size: 24px;
	margin: 0 0 16px 0;
}
	.quantity-btn {
	width: 40px;
	height: 40px;
	font-size: 16px;
}
	.input-text {
	height: 40px;
	font-size: 20px;
	width: 60px;
}
.single_add_to_cart_button.button {
	padding: 12px 32px;
	border-radius: 40px;
	font-size: 12px;
}	
	.wc-block-components-sidebar-layout .wc-block-components-main {
	width: 100%;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
	padding: 24px;
	border-radius: 16px;
	margin: 0 0 24px 0;
}	
	.wc-block-cart__main .wc-block-cart-items td.wc-block-cart-item__product {
	padding: 0 24px !important;
}
	.wc-block-components-product-name {
	font-size: 16px !important;
	margin: 0 0 8px 0;
}
	.wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
	font-size: 24px;
}
	.wc-block-components-sidebar {
	width: 100%;
}
.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
	font-size: 16px;
	padding: 0 0 16px 0;
}	
.wc-block-components-totals-wrapper {
	padding: 16px 0;
}	
	.wc-block-components-totals-item__label {
	font-size: 12px !important;
}
.wc-block-components-totals-item__value {
	font-size: 24px !important;
}	
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
	padding: 16px;
	border-radius: 40px;
	font-size: 12px;
}	
.wc-block-cart-items__row {
	padding: 8px 0;
}	
.wc-block-components-title.wc-block-components-checkout-step__title {
	font-size: 16px;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
	font-size: 10px;
	left: 16px;
	max-width: calc(100% - 32px);
	top: 8px;
}	
	.wc-block-components-form .wc-block-components-text-input input:autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="url"], .wc-block-components-text-input input:autofill, .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-text-input.is-active input[type="url"] {
	padding: 24px 16px 16px 16px;
}
	.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
	font-size: 14px;
	height: 56px;
}
.wc-block-components-address-card {
	font-size: 14px;
	padding: 16px;
}	
	address {
	font-size: 14px;
}
.wc-block-components-radio-control-accordion-option.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	padding: 16px;
}	
	.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
	margin: 0 0 8px 0;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
	font-size: 14px;
}	
input[type="checkbox"] ~ .wpcf7-list-item-label::before, input[type="radio"] ~ .wpcf7-list-item-label::before, input[type="checkbox"] ~ span::before, input[type="radio"] ~ span::before, input[type="radio"] ~ .wc-block-components-radio-control__option-layout::before {
	width: 24px;
	height: 24px;
}	
.wc-block-components-radio-control__option-layout {
	padding: 0 0 0 32px;
}	
.wc-block-components-radio-control-accordion-content {
	font-size: 14px;
}	
	.wc-block-components-checkbox__label, .wc-block-components-radio-control__option-layout {
	padding: 0 0 0 32px;
}
.wc-block-components-checkbox label {
	font-size: 14px;
}	
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
	padding-top: 16px;
}	
	.wc-block-checkout__terms {
	margin: 0 0 24px 0;
	font-size: 14px;
}
.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.wc-block-components-checkout-place-order-button--full-width.contained {
	padding: 16px;
	border-radius: 40px;
	font-size: 12px;
}
	.wc-block-components-checkout-order-summary__title-text {
	font-size: 16px !important;
	padding: 0 0 16px 0 !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item {
	padding: 24px 0;
}	
.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
	padding: 0 32px;
}	
.wc-block-components-address-card__edit {
	font-size: 10px;
	padding: 8px 12px;
}	
	.woocommerce-order {
	padding: 32px 24px;
	border-radius: 16px;
}
	.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	font-size: 24px;
	margin: 0 0 32px 0;
}
	.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
	margin: 0 0 4px 0;
}
.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
	margin: 0 0 16px 0;
	padding: 0 0 16px 0;
}	
	.woocommerce-order-details {
	padding: 24px;
	margin: 24px 0;
	border-radius: 8px;
}
.woocommerce-order-details__title, .woocommerce-column__title {
	font-size: 16px;
	margin: 0 0 16px 0;
}	
	.shop_table.order_details .woocommerce-Price-amount.amount {
	font-size: 20px;
}
.shop_table.order_details tfoot tr th {
	margin: 0 32px 0 0;
}	
.woocommerce-MyAccount-content {
	padding: 32px 24px;
	border-radius: 16px;
}	
	.woocommerce-MyAccount-navigation-link a {
	border-radius: 40px;
	padding: 16px;
}
.woocommerce-MyAccount-navigation-link {
	font-size: 12px;
}	
.my_account_orders.account-orders-table thead {
	padding: 0 0 16px 0;
}
	.my_account_orders.account-orders-table {
	font-size: 14px;
}
	.woocommerce-orders-table__row.woocommerce-orders-table__row--status-processing.order {
	padding: 8px 0;
}
	.account-orders-table .button {
	padding: 8px 16px;
	font-size: 10px;
}
	.account-orders-table .woocommerce-Price-amount.amount {
	font-size: 14px;
}
.woocommerce-MyAccount-content p {
	margin: 0 0 24px 0;
}
mark {
	padding: 0 8px;
}	
.woocommerce-MyAccount-content h2 {
	font-size: 16px;
	padding: 0 0 16px 0;
	margin: 0 0 16px 0;
}	
.woocommerce-Address-title p {
	margin: 0 0 16px 0;
	font-size: 16px;
}	
.woocommerce-Address {
	padding: 0 0 24px 0;
	margin: 0 0 24px 0;
}	
.edit {
	padding: 16px;
	border-radius: 40px;
	margin: 0 0 16px 0;
	font-size: 12px;
}	
.form-row label {
	font-size: 12px;
}	
	.form-row .input-text {
	font-size: 14px;
	height: 48px;
	padding: 0 16px;
}
	.form-row label span {
	padding: 0 0 0 40px;
}
.button {
	padding: 16px 32px;
	border-radius: 40px;
	font-size: 12px
}	
fieldset {
	padding: 24px;
	margin: 24px 0;
}	
legend {
	font-size: 16px;
	padding: 0 16px;
}	
	.woocommerce-form.woocommerce-form-login.login {
	padding: 32px 24px;
	border-radius: 16px;
	margin: 24px 0 0 0;
	width: 100%;
}
	.woocommerce-form-login.login .form-row {
	margin: 0 0 16px 0;
}
.woocommerce-button.button.woocommerce-form-login__submit {
	margin: 16px 0 0 0;
}	
	
	
	
	
	
	
	
	
}

@media (max-width: 991px) {
	.intro-grid {
		flex-direction: column;
	}
	.intro-item {
		margin: 0 0 16px 0;
		padding: 32px 48px;
	}
	.intro-item img {
		width: 70px;
	}
	.b1-img {
		width: 85%;
	}
	.b2-item {
		width: calc(50% - 16px);
	}
	.footer-online {
		flex-wrap: wrap;
		justify-content: flex-end;
		text-align: right;
	}
	.footer-online span {
		margin: 0 0 16px 0;
		width: 100%;
	}
	.page-flex {
	justify-content: flex-start;
	flex-direction: column;
}
	.product-thumb {
	width: 100%;
	position: relative;
}
.product_title.entry-title {
	font-size: 24px;
	margin: 0 0 32px 0;
}	
	.product-content {
	width: 100%;
	margin: 40px 0 0 0;
}
	.woocommerce-MyAccount-navigation {
	width: 100%;
	order: 110;
}
	.woocommerce-MyAccount-content {
	width: 100%;
	margin: 0 0 24px 0;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}

@media (max-width: 767px) {
	header {
		padding: 8px 0;
	}
	.container {
		padding: 0 16px;
	}
	.burger {
		width: 24px;
		margin: 0 0 0 16px;
	}
	.search-btn {
		width: 32px;
	}
	.logo {
		width: 40%;
	}
	.intro-grid {
		width: 100%;
	}
	.intro-item {
		padding: 32px;
	}
	.title {
		font-size: 24px;
		margin: 0 0 32px 0;
		text-align: left;
	}
	.b1-grid {
		flex-direction: column;
	}
	.b1-item {
		width: 100%;
		padding: 24px;
		margin: 0 0 16px 0;
	}
	.b1-item:last-child {
		margin: 0;
	}
	.b1-img {
		width: 75%;
	}
	.b2-grid {
		margin: 0;
	}
	.b2-item {
		width: 100%;
		margin: 0 0 8px 0;
		padding: 16px 24px;
	}
	.b2-item:last-child {
		margin: 0;
	}
	.product-item-img {
		width: 100%;
		position: relative;
		height: 80vw;
	}
	.product-item {
		flex-direction: column;
	}
	.product-item-content {
		padding: 24px;
		width: 100%;
	}
	.product-item-title {
		font-size: 16px;
	}
	.b4-grid {
		margin: 0;
	}
	.b4-item {
		width: 100%;
		margin: 0 0 16px 0;
	}
	.b5-slider-raiting {
		width: 45%;
	}
	.slider-btn {
		bottom: -40px;
		top: auto;
	}
	.prev-button-slide {
		transform: translateX(0%);
		left: 25%;
	}
	.next-button-slide {
		transform: translateX(0);
		right: 25%;
	}
	.footer-logo {
		width: 100%;
	}
	.footer-contact-flex {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-soc a, .footer-online a {
		margin: 0 8px 0 0;
	}
	.footer-soc, .footer-online {
		margin: 24px 0 0 0;
	}
	.footer-info {
		align-items: flex-start;
		flex-direction: column-reverse;
	}
	.footer-online {
		justify-content: flex-start;
		text-align: left;
		margin: 0 0 24px 0;
	}
	.header-nav {
		padding: 70px 16px 40px 16px;
	}
	.menu-item {
		font-size: 4vw;
	}
	.contact-item {
		font-size: 8vw;
	}
	.contact-ico {
		width: 10vw;
	}
	.woocommerce-ordering {
	width: 50%;
}
	.woocommerce-result-count {
	width: auto;
}
	.cart {
	justify-content: space-between;
}
	.is-medium table.wc-block-cart-items .wc-block-cart-items__row, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row, .is-small table.wc-block-cart-items .wc-block-cart-items__row {
	display: flex;
	flex-direction: column;
}	
.wc-block-cart-item__image {
	width: 100%;
}	
	.wc-block-cart__main .wc-block-cart-items td.wc-block-cart-item__product {
	padding: 24px 0 0 0 !important;
}
	.wc-block-cart-item__total-price-and-sale-badge-wrapper {
	align-items: flex-start;
}
	.wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
	margin: 0;
}
.wc-block-cart-item__total {
	margin: 8px 0 0 0 !important;
}	
	.wc-block-components-sidebar-layout .wc-block-components-main {
	padding: 8px 16px;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
	padding: 16px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid color-mix(in srgb,currentColor 20%,transparent) !important;
}	
.wc-block-components-checkout-order-summary__title-text {
	padding: 0 !important;
	border: 0;
}	
.wc-block-cart-item__total-price-and-sale-badge-wrapper .price {
	font-size: 20px;
}	
.wc-block-components-totals-item__value {
	font-size: 20px !important;
}	
.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
	padding: 0 24px;
}	
.wc-block-components-form {
	padding: 16px 0;
}	
	.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
	font-size: 20px;
}
.woocommerce-order-details {
	padding: 24px 16px;
}	
.woocommerce-order {
	padding: 24px 16px;
}	
	.shop_table.order_details tfoot tr {
	justify-content: space-between;
}
	.shop_table.order_details tfoot tr th {
	margin: 0;
	text-align: left;
}
.shop_table.order_details tfoot {
	padding: 16px 0 0 0;
	margin: 16px 0 0 0;
}	
.shop_table.order_details tfoot tr {
	font-size: 14px;
}	
	.woocommerce-MyAccount-content {
	padding: 24px 16px;
}
.my_account_orders.account-orders-table thead {
	display: none;
}	
.woocommerce-orders-table__row.woocommerce-orders-table__row--status-processing.order {
	flex-direction: column;
}	
	.account-orders-table thead th, .account-orders-table tbody th, .account-orders-table tbody td {
	margin: 4px 0;
}
	.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
	text-align: left;
}
.form-row {
	width: 100%;
}	
fieldset {
	padding: 24px 16px;
}	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}