:root {
	--color_black: #363636;
	--color_red: #c50505;
	--color_redlite: #f77e85;
}
@font-face {
    font-family: FuturaPTBook;
    src: url(/fonts/FuturaPTBook.otf);
    font-weight: 350;
}
@font-face {
    font-family: FuturaPTBook;
    src: url(/fonts/FuturaPTMedium.otf);
    font-weight: 500;
}

@font-face {
    font-family: FuturaPTBook;
    src: url(/fonts/FuturaPTDemi.otf);
    font-weight: 600;
}

@font-face {
    font-family: FuturaPTBook;
    src: url(/fonts/FuturaPTHeavy.otf);
    font-weight: 900;
}

@font-face {
    font-family: Playfair;
    src: url(/fonts/PlayfairDisplay-Regular.ttf);
    font-weight: normal;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: FuturaPTBook, Arial;
}
*:focus {
    outline: none;
}
html {
	scrollbar-width: thin;
	scrollbar-color: #aeaeae #dedede;
	scroll-behavior: smooth;
}
html::-webkit-scrollbar {
	width: 5px;
}
html::-webkit-scrollbar-track {
	background: #dedede; 
}
html::-webkit-scrollbar-thumb {
	background: #aeaeae; 
}
body {
	padding: 0px;
	padding-top: 152px;
	margin: 0px;
	background-color: #fefefe;
	font-family: FuturaPTBook, sans-serif;
    color: var(--color_black);
    font-size: 1.125rem;
    font-weight: 350;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
	
}
h1, h2, h3, h4, h5 {
	font-size: 40px;
	color: #000000;
	margin-bottom: 40px;
	font-weight: 300;
	margin-top: 30px;
	margin-bottom: 40px;
}
a:link, a:visited, a:active {
	color: var(--color_red);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: var(--color_red);
}
a:focus {
	-moz-outline-style: none;
	outline: none;
}
form, p { 
	padding: 0px; 
	margin: 0px;
}
input[type=text], input[type=password], input[type=submit], input[type=button], input[type=email], input[type=tel], select, textarea {
	padding: 15px 20px;
	font-family: FuturaPTBook, font-family;
	color: var(--color_black);
	background-color: #fff;
	font-size: 15px;
	margin: 5px 0px;
	border: 2px solid #262626;
	width: 100%;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, textarea::placeholder {
	color: var(--color_black);
	text-transform: uppercase;
}
input[type=text], input[type=password], textarea {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.frm_100 input[type=text], .frm_100 input[type=password], .frm_100 textarea, .frm_100 input[type=submit] {
	width: 100%;
}
input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, textarea:hover, textarea:focus   {
	background-color: #f0f0f0;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.50);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.50);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.50);
}
input[type=submit], a.btn_all, a.btn_cnl {
	border: 2px solid #f77e85;
	background: #f77e85;
	color: #ffffff;
	font-size: 20px;
	padding: 18px 25px;
	transition: 0.5s;
	width: auto;
}
input[type=submit]:hover, a.btn_all:hover, a.btn_cnl:hover {
	background-color: #fff;
	color: #f77e85;
}

a.btn_cnl {
	background-color: #ccc;
	color: #222;
	border: 1px solid #ccc;
}
input[type=button]::-moz-focus-inner {
    padding: 0;
    border: none;
}
.mess {
	background-color: #fdf0dc;
	color: #ce572e;
	padding: 5px;
	border: 1px solid #f1dfc5;
}
.ok {
	background-color: #e2ffe0;
	color: #6ca628;
	padding: 10px;
	border: 1px solid #bbffb0;
}
.color_red {
	color: #f00;
}
.popup {
	left: 0%;
	margin: 0px;
	overflow-x: auto ;
	overflow-y: auto ;
	overflow: auto;
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 99;
	display: block;
	background: rgba(0,0,0,.6);
	top: -100%;
	padding: 50px 0px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.popup_stick {
	top: 0%;
}
.popup_in {	
	width: 90%;
	overflow: visible;
	margin-left: auto;
	margin-right: auto;
	position: relative;	
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 30px;
	margin-top: 10px;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}
.popup_close {
	position: absolute;
	right: 10px;
	top: 10px;
}
header {
	position: fixed;
	z-index: 20;
	width: 100%;
	top: 0px; 
	left: 0px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px;	
}
header.top {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px;
}
header.top .td_logo a {
	display: inline-block;
}
header.top .td_logo .logo {
	max-width: 120px;
}
header .td_menu {
	padding-left: 30px;
}
header .td_menu ul {
	display: inline-block;
	padding: 0px;
	margin: 0px;
	list-style: none;
}
header .td_menu ul li {
	display: inline-block;
	padding: 0px;
	margin: 0px;
	padding-right: 15px;
}
header .td_menu ul li a, header .td_menu ul li .span_a {
	font-weight: 350;
	color: var(--color_black);
	font-size: 16px;
	text-transform: uppercase;
	line-height: 50px;
	cursor: pointer;
}
header .td_menu ul li .sub {
	position: absolute;
	background-color: rgba(255,255,255,0.95);
	width: 100%;
	left: 0px;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
header .td_menu ul li:hover .sub {
	max-height: 1000px;
	opacity: 1;
}
header .td_menu ul li .sub .tit_desc {
	display: block;
	margin-left: 30px;
	text-decoration: underline;
	margin-bottom: -20px;
}
header .td_menu ul li .sub .td {
	vertical-align: top;
	padding: 20px 30px;
}
header .td_menu ul li .sub .td_pic {
	text-align: right;
}
header .td_menu ul li .sub .tit {
	font-size: 15px;
	text-decoration: underline;
}
header .td_menu ul li .sub ul {
	display: block;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	column-gap: 4px;
	-moz-column-gap: 4px;
	-webkit-column-gap: 4px;
}
header .td_menu ul li .sub ul li {
	vertical-align: top;
	width: 100%;
}
header .td_menu ul li .sub ul li a {
	font-size: 14px;
	line-height: 45px;
}
header .td_menu ul li .sub .td_pic img {
	max-width: 360px;
}
#header.hid {
	top: 0px;
}
#header .tbl_logo {
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#header .tbl_logo .td {
	max-height: 100px;	
	vertical-align: middle;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#header.top .tbl_logo .td {
	padding: 0px 10px;
}
#header .td_btns {
	text-align: right;
	padding: 15px 30px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#header .td_btns .itms {
	display: inline-block;
	vertical-align: middle;
}
#header .td_btns .itms .itm {
	margin-left: 30px;
	vertical-align: middle;
	display: inline-block;
}
#basket_header {
	display: none;
	position: absolute;
	top: 100%;
	right: -30px;
	width: 420px;
	box-shadow: 0px 2px 4px 0px #b4b4b4;
	background: #f1f1f1;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	padding: 9px 0px 0px 0px;
	z-index: 500;
	animation: slideUp 0.4s ease-out;
	max-height: 550px;
	overflow-y: auto;
}
#basket_header .info-title {
	text-transform: uppercase;
	text-align: left;
	color: #f55e67;
	font-size: 15px;
	font-weight: 500;
	padding: 20px;
	background-color: #fff;
}
#basket_header .tbl_products {
	background-color: #fff;
}
#basket_header .pnomer {
	display: none;
}
#basket_header .info_test, .popup .info-title, .popup .info_test, .popup .select_qty {
	display: none;
}
#basket_header .td_products {
	padding-right: 0px;
}
#basket_header .select_qty {
	display: none;
}
#div_basket .select_qty {
	background-color: #e9e9ed; 
	padding: 3px 5px;
	width: auto;
	vertical-align: top;
	margin-bottom: 10px;
}
@keyframes slideUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
#basket_all {
	display: inline-block;
	position: relative;
}
#basket_all:hover #basket_header {
	display: block;
}
#basket_header .basket .tbl_products {
	padding: 0px 20px;
}
#basket_header .btns a:nth-child(1) {
	text-decoration: underline;
	color: #000;
	display: block;
	margin-bottom: 15px;
	font-weight: 600;
}
#basket_header .btns a:nth-child(2) {
	background: transparent;
	border: none;
	text-align: center;
	opacity: 0.5;
	text-decoration: underline;
	cursor: pointer;
	color: #000;
	font-weight: 600;
}
#basket_header .title {
	padding-bottom: 9px;
	padding-top: 0px;
	font-weight: 600;
}
#basket_header .total {
	text-align: right;
	padding: 20px;
}
#basket_header .basket .tbl_products .tr .del img {
	width: 18px;
}
#basket_header .basket .div_price span {
	display: none;
}
#basket_header .total_rows, .popup .total_rows {
	display: none;
}
#header .td_btns .itms #basket {
	position: relative;
}
#header .td_btns .itms #basket_2 {
	display: none;
}
#basket:hover #basket_2 {
	display: block !important;
}
#basket:hover #basket_1 {
	display: none !important;
}
#header .td_btns .itms .itm img {
	vertical-align: middle;
}
#header.top .td_btns {
	padding: 13px 30px;
}
#header .lgs a {
	display: inline-block;
	color: var(--color_black);
	text-transform: uppercase;
	text-decoration: underline;
}
#header .lgs a.a_ch {
	color: var(--color_red);
}
#header .tel_div {
	position: absolute;
	right: 20px;
	
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#header .tel_div i {
	vertical-align: middle;
}
#header .tel_div span {
	display: inline-block;
	margin-left: 10px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
	max-width: 500px;
	overflow: hidden;
	white-space: nowrap;
	vertical-align: middle;
}
#header #seach_div {
	position: absolute;
	left: 0px;
	width: 100%;
	background-color: rgba(255,255,255,0.98);
	padding: 0px 50px;
	max-height: 0px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#header #seach_div.seach_ch {
	padding: 50px 50px;
	max-height: 600px;
	opacity: 1;
}
#header #seach_div .close {
	width: 24px;
	margin-left: auto;
	display: block;
}
#header #seach_div #srch_form {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
#header #seach_div #srch_form .tbl_div {
	border-bottom: 1px solid var(--color_black);
	margin-bottom: 20px;
}
#header #seach_div #srch_form input[type=text] {
	border: 0px solid #fff;
	background-color: transparent;
}
#header #seach_div #srch_form input[type=text]:hover, #header #seach_div #srch_form input[type=text]:focus {
	background-color: transparent;
	-webkit-box-shadow: 0px 0px 0px 0px rgba(50, 50, 50, 0.50);
	-moz-box-shadow:    0px 0px 0px 0px rgba(50, 50, 50, 0.50);
	box-shadow:         0px 0px 0px 0px rgba(50, 50, 50, 0.50);	
}
#header #seach_div #srch_form input[type=submit] {
	width: 100%;
	background-color: transparent;
	color: var(--color_black);
	border: 2px solid var(--color_black);
	opacity: 0.5;
}
#header #seach_div #srch_form input[type=submit]:hover {
	opacity: 1;
}
main img {
	max-width: 100%;
}
main {
	/*background: #fff url('/img/main_back.png');*/
	background-color: #f7f7f7;
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
.main {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	clear: both;
	width: 100%;
	max-width: 1920px;
	height: auto;
	overflow: visible;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
}
.main_div {
	max-width: 1400px;
}
.main_products {
	/*max-width: 1430px;*/
	padding: 40px 20px;
}
.main_products h2 {
	margin-top: 0px;
	margin-bottom: 10px;
}
.main_grey {
	background: #f7f7f7;
	background-attachment: fixed;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.container {
	max-width: 1380px;
}
.border_pink {
	border: 1px solid #fff0f0;
}
.care_30 {
	padding: 30px;
}
.cats_div {
	text-align: center;
}
.cats_div .itms .itm {
	display: inline-block;
	vertical-align: top;
	width: 240px;
	margin: 5px 5px 20px 5px;
}
.cats_div .itms .itm h3 {
	font-weight: 600;
	font-size: 25px;
	color: #000000;
	text-transform: uppercase;
	margin-top: 10px;
	margin-bottom: 0px;
}
.cats_div .bdy {
	text-align: left;
}
.delivery_div {
	margin-top: 50px;
}
.delivery_div .td {
	width: 50%;
	padding: 60px 50px;
}
.delivery_div .td_pic {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.delivery_div .td_info {
	background-color: #e9e9e9;
}
.delivery_div .td_info .tit {
	color: #000000;
	font-size: 40px;
	line-height: 55px;
	margin-bottom: 20px;
	font-weight: 300;
	max-width: 450px;
}
.delivery_div .td_info a {
	color: #363636;
	display: inline-block;
	border: 1px solid #363636;
	font-weight: 500;
	font-size: 18px;
	padding: 11px 27px 13px;
	text-decoration: none;
	transition: 0.5s;
}
.delivery_div .td_info a:hover {
	color: #fff;
	background-color: #363636;
}
#footer {
	padding-top: 50px;
}
#footer .td {
	vertical-align: top;
	width: 15%;
}
#footer .td_logo {
	text-align: left;
	width: 25%;
}
#footer .td_newsletter {
	width: 30%;
	padding-left: 30px;
}
#footer .td_newsletter input[type=email] {
	font-size: 100%;
}
#footer .copyright {
	text-align: center;
	padding: 25px;
	border-top: 1px solid #b2b2b2;
}
#footer .tit {
	margin-top: 8px;
	font-size: 15px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 20px;
	font-weight: 350;
}
footer .care_30 {
	padding: 20px 30px;
}
footer .logo {
	max-width: 250px;
}
footer ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
}
footer ul li {
	display: block;
	padding: 9px 0px;
	margin: 0px;
}
footer ul li.cards img {
	width: 50px; 
	margin-right: 15px;
	vertical-align: middle;
}
footer ul li a {
	color: #242a31!important;
	display: block;
	font-size: 16px;
}
footer ul li a:hover {
	text-decoration: underline;
}
footer #fr_newsletter {
	padding: 0px;
	margin: 0px;
	position: relative;
	max-width: 330px;
}
footer #fr_newsletter input[type=email] {
	margin: 0px;
}
footer #fr_newsletter input[type=submit] {
	border: 0px solid #fff;
	position: absolute;
	margin: 0px;
	top: 0px;
	height: 100%;
	padding: 0px;
	width: 57px;
	right: 0px;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gU3ZnIFZlY3RvciBJY29ucyA6IGh0dHA6Ly93d3cub25saW5ld2ViZm9udHMuY29tL2ljb24gLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjU2IDI1NiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8bWV0YWRhdGE+IFN2ZyBWZWN0b3IgSWNvbnMgOiBodHRwOi8vd3d3Lm9ubGluZXdlYmZvbnRzLmNvbS9pY29uIDwvbWV0YWRhdGE+DQo8Zz48Zz48Zz48cGF0aCBmaWxsPSIjMzYzNjM2IiBkPSJNMTMuNCwxNy40Yy0xLjUsMC44LTMsMS45LTMuMywyLjRjLTAuNCwwLjcsNC43LDE1LjYsMTcsNDkuMmM5LjcsMjYuNSwxNy43LDQ4LjQsMTcuOSw0OC42YzAuMSwwLjEsMzkuOSwyLjUsODguNCw1LjJjNDguNSwyLjcsODguMiw1LDg4LjIsNS4ycy0zOS43LDIuNS04OC4yLDUuMmMtNDguNSwyLjctODguMyw1LTg4LjQsNS4yYy0wLjEsMC4xLTguMiwyMi0xNy45LDQ4LjZjLTEyLjMsMzMuNi0xNy40LDQ4LjYtMTcsNDkuMmMwLjMsMC41LDEuOCwxLjYsMy4zLDIuNGMyLjQsMS4zLDMuNSwxLjQsNy44LDEuM2M0LjctMC4zLDUuOC0wLjYsMTcuOS01LjhjNzYuOS0zMy4xLDE0Mi40LTYzLjgsMTc0LjItODEuNmMxOS44LTExLDMyLjctMjAuNywzMi43LTI0LjVjMC0yLjMtNi4yLTguMS0xNC41LTEzLjVDMjA0LjcsOTYuNywxMzUuOCw2My43LDM5LjEsMjJjLTEyLjEtNS4yLTEzLjItNS41LTE3LjktNS44QzE2LjgsMTYsMTUuNywxNi4yLDEzLjQsMTcuNHoiLz48L2c+PC9nPjwvZz4NCjwvc3ZnPg==) no-repeat center center;
}
footer .social {
	display: inline-block;
	padding: 0px;
	list-style: none;
	margin-top: 45px;
}
footer .social li {
	display: inline-block;
	margin-right: 45px;
}
footer .social li a i {
	color: #dd716e;
	font-size: 20px;
}
.tbl_div {
	display: table;
	width: 100%;
}
.tbl_div .tr {
	display: table-row;
}
.tbl_div .td {
	display: table-cell;
	vertical-align: middle;
}
#menu .mobile_bar {
	display: none;
}
.lgs {
	display: inline-block;
	vertical-align: middle;
}
.lgs img {
	height: 14px;
}
.lgs ul {
	position: absolute;
	padding: 0px;
	margin: 0px;
	list-style: none;
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.lgs:hover ul {
	max-height: 100px;
}
.lgs ul li {
	display: block;
	padding: 0px;
	margin: 0px;
}
.lgs ul li a {
	display: block;
	margin-top: 5px;
	margin-bottom: 5px;
}
header .td_logo {
	width: 300px;
	text-align: center;
}
header .td_logo .logo {
	vertical-align: middle;
	max-width: 288px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
header .td_logo a {
	padding: 17px 10px;
	display: inline-block;
}
header.top .td_logo a {
	padding: 15px 10px;
}
header .main {
	padding: 0px;
}
#btn_top {
	background-color: #323232;
	padding: 0px 10px;
	line-height: 40px;
	display: inline-block;
	position: fixed;
	right: 20px;
	bottom: -50px;
	opacity: 0;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#btn_top:hover {
	background-color: #ee6059;
}
#btn_top img {
	display: inline-block;	
	vertical-align: middle;
	margin-top: 8px;
	margin-bottom: 8px;
}
#btn_top.btn_stick {
	bottom: 0px;
	opacity: 1;
}
.menu_btn {
	display: none;
	margin-left: auto;
	cursor: pointer;
	vertical-align: middle;
	width: 30px;
}
.menu_btn .bar1, .menu_btn .bar2, .menu_btn .bar3 {
	width: 30px;
	height: 2px;
	background-color: #222;
	margin: 7px 0;
	transition: 0.4s;
}
.mob_menu .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.mob_menu .bar2 {opacity: 0;}

.mob_menu .bar3 {
	transform: translate(0, -11px) rotate(45deg);
}
.products_div h1 {
	margin-left: 25px;
}
.splide.no_controls .splide__arrows {
	display: none;
}
.splide .splide__slide .info {
	position: absolute;
	left: 50%;
	top: 50%;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}
.splide .splide__slide .info h4 {
	font-size: 35px;
	display: block;
	padding: 0px;
	margin: 0px;
	margin-bottom: 20px;
	font-size: 34px;
	font-weight: 700;
	line-height: 45px;
}
.splide .splide__slide .info h5 {
	display: block;
	padding: 0px;
	margin: 0px;
}
.blogs {
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 3px solid #000;
}
.blogs .itm {
	display: inline-block;
	vertical-align: top;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2%;
	color: var(--color_black);
}
.blogs .itm .tbl_div .td:last-child {
	text-align: right;
}
.blogs .itm:nth-child(3n) {
	margin-right: 0px;
}
.blogs .itm .info {
	padding: 10px 20px 20px 20px;
}
.blogs .itm .tit {
	font-weight: 900;
	font-size: 1.2em;
	margin-top: 10px;
	margin-bottom: 10px;
}
.blogs_2 .itm {
	width: 49%;
}
.blogs_2 .itm:nth-child(2n) {
	margin-right: 0px;
}
.blog h1 {
	text-align: center;
}
.blog .pic_big {
	text-align: center;
	margin-bottom: 30px;
}
.blog .pic_big img {
	max-height: 600px;
}
.back_white {
	background-color: #fff;
}
.list .td {
	padding: 20px;
	text-align: center;
}
.list a {
	display: inline-block;
	vertical-align: middle;
	margin-left: 2px;
	margin-right: 2px;
	color: #868686;
	line-height: 20px;
	min-width: 30px;
	padding: 5px;
}
.list a.a_ch {
	color: var(--color_black);
	background-color: #ccc;
}
.list .tot {
	float: left;
}
.list .next_page {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 20px;
	width: 200px;
	border: 2px solid #000;
	text-align: center;
	margin-bottom: 10px;
}
#shops h1, #shops h2, #shops .pic_big {
	text-align: center;
}
#shops select {
	width: auto;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.shops {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;	
}
.shops .itm {
	overflow: hidden;
	width: 0%;
	max-height: 0px;
	margin-left: 0%;
	margin-right: 0%;
	margin-bottom: 0%;
	position: relative;
	padding: 20px 0px;
	vertical-align: top;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.shops .itm.item_ch {
	max-height: 500px;
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 2%;
}
.shops .itm:after {
	content: "";
	display: block;
	width: 80%;
	height: 1px;
	background: #f55e67;
	position: absolute;
	bottom: 0;
}
.shops .itm .row {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: var(--color_black);
}
.shops .itm a.row:hover {
	color: var(--color_red);
}
.shops i {
	color: #f55e67;
	position: absolute;
	left: 0px;
	top: 5px;
}
.shops i.fa-envelope, .shops i.fa-phone-alt, .shops i.fa-clock {
	font-size: 14px;
}
.breadcrumbs {
	display: block;
	background-color: #fff;
	padding: 10px 20px;
	margin: 0px;
	list-style: none;
	white-space: nowrap;
	overflow-x: auto;
}
.breadcrumbs li {
	display: inline-block;
	text-transform: uppercase;
	color: #7c7c7c;
	padding: 0px 5px;
	font-size: 15px;
	font-weight: 350;
}
.breadcrumbs li:after {
	content: '/';
	margin-left: 10px;
}
.breadcrumbs li:hover:after {
	color: #7c7c7c;
}
.breadcrumbs li:last-child:after {
	content: '';
}
.breadcrumbs li a {
	color: #7c7c7c;
}
.breadcrumbs li:hover, .breadcrumbs li:hover a {
	color: var(--color_red);
}
.contacts .td_big {
	vertical-align: top;
	width: 50%;
}
#form_contact input[type=text], #form_contact  input[type=email], select, textarea, textarea:hover, textarea:focus {
	background-color: transparent;
}
#form_contact input[type=submit] {
	width: 100%;
}
#form_contact input[type=text] {
	
}
.lookbook {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	column-gap: 0px;
	-moz-column-gap: 0px;
	-webkit-column-gap: 0px;
}
.lookbook .itm {
	display: block;
	position: relative;	
}
.lookbook .itm img {
	display: block;
	width: 100%;
}
.lookbook .itm .mask {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.0);
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.lookbook .itm:hover .mask {
	background-color: rgba(0,0,0,0.2);
}
.lookbook .itm .info {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}
.lookbook .itm .info div {
	font-size: 2em;
	line-height: 110%;
	margin-bottom: 15px;
}
.lookbook .itm .info span {
	display: inline-block;
	padding: 15px 20px;
	border: 1px solid #fff;
}
.products {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 30px;
	padding-bottom: 30px;
}
.splide .products {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	justify-content: flex-start;
}
.products .itm {
	vertical-align: top;
	width: 320px;
	background-color: #fff;
	display: inline-block;
	margin: 10px;
	position: relative;
}
.products .itm:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.splide .products .itm {
	width: 96%;
	height: 100%;
	margin: 2%;
}
.products .itm .pic {
	background-color: #fff;
	display: block;
	position: relative;
	 aspect-ratio: 1 / 1;
}
.products .itm .pic .pic_pic {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 90%;
	max-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto !important;
	height: auto !important;
}
.products .itm .pic .leather {
	position: absolute;
	top: 87px;
    right: 16px;
    width: 35px;
	
}
.products .itm .pic .discount {
	position: absolute;
	color: #da0606;
	font-size: 20px;
	font-weight: 500;
	top: 20px;
	left: 15px;
}
.products .itm .pic .new {
	position: absolute;
	top: 20px;
	right: 0px;
	background: #14c079;
	color: #ffffff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 5px 20px;
}
.products .itm .tit {
	color: var(--color_black);
	font-size: 22px;
	font-weight: 500;
	height: 70px;
	overflow: hidden;
	padding: 10px;
}
.products .itm .pnomer {
	color: grey;
	padding: 0px 10px 10px 10px;
	font-size: 15px;
}
.products .itm .price {
	padding: 0px 10px 10px 10px;
	font-weight: 500;
	font-size: 25px;
}
.products .itm .colors {
	padding-left: 10px;
	padding-bottom: 10px;
}
.products .itm .colors a {
	display: inline-block;
	margin-right: 10px;
	border: 1px solid #cbcbcb;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	transform: rotate(45deg);
}
.products .itm .colors a .color {
	display: block;
	width: 12px;
	height: 12px;
}
.products .itm .colors a .color_2 {
	display: block;
	width: 5px;
	height: 12px;
	position: absolute;
	top: 0px;
	right: 0px;
}
.products .itm .back {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	background-color: #fff;
	display: none;
}
.products .itm:hover .back {
	display: block;
}
.products .itm .back .cols {
	padding-left: 10px;
	padding-bottom: 20px;
}
.products .itm .back .cols a {
	border: 1px solid #e9e9e9;
	aspect-ratio: 1 / 1;
	position: relative;
	width: 40px;
	display: inline-block; 
	margin-right: 10px;
	margin-bottom: 10px;
}
.products .itm .back .cols a.a_ch {
	border: 1px solid #222;
}
.splide .products .itm .price {
	font-size: 20px;
}
.products .itm .price span {
	vertical-align: baseline;
	margin-right: 10px;
	color: #848484;
	text-decoration: line-through;
	zoom: 0.8;
}
.products_slider .splide__pagination {
	display: none;
}
.products_slider .splide__arrow {
	border-radius: 0px;
	width: 40px;
	height: 40px;
}
.products_slider .splide__arrow--prev {
  left: -1em;
}
.products_slider .splide__arrow--next {
  right: -1em;
}
.product {
	max-width: 1430px;
}
.product .err {
	margin-bottom: 5px;
	display: none;
}
.product .err.err_ch {
	display: block;
}
.product .td_pic {
	width: 50%;
	vertical-align: top;
}
.product .td_pic .splide__arrow {
	background-color: rgba(255,255,255,0.5);
	border-radius: 0px;
}
.product .td_pic .div_pic {
	background-color: #fff;
	aspect-ratio: 695 / 600;
	position: relative;
}
.product .td_pic .div_pic .pic {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.product .td_pic .thumbnails {
	padding: 0px;
	margin: 0px;
	margin-top: 20px;
	list-style: none;
	display: block;
}
.product .td_pic .thumbnails li {
	padding: 0px;
	margin-right: 2%;
	margin-bottom: 2%;
	vertical-align: middle;
	display: inline-block;
	width: 23.5%;
	opacity: 0.8;
	vertical-align: top;
}
.product .td_pic .thumbnails li.is-active {
	opacity: 1;
}
.product .td_pic .thumbnails li:nth-child(4n) {
	margin-right: 0px;
}
.product .td_pic .thumbnails li .div_pic {
	aspect-ratio: 1 / 1;
}
.product .td_info {
	vertical-align: top;
}
.product .td_info .cont {
	max-width: 520px;
	text-align: left;
	margin-left: auto;
}
.product h1 {
	font-size: 27px;
	font-weight: 600;
	line-height: 24px;
	margin: 0.67em 0;
}
.product .pnomer {
	margin-bottom: 50px;
	font-size: 20px;
	opacity: 0.8;
}
.product .price {
	margin-bottom: 25px;
	color: #f20000;
	font-weight: 350;
	line-height: 1.5;
	font-size: 30px;
	position: relative;
}
.product .price .lbl {
	margin-right: 10px;
	font-size: 20px;
	font-weight: 900;
	text-transform: capitalize;
	color: var(--color_black);
}
.product .price .price_old {
	font-size: 23px;
	text-decoration: line-through;
	color: #a2a2a2;
	margin-right: 10px;
}
.product .price .discount {
	top: -10px;
	font-size: 23px;
	margin-left: 20px;
	vertical-align:	20px;
}
.product .td_info .btn_basket, a.btn_big, .btn_big {
	background-color: #ed145b;
	color: #fff;
	cursor: pointer;
	max-width: 520px;
	margin-bottom: 30px;
	font-size: 20px;
	padding: 18px 25px;
	line-height: 1.15;
	font-weight: 350;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.product .td_info .btn_basket:hover, .btn_big:hover, a.btn_big:hover {
	background-color: #f55e67;
}
.product .td_info .btn_basket img {
	width: 16px;
	filter: invert(1);
	margin-right: 10px;
}
.product .properties {
	padding: 10px 30px;
	font-size: 20px;
	position: relative;
}
.product .properties .tit {
	font-weight: 900;
	font-size: 20px;
}
.product .properties .tit img {
	width: 20px;
	margin-right: 10px;
	vertical-align: -3px;
}
.product .properties .btn {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #f00;
	position: absolute;	
	right: 10px;
	top: 3px;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gU3ZnIFZlY3RvciBJY29ucyA6IGh0dHA6Ly93d3cub25saW5ld2ViZm9udHMuY29tL2ljb24gLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjU2IDI1NiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8bWV0YWRhdGE+IFN2ZyBWZWN0b3IgSWNvbnMgOiBodHRwOi8vd3d3Lm9ubGluZXdlYmZvbnRzLmNvbS9pY29uIDwvbWV0YWRhdGE+DQo8Zz48Zz48Zz48cGF0aCBmaWxsPSIjMzYzNjM2IiBkPSJNNzMsMTAuNWMtMTAuOCwzLjUtMTUuOCwxNS4yLTEwLjgsMjVjMC44LDEuNiwxNC4zLDE1LjQsNDYuMiw0Ny4zbDQ1LjEsNDVMMTA4LjMsMTczYy00Mi43LDQyLjgtNDUuMiw0NS40LTQ2LjYsNDguNGMtMS4xLDIuNi0xLjQsMy45LTEuNCw2LjljMCw3LjIsMy42LDEyLjgsOS45LDE2YzIuOSwxLjUsMy44LDEuNiw3LjUsMS42YzgsMCwzLjYsMy45LDYzLjEtNTUuN2M1OS01OS4xLDU0LjctNTQuMyw1NC44LTYyLjJjMC04LDQuMi0zLjMtNTUuNS02Mi45QzkzLDE4LDg3LjEsMTIuMyw4NC44LDExLjRDODEuNSwxMCw3NS45LDkuNiw3MywxMC41eiIvPjwvZz48L2c+PC9nPg0KPC9zdmc+) no-repeat center center;
}
.product .properties p {
	margin-bottom: 15px;
}
.product .properties .bdy {
	max-height: 0px;
	overflow: hidden;	
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.product .properties.div_che .bdy {
	max-height: 1000px;
	margin-top: 20px;
}
.product .properties.div_che .btn {
	transform: rotate(90deg);
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.product .info_add {
	margin-top: 20px;
}
.product .info_add h4 {
	font-size: 20px;
	font-weight: 350;
	margin-top: 0px;
	margin-bottom: 30px;
}
.product .sizes {
	margin-bottom: 25px;
	margin-top: -100px;
	padding-top: 100px;
}
.product .colors {
	margin-bottom: 15px;
}
.product .sizes .bar, .product .colors .bar {
	margin-bottom: 10px;
	font-size: 20px; 
	font-weight: 900;
}
.product .sizes .bar .td_size {
	text-align: right;
	cursor: pointer;
}
.product .sizes .itms a {
	position: relative;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 14px;
	width: 40px;
	color: #000000;
	border: 1px solid #7b7b7b;
	text-align: center;
	line-height: 40px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
	opacity: 0.5;
}
.product .sizes .itms a.active {
	opacity: 1;
}
.product .sizes .itms a.active:hover, .product .sizes .itms a.a_ch {
	background-color: #ed145b;
	border: 1px solid #ed145b;
	color: #fff;
}
.product .colors .itms .itm {
	display: inline-block;
	vertical-align: top;
	margin-right: 15px;
	margin-bottom: 25px;
	width: 150px;
	font-size: 20px;
}
.product .colors .itms .itm span {
	margin-bottom: 5px;
	display: block;
	color: var(--color_black);
	font-weight: 350;
}
.product .colors .itms .itm .pic {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
}
.product .colors .itms .itm.itm_ch .pic {
	border: 1px solid var(--color_red);
}
.product .colors .itms .itm .pic img {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 99%;
	max-height: 99%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto !important;
	height: auto !important;
}
.product .store_avails {
	margin-bottom: 15px;
	font-weight: 350;
	cursor: pointer;
}
.product .store_avails img {
	width: 16px;
	vertical-align: baseline;
	margin-right: 5px;
	display: inline-block;
}
.products_similar {
	padding: 20px;
}
.products_similar .products {
	padding-top: 0px;
}
.products_similar .products .itm {
	width: 15%;
	margin: 0px;
	margin-right: 2%;
}
.products_similar .products .itm:nth-child(6n) {
	margin-right: 0px;
}
.products_similar .products .itm .price {
	font-size: 20px;
}
.products_similar .products .itm .price span {
	margin-right: 0px;
}
.products_similar h5 {
	font-size: 20px;
	margin: 0px;
}
.products_similar .tbl_bar .td {
	padding-bottom: 10px;
}
.products_similar .tbl_bar .td:last-child {
	text-align: right;
}
.products_similar .tbl_bar a {
	color: var(--color_black);
}
.basket h2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
}
.basket .tbl_products {
	border-top: 1px solid #faf8f8;
}
.basket .tbl_products .tr .td_info {
	border-bottom: 1px solid #7f7c7c;
	text-align: left;
	padding: 10px 0px 10px 20px;
}
.basket .tbl_products .tr .td_pic {
	border-bottom: 1px solid #7f7c7c;
}
.basket .tbl_products .tr:last-child .td_pic, .basket .tbl_products .tr:last-child .td_info {
	border-bottom: 0px solid #fff;
}
.basket .tbl_products .tr .td_info .td_price {
	width: 30%;
	text-align: right;
	vertical-align: bottom;
}
.basket .tbl_products .td_pic { 
	width: 80px;
}
.basket .tbl_products .td_pic img { 
	max-width: 100%;
}
.basket .tbl_products .tr .td_info .tit {
	font-size: 18px;
	margin-bottom: 5px;
	line-height: 19px;
}
.basket .tbl_products .tr .td_info .qty, .basket .tbl_products .tr .td_info .vals {
	opacity: 0.8;
}
.basket .tbl_products .tr .td_info .td_price span {
	font-size: 18px;
	display: block;
	font-weight: 600;
}
.basket .td_products {
	padding-right: 30px;
}
.basket .td_buts {
	padding: 10px;
	width: 260px;
}
.basket .td_buts a {
	display: inline-block;
	width: 255px;
	margin: 10px 0px;
}
.basket .td_buts a.btn_order {
	text-transform: uppercase;
}
.basket .td_buts a.btn_close {
	border: 2px solid #000000;
	  background: #ffffff;
	  color: #000000;
	  font-size: 20px;
	  padding: 18px 5px;
	  cursor: pointer;
	  transition: 0.5s;
	  text-align: center;
}
.basket .tbl_products .del {
	display: inline-block;
	margin-bottom: 10px;
	vertical-align: bottom;
}
#basket_lbl {
	color: #fff;
	display: inline-block;
	background-color: #f55e67;
	min-width: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	right: -5px;
	top: -5px;
	border-radius: 50%;
	font-size: 10px;
}
#fr_order {
	background-color: #fff;
}
.MsoNormal {
	margin-bottom: 15px;
}
.order {
	max-width: 1400px;
}
.order .td_big {
	width: 33.33%;
	padding: 20px 30px;
	vertical-align: top;
}
.order .tdbasket {
	background-color: #fff8f9;
}
.order .tdbasket .info-text {
	margin-bottom: 0px;
}
.order .tbl_products .td_pic {
	width: 70px;
}
.order .tbl_products .tr .td_info .tit {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 5px;
}
.order .tbl_products .tr .td_info .pnomer {
	font-size: 14px;
}
.order .tbl_products .tr .td_info .vals {
	font-size: 14px;
}
.order .tbl_products .tr .td_info .td_price span {
	display: none;
}
.order .tbl_products .tr .td_info .td_price {
	color: var(--color_red);
	font-size: 14px;
	white-space: nowrap;
}
.order .tbl_products .tr .td_info .td_price .price_old, .popup .price_old, .basket .price_old {
	text-decoration: line-through;
	color: #a2a2a2;
	font-size: 0.9em;
}
.order .btn_all {
	text-align: center;
	display: block;
	margin-bottom: 23px;
}
.fld {
	padding-bottom: 15px;
}
.fld.err {
	color: #f00;
}
.fld .tit {
	text-transform: uppercase;
	font-size: 15px;
	opacity: 0.5;
	font-weight: 500;
}
.fld .lbl {
	display: none;
	color: #f00;
}
.fld.err .lbl {
	display: block;
}
.fld.err input[type=text], .fld.err input[type=password], .fld.err input[type=email], .fld.err input[type=tel], .fld.err select, .fld.err textarea {
	border-color: #f00;
}
.order input[type=submit] {
	width: 100%;
	margin-top: 20px;
}
.homepics .splide__arrow {
	background-color: transparent;
	width: 48px;
	height: 48px;
	border-radius: 0;
}
.homepics .splide__arrow svg {
	width: 48px;
	height: 48px;
}
.homepics .splide__pagination__page {
	width: 30px;
	height: 4px;
	border-radius: 0;
	margin: 5px;
}
.homepics .splide__slide img {
	width: 100%;
}
.homepics video {
	width: 100%;
}
.homepics .video .info {
	left: 10%;
	top: 50%;
	color: #fff;
	-webkit-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	text-align: left;
	max-width: 350px;
}
.homepics .video .info h4  {
	color: #fff;
	font-size: 3.375rem !important;
    font-weight: 600 !important;
    line-height: 3.5rem;
}
.homepics .video .info h5 {
	background-color: #fff;
	padding: 10px 30px;
	display: inline-block;
	font-size: 16px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.homepics .video .info h5:hover {
	color: #fff;
	background-color: #000;
}
.fadeInTop {
	-webkit-animation: fadeInTop 1.2s both;
	-moz-animation: fadeInTop 1.2s both;
	-o-animation: fadeInTop 1.2s both;
	animation: fadeInTop 1.2s both;
}
.fadeInBottom {
	-webkit-animation: fadeInBottom 1.2s both;
	-moz-animation: fadeInBottom 1.2s both;
	-o-animation: fadeInBottom 1.2s both;
	animation: fadeInBottom 1.2s both;
}
.fadeInLeft {
	-webkit-animation: fadeInLeft 1.2s both;
	-moz-animation: fadeInLeft 1.2s both;
	-o-animation: fadeInLeft 1.2s both;
	animation: fadeInLeft 1.2s both;
}
.fadeInRight {
	-webkit-animation: fadeInRight 1.2s both;
	-moz-animation: fadeInRight 1.2s both;
	-o-animation: fadeInRight 1.2s both;
	animation: fadeInRight 1.2s both;
}
.customize-radio .checkbox.round {
    font-size: 25px;
    font-weight: 500;
}
.customize-radio .checkbox.round span {
	display: block;
	font-size: 13px;
	font-weight: 300;
	font-style: italic;
}
.customize-radio .checkbox input:checked ~ .checkmark:after {
    display: block;
}
.customize-radio .checkbox {
    display: block;
    position: relative;
    padding-left: 42px;
    margin-bottom: 0px;
    cursor: pointer;
    color: #363636;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 1 !important;
}
.customize-radio .checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.customize-radio .checkbox.round .checkmark {
    top: 8px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 1px solid #f55e67;
}
.customize-radio .checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: #fff;
    border: 1px solid #999999;
    border-radius: 5px;
    margin-right: 10px;
}

.customize-radio .checkbox.round .checkmark::after {
    left: 4px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #f55e67!important;
    border-radius: 50%;
    border: none;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.customize-radio .checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 10px;
    top: 4px;
    width: 7px;
    height: 14px;
    border: solid #000000;
    border-width: 0 4px 4px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
#additional_approve #additional_comment {
    background: transparent;
    height: 140px;
}
.standard_checks .approve_checkbox {
	display: block;
	text-transform: uppercase;
	/* margin-bottom: 5%; */
}
#div_register .standard_checks {
	padding-left: 0% !important;
	padding-right: 0% !important;
}
.comp_div .div_auto {
	border: 1px solid #ccc;
	background-color: #fff;
	padding: 0px;
	position: absolute;
	width: 100%;
	display: none;
	overflow: auto;
	text-align: left;
	z-index: 7;
	max-height: 300px;
}
.comp_div .div_auto a {
	display: block;
	padding: 3px;
}
.order_logo_speedy {
	vertical-align: middle;
	max-width: 90px;
}
.order_logo_card {
	vertical-align: middle;
	max-width: 50px;
}
.banners_1 h3 {
	text-align: center;
	font-size: 40px;
	color: #000000;
	margin-bottom: 40px;
	font-weight: 300;
}
.banners_1 .itms .itm {
	display: inline-block;
	vertical-align: top;
	width: 32.8%;
	margin-right: 0.8%;
	position: relative;
}
.banners_1 .itms .itm:nth-child(3n) {
	margin-right: 0px;
}
.banners_1 .itms .itm  .tit {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 20px 30px;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 500;
}
.banners_1 img {
	width: 100%;
}
.banners_2 {
	position: relative;
}
.banners_2 a {
	display: block;
}
.banners_2 .info {
	background-color: rgba(255,255,255,0.9);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 50px 70px;
}
.banners_2 .info .lbl {
	font-size: 25px;
	font-weight: 350;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.banners_2 .info .tit {
	font-size: 60px;
	line-height: 70px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 300;
}
.banners_2 .info .bdy {
	font-size: 25px;
	font-weight: 350;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.banners_2 .info .btn {
	font-weight: 500;
	margin-top: 10px;
	display: inline-block;
	text-transform: capitalize;
	border: 1px solid var(--color_black);
	font-size: 18px;
	padding: 11px 27px 13px;
	text-decoration: none;
	transition: 0.5s;
}
.banners_2 .info .btn:hover {
	color: #fff;
	background-color: var(--color_black);
}
.banners_2 img {
	width: 100%;
}
.banners_3 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.banners_3 .itms .itm {
	display: inline-block;
	vertical-align: top;
	width: 49.5%;
	margin-right: 1%;
	text-align: center;
}
.banners_3 .itms .itm:nth-child(2n) {
	margin-right: 0px;
}
.banners_3 .itms .itm .tit {
	padding-top: 15px;
	text-transform: uppercase;
	font-size: 30px;
	line-height: 40px;
	font-weight: bold;
	margin-bottom: 25px;
	color: var(--color_black);
}
.banners_3 .itms .itm .btn {
	color: #363636;
	display: inline-block;
	border: 1px solid var(--color_black);
	font-weight: 500;
	font-size: 18px;
	padding: 11px 27px 13px;
	text-decoration: none;
	transition: 0.5s;
}
.banners_3 img {
	width: 100%;
}
.div_login {
	max-width: 650px; 
	margin-right: auto; 
	margin-left: auto;
}
.login_lbl {
	margin-bottom: 30px; 
	text-align: center;
}
.btn_login {
	text-align: center; 
	display: block;
}
.container {
	margin: 0 auto;
	max-width: 1920px;
}
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: 0;
	margin-right: 0;
	position: relative;
	box-sizing: border-box;
	position: relative;
}
/*
[class*="col"] {
	-ms-flex: 0 0 100%;
	max-width: 100%;
	padding: 0px 10px;
	display: inline-block;
}
*/
.profile-section .box-bg {
	background: #ffffff;
	padding: 35px 70px;
	border: 1px solid #fff0f0;
}
.profile-section .profile-nav a {
	font-size: 25px;
	font-weight: 500;
	color: #000000 !important;
	opacity: 0.6;
	padding: 15px 0;
	margin-bottom: 20px;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	transition: 0.5s;
}
.profile-section .profile-nav .active {
	font-size: 25px;
	font-weight: 600;
	color: #000000 !important;
	cursor: pointer;
}
.profile-section .profile-nav a.exit {
	margin-top: 100px;
}
.order-history {
	padding: 20px;
	border: 1px solid #b7b7b7;
	margin-bottom: 15px;
}
.order-history .label-text {
	color: #737373;
}
.order-history .value, .order-history .label-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
}
.order-history .value {
	color: #000000;
}
.order-history .link {
	height: 42px;
	border: 1px solid #f55e67;
	background: #f55e67;
	line-height: 40px;
	color: #ffffff;
	text-decoration: none;
	transition: 0.5s;
	display: block;
	max-width: 210px;
	text-align: center;
}
.profile-section .section.active {
	opacity: 1;
	pointer-events: inherit;
	-ms-transform: translateX(0);
	transform: translateX(0);
}
.profile-section .section {
	opacity: 0;
	pointer-events: none;
	-ms-transform: translateX(20px);
	transform: translateX(20px);
	position: absolute;
	transition: transform 0.5s;
}
.user-history .inner-tabs {
	margin-bottom: 40px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.user-history .inner-tabs dt {
	font-weight: 500;
	font-size: 25px;
	color: #000000;
	padding: 15px 40px;
	transition: background 0.5s;
	border-radius: 5px;
	cursor: pointer;
}
.user-history .inner-tabs dt:hover, .user-history .inner-tabs dt.active {
	background: #feeff0;
}
.row.gutters {
	margin-left: -10px;
	margin-right: -10px;
}
*, ::after, ::before {
	box-sizing: border-box;
}
.order-details-section .container {
	max-width: 1430px;
}
.order-details-section .box-bg {
	background: #fefefe;
	padding: 30px;
	border: 1px solid #fff0f0;
}
.order-details-section .row {
	margin-right: -30px;
	margin-left: -30px;
}
.order-details-section .row > [class*="col"] {
	padding: 0 30px;
}	
.share-wrapper {
	position: relative;
	padding: 20px;
	padding-bottom: 0px;
	margin-top: -20px;
	margin-right: -20px;
	text-align: right;
}
.share-wrapper-pop-up {
	position: absolute;
	width: 260px;
	right: -100px;
	top: 50px;
	padding-bottom: 20px;
	opacity: 0;
	pointer-events: none;
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	transition: 0.5s;
}
.share-pop-up {
	background: #ffffff;
	padding-right: 20px;
	padding-left: 20px;
	padding-top: 15px;
	padding-bottom: 10px;
	position: relative;
}
.share-pop-up .title {
	font-weight: bold;
	margin-bottom: 5px;
	text-align: center;
}
.share-pop-up .social li {
	margin: 0 17px;
	display: inline-block;
}
.share-pop-up .social li a {
	font-size: 20px;
	color: #dd716e;
	transition: color 0.5s;
}
.share-pop-up:after {
	position: absolute;
	display: block;
	top: -8px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	width: 0px;
	height: 0px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 8px solid #ffffff;
}
.share-overlay {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #000000;
	z-index: -1;
	pointer-events: none;
	opacity: 0;
	transition: 0.5s;
}
.share-wrapper:hover .share-wrapper-pop-up, .share-wrapper:hover {
	z-index: 21;
	opacity: 1;
	pointer-events: inherit;
	transform: translateY(0px);
}
.share-wrapper:hover .share-wrapper-pop-up ~ .share-overlay, .share-wrapper:hover ~ .share-overlay {
	z-index: 1;
	opacity: 0.3;
	pointer-events: inherit;
}
.multilabels .itm {
	background-color: #eee;
	color: #222;
	padding: 3px 5px;
	font-size: 12px;
	margin-right: 4px;
	display: inline-block;
	border-radius: 3px;
}
.order-summary .info-title {
	text-transform: uppercase;
}
.order-summary .info-title, .order-summary .info-text {
	text-align: center;
	color: #f55e67;
	line-height: 30px;
	font-size: 21px;
	font-weight: 500;
}
.order-summary .info-text {
	margin-bottom: 60px;
}
.input {
	margin-bottom: 25px;
}
.order-summary .summary {
	padding-bottom: 26px;
	border-bottom: 1px solid #7f7c7c;
	margin-bottom: 30px;
}
.order-summary .shipping-info-price {
	margin-top: 20px;
}
.order-summary .summary_big {
	padding-bottom: 0px;
	border-bottom: 0px solid #7f7c7c;
	margin-bottom: 0px;
}
.order-summary .price, .order-summary dl, .order-summary p {
	font-size: 14px;
}
.order-summary .price, .order-summary dl, .order-summary p {
	font-size: 16px;
	line-height: 32px;
	color: #363636;
}
.sum {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#btn_bottom {
	position: fixed;
	bottom: -200px;
	left: 0px;
	width: 100%;
	z-index: 10;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#btn_bottom a {
	background-color: #ed145b;
	color: #fff;
	display: block;
	cursor: pointer;
	font-size: 20px;
	padding: 18px 25px;
	line-height: 1.15;
	font-weight: 350;
	text-align: center;
}
.right_div {
	background-color: #fefefe;
	position: fixed;
	right: -100%;
	top: 0px;
	width: 100%;
	max-width: 500px;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #aeaeae #f1f1f1;
	padding-top: 0px;
	padding-bottom: 50px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
	z-index: 20;
}
.right_div.stick {
	right: 0%;
}
.right_div::-webkit-scrollbar {
	width: 5px;
}
.right_div::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.right_div::-webkit-scrollbar-thumb {
  background: #aeaeae; 
}
.right_div::-webkit-scrollbar-thumb:hover {
  background: #555; 
}	
.right_div h2 {
	padding-left: 20px;
}
.right_mask {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 20;
	background-color: rgba(0,0,0,0.8);
}
.right_div .close {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}
.right_div .close img {
	display: block;
	width: 16px;
	height: 16px;
}
.right_div .tit {
	font-size: 20px;
	font-weight: 900;
	padding: 15px 20px;
	border-bottom: 1px solid #ccc;
}
.right_div .bdy {
	padding: 20px;
}
.right_div .sizes table {
	width: 100%;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-spacing: 0px;
    border-collapse: separate;
}
.right_div .sizes table tr td {
	text-align: center;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	padding: 5px;
}
.right_div .sizes table tr:first-child td {
	font-size: 0.9em;
	background-color: #eee;
}
#home_screen {
	-webkit-transition: all 0.5s ease-in-out;    
	-moz-transition: all 0.5s ease-in-out;    
	transition: all 0.5s ease-in-out;
	position: fixed;
	bottom: -100%;
	background-color: rgba(0,0,0,0.7);
	left: 0px;
	width: 100%;
	height: 100%;
	bottom: -100%;
	z-index: 100;
}
#home_screen .care {
	position: absolute;
	background-color: #FFF;
	padding: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 90%;
	min-width: 350px;
	text-align: center;
}
#home_screen.stick {
	bottom: 0%;
}
#home_screen .tit {
	font-weight: 600;
}
#home_screen img {
	width: 70px;
}
#home_screen .td {
	padding: 10px;
	color: #000;
	font-size: 1.2em;
	font-weight: 700;
}
#home_screen .btns {
	text-align: center;
	font-size: 0.9em;
}
#home_screen .btns a { 
	color: #003870;
	display: inline-block;
	margin-left: 20px;
}
.fltr .bdy {
	display: inline-block;
}
.fltr .bar, .fltr .btm {
	display: none;
}
.fltr {
	padding-left: 25px;
	margin-top: 30px;
}
.fltr .itm {
	display: inline-block;
	margin-right: 20px;
	position: relative;
}
.fltr .itm .tit {
	cursor: pointer;
	color: #000000;
	font-size: 18px;
	text-transform: uppercase;
	padding-right: 30px;
	position: relative;
}
.fltr .itm .tit:after {
	content: '';
	width: 14px;
	height: 14px;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gU3ZnIFZlY3RvciBJY29ucyA6IGh0dHA6Ly93d3cub25saW5ld2ViZm9udHMuY29tL2ljb24gLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjU2IDI1NiIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjU2IDI1NiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8bWV0YWRhdGE+IFN2ZyBWZWN0b3IgSWNvbnMgOiBodHRwOi8vd3d3Lm9ubGluZXdlYmZvbnRzLmNvbS9pY29uIDwvbWV0YWRhdGE+DQo8Zz48Zz48cGF0aCBmaWxsPSIjMDAwMDAwIiBkPSJNMjQyLjUsMTg4LjZjNC42LTQuNiw0LjYtMTIuMSwwLTE2LjdMMTM3LDY3LjNjLTIuNS0yLjUtNS44LTMuNS05LTMuM2MtMy4yLTAuMi02LjUsMC45LTksMy4zTDEzLjUsMTcyYy00LjYsNC42LTQuNiwxMi4xLDAsMTYuN2M0LjYsNC42LDEyLjIsNC42LDE2LjgsMGw5Ny43LTk3bDk3LjcsOTdDMjMwLjQsMTkzLjIsMjM3LjksMTkzLjIsMjQyLjUsMTg4LjZMMjQyLjUsMTg4LjZ6Ii8+PC9nPjwvZz4NCjwvc3ZnPg==) no-repeat center center;
	position: absolute;
	right: 5px;
	top: 50%;
	margin-top: -7px;
	transform: rotate(180deg);
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.fltr .itm.che .tit:after {
	transform: rotate(0deg);
}
.fltr .itm .opts {
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 0px 10px;
	min-width: 250px;
	position: absolute;
	z-index: 5;
	opacity: 0;
	max-height: 0px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
.fltr .itm.che .opts {
	padding-top: 10px;
	padding-bottom: 10px;
	max-height: 400px;
	opacity: 1;
	overflow: auto;
}
.fltr .itm .opts .opt .td:first-child {
	padding: 5px;
}
.fltr .itm .opts .opt .td:last-child {
	width: 100%;
	text-align: left;
}
.fltr .clear {
	display: inline-block;
	margin-left: 50px;
	font-weight: 500;
	cursor: pointer;
}
.fltr .clear img {
	width: 10px; 
	margin-right: 5px;
	display: inline-block;
}
.fltr_bar_mobile {
	display: none;
}
.product_stores .td_big {
	vertical-align: top;
	width: 50%;
	padding: 20px;
}
.product_stores .td_pic {
	text-align: center;
}
.product_stores .pic_big {
	max-width: 100%;
	max-height: 300px;
}
.product_stores .td_info {
	text-align: left;
}
.product_stores h2 {
	font-weight: 600;
	line-height: 1.2;
	font-size: 30px;
	margin-bottom: 20px;
	margin-top: 0px;
}
.product_stores .price {
	font-size: 20px;
}
.product_stores .price span {
	font-weight: 600;
	margin-right: 10px;
}
.product_stores .price .old {
	display: inline-block;
	margin-right: 10px;
	color: #a2a2a2;
	font-size: 18px;
	text-decoration: line-through;
}
.product_stores .sizes {
	margin-top: 20px;
}
.product_stores .sizes .tit {
	font-weight: 600;
	margin-bottom: 10px;
}
.product_stores .sizes .itms a {
	display: inline-block;
	width: 40px;
	line-height: 40px;
	border: 1px solid #000;
	opacity: 0.3;
	vertical-align: middle;
	margin-right: 10px;
	text-align: center;
}
.product_stores .sizes .itms a.active {
	opacity: 1;
}
.product_stores .sizes .itms a.a_ch {
	color: #fff;
	border: 1px solid #f55e67;
	background-color: #f55e67;
}
.product_stores #div_stores {
	margin-top: 30px;
	border-top: 1px solid #ccc;
	padding: 5px;
	max-height: 300px;
	overflow-y: auto;
}
.product_stores #div_stores .itm {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 10px;
	border-left: 4px solid #ff9800;
	margin-bottom: 10px;
}
.product_stores #div_stores .itm .tit {
	font-weight: 600;
}
.product_stores #div_stores .itm .address {
	font-size: 0.8em;
	opacity: 0.8;
}
.product_stores #div_stores .itm .qty {
	border-top: 1px solid #ccc;
	padding-top: 5px;
	margin-top: 10px;
	font-size: 0.9em;
	font-weight: 600;
	color: #ff9800;
}
.cookies img {
	width: 180px;
	margin-left: 0px;
	margin-right: 100%;
}
.cookies .tit {
	text-align: left;
	display: block;
	border-bottom: 1px solid #000;
	font-size: 18px;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 600;
	margin-left: -30px;
	width: 107%;
	padding-left: 30px;
}
.cookies .cookie {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0px;
}
.cookies .no_border {
	border-bottom: none !important;
}
.cookies h3 {
	font-size: 1.6rem;
	text-align: left;
	font-weight: 400;
	line-height: 2rem;
	margin-top: 15px;
	margin-bottom: 15px;
}
.cookies h2 {
	text-align: left;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2rem;
	margin-top: 10px;
	margin-bottom: 0px;
}
.cookies .cookie input[type="checkbox"] {
	text-align: center;
	display: table-cell;
	vertical-align: middle;
	appearance: none;
	box-shadow: none;
	font-size: 1em;
	display: none;
}
.cookies .cookie .cookie_checkbox {
	position: relative;
	width: 51px;
	height: 31px;
	border-radius: 100px;
	background: #b3b3b3;
	transition: background 0.2s;
	margin-top: 16px;
	margin-bottom: 16px;
}
.cookies .cookie .cookie_checkbox::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	height: 27px;
	width: 27px;
	background: #ffffff;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.04),
	0px 3px 8px 0px rgba(0, 0, 0, 0.15), 0px 3px 1px 0px rgba(0, 0, 0, 0.06);
	border-radius: 100px;
	transition: transform 0.2s;
}
.cookies .cookie input[type="checkbox"]:checked {
	background-color: #14c079;
}
.cookies .cookie input[type="checkbox"]:checked ~ .cookie_checkbox {
    background: #009775;
}

.cookies .cookie input[type="checkbox"]:checked ~ .cookie_checkbox::after {
    transform: translateX(20px);
}
.cookies .cookie .cookie_label {
	--width: 40px;
	--height: calc(var(--width) / 2);
	--border-radius: calc(var(--height) / 2);
	display: inline-block;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 24px;
	font-weight: 600;
	font-size: 1.2em;
}
.cookies .cookie .cookie_container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cookies .cookie a {
	line-height: 2rem;
	display: block;
	font-size: 1.2rem;
	color: #005c38;
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
	cursor: pointer;
	border: none;
	font-weight: 600;
}
.cookies .cookie .body {
	display: none;
	font-size: 1.4rem;
	line-height: 2rem;
	color: #757575;
	text-align: left;
}
.cookies .cookie a:hover {
	text-decoration: underline;
}
.cookies .cookie .visible {
	display: block !important;
}
.cookies .cookie .hidden {
	display: none;
}
.cookies .cookie #cookie_hidden1, .cookies .cookie #cookie_hidden2, .cookies .cookie #cookie_hidden3, .cookies .cookie #cookie_hidden4 {
	display: none;
}
.cookies input[type="submit"] {
	background-color: #000;
	color: #fff;
	border: #000;
	margin-top: 10px;
	width: 32%;
	margin-left: 68%;
}
#popupdiv_cookies {
	padding: 0px !important;

}#popupdiv_cookies .popup_in {
	width: 900px;
}
#gdpr_div {
	background-color: #000;
	color: #fff;
	position: fixed;
	left: 0px;
	bottom: -100%;
	width: 100%;
	padding: 20px;
	font-size: 0.8em;
	-webkit-transition: all 0.5s ease-in-out;    
	-moz-transition: all 0.5s ease-in-out;    
	transition: all 0.5s ease-in-out;
}
#gdpr_div.stick {
	bottom: 0px;
}
#gdpr_div div {
	margin-top: 10px;
}
#gdpr_div div a {
	display: inline-block; 
	vertical-align: middle;
	border: 1px solid #ffffff;
	color: #ffffff;
	margin-right: 20px;
	padding: 14px 25px;
	font-size: 20px;
	-webkit-transition: all 0.3s ease-in-out;    
	-moz-transition: all 0.3s ease-in-out;    
	transition: all 0.3s ease-in-out;
}
#gdpr_div div a:hover {
	background-color: #363636;
}
#gdpr_div div a.btn_red {
	background-color: var(--color_redlite);
	border: 1px solid var(--color_redlite);
}
#gdpr_div div a.btn_red:hover {
	background-color: transparent;
	color: var(--color_redlite);
}
#header .td_tel a {
	color: #000;
}
.tracking_div {
	max-width: 1000px;
}
.tracking_div .tbl_form .td {
	padding: 10px;
}
.tracking_div input[type="submit"] {
	padding: 12px 25px;
}
.phoneCode {
	padding: 15px 10px;
	font-family: FuturaPTBook, font-family;
	color: var(--color_black);
	background-color: #fff;
	font-size: 15px;
	margin: 5px 0px;
	border: 2px solid #262626;
	width: 100%;
}
.thank_you_div table tr td {
	vertical-align: top;
	width: 50%;
	padding: 50px;
}
.thank_pros .td_pic {
	padding-right: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.thank_pros .td_info {
	padding-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.thank_pros .td_pic img {
	max-width: 110px;
}
.thank_pros .td_info {
	text-align: left;
}
.thank_pros .td_info .td_price {
	text-align: right;
}
.thank_total .tr .td:first-child {
	text-align: left;
}
.thank_total .tr .td:last-child {
	text-align: right;
	padding-left: 20px;
}
.list_total {
	padding: 20px;
}
@-webkit-keyframes fadeInTop {
	0%{
		opacity: 0;
		-webkit-transform: translateY(50px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0px);
	}
}
@-webkit-keyframes fadeInBottom {
	0%{
		opacity: 0;
		-webkit-transform: translateY(-50px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0px);
	}
}
@-webkit-keyframes fadeInLeft {
	0%{
		opacity: 0;
		-webkit-transform: translateX(100px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
	}
}
@-webkit-keyframes fadeInRight {
	0%{
		opacity: 0;
		-webkit-transform: translateX(-100px);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateX(0px);
	}
}
@media only screen and (max-width: 1650px)
{
	.share-wrapper-pop-up {
		right: 0;
	}
	.share-pop-up:after {
		right: 17px;
		left: auto;
	}
}
@media screen and (max-width: 800px) {
	body {
		padding-top: 104px;
	}
	.lgs {
		display: none;
	}
	.menu_btn {
		display: inline-block;
	}
	#header.top .tbl_logo .td {
		max-height: 0px;
	}	
	#header.top .tbl_logo {
		border-bottom: 0px solid #e5e5e5;
	}
	#header.top .tel_div {
		top: 50%;
		right: 280px;
	}
	#header.top .tel_div span {
		max-width: 0px;
	}
	#menu {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	#menu .menu {
		height: 100%;
		overflow-y: auto;
		scrollbar-width: thin;
	}
	#menu .menu::-webkit-scrollbar {
	  width: 5px;
	}
	#menu .menu::-webkit-scrollbar-track {
	  background: #f1f1f1; 
	}
	#menu .menu::-webkit-scrollbar-thumb {
	  background: #aeaeae; 
	}
	#menu .menu::-webkit-scrollbar-thumb:hover {
	  background: #555; 
	}
	
	#menu .mobile_bar {
		display: table;
		border-bottom: 1px solid #ccc;
	}
	#menu .mobile_bar .td {
		padding: 10px!important;
	}
	#menu .mobile_bar .td_tit {
		width: 100%;
	}
	#menu .mobile_bar .td:last-child {
		text-align: right;
	}
	#menu .mobile_bar .logo {
		width: 100px;
		margin-left: 10px;
	}
	#menu .mobile_bar .close, #menu .mobile_bar .back {
		vertical-align: middle;
		display: inline-block;
		padding: 5px;
	}
	#menu .mobile_bar .close img, #menu .mobile_bar .back img {
		height: 18px;
		width: auto;
		display: block;
	}
	#menu ul li a, #menu ul li .span_a {
		background: #fff url('/img/next.svg') right 10px center no-repeat;
		background-size: 10px;
	}
	#menu ul li .sub a {
		background-image: none;
	}
	#menu ul li .sub .td {
		vertical-align: middle;
	}
	#menu {
		z-index: 100;
		display: block;
		background-color: #FFF;
		position: fixed;
		width: 100%;
		top: 0px;
		left: 100%;
		text-align: left;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		box-shadow: 0px 4px 10px 0px #00000012;
	}
	.mob_menu #menu {
		left: 0px;
	}
	#menu ul {
		display: block;
		padding: 0px;
		margin: 0px;
	}
	#menu ul li {
		display: block;
		border-bottom: 1px solid #ccc;
		padding: 0px;
		margin: 0px;
	}
	#menu ul li a, #menu ul li .span_a {
		line-height: inherit;
		padding: 10px 20px;
		display: block;
	}
	#menu ul li .sub {
		top: 0px;
		height: 100%;
		background: #fff;
		opacity: 1;
		max-height: none;
		left: 100%;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	#menu ul li.li_ch .sub {
		left: 0%;
	}
	#menu ul li .sub .td_pic {
		display: none;
	}
	#menu ul li .sub .td {
		padding: 0px;
	}
	#menu ul li .sub .tit {
		text-decoration: none;
		padding: 0px;
	}
	#menu ul li .sub .td_flex {
		display: flex;
		flex-direction: column;
		height: 100%;
		overflow-y: auto;
		scrollbar-width: thin;
	}
	#menu ul li .sub .main {
		height: 100%;
	}
	#menu ul li .sub .main .tbl_big {
		display: block;
		height: 100%;
	}
	#menu ul li .sub ul {
		flex: 1;
		height: 100%;
		overflow-y: auto;
		scrollbar-width: thin;
	}
	#menu ul li .sub ul li {
		width: 100%;
	}
	#menu ul li .sub ul li a {
		font-size: 16px;
	}
	.lookbook {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
	#footer .td {
		display: block;
		width: 100%;
		text-align: center;
	}
	footer #fr_newsletter {
		margin-right: auto;
		margin-left: auto;
	}
	.delivery_div {
		margin-top: 0px;
	}
	.delivery_div .td {
		display: block;
		width: 100%;
		padding: 40px 40px;
	}
	.delivery_div .td_pic {
		min-height: 200px;
	}
	.delivery_div .td_info .tit {
		font-size: 25px;
		line-height: 35px;
	}
	.banners_1 .itms .itm {
		display: block;
		width: 100%;
		margin-right: 0px;
	}
	.banners_2 {
		margin-bottom: 20px;
	}
	.banners_2 .info {
		padding: 20px 30px;
		width: 80%;
	}
	.banners_2 .info .tit {
		font-size: 30px;
		line-height: 35px;
	}
	.banners_3 .itms .itm {
		display: block;
		width: 100%;
		margin-right: 0px;
		margin-top: 20px;
	}
	.banners_2 .info .btn {
		margin-top: 0px;
		padding: 5px 15px;
	}
	.main_products {
		padding: 20px 10px;
	}
	.products .itm {
		width: 49%;
		margin: 2% 2% 0% 0%;
	}
	.products .itm:nth-child(2n) {
		margin-right: 0%;
	}
	.products .itm .tit {
		font-size: 20px;
	}
	.splide .products .itm .price {
		font-size: 16px;
	}
	.products .itm .price span {
		margin-right: 0px;
	}
	#header .tel_div span {
		display: none;
	}
	header .td_logo .logo {
		width: 110px;
	}
	#header .tel_div {
		top: 20px;
		display: none;
	}
	header .td_logo a {
		padding: 10px;
	}
	#header .td_btns .itms .itm {
		margin-left: 10px;
	}
	#header .td_menu {
		padding-left: 10px;
	}
	#header .td_btns, #header.top .td_btns {
		padding: 15px 10px;
	}
	.product .td_pic, .product .td_info {
		display: block;
		width: 100%;
	}
	.product .colors .itms .itm {
		width: 100px;
	}
	.products_similar .products .itm {
		margin-right: 2%;
		margin-bottom: 20px;
		width: 49%;		
	}
	.products_similar .products .itm:nth-child(2n) {
		margin-right: 0%;
	}
	.product .price .lbl {
		margin-right: 5px;
	}
	.product .price {
		font-size: 22px;
	}
	.product .price .price_old {
		margin-right: 5px;
		font-size: 18px;
	}
	.product .price .discount {
		font-size: 22px;
		margin-left: 5px;
	}
	.product .properties {
		padding: 10px 10px;
	}	
	.product .properties .tit {
		font-size: 18px;
	}
	#btn_bottom.btn_ch {
		bottom: 0px;
	}
	header .td_menu ul li .sub .tit_desc {
		display: none!important;
	}
	.fltr {
		position: fixed;
		background-color: #fff;
		top: 0px;
		z-index: 20;
		margin-top: 0px;
		padding: 0px;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		left: 100%;
		-webkit-transition: all 0.3s ease-in-out;    
		-moz-transition: all 0.3s ease-in-out;    
		transition: all 0.3s ease-in-out;
	}
	.fltr.che {
		left: 0%;
	}
	.fltr .bar {
		font-size: 24px;
		font-weight: 400;
		color: black;
		display: table;
	}
	.fltr .bdy {
		height: 100%;
		overflow: auto;
		scrollbar-width: thin;
	}
	.fltr .bar .td {
		vertical-align: middle;
		padding: 10px;
		border-bottom: 1px solid #ccc;
	}
	.fltr .bar .td:last-child {
		text-align: right;
	}
	.fltr .bar .td img {
		width: 18px;
	}
	.fltr .itm {
		display: block;
		padding: 10px;
	}
	.fltr .itm .opts {
		position: relative;
		display: block;
		width: 100%;
		border: 0px solid #fff;
	}
	.fltr .itm.che .opts {
		max-height: 1400px;
	}
	.fltr .clear {
		display: none;
	}
	.fltr .btm {
		display: table;
	}
	.fltr .btm .td {
		padding: 10px 10px;
		text-align: center;
	}
	.fltr .btm .td span {
		border: 1px solid var(--color_black);
		display: inline-block;
		font-size: 18px;
		font-weight: 500;
		padding: 7px;
		width: 100%;
		cursor: pointer;
	}
	.fltr .btm .td .span_black {
		color: #fff;
		background-color: var(--color_black);
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
	.fltr .btm .td .span_black:hover {
		color: var(--color_black);
		background-color: #fff;
	}
	.fltr_bar_mobile {
		display: block;
		background-color: #ccc;
		border: 1px solid #ccc;
		cursor: pointer;
		position: fixed;
		bottom: 20px;
		left: 50%;
		z-index: 10;
		padding: 5px 20px;
		border-radius: 20px;
		-webkit-transform: translate(-50%, 0%);
		-ms-transform: translate(-50%, 0%);
		transform: translate(-50%, 0%);
	}
	.fltr_bar_mobile img {
		margin-right: 10px;
	}
	.order .td_big {
		width: 100%;
		display: block;
	}
	.homepics .video .info h4 {
		font-size: 2em!important;
		line-height: 2.5rem;
	}
	.basket .td_products {
		padding-right: 0px;
		display: block;
		width: 100%;
	}
	.basket .td_buts {
		display: block;
		padding: 10px;
		width: 100%;
		text-align: center;
	}
	.thank_you_div table tr td {
		display: block;
		width: 100%;
	}
	header .td_menu ul li .sub ul {
		display: block;
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		column-gap: 0px;
		-moz-column-gap: 0px;
		-webkit-column-gap: 0px;
	}
}	