
html,
body {
	font-size: 12px;
}
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	outline: none;
}
body {
	color: #403d3a;
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.5em;
}
a {
	color: #403d3a;
	text-decoration: none;
}
a:hover {
	color: #c8a165;
}
b, strong {
	font-weight: bold;
}
img {
	max-width: 100%;
}
p {
	margin: 0 0 10px;
}
input, 
textarea, 
select {
	font-size: .9rem;
}
h1,h2,h3 {
	line-height: 1.3em;
}

.container-narrow {
	max-width: 872px;
}

#header .topbar {
	border-bottom: 1px solid #eedfc5;
	padding-top: 5px;
    padding-bottom: 5px;
}
#header .topbar .topbar-menu ul li {
	float: left;
	margin-right: 20px;
}
#header .topbar .topbar-menu ul li a {
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
}

#header .topbar .topbar-rlinks {
	float: right;
}
#header .topbar .topbar-rlinks .topbar-rlinks-bl {
	float: left;
}
#header .topbar .topbar-rlinks .topbar-rlinks-sign {
	margin-right: 15px;
}
#header .topbar .topbar-rlinks .topbar-rlinks-sign a {
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
}
#header .topbar .topbar-rlinks .topbar-rlinks-soc a {
	display: inline-block;
}
#header .topbar .topbar-rlinks .topbar-rlinks-soc a.soc-link-ig {
	margin-right: 5px;
}
#header .topbar .topbar-rlinks .topbar-rlinks-soc img {
	width: 13px;
	height: 13px;
}

#header .main {
    padding-top: 15px;
	padding-bottom: 15px;
}
#header .main .logo-col {
	display: flex;
}
#header .main .logo {
	position: relative;
	display: flex;
    align-items: center;
}
#header .main .logo img {
	max-width: 268px;
	width: 100%;
}
#header .main .search-col {
	display: flex;
}
#header .main .search {
	position: relative;
	display: flex;
    align-items: center;
    width: 100%;
    max-width: 360px;
}
#header .main .search form {
	width: 100%;
}
#header .main .search .s-text {
	width: 100%;
    height: 29px;
    padding: 0 24px;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 10px -3px #dac294;
}
#header .main .search .s-text::placeholder {
   color: #c8c8c8;
}
#header .main .search .s-submit {
	background: url(../img/icons/i_search.png) no-repeat;
	background-size: 19px;
    width: 19px;
    height: 19px;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    margin: auto;
    cursor: pointer;
}
#header .main .contacts {
	min-height: 44px;
	float: right;
	margin-right: 38px;
	padding-top: 3px;
    padding-left: 54px;
    position: relative;
}
#header .main .contacts .phone-icon {
	background: #403d3a url(../img/icons/i_phone.png) center no-repeat;
	background-size: 26px;
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
}
#header .main .contacts .phone {
	display: block;
	font-size: 1.1rem;
}
#header .main .contacts .phone-1 {
	margin-bottom: 2px;
}
#header .main .mini-cart {
	width: 44px;
	height: 44px;
	float: right;
	position: relative;
}
#header .main .mini-cart .cart-icon {
	background: #403d3a url(../img/icons/i_cart.png) center no-repeat;
	background-size: 26px;
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 50%;
	cursor: pointer;
}
#header .main .mini-cart .cart-icon:hover {
	background-color: #c8a165;
}
#header .main .mini-cart .cart-icon .qty {
	color: #fffffe;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    right: 0;
    background: #e6474b;
    text-align: center;
    border-radius: 50%;
    line-height: 14px;
    font-size: .7rem;
}
#header .main .mini-cart .items {
	display: none;
	position: absolute;
	width: 223px;
	padding-top: 48px;
	top: 0;
    right: 0;
	z-index: 9999;
}
#header .main .mini-cart.not-empty:hover .items {
	display: block;
}
#header .main .mini-cart .items-inner {
	background: #fff;
	box-shadow: 0 0 5px 0px #999;
	padding: 10px;
}
#header .main .mini-cart .items ul {
	border-bottom: 1px solid #ccc;
	margin: 0 0 10px;
}
#header .main .mini-cart .items ul li {
	margin: 0 0 7px;
	overflow: hidden;
	position: relative;
}
#header .main .mini-cart .items .image {
	width: 43px;
	float: left;
	margin: 0 10px 0 0;
}
#header .main .mini-cart .items .info {
	width: 150px;
	float: left;
}
#header .main .mini-cart .items .title {
	line-height: 1.2em;
	margin: 0 0 3px;
}
#header .main .mini-cart .items .price {
	font-size: .87rem;
	font-weight: bold;
	line-height: 1em;
}
#header .main .mini-cart .items .subtotal-price {
	font-size: .87rem;
	font-weight: bold;
	margin: 0 0 10px;
	text-align: center;
}
#header .main .mini-cart .items .go-to-cart {
	width: 100%;
    font-size: 1rem;
    font-weight: bold;
    padding: 7px 20px;
}
#header .main .mini-cart .items i {
	color: red;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

#header .main .mobile-menu-toggle {
	background: url(../img/icons/i_menu.png) no-repeat;
	display: none;
	width: 40px;
	height: 26px;
	cursor: pointer;
}

#header .menu {
	background: #403d3a;
	text-align: center;
}
#header .menu ul {
	display: inline-block;
	padding: 14px 0 12px;
}
#header .menu ul li {
	float: left;
	margin: 0 13px;
}
#header .menu ul li:first-child {
	margin-left: 0;
}
#header .menu ul li:last-child {
	margin-right: 0;
}
#header .menu ul li a {
	color: #fff;
	font-family: 'Noto Serif', serif;
	font-size: 1.12rem;
    font-weight: bold;
}
#header .menu ul li.active > a {
	color: #dac6a8;
	pointer-events: none;
}
#header .menu ul li a:hover {
	color: #c8a165;
}

.mobile-menu {
	background: #f6f6f6;
	display: none;
	max-width: 300px;
	width: 100%;
	height: 100%;
	padding: 7px 15px 14px;
	position: absolute;
	top: 0;
	right: 0;
	overflow-y: auto;
	z-index: 999;
}
.mobile-menu .logo {
	width: 206px;
	margin: 0 0 15px;
}
.mobile-menu .logo {
	width: 206px;
	margin: 0 0 15px;
}
.mobile-menu .search {
	position: relative;
	display: flex;
    align-items: center;
    width: 100%;
    max-width: 360px;
	margin: 0 0 20px;
}
.mobile-menu .search form {
	width: 100%;
}
.mobile-menu .search .s-text {
	width: 100%;
    height: 40px;
    padding: 0 24px;
    border: 1px solid #403d3a;
    border-radius: 20px;
}
.mobile-menu .search .s-text::placeholder {
   color: #c8c8c8;
}
.mobile-menu .search .s-submit {
	background: url(../img/icons/i_search.png) no-repeat;
	background-size: 24px;
    width: 24px;
    height: 24px;
    border: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    margin: auto;
    cursor: pointer;
}
.mobile-menu .catalog-menu {
	margin: 0 0 14px;
	padding: 0 0 7px;
	border-bottom: 1px solid #403d3a;
}
.mobile-menu .headline {
	font-family: 'Noto Serif', serif;
	font-size: 1.14rem;
	font-weight: bold;
	margin: 0 0 10px;
}
.mobile-menu .catalog-menu > ul {
	padding-top: 3px;
}
.mobile-menu .catalog-menu ul li {
	margin: 0 0 11px;
	position: relative;
}
.mobile-menu .catalog-menu ul li ul {
	display: none;
	margin-top: 9px;
	margin-bottom: 0;
	padding-left: 13px;
}
.mobile-menu .catalog-menu ul li.parent i {
	background: url(../img/thumb_arrows.png) no-repeat;
	background-size: 18px;
	background-position: 0 -10.67px;
	width: 18px;
	height: 10.67px;
	position: absolute;
	top: 6px;
	right: 0;
}
.mobile-menu .catalog-menu ul li.parent.active i {
	background-position: 0 0;
}
.mobile-menu .catalog-menu ul li.active ul {
	display: block;
}
.mobile-menu .catalog-menu ul li ul li {
	margin: 0;
	padding: 0 0 7px;
}
.mobile-menu .catalog-menu ul li ul li a {
	font-size: .9rem;
}
.mobile-menu .topbar-menu-wrapper {
	position: relative;
	margin: 0 0 14px;
	padding: 0 0 4px;
	border-bottom: 1px solid #403d3a;
}
.mobile-menu .topbar-menu-wrapper i {
	background: url(../img/thumb_arrows.png) no-repeat;
	background-size: 18px;
	background-position: 0 -10.67px;
	width: 18px;
	height: 10.67px;
	position: absolute;
	top: 6px;
	right: 0;
	z-index: -10;
}
.mobile-menu .topbar-menu-wrapper.opened i {
	background-position: 0 0;
}
.mobile-menu .topbar-menu-wrapper .topbar-menu {
	display: none;
}
.mobile-menu .topbar-menu-wrapper.opened .topbar-menu {
	display: block;
}
.mobile-menu .topbar-menu-wrapper .topbar-menu > ul {
	padding-top: 3px;
}
.mobile-menu .topbar-menu-wrapper .topbar-menu ul li {
	margin: 0 0 9px;
}
.mobile-menu .account-links-wrapper {
	margin: 0 0 14px;
	padding: 0 0 11px;
	border-bottom: 1px solid #403d3a;
}
.mobile-menu .account-links {
	background: url(../img/icons/i_account.png) left center no-repeat;
	padding-left: 23px;
}
.mobile-menu .contacts-wrapper {
	margin: 0 0 14px;
	padding: 0 0 11px;
	border-bottom: 1px solid #403d3a;
}
.mobile-menu .contacts span {
	display: block;
}
.mobile-menu .soc-links .headline {
	margin-bottom: 15px;
}

.mobile-menu .close-btn {
	background: url(../img/icons/i_close.png) no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 13px;
	right: 15px;
	cursor: pointer;
}

.dark-bg {
	background: rgba(0,0,0,.5);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
}

#content {
	padding-bottom: 48px;
}

.main-slider .slider-item {
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 521px;
	align-items: center;
    display: flex;
}
.main-slider .slider-item .item-content {
	background-color: #fffdfd;
	background-color: rgba(255, 253, 253, .8);
	display: inline-block;
	padding: 28px;
}
.main-slider .slider-item .item-content .item-category {
	color: #999999;
	font-family: 'Noto Serif', serif;
	font-size: 1.1rem;
	font-weight: bold;
	margin: 0 0 5px;
}
.main-slider .slider-item .item-content .item-title {
	font-size: 2.45rem;
    font-weight: bold;
    margin: 0 0 30px;
	line-height: initial;
}

.th-btn {
	background: #403d3a;
	border: 1px solid #403d3a;
	color: #fff;
	display: inline-block;
	font-size: 1.1rem;
	padding: 10px 20px;
	min-width: 128px;
    text-align: center;
    cursor: pointer;
}
.th-btn:hover {
	background: #c8a165;
	border-color: #c8a165;
	color: #fff;
}
.th-btn.th-btn-white {
	background: #fff;
	color: #403d3a;
	border: 1px solid #403d3a;
}
.th-btn.th-btn-white:hover {
	border-color: #c8a165;
	color: #c8a165;
}
.th-btn.th-btn-red {
	background: #e54044;
	border: none;
}
.th-btn.th-btn-red:hover {
	background: #cdb085;
}

.th-headline {
	color: #c8a165;
	font-family: 'Noto Serif', serif;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 36px;
	text-align: center;
}

.breadcrumbs {
	margin: 0 0 20px;
	padding: 13px 0;
}
.breadcrumbs ul li {
	display: inline;
}
.breadcrumbs ul li a,
.breadcrumbs ul li span {
	font-family: 'Noto Serif', serif;
}
.breadcrumbs ul li a {
	color: #999;
}
.breadcrumbs ul li i {
	color: #999;
	padding: 0 7px;
}

.page-title {
	font-size: 2rem;
	font-weight: bold;
}

.page-title-block .page-title {
	margin: 0 0 24px;
}

.sign-block {
	text-align: center;
}

.sign-block .headline {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 20px;
}
.sign-block form {
	display: inline-block;
	width: 100%;
	max-width: 300px;
}
.sign-block form .form-row {
	margin: 0 0 10px;
}
.sign-block form input[type="text"],
.sign-block form input[type="email"],
.sign-block form input[type="password"] {
	background: #f6f6f6;
	border: none;
	color: #333;
	font-size: 1.12rem;
	font-family: 'Noto Serif', serif;
	width: 100%;
	padding: 10px 15px;
}
.sign-block form input::placeholder {
	color: #bbb;
}
.sign-block form button.submit {
	width: 100%;
}

.popular-products {
	padding: 30px 0 0;
}

.category-info {
	margin: 0 0 30px;
}
.category-info .page-title {
	margin: 0 0 15px;
}

.products-topbar {
	margin: 0 0 10px;
	overflow: hidden;
}
.products-topbar .products-tb-count {
	float: left;
}
.products-topbar .products-tb-sorting {
	float: right;
}
.products-topbar .products-tb-sorting select {
    padding: 2px;
}

.products .product {
	margin-bottom: 20px;
}
.products .product .image {
	margin: 0 0 2px;
	position: relative;
	overflow: hidden;
}
.products .product .image img {
	float: left;
}
.category-block .products .product .image {
	margin: 0 0 5px;
}
.products .product .category {
	margin: 0 0 2px;
}
.products .product .category a {
	color: #999;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
}
.products .product .title {
    margin: 0 0 5px;
}
.products .product .title a {
	font-size: 1.25rem;
	font-weight: bold;
}
.products .product .price .old {
	margin-right: 10px;
	font-size: .9rem;
	text-decoration: line-through;
}
.products .product .price .new {
	color: #e54044;	
}
.products .product .image:hover .quick-view,
.products .product .image:hover .add-to-cart {
	opacity: 1;
}
.products .product .quick-view {
	background: #403d3a url(../img/icons/i_view.png) center no-repeat;
	border-radius: 50%;
	width: 33px;
	height: 33px;
	position: absolute;
	right: 10px;
	bottom: 12px;
	cursor: pointer;
	opacity: 0;
	transition: .3s;
}
.products .product .quick-view:hover {
	background-color: #cdb085;
}
.quick-view-form {
	background: #fff;
	display: none;
	padding: 36px;
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
}
.quick-view-form .product-info .stock {
	margin-bottom: 26px;
}
.quick-view-form .product-info .price {
	margin-bottom: 16px;
}
.quick-view-form .product-info .choose-size {
	margin-bottom: 18px;
}
.quick-view-form .product-info .qty-favor {
	margin-bottom: 26px;
}
.quick-view-form .product-info .buttons {
    margin: 0 0 26px;
}
.quick-view-form .close-btn {
	background: url(../img/icons/i_close.png) no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 13px;
	right: 15px;
	cursor: pointer;
}
.products .product .add-to-cart {
	background: #403d3a url(../img/icons/i_basket.png) center no-repeat;
	border-radius: 50%;
	width: 33px;
	height: 33px;
	position: absolute;
	right: 10px;
	bottom: 7px;
	cursor: pointer;
	opacity: 0;
	transition: .3s;
}
.products .product .add-to-cart:hover {
	background-color: #cdb085;
}

.special-offers {
	padding: 30px 0;
}

.our-advantages {
    padding: 70px 0 48px;
}
.our-advantages .advantage {
	text-align: center;
}
.our-advantages .advantage .image {
	height: 132px;
    margin: 0 0 16px;
}

.blog {
	padding: 30px 0 10px;
}
.posts .post {
	margin: 0 0 23px;
}
.posts .post .image {
	margin: 0 0 3px;
}
.posts .post .date {
	color: #999;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
	margin: 0 0 2px;
}
.posts .post .title {
    margin: 0 0 5px;
}
.posts .post .title a {
	font-size: 1.25rem;
	font-weight: bold;
}

.pagination-wrapper {
	border-top: 1px solid #ddd;
	padding: 26px 0;
	text-align: center;
}
.pagination-wrapper ul {
	display: inline-block;
}
.pagination-wrapper ul li {
	float: left;
	margin: 0 2px;
}
.pagination-wrapper ul li.disabled {
	display: none;
}
.pagination-wrapper ul li a,
.pagination-wrapper ul li span {
	display: block;
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	text-align: center;
}
.pagination-wrapper ul li span {
	background: #403d3a;
	color: #fff;
}

.our-instagram {
	padding: 30px 0;
}
.our-instagram iframe {
	margin: 0 0 30px;
}
.our-instagram .show-more {
	text-align: center;
}

.about-us {
	padding: 30px 0 0;
}
.about-us .text {
	text-align: center;
}

.history .history-inner {
	display: flex;    
	justify-content: flex-end;
    align-items: center;
	min-height: 453px;
}
.history .history-content {
	background: #f6f6f6;
	float: right;
	padding: 36px 60px;
	max-width: 751px;
	box-shadow: 0px 0px 15px 0px rgba(74, 73, 72, 0.2);
}
.history .history-content .title {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 20px;
	text-align: center;
}

.page-content .date {
	color: #999;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
	margin: 0 0 13px;
}
.page-content img {
	margin: 0 0 10px;
}
.page-content h2 {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 0 10px;
}
.page-content ol {
  counter-reset: my-awesome-counter;
  margin: 0 0 10px;
  padding-left: 36px;
}
.page-content ol li {
  counter-increment: my-awesome-counter;
  padding-left: 16px;
  position: relative;
}
.page-content ol li::before {
	content: counter(my-awesome-counter) ". ";
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.page-content ul {
	margin: 0 0 10px;
	padding-left: 36px;
}
.page-content ul li {
	padding-left: 16px;
	position: relative;
}
.page-content ul li:before {
	content: '\2022';
  	font-size: x-large;
  	position: absolute;
  	left: 0;
  	top: 0;
  	bottom: 0;
  	margin: auto;
}
.page-content blockquote {
	font-family: 'Noto Serif', serif;
	font-size: 1.23rem;
    font-style: italic;
	line-height: 1.7em;
	padding-left: 86px;
	position: relative;
}
.page-content blockquote:before {
	background: url(../img/icons/i_quote.png) no-repeat;
	content: '';
	width: 33px;
	height: 26px;
	position: absolute;
	top: 3px;
	left: 36px;
}
.page-content .shipping-col .image {
	margin: 0 0 10px;
	text-align: center;
}
.page-content .shipping-col .title {
	font-size: 1.12rem;
	font-weight: bold;
	margin: 0 0 13px;
	text-align: center;
}

.post-content .page-title {
	margin: 0 0 11px;
}
.foobar {
	background: #f6f6f6;
	margin: 36px 0;
	padding: 9px 13px;
}
.foobar .share span {
	margin-right: 5px;
	vertical-align: middle;
}
.foobar .share img {
	width: 14px;
	vertical-align: middle;
}
.foobar .tags span {
	margin-right: 5px;
	vertical-align: middle;
}
.foobar .tags ul {
	display: inline-block;
	vertical-align: middle;
}
.foobar .tags ul li {
	float: left;
	margin-right: 5px;
}
.foobar .tags ul li a {
	color: #999;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
}

.sidebar .headline,
.special-offers-sidebar .headline {
	font-family: 'Noto Serif', serif;
	font-size: 1.28rem;
	font-weight: bold;
	line-height: initial;
	margin: 0 0 18px;
	position: relative;
}
.sidebar .catalog-menu .headline i,
.special-offers-sidebar .headline i,
.sidebar .product-filters .headline i {
	display: none;
	background: url(../img/thumb_arrows.png) no-repeat;
	background-size: 18px;
	background-position: 0 -10.67px;
	width: 18px;
	height: 10.67px;
	position: absolute;
	top: 0;
	right: 14px;
	bottom: 0;
	margin: auto;
}
.sidebar .catalog-menu.opened .headline i,
.special-offers-sidebar.opened .headline i,
.sidebar .product-filters.opened .headline i{
	background-position: 0 0;
}
.sidebar .last-posts {
	margin: 0 0 20px;
	overflow: hidden;
}
.sidebar .last-posts ul li {
	margin: 0 0 10px;
	overflow: hidden;
}
.sidebar .last-posts ul li .image {
	float: left;
	width: 78px;
	height: 78px;
	margin-right: 10px; 
}
.sidebar .last-posts ul li .item-info {
	
}
.sidebar .last-posts ul li .date {
	color: #999;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
	margin: 0 0 2px;
}
.sidebar .last-posts ul li .title {
	font-size: 1.1em;
	font-weight: bold;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-word;
    overflow: hidden;
}

.sidebar .catalog-menu {
	margin: 0 0 30px;
}
.sidebar .catalog-menu ul {
	padding-left: 13px;
}
.sidebar .catalog-menu ul li {
	padding: 0 0 7px;
	position: relative;
}
.sidebar .catalog-menu ul li ul {
	display: none;
	margin-top: 9px;
	margin-bottom: 0;
}
.sidebar .catalog-menu ul li.active > a {
	font-weight: bold;
	pointer-events: none;
}
.sidebar .catalog-menu ul li.opened > ul {
	display: block;
}
.sidebar .catalog-menu ul li ul li a {
	font-size: .9rem;
}
.sidebar .catalog-menu ul li.parent i {
	background: url(../img/thumb_arrows.png) no-repeat;
	background-size: 13px;
	background-position: 0 -8px;
	width: 13px;
    height: 6.67px;
	position: absolute;
	top: 6px;
	right: 14px;
	cursor: pointer;
}
.sidebar .catalog-menu ul li.parent.opened > i {
	background-position: 0 0;
}

.featured-categories .featured-category {
	height: 340px;
    overflow: hidden;
	position: relative;
	margin: 0 0 26px;
}
.featured-categories .featured-category .image {
	position: absolute;
	top: 50%;
	margin-top: -50%;
}
.featured-categories .featured-category .title {
	background: rgba(238, 238, 238, 0.9);
	color: #403d3a;
	padding: 15px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15%;
	text-align: center;
	font-size: 1.37rem;
    font-weight: bold;
    transition: .3s;
}
.featured-categories .featured-category:hover .title {
	background: rgba(255, 255, 255, 0.9);
}

.product-filters .filter {
	margin: 0 0 20px;
	padding-left: 13px;
	user-select: none;
}
.product-filters .filter .title {
	font-weight: bold;
	margin: 0 0 10px;
}
.product-filters #filter-price {
	margin: 0 0 28px;
}
.product-filters #filter-price #range-price {
	max-width: 203px;
	display: none !important;
}
.product-filters #filter-price .irs--round {
	max-width: 203px;
}
.product-filters #filter-price .irs--round .irs-handle {
	background: #c8a165;
	width: 14px;
	height: 14px;
	border-color: #403d3a;
	top: 18px;
	cursor: pointer;
}
.product-filters #filter-price .irs--round .irs-from,
.product-filters #filter-price .irs--round .irs-to,
.product-filters #filter-price .irs--round .irs-single {
	background-color: transparent;
	color: inherit;
	font-size: .8rem;
	top: 38px;
	padding: 0;
}
.product-filters #filter-price .irs--round .irs-from:before,
.product-filters #filter-price .irs--round .irs-to:before,
.product-filters #filter-price .irs--round .irs-single:before {
	display: none;
}
.product-filters #filter-price .irs--round .irs-line,
.product-filters #filter-price .irs--round .irs-bar {
	height: 3px;
	top: 24px;
}
.product-filters #filter-price .irs--round .irs-line {
	background: #ccc;
}
.product-filters #filter-price .irs--round .irs-bar {
	background: #403d3a;
}
.product-filters .filter .content label {
	display: block;
	cursor: pointer;
}
.product-filters .filter .content label:hover .name {
	color: #c8a165;
}
.product-filters .filter .content .item .checkbox input {
	display: none;
}
.product-filters .filter .content .item .checkbox {
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 1px solid #403d3a;
	margin-right: 5px;
	vertical-align: middle;
}
.product-filters .filter .content .item .checkbox.checked {
	background: #403d3a;
}
.product-filters .filter .content .item .name {
	vertical-align: middle;
}
.product-filters .filter .content .item:nth-child(1n+6) {
	display: none;
}
.product-filters .filter.all .content .item:nth-child(1n+6) {
	display: block;
}
.product-filters .filter .show-more {
	margin-top: 3px;
}
.product-filters .filter .show-more span {
	font-size: .8rem;
	font-style: italic;
	/*border-bottom: 1px solid #403d3a;*/
	text-decoration: underline;
	cursor: pointer;
}
.product-filters .filter .show-more span:hover {
	color: #c8a165;
}

.product-filters .checked-filters {
	margin: 0 0 5px;
	padding-left: 13px;
	user-select: none;
}
.product-filters .checked-filters .item {
	background: #f6f6f6;
	display: inline-block;
	margin: 0 7px 7px 0;
	padding: 3px 10px;
	cursor: pointer;
}

.product-filters .submit-field {
	padding-left: 13px;
}

.single-product {
	margin: 0 0 48px;
}
.product-head {
	margin-bottom: 38px;
}
.product-images .images {
	padding-left: 98px;
	overflow: hidden;
}
.owl-dots-wrapper {
	overflow: hidden;
	position: relative;
	height: calc(100% - 64px);
	margin: 32px 0;
	position: absolute;
	top: 0;
    left: 0;
    width: 78px;
}
.product-images .images .owl-dots {
	position: relative;
}
.product-images .images .owl-dots.disabled, 
.product-images .images .owl-nav.disabled {
	display: block;
}
.product-images .images .owl-dot {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 78px;
    height: 78px;
	margin: 0 0 10px;
	overflow: hidden;
}
.product-images .images .owl-dot.active {
	border: 2px solid #403d3a;
}
.product-images .images .owl-nav button {
	background: url(../img/thumb_arrows.png) no-repeat;
	position: absolute;
	left: 25.5px;
    width: 27px;
    height: 16px;
    z-index: 9999;
}
.product-images .images .owl-nav .owl-prev {
	top: 0;
}
.product-images .images .owl-nav .owl-next {
	background-position: 0 -16px;
	bottom: 0;
}

.product-info .page-title {
	margin-top: -7px;
	margin-bottom: 7px;
}
.product-info .stock {
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	font-weight: bold;
	margin-bottom: 30px;
}
.product-info .stock.in-stock {
	color: #999;
}
.product-info .price {
	font-size: 2rem;
	margin-bottom: 36px;
}
.product-info .price .old {
	margin-right: 15px;
	font-size: 1.5rem;
	text-decoration: line-through;
}
.product-info .price .new {
	color: #e54044;	
}
.product-info .choose-size {
	margin: 0 0 32px;
}
.product-info .choose-size .cz-top {
	margin: 0 0 3px;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	overflow: hidden;
}
.product-info .choose-size span {
	float: left;
}
.product-info .choose-size a {
	float: right;
}
.product-info .choose-size select {
	/*color: #c8c8c8;*/
	cursor: pointer;
	width: 100%;
	padding: 7px 10px;
}
.product-info .qty-favor {
	margin: 0 0 68px;
	overflow: hidden;
}
.product-info .qty-favor .qty {
	float: left;
}
.product-info .qty-favor .qty .qty-input {
	display: inline-block;
	position: relative;
}
.product-info .qty-favor .qty span {
	display: block;
	font-family: 'Noto Serif', serif;
	font-size: .9rem;
	margin: 0 0 3px;
}
.product-info .qty-favor .qty input {
	font-size: 1.1rem;
    width: 60px;
    height: 32px;
    padding: 0 10px;
}
.product-info .qty-favor .qty .plus-arrow,
.product-info .qty-favor .qty .minus-arrow {
	background: url(../img/qty_arrows.png) no-repeat;
	cursor: pointer;
	width: 13px;
	height: 8px;
	position: absolute;
	right: 7px;
	border: none;
}
.product-info .qty-favor .qty .plus-arrow {
	top: 6px;
}
.product-info .qty-favor .qty .minus-arrow {
	background-position: 0 -11px;
	bottom: 6px;
}
.product-info .qty-favor .add-to-favorite {
	float: right;
}
.product-info .qty-favor .add-to-favorite a {
	background: url(../img/icons/i_heart.png) no-repeat;
	background-size: 19px;
	display: block;
	font-size: .9rem;
	min-height: 19px;
	margin-top: 26px;
	padding-top: 1px;
	padding-left: 25px;
}
.product-info .buttons {
	margin: 0 0 68px;
	overflow: hidden;
}
.product-info .buttons button {
	float: left;
	font-size: 1.2rem;
	font-weight: bold;
	width: 49%;
	padding: 13px;
}
.product-info .buttons .add-to-cart {
	margin-right: 2%;
}
.product-info .foobar {
	margin: 0;
}

.product-details .tabs ul li {
	margin: 0 0 10px;
}
.product-details .tabs ul li > a {
	background: #f6f6f6;
	display: block;
	font-weight: bold;
	padding: 7px;
	position: relative;
	text-align: center;
}
.product-details .tabs ul li.active > a {
	background: #c8a165;
	color: #fff;
}
.product-details .tabs ul li a:hover {
	color: inherit;
}
.product-details .tabs ul li.active a:hover {
	color: #fff;
}
.product-details .tabs ul li a i {
	background: url(../img/thumb_arrows.png) no-repeat;
	background-size: 18px;
	background-position: 0 -10.67px;
	display: none;
	width: 18px;
	height: 10.67px;
	position: absolute;
	top: 0;
    right: 14px;
    bottom: 0;
    margin: auto;
}
.product-details .tabs ul li.active a i {
	background: url(../img/thumb_arrows_white.png) no-repeat;
	background-size: 18px;
	background-position: 0 0;
}
.product-details .tab-content {
	display: none;
}
.product-details .tab-content.active {
	display: block;
}
.product-details .tab-content#characteristics a {
	text-decoration: underline;
}
.product-details .tab-content#characteristics table {
	border-top: 2px solid #474747;
	border-bottom: 2px solid #474747;
}
.product-details .tab-content#characteristics table tr {
	border-top: 1px solid #474747;
	border-bottom: 1px solid #474747;
}
.product-details .tab-content#characteristics table th,
.product-details .tab-content#characteristics table td {
	padding: 9px 27px;
	text-align: left;
}
.product-details .tab-content#characteristics table th {
	font-weight: bold;
}
.product-details .tab-content#reviews .login-btn a {
	font-size: 1.1rem;
    padding: 7px 14px;
}

.one-click-buy-form {
	background: #fff;
	display: none;
	max-width: 558px;
	width: 90%;
	padding: 67px;
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1009;
	text-align: center;
	box-shadow: 0 0 30px -20px #000;
}
.one-click-buy-form .headline {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 16px;
}
.one-click-buy-form .text {
	font-size: 1.14rem;
	margin: 0 0 28px;
	line-height: initial;
}
.one-click-buy-form label {
	display: block;
	margin: 0 0 28px;
}
.one-click-buy-form span {
	display: inline-block;
	font-weight: bold;
    margin: 3px 10px 3px 0;
}
.one-click-buy-form input[type="tel"] {
	background: #f6f6f6;
	border: none;
	max-width: 267px;
	width: 100%;
	height: 32px;
	padding: 0 10px;
}
.one-click-buy-form input[type="submit"] {
    font-size: 1.17rem;
    font-weight: bold;
    padding: 12px 48px;
}
.one-click-buy-form .close-btn {
	background: url(../img/icons/i_close.png) no-repeat;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 13px;
	right: 15px;
	cursor: pointer;
}

.category-content .page-title {
	margin: 0 0 20px;
}
.category-content .category-items .item-content {
	margin: 0 0 30px;
	height: 269px;
	overflow: hidden;
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
}
.category-content .category-items .item-content .title {
	background: rgba(255, 255, 255, .8);
	font-size: 1.5rem;
	font-weight: bold;
    padding: 13px 20px;
}
.category-content .category-items .item-content .title {
	color: initial;
	line-height: initial;
	text-align: center;
}

.cart-page .go-to-shop {
	margin: 0 0 30px;
	text-align: center;
}
.cart-page .go-to-shop a {
	font-size: 1.13rem;
	font-weight: bold;
}
.cart-table {
	width: 100%;
	margin: 0 0 30px;
	border-collapse: collapse;
}
.cart-table .thead .th,
.cart-table .tbody .td {
	font-size: 1.23em;
	padding: 15px;
}
.cart-table .tbody .th:first-child,
.cart-table .tbody .th:last-child,
.cart-table .tbody .td:first-child,
.cart-table .tbody .td:last-child {
	padding-left: 0;
	padding-right: 0;
}
.cart-table .thead .th {
	font-weight: bold;
	text-align: left;
}
.cart-table .thead .product-shortinfo {
	text-align: center;
}
.cart-table .tbody tr {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}
.cart-table .tbody .product-shortinfo {
	width: 427px;
}
.cart-table .tbody .product-shortinfo .product-image {
	float: left;
	margin-right: 15px;
}
.cart-table .tbody .product-shortinfo .product-title {
	font-size: 1.23rem;
	font-weight: bold;
	margin: 0 0 15px;
}
.cart-table .tbody .product-shortinfo .product-params {
	font-size: .9rem;
}
.cart-table .tbody .product-shortinfo .product-params .param-name {
	font-weight: bold;
}
.cart-table .tbody .td img {
	width: 125px;
	height: 125px;
}
.cart-table .tbody .product-qty .qty-input button,
.cart-table .tbody .product-qty .qty-input input {
	background: #f6f6f6;
	border: none;
	display: inline-block;
	width: 24px;
    height: 24px;
}
.cart-table .tbody .product-qty .qty-input button {
	cursor: pointer;
}
.cart-table .tbody .product-qty .qty-input input {
	font-size: 1rem;
	width: 32px;
	text-align: center;
}
.cart-table .tbody .product-remove {
	text-align: center;
}
.cart-table .tbody .product-remove .remove-btn {
	background: url(../img/icons/i_remove.png) no-repeat;
	background-size: 15px;
	display: inline-block;
	width: 16px;
	cursor: pointer;
	height: 16px;
}
.cart-table .thead .th.product-totals-text {
	text-align: right;
}
.cart-table .thead .th.product-totals {
	font-size: 1.43rem;
	font-weight: normal;
}
.checkout-btn {
	text-align: right;
}
.checkout-btn a {
    font-weight: bold;
    padding: 12px 48px;
}

.customer-details .checkout-tabs {
	overflow: hidden;
}
.customer-details .checkout-tabs .checkout-tab {
	background: #403d3a;
	color: #999999;
	float: left;
	font-weight: bold;
	width: 33.2%;
	padding: 8px;
	text-align: center;
}
.customer-details .checkout-tabs .checkout-tab-1,
.customer-details .checkout-tabs .checkout-tab-2 {
	margin-right: .2%;
}
.customer-details .checkout-tabs .checkout-tab.active {
	background: #c8a165 !important;
	color: #fff !important;
}
.customer-details .checkout-tab-content {
	padding: 30px;
}
.customer-details .checkout-tab-content form label {
	display: block;
	margin: 0 0 10px;
	overflow: hidden;
}
.customer-details .checkout-tab-content form label.checkout-field span {
	display: block;
	float: left;
	font-weight: bold;
	width: 140px;
	margin: 5px 0 0;
}
.customer-details .checkout-tab-content form label.checkout-field span i {
	color: red;
}
.customer-details .checkout-tab-content form label.checkout-field input {
	background: #f6f6f6;
	float: left;
	width: 240px;
	height: 28px;
	border: none;
	padding: 0 10px;
}
.customer-details .checkout-tab-content form label.checkout-field input:focus {
	border: 1px solid #bbb;
}
.customer-details .checkout-tab-content form label.checkout-radio {
	cursor: pointer;
	margin: 0 0 20px;
}
.customer-details .checkout-tab-content form label.checkout-radio .pickup-address {
	margin: 5px 0 0 21px;
}
.customer-details .checkout-tab-content form label.checkout-radio input,
.customer-details .checkout-tab-content form label.checkout-radio span {
	vertical-align: middle;
}
.customer-details .checkout-tab-content form label.checkout-radio input {
	margin: 0 5px 0 0;
}
.customer-details .checkout-tab-content form label.checkout-radio span {
	font-weight: bold;
}
.customer-details .checkout-tab-content form .note {
	color: red;
	font-size: .9rem;
	margin-left: 140px;
	margin-bottom: 15px;
}
.customer-details .checkout-tab-content .th-btn.go-next-btn {
	margin: 0 0 15px;
    padding: 7px;
    font-weight: bold;
    font-size: 1rem;
}
.customer-details .checkout-tab-content .agreement-note {
	font-size: .9rem;
}.customer-details .checkout-tab-content .agreement-note a {
	font-style: italic;
	text-decoration: underline;
}

.checkout-page .order-details {
	background: #f6f6f6;
}
.checkout-page .order-details .headline {
	background: #403d3a;
	color: #fff;
	font-weight: bold;
	padding: 8px;
	text-align: center;
}
.checkout-page .order-details .content {
	padding: 15px;
}
.checkout-page .order-details .order-items {
	border-bottom: 1px solid #999;
	margin: 0 0 10px;
}
.checkout-page .order-details .order-items li {
	font-size: .9rem;
	margin: 0 0 10px;
}
.checkout-page .order-details .order-items li .price {
	overflow: hidden;
}
.checkout-page .order-details .order-items li .price b {
	float: right;
}
.checkout-page .order-details .subtotal-price,
.checkout-page .order-details .shipping-price,
.checkout-page .order-details .total-price {
	border-bottom: 1px solid #999;
	font-weight: bold;
	margin: 0 0 10px;
	padding: 0 0 10px;
	overflow: hidden;
}
.checkout-page .order-details .subtotal-price span,
.checkout-page .order-details .shipping-price span,
.checkout-page .order-details .total-price span {
	float: right;
}
.checkout-page .order-details .total-price {
	border-bottom: none;
	font-size: 1.2rem;
}

.success-page .success-content {
	width: 100%;
	max-width: 360px;
	margin: 0 auto;
}
.success-page .success-content .headline-1 {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 0 0 5px;
	text-align: center;
}
.success-page .success-content .headline-2 {
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
}
.success-page .success-content .order-details {
	background: #f6f6f6;
	font-size: 1.1rem;
	padding: 25px;
}
.success-page .success-content .order-details div {
	margin: 0 0 5px;
}
.success-page .success-content .order-details div span {
	font-weight: bold;
	font-size: .97rem;
}
.success-page .success-content .order-details .headline-3 {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0 0 15px;
	text-align: center;
}
.success-page .success-content .go-home {
	text-align: center;
}
.success-page .success-content .go-home a {
	font-weight: bold;
	padding: 8px 32px;
}

.contacts-block .page-title {
	margin: 0 0 20px;
}
.contacts-block .contacts {
	margin: 0 0 30px;
}
.contacts-block .contacts .item {
	display: flex;
	align-items: center;
	padding-left: 54px;
	position: relative;
	margin: 0 0 15px;
	min-height: 44px;
}
.contacts-block .contacts .item .icon {
	background-color: #403d3a;
	background-repeat: no-repeat;
	background-size: 23px;
	background-position: center;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	position: absolute;
	top: 0;
	left: 0;
}
.contacts-block .contacts .item.address .icon {
	background-image: url(../img/icons/i_marker.png);
}
.contacts-block .contacts .item.phones .icon {
	background-image: url(../img/icons/i_phone.png);
}
.contacts-block .contacts .item span,
.contacts-block .contacts .item a {
	display: block;
	vertical-align: middle;
}
.contacts-block .contacts .item.email .icon {
	background-image: url(../img/icons/i_email.png);
}
.contacts-block .contact-form {
	margin: 0 0 30px;
}
.contacts-block .contact-form .headline {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.3em;
	margin: 0 0 20px;
}
.contacts-block .contact-form form {
	margin: 0 0 10px;
}
.contacts-block .contact-form input[type="text"],
.contacts-block .contact-form input[type="email"],
.contacts-block .contact-form textarea {
	background: #f6f6f6;
	width: 100%;
	border: none;
	margin: 0 0 10px;
	padding: 0 10px;
	font-family: inherit;
}
.contacts-block .contact-form input[type="text"]::placeholder,
.contacts-block .contact-form input[type="email"]::placeholder,
.contacts-block .contact-form textarea::placeholder {
   color: #b8b8b8;
}
.contacts-block .contact-form input[type="text"],
.contacts-block .contact-form input[type="email"],
.contacts-block .contact-form input[type="submit"] {
	height: 30px;
}
.contacts-block .contact-form textarea {
	padding-top: 5px;
	height: 67px;
}
.contacts-block .contact-form input[type="submit"] {
	background: #403d3a;
	color: #fff;
	width: 100%;
	border: none;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
}
.contacts-block .contact-form input[type="submit"]:hover {
	background: #c8a165;
}

#footer {
	background: #eedfc5;
	padding: 30px 0 20px;
}
#footer .f-cols {
	margin-bottom: 30px;
}
#footer .f-col .headline {
	margin: 0 0 20px;
	font-family: 'Noto Serif', serif;
	font-size: 1.1rem;
	font-weight: bold;
}
#footer .f-col ul li {
	margin: 0 0 5px;
}
#footer .f-col ul li a {
	font-size: .9rem;
}
#footer .contacts span {
	display: block;
	font-size: .9rem;
    margin: 0 0 5px;
}
#footer .subscription {
	margin: 0 0 15px;
}
#footer .subscription form {
	position: relative;
}
#footer .subscription form .s-email {
	background: transparent;
	width: 100%;
	height: 32px;
	padding: 0 100px 0 10px;
	border: 1px solid #403d3a;
}
#footer .subscription form .s-submit {
	background: #403d3a;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	height: 32px;
    border: none;
    padding: 0 15px;
    cursor: pointer;
}
#footer .subscription form .s-submit:hover {
	background: #c8a165;
	color: #fff;
}
#footer .soc-links img {
	width: 14px;
	height: 14px;
}
#footer .soc-links .soc-link-ig {
	margin-right: 5px;
}
#footer #copyright {
	text-align: center;
	font-family: 'Noto Serif', serif;
	font-size: 1.1rem;
	font-weight: bold;
}

.alert.alert-success {
	color: green;
}

.grecaptcha-badge {
	display: none;
}

@media (max-width: 1199px) {
	#header .menu ul li {
		margin: 0 15px;
	}
	.product-info .stock {
		margin-bottom: 15px;
	}
	.product-info .price {
		margin-bottom: 28px;
	}
	.product-info .choose-size {
		margin-bottom: 22px;
	}
	.product-info .qty-favor {
		margin-bottom: 28px;
	}
	.product-info .buttons {
		margin-bottom: 36px;
	}
}

@media (max-width: 991px) {
	#header .main .contacts {
		padding-left: 0px;
	}
	#header .main .contacts .phone-icon {
		display: none;
	}
	#header .menu ul {
		padding: 8px 0 6px;
		overflow: hidden;
	}
	#header .menu ul li {
		margin: 7px 15px;
	    display: inline-block;
	    float: none;
	}
	.catalog-menu > ul,
	.product-filters .filter {
		padding-left: 0;
	}
	.product-images {
		margin: 0 0 30px;
	}
	/*.product-info .buttons button {
		width: 100%;
	}
	.product-info .buttons .add-to-cart {
	    margin: 0 0 10px;
	}*/
	.page-content ol,
	.page-content ul {
		padding-left: 16px;
	}
	.page-content .shipping-col ol,
	.page-content .shipping-col ul {
		padding-left: 0;
	}
	.history .history-inner {
		background: none !important;
	}
	#footer .f-cols .f-col {
		margin: 0 0 20px;
	}
}

@media (min-width: 576px) and (max-width: 991px) {
	#footer .subscription form .s-email {
		margin: 0 0 5px;
	}
	#footer .subscription form .s-submit {
		width: 100%;
		position: relative;
	}
}

@media (max-width: 767px) {
	#header .topbar .topbar-menu {
		margin: 0 0 10px;
		text-align: center;
	}
	#header .topbar .topbar-menu ul li {
		display: inline-block;
		float: none;
	}
	#header .topbar .topbar-rlinks {
		float: none;
		text-align: center;
	}
	#header .topbar .topbar-rlinks .topbar-rlinks-bl {
		display: inline-block;
		float: none;
	}
	#header .topbar .topbar-rlinks .topbar-rlinks-soc img {
		vertical-align: middle;
	}
	#header .main .logo-col,
	#header .main .search-col {
		justify-content: center;
		margin-bottom: 20px;
	}
	#header .main .search {
	    max-width: 280px;
	}
	#header .main .mini-cart {
		float: none;
		margin: 0 auto 15px;
	}
	#header .main .contacts {
		float: none;
		margin-right: 0;
		text-align: center;
	}
	.sidebar {
		margin: 0 0 30px;
	}
	.product-details .tabs {
		margin: 0 0 20px;
	}
	.page-content .shipping-col {
		margin-bottom: 30px;
	}
	.cart-table .tbody .product-shortinfo {
		width: auto;
	}
}

@media (max-width: 575px) {
	html, 
	body, 
	input, 
	textarea, 
	select {
		font-size: 14px;
	}
	.th-btn {
		font-size: 1rem;
	}
	.th-headline {
		font-size: 1.47rem;
		margin-bottom: 23px;
	}
	#header .topbar,
	#header .main .search-col,
	#header .menu {
		display: none;
	}
	#header .main {
		padding-top: 10px;
		padding-bottom: 0;
	}
	#header .main .logo-col {
		margin-bottom: 10px;
	}
	#header .main .logo img {
	    max-width: 213px;
	}
	#header .main .contcart-col {
		background: #403d3a;
		display: flex;
    	align-items: center;
    	justify-content: space-between;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	#header .main .mini-cart {
		margin: 0;
	}
	#header .main .mini-cart .cart-icon {
		background-color: transparent;
		background-size: 36px;
		border-radius: none;
	}
	#header .main .mini-cart .items {
		width: 253px;
	    right: initial;
	    left: 0;
	}
	#header .main .mini-cart .items .title {
	    line-height: 1.3em;
	    margin: 0 0 5px;
	    font-size: .87rem;
	}
	#header .main .contacts {
	    padding-left: 41px;
		padding-right: 10px;
	}
	#header .main .contacts .phone-icon {
		background-color: transparent;
		background-size: 36px;
		display: block;
		width: 36px;
		border-radius: none;
	}
	#header .main .contacts .phone {
		color: #fff;
		font-size: .9rem;
    	line-height: 1.5em;
	}
	#header .main .contacts .phone-1 {
		margin-bottom: 0px;
	}
	#header .main .mobile-menu-toggle {
		display: block;
	}
	.main-slider .slider-item {
		min-height: 300px;
		align-items: flex-end;
	}
	.main-slider .slider-item .container {
		padding-left: 0;
		padding-right: 0;
	}
	.main-slider .slider-item .item-content {
		float: right;
		width: 70%;
		padding: 15px;
	}
	.main-slider .slider-item .item-content .item-category {
		display: none;
		font-size: .8rem;
		margin: 0 0 3px;
	}
	.main-slider .slider-item .item-content .item-title {
    	font-size: 1.17rem;
		margin: 0 0 10px;
	}
	.main-slider .slider-item .item-content .item-more a {
	    font-size: .9rem;
		padding: 5px 36px;
	}
	.our-advantages {
		padding: 48px 15px 0;
	}
	.our-advantages .advantage {
		display: flex;
		align-items: center;
		margin: 0 0 20px;
	}
	.our-advantages .advantage .image {
		display: flex;
		flex: 2;
		align-items: center;
		height: auto;
		margin: 0 16px 0 0;
	}
	.our-advantages .advantage .title {
		flex: 5;
		font-size: 1.14rem;
		font-weight: 100;
		line-height: initial;
		text-align: left;
	}
	.popular-products .container,
	.viewed-products .container {
		padding-right: 0;
	}
	.popular-products .row,
	.viewed-products .row {
		margin: 0;
	}
	.popular-products .col-sm-12,
	.viewed-products .col-sm-12 {
		padding-left: 0;
	}
	.popular-products .products .product-col,
	.viewed-products .products .product-col {
		padding: 7px;
	}
	.popular-products .products .owl-stage,
	.viewed-products .products .owl-stage {
		left: -27px;
	}
	.popular-products .products .product,
	.viewed-products .products .product {
	    margin-bottom: 10px;
	}
	.products-topbar .products-tb-count {
	    float: right;
	    margin: 0 0 10px;
	}
	.products-topbar .products-tb-count {
		margin-left: 15px;
	}
	.products .product .category {
		margin: 0;
	}
	.products .product .category a {
		font-size: .8rem;
	}
	.products .product .title a {
		font-size: 1rem;
	}
	.products .product .image {
		width: 100%;
		text-align: center;
	}
	.products .product .image img {
		float: none;
		width: 100%;
	}
	.product-filters .submit-field {
		display: none;
	}
	.owl-carousel.owl-drag .owl-item.active + .owl-item {
		opacity: .5;
	}
	.special-offers {
		padding: 20px 0 10px;
	}
	.special-offers .offer-image {
		margin: 0 0 10px;
	}
	.blog {
		padding: 15px 0 0;
	}
	.posts .post .date {
		font-size: .8rem;
	}
	.posts .post .title a {
		font-size: 1rem;
	}
	.posts .post.post-pl {
		padding-left: 7px;
	}
	.posts .post.post-pr {
		padding-right: 7px;
	}
	.our-instagram {
	    padding: 15px 0;
	}
	.our-instagram iframe {
	    margin: 0 0 20px;
	}
	.breadcrumbs ul li a,
	.breadcrumbs ul li span {
		font-size: .9rem;
	}
	.breadcrumbs ul li i {
		padding: 0 5px;
	}
	.page-title {
		font-size: 1.47rem;
	}
	.page-content blockquote {
		font-size: 1.13rem;
		padding-left: 48px;
	}
	.page-content blockquote:before {
		left: 6px;
	}
	.single-post .foobar {
		padding: 11px 13px;
	}
	.single-post .foobar .share {
		margin: 0 0 7px;
	}
	.sidebar .last-posts ul li .image {
		width: 98px;
		height: 98px;
	}
	.special-offers-sidebar {
		text-align: center;
	}
	.category-content .category-items .item-content {
		height: 219px;
		margin: 0 0 20px;
	}
	.category-content .category-items .item-content .title {
		background: rgba(255, 255, 255, .7);
		font-size: 1.14rem;
		padding: 10px 18px;
	}
	.sidebar .catalog-menu .headline {
		background: #f6f6f6;
		padding: 7px 14px;
	}
	.sidebar .catalog-menu .headline i,
	.special-offers-sidebar .headline i,
	.sidebar .product-filters .headline i {
		display: block;
	}
	.sidebar .catalog-menu > ul {
		display: none;
		padding-left: 24px;
	}
	.special-offers-sidebar .headline {
		background: #f6f6f6;
		padding: 7px 14px;
		text-align: left;
	}
	.special-offers-sidebar .headline i {
		display: block;
	}
	.special-offers-sidebar .special-offer {
		display: none;
	}
	.sidebar .product-filters .headline {
		background: #f6f6f6;
		padding: 7px 14px;
	}
	.sidebar .product-filters .filter {
		display: none;
		padding: 0 24px;
	}
	.sidebar .product-filters .checked-filters {
		padding: 0 24px;
	}
	.product-filters .filter-price .irs--round {
		max-width: 100%;
	}
	.product-filters .filter-price .irs--round .irs-handle {
		width: 20px;
		height: 20px;
	}
	.product-filters .filter-price .irs--round .irs-line, 
	.product-filters .filter-price .irs--round .irs-bar {
		top: 27px;
	}
	.product-filters .filter-price .irs--round .irs-from, 
	.product-filters .filter-price .irs--round .irs-to, 
	.product-filters .filter-price .irs--round .irs-single {
		top: 44px;
	}

	.product-images .images {
		padding-left: 0;
	}
	.product-images .owl-carousel .owl-stage-outer {
		margin: 0 0 15px;
	}
	.product-images .images .owl-dots-wrapper {
		width: calc(100% - 58px);
		height: 62px;
		margin: 0 auto;
		position: relative;
	}
	.product-images .images .owl-dots {
		width: 9999px;
	}
	.product-images .images .owl-dot {
		border: 2px solid transparent;
		width: 62px;
		height: 60px;
		margin: 0 3px;
	}
	.product-images .images .owl-nav button {
		background: url(../img/thumb_arrows_horizontal.png) no-repeat;
	    width: 19px;
	    height: 36px;
	}
	.product-images .images .owl-nav .owl-prev,
	.product-images .images .owl-nav .owl-next {
		top: initial;
		bottom: 12px;
	}
	.product-images .images .owl-nav .owl-prev {
		left: 0;
	}
	.product-images .images .owl-nav .owl-next {
		background-position: -19px 0;
		left: initial;
		right: 0;
	}

	.product-info .buttons button {
		font-size: 1.14rem;
		width: 100%;
	}
	.product-info .buttons .add-to-cart {
		margin: 0 0 10px;
	}
	.product-details .tabs ul li a i {
		display: block;
	}
	.product-details .tab-content#characteristics table {
		font-size: .9rem;
	}
	.product-details .tab-content {
	    padding: 21px 0 7px;
	}

	.one-click-buy-form {
		padding: 67px 20px;
	}
	.one-click-buy-form .headline {
		font-size: 1.7rem;
	}
	.one-click-buy-form input[type="tel"] {
		max-width: 167px;
	}

	.contacts-block .contact-form .headline {
		font-size: 1.47rem;
	}
	.contacts-block .contact-form input[type="text"], 
	.contacts-block .contact-form input[type="email"], 
	.contacts-block .contact-form textarea {
		font-size: .9rem;
	}
	.contacts-block .contact-form input[type="submit"] {
		font-size: 1rem;
		height: 32px;
	}
	.contacts-block iframe {
		height: 274px;
	}
	.history .history-content {
		padding: 26px;
		box-shadow: none;
	}
	.history .history-content .title {
		font-size: 1.5rem;
	}

	.cart-table,
	.cart-table .thead,
	.cart-table .tbody,
	.cart-table tr,
	.cart-table .thead .th, 
	.cart-table .tbody .td {
		display: block;
	}
	.cart-page .go-to-shop {
	    margin: 0px 0 20px;
	}
	.cart-table .tbody {
		margin: 0 0 20px;
	}
	.cart-table .product-item {
		position: relative;
	}
	.cart-table .tbody tr {
		border-top: none;
		border-bottom: 1px solid #ccc;
	    padding-top: 15px;
	    padding-bottom: 15px;
	}
	.cart-table .thead .th, 
	.cart-table .tbody .td {
		padding: 0;
	}
	.cart-table .thead-headlines {
		display: none;
	}
	.cart-table .tbody .product-shortinfo .product-image {
	    width: 48%;
	    margin-right: 3%;
	}
	.cart-table .tbody .product-shortinfo .product-title,
	.cart-table .tbody .product-shortinfo .product-params {
		float: left;
		width: 49%;
	}
	.cart-table .tbody .td img {
		width: auto;
		height: auto;
	}
	.cart-table .tbody .product-shortinfo .product-title {
	    font-size: 1rem;
	    margin: 0 0 7px;
	}
	.cart-table .tbody .product-shortinfo .product-params {
		margin: 0 0 10px;
	}
	.cart-table .tbody .product-shortinfo .product-params .param-name,
	.cart-table .tbody .product-shortinfo .product-params .param-value {
		display: inline-block;
	}
	.cart-table .tbody .product-qty .qty-input {
		margin: 0 0 10px;
	}
	.cart-table .tbody .product-remove .remove-btn {
		position: absolute;
		bottom: 50px;
		right: 0;
		margin: auto;
	}
	.cart-table .thead-total {
		overflow: hidden;
	}
	.cart-table .thead .th.product-totals-text {
		float: left;
		width: 48%;
		text-align: left;
    	margin: 0 3% 10px 0;
	}
	.cart-table .thead .th.product-totals {
	    float: left;
	    font-size: 1.36rem;
	    width: 49%;
	}

	.customer-details .checkout-tabs .checkout-tab {
		width: 100%;
    	margin: 0 0 1px;
	}
	.customer-details .checkout-tab-content form .note {
		margin-left: 0;
	}

	#footer .f-cols {
	    margin-bottom: 10px;
	}
	#footer .f-col .headline {
		font-size: 1rem;
		margin: 0 0 13px;
	}
	#footer .f-col ul li a,
	#footer .contacts span,
	#footer #copyright {
		font-size: .8rem;
	}
	#footer .subscription {
	    margin: 0 0 30px;
	}
	#footer .subscription form .s-email,
	#footer .subscription form .s-submit {
		font-size: 12px;
	}
	#footer .soc-links {
		text-align: center;
	}
	#footer .soc-links img {
		width: 18px;
		height: 18px;
	}
}