/*
Theme Name: himalyan
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: himalyan
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

himalyan is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: 'Montserrat', sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: 'Montserrat', sans-serif;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link{
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66667%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28571%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11111%;
}

.gallery-caption {
	display: block;
}

@media all and (max-width:1199px){
	.arrival-product-listing{
		padding-left: 30px;
		padding-right: 30px;
	}
	.arrival-product-listing .owl-nav .owl-prev{
		margin-left: -30px;
	}
	.arrival-product-listing .owl-nav .owl-next{
		margin-right: -30px;
	}
}
.himalayan-category-listing .categoty-listing .categories {
    position: relative;
}
.himalayan-category-listing .categoty-listing .categories figure.hover-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    margin: 0;
}
.himalayan-category-listing .categoty-listing .categories figure.hover-image a{
	display: block;
	height:100%;
}
.himalayan-category-listing .categoty-listing .categories figure.hover-image a img{
	height:100%;
	-o-object-fit: cover;
	object-fit: cover;
	width:100%;
}
.himalayan-category-listing .categoty-listing .categories:hover figure.hover-image {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
/*Category Page Styling Start Here*/
.category-shop-banner-wrapper{
	display: none;
}
.tax-product_cat .category-shop-banner-wrapper{
	display: block;
}
.tax-product_cat .category-page-banner{
	position:relative;
	height:300px;
	background-size: cover !important;
}
.category-page-banner img{
	width:100%;
}
.category-page-banner-content{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	text-align:center;
	max-width:490px;
}
.category-page-banner-content h3{
	color:#f28309;
	font-size:27px;
	text-transform:uppercase;
	margin:0 0 25px;
}
.category-page-banner-content p{
	font-size:14px;
	color:#fff3e6;
}
.woocommerce-breadcrumb{
	width:100%;
	max-width:1170px;
	margin:15px auto 40px !important;
}
.woocommerce-breadcrumb a{
	color:#878786;
	font-size:12px;
	font-weight:300;
}
.woocommerce .woocommerce-breadcrumb{
	color:#8b4726;
	font-size:12px;
	font-weight:300;
}
.child-category-listing {
	padding-left:18px;
	padding-right:18px;
	padding-bottom:70px;
	max-width:1565px;
	margin: 0 auto;
}
.child-category-listing .sub-category-listing-wrapper{
	position: relative;
	padding-left:265px;
	padding-top:23px;
	padding-bottom:20px;
	margin-bottom:38px;
	-webkit-box-shadow: 0 0 8px #cccccc;
	-moz-box-shadow: 0 0 8px #cccccc;
	box-shadow: 0 0 8px #cccccc;
	background: #fff;
}
.parent-cat.woocommerce #content.site-content{
	background: #f8f8f8;
}
.child-category-listing .sub-category-listing-wrapper .sub-cate-name-wrapper{
	position: absolute;
	left:0;
	top:0;
	width:265px;
	height:100%;
}
.sub-category-listing-wrapper .sub-cate-name-wrapper .cat-name{
	position: absolute;
	padding:0 20px;
	top:50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width:100%;
	text-align: center;
}
.sub-cate-name-wrapper .cat-name h3{
	color:#8b4726;
	font-size:24px;
	text-transform:uppercase;
	margin:0 0 30px;
	font-weight:500;
	line-height: 1.4;
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    -ms-word-break: break-all;
    word-break: break-all;
}
.sub-cate-name-wrapper a{
	color:#ffffff;
	font-size:14px;
	background:#f28309;
	border:1px solid #f28309;
	text-transform:uppercase;
	display:inline-block;
	padding:10px 22px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.sub-cate-name-wrapper a:hover{
	color: #f28309;
	background: #fff;
}
.sub-cat-product-listing ul{
	margin:0;
	list-style:none;
}
.sub-cat-product-listing ul.child-cat-product-listing  li{
   float:left;
   margin-right:30px;
   text-align: center;
}
.sub-cat-product-listing ul.child-cat-product-listing  li .img-link{
	display: inline-block;
}
.sub-cat-product-listing .flexslider{
	position: relative;
}
.sub-cat-product-listing .flexslider .flex-direction-nav{
	position: absolute;
	top:118px;
	margin-top:-20px;
	width:100%;
	height:0;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-prev{
	float: left;
	display: block;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-next{
	float: right;
	display: block;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-prev a,
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-next a{
	height:40px;
	width:28px;
	font-size: 0px;
	color: transparent;
	text-indent: 999;
	background:#fff url('assets/images/arrow.png') no-repeat  3px center;
	display: inline-block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: block;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-next a{
	background:#fff url('assets/images/arrow.png') no-repeat -21px center;
	margin-right:-2px;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-prev a{
	-webkit-box-shadow: -2px 0 2px #ccc;
	-moz-box-shadow: -2px 0 2px #ccc;
	box-shadow: -2px 0 2px #ccc;
}
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-prev a.flex-disabled,
.sub-cat-product-listing .flexslider .flex-direction-nav .flex-nav-next a.flex-disabled{
	background-color: #f0f0f0;
}
.sub-cat-product-listing ul.child-cat-product-listing li h5{
	color:#414040;
	font-size:15px;
	margin:0 0 10px;
	padding-top:10px;
}
.sub-cat-product-listing ul.child-cat-product-listing li h5 a{
	color:#414040;
}
.sub-cat-product-listing ul.child-cat-product-listing li span
{
	font-size:16px;
	color:#ee7d00;
}
.sub-cat-product-listing ul.child-cat-product-listing li .price-text-after,
.sub-cat-product-listing ul.child-cat-product-listing li .star-rating{
	display: none;
}
/*--------------------------------*/

/*Single Product Style*/
.single-product-page-wrapper{
   padding:20px 0 0 ;	
}
.breadcrumb-section.single-product-breadcum{
	padding:0 0 60px;
}
.single-product-page-wrapper .woocommerce-product-gallery__wrapper{
	margin:0;
}
.single-product-page-wrapper .summary.entry-summary{
	margin:0;
}
.single-product-page-wrapper .summary.entry-summary h1{
	font-size:22px;
	color:#555555;
	font-weight:500;
	margin:0 0 20px;
}
.single-product-page-wrapper .onsale{
	display:none;
}
.single_sku_wrapper{
	color:#f28309;
	font-size:16px;
	text-transform: uppercase;
	font-weight:500;
}
.woocommerce .single-product-page-wrapper .price ins{
	display:block;
	font-size:33px;
	color:#555555;
	font-weight:400 !important;
	line-height:100%;
}
.woocommerce .single-product-page-wrapper .price del{
	color:#555555;
	font-weight:300 !important;
	opacity: 0.8 !important;
}
.price-text-after{
	font-size:11px;
	color:#555555;
	font-weight:300;
	display:inline-block;
	margin-left:15px;
}
.single-product-page-wrapper .woocommerce-product-details__short-description h4{
	color:#555555;
	font-size:14px;
	text-transform:uppercase;
	font-weight:500;
	padding:0 0 10px;
	margin: 0 0 10px;
	border-bottom:1px solid #dfdfdf;
}
.single-product-page-wrapper .woocommerce-product-details__short-description p{
	font-size:12px;
	color:#848484;
	font-weight:300;
	margin: 0 0 40px;
}
.woocommerce div.product form.cart div.quantity,.woocommerce div.product form.cart .button{
	float:none;
}
.woocommerce div.product form.cart div.quantity{
	float: left;
}
.single-product-quantity-text{
	font-size:17px;
	display:inline-block;
	color:#555555;
	margin-right:15px;
	font-weight:500;
	float: left;
	line-height: 40px;
}
.single-product-page-wrapper .quantity{
	display:inline-block;
	border:1px solid #d7d7d7;
	border-radius:0;
	margin:0 15px 30px 0 !important;
	float: left;
}
.single-product-page-wrapper .quantity input[type='number']{
	height:40px;
	border-radius:0;
}
.single-product-stock{
	font-size:12px;
	color:#f28309;
	float: left;
	line-height:40px;
}
.single-product-page-wrapper .single_add_to_cart_button.button.alt{
	font-size:16px;
	color:#fff;
	text-transform:uppercase;
	width:200px;
	background:#f28309;
	height:52px;
	border-radius:0;
	border:1px solid #f28309; 
	font-weight: 400;
}
.single-product-page-wrapper .single_add_to_cart_button.button.alt:hover{
	background:#fff;
	color:#f28309;
}
.single-product-page-wrapper .yith-wcwl-add-to-wishlist{
	display:inline-block;
	position:relative;
	top:75px;
}
.single-product-page-wrapper .stock.out-of-stock + .yith-wcwl-add-to-wishlist{
	top:0 !important;
	left:0 !important;
}
.single-product-page-wrapper .yith-wcwl-add-to-wishlist{
	
}
.single-product-page-wrapper .cart{
	float:left;
	min-width:205px;
}
.yith-wcwl-add-to-wishlist{
	margin:0;
}
.single-product-page-wrapper .add_to_wishlist{
	border:1px solid #898989;
	height:52px;
	width:52px;
	border-radius:0 !important;
	display:block;
	background:url(assets/images/add-to-whistlist.png) no-repeat center;
	font-size: 0;
	position:relative;
	top:-3px;
}
#wooswipe{
	background:#f3f3f3;
}
#wooswipe .thumbnails{
	margin:20px 55px;
	height:auto;
}
.single-product-page-wrapper #tab-description,.single-product-page-wrapper #tab-reviews{
	display:block !important;
}
.single-product-page-wrapper .woocommerce-Reviews{
	padding:40px 0 0;
}
.single-product-page-wrapper #tab-description{
	margin:0;
}
.single-product-description{
	background:#f6f6f6;
	padding:55px 0 30px 0;
}
.single-product-page-wrapper .woocommerce-Reviews-title{
	color:#555555;
	font-weight:600;
	font-size:16px;
	text-transform:uppercase;
	padding:0 0 15px;
	border-bottom:1px solid #dfdfdf;
	margin:0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
	padding:25px 0 22px;
	border:0;
}
/*.comment_container{
	border-bottom:1px solid #dfdfdf;
}*/
.single-product-details h3,.single-product-content h3{
	color:#2c1c07;
	font-size:16px;
	text-transform:uppercase;
	padding:0 0 13px;
	border-bottom:1px solid #d9d9d9;
	margin:0 0 35px;
	font-weight: 500;
	position: relative;
}
.single-product-details h3::after,
.single-product-content h3::after {
    background: #ef9140 none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0px;
    position: absolute;
    width: 88px;
}
.single-product-description .single-product-details table tbody th{
	font-weight:500;
	color: #555555;
}
.single-product-description .single-product-details table tbody td{
	color: #3b3b3b;
}
.single-product-content p{
	font-size:13px;
	color:#55524e;
	font-weight:300;
}
.single-product-content a{
	color:#f68100;
	font-size:14px;
}
.single-product-details table{
	border:none;
	margin:0 0 30px;
}
.single-product-details table tbody th,.single-product-details table tbody td{
	border:none;
	padding:0 0 18px;
	color:#3b3b3b;
	font-size:14px;
	font-weight:300;
}
.related.products{
	padding:75px 0;
	border-top:1px solid #dfdfdf;
}
.related.products h2{
	color:#303030;
	font-size:27px;
	font-weight:300;
	text-transform:uppercase;
	text-align:center;
	position:relative;
}
.related.products h2:before{
	position:absolute;
	left:50%;
	transform:translate(-50%);
	-webkit-transform:translate(-50%);
	top:-40px;
	background:url(assets/images/related-product-image.png) no-repeat center;
	width:55px;
	height:24px;
	content:'';
}
#comments{
	position:relative;
}
.Write-review-button{
	position:absolute;
	right:0;
	top:-11px;
	font-size:12px;
	color:#ffffff;
	width:134px;
	background:#f28309;
	border:1px solid #f28309;
	text-transform:uppercase;
	text-align:center;
	height:36px;
	border-radius:3px;
	line-height:36px;
}
.Write-review-button:hover{
	background:#fff;
	color: #f28309;
}
#review_form_wrapper{
	display:none;
}
.comment_container img{
	top:25px !important;
	border-radius:50%;
}
.woocommerce .single-product-page-wrapper .star-rating{
/*	float:none;*/
margin:3px 0 0;
}
.woocommerce #reviews #comments ol.commentlist{
	max-width:773px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text{
	margin-left:110px;
}
.woocommerce #reviews #comments .comment-reply{
	text-align: right;
	margin-top: -22px;
}
.woocommerce #reviews #comments .children .comment-reply{
	display: none;
}
.woocommerce #reviews #comments .comment-reply a{
	font-size: 12px;
	color: #f28309;
	font-weight:300;
	line-height: 1;
	display: inline-block;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
	height:66px;
	width:66px;
	overflow: hidden;
	border:none;
	padding:0px;
	-o-object-fit: cover;
	object-fit: cover;
	margin-left:15px;
}
.comment_container .comment-text .meta{
/*	padding:0 0 45px;*/
}
.comment_container .comment-text .meta strong,.comment_container .comment-text .meta .woocommerce-review__published-date{
	color:#2a241c;
	font-size:15px;
}
.comment_container .comment-text .description p{
	color:#5e5e5e;
	font-size:14px;
	font-weight:300;
	padding:15px 0 0;
}
.comment_container ul.children .comment-text .description p{
	padding:0;
}
.single-product-rating{
	float:left;
	color:#555555;
	font-size:12px;
	font-weight:300;
	margin-right:10px;
}
.woocommerce-review-link{
	display:none;
}
.comment-respond input[type='submit']{
	background: #f28309 !important;
    border: 1px solid #f28309;
    border-radius: 0;
    color: #fff !important;
    font-size: 16px;
    height: 52px;
    text-transform: uppercase;
    width: 200px;
}
#review_form_wrapper{
	color:#555555;
	font-weight:300;
	font-size:15px;
}
.single-product-social-share ul{
	margin:0;
	list-style:none;
	display:inline-block;
	float: left;
}
.single-product-social-share ul li{
	display:inline-block;
}
.children .comment_container{
	background:#f3f3f3;
	border:0;
	padding:10px;
}
.children .comment_container img{
	left:10px !important;
}
.single-product-social-share span{
	color:#555555;
	font-size:12px;
	font-weight:300;
	text-transform:uppercase;
	margin-right:15px;
	float: left;
	line-height: 2;
}
.icon-twitter{
	background-position:-27px 0;
}
.icon-gplus{
	background-position:-57px 0;
}
.icon-rss{
	background-position:-87px 0;
}

.slick-prev::before, .slick-next::before{
	opacity:1;
	font-size:0;
}
.single-product-mail{
	display:inline-block;
	font-size:13px;
	color:#1f1f1f;
	float: right;
}
.single-product-mail a{
	color:#777777;
	display:inline-block;
}
.single-product .printfriendly.pf-alignleft{
	display:inline-block !important;
	text-transform:uppercase;
	float: right;
	padding-left:15px;
}
.printfriendly.pf-alignleft .noslimstat{
	 font-size: 13px;
     color: #777777;
     text-transform: lowercase;
}
.single-product-social-share .single-product-mails{
	width:200px;
	float: right;
}
.single-product-mails a.single-product-mail{
	color:#777777;
	background:url(assets/images/single-product-mail-icon.png) no-repeat left center;
	display:inline-block;
	padding:0 0 0 20px;
	float: right;
	line-height: 2;
}
.comment_container{
	border-bottom:1px solid #dfdfdf !important;
}
.woocommerce-Reviews li{
	border-bottom:none !important;
}
.woocommerce-Reviews .children li .comment_container{
	border-bottom:none !important;
}
.woocommerce #reviews #comments ol.commentlist ul.children{
	margin: 0;
	padding: 20px 0 0 50px;
	border-bottom:1px solid #dfdfdf !important;
}
button.slick-arrow{
	/*background:url(assets/images/slick-next.png) no-repeat right center !important;*/
}
.slick-next.slick-arrow{
	background:url(assets/images/slick-next.png) no-repeat right center !important;
}
.slick-next.slick-arrow:hover,
.slick-next.slick-arrow:focus{
	background:url(assets/images/slick-next.png) no-repeat right center !important;
}
.slick-prev.slick-arrow{
	background:url(assets/images/previous-arrow.png) no-repeat right center !important;
}
.slick-prev.slick-arrow:hover,
.slick-prev.slick-arrow:focus{
	background:url(assets/images/previous-arrow.png) no-repeat right center !important;
}
.slick-arrow.slick-disabled{
	opacity: 0.3 !important;
}
.single-product-content .printfriendly.pf-alignleft{
	display:none;
}
.commentlist .children li{
	border-bottom:none !important;
}
.woocommerce-Reviews .star-rating{
	float:none !important;
	position:absolute;
	top:50px;
}
#see-more-comment a{
	font-size:14px;
	color:#f28309;
	text-transform:uppercase;
}
.quantity {
  position: relative;
  height:42px;
  width:85px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button
{
  -webkit-appearance: none;
  margin: 0;
}

input[type=number]
{
  -moz-appearance: textfield;
}
.quantity{
	border:1px solid #d7d7d7;
}
.quantity input {
  width: 85px !important;
  height: 40px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-right: 40px;
  border: none;
}

.quantity input:focus {
  outline: 0;
}

.quantity-nav {
  float: none;
  position: absolute;
  height: 40px;
  right:0;
  top:0;
  height:100%;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  width: 40px;
  text-align: center;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-left: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  background:#ebedf4 url('assets/images/spin-top.png') no-repeat center center;
  margin-left:1px;
}
.quantity-button.quantity-down {
  position: absolute;
  bottom: 0px;
  height: 50%;
  border-right: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  background:#ebedf4 url('assets/images/spin-bottom.png') no-repeat center center;
  margin-left:1px;
}
.woocommerce-cart .printfriendly.pf-alignleft,
.woocommerce-checkout .printfriendly.pf-alignleft,
.single-product-description .single-product-content .printfriendly.pf-alignleft{
	display: none !important;
}
/*-------------------*/