body{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #404040;
	background: #f6f4f2;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}
.container{
	max-width: 1140px;
	margin: 0 auto;
}
.top_header{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e5e3e1;
}
.top_header div a{
	display: inline-block;
	padding: 0 20px 0 0;
	margin: 0 20px 0 0;
	font-size: 13px;
	color: #94918e;
	border-right: 1px solid #e5e3e1;
	text-decoration: none;
}
.top_header a.whsp {
	float: left;
	background: url("../img/sprite_ic2s.png") 50% no-repeat;
	width: 19px;
	height: 19px;
	padding: 0;
	border: 0;
	margin-right: 15px;
}
.top_header div p{
	display: inline-block;
	font-size: 13px;
	color: #94918e;
	margin: 0;
}
header{
	position: relative;
	padding: 50px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.lft_in{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.rgt_in{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.logo{
	padding: 10px;
	border: 1px solid #000;
	height: 60px;
	width: 73px;
}
.logo a{
	background: url('../images/logo-fg-new3.png') 50% no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	display: block;
}
header .logo {
	position: absolute;
	left: 50%;
	top: 30px;
	margin-left: -36px;
}
.navBurger {
	position: relative;
	right: 0;
	top: 0;
	cursor: pointer;
	background: #404040;
	box-sizing: border-box;
	background-clip: content-box;
	width: 49px;
	height: 26px;
	border-top: 13px solid transparent;
	border-bottom: 12px solid transparent;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.navBurger:before,
.navBurger:after {
	content: "";
	position: absolute;
	background: #404040;
	height: 1px;
	width: 100%;
	right: 0;
	will-change: rotate;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.navBurger:before {
	top: -14px;
}
.navBurger:after {
	bottom: -13px;
}
.navBurger.active {
	background: transparent;
	background-clip: content-box;
}
.navBurger.active:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 0;
	background: #404040;
	width: 110%;
}
.navBurger.active:after {
	bottom: 0;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	background: #404040;
	width: 110%;
}
.overlay {
	position: fixed;
	background: #2a3140;
	top: 130px;
	right: 0;
	left: 0;
	bottom: 0;
	opacity: 0;
	transform-origin: left top;
	transform: scale(0);
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	overflow: auto;
	z-index: 999;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	background: #f6f4f2;
}
.overlay.open li {
	display: block;
	animation: fadeInRight 0.4s cubic-bezier(0.42, 0.83, 0.7, 1.5) forwards;
	animation-delay: 0.4s;
	transform: rotate(-7deg);
	transform-origin: right bottom;
}
.overlay.open li:nth-of-type(2) {
	animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(5) {
	animation-delay: 0.8s;
}
.overlay.open li:nth-of-type(6){
	animation-delay: 0.9s;
}
.overlay.open li:nth-of-type(7){
	animation-delay: 1s;
}
.overlayMenu {
	padding: 0 0 0 36%;
}
.overlayMenu ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: block;
	position: relative;
	height: 100%;
}
.overlayMenu ul li {
	display: block;
	position: relative;
	opacity: 0;
	width: 100%;
}
.overlayMenu ul li a {
	display: inline-block;
	color: #404040;
	text-decoration: none;
	margin: 0 0 40px 0;
	transition: 0.2s;
	font-family: 'Playfair Display', serif;
	font-size: 60px;
	transition: all .2s;
}
.overlayMenu ul li a:hover,
.overlayMenu ul li a:active,
.overlayMenu ul li a:focus,
.overlayMenu ul li a.selected{
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	font-style: italic;
	color: #aa8d73;
}
.locked {
	overflow: hidden;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 50px;
	}
	100% {
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
	}
}
.ic_srch{
	transform: translate(0%, 0%);
	width: 20px;
	height: 20px;
	transition: all 0.5s ease;
	margin: 0 15px 0 0;
}
.input{
	border: 0;
	background: transparent;
	width: 0%;
	outline: none;
	font-family: sans-serif;
	font-size: 15px;
	color: #404040;
	font-style: italic;
	transition: all 0.3s ease;
	position: relative;
}
.ic_srch button{
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
}
.ic_srch .fa{
	color: #404040;
	font-size: 18px;
	cursor: pointer;
}
.ic_srch.active .fa{
	color: #fff;
}
.ic_srch.active{
	width: 250px;
	padding: 0 5px;
	transition: all 0.3s ease;
	background: #ccc;
}
.ic_srch.active button{
	background: #404040;
}
.input.active{
	width: 100%;
	padding-left: 5px;
	transition: all 0.2s 0.2s ease;
	background: transparent;
}
.ic_srch input::placeholder {
	color: #404040;
}
.rgt_in .bx-basket {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.rgt_in .bx-basket>a{
	color: #404040;
	text-decoration: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.rgt_in .bx-basket>a>span{
	font-size: 14px;
	display: inline-block;
	margin: 0 0 0 6px;
}
.ic_favorite{
	height: 20px;
	margin: 0 20px 0 0;
}
.ic_user{
	border-right: 1px solid #e5e3e1;
	padding: 0 20px 0 0;
	margin: 0 20px 0 0;	
}
.ic_shops{
	display: inline-block;
	background: url(../img/icons/ic_shops.png)0 0 no-repeat;
	min-width: 11px;
	height: 18px;
	padding: 0 0 0 15px;
	margin: 0;
}
.ic_shops>span{
	display: inline-block;
}
.nav_menu{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	margin: 0 0 80px 0;
}
.nav_menu a{
	display: inline-block;
	font-size: 15px;
	color: #404040;
	text-decoration: none;
}
.heading{
	font-size: 55px;
	margin: 0 0 30px 0;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
	text-align: center;
	line-height: 1em;
}
.heading.small {
	font-size: 62px;
	margin: 0 0 10px 0;
}
.heading span{
	font-style: italic;
}
.undertitle {
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	margin: 30px 0 20px;
}
.small_headeing{
	text-align: center;
	font-size: 14px;
	margin: 0 0 50px 0;
	text-transform: uppercase;
}
.small_headeing strong {
	font-size: 18px;
}
.my_carusel{
	margin: 0 0 100px 0;
}
.my_carusel .owl-stage{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.in_carusel img, .in_carusel2 img {
	margin: 0 auto;
	max-width: 90%;
}
.in_carusel2{
	width: 360px;
	margin: 0 auto;
	padding: 30px 0 0;
}
.block_2{
	margin: 0 0 100px 0;
}
.block_2_flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.in_block_2_flex_1{
	width: 260px;
}
.in_block_2_flex_1 p{
	font-size: 12px;
	text-transform: uppercase;
	margin: 0 0 50px 0;
	font-weight: 500;
}
.in_block_2_flex_1 .heading{
	font-size: 52px;
	text-align: left;
	margin: 0 0 50px 0;
}
.in_block_2_flex_1>span{
	font-size: 15px;
	display: block;
	margin: 0 0 50px 0;
}
.btn{
	display: block;
	width: 260px;
	background: #dec9b6;
	color: #404040;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	text-align: center;
	padding: 25px 0;
	font-weight: 500;
	border: 0;
}

.in_block_2_flex_2{
	width: 752px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}
.in_block_2_flex_2>img{
	display: inline-block;
	flex-shrink: 0;
}
.in_block_2_flex_2>img:first-child{
	margin: 0 -170px 0 0;
	position: relative;
}
.my_carusel_2{
	margin: 0 0 80px 0;
}
.my_carusel_2 .owl-nav{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 40%;
	z-index: 9;
}
.my_carusel_2 .owl-prev span,
.my_carusel_2 .owl-next span{
	display: none;
}
.my_carusel_2 .owl-prev{
	background: url(../img/icons/my_carusel_2_arrow.png)0 0 no-repeat !important;
	width: 83px;
	height: 14px;
	transform: rotate(180deg);
	margin-left: -103px;
}
.my_carusel_2 .owl-next{
	background: url(../img/icons/my_carusel_2_arrow.png)0 0 no-repeat !important;
	width: 83px;
	height: 14px;
	margin-right: -103px;
}
.in_my_carusel_2_img{
	position: relative;
	margin: 0 0 30px 0;
}
.add_fav{
	display: inline-block;
	background: url(../img/icons/fav_ic1.png)0 0 no-repeat;
	width: 20px;
	height: 18px;
	position: absolute;
	top: 18px;
	right: 17px;
	z-index: 10;
	cursor: pointer;
	transition: all .2s;
}
.add_fav:hover, .add_fav.in_wishlist{
	background: url(../img/icons/fav_ic2.png)0 0 no-repeat;
}
.add_fav2{
	background: url(../img/icons/fav_ic2.png)0 0 no-repeat;
}
.in_my_carusel_2>p{
	font-size: 15px;
	margin: 0 0 10px 0;
}
.block_3{
	margin: 0 0 100px 0;
}
.block_3 .heading{
	margin-bottom: 50px;
}
.social{
	width: 196px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin: 0 auto 60px;
        justify-content: center;
}
.social  a{
	display: inline-block;
	width: 40px;
	height: 40px;
}
.social a+a {
	margin-left: 10px !important;
}
.tlg{
	background: url(../img/icons/sprite_ic.png)0px 0px no-repeat;
}
.whsp{
	background: url(../img/icons/sprite_ic.png)-52px 0px no-repeat;
}
.vk{
	background: url(../img/icons/sprite_ic.png)-104px 0px no-repeat;
}
.inst{
	background: url(../img/icons/sprite_ic.png)-156px 0px no-repeat;
}
.link_subscribe{
	display: block;
	width: 100%;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	color: #404040;
	padding: 24px 28px;
	border: 1px solid #dec9b6;
	position: relative;
	margin: 0 0 20px 0;
}
.link_subscribe input{
	display: inline-block;
	border: none;
	width: 65%;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	    font-family: 'Montserrat', sans-serif;
	    background: transparent;
}
.link_subscribe input::-webkit-input-placeholder {color:#404040;}
.link_subscribe input::-moz-placeholder          {color:#404040;}/* Firefox 19+ */
.link_subscribe input:-moz-placeholder           {color:#404040;}/* Firefox 18- */
.link_subscribe input:-ms-input-placeholder      {color:#404040;}
.link_subscribe button{
	display: inline-block;
	background: url(../img/icons/my_carusel_2_arrow.png)0px 0px no-repeat;
	width: 83px;
	height: 14px;
	position: absolute;
	top: 26px;
	right: 30px;
	border: none;
}

.block_3 p{
	font-size: 10px;
	text-align: center;
	margin: 0;
	line-height: 1.8em;
}
.block_3 p>a{
	color: #404040;
	text-decoration: none;
	border-bottom: 1px solid #b1b0af;
}
footer{
	border-top: 1px solid #e5e3e1;
	padding: 100px 0 20px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-start;
	align-items: flex-start;
	justify-content: space-between;
}
.footer_left .logo{
	margin: 0 0 20px 0;
}
.footer_left>a{
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	color: #404040;
	border-bottom: 1px solid #949392;
	margin: 0 0 20px 0;
}
.footer_left p{
	font-size: 10px;
	margin: 0;
}
.footer_right{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.footer_right>ul{
	padding: 0;
	margin: 0 80px 0 0;
}
.footer_right>ul:last-child{
	margin: 0;
}
.footer_right>ul>li{
	list-style: none;
}
.footer_right>ul>li>p{
	font-size: 20px;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	font-family: 'Playfair Display', serif;
}
.footer_right>ul>li>a, .footer_right>ul>li>p.small{
	display: block;
	font-size: 12px;
	text-decoration: none;
	color: #404040;
	text-transform: uppercase;
	margin: 0 0 15px 0;
	font-family: 'Montserrat', sans-serif;
}
.footer_right>ul>li>p.small a {
	color: inherit;
	text-decoration: none;
}
.footer_right>ul>li .social{
	width: 161px;
	margin: 0;
}
.footer_right>ul>li .social a{
	width: 36px;
	height: 36px;
}
.footer_right>ul>li .tlg{
	background: url(../img/icons/sprite_ic2.png)0px 0px no-repeat;
}
.footer_right>ul>li .whsp{
	background: url(../img/icons/sprite_ic2.png)-42px 0px no-repeat;
}
.footer_right>ul>li .vk{
	background: url(../img/icons/sprite_ic2.png)-84px 0px no-repeat;
}
.footer_right>ul>li .inst{
	background: url(../img/icons/sprite_ic2.png)-125px 0px no-repeat;
}
.small_headeing_2{
	font-size: 15px;
	text-transform: inherit;
	line-height: 1.8em;
}
.about_us{
	position: relative;
	margin: 0 0 100px 0;
}
.about_us h4{
	width: 100%;
	font-size: 12px;
	text-align: center;
	text-transform: uppercase;
	margin: 0;
	position: absolute;
	top: 50%;
	color: #fff;
	font-weight: 500;
}
.about_us img{
	display: block;
	width: 100%;
	height: auto;
}
.pay_delivery{
	max-width: 750px;
	margin: 0 auto 100px;
}
.pay_delivery .heading{
	text-align: left;
}
.in_pay_delivery div{
	margin: 0 0 40px 0;
}
.in_pay_delivery h5{
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 30px 0;
}
.in_pay_delivery div p{
	font-size: 15px;
	margin: 0 0 15px 0;
}
.l_icons{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 0;
	margin: 0 0 50px 0;
}
.l_icons li{
	list-style: none;
}
.in_pay_delivery ol{
	padding: 0 0 0 15px;
	margin: 0 0 50px 0;
}
.in_pay_delivery ol li{
	font-size: 15px;
	margin: 0 0 15px 0;
}
.in_pay_delivery ol li ul{
	padding: 10px 0 0 0;
	margin: 0;
}
.in_pay_delivery ol li ul li{
	background: url(../img/icons/circle.png)0px center no-repeat;
	padding: 0 0 0 15px;
	list-style: none;
}
.in_pay_delivery div p a{
	color: #404040;
	text-decoration: none;
	border-bottom: 1px solid #404040;
}
.catalog_main{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
.catalog_main_in_left{
	padding: 180px 0 0 0;
	width: 200px;
	flex-shrink: 0;
}
.in_flex_catalog_filtr_main_blocks {
	border-bottom: 1px solid #dfdfdf;
	margin: 0 0 25px 0;
	padding: 0 0 5px 0;
}
.in_flex_catalog_filtr_main_blocks:last-child{
	border: none;
}
.in_flex_catalog_filtr_blocks>div>div {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin: 0 0 20px 0;
}
.in_flex_catalog_filtr input[type=radio] {
	display: none;
}
.in_flex_catalog_filtr_blocks>div>div>label {
	width: 100%;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	display: inline-block;
	color: #404040;
	cursor: pointer;
}
.in_flex_catalog_filtr_blocks>div>div>label a {
	text-decoration: none;
	color: inherit;
}
.in_flex_catalog_filtr_blocks input[type=radio] {
	position: fixed;
	opacity: 0;
	pointer-events: none;
	width: 0;
	height: 0;
}
.in_flex_catalog_filtr_blocks input[type=radio]:checked + label {
	font-weight: bold;
}
.catalog_main_in_right{
	padding: 0 0 90px 80px;
	flex-grow: 1;
}
.catalog_main_in_right h5{
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	padding: 0 0 0 10px;
}
.catalog_main_in_right .heading{
	font-size: 60px;
	margin: 0 0 50px 0;
	padding: 0 0 0 10px;
	text-align: left;
}
.in_flex_catalog_filtr_show_result {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 0 0 20px 0;
	margin: 0;
}
.in_flex_catalog_filtr_show_result li {
	list-style: none;
}
.select-sort {
	position: relative;
}
.select-text{
	padding: 0 20px 0 0;
	margin: 0 0 20px 10px;
	display: inline-block;
	border: none;
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	background: url(../img/icons/select_arrow.png) right center no-repeat;
	font-size: 12px;
	text-transform: uppercase;
	cursor: pointer;
}

.select-spisok {
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 30
}

.select-spisok a {
	display: block;
	background: #fff;
	padding: 2px 10px;
	text-align: left;
	font-size: 13px;
	border: 1px solid #ededed;
	color: #333;
	cursor: pointer;
	transition: .3s ease all;
	border-top: none;
	text-decoration: none
}

.select-spisok a:hover {
	background: #333;
	color: #fff
}

.spis-no {
	display: none;
}

.in_flex_catalog_filtr_show_result li select {
	width: 150px;
	padding: 0 15px 0 0;
	margin: 0 0 0 10px;
	display: block;
	border: none;
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	background: url(../img/icons/select_arrow.png) right center no-repeat;
	font-size: 12px;
	text-transform: uppercase;
	cursor: pointer;
}
.in_flex_catalog_filtr_show_result li select option {
	text-transform: initial;
}
.in_flex_catalog_filtr_show_result li select option {
	text-transform: initial;
}
.in_flex_catalog_filtr_show_flex{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	justify-items: stretch;
	align-items: stretch;
}
.in_flex_catalog_filtr_show_flex_inner{
	width: 210px;
	height: 400px;
	position: relative;
}
.in_flex_catalog_filtr_show_flex_inner .catalog_item {
	padding: 10px 10px 15px 10px;
	transition: all .2s;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.in_flex_catalog_filtr_show_flex_inner:hover .catalog_item{
	-webkit-box-shadow: 0px 10px 15px 0px rgba(73, 73, 73, 0.1);
	-moz-box-shadow:    0px 10px 15px 0px rgba(73, 73, 73, 0.1);
	box-shadow:         0px 10px 15px 0px rgba(73, 73, 73, 0.1);
	z-index: 20;
	background: #f6f4f2;
}
#bottom-pagination {
	padding-top: 15px;
}
.img_catalog{
	margin: 0 0 25px 0;
	position: relative;
}
.img_catalog img{
	display: block;
	width: 100%;
	height: auto;
}
.size-list {

}
.size-list .size {
	display: inline-block !important;
	margin-right: 5px;
	cursor: pointer;
	min-width: 18px;
	text-align: center;
	padding: 0 5px;
	border: 1px solid transparent;
}
.size-list .size.active {
	border: 1px solid #333333;
}
.txt_catalog p{
	font-size: 15px;
	margin: 0 0 10px 0;
}
.txt_catalog p.old {
	font-size: 13px;
	opacity: 0.7;
	text-decoration: line-through;
	margin-bottom: 5px;
}
.txt_catalog p a {
	text-decoration: none;
	color: inherit;
}
.txt_catalog span{
	font-size: 15px;
	margin: 0 0 10px 0;
	display: none;
}
.in_flex_catalog_filtr_show_flex_inner:hover .txt_catalog span{
	display: block;
}
.btn_show_more{
	display: block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	padding: 20px 0;
	margin: 0 0 50px 0;
	background: #dec9b6;
	font-weight: 500;
	border-right: 10px solid #f6f4f2;
	border-left: 10px solid #f6f4f2;
	cursor: pointer;
}
.page_num{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	margin: 0 auto 0;
}
.page_num a, .page_num span{
	width: 25px;
	height: 25px;
	display: inline-block;
	color: #404040;
	text-align: center;
	font-size: 12px;
	text-decoration: none;
	padding: 5px 0;
}
.page_num a:hover, .page_num .active{
	background: #404040;
	color: #fff;
}
.contact{
	margin: 0 0 100px 0;
	padding: 0 0 0 195px;
}
.contact .heading{
	text-align: left;
	margin: 0 0 90px 0;
}
.contact_flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.contact_flex_l{
	width: 270px;
}
.contact_flex_l div{
	margin: 0 0 45px 0;
}
.contact_flex_l div h5{
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 20px 0;
}
.contact_flex_l div p{
	font-size: 15px;
	margin: 0 0 10px 0;
}
.contact_flex_l div a{
	display: block;
	font-size: 15px;
	text-decoration: none;
	color: #404040;
	margin: 0 0 10px 0;
}
.contact_flex_l .social{
	margin: 0;
}
.contact_flex_r{
	width: 460px;
	-webkit-box-shadow: 0px 10px 15px 0px rgba(73, 73, 73, 0.1);
	-moz-box-shadow:    0px 10px 15px 0px rgba(73, 73, 73, 0.1);
	box-shadow:         0px 10px 15px 0px rgba(73, 73, 73, 0.1);
}
.contact_flex_r iframe{
	display: block;
	width: 100%;
	height: 100%;
}
.corzine{
	margin: 0 0 100px 0;
}
.corzine>h5{
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}
.corzine>.heading{
	font-size: 60px;
	margin: 0 0 100px 0;
	text-align: left;
}
.shopping_cart_flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.basket-items-list-wrapper{
	width: 654px;
	padding: 0 0px;
}
.in_shopping_cart_flex_1{
	width: 100%;
	border-bottom: 1px solid #dfdfdf;
}
.in_shopping_cart_flex_1:first-child{
	border-top: 1px solid #dfdfdf;
}
.in_shopping_cart_form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	padding: 30px 0;
	position: relative;
}

.in_shopping_cart_form img{
	display: block;
	width: 165px;
	height: auto;
	flex-shrink: 0;
}
.in_shopping_cart_form_txt{
	padding: 0 0 0 30px;
}
.in_shopping_cart_form_txt .heading{
	text-align: left;
	font-size: 20px;
	margin: 0 0 20px 0;
	letter-spacing: 0;
	font-weight: 400;
	font-family: 'Playfair Display', serif;
}
.in_shopping_cart_form_txt .heading2{
	font-size: 16px;
	margin: 0 0 70px 0;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
}
.in_shopping_cart_form_txt_3_in{
	width: 360px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.in_shopping_cart_form_txt_3_in>div>div{
	width: 165px;
	padding: 0 0;
	margin: 0 0 20px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
	position: relative;
}
.in_shopping_cart_form_txt_3_in>div>.quantity{
	padding: 18px 28px;
	border: 1px solid #dfdfdf;
}
.in_shopping_cart_form_txt_3_in>div>p{
	font-size: 12px;
	color: #999;
	margin: 0 0 10px 12px;
}
.in_shopping_cart_form_txt_3_in div select{
	display: block;
	width: 100%;
	border: none;
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	background: url(../img/icons/select_arrow.png) right center no-repeat;
	font-size: 15px;
	padding: 0 0;
	cursor: pointer;
}
.in_shopping_cart_form_txt_3_in>div>div i{
	position: absolute;
	top: 0;
	display: inline-block;
	font-style: normal;
	font-size: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 200;
	cursor: pointer;
}
.in_shopping_cart_form_txt_3_in>div>div i:first-child{
	left: 20px;
	top: 6px;
}
.in_shopping_cart_form_txt_3_in>div>div i:last-child{
	right: 20px;
	top: 7px;
}
.in_shopping_cart_form_txt_3_in>div>div>span{
	font-size: 15px;
}
.in_shopping_cart_form_txt>a{
	display: inline-block;
	background: url(../img/icons/fav_ic3.png)0px center no-repeat;
	-webkit-background-size: 11px;
	background-size: 11px;
	text-decoration: none;
	font-size: 10px;
	color: #999999;
	padding: 0 0 0 20px;
}
.close_shop{
	display: inline-block;
	position: absolute;
	top: 30px;
	right: 0;
	background: url(../img/icons/close_shop.png)0 0 no-repeat;
	width: 17px;
	height: 17px;
	cursor: pointer;
}
.in_shop_cart_main_2{
	width: 455px;
	margin-left: 30px;
}
.in_shop_cart_main_2_in{
	padding: 0 30px 0;
	margin: 0 0 0 0;
	border: 1px solid #dfdfdf;
}
.steps_txt{
	cursor: pointer;
	font-size: 20px;
	font-family: 'Playfair Display', serif;
	padding: 25px 0;
	margin: 0 0 45px 0;
	font-weight: 400;
	border-bottom: 1px solid #dfdfdf;
}
.basket-checkout-container .steps_txt {
	padding-top: 0;
}

.steps_txt>span{
	display: inline-block;
	margin: 0 10px;
}
.in_shop_cart_main_2_in>div{
	display: none;
	padding: 0 0 30px;
}
.in_shop_cart_main_2_in>div>ul{
	padding: 0;
	margin: 0 0 50px 0;
}
.in_shop_cart_main_2_in>div>ul>li{
	list-style: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	margin:0 0 20px 0;
}
.in_shop_cart_main_2_in>div>ul>li span{
	color: #999;
}
.in_shop_cart_main_2_in>div>ul>li b{
	font-weight: 400;
}
.basket-checkout-container .btn{
	text-align: center;
	width: 100%;
	background: #dec9b6;
	font-size: 12px;
	padding: 18px;
	font-family: 'Montserrat', sans-serif;
	color: #404040;
	margin: 0 0 0 0;
	font-weight: 500;
	border: none;
	text-transform: uppercase;
}
.in_shop_cart_main_2_in>div>a{
	display: block;
	text-decoration: none;
	color: #404040;
	font-size: 10px;
	background: url(../img/in_shop_cart_main_2_in_circle.png)0px center no-repeat;
	padding: 5px 0 4px 20px;
}
.in_shop_cart_main_2_in_2>div>form>div{
	background: transparent;
}
.nav_menu_2{
	margin: 0 0 60px 0;
}
.crumbs_nav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	margin: 0 0 25px 0;
}
.crumbs_nav a{
	font-size: 12px;
	color: #94918e;
	text-decoration: none;
	display: inline-block;
	margin: 0 5px 0 0;
}
.crumbs_nav {
	font-size: 12px;
	color: #94918e;
}
.card_product_flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	margin: 0 0 80px 0;
}
.card_product_slide{
	width: 750px;
}
.card_product_slide .owl-nav{
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	position: absolute;
	padding: 0 15px;
	top: 45%;
	z-index: 9;
}
.card_product_slide .owl-prev {
	background: url(../img/icons/my_carusel_2_arrow.png)0 0 no-repeat !important;
	width: 83px;
	height: 14px;
	transform: rotate(180deg);
}
.card_product_slide .owl-next {
	background: url(../img/icons/my_carusel_2_arrow.png)0 0 no-repeat !important;
	width: 83px;
	height: 14px;
}
.card_product_slide .owl-prev span,
.card_product_slide .owl-next span {
	display: none;
}
.card_product_txt{
	width: 360px;
}
.card_product_txt h4{
	font-size: 18px;
	margin: 0 0 0px 0;
	font-weight: 500;
}
.card_product_txt h4 .old {
	font-size: 14px;
	opacity: 0.7;
	text-decoration: line-through;
}
.card_product_txt .heading{
	font-size: 60px;
	text-align: left;
	margin: 0 0 25px 0;
	font-family: 'Playfair Display', serif;
	font-weight: 400;
}
.card_product_txt>div{
	margin: 0 0 50px 0;
}
.card_product_txt>div>p{
	font-size: 12px;
}
.card_product_txt .form{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
}
.card_product_txt .form div{
	width: 100%;
	
	padding: 0 0;
	margin: 0 0 15px 0;
}
.card_product_txt .form div select{
	display: block;
	padding: 15px 25px;
	width: 100%;
	border: none;
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	
	font-size: 15px;
	cursor: pointer;
	border: 1px solid #dfdfdf;
}
.card_product_txt .form div select:first-child{
	color: #404040;
}
.select2-container--default .select2-selection--single{
	border: 1px solid #dfdfdf;
	border-radius: inherit;
	background: transparent;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	height: 50px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: 48px;
	padding: 0 25px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	background: url(../img/icons/select_arrow.png) 0 0 no-repeat;
	width: 13px;
	height: 7px;
	transition: all .1s;
	top: 20px;
	right: 25px;
}
.select2-container--open .select2-selection--single .select2-selection__arrow{
	transform: rotate(180deg);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
	display: none;
}

.card_product_txt .form button{
	text-align: center;
	width: 180px;
	background: #dec9b6;
	font-size: 12px;
	padding: 20px 0;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	color: #404040;
	margin: 0 30px 0 0;
	border: none;
}
.card_product_txt .form button:last-child{
	width: auto;
	color: #404040;
	background: url(../img/icons/fav_ic4.png)0px center no-repeat;
	padding: 0 0 0 20px;
	text-align: left;
}
.card_product_flex_more_click{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px solid #e5e3e1;
	margin: 0 0 30px 0;
}
.card_product_flex_more_click p{
	font-size: 20px;
	color: #94918e;
	padding: 10px 0;
	margin: 0 0 -1px 0;
	font-family: 'Playfair Display', serif;
	border-bottom: 1px solid transparent;
	cursor: pointer;
}
p.more_click_p{
	font-style: italic;
	color: #aa8d73;
	border-bottom: 1px solid #aa8d73;
}
.in_card_product_flex_more_click{
	display: none;
}
.card_product_flex_more_click p:first-child{
	margin-right: 45px;
}
.card_product_flex_more .in_flex_catalog_filtr_show_flex_inner{
	width: 260px;
	padding: 0 0 25px 0;
}
.owl-carousel .owl-item img {
	height: auto;
}
.bought{
	display: none;
	border: none;
	background: url(../img/icons/ic_shops.png)0px center no-repeat;
	font-family: 'Montserrat', sans-serif;
	padding: 2px 0 0px 20px;
}
.in_flex_catalog_filtr_show_flex_inner:hover .bought{
	display: block;
}
.menu-btn{
	display: none;
}
.show_filtr{
	display: none;
}
.in_card_product_flex_more_click .in_my_carusel_2{
	width: 260px;
}
.in_card_product_flex_more_click .my_carusel_2 .owl-nav{
	display: none;
}

.in_card_product_flex_more_click .txt_catalog span, .in_card_product_flex_more_click .txt_catalog .bought, .my_carusel_2 .txt_catalog span, .my_carusel_2 .txt_catalog .bought {
	display: block;
}
.in_card_product_flex_more_click .in_flex_catalog_filtr_show_flex_inner, .my_carusel_2 .in_flex_catalog_filtr_show_flex_inner {
	height: auto;
}
.in_card_product_flex_more_click .catalog_item, .my_carusel_2 .catalog_item{
	position: static;
}
.dm-overlay{position:fixed;top:0;left:0;background:rgba(230,214,200,0.53);display:none;overflow:auto;width:100%;height:100%;z-index:99999999}
.dm-overlay:target{display:block;-webkit-animation:fade .6s;-moz-animation:fade .6s;animation:fade .6s}
.dm-table{display:table;width:100%;height:100%}
.dm-cell{display:table-cell;padding:0 1em;vertical-align:middle;text-align:center}
.dm-modal{display:inline-block;padding:20px 40px;max-width:550px;background:#fff;border-radius:5px;color:#000;position:relative;text-align:left}
.close-modal{z-index:9999;float:right;width:30px;height:30px;color:#e6d6c8;text-align:center;text-decoration:none;line-height:26px;cursor:pointer;position:absolute;right:20px}
.close-modal:after{display:block;border:2px solid #e6d6c8;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;content:'X';-webkit-transition:all .6s;-moz-transition:all .6s;transition:all .6s;-webkit-transform:scale(0.85);-moz-transform:scale(0.85);-ms-transform:scale(0.85);transform:scale(0.85)}
.form-zayavka-modal span, .dob-text {
	text-align: center;
	font-size: 20px;
	color: #94918e;
	padding: 10px 0;
	font-family: 'Playfair Display', serif;
	margin-bottom: 20px;
}
.form-zayavka-modal button, .dob-button {
	text-align: center;
	width: 180px;
	background: #dec9b6;
	font-size: 12px;
	padding: 20px 0;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	color: #404040;
	margin: 0 15px;
	border: none;
	display: inline-block;
	text-decoration: none;
}