/*!
	Table of content
	================
*/
/*!
	1. 	Normalize CSS Reset
	2. 	Global Scope Style
	3. 	Bootstrap Grid Framework
		3.1	Bootstrap Grid Settings
		3.2 Bootstrap Grid Mixins
		3.3 Bootstrap Grid Classes
	4.	Header Styles
		4.1 Dropdown Menu
	5.	Content Wide Styles
		5.1	Wordpress Default Classes
		5.2	Post 
		5.3 Form
	6.	Sidebar Styles
		6.1 Default Wordpress Widgets
	7.	Reusable Components
		7.1 Buttons
		7.2 Social Icons
		7.3 Owl Carousel
		7.4 visual composer
	8.	Footer Style
*/
/* 1. Normalize CSS Reset */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display:block;
}
audio, canvas, video {
	display:inline-block;
}
audio:not([controls]) {
	display:none;
	height:0;
}
[hidden], template {
	display:none;
}
html {
	color:#000000;
	background:#ffffff;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
html, button, input, select, textarea {
	font-family:sans-serif;
}
body {
	margin:0;
}
a {
	background:transparent;
}
a:focus {
	outline:thin dotted;
}
a:hover, a:active {
	outline:0;
}
h1 {
	margin:0.67em 0;
	font-size:2em;
}
h2 {
	margin:0.83em 0;
	font-size:1.5em;
}
h3 {
	margin:1em 0;
	font-size:1.17em;
}
h4 {
	margin:1.33em 0;
	font-size:1em;
}
h5 {
	margin:1.67em 0;
	font-size:0.83em;
}
h6 {
	margin:2.33em 0;
	font-size:0.75em;
}
abbr[title] {
	border-bottom:1px dotted;
}
b, strong {
	font-weight:bold;
}
dfn {
	font-style:italic;
}
mark {
	color:#000000;
	background:#ffff00;
}
code, kbd, pre, samp {
	font-family:monospace, serif;
	font-size:1em;
}
pre {
	white-space:pre;
	white-space:pre-wrap;
	word-wrap:break-word;
}
q {
	quotes:"\201C" "\201D" "\2018" "\2019";
}
q:before, q:after {
	content:"";
	content:none;
}
small {
	font-size:80%;
}
sub, sup {
	position:relative;
	font-size:75%;
	line-height:0;
	vertical-align:baseline;
}
sup {
	top:-0.5em;
}
sub {
	bottom:-0.25em;
}
img {
	border:0;
}
svg:not(:root) {
	overflow:hidden;
}
figure {
	margin:0;
}
fieldset {
	margin:0 2px;
	padding:0.35em 0.625em 0.75em;
	border:1px solid #c0c0c0;
}
legend {
	padding:0;
	border:0;
	white-space:normal;
}
button, input, select, textarea {
	margin:0;
	font-family:inherit;
	font-size:100%;
	vertical-align:baseline;
}
button, input {
	line-height:normal;
}
button, select {
	text-transform:none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
	cursor:pointer;
	-webkit-appearance:button;
}
button[disabled], input[disabled] {
	cursor:default;
}
input[type="checkbox"], input[type="radio"] {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	padding:0;
}
input[type="search"] {
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
	-webkit-appearance:textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance:none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding:0;
	border:0;
}
textarea {
	overflow:auto;
	vertical-align:top;
}
table {
	border-spacing:0;
	border-collapse:collapse;
}
*, *:before, *:after {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
/* 2. Global Scope Style */
body {
	overflow-x:hidden;
	color:#848484;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:13px;
	font-weight:400;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	line-height:1.85;
	font-smoothing:antialiased;
}
.site-content {
	min-height:100vh;
}
.site-content.fullwidth .container {
	width:100%;
}
h1, h2, h3, h4, h5, h6 {
	color:#000000;
	font-weight:400;
}
a {
	color:#ecad25;
	text-decoration:none;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
a:hover {
	color:#ecad25;
}
address {
	font-style:normal;
}
p {
	margin-top:0;
}
ul, ol {
	padding-right:0;
	padding-left:0;
}
iframe {
	display:block;
	border:none;
}
.site-content {
	position:relative;
	z-index:2;
	background-color:white;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.sidebar-active {
	overflow:hidden;
}
.sidebar-active .site-content {
	-webkit-box-shadow:10px 0 10px rgba(90, 90, 90, 0.1);
	box-shadow:10px 0 10px rgba(90, 90, 90, 0.1);
	-webkit-transform:translateX(-400px);
	-ms-transform:translateX(-400px);
	-o-transform:translateX(-400px);
	transform:translateX(-400px);
}
.sidebar-active .overlay {
	position:fixed;
	z-index:9;
	top:0;
	right:400px;
	left:0;
	height:100%;
}
/* 3. Bootstrap grid framework */
/* 3.1 Boostrap Grid Settings */
/* 3.2 Bootstrap Grid Mixins */
/* 3.3 Bootstrap Grid Classes */
.container {
	margin-right:auto;
	margin-left:auto;
	padding-right:15px;
	padding-left:15px;
	*zoom:1;
}
.container:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
@media (min-width: 768px) {
	.container {
		width:750px;
	}
}
@media (min-width: 992px) {
	.container {
		width:970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width:1170px;
	}
}
.container-fluid {
	margin-right:auto;
	margin-left:auto;
	padding-right:15px;
	padding-left:15px;
	*zoom:1;
}
.container-fluid:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.row, .products {
	margin-right:-15px;
	margin-left:-15px;
	*zoom:1;
}
.row:after, .products:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .product-overview .product-summary, .col-lg-5, .col-xs-6, .col-sm-6, #yith-quick-view-content .images, #yith-quick-view-content .entry-summary, .col-md-6, .product-overview .images, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	position:relative;
	min-height:1px;
	padding-right:15px;
	padding-left:15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
	float:left;
}
.col-xs-1 {
	width:8.3333333333%;
}
.col-xs-2 {
	width:16.6666666667%;
}
.col-xs-3 {
	width:25%;
}
.col-xs-4 {
	width:33.3333333333%;
}
.col-xs-5 {
	width:41.6666666667%;
}
.col-xs-6 {
	width:50%;
}
.col-xs-7 {
	width:58.3333333333%;
}
.col-xs-8 {
	width:66.6666666667%;
}
.col-xs-9 {
	width:75%;
}
.col-xs-10 {
	width:83.3333333333%;
}
.col-xs-11 {
	width:91.6666666667%;
}
.col-xs-12 {
	width:100%;
}
.col-xs-pull-0 {
	right:auto;
}
.col-xs-pull-1 {
	right:8.3333333333%;
}
.col-xs-pull-2 {
	right:16.6666666667%;
}
.col-xs-pull-3 {
	right:25%;
}
.col-xs-pull-4 {
	right:33.3333333333%;
}
.col-xs-pull-5 {
	right:41.6666666667%;
}
.col-xs-pull-6 {
	right:50%;
}
.col-xs-pull-7 {
	right:58.3333333333%;
}
.col-xs-pull-8 {
	right:66.6666666667%;
}
.col-xs-pull-9 {
	right:75%;
}
.col-xs-pull-10 {
	right:83.3333333333%;
}
.col-xs-pull-11 {
	right:91.6666666667%;
}
.col-xs-pull-12 {
	right:100%;
}
.col-xs-push-0 {
	left:auto;
}
.col-xs-push-1 {
	left:8.3333333333%;
}
.col-xs-push-2 {
	left:16.6666666667%;
}
.col-xs-push-3 {
	left:25%;
}
.col-xs-push-4 {
	left:33.3333333333%;
}
.col-xs-push-5 {
	left:41.6666666667%;
}
.col-xs-push-6 {
	left:50%;
}
.col-xs-push-7 {
	left:58.3333333333%;
}
.col-xs-push-8 {
	left:66.6666666667%;
}
.col-xs-push-9 {
	left:75%;
}
.col-xs-push-10 {
	left:83.3333333333%;
}
.col-xs-push-11 {
	left:91.6666666667%;
}
.col-xs-push-12 {
	left:100%;
}
.col-xs-offset-0 {
	margin-left:0;
}
.col-xs-offset-1 {
	margin-left:8.3333333333%;
}
.col-xs-offset-2 {
	margin-left:16.6666666667%;
}
.col-xs-offset-3 {
	margin-left:25%;
}
.col-xs-offset-4 {
	margin-left:33.3333333333%;
}
.col-xs-offset-5 {
	margin-left:41.6666666667%;
}
.col-xs-offset-6 {
	margin-left:50%;
}
.col-xs-offset-7 {
	margin-left:58.3333333333%;
}
.col-xs-offset-8 {
	margin-left:66.6666666667%;
}
.col-xs-offset-9 {
	margin-left:75%;
}
.col-xs-offset-10 {
	margin-left:83.3333333333%;
}
.col-xs-offset-11 {
	margin-left:91.6666666667%;
}
.col-xs-offset-12 {
	margin-left:100%;
}
@media (min-width: 768px) {
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, #yith-quick-view-content .images, #yith-quick-view-content .entry-summary, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
		float:left;
	}
	.col-sm-1 {
		width:8.3333333333%;
	}
	.col-sm-2 {
		width:16.6666666667%;
	}
	.col-sm-3 {
		width:25%;
	}
	.col-sm-4 {
		width:33.3333333333%;
	}
	.col-sm-5 {
		width:41.6666666667%;
	}
	.col-sm-6, #yith-quick-view-content .images, #yith-quick-view-content .entry-summary {
		width:50%;
	}
	.col-sm-7 {
		width:58.3333333333%;
	}
	.col-sm-8 {
		width:66.6666666667%;
	}
	.col-sm-9 {
		width:75%;
	}
	.col-sm-10 {
		width:83.3333333333%;
	}
	.col-sm-11 {
		width:91.6666666667%;
	}
	.col-sm-12 {
		width:100%;
	}
	.col-sm-pull-0 {
		right:auto;
	}
	.col-sm-pull-1 {
		right:8.3333333333%;
	}
	.col-sm-pull-2 {
		right:16.6666666667%;
	}
	.col-sm-pull-3 {
		right:25%;
	}
	.col-sm-pull-4 {
		right:33.3333333333%;
	}
	.col-sm-pull-5 {
		right:41.6666666667%;
	}
	.col-sm-pull-6 {
		right:50%;
	}
	.col-sm-pull-7 {
		right:58.3333333333%;
	}
	.col-sm-pull-8 {
		right:66.6666666667%;
	}
	.col-sm-pull-9 {
		right:75%;
	}
	.col-sm-pull-10 {
		right:83.3333333333%;
	}
	.col-sm-pull-11 {
		right:91.6666666667%;
	}
	.col-sm-pull-12 {
		right:100%;
	}
	.col-sm-push-0 {
		left:auto;
	}
	.col-sm-push-1 {
		left:8.3333333333%;
	}
	.col-sm-push-2 {
		left:16.6666666667%;
	}
	.col-sm-push-3 {
		left:25%;
	}
	.col-sm-push-4 {
		left:33.3333333333%;
	}
	.col-sm-push-5 {
		left:41.6666666667%;
	}
	.col-sm-push-6 {
		left:50%;
	}
	.col-sm-push-7 {
		left:58.3333333333%;
	}
	.col-sm-push-8 {
		left:66.6666666667%;
	}
	.col-sm-push-9 {
		left:75%;
	}
	.col-sm-push-10 {
		left:83.3333333333%;
	}
	.col-sm-push-11 {
		left:91.6666666667%;
	}
	.col-sm-push-12 {
		left:100%;
	}
	.col-sm-offset-0 {
		margin-left:0;
	}
	.col-sm-offset-1 {
		margin-left:8.3333333333%;
	}
	.col-sm-offset-2 {
		margin-left:16.6666666667%;
	}
	.col-sm-offset-3 {
		margin-left:25%;
	}
	.col-sm-offset-4 {
		margin-left:33.3333333333%;
	}
	.col-sm-offset-5 {
		margin-left:41.6666666667%;
	}
	.col-sm-offset-6 {
		margin-left:50%;
	}
	.col-sm-offset-7 {
		margin-left:58.3333333333%;
	}
	.col-sm-offset-8 {
		margin-left:66.6666666667%;
	}
	.col-sm-offset-9 {
		margin-left:75%;
	}
	.col-sm-offset-10 {
		margin-left:83.3333333333%;
	}
	.col-sm-offset-11 {
		margin-left:91.6666666667%;
	}
	.col-sm-offset-12 {
		margin-left:100%;
	}
}
@media (min-width: 992px) {
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .product-overview .product-summary, .col-md-6, .product-overview .images, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
		float:left;
	}
	.col-md-1 {
		width:8.3333333333%;
	}
	.col-md-2 {
		width:16.6666666667%;
	}
	.col-md-3 {
		width:25%;
	}
	.col-md-4 {
		width:33.3333333333%;
	}
	.col-md-5, .product-overview .product-summary {
		width:41.6666666667%;
	}
	.col-md-6, .product-overview .images {
		width:50%;
	}
	.col-md-7 {
		width:58.3333333333%;
	}
	.col-md-8 {
		width:66.6666666667%;
	}
	.col-md-9 {
		width:75%;
	}
	.col-md-10 {
		width:83.3333333333%;
	}
	.col-md-11 {
		width:91.6666666667%;
	}
	.col-md-12 {
		width:100%;
	}
	.col-md-pull-0 {
		right:auto;
	}
	.col-md-pull-1 {
		right:8.3333333333%;
	}
	.col-md-pull-2 {
		right:16.6666666667%;
	}
	.col-md-pull-3 {
		right:25%;
	}
	.col-md-pull-4 {
		right:33.3333333333%;
	}
	.col-md-pull-5 {
		right:41.6666666667%;
	}
	.col-md-pull-6 {
		right:50%;
	}
	.col-md-pull-7 {
		right:58.3333333333%;
	}
	.col-md-pull-8 {
		right:66.6666666667%;
	}
	.col-md-pull-9 {
		right:75%;
	}
	.col-md-pull-10 {
		right:83.3333333333%;
	}
	.col-md-pull-11 {
		right:91.6666666667%;
	}
	.col-md-pull-12 {
		right:100%;
	}
	.col-md-push-0 {
		left:auto;
	}
	.col-md-push-1 {
		left:8.3333333333%;
	}
	.col-md-push-2 {
		left:16.6666666667%;
	}
	.col-md-push-3 {
		left:25%;
	}
	.col-md-push-4 {
		left:33.3333333333%;
	}
	.col-md-push-5 {
		left:41.6666666667%;
	}
	.col-md-push-6 {
		left:50%;
	}
	.col-md-push-7 {
		left:58.3333333333%;
	}
	.col-md-push-8 {
		left:66.6666666667%;
	}
	.col-md-push-9 {
		left:75%;
	}
	.col-md-push-10 {
		left:83.3333333333%;
	}
	.col-md-push-11 {
		left:91.6666666667%;
	}
	.col-md-push-12 {
		left:100%;
	}
	.col-md-offset-0 {
		margin-left:0;
	}
	.col-md-offset-1, .product-overview .product-summary {
		margin-left:8.3333333333%;
	}
	.col-md-offset-2 {
		margin-left:16.6666666667%;
	}
	.col-md-offset-3 {
		margin-left:25%;
	}
	.col-md-offset-4 {
		margin-left:33.3333333333%;
	}
	.col-md-offset-5 {
		margin-left:41.6666666667%;
	}
	.col-md-offset-6 {
		margin-left:50%;
	}
	.col-md-offset-7 {
		margin-left:58.3333333333%;
	}
	.col-md-offset-8 {
		margin-left:66.6666666667%;
	}
	.col-md-offset-9 {
		margin-left:75%;
	}
	.col-md-offset-10 {
		margin-left:83.3333333333%;
	}
	.col-md-offset-11 {
		margin-left:91.6666666667%;
	}
	.col-md-offset-12 {
		margin-left:100%;
	}
}
@media (min-width: 1200px) {
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
		float:left;
	}
	.col-lg-1 {
		width:8.3333333333%;
	}
	.col-lg-2 {
		width:16.6666666667%;
	}
	.col-lg-3 {
		width:25%;
	}
	.col-lg-4 {
		width:33.3333333333%;
	}
	.col-lg-5 {
		width:41.6666666667%;
	}
	.col-lg-6 {
		width:50%;
	}
	.col-lg-7 {
		width:58.3333333333%;
	}
	.col-lg-8 {
		width:66.6666666667%;
	}
	.col-lg-9 {
		width:75%;
	}
	.col-lg-10 {
		width:83.3333333333%;
	}
	.col-lg-11 {
		width:91.6666666667%;
	}
	.col-lg-12 {
		width:100%;
	}
	.col-lg-pull-0 {
		right:auto;
	}
	.col-lg-pull-1 {
		right:8.3333333333%;
	}
	.col-lg-pull-2 {
		right:16.6666666667%;
	}
	.col-lg-pull-3 {
		right:25%;
	}
	.col-lg-pull-4 {
		right:33.3333333333%;
	}
	.col-lg-pull-5 {
		right:41.6666666667%;
	}
	.col-lg-pull-6 {
		right:50%;
	}
	.col-lg-pull-7 {
		right:58.3333333333%;
	}
	.col-lg-pull-8 {
		right:66.6666666667%;
	}
	.col-lg-pull-9 {
		right:75%;
	}
	.col-lg-pull-10 {
		right:83.3333333333%;
	}
	.col-lg-pull-11 {
		right:91.6666666667%;
	}
	.col-lg-pull-12 {
		right:100%;
	}
	.col-lg-push-0 {
		left:auto;
	}
	.col-lg-push-1 {
		left:8.3333333333%;
	}
	.col-lg-push-2 {
		left:16.6666666667%;
	}
	.col-lg-push-3 {
		left:25%;
	}
	.col-lg-push-4 {
		left:33.3333333333%;
	}
	.col-lg-push-5 {
		left:41.6666666667%;
	}
	.col-lg-push-6 {
		left:50%;
	}
	.col-lg-push-7 {
		left:58.3333333333%;
	}
	.col-lg-push-8 {
		left:66.6666666667%;
	}
	.col-lg-push-9 {
		left:75%;
	}
	.col-lg-push-10 {
		left:83.3333333333%;
	}
	.col-lg-push-11 {
		left:91.6666666667%;
	}
	.col-lg-push-12 {
		left:100%;
	}
	.col-lg-offset-0 {
		margin-left:0;
	}
	.col-lg-offset-1 {
		margin-left:8.3333333333%;
	}
	.col-lg-offset-2 {
		margin-left:16.6666666667%;
	}
	.col-lg-offset-3 {
		margin-left:25%;
	}
	.col-lg-offset-4 {
		margin-left:33.3333333333%;
	}
	.col-lg-offset-5 {
		margin-left:41.6666666667%;
	}
	.col-lg-offset-6 {
		margin-left:50%;
	}
	.col-lg-offset-7 {
		margin-left:58.3333333333%;
	}
	.col-lg-offset-8 {
		margin-left:66.6666666667%;
	}
	.col-lg-offset-9 {
		margin-left:75%;
	}
	.col-lg-offset-10 {
		margin-left:83.3333333333%;
	}
	.col-lg-offset-11 {
		margin-left:91.6666666667%;
	}
	.col-lg-offset-12 {
		margin-left:100%;
	}
}
@-ms-viewport {
	width:device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
	display:none !important;
}
.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
	display:none !important;
}
@media (max-width: 767px) {
	.visible-xs {
		display:block !important;
	}
	table.visible-xs {
		display:table;
	}
	tr.visible-xs {
		display:table-row !important;
	}
	th.visible-xs, td.visible-xs {
		display:table-cell !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-block {
		display:block !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-inline {
		display:inline !important;
	}
}
@media (max-width: 767px) {
	.visible-xs-inline-block {
		display:inline-block !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm {
		display:block !important;
	}
	table.visible-sm {
		display:table;
	}
	tr.visible-sm {
		display:table-row !important;
	}
	th.visible-sm, td.visible-sm {
		display:table-cell !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-block {
		display:block !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline {
		display:inline !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.visible-sm-inline-block {
		display:inline-block !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md {
		display:block !important;
	}
	table.visible-md {
		display:table;
	}
	tr.visible-md {
		display:table-row !important;
	}
	th.visible-md, td.visible-md {
		display:table-cell !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-block {
		display:block !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline {
		display:inline !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.visible-md-inline-block {
		display:inline-block !important;
	}
}
@media (min-width: 1200px) {
	.visible-lg {
		display:block !important;
	}
	table.visible-lg {
		display:table;
	}
	tr.visible-lg {
		display:table-row !important;
	}
	th.visible-lg, td.visible-lg {
		display:table-cell !important;
	}
}
@media (min-width: 1200px) {
	.visible-lg-block {
		display:block !important;
	}
}
@media (min-width: 1200px) {
	.visible-lg-inline {
		display:inline !important;
	}
}
@media (min-width: 1200px) {
	.visible-lg-inline-block {
		display:inline-block !important;
	}
}
@media (max-width: 767px) {
	.hidden-xs {
		display:none !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display:none !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display:none !important;
	}
}
@media (min-width: 1200px) {
	.hidden-lg {
		display:none !important;
	}
}
.visible-print {
	display:none !important;
}
@media print {
	.visible-print {
		display:block !important;
	}
	table.visible-print {
		display:table;
	}
	tr.visible-print {
		display:table-row !important;
	}
	th.visible-print, td.visible-print {
		display:table-cell !important;
	}
}
.visible-print-block {
	display:none !important;
}
@media print {
	.visible-print-block {
		display:block !important;
	}
}
.visible-print-inline {
	display:none !important;
}
@media print {
	.visible-print-inline {
		display:inline !important;
	}
}
.visible-print-inline-block {
	display:none !important;
}
@media print {
	.visible-print-inline-block {
		display:inline-block !important;
	}
}
@media print {
	.hidden-print {
		display:none !important;
	}
}
.equal-height {
	display:table;
	width:100%;
}
.equal-height [class^="col-"] {
	display:table-cell;
	float:none;
}
@media screen and (max-width: 768px) {
	.equal-height [class^="col-sm-"] {
		display:block;
		width:100%;
	}
}
@media screen and (max-width: 992px) {
	.equal-height [class^="col-md-"] {
		display:block;
		width:100%;
	}
}
@media screen and (max-width: 1200px) {
	.equal-height [class^="col-lg-"] {
		display:block;
		width:100%;
	}
}
/* 4. Header */
.site-header {
	position:relative;
	z-index:9999;
	margin-bottom:90px;
	color:white;
	background-color:#000000;
}
@media screen and (max-width: 990px) {
	.site-header {
		display:none;
	}
}
.page-template-fullwidth .site-header {
	margin-bottom:0;
}
.header-collapsed .site-header {
	position:absolute;
	width:100%;
	background-color:transparent;
}
.site-header .mini-cart .product_list_widget a {
	white-space:normal;
}
.site-header--type-1 .header-content-wrap, .site-header--type-5 .header-content-wrap {
	display:table;
	width:100%;
}
.site-header--type-1 .header-content-wrap .branding, .site-header--type-1 .header-content-wrap .left-section, .site-header--type-1 .header-content-wrap .right-section, .site-header--type-5 .header-content-wrap .branding, .site-header--type-5 .header-content-wrap .left-section, .site-header--type-5 .header-content-wrap .right-section {
	display:table-cell;
	float:none;
	vertical-align:middle;
}
.site-header--type-1 .header-content-wrap .branding, .site-header--type-1 .header-content-wrap .right-section, .site-header--type-5 .header-content-wrap .branding, .site-header--type-5 .header-content-wrap .right-section {
	width:1%;
	white-space:nowrap;
}
.site-header--type-1 .header-content-wrap .sidebar-toggle, .site-header--type-5 .header-content-wrap .sidebar-toggle {
	float:none;
}
.site-header--type-2 .mini-cart, .site-header--type-2 .search-form {
	float:right;
}
.site-header--type-2 .cart-toggle {
	padding-top:10px;
	padding-bottom:10px;
}
.site-header--type-2 .sidebar-toggle {
	padding-top:5px;
	padding-bottom:5px;
}
.site-header--type-3 .bottom-header {
	padding:20px 0 10px;
}
.site-header--type-3 .branding {
	border-right:none;
}
.site-header--type-3 .header-banner {
	float:right;
}
.site-header--type-3 .header-banner img, .site-header--type-3 .header-banner iframe {
	display:block;
	width:768px;
	max-width:100%;
}
.site-header--type-3 .left-section {
	clear:both;
	margin-top:20px;
}
.site-header--type-3 .right-section {
	margin-top:20px;
}
.site-header--type-3 .primary-navigation .menu > li:first-child > a {
	padding-left:0;
}
.site-header--type-4 .mini-cart, .site-header--type-4 .search-form {
	float:right;
}
.site-header--type-4 .cart-toggle {
	padding-top:10px;
	padding-bottom:10px;
}
.site-header--type-4 .bottom-header {
	padding:30px 0 10px;
}
.site-header--type-4 .header-content-wrap .branding, .site-header--type-4 .header-content-wrap .left-section {
	display:block;
	float:none;
	margin:0 auto;
}
.site-header--type-4 .header-content-wrap .branding {
	padding:0;
	border-right:none;
	text-align:center;
}
.site-header--type-4 .header-content-wrap .branding .site-title {
	text-align:center;
}
.site-header--type-4 .header-content-wrap .branding img {
	margin:0 auto 10px;
}
.site-header--type-4 .header-content-wrap .left-section {
	text-align:center;
}
.site-header--type-4 .header-content-wrap .left-section .primary-navigation {
	display:inline-block;
}
.site-header--type-5 .top-header .offer-text {
	float:left;
	padding:12px 0;
}
.site-header--type-5 .top-header .secondary-navigation {
	float:right;
	margin-right:20px;
}
@media screen and (max-width: 768px) {
	.site-header .top-header {
		display:none;
	}
	.site-header .bottom-header {
		padding-bottom:20px;
	}
}
.header-content-wrap {
	position:relative;
	*zoom:1;
}
.header-content-wrap:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.header-content-wrap .branding {
	float:left;
}
@media screen and (max-width: 640px) {
	.header-content-wrap .branding {
		float:none;
	}
}
@media screen and (max-width: 1024px) {
	.header-content-wrap .branding {
		padding-right:20px;
	}
}
@media screen and (max-width: 1024px) {
	.header-content-wrap .menu-toggle {
		padding:10px 0;
	}
}
@media screen and (max-width: 480px) {
	.header-content-wrap .menu-toggle span {
		display:none;
	}
}
.header-content-wrap .left-section {
	float:left;
}
@media screen and (max-width: 640px) {
	.header-content-wrap .left-section {
		clear:both;
	}
}
.header-content-wrap .left-section .primary-navigation {
	position:static;
}
.header-content-wrap .right-section {
	float:right;
}
@media screen and (max-width: 990px) {
	.header-content-wrap .right-section {
		padding-right:15px;
	}
}
@media screen and (max-width: 640px) {
	.header-content-wrap .right-section {
		margin-bottom:20px;
	}
}
.top-header {
	position:relative;
	background:#222222;
}
.top-header .secondary-navigation {
	float:left;
}
.top-header .secondary-navigation .menu {
	display:inline-block;
	margin:0;
}
.top-header .secondary-navigation .menu li {
	display:inline-block;
}
.top-header .secondary-navigation .menu li:first-child a {
	padding-left:0;
}
.top-header .secondary-navigation .menu li a {
	display:block;
	color:#fafafa;
}
.top-header .secondary-navigation a {
	display:inline-block;
	padding:15px 20px;
	font-size:11px;
	font-size:0.8461538462em;
	font-weight:400;
	vertical-align:middle;
	text-transform:uppercase;
}
.top-header .social-links {
	float:right;
	text-align:center;
}
@media screen and (max-width: 480px) {
	.top-header .social-links {
		display:none;
	}
}
.top-header .social-links a {
	padding:15px;
	color:white;
}
.top-header .sidebar-toggle {
	padding:7px 0 0 15px;
}
.bottom-header {
	position:relative;
	z-index:1;
	padding:40px 0;
	background-size:cover;
	-webkit-transition:padding 0.3s ease;
	-o-transition:padding 0.3s ease;
	transition:padding 0.3s ease;
}
.bottom-header:after {
	position:absolute;
	z-index:-2;
	top:0;
	bottom:0;
	left:0;
	width:100%;
	background:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(transparent));
	background:-o-linear-gradient(rgba(0, 0, 0, 0.3), transparent);
	background:linear-gradient(rgba(0, 0, 0, 0.3), transparent);
	content:" ";
}
@media screen and (min-width: 991px) {
	.has-sticky-header .bottom-header {
		-webkit-transition:0.3s ease;
		-o-transition:0.3s ease;
		transition:0.3s ease;
	}
	.has-sticky-header .bottom-header.sticked {
		position:fixed;
		top:0;
		width:100%;
		background-color:#000000;
	}
	.has-sticky-header .bottom-header.shrinked {
		padding:15px;
	}
	.has-sticky-header.admin-bar .bottom-header.sticked {
		top:32px;
	}
}
.has-sticky-header.header-collapsed .bottom-header:after {
	opacity:0;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.has-sticky-header.header-collapsed .bottom-header.sticked:after {
	opacity:1;
}
.branding {
	display:block;
	margin-right:30px;
	padding:10px 40px 10px 0;
}
@media screen and (max-width: 1024px) {
	.branding {
		margin-right:0;
		margin-bottom:20px;
		padding-right:0;
		text-align:center;
	}
	.branding img {
		display:block;
		margin:0 auto;
	}
}
.branding .site-title {
	margin:0;
	font-size:2em;
	text-align:left;
	text-transform:uppercase;
}
.branding .site-title a {
	display:block;
}
.branding .site-title a img {
	display:block;
}
.primary-navigation {
	position:static;
	padding-top:5px;
}
.cart-toggle, .sidebar-toggle {
	padding:0 10px;
	border:none;
	-webkit-border-radius:0;
	border-radius:0;
	outline:none;
	color:inherit;
	background-color:transparent;
}
.cart-toggle *, .sidebar-toggle * {
	vertical-align:middle;
}
.cart-toggle:hover, .sidebar-toggle:hover {
	background:none;
}
.cart-toggle i[class*="icon"] {
	display:inline-block;
	color:#ecad25;
	font-size:26px;
	font-size:2em;
	vertical-align:middle;
}
.sidebar-toggle {
	float:right;
	padding:7px 0 20px 20px;
	font-size:22px;
	font-size:1.6923076923em;
}
.search-form {
	display:inline-block;
	position:relative;
}
.search-form__toggle {
	display:inline-block;
	padding-right:10px !important;
	padding-left:10px !important;
	color:#ecad25;
	background:none;
	vertical-align:middle;
}
.search-form__toggle i.simple-icon-magnifier {
	font-size:24px;
	font-size:1.8461538462em;
}
.search-form__toggle:hover {
	background:none;
}
.search-form .overlay {
	visibility:hidden;
	position:fixed;
	z-index:9999;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0;
	background:white;
	-webkit-transition:0.3s ease-in;
	-o-transition:0.3s ease-in;
	transition:0.3s ease-in;
}
.search-form.active .overlay {
	visibility:visible;
	opacity:1;
}
.search-form__box {
	visibility:hidden;
	position:fixed;
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	-webkit-transition:0.2s ease-out;
	-o-transition:0.2s ease-out;
	transition:0.2s ease-out;
}
.admin-bar .search-form__box {
	top:32px;
}
.search-form__box .close {
	position:absolute;
	top:20px;
	right:20px;
	outline:none;
	color:#000000;
	font-size:36px;
	font-size:2.7692307692em;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.search-form__box .close:hover {
	color:#ecad25;
}
.search-form__box form {
	position:absolute;
	top:50%;
	right:0;
	left:0;
	width:768px;
	max-width:100%;
	margin:auto;
	padding:0 30px;
	opacity:0;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
	-webkit-transition-delay:0.4s;
	-o-transition-delay:0.4s;
	transition-delay:0.4s;
	-webkit-transform:translateY(0);
	-ms-transform:translateY(0);
	-o-transform:translateY(0);
	transform:translateY(0);
}
.search-form__box input, .search-form__box span {
	display:block;
}
.search-form__box input {
	max-width:100%;
	margin-bottom:10px;
	border:none !important;
	border-bottom:2px solid #c1c1c1 !important;
	font-size:64px;
	font-size:4.9230769231em;
	font-weight:300;
	letter-spacing:-1px;
}
.search-form__box span {
	color:#848484;
	font-style:italic;
}
.search-form.active .search-form__box {
	visibility:visible;
	z-index:999999;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	-o-transform:translateX(0);
	transform:translateX(0);
}
.search-form.active .search-form__box form {
	opacity:1;
	-webkit-transition-delay:0;
	-o-transition-delay:0;
	transition-delay:0;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.user-menu {
	display:inline-block;
	float:right;
	position:relative;
}
.user-menu__toggle {
	padding:17px 0 14px 15px;
	color:white;
	background-color:transparent;
	vertical-align:middle;
}
.user-menu__toggle .simple-icon-user {
	color:#ecad25;
	font-size:16px;
	font-size:1.2307692308em;
}
.user-menu__toggle:hover {
	background-color:transparent;
}
.user-menu__box {
	position:absolute;
	z-index:2;
	top:100%;
	right:0;
	opacity:0;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
	-webkit-transform:scale(0);
	-ms-transform:scale(0);
	-o-transform:scale(0);
	transform:scale(0);
	-webkit-transform-origin:100% 0;
	-ms-transform-origin:100% 0;
	-o-transform-origin:100% 0;
	transform-origin:100% 0;
}
.user-menu.active .user-menu__box, .user-menu:hover .user-menu__box {
	opacity:1;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.user-menu__list {
	margin:0;
	padding:20px 0;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:white;
	-webkit-box-shadow:0 2px 10px rgba(0, 0, 0, 0.1);
	box-shadow:0 2px 10px rgba(0, 0, 0, 0.1);
	list-style:none;
}
.user-menu__list a {
	display:block;
	padding:10px 30px;
	color:#848484;
	white-space:nowrap;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.user-menu__list a .fa, .user-menu__list a [class*="ico"] {
	display:inline-block;
	width:16px;
	margin-right:5px;
	vertical-align:middle;
}
.user-menu__list a:hover {
	color:white;
	background-color:#ecad25;
}
.user-menu__list ul {
	list-style:none;
}
.mobile-header {
	position:relative;
	margin-bottom:30px;
	padding:15px 0;
	background-color:#000000;
	*zoom:1;
}
.mobile-header:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
@media screen and (min-width: 991px) {
	.mobile-header {
		display:none !important;
	}
}
.mobile-header .mobile-navigation {
	display:block;
}
.mobile-header-wrap {
	display:table;
	width:100%;
}
.mobile-header-wrap .branding, .mobile-header-wrap .right-section {
	display:table-cell;
	padding:0 15px;
	vertical-align:middle;
}
.mobile-header-wrap .branding {
	width:100%;
}
.mobile-header-wrap .branding .site-title {
	line-height:1;
}
.mobile-header-wrap .right-section {
	width:1%;
	white-space:nowrap;
}
.mobile-header .mini-cart {
	position:static;
}
.mobile-header .mini-cart .widget_shopping_cart {
	display:none;
	left:0;
	width:100%;
	-webkit-transform:scale(0);
	-ms-transform:scale(0);
	-o-transform:scale(0);
	transform:scale(0);
}
.mobile-header .mini-cart .widget_shopping_cart .product_list_widget a {
	white-space:normal;
}
.mobile-header .mini-cart.active .widget_shopping_cart {
	display:block;
}
.mobile-header .mobile-header-navigation {
	display:none;
	clear:both;
	width:100%;
	padding:15px;
}
@media screen and (max-width: 480px) {
	.mobile-header .mobile-header-navigation-toggle span {
		display:none;
	}
}
.mobile-header .mobile-search {
	margin-bottom:15px;
}
.mobile-header .mobile-search input {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	max-width:100%;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:white;
}
.mobile-header .mobile-navigation {
	padding-bottom:15px;
}
.mobile-header .account-navigation .user-menu {
	display:block;
	float:none;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:white;
}
.mobile-header .account-navigation .user-menu__toggle {
	float:none;
	width:100%;
	padding:10px 15px;
	border-bottom:1px solid #e3e3e3;
	color:#222222;
}
.mobile-header .account-navigation .user-menu__toggle i {
	margin-right:15px;
}
.mobile-header .account-navigation .user-menu__box {
	display:none;
	position:relative;
	opacity:1;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.mobile-header .account-navigation .user-menu__list {
	padding:0;
	-webkit-box-shadow:none;
	box-shadow:none;
}
.mobile-header .account-navigation .user-menu__list li:not(:last-child) {
	border-bottom:1px solid #e3e3e3;
}
.mobile-header .account-navigation .user-menu__list a {
	padding-right:15px;
	padding-left:15px;
	color:#222222;
}
/* 4.1 Dropdown Menu */
.primary-navigation {
	position:relative;
	z-index:9;
}
.primary-navigation .menu {
	margin:0;
	padding:0;
	text-align:left;
	list-style:none;
}
@media screen and (max-width: 990px) {
	.primary-navigation .menu {
		display:none;
	}
}
.primary-navigation .menu > .menu-item.menu-item-has-children > a:after {
	display:inline-block;
	margin-left:10px;
	font-family:"FontAwesome";
	vertical-align:middle;
	content:"\f107";
}
.primary-navigation .menu > .page_item.page_item_has_children > a:after {
	display:inline-block;
	margin-left:10px;
	font-family:"FontAwesome";
	vertical-align:middle;
	content:"\f107";
}
.primary-navigation .menu > ul {
	margin:0;
}
.primary-navigation .menu > ul > .page_item {
	display:inline-block;
}
.primary-navigation .menu > ul > .page_item.page_item_has_children > a:after {
	display:inline-block;
	margin-left:10px;
	font-family:"FontAwesome";
	vertical-align:middle;
	content:"\f107";
}
.primary-navigation .menu-item, .primary-navigation .page_item {
	display:block;
	float:left;
	position:relative;
}
.primary-navigation .menu-item:hover > .sub-menu, .primary-navigation .menu-item:hover > .children, .primary-navigation .page_item:hover > .sub-menu, .primary-navigation .page_item:hover > .children {
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.primary-navigation .menu-item a, .primary-navigation .page_item a {
	display:block;
	padding:10px 15px;
	color:white;
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:400;
	white-space:nowrap;
	text-decoration:none;
	letter-spacing:1px;
	text-transform:uppercase;
}
.primary-navigation .menu-item a [class*="ico"], .primary-navigation .page_item a [class*="ico"] {
	display:inline-block;
	margin-right:5px;
	color:#888888;
}
.primary-navigation .menu-item.mega-menu:hover > .sub-menu, .primary-navigation .page_item.mega-menu:hover > .sub-menu {
	display:none;
}
.primary-navigation .menu-item.mega-menu > .sub-menu, .primary-navigation .page_item.mega-menu > .sub-menu {
	display:none;
	padding:20px;
	table-layout:fixed;
	background-repeat:no-repeat;
	background-position:bottom right;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image {
	padding-right:200px;
	background-size:contain;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.top-left, .primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.bottom-left, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.top-left, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.bottom-left {
	padding-left:200px;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.top-left, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.top-left {
	background-position:top left;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.top-right, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.top-right {
	background-position:top right;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.top-right, .primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.bottom-right, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.top-right, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.bottom-right {
	padding-right:200px;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.bottom-left, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.bottom-left {
	background-position:bottom left;
}
.primary-navigation .menu-item.mega-menu > .sub-menu.with_bg_image.bottom-right, .primary-navigation .page_item.mega-menu > .sub-menu.with_bg_image.bottom-right {
	background-position:bottom right;
}
.primary-navigation .menu-item.mega-menu > .sub-menu > .menu-item, .primary-navigation .page_item.mega-menu > .sub-menu > .menu-item {
	display:table-cell;
	min-width:150px;
	padding:10px;
	border-bottom:none !important;
}
.primary-navigation .menu-item.mega-menu > .sub-menu .menu-item:hover > a, .primary-navigation .page_item.mega-menu > .sub-menu .menu-item:hover > a {
	color:#ecad25;
	background-color:transparent;
}
.primary-navigation .menu-item.mega-menu > .sub-menu .menu-item a, .primary-navigation .page_item.mega-menu > .sub-menu .menu-item a {
	padding:5px 0;
	color:#848484;
	line-height:1.7;
	white-space:normal;
}
.primary-navigation .menu-item.mega-menu > .sub-menu .menu-item-has-children > a, .primary-navigation .page_item.mega-menu > .sub-menu .menu-item-has-children > a {
	position:relative;
	margin-bottom:10px;
	padding:0 0 10px;
	color:#000000;
	text-transform:uppercase;
}
.primary-navigation .menu-item.mega-menu > .sub-menu .menu-item-has-children > a:after, .primary-navigation .page_item.mega-menu > .sub-menu .menu-item-has-children > a:after {
	position:absolute;
	bottom:0;
	left:0;
	width:30px;
	height:1px;
	background-color:#ecad25;
	content:" ";
}
.primary-navigation .menu-item.mega-menu > .sub-menu .sub-menu, .primary-navigation .page_item.mega-menu > .sub-menu .sub-menu {
	display:block !important;
	position:relative;
	top:0;
	left:0;
	padding:0;
	opacity:1 !important;
	background-color:transparent;
	-webkit-box-shadow:none;
	box-shadow:none;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.primary-navigation .menu-item.mega-menu > .sub-menu .sub-menu .menu-item-has-children, .primary-navigation .page_item.mega-menu > .sub-menu .sub-menu .menu-item-has-children {
	margin-top:10px;
}
.primary-navigation .menu-item.mega-menu.mega-fullwidth, .primary-navigation .page_item.mega-menu.mega-fullwidth {
	position:static;
}
.primary-navigation .menu-item.mega-menu.mega-fullwidth > .sub-menu, .primary-navigation .page_item.mega-menu.mega-fullwidth > .sub-menu {
	right:0;
	left:0;
	width:100%;
	max-width:100%;
}
.primary-navigation .menu-item.mega-menu.mega-fullwidth > .sub-menu > .menu-item, .primary-navigation .page_item.mega-menu.mega-fullwidth > .sub-menu > .menu-item {
	min-width:100px;
}
.primary-navigation .sub-menu, .primary-navigation .children {
	position:absolute;
	left:0;
	margin:0;
	padding:20px 0;
	background-color:white;
	-webkit-box-shadow:0 0 3px rgba(0, 0, 0, 0.1);
	box-shadow:0 0 3px rgba(0, 0, 0, 0.1);
	text-align:left;
	list-style:none;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
	-webkit-transform:scale(0);
	-ms-transform:scale(0);
	-o-transform:scale(0);
	transform:scale(0);
	-webkit-transform-origin:50% 0;
	-ms-transform-origin:50% 0;
	-o-transform-origin:50% 0;
	transform-origin:50% 0;
}
.primary-navigation .sub-menu .menu-item, .primary-navigation .sub-menu .page_item, .primary-navigation .children .menu-item, .primary-navigation .children .page_item {
	float:none;
}
.primary-navigation .sub-menu .menu-item a, .primary-navigation .sub-menu .page_item a, .primary-navigation .children .menu-item a, .primary-navigation .children .page_item a {
	padding:10px 30px;
	color:#848484;
	font-size:12px;
	font-size:0.9230769231em;
}
.primary-navigation .sub-menu .menu-item:hover > a, .primary-navigation .sub-menu .page_item:hover > a, .primary-navigation .children .menu-item:hover > a, .primary-navigation .children .page_item:hover > a {
	color:white;
	background-color:#ecad25;
}
.primary-navigation .sub-menu .sub-menu, .primary-navigation .sub-menu .children, .primary-navigation .children .sub-menu, .primary-navigation .children .children {
	top:-20px;
	left:100%;
	-webkit-transform-origin:0 0;
	-ms-transform-origin:0 0;
	-o-transform-origin:0 0;
	transform-origin:0 0;
}
/* Mobile Navigation */
.menu-toggle {
	display:none;
	padding:20px 10px;
	border:none;
	outline:none;
	color:white;
	background:transparent;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	text-align:center;
	letter-spacing:2px;
	text-transform:uppercase;
}
.menu-toggle:hover {
	background-color:transparent;
}
.menu-toggle .fa {
	margin-right:20px;
	font-size:18px;
	font-size:1.3846153846em;
	vertical-align:middle;
}
@media screen and (min-width: 991px) {
	.menu-toggle {
		display:none !important;
	}
}
@media screen and (max-width: 990px) {
	.menu-toggle {
		display:inline-block;
	}
}
/* Mobile Accordion Menu style */
.mobile-navigation {
	display:none;
	clear:both;
	z-index:9;
	padding-bottom:30px;
	color:#000000;
}
.mobile-navigation > .menu {
	-webkit-border-radius:3px;
	border-radius:3px;
}
.mobile-navigation .menu, .mobile-navigation .menu > ul {
	margin:0;
	padding-left:0;
	border:1px solid #dcd0c7;
	background:white;
	list-style:none;
}
.mobile-navigation .menu .sub-menu, .mobile-navigation .menu .children, .mobile-navigation .menu > ul .sub-menu, .mobile-navigation .menu > ul .children {
	display:none;
	position:relative;
	padding-left:20px;
	border-top:1px solid #dcd0c7;
	background-image:none !important;
	list-style:none;
}
.mobile-navigation .menu .sub-menu .menu-item, .mobile-navigation .menu .sub-menu .page_item, .mobile-navigation .menu .children .menu-item, .mobile-navigation .menu .children .page_item, .mobile-navigation .menu > ul .sub-menu .menu-item, .mobile-navigation .menu > ul .sub-menu .page_item, .mobile-navigation .menu > ul .children .menu-item, .mobile-navigation .menu > ul .children .page_item {
	border-left:1px dashed #dcd0c7;
}
.mobile-navigation .menu-item, .mobile-navigation .page_item {
	position:relative;
}
.mobile-navigation .menu-item:not(:last-child), .mobile-navigation .page_item:not(:last-child) {
	border-bottom:1px solid #dcd0c7;
}
.mobile-navigation .menu-item a, .mobile-navigation .page_item a {
	display:block;
	padding:15px 20px;
	color:inherit;
	font-size:13px;
	font-size:1em;
	font-weight:600;
	line-height:1.5;
}
.mobile-navigation .menu-item a:hover, .mobile-navigation .page_item a:hover {
	color:#ecad25;
}
.mobile-navigation .menu-item.current-menu-item > a, .mobile-navigation .page_item.current-menu-item > a {
	color:#ecad25;
}
.mobile-navigation .menu-item-has-children, .mobile-navigation .page_item_has_children {
	position:relative;
}
.mobile-navigation .menu-item-has-children > button, .mobile-navigation .page_item_has_children > button {
	position:absolute;
	top:0;
	right:0;
	width:50px;
	padding:15px 25px 13px 20px;
	border:none;
	border-left:1px solid #dcd0c7;
	-webkit-border-radius:0;
	border-radius:0;
	outline:none;
	color:#000000;
	background:white;
	font-family:"FontAwesome";
	font-size:18px;
	font-size:1.3846153846em;
	line-height:1.1;
	text-align:center;
	cursor:pointer;
}
.mobile-navigation .menu-item-has-children.active:after, .mobile-navigation .page_item_has_children.active:after {
	content:"\f106";
}
/* 5. Content Wide Style */
/* 5.1 Wordpress Default Classes */
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-right:auto;
	margin-left:auto;
}
.wp-caption {
	max-width:96%;
	padding:5px 3px 10px;
	border:1px solid #f0f0f0;
	background:#ffffff;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	width:auto;
	max-width:98.5%;
	height:auto;
	margin:0;
	padding:0;
	border:0 none;
}
.wp-caption p.wp-caption-text {
	margin:0;
	padding:0 4px 5px;
	font-size:11px;
	line-height:17px;
}
.gallery {
	margin-bottom:30px;
	*zoom:1;
}
.gallery:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.gallery-item {
	float:left;
	position:relative;
}
.gallery-item img {
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
}
.gallery-item:hover .gallery-caption {
	display:block;
	z-index:1;
	bottom:0;
	opacity:1;
}
.gallery .gallery-caption {
	display:none;
	position:absolute;
	bottom:-100%;
	left:0;
	max-width:300px;
	padding:10px;
	opacity:0;
	color:white;
	background:rgba(0, 0, 0, 0.8);
	font-size:12px;
	font-size:0.9230769231em;
	font-style:italic;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.gallery.gallery-columns-2 .gallery-item {
	width:50%;
}
.gallery.gallery-columns-2 .gallery-item:nth-child(2n+1) {
	clear:both;
}
.gallery.gallery-columns-3 .gallery-item {
	width:33.3333%;
}
.gallery.gallery-columns-3 .gallery-item:nth-child(3n+1) {
	clear:both;
}
.gallery.gallery-columns-4 .gallery-item {
	width:25%;
}
.gallery.gallery-columns-4 .gallery-item:nth-child(4n+1) {
	clear:both;
}
.gallery.gallery-columns-5 .gallery-item {
	width:20%;
}
.gallery.gallery-columns-5 .gallery-item:nth-child(5n+1) {
	clear:both;
}
.gallery.gallery-columns-6 .gallery-item {
	width:16.6667%;
}
.gallery.gallery-columns-6 .gallery-item:nth-child(6n+1) {
	clear:both;
}
.gallery.gallery-columns-7 .gallery-item {
	width:14.2857%;
}
.gallery.gallery-columns-7 .gallery-item:nth-child(7n+1) {
	clear:both;
}
.gallery.gallery-columns-8 .gallery-item {
	width:12.5%;
}
.gallery.gallery-columns-8 .gallery-item:nth-child(8n+1) {
	clear:both;
}
.gallery.gallery-columns-9 .gallery-item {
	width:11.1111%;
}
.gallery.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear:both;
}
.gallery.gallery-columns-10 .gallery-item {
	width:10%;
}
.gallery.gallery-columns-10 .gallery-item:nth-child(1n+1) {
	clear:both;
}
/* 5.2 Post */
.posts-holder {
	*zoom:1;
}
.posts-holder:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.posts-holder.minimal-layout {
	max-width:820px;
	margin:0 auto;
}
body.single-post .main-content .container {
	max-width:820px;
	margin:0 auto;
}
.type-post, .type-page {
	margin-bottom:100px;
}
.type-post .inner-post, .type-page .inner-post {
	*zoom:1;
}
.type-post .inner-post:after, .type-page .inner-post:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.minimal-layout .type-post, .minimal-layout .type-page {
	text-align:left;
}
.type-post.sticky, .type-page.sticky {
	padding:30px 30px 80px;
	border:2px solid #ecad24;
}
@media screen and (max-width: 480px) {
	.type-post.sticky, .type-page.sticky {
		padding:15px 15px 70px;
	}
}
.type-post.sticky .entry-excerpt, .type-page.sticky .entry-excerpt {
	padding:0;
}
.type-post .entry-meta, .type-page .entry-meta {
	margin-bottom:30px;
	color:#888888;
	font-size:11px;
	font-size:0.8461538462em;
	font-weight:400;
	text-align:center;
	letter-spacing:2px;
	text-transform:uppercase;
}
.type-post .entry-meta a, .type-page .entry-meta a {
	color:#888888;
}
.type-post .entry-meta .date, .type-page .entry-meta .date {
	letter-spacing:1px;
}
.type-post .entry-title, .type-page .entry-title {
	margin:20px 0;
	padding:10px 0;
	font-size:3em;
	font-weight:400;
	line-height:1;
	letter-spacing:0;
	text-transform:initial;
	word-break:break-word;
}
.type-post .entry-title a, .type-page .entry-title a {
	color:#333333;
}
.type-post .status-media, .type-page .status-media {
	position:relative;
	z-index:1;
	margin-bottom:30px;
	padding:50px;
	background-size:cover;
	text-align:center;
}
.type-post .status-media:after, .type-page .status-media:after {
	position:absolute;
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.3);
	content:" ";
}
.type-post .status-media blockquote p, .type-page .status-media blockquote p {
	color:white;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:24px;
	font-size:1.8461538462em;
	font-weight:300;
}
.type-post .status-media iframe, .type-page .status-media iframe {
	margin:0 auto;
}
.type-post .featured-image, .type-page .featured-image {
	margin-bottom:30px;
}
.type-post .featured-image img, .type-page .featured-image img {
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
}
.type-post .featured-image.gallery-slider, .type-page .featured-image.gallery-slider {
	overflow:hidden;
	position:relative;
	padding-bottom:30px;
}
.type-post .featured-image.gallery-slider .slides, .type-page .featured-image.gallery-slider .slides {
	width:2000%;
	margin:0;
	list-style:none;
	*zoom:1;
}
.type-post .featured-image.gallery-slider .slides:after, .type-page .featured-image.gallery-slider .slides:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.type-post .featured-image.gallery-slider .slides li, .type-page .featured-image.gallery-slider .slides li {
	float:left;
}
.type-post .featured-image.gallery-slider .flex-direction-nav, .type-page .featured-image.gallery-slider .flex-direction-nav {
	margin:0;
	letter-spacing:none;
}
.type-post .featured-image.gallery-slider .flex-direction-nav li, .type-page .featured-image.gallery-slider .flex-direction-nav li {
	line-height:0;
}
.type-post .featured-image.gallery-slider .flex-direction-nav .flex-prev, .type-post .featured-image.gallery-slider .flex-direction-nav .flex-next, .type-page .featured-image.gallery-slider .flex-direction-nav .flex-prev, .type-page .featured-image.gallery-slider .flex-direction-nav .flex-next {
	position:absolute;
	top:0;
	bottom:50px;
	width:50px;
	height:50px;
	margin:auto;
	color:#333333;
	background-color:rgba(255, 255, 255, 0.7);
	font-size:24px;
	font-size:1.8461538462em;
	line-height:2;
	text-align:center;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.type-post .featured-image.gallery-slider .flex-direction-nav .flex-prev, .type-page .featured-image.gallery-slider .flex-direction-nav .flex-prev {
	left:0;
	-webkit-transform:translate3d(-100%, 0, 0);
	transform:translate3d(-100%, 0, 0);
}
.type-post .featured-image.gallery-slider .flex-direction-nav .flex-next, .type-page .featured-image.gallery-slider .flex-direction-nav .flex-next {
	right:0;
	-webkit-transform:translate3d(100%, 0, 0);
	transform:translate3d(100%, 0, 0);
}
.type-post .featured-image.gallery-slider:hover .flex-next, .type-post .featured-image.gallery-slider:hover .flex-prev, .type-page .featured-image.gallery-slider:hover .flex-next, .type-page .featured-image.gallery-slider:hover .flex-prev {
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
}
.type-post .featured-image.gallery-slider .flex-control-nav, .type-page .featured-image.gallery-slider .flex-control-nav {
	position:absolute;
	bottom:0;
	width:100%;
	margin:0;
	text-align:center;
	list-style:none;
}
.type-post .featured-image.gallery-slider .flex-control-nav li, .type-page .featured-image.gallery-slider .flex-control-nav li {
	display:inline-block;
	margin:0 5px;
}
.type-post .featured-image.gallery-slider .flex-control-nav li a, .type-page .featured-image.gallery-slider .flex-control-nav li a {
	display:block;
	overflow:hidden;
	width:5px;
	height:5px;
	-webkit-border-radius:50%;
	border-radius:50%;
	background-color:rgba(0, 0, 0, 0.4);
	text-indent:-99999px;
	cursor:pointer;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.type-post .featured-image.gallery-slider .flex-control-nav li a.flex-active, .type-page .featured-image.gallery-slider .flex-control-nav li a.flex-active {
	background-color:#ecad25;
}
.type-post .featured-image.media-wrap iframe, .type-page .featured-image.media-wrap iframe {
	display:block;
	max-width:100%;
}
.type-post .entry-excerpt, .type-page .entry-excerpt {
	margin-bottom:40px;
	padding:0 50px;
	font-size:16px;
	font-size:1.2307692308em;
	line-height:1.8;
	text-align:center;
	word-break:break-word;
}
@media screen and (max-width: 480px) {
	.type-post .entry-excerpt, .type-page .entry-excerpt {
		padding:0 15px;
	}
}
.type-post .more-link, .type-page .more-link {
	display:inline-block;
	display:block;
	max-width:230px;
	margin:-20px auto;
	padding:10px 20px;
	border-bottom:1px solid #ecad25;
	color:#000000;
	font-size:13px;
	font-size:1em;
	font-weight:700;
	text-align:center;
	letter-spacing:2px;
	text-transform:uppercase;
}
.masonry-layout .type-post, .masonry-layout .type-page {
	float:left;
	width:33.3333%;
	margin-bottom:30px;
	padding:0 15px;
}
@media screen and (max-width: 990px) {
	.masonry-layout .type-post, .masonry-layout .type-page {
		width:50%;
	}
}
@media screen and (max-width: 640px) {
	.masonry-layout .type-post, .masonry-layout .type-page {
		width:100%;
	}
}
.masonry-layout .type-post .inner-post, .masonry-layout .type-page .inner-post {
	padding-bottom:50px;
	-webkit-border-radius:2px;
	border-radius:2px;
	background-color:#ffffff;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.masonry-layout .type-post .inner-post:hover, .masonry-layout .type-page .inner-post:hover {
	-webkit-box-shadow:0 2px 10px rgba(0, 0, 0, 0.1);
	box-shadow:0 2px 10px rgba(0, 0, 0, 0.1);
}
.masonry-layout .type-post .entry-meta, .masonry-layout .type-page .entry-meta {
	color:#888888;
	font-size:11px;
	font-size:0.8461538462em;
	font-weight:400;
}
.masonry-layout .type-post .entry-title, .masonry-layout .type-page .entry-title {
	margin:10px 10px 5px 10px;
	padding:0 10px;
	font-size:16px;
	font-size:1.2307692308rem;
	word-break:break-word;
}
.masonry-layout .type-post .featured-image, .masonry-layout .type-page .featured-image {
	overflow:hidden;
}
.masonry-layout .type-post .entry-excerpt, .masonry-layout .type-page .entry-excerpt {
	overflow:hidden;
	position:relative;
	max-height:95px;
	padding:0 40px;
	font-size:inherit;
}
.masonry-layout .type-post .more-link, .masonry-layout .type-page .more-link {
	display:block;
	max-width:230px;
	margin:-20px auto;
	margin-top:-20px;
	padding:5px 5px;
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:400;
	text-align:center;
	letter-spacing:1px;
}
.type-post .entry-details, .type-page .entry-details {
	padding:0 50px;
	text-align:left;
}
@media screen and (max-width: 480px) {
	.type-post .entry-details, .type-page .entry-details {
		padding:0 10px;
	}
}
.posts-holder--classic .type-post .entry-title {
	margin:0;
}
.masonry-layout {
	position:relative;
}
.masonry-layout:before {
	position:absolute;
	top:0;
	right:0;
	left:0;
	width:64px;
	height:64px;
	margin:auto;
	background:url(../img/loader.gif) no-repeat;
	content:" ";
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.masonry-layout .type-post {
	opacity:0;
	-webkit-transition:opacity 0.3s ease;
	-o-transition:opacity 0.3s ease;
	transition:opacity 0.3s ease;
}
.masonry-layout .type-post.sticky {
	border:none;
}
.masonry-layout .type-post.sticky .inner-post {
	padding:15px 15px 40px;
	border:2px solid #ecad25;
}
.masonry-layout .type-post .inner-post {
	padding:15px;
}
.masonry-layout .type-post .entry-excerpt {
	margin-bottom:20px;
	padding:0;
}
.masonry-layout .type-post .more-link {
	margin:0 auto;
}
.masonry-layout.loaded:before {
	opacity:0;
}
.masonry-layout.loaded .type-post {
	opacity:1;
}
.post-navigation {
	overflow:hidden;
	position:relative;
	margin:80px 0;
	padding:50px 0;
}
.post-navigation:before, .post-navigation:after {
	position:absolute;
	left:0;
	width:50px;
	height:1px;
	background-color:#ecad25;
	content:" ";
}
.post-navigation:before {
	top:0;
}
.post-navigation:after {
	bottom:0;
}
.post-navigation .prev-post, .post-navigation .next-post {
	position:relative;
	width:50%;
	padding:0 30px;
	color:#000000;
}
.post-navigation .prev-post:hover, .post-navigation .next-post:hover {
	color:#ecad25;
}
@media screen and (max-width: 640px) {
	.post-navigation .prev-post, .post-navigation .next-post {
		float:none;
		width:100%;
	}
}
.post-navigation .prev-post .fa, .post-navigation .next-post .fa {
	position:absolute;
	top:0;
	color:#ecad25;
	font-size:24px;
	font-size:1.8461538462em;
}
.post-navigation .prev-post h3, .post-navigation .next-post h3 {
	margin:0;
	font-size:16px;
	font-size:1.2307692308em;
	letter-spacing:1px;
	text-transform:uppercase;
}
.post-navigation .prev-post small, .post-navigation .next-post small {
	color:#c1c1c1;
	font-size:12px;
	font-size:0.9230769231em;
}
.post-navigation .prev-post {
	float:left;
}
.post-navigation .prev-post .fa {
	left:0;
}
@media screen and (max-width: 640px) {
	.post-navigation .prev-post {
		margin-bottom:30px;
		padding-bottom:30px;
		border-bottom:1px solid #c1c1c1;
	}
}
.post-navigation .next-post {
	float:right;
	text-align:right;
}
.post-navigation .next-post .fa {
	right:0;
}
.posts-navigation .pagination {
	padding:50px 0;
	border-top:1px solid #efefef !important;
	text-align:center;
}
.posts-navigation .page-numbers {
	display:inline-block;
	position:relative;
	padding:0 10px;
	color:#848484;
}
.posts-navigation .page-numbers.current {
	color:#c1c1c1;
}
.posts-navigation .prev, .posts-navigation .next {
	padding:5px 0;
	border-bottom:1px solid #ecad25;
	color:#000000;
	background-color:transparent !important;
	font-size:13px;
	font-size:1em;
	font-weight:700;
	text-transform:uppercase;
}
.posts-navigation .prev {
	float:left;
}
.posts-navigation .next {
	float:right;
}
.article-paging {
	padding:30px 0;
}
.article-paging strong {
	margin-right:10px;
}
.article-paging a {
	padding:0 10px;
}
.comments-area {
	padding:0 50px;
	*zoom:1;
}
.comments-area:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
@media screen and (max-width: 640px) {
	.comments-area {
		padding:0 10px;
	}
}
.comment-respond {
	*zoom:1;
}
.comment-respond:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.comment-reply-title, .comments-title {
	position:relative;
	margin-bottom:50px;
	padding-bottom:20px;
	color:#c1c1c1;
	font-size:21px;
	font-size:1.6153846154em;
	font-weight:300;
}
.comment-reply-title:after, .comments-title:after {
	position:absolute;
	bottom:0;
	left:0;
	width:45px;
	height:5px;
	background:url(../img/separator.png) no-repeat;
	content:" ";
}
.comment-list, .commentlist {
	margin-left:0 !important;
	list-style:none;
}
.comment-list .comment-respond .comment-reply-title, .comment-list .comment-respond .comment-form, .commentlist .comment-respond .comment-reply-title, .commentlist .comment-respond .comment-form {
	float:none;
	width:100%;
}
.comment {
	position:relative;
}
.comment .comment-body {
	overflow:hidden;
	position:relative;
	min-height:100px;
	margin-bottom:30px;
	padding-bottom:30px;
}
.comment .comment-body:after {
	position:absolute;
	right:0;
	bottom:0;
	width:100%;
	height:1px;
	background-color:#c1c1c1;
	content:" ";
}
.comment .comment-meta {
	position:relative;
	min-height:80px;
	padding-left:80px;
}
@media screen and (max-width: 990px) {
	.comment .comment-meta {
		width:100%;
		min-height:70px;
		margin-bottom:30px;
	}
}
.comment .comment-meta img {
	position:absolute;
	top:0;
	left:0;
	width:64px;
	height:64px;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.comment.bypostauthor .comment-meta img {
	border:2px solid #ecad25;
}
.comment .comment-content {
	position:relative;
	width:100%;
	margin-bottom:0;
}
@media screen and (max-width: 990px) {
	.comment .comment-content {
		width:100%;
		padding-left:0;
	}
}
.comment .reply {
	display:block;
	clear:both;
	padding-top:30px;
	color:#ecad25;
	font-style:italic;
}
@media screen and (max-width: 990px) {
	.comment .reply {
		width:100%;
		margin-left:0;
		padding-left:0;
	}
}
.comment .children {
	list-style:none;
}
.comment-respond {
	padding-top:50px;
}
.comment-form {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-direction:normal;
	-webkit-box-orient:horizontal;
	-webkit-flex-flow:row wrap;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
}
.comment-form .comment-notes, .comment-form-comment {
	width:100%;
	-webkit-box-flex:1;
	-webkit-flex:1 0 100%;
	-ms-flex:1 0 100%;
	flex:1 0 100%;
}
.comment-form-author, .comment-form-email, .comment-form-url {
	width:33.333%;
	padding-right:10px;
}
@media screen and (max-width: 640px) {
	.comment-form-author, .comment-form-email, .comment-form-url {
		width:100%;
		padding-right:0;
	}
}
.comment-form-url {
	padding-right:0;
}
.comment-form-author, .comment-form-email, .comment-form-url, .comment-form-comment {
	position:relative;
	padding-top:20px;
}
.comment-form-author label, .comment-form-email label, .comment-form-url label, .comment-form-comment label {
	position:absolute;
	top:25px;
	left:10px;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.comment-form-author.filled label, .comment-form-email.filled label, .comment-form-url.filled label, .comment-form-comment.filled label {
	top:0;
	left:0;
	color:#c1c1c1;
	font-size:14px;
	font-size:1.0769230769em;
}
.comment-form-author input, .comment-form-author textarea, .comment-form-email input, .comment-form-email textarea, .comment-form-url input, .comment-form-url textarea, .comment-form-comment input, .comment-form-comment textarea {
	width:100%;
	max-width:100%;
}
.comment-form .form-allowed-tags, .comment-form .comment-notes {
	font-style:italic;
}
.comment-form .form-allowed-tags code, .comment-form .comment-notes code {
	padding:3px 5px;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:#fafafa;
	font-style:normal;
}
.comment-content, .entry-content, .page-content {
	margin-bottom:50px;
	word-break:break-word;
}
.comment-content h1, .comment-content h2, .comment-content h3, .comment-content h4, .comment-content h5, .comment-content h6, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6, .page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
	margin-top:0;
	font-weight:300;
	mb:1.5em;
}
.comment-content h1, .entry-content h1, .page-content h1 {
	font-size:28px;
	font-size:2.1538461538em;
}
.comment-content h2, .entry-content h2, .page-content h2 {
	font-size:26px;
	font-size:2em;
}
.comment-content h3, .entry-content h3, .page-content h3 {
	font-size:24px;
	font-size:1.8461538462em;
}
.comment-content h4, .comment-content h5, .comment-content h6, .entry-content h4, .entry-content h5, .entry-content h6, .page-content h4, .page-content h5, .page-content h6 {
	font-weight:600;
}
.comment-content h4, .entry-content h4, .page-content h4 {
	font-size:22px;
	font-size:1.6923076923em;
}
.comment-content h5, .entry-content h5, .page-content h5 {
	font-size:20px;
	font-size:1.5384615385em;
}
.comment-content h6, .entry-content h6, .page-content h6 {
	font-size:18px;
	font-size:1.3846153846em;
}
.comment-content p.leading, .entry-content p.leading, .page-content p.leading {
	line-height:1.5;
}
.comment-content img, .entry-content img, .page-content img {
	max-width:100%;
	height:auto;
}
.comment-content blockquote, .entry-content blockquote, .page-content blockquote {
	position:relative;
	margin:50px 0;
	padding-left:50px;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
}
.comment-content blockquote p, .entry-content blockquote p, .page-content blockquote p {
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:24px;
	font-size:1.8461538462em;
	font-weight:400;
	font-style:normal;
}
.comment-content blockquote:before, .comment-content blockquote:after, .entry-content blockquote:before, .entry-content blockquote:after, .page-content blockquote:before, .page-content blockquote:after {
	position:absolute;
	color:#c1c1c1;
	font-family:"FontAwesome";
	font-size:18px;
	font-size:1.3846153846em;
	font-style:normal;
	line-height:1;
}
.comment-content blockquote:before, .entry-content blockquote:before, .page-content blockquote:before {
	top:0;
	left:0;
	content:"\f10d";
}
.comment-content blockquote:after, .entry-content blockquote:after, .page-content blockquote:after {
	right:0;
	bottom:0;
	content:"\f10e";
}
.comment-content table, .entry-content table, .page-content table {
	margin:40px 0;
}
.comment-content table thead th, .entry-content table thead th, .page-content table thead th {
	padding:15px;
	color:white;
	background-color:#000000;
}
.comment-content table tbody tr, .entry-content table tbody tr, .page-content table tbody tr {
	border-bottom:1px solid #c1c1c1;
}
.comment-content table tbody tr:last-chid, .entry-content table tbody tr:last-chid, .page-content table tbody tr:last-chid {
	border-color:#ecad25;
}
.comment-content table tbody td, .comment-content table tbody th, .entry-content table tbody td, .entry-content table tbody th, .page-content table tbody td, .page-content table tbody th {
	padding:15px;
}
.comment-content table tbody th, .entry-content table tbody th, .page-content table tbody th {
	text-align:left;
}
.comment-content ul, .comment-content ol, .entry-content ul, .entry-content ol, .page-content ul, .page-content ol {
	margin-bottom:40px;
	margin-left:20px;
	line-height:inherit;
}
.comment-content ul ul, .comment-content ul ol, .comment-content ol ul, .comment-content ol ol, .entry-content ul ul, .entry-content ul ol, .entry-content ol ul, .entry-content ol ol, .page-content ul ul, .page-content ul ol, .page-content ol ul, .page-content ol ol {
	margin-bottom:0;
}
.comment-content pre, .entry-content pre, .page-content pre {
	padding:20px;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:#fafafa;
}
.comment-content code, .comment-content tt, .entry-content code, .entry-content tt, .page-content code, .page-content tt {
	display:inline-block;
	padding:1px 5px;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:#fafafa;
}
.error404 .entry-header strong.fourohfour {
	display:block;
	font-size:20em;
	font-weight:300;
	line-height:normal;
	text-align:center;
}
.error404 .entry-header .entry-title {
	text-align:center;
	word-break:break-word;
}
.error404 .entry-content {
	text-align:center;
}
.error404 .entry-content .random-posts {
	text-align:left;
}
.error404 .entry-content .random-posts .featured-image {
	margin-bottom:10px;
}
.error404 .entry-content .random-posts .entry-title {
	margin:0;
	font-size:24px;
	font-size:1.8461538462em;
	word-break:break-word;
}
.error404 .entry-content .random-posts small {
	display:block;
	margin-bottom:20px;
	font-size:13px;
	font-size:1em;
	font-style:italic;
}
.contact-map {
	margin-bottom:30px;
}
.contact-detail {
	margin-bottom:30px;
}
.contact-detail address, .contact-detail .phone {
	position:relative;
	padding-left:30px;
}
.contact-detail address > .fa, .contact-detail .phone > .fa {
	position:absolute;
	top:0;
	left:0;
}
hr.separator {
	border:none;
	border-bottom:1px solid #c1c1c1;
}
.archive-wrap h3 {
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-weight:700;
	font-weight:400;
	letter-spacing:2px;
	text-transform:uppercase;
}
.archive-wrap .archive-list {
	margin:0 0 30px;
	list-style:none;
}
.archive-wrap .archive-list li {
	position:relative;
}
.archive-wrap .archive-list > li a {
	display:block;
	padding:10px 0;
	border-bottom:1px solid #e3e3e3;
}
.archive-wrap .archive-list li span {
	position:absolute;
	top:0;
	right:0;
	margin-top:10px;
}
.archive-wrap .archive-list a {
	color:#000000;
}
.archive-wrap .archive-list ul {
	margin-top:-1px;
	margin-left:20px !important;
	border-top:1px solid #e3e3e3;
	border-left:1px dashed #e3e3e3;
	list-style:none;
}
.archive-wrap .archive-list ul a {
	padding-left:10px;
}
.entry-tags {
	display:block;
	margin-bottom:50px;
}
.author-box {
	margin-bottom:80px;
}
.author-box > h3 {
	position:relative;
	margin-bottom:50px;
	padding-bottom:20px;
	color:#c1c1c1;
	font-size:21px;
	font-size:1.6153846154em;
	font-weight:300;
}
.author-box > h3:after {
	position:absolute;
	bottom:0;
	left:0;
	width:45px;
	height:5px;
	background:url(../img/separator.png) no-repeat;
	content:" ";
}
.post-author {
	position:relative;
	min-height:60px;
	margin-bottom:30px;
	padding-left:90px;
}
.post-author__name {
	text-transform:capitalize;
}
.post-author__image {
	overflow:hidden;
	position:absolute;
	top:0;
	left:0;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.post-author__image img {
	display:block;
}
.entry-details .entry-related-posts {
	padding-left:0;
	border-bottom:none !important;
	word-break:break-word;
}
.entry-details .entry-related-posts img {
	max-width:100%;
	height:auto;
}
.entry-details .entry-related-posts h3 {
	position:relative;
	margin-bottom:50px;
	padding-bottom:20px;
	color:#c1c1c1;
	font-size:21px;
	font-size:1.6153846154em;
	font-weight:300;
}
.entry-details .entry-related-posts h3:after {
	position:absolute;
	bottom:0;
	left:0;
	width:45px;
	height:5px;
	background:url(../img/separator.png) no-repeat;
	content:" ";
}
.entry-details .entry-related-posts h3 [class*="ico"] {
	display:none;
}
.entry-details .entry-related-posts .featured-image {
	margin-bottom:10px;
}
.entry-details .entry-related-posts .entry-title {
	margin:0 0 5px;
	font-size:18px;
	font-size:1.3846153846em;
	font-weight:400;
	word-break:break-word;
}
.entry-details .entry-related-posts small {
	display:block;
	margin-bottom:10px;
	font-size:12px;
	font-size:0.9230769231em;
	font-style:italic;
}
.social-share-holder {
	margin-bottom:50px;
	padding:0 0 0 20px;
	border:1px solid #e3e3e3;
	*zoom:1;
}
.social-share-holder:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
@media screen and (max-width: 640px) {
	.social-share-holder {
		padding-left:0;
	}
}
.social-share-holder strong {
	display:inline-block;
	padding:15px 0;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
}
@media screen and (max-width: 640px) {
	.social-share-holder strong {
		display:block;
		border-bottom:1px solid #e3e3e3;
		text-align:center;
	}
}
.social-share-holder .social-links {
	float:right;
}
@media screen and (max-width: 640px) {
	.social-share-holder .social-links {
		display:-webkit-box;
		display:-webkit-flex;
		display:-ms-flexbox;
		display:flex;
		float:none;
	}
}
.social-share-holder a {
	float:left;
	width:auto;
	height:auto;
	padding:10px 20px !important;
	border-left:1px solid #e3e3e3 !important;
	font-size:18px;
	font-size:1.3846153846em;
}
@media screen and (max-width: 640px) {
	.social-share-holder a {
		padding:10px !important;
		-webkit-box-flex:1;
		-webkit-flex:1;
		-ms-flex:1;
		flex:1;
	}
	.social-share-holder a:first-child {
		border-left:none !important;
	}
}
.gm-style img {
	max-width:none;
}
/* 5.3 Post */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], textarea, select {
	display:inline-block;
	padding:10px;
	border:1px solid #c1c1c1;
	-webkit-border-radius:0;
	outline:none;
	background-color:transparent;
	vertical-align:middle;
	-webkit-transition:border-color 0.3s ease;
	-o-transition:border-color 0.3s ease;
	transition:border-color 0.3s ease;
	-webkit-appearance:none;
}
input[type="text"]:active, input[type="text"]:hover, input[type="text"]:focus, input[type="email"]:active, input[type="email"]:hover, input[type="email"]:focus, input[type="url"]:active, input[type="url"]:hover, input[type="url"]:focus, input[type="password"]:active, input[type="password"]:hover, input[type="password"]:focus, input[type="search"]:active, input[type="search"]:hover, input[type="search"]:focus, input[type="number"]:active, input[type="number"]:hover, input[type="number"]:focus, input[type="tel"]:active, input[type="tel"]:hover, input[type="tel"]:focus, textarea:active, textarea:hover, textarea:focus, select:active, select:hover, select:focus {
	border-color:#ecad25;
}
select {
	padding-right:30px !important;
	-webkit-border-radius:0;
	border-radius:0;
	background:url(../img/select.png) no-repeat right center !important;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
}
select::-ms-expand {
	display:none;
	visibility:hidden;
}
textarea {
	min-height:150px;
	resize:vertical;
}
button {
	overflow:visible;
	/* fix for IE11 */
}
/* 5.4 Post */
.mini-cart {
	display:inline-block;
	position:relative;
}
.mini-cart .widget_shopping_cart {
	position:absolute;
	z-index:10;
	top:100%;
	right:0;
	width:300px;
	padding:30px;
	opacity:0;
	color:#848484;
	background-color:white;
	-webkit-box-shadow:0 2px 5px rgba(0, 0, 0, 0.1);
	box-shadow:0 2px 5px rgba(0, 0, 0, 0.1);
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
	-webkit-transform:scale(0);
	-ms-transform:scale(0);
	-o-transform:scale(0);
	transform:scale(0);
	-webkit-transform-origin:100% 0;
	-ms-transform-origin:100% 0;
	-o-transform-origin:100% 0;
	transform-origin:100% 0;
}
.mini-cart .widget_shopping_cart dl.variation {
	display:none;
}
.mini-cart.active .widget_shopping_cart, .mini-cart:hover .widget_shopping_cart {
	opacity:1;
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.woocommerce-result-count, .woocommerce-ordering {
	font-style:italic;
}
@media screen and (max-width: 640px) {
	.woocommerce-result-count, .woocommerce-ordering {
		float:none;
		width:100%;
		text-align:center;
	}
}
.woocommerce-result-count {
	float:left;
	color:#c1c1c1;
	font-weight:400;
}
.woocommerce-ordering {
	float:right;
	margin-bottom:50px;
}
.woocommerce-ordering select {
	border:none;
}
.products {
	list-style:none;
	*zoom:1;
}
.products:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.products.products-carousel {
	margin:0;
}
.products .product {
	float:left;
	width:25%;
	margin-bottom:30px;
	padding:0 15px;
	text-align:left;
}
.products .product:nth-child(4n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products .product {
		width:50%;
	}
}
@media screen and (max-width: 480px) {
	.products .product {
		width:100%;
	}
}
.products .product .onsale {
	position:absolute;
	top:20px;
	left:0;
	padding:2px 10px;
	color:#ecad25;
	background-color:white;
	-webkit-box-shadow:0 1px 5px rgba(0, 0, 0, 0.1);
	box-shadow:0 1px 5px rgba(0, 0, 0, 0.1);
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:600;
}
.products .product__inner {
	overflow:hidden;
	-webkit-border-radius:3px;
	border-radius:3px;
	background:white;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.products .product .top-section {
	position:absolute;
	bottom:100%;
	width:100%;
	background-color:white;
}
.products .product .show-on-hover {
	overflow:hidden;
	max-height:0;
	opacity:0;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.products .product:hover .product__inner {
	-webkit-box-shadow:0 5px 20px rgba(0, 0, 0, 0.1);
	box-shadow:0 5px 20px rgba(0, 0, 0, 0.1);
}
.products .product:hover .show-on-hover {
	max-height:75px;
	opacity:1;
}
.products .product__image {
	position:relative;
}
.products .product__image img {
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
}
.products .product__image figcaption {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	padding:20px;
	opacity:0;
	background-color:rgba(255, 255, 255, 0.9);
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.products .product__image figcaption .block-link {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.products .product__image figcaption .star-rating {
	float:none;
	margin:20px auto;
}
.products .product__image figcaption .product-addon {
	text-align:center;
}
.products .product__image figcaption .product-addon a {
	color:#848484;
}
.products .product__image figcaption .yith-wcqv-button {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:36px;
	height:36px;
	margin:auto;
	padding:10px;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:#ecad25 !important;
	background:white;
	-webkit-box-shadow:0 2px 5px rgba(0, 0, 0, 0.1);
	box-shadow:0 2px 5px rgba(0, 0, 0, 0.1);
	font-size:18px;
	font-size:1.3846153846em;
	font-weight:600;
	line-height:1;
	text-align:center;
	text-transform:uppercase;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.products .product__image figcaption .yith-wcqv-button > span {
	display:none;
}
.products .product__image figcaption .yith-wcqv-button:hover {
	color:white !important;
	background-color:#ecad25;
}
.products .product:hover figcaption {
	opacity:1;
}
@media screen and (max-width: 640px) {
	.products .product:hover figcaption {
		display:none;
	}
}
.products .product .top-section, .products .product .bottom-section {
	padding:20px;
	*zoom:1;
}
.products .product .top-section:after, .products .product .bottom-section:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.products .product .top-section {
	padding-bottom:10px;
}
.products .product .bottom-section {
	padding-top:0;
}
.products .product__detail {
	position:relative;
	margin-top:65px;
	*zoom:1;
}
.products .product__detail:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.products .product__detail-title {
	overflow:hidden;
	margin:0;
	font-size:14px;
	font-size:1.0769230769em;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.products .product__detail-title a {
	color:#000000;
}
.products .product__detail-category {
	margin-bottom:0;
	color:#c1c1c1;
	font-size:11px;
	font-size:0.8461538462em;
	font-weight:600;
	font-style:italic;
	text-transform:uppercase;
}
.products .product__detail-category a {
	color:#c1c1c1;
}
.products .product__detail .star-rating {
	float:none;
}
.products .product__detail .yith-wcwl-add-to-wishlist {
	margin:10px 0;
	padding:10px 0;
	border-width:1px 0;
	border-style:dashed;
	border-color:#e3e3e3;
	font-size:10px;
	font-size:0.7692307692em;
	letter-spacing:1px;
	text-transform:uppercase;
}
.products .product__detail .yith-wcwl-add-to-wishlist a {
	color:#848484;
}
.products .product__detail-price {
	float:left;
	padding:5px 0;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:#000000;
	background-color:transparent !important;
	font-weight:400;
	letter-spacing:-1px;
}
.products .product__detail-price del {
	font-weight:400;
}
.products .product__detail-price ins {
	text-decoration:none;
}
.products .product__detail-action {
	float:right;
	position:relative;
}
.products .product__detail-action .yith-wcqv-button {
	display:none;
}
.products .product__detail-action .add_to_cart_button, .products .product__detail-action .button.product_type_simple, .products .product__detail-action button.product_type_simple, .products .product__detail-action input.product_type_simple[type="submit"], .products .product__detail-action input.product_type_simple[type="reset"], .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_simple.wc-forward, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_simple.wc-forward, .products .product__detail-action .button.product_type_external, .products .product__detail-action button.product_type_external, .products .product__detail-action input.product_type_external[type="submit"], .products .product__detail-action input.product_type_external[type="reset"], .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_external.wc-forward, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_external.wc-forward, .products .product__detail-action .button.product_type_grouped, .products .product__detail-action button.product_type_grouped, .products .product__detail-action input.product_type_grouped[type="submit"], .products .product__detail-action input.product_type_grouped[type="reset"], .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_grouped.wc-forward, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_grouped.wc-forward, .products .product__detail-action .button.product_type_variable, .products .product__detail-action button.product_type_variable, .products .product__detail-action input.product_type_variable[type="submit"], .products .product__detail-action input.product_type_variable[type="reset"], .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_variable.wc-forward, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_variable.wc-forward {
	position:relative;
	margin:0;
	padding:10px 0 10px 10px;
	color:inherit;
	background:none;
	font-size:10px;
	font-size:0.7692307692em;
	font-weight:600;
	letter-spacing:1px;
}
.products .product__detail-action .add_to_cart_button span, .products .product__detail-action .button.product_type_simple span, .products .product__detail-action button.product_type_simple span, .products .product__detail-action input.product_type_simple[type="submit"] span, .products .product__detail-action input.product_type_simple[type="reset"] span, .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_simple.wc-forward span, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_simple.wc-forward span, .products .product__detail-action .button.product_type_external span, .products .product__detail-action button.product_type_external span, .products .product__detail-action input.product_type_external[type="submit"] span, .products .product__detail-action input.product_type_external[type="reset"] span, .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_external.wc-forward span, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_external.wc-forward span, .products .product__detail-action .button.product_type_grouped span, .products .product__detail-action button.product_type_grouped span, .products .product__detail-action input.product_type_grouped[type="submit"] span, .products .product__detail-action input.product_type_grouped[type="reset"] span, .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_grouped.wc-forward span, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_grouped.wc-forward span, .products .product__detail-action .button.product_type_variable span, .products .product__detail-action button.product_type_variable span, .products .product__detail-action input.product_type_variable[type="submit"] span, .products .product__detail-action input.product_type_variable[type="reset"] span, .products .product__detail-action .widget.widget_shopping_cart .buttons .product_type_variable.wc-forward span, .widget.widget_shopping_cart .buttons .products .product__detail-action .product_type_variable.wc-forward span {
	display:inline-block;
	position:relative;
	position:absolute;
	top:5px;
	right:30px;
	width:120px;
	margin-right:10px;
	padding:5px;
	opacity:0;
	color:white;
	background-color:#333333;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
	-webkit-transform:translateX(20px);
	-ms-transform:translateX(20px);
	-o-transform:translateX(20px);
	transform:translateX(20px);
}
.products .product__detail-action .add_to_cart_button.loading .fa-plus {
	-webkit-animation:rotate 1s ease infinite;
	-o-animation:rotate 1s ease infinite;
	animation:rotate 1s ease infinite;
}
.products .product__detail-action .add_to_cart_button.loading .fa-plus:before {
	content:"\f021";
}
.products .product__detail-action .add_to_cart_button.added .fa-plus:before {
	content:"\f00c";
}
.products .product__detail .added_to_cart {
	display:none;
}
.products .product:hover .add_to_cart_button span, .products .product:hover .button.product_type_simple span, .products .product:hover button.product_type_simple span, .products .product:hover input.product_type_simple[type="submit"] span, .products .product:hover input.product_type_simple[type="reset"] span, .products .product:hover .widget.widget_shopping_cart .buttons .product_type_simple.wc-forward span, .widget.widget_shopping_cart .buttons .products .product:hover .product_type_simple.wc-forward span, .products .product:hover .button.product_type_external span, .products .product:hover button.product_type_external span, .products .product:hover input.product_type_external[type="submit"] span, .products .product:hover input.product_type_external[type="reset"] span, .products .product:hover .widget.widget_shopping_cart .buttons .product_type_external.wc-forward span, .widget.widget_shopping_cart .buttons .products .product:hover .product_type_external.wc-forward span, .products .product:hover .button.product_type_grouped span, .products .product:hover button.product_type_grouped span, .products .product:hover input.product_type_grouped[type="submit"] span, .products .product:hover input.product_type_grouped[type="reset"] span, .products .product:hover .widget.widget_shopping_cart .buttons .product_type_grouped.wc-forward span, .widget.widget_shopping_cart .buttons .products .product:hover .product_type_grouped.wc-forward span, .products .product:hover .button.product_type_variable span, .products .product:hover button.product_type_variable span, .products .product:hover input.product_type_variable[type="submit"] span, .products .product:hover input.product_type_variable[type="reset"] span, .products .product:hover .widget.widget_shopping_cart .buttons .product_type_variable.wc-forward span, .widget.widget_shopping_cart .buttons .products .product:hover .product_type_variable.wc-forward span {
	opacity:1;
	-webkit-transform:translateX(10px);
	-ms-transform:translateX(10px);
	-o-transform:translateX(10px);
	transform:translateX(10px);
}
.products .owl-item .product {
	width:100% !important;
}
.products.columns-1 .product, .columns-1 .products .product {
	width:100%;
}
.products.columns-2 .product, .columns-2 .products .product {
	width:50%;
}
.products.columns-2 .product:nth-child(4n+1), .columns-2 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-2 .product:nth-child(2n+1), .columns-2 .products .product:nth-child(2n+1) {
	clear:both;
}
@media screen and (max-width: 480px) {
	.products.columns-2 .product, .columns-2 .products .product {
		width:100%;
	}
}
.products.columns-3 .product, .columns-3 .products .product {
	width:33.3333%;
}
.products.columns-3 .product:nth-child(4n+1), .columns-3 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-3 .product:nth-child(3n+1), .columns-3 .products .product:nth-child(3n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-3 .product, .columns-3 .products .product {
		width:50%;
	}
	.products.columns-3 .product:nth-child(3n+1), .columns-3 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-3 .product:nth-child(2n+1), .columns-3 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-3 .product, .columns-3 .products .product {
		width:100%;
	}
}
.products.columns-5 .product, .columns-5 .products .product {
	width:20%;
}
.products.columns-5 .product:nth-child(4n+1), .columns-5 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-5 .product:nth-child(5n+1), .columns-5 .products .product:nth-child(5n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-5 .product, .columns-5 .products .product {
		width:50%;
	}
	.products.columns-5 .product:nth-child(3n+1), .columns-5 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-5 .product:nth-child(2n+1), .columns-5 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-5 .product, .columns-5 .products .product {
		width:100%;
	}
}
.products.columns-6 .product, .columns-6 .products .product {
	width:16.6667%;
}
.products.columns-6 .product:nth-child(4n+1), .columns-6 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-6 .product:nth-child(6n+1), .columns-6 .products .product:nth-child(6n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-6 .product, .columns-6 .products .product {
		width:50%;
	}
	.products.columns-6 .product:nth-child(3n+1), .columns-6 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-6 .product:nth-child(2n+1), .columns-6 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-6 .product, .columns-6 .products .product {
		width:100%;
	}
}
.products.columns-7 .product, .columns-7 .products .product {
	width:14.2857%;
}
.products.columns-7 .product:nth-child(4n+1), .columns-7 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-7 .product:nth-child(7n+1), .columns-7 .products .product:nth-child(7n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-7 .product, .columns-7 .products .product {
		width:50%;
	}
	.products.columns-7 .product:nth-child(3n+1), .columns-7 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-7 .product:nth-child(2n+1), .columns-7 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-7 .product, .columns-7 .products .product {
		width:100%;
	}
}
.products.columns-8 .product, .columns-8 .products .product {
	width:12.5%;
}
.products.columns-8 .product:nth-child(4n+1), .columns-8 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-8 .product:nth-child(8n+1), .columns-8 .products .product:nth-child(8n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-8 .product, .columns-8 .products .product {
		width:50%;
	}
	.products.columns-8 .product:nth-child(3n+1), .columns-8 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-8 .product:nth-child(2n+1), .columns-8 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-8 .product, .columns-8 .products .product {
		width:100%;
	}
}
.products.columns-9 .product, .columns-9 .products .product {
	width:11.1111%;
}
.products.columns-9 .product:nth-child(4n+1), .columns-9 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-9 .product:nth-child(9n+1), .columns-9 .products .product:nth-child(9n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-9 .product, .columns-9 .products .product {
		width:50%;
	}
	.products.columns-9 .product:nth-child(3n+1), .columns-9 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-9 .product:nth-child(2n+1), .columns-9 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-9 .product, .columns-9 .products .product {
		width:100%;
	}
}
.products.columns-10 .product, .columns-10 .products .product {
	width:10%;
}
.products.columns-10 .product:nth-child(4n+1), .columns-10 .products .product:nth-child(4n+1) {
	clear:none;
}
.products.columns-10 .product:nth-child(10n+1), .columns-10 .products .product:nth-child(10n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.products.columns-10 .product, .columns-10 .products .product {
		width:50%;
	}
	.products.columns-10 .product:nth-child(3n+1), .columns-10 .products .product:nth-child(3n+1) {
		clear:none;
	}
	.products.columns-10 .product:nth-child(2n+1), .columns-10 .products .product:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 480px) {
	.products.columns-10 .product, .columns-10 .products .product {
		width:100%;
	}
}
.sidebar-left {
	float:left;
}
@media screen and (max-width: 990px) {
	.sidebar-left {
		float:none;
	}
}
.content-right {
	float:right;
}
@media screen and (max-width: 990px) {
	.content-right {
		float:none;
	}
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(360deg);
		transform:rotate(360deg);
	}
}
@-o-keyframes rotate {
	from {
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to {
		-o-transform:rotate(360deg);
		transform:rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(360deg);
		-o-transform:rotate(360deg);
		transform:rotate(360deg);
	}
}
.woocommerce-message {
	position:relative;
	z-index:9;
	top:0;
	left:0;
	width:100%;
	margin-bottom:50px;
	padding:20px 0 10px;
	border-left:2px solid #ecad25;
	background-color:white;
	-webkit-box-shadow:0 5px 20px rgba(0, 0, 0, 0.06);
	box-shadow:0 5px 20px rgba(0, 0, 0, 0.06);
}
.woocommerce-message .container {
	width:100%;
}
.admin-bar .woocommerce-message {
	top:32px;
}
.woocommerce-message a {
	float:right;
	margin-top:-10px;
}
.woocommerce-error {
	margin:0 0 30px !important;
	padding:30px;
	border:1px solid #be6a6a;
	background-color:#f5b9b9;
	list-style:none;
}
.product-overview {
	position:relative;
	margin-bottom:6px;
	background-color:white;
}
.product-overview .entry-title {
	margin-bottom:50px;
	text-align:center;
}
.product-overview .onsale {
	position:absolute;
	z-index:1;
	left:0;
	padding:3px 10px;
	color:white;
	background:#ecad25;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:700;
	text-transform:uppercase;
}
.product-overview .onsale.soldout {
	width:100px !important;
	font-weight:400;
}
.product-overview .images {
	position:relative;
}
.product-overview .images .zoom {
	display:block;
}
.product-overview .images > a {
	margin-bottom:10px;
	text-align:center;
}
.product-overview .images > a img {
	display:block;
	width:100%;
	max-width:100%;
	height:auto;
	margin:0 auto;
}
.product-overview .images .thumbnails {
	overflow:hidden;
}
.product-overview .images .thumbnails img {
	width:100%;
	max-width:100%;
	height:auto;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.product-overview .images .thumbnails img:hover {
	border-color:rgba(0, 0, 0, 0.4);
	opacity:1 !important;
}
.product-overview .images .thumbnails .owl-item.active img {
	border-color:rgba(0, 0, 0, 0.4);
	opacity:1 !important;
}
.product-overview .images .thumbnails .owl-prev, .product-overview .images .thumbnails .owl-next {
	position:absolute;
	top:0;
	bottom:0;
	width:40px;
	-webkit-border-radius:0;
	border-radius:0;
	background:rgba(255, 255, 255, 0.7);
	font-size:24px;
	font-size:1.8461538462em;
	text-align:center;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.product-overview .images .thumbnails .owl-prev .fa, .product-overview .images .thumbnails .owl-next .fa {
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	color:#333333;
	text-align:center;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.product-overview .images .thumbnails .owl-prev {
	left:0;
	background:-webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
	background:-o-linear-gradient(left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
	background:linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
	-webkit-transform:translateX(-40px);
	-ms-transform:translateX(-40px);
	-o-transform:translateX(-40px);
	transform:translateX(-40px);
}
.product-overview .images .thumbnails .owl-next {
	right:0;
	background:-webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
	background:-o-linear-gradient(left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
	background:linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
	-webkit-transform:translateX(40px);
	-ms-transform:translateX(40px);
	-o-transform:translateX(40px);
	transform:translateX(40px);
}
.product-overview .images .thumbnails:hover img {
	opacity:0.5;
}
.product-overview .images .thumbnails:hover .owl-prev, .product-overview .images .thumbnails:hover .owl-next {
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	-o-transform:translateX(0);
	transform:translateX(0);
}
.product-overview .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	width:100%;
}
.product-overview .product-summary .posted_in {
	font-size:14px;
	font-size:1.0769230769em;
}
.product-overview .product-summary .price {
	display:inline-block;
	margin:0;
	padding:0 0 10px 0;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:black;
	background-color:transparent !important;
	font-size:24px;
	font-size:1.8461538462em;
	font-weight:400;
}
.product-overview .product-summary .price del {
	color:rgba(0, 0, 0, 0.4);
}
.product-overview .product-summary .price ins {
	text-decoration:none;
}
.product-overview .product-summary .cart {
	margin-bottom:40px;
}
.product-overview .product-summary .cart .single_add_to_cart_button {
	padding-right:50px;
	padding-left:50px;
}
.product-overview .product-summary .quantity {
	margin-bottom:10px;
}
.product-overview .product-summary .quantity label {
	display:inline-block;
	margin-right:20px;
	font-weight:700;
}
.product-overview .product-summary .summary {
	line-height:1.7;
}
.product-overview .product-summary [itemprop="description"] {
	margin-bottom:30px;
}
.product-overview .product_meta {
	margin-top:0;
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:400;
	line-height:2.2;
}
.product-overview .product_meta > span {
	display:block;
}
.product-overview .product_meta strong {
	color:#000000;
	font-weight:400;
	font-style:normal;
}
.product-overview .product_meta a {
	color:#000000;
}
.product-details {
	margin-bottom:6px;
	padding:50px 0;
	background-color:white;
}
.product-details .shop_attributes p:last-child {
	margin-bottom:0;
}
.woocommerce-tabs {
	*zoom:1;
}
.woocommerce-tabs:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.woocommerce-tabs .tabs {
	margin:0 0 50px;
	border-bottom:1px solid #c1c1c1;
	list-style:none;
	*zoom:1;
}
.woocommerce-tabs .tabs:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.woocommerce-tabs .tabs li {
	float:left;
	margin-bottom:-1px;
	border-bottom:1px solid transparent;
}
.woocommerce-tabs .tabs li.active {
	border-bottom-color:#ecad25;
}
.woocommerce-tabs .tabs li.active a {
	color:#000000;
}
.woocommerce-tabs .tabs a {
	display:block;
	padding:10px 30px 10px 0;
	outline:none;
	color:#c1c1c1;
	font-size:11px;
	font-size:0.8461538462em;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
}
.woocommerce-tabs .panel > h2 {
	font-size:24px;
	font-size:1.8461538462em;
}
.woocommerce-tabs .entry-content h1, .woocommerce-tabs .entry-content h2, .woocommerce-tabs .entry-content h3, .woocommerce-tabs .entry-content h4, .woocommerce-tabs .entry-content h5, .woocommerce-tabs .entry-content h6 {
	font-weight:300;
}
#reviews .comment_container {
	position:relative;
	min-height:80px;
	padding-left:80px;
}
#reviews .comment_container img {
	position:absolute;
	top:0;
	left:0;
}
#reviews .commentlist {
	margin-top:50px;
}
#reviews .meta {
	margin-bottom:5px;
}
#reviews .meta strong {
	color:black;
	font-weight:400;
}
#reviews .meta time {
	color:#c1c1c1;
	font-weight:400;
}
#review_form .comment-form-author, #review_form .comment-form-email {
	width:50%;
}
#review_form .comment-form-rating {
	margin-top:10px;
	margin-right:10px;
}
#review_form .comment-form {
	padding:0;
}
.star-rating {
	float:right;
	overflow:hidden;
	position:relative;
	width:5.4em;
	height:1em;
	color:#c1c1c1;
	font-family:"FontAwesome";
	font-size:1em;
	line-height:1;
}
.star-rating:before {
	float:left;
	position:absolute;
	top:0;
	left:0;
	color:#c1c1c1;
	content:"\f006\f006\f006\f006\f006";
}
.star-rating span {
	float:left;
	overflow:hidden;
	position:absolute;
	top:0;
	left:0;
	padding-top:1.5em;
	color:#ecad25;
}
.star-rating span:before {
	position:absolute;
	top:0;
	left:0;
	content:"\f006\f006\f006\f006\f006";
}
.woocommerce-product-rating {
	display:block;
	line-height:2;
}
.woocommerce-product-rating:after, .woocommerce-product-rating:before {
	display:table;
	content:" ";
}
.woocommerce-product-rating:after {
	clear:both;
}
.woocommerce-product-rating .star-rating {
	float:left;
	margin:0.5em 4px 0 0;
}
p.stars {
	position:relative;
	font-size:1em;
}
p.stars a {
	display:inline-block;
	position:relative;
	margin-right:1em;
	border-bottom:0 !important;
	outline:0;
	font-weight:700;
	text-indent:-9999px;
}
p.stars a:last-child {
	border-right:0;
}
p.stars a.star-1, p.stars a.star-2, p.stars a.star-3, p.stars a.star-4, p.stars a.star-5 {
	border-right:1px solid #cccccc;
}
p.stars a.star-1:after, p.stars a.star-2:after, p.stars a.star-3:after, p.stars a.star-4:after, p.stars a.star-5:after {
	position:absolute;
	top:0;
	left:0;
	font-family:"FontAwesome";
	text-indent:0;
}
p.stars a.star-1 {
	width:2em;
}
p.stars a.star-1:after {
	content:"\f006";
}
p.stars a.star-1.active:after, p.stars a.star-1:hover:after {
	content:"\f005";
}
p.stars a.star-2 {
	width:3em;
}
p.stars a.star-2:after {
	content:"\f006\f006";
}
p.stars a.star-2.active:after, p.stars a.star-2:hover:after {
	content:"\f005\f005";
}
p.stars a.star-3 {
	width:4em;
}
p.stars a.star-3:after {
	content:"\f006\f006\f006";
}
p.stars a.star-3.active:after, p.stars a.star-3:hover:after {
	content:"\f005\f005\f005";
}
p.stars a.star-4 {
	width:5em;
}
p.stars a.star-4:after {
	content:"\f006\f006\f006\f006";
}
p.stars a.star-4.active:after, p.stars a.star-4:hover:after {
	content:"\f005\f005\f005\f005";
}
p.stars a.star-5 {
	width:6em;
	border:0;
}
p.stars a.star-5:after {
	content:"\f006\f006\f006\f006\f006";
}
p.stars a.star-5.active:after, p.stars a.star-5:hover:after {
	content:"\f005\f005\f005\f005\f005";
}
.related-title, #reviews .comment-reply-title {
	position:relative;
	margin-bottom:50px;
	padding-bottom:20px;
	color:#c1c1c1;
	font-size:21px;
	font-size:1.6153846154em;
	font-weight:300;
}
.related-title:after, #reviews .comment-reply-title:after {
	position:absolute;
	bottom:0;
	left:0;
	width:45px;
	height:5px;
	background:url(../img/separator.png) no-repeat;
	content:" ";
}
.col2-set {
	width:100%;
}
.col2-set:after {
	display:block;
	clear:both;
	content:"";
}
.col2-set .col-1 {
	float:left;
	width:48%;
}
.col2-set .col-2 {
	float:right;
	width:48%;
}
@media screen and (max-width: 768px) {
	.col2-set .col-1, .col2-set .col-2 {
		float:none;
		width:100%;
	}
}
.col2-set header.title a {
	color:#ecad25;
	font-style:italic;
}
.myaccount_user a {
	color:#ecad25;
	font-style:italic;
}
form .form-row {
	margin:0 0 20px;
}
form .form-row:after {
	display:block;
	clear:both;
	content:"";
}
form .form-row label {
	display:block;
}
form .form-row label.hidden {
	visibility:hidden;
}
form .form-row select {
	width:100%;
	margin:0;
	cursor:pointer;
}
form .form-row .required {
	border:0;
	color:red;
	font-weight:bold;
}
form .form-row .input-checkbox {
	display:inline;
	margin:-2px 8px 0 0;
	text-align:center;
	vertical-align:middle;
}
form .form-row label.checkbox {
	display:inline;
}
form .form-row input.input-text, form .form-row textarea {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	margin:0;
	outline:0;
}
form .form-row textarea {
	display:block;
	height:3.5em;
	-webkit-box-shadow:none;
	box-shadow:none;
	line-height:1.5em;
}
form .form-row.woocommerce-validated input.input-text {
	background-image:url(images/icons/valid.png);
	background-repeat:no-repeat;
	background-position:95% center;
}
form .form-row.woocommerce-invalid input.input-text {
	background-image:url(images/icons/invalid.png);
	background-repeat:no-repeat;
	background-position:95% center;
}
form .form-row.woocommerce-invalid .chzn-single, form .form-row.woocommerce-invalid .chzn-drop, form .form-row.woocommerce-invalid input.input-text, form .form-row.woocommerce-invalid select {
	border-color:#fb7f88;
}
form .form-row ::-webkit-input-placeholder {
	padding-top:2px;
	line-height:1em;
}
form .form-row :-moz-placeholder {
	padding-top:2px;
	line-height:1em;
}
form .form-row :-ms-input-placeholder {
	padding-top:2px;
	line-height:1em;
}
form .form-row-first, form .form-row-last {
	float:left;
	overflow:visible;
	width:47%;
}
@media screen and (max-width: 640px) {
	form .form-row-first, form .form-row-last {
		float:none;
		width:100%;
	}
}
form .form-row-last {
	float:right;
}
form .form-row-wide {
	clear:both;
}
.cart_totals table {
	width:100%;
}
.cart_totals table th, .cart_totals table td {
	padding:15px;
	vertical-align:top;
}
.cart_totals table th {
	width:200px;
	padding-right:20px;
	border-right:1px solid #e3e3e3;
	border-bottom:1px solid #e3e3e3;
	color:#000000 !important;
	background-color:transparent !important;
	text-align:right;
}
@media screen and (max-width: 640px) {
	.cart_totals table th {
		width:100px;
	}
}
.cart_totals table .shipping-calculator-button {
	color:#ecad25;
	font-style:italic;
}
.woocommerce-checkout-review-order-table tr td {
	border-bottom:none !important;
}
.woocommerce-checkout-review-order-table tfoot th {
	padding-right:20px;
	border-right:1px solid #e3e3e3;
	color:#000000 !important;
	background-color:transparent !important;
	text-align:right;
	vertical-align:top;
}
.clear {
	*zoom:1;
}
.clear:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.order_details {
	margin:0 0 30px !important;
	padding:20px 0;
	border:1px dashed #b03d3d;
	border-right:none;
	border-left:none;
	list-style:none;
}
.order_details span {
	display:inline-block;
	width:150px;
}
p.order-info mark {
	display:inline-block;
	padding:0 10px;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:#444444;
	background-color:#e3e3e3;
	text-shadow:0 1px 1px rgba(255, 255, 255, 0.2);
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-weight:700;
	text-transform:uppercase;
}
table.shop_table {
	width:100%;
	margin:0 -1px 24px 0;
	border:1px solid rgba(0, 0, 0, 0.1);
	-webkit-border-radius:5px;
	border-radius:5px;
	border-collapse:collapse;
	text-align:left;
}
table.shop_table th {
	padding:9px 12px;
	font-weight:bold;
	line-height:18px;
}
table.shop_table td {
	padding:6px 12px;
	border-top:1px solid #e3e3e3;
	border-bottom:none;
	vertical-align:middle;
}
table.shop_table td small {
	font-weight:normal;
}
table.shop_table tfoot td, table.shop_table tfoot th {
	border-top:1px solid #e3e3e3;
	font-weight:bold;
}
table.shop_table .product-remove {
	width:40px;
	padding-left:10px;
}
@media screen and (max-width: 640px) {
	table.shop_table .product-remove {
		width:auto;
		padding:5px;
	}
}
table.shop_table .product-name dl {
	margin-top:0;
}
table.shop_table .product-thumbnail {
	width:60px;
}
@media screen and (max-width: 640px) {
	table.shop_table .product-thumbnail {
		display:none;
	}
}
table.shop_table .product-thumbnail img {
	width:60px;
	max-width:100%;
	height:auto;
}
table.shop_table .product-price th, table.shop_table .product-price td, table.shop_table .product-subtotal th, table.shop_table .product-subtotal td {
	white-space:nowrap;
}
@media screen and (max-width: 640px) {
	table.shop_table .product-subtotal {
		border-right:1px solid #e3e3e3;
	}
}
@media screen and (max-width: 640px) {
	table.shop_table .product-quantity {
		display:none;
	}
}
table.shop_table .quantity .qty {
	width:100px;
}
table.shop_table .actions {
	padding:10px;
}
table.shop_table .coupon {
	float:left;
}
@media screen and (max-width: 640px) {
	table.shop_table .coupon {
		float:none;
		width:100%;
	}
	table.shop_table .coupon input {
		display:block;
		width:100%;
		margin-left:0;
	}
}
table.shop_table input[name="update_cart"] {
	float:right;
}
@media screen and (max-width: 640px) {
	table.shop_table input[name="update_cart"] {
		float:none;
		width:100%;
		margin-left:0;
	}
}
table.shop_table tfoot th, table.shop_table tbody th {
	border-top:1px solid #e3e3e3;
	color:#000000;
	background-color:transparent;
}
table.shop_table tfoot th {
	padding-right:20px;
	border-right:1px solid #e3e3e3;
	text-align:right;
}
table.shop_table.customer_details tbody th {
	border-right:1px solid #e3e3e3;
}
#shipping_method {
	margin:0 0 30px;
	list-style:none;
}
.woocommerce-checkout-payment {
	padding:20px;
	border:1px solid #e3e3e3;
}
.woocommerce-checkout-payment .payment_methods {
	margin:0 0 30px;
	list-style:none;
}
.woocommerce-checkout-payment .payment_methods li input {
	margin-right:10px;
}
.woocommerce-checkout-payment .payment_methods li label {
	font-weight:700;
}
.woocommerce-checkout-payment .payment_box {
	margin:10px 0;
	padding:20px;
	border:1px solid #000000;
}
.woocommerce-checkout-payment .payment_method_paypal img {
	height:40px;
	margin-left:10px;
	vertical-align:middle;
}
.woocommerce-checkout-payment .about_paypal {
	float:right;
	color:#ecad25;
	font-weight:600;
	font-style:italic;
}
table.group_table td {
	display:table;
	width:100%;
	vertical-align:middle;
}
table.group_table td label {
	padding-left:100px;
}
table.group_table .price {
	margin-top:10px !important;
	margin-bottom:10px !important;
	border:none !important;
}
table.group_table .price .amount {
	margin-left:100px;
}
.widget ul.product_list_widget {
	margin:0;
	list-style:none;
}
.widget ul.product_list_widget li {
	position:relative;
	min-height:70px;
	margin-bottom:10px;
	padding-bottom:10px;
	padding-left:75px;
}
.widget ul.product_list_widget li a {
	display:block;
	padding:0;
	color:#000000;
}
.widget ul.product_list_widget li a:hover {
	color:#ecad25;
}
.widget ul.product_list_widget li img {
	position:absolute;
	top:0;
	left:0;
	width:60px;
	height:60px;
}
.widget ul.product_list_widget .star-rating {
	float:none;
	margin-bottom:10px;
}
.widget .cart_list.product_list_widget .empty {
	padding-left:0;
}
.widget.widget_shopping_cart .product_list_widget {
	margin:0;
	list-style:none;
}
.widget.widget_shopping_cart .product_list_widget li {
	clear:both;
	position:relative;
	margin-bottom:20px;
	padding-left:60px;
	text-align:left;
}
.widget.widget_shopping_cart .product_list_widget li.empty {
	margin-bottom:0;
	padding-left:0;
	font-style:italic;
	text-align:center;
}
.widget.widget_shopping_cart .product_list_widget li.empty:before {
	display:block;
	color:#e3e3e3;
	font-family:"Simple-Line-Icons";
	font-size:64px;
	font-size:4.9230769231em;
	font-style:normal;
	content:"\e04f";
}
.widget.widget_shopping_cart .product_list_widget a {
	color:#000000;
	font-size:14px;
	font-size:1.0769230769em;
	font-weight:700;
}
.widget.widget_shopping_cart .product_list_widget img {
	position:absolute;
	left:0;
	width:50px;
	height:50px;
	margin-right:10px;
}
.widget.widget_shopping_cart .product_list_widget .remove {
	position:absolute;
	top:0;
	right:0;
	color:#ecad25;
}
.widget.widget_shopping_cart .product_list_widget .quantity {
	display:block;
	font-size:13px;
	font-size:1em;
}
.widget.widget_shopping_cart .total {
	*zoom:1;
}
.widget.widget_shopping_cart .total:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.widget.widget_shopping_cart .total strong {
	float:left;
}
.widget.widget_shopping_cart .total .amount {
	float:right;
}
.widget.widget_shopping_cart .buttons .wc-forward {
	display:block;
	margin-bottom:10px;
	text-align:center;
}
.widget.widget_shopping_cart .buttons .wc-forward.checkout {
	margin-bottom:0;
}
.widget.widget_price_filter .price_slider {
	margin-bottom:30px;
}
.widget.widget_price_filter .price_slider_amount {
	font-size:0.8751em;
	line-height:2.4em;
	text-align:right;
}
.widget.widget_price_filter .price_slider_amount .button, .widget.widget_price_filter .price_slider_amount button, .widget.widget_price_filter .price_slider_amount input[type="submit"], .widget.widget_price_filter .price_slider_amount input[type="reset"], .widget.widget_price_filter .price_slider_amount .widget.widget_shopping_cart .buttons .wc-forward, .widget.widget_shopping_cart .buttons .widget.widget_price_filter .price_slider_amount .wc-forward {
	float:left;
	font-size:1.15em;
}
.widget.widget_price_filter .ui-slider {
	position:relative;
	text-align:left;
}
.widget.widget_price_filter .ui-slider .ui-slider-handle {
	position:absolute;
	z-index:2;
	top:-5px;
	width:15px;
	height:15px;
	border:1px solid #cc9112;
	-webkit-border-radius:50%;
	border-radius:50%;
	outline:0;
	background:#ecad25;
	cursor:pointer;
	-webkit-transition:-webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	-webkit-transition:transform 0.3s ease, box-shadow 0.3s ease;
	-o-transition:box-shadow 0.3s ease, -o-transform 0.3s ease;
	transition:-webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
	transition:transform 0.3s ease, box-shadow 0.3s ease;
	transition:transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.widget.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	margin-left:-1em;
}
.widget.widget_price_filter .ui-slider .ui-slider-handle:active {
	-webkit-box-shadow:0 0 0 5px rgba(0, 0, 0, 0.4);
	box-shadow:0 0 0 5px rgba(0, 0, 0, 0.4);
	-webkit-transform:scale(1.5);
	-ms-transform:scale(1.5);
	-o-transform:scale(1.5);
	transform:scale(1.5);
}
.widget.widget_price_filter .ui-slider .ui-slider-range {
	display:block;
	position:absolute;
	z-index:1;
	border:0;
	-webkit-border-radius:1em;
	border-radius:1em;
	background:#f0bf54;
	font-size:0.7em;
}
.widget.widget_price_filter .price_slider_wrapper .ui-widget-content {
	-webkit-border-radius:1em;
	border-radius:1em;
	background:#a83a3a;
}
.widget.widget_price_filter .ui-slider-horizontal {
	height:0.5em;
}
.widget.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	top:0;
	height:100%;
}
.widget.widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
	left:-1px;
}
.widget.widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
	right:-1px;
}
dl.variation dt, dl.variation dd {
	float:left;
}
dl.variation dt {
	margin-right:10px;
}
dl.variation dt {
	clear:both;
}
dl.variation dd {
	margin-left:0;
	font-style:italic;
}
table.variations {
	margin-bottom:10px;
	border-spacing:10px;
	border-collapse:collapse;
}
table.variations .label {
	width:100px;
	padding-top:10px;
	font-weight:700;
	vertical-align:top;
	text-transform:capitalize;
}
table.variations .reset_variations {
	display:block !important;
	margin-top:10px;
	font-size:11px;
	font-size:0.8461538462em;
	font-style:italic;
}
.variations_button .quantity-label, .product-summary form.cart .quantity-label {
	float:left;
	width:100px;
	margin-top:5px;
	margin-right:1px;
	font-weight:700;
}
.sold-individually .variations_button .quantity-label, .sold-individually .product-summary form.cart .quantity-label {
	display:none;
}
.variations_button .input-text.qty, .product-summary form.cart .input-text.qty {
	width:100px;
}
.variations_button .single_add_to_cart_button, .product-summary form.cart .single_add_to_cart_button {
	margin-left:100px;
}
.sold-individually .variations_button .single_add_to_cart_button, .sold-individually .product-summary form.cart .single_add_to_cart_button {
	margin-left:0;
}
.cross-sells > h2, .cart_totals > h2 {
	padding:50px 0;
	font-size:14px;
	font-size:1.0769230769em;
	text-align:center;
	letter-spacing:2px;
	text-transform:uppercase;
}
.cross-sells .products-holder {
	margin:0;
}
.wc-proceed-to-checkout {
	text-align:right;
}
.add_to_cart_inline {
	position:relative;
	border:none !important;
	text-align:center;
}
.add_to_cart_inline ins, .add_to_cart_inline del, .add_to_cart_inline .amount {
	font-size:18px;
	font-size:1.3846153846rem;
}
.add_to_cart_inline del {
	color:#c1c1c1;
}
.add_to_cart_inline ins {
	text-decoration:none;
}
.add_to_cart_inline .button, .add_to_cart_inline button, .add_to_cart_inline input[type="submit"], .add_to_cart_inline input[type="reset"], .add_to_cart_inline .widget.widget_shopping_cart .buttons .wc-forward, .widget.widget_shopping_cart .buttons .add_to_cart_inline .wc-forward {
	display:table;
	margin:20px auto;
}
.add_to_cart_inline .button:before, .add_to_cart_inline button:before, .add_to_cart_inline input[type="submit"]:before, .add_to_cart_inline input[type="reset"]:before, .add_to_cart_inline .widget.widget_shopping_cart .buttons .wc-forward:before, .widget.widget_shopping_cart .buttons .add_to_cart_inline .wc-forward:before {
	display:inline-block;
	margin-right:5px;
	color:white;
	color:inherit;
	font-family:"FontAwesome";
	font-weight:300;
	vertical-align:middle;
	content:"\f067";
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.add_to_cart_inline .button:hover:before, .add_to_cart_inline button:hover:before, .add_to_cart_inline input[type="submit"]:hover:before, .add_to_cart_inline input[type="reset"]:hover:before, .add_to_cart_inline .widget.widget_shopping_cart .buttons .wc-forward:hover:before, .widget.widget_shopping_cart .buttons .add_to_cart_inline .wc-forward:hover:before {
	color:white;
}
.add_to_cart_inline .button.loading:before, .add_to_cart_inline button.loading:before, .add_to_cart_inline input.loading[type="submit"]:before, .add_to_cart_inline input.loading[type="reset"]:before, .add_to_cart_inline .widget.widget_shopping_cart .buttons .loading.wc-forward:before, .widget.widget_shopping_cart .buttons .add_to_cart_inline .loading.wc-forward:before {
	content:"\f021";
	-webkit-animation:spin 1s infinite;
	-o-animation:spin 1s infinite;
	animation:spin 1s infinite;
}
.add_to_cart_inline .button.added:before, .add_to_cart_inline button.added:before, .add_to_cart_inline input.added[type="submit"]:before, .add_to_cart_inline input.added[type="reset"]:before, .add_to_cart_inline .widget.widget_shopping_cart .buttons .added.wc-forward:before, .widget.widget_shopping_cart .buttons .add_to_cart_inline .added.wc-forward:before {
	content:"\f00c";
	-webkit-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}
.add_to_cart_inline .added_to_cart.wc-forward {
	display:none;
}
.yith-wcwl-wishlistaddedbrowse, .yith-wcwl-wishlistexistsbrowse {
	margin-top:10px;
	font-size:11px;
	font-size:0.8461538462em;
	font-style:italic;
	text-align:center;
}
.list-unstyled {
	margin-left:0 !important;
	list-style:none;
}
.list-unstyled li {
	padding:10px 0;
	border-bottom:1px solid #e3e3e3;
	*zoom:1;
}
.list-unstyled li:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.list-unstyled li span:first-child {
	display:inline-block;
	width:200px;
	vertical-align:top;
}
.list-unstyled li span.details {
	display:inline-block;
	vertical-align:top;
}
.dokan-dashboard .dokan-dash-sidebar ul.dokan-dashboard-menu li.active:after {
	right:0;
	left:auto;
}
#yith-quick-view-content .type-product {
	margin:0 -15px;
	*zoom:1;
}
#yith-quick-view-content .type-product:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
#yith-quick-view-content .images, #yith-quick-view-content .entry-summary {
	padding:0 15px !important;
}
#yith-quick-view-content .images img {
	max-width:100%;
	height:auto;
}
#yith-quick-view-content .product_title {
	margin-bottom:0;
}
.tax-product_cat .entry-title + p {
	width:60%;
	max-width:100%;
	margin-bottom:30px;
	font-size:12px;
	font-size:0.9230769231em;
	line-height:1.5;
}
@media screen and (max-width: 990px) {
	.tax-product_cat .entry-title + p {
		width:100%;
	}
}
.product-category .featured-image {
	background-position-y:0 !important;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.product-category img {
	display:block;
	width:100%;
	height:auto;
}
.product-category .product-detail {
	position:absolute;
	z-index:1;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:rgba(50, 50, 50, 0.3) !important;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.product-category:hover .product-detail {
	background-color:rgba(50, 50, 50, 0.5);
}
.product-category:hover .featured-image {
	-webkit-transform:scale(1.1);
	-ms-transform:scale(1.1);
	-o-transform:scale(1.1);
	transform:scale(1.1);
}
.product-category .product-data {
	color:white;
	text-align:center;
}
.product-category .product-category-name {
	display:inline-block;
	position:relative;
	margin:0;
	font-size:24px;
	font-size:1.8461538462em;
	font-weight:500;
	letter-spacing:2px;
	text-transform:uppercase;
}
.product-category .product-category-name .count {
	position:absolute;
	top:-20px;
	right:-20px;
	height:30px;
	padding:7px 10px;
	-webkit-border-radius:30px;
	border-radius:30px;
	color:white;
	background-color:#ecad25;
	font-size:12px;
	line-height:normal;
	text-align:center;
}
.product-category .product-category-desc {
	display:block;
	margin-bottom:40px;
	letter-spacing:1px;
	text-transform:uppercase;
}
@media screen and (max-width: 700px) {
	.wcv-store-grid {
		margin-left:0;
	}
}
.wcv-header-container {
	margin-bottom:50px;
	border:1px solid #f4f4f4;
}
.wcv-header-container .store-banner {
	display:block;
}
.wcv-header-container #inner-element {
	top:50%;
	bottom:auto !important;
	height:auto;
	padding:30px;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
	*zoom:1;
}
.wcv-header-container #inner-element:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
@media screen and (max-width: 700px) {
	.wcv-header-container #inner-element {
		position:relative !important;
		top:0;
		right:0;
		left:0;
		width:100%;
		max-width:100%;
		-webkit-transform:translateY(0);
		-ms-transform:translateY(0);
		-o-transform:translateY(0);
		transform:translateY(0);
	}
}
.wcv-header-container .store-icon {
	float:none !important;
	margin:10px auto !important;
}
@media screen and (max-width: 700px) {
	.wcv-header-container .store-icon {
		margin-top:-50px;
	}
}
.wcv-header-container .social-icons {
	display:block;
	clear:both;
	text-align:center;
}
@media screen and (max-width: 700px) {
	.wcv-header-container .wcv-store-grid__col {
		padding-left:0;
	}
}
.wcv-header-container .store-brand {
	margin-bottom:30px;
}
.wcv-header-container .store-info {
	color:#444444;
	*zoom:1;
}
.wcv-header-container .store-info:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.wcv-header-container .store-info > h3 {
	margin-top:0;
	margin-bottom:20px;
	font-size:24px;
	line-height:1;
}
.wcv-header-container .store-info .store-address.left, .wcv-header-container .store-info .store-phone.right {
	float:left;
	width:50%;
	text-align:left;
}
@media screen and (max-width: 700px) {
	.wcv-header-container .store-info .store-address.left, .wcv-header-container .store-info .store-phone.right {
		float:none;
		width:100%;
		padding:10px 10px 10px 30px !important;
	}
	.wcv-header-container .store-info .store-address.left .fa, .wcv-header-container .store-info .store-phone.right .fa {
		position:relative;
		top:auto;
	}
}
.wcv-header-container .store-info .store-address.left a, .wcv-header-container .store-info .store-phone.right a {
	display:block;
	position:relative;
	padding-left:30px;
	color:inherit;
}
.wcv-header-container .store-info .store-address.left a .fa, .wcv-header-container .store-info .store-phone.right a .fa {
	position:absolute;
	top:10px;
	left:0;
	color:#ecad25;
	font-size:18px;
}
.wcv-header-container .store-info .store-address.left {
	padding-right:15px;
}
.wcv-header-container .store-info .store-phone.right {
	padding-left:15px;
}
.woocommerce-MyAccount-navigation ul {
	margin-bottom:50px;
	margin-left:0;
	border-bottom:3px solid #eaeaea;
	list-style:none;
}
.woocommerce-MyAccount-navigation-link {
	display:inline-block;
	position:relative;
	bottom:-2px;
}
.woocommerce-MyAccount-navigation-link a {
	display:block;
	padding:15px 30px;
	border-bottom:2px solid transparent;
	color:inherit;
	font-size:14px;
	font-size:1.0769230769em;
}
.woocommerce-MyAccount-navigation-link a:before {
	display:inline-block;
	margin-right:10px;
	font-family:"themify";
}
.woocommerce-MyAccount-navigation-link--dashboard a:before {
	content:"\e6aa";
}
.woocommerce-MyAccount-navigation-link--orders a:before {
	content:"\e687";
}
.woocommerce-MyAccount-navigation-link--edit-address a:before {
	content:"\e61c";
}
.woocommerce-MyAccount-navigation-link--edit-account a:before {
	content:"\e61d";
}
.woocommerce-MyAccount-navigation-link--downloads a:before {
	content:"\e6a7";
}
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
	content:"\e732";
}
.woocommerce-MyAccount-navigation-link.is-active a, .woocommerce-MyAccount-navigation-link:hover a {
	border-color:inherit;
	color:#ecad25;
}
.woocommerce-MyAccount-orders {
	width:100%;
}
.woocommerce-MyAccount-orders thead {
	border-bottom:2px solid #666666;
}
.woocommerce-MyAccount-orders th {
	text-align:left;
}
.woocommerce-MyAccount-orders tbody tr {
	border-bottom:1px solid #e3e3e3;
}
mark {
	display:inline-block;
	padding:4px 10px;
	-webkit-border-radius:5px;
	border-radius:5px;
	background-color:#cdf2ff;
}
.woocommerce-EditAccountForm.edit-account fieldset {
	margin-bottom:30px;
	border:1px solid #e3e3e3;
}
.woocommerce-page .select2-container .select2-choice {
	padding:5px !important;
	border:1px solid #c1c1c1;
	-webkit-border-radius:0;
	border-radius:0;
}
.woocommerce-page .select2-drop {
	border-color:#c1c1c1 !important;
}
.woocommerce-page .select2-drop .select2-search {
	padding:10px;
	border-bottom:1px solid #c1c1c1;
}
.woocommerce-page .select2-drop-active {
	border-top:1px solid #666666;
}
.woocommerce-page .select2-drop.select2-drop-above {
	border-bottom:1px solid #666666;
}
.woocommerce-product-gallery {
	position:relative;
	padding-right:0;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
	max-width:none;
	*zoom:1;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper a, .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	display:block;
}
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
	height:auto;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	display:block;
	position:absolute;
	z-index:99;
	top:3px;
	right:15px;
	width:2em;
	height:2em;
	-webkit-border-radius:3px;
	border-radius:3px;
	text-align:center;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
	display:none !important;
}
.woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
	display:block;
	font:normal normal normal 1em/1 FontAwesome;
	font-size:inherit;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	line-height:2;
	text-indent:0;
	content:"\f00e";
	text-rendering:auto;
}
.woocommerce-product-gallery .flex-control-thumbs {
	margin-top:15px;
	margin-right:-15px;
	margin-left:-15px;
	padding:0;
	*zoom:1;
}
.woocommerce-product-gallery .flex-control-thumbs:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.woocommerce-product-gallery .flex-control-thumbs li {
	float:left;
	padding:15px;
	list-style:none;
	cursor:pointer;
}
.woocommerce-product-gallery .flex-control-thumbs li img {
	display:block;
	max-width:100%;
	opacity:0.5;
	-webkit-transition:all,ease,0.2s;
	-o-transition:all,ease,0.2s;
	transition:all,ease,0.2s;
}
.woocommerce-product-gallery .flex-control-thumbs li .flex-active, .woocommerce-product-gallery .flex-control-thumbs li:hover img {
	opacity:1;
}
.woocommerce-product-gallery .flex-control-thumbs:after, .woocommerce-product-gallery .flex-control-thumbs:before {
	display:table;
	content:"";
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
	width:50%;
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n+1) {
	clear:both;
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
	width:33.3333%;
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
	clear:both;
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width:25%;
}
.woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
	clear:both;
}
#yith-wcwl-form .wishlist_table .product-add-to-cart a.button, #yith-wcwl-form .wishlist_table .product-add-to-cart .widget.widget_shopping_cart .buttons a.wc-forward, .widget.widget_shopping_cart .buttons #yith-wcwl-form .wishlist_table .product-add-to-cart a.wc-forward {
	width:70%;
	border:none;
	line-height:30px;
}
#yith-wcwl-form .wishlist_table .product-stock-status {
	text-align:center;
}
#yith-wcwl-form .wishlist_table.mobile li .item-wrapper .item-details {
	vertical-align:bottom;
}
#yith-wcwl-form .wishlist_table.mobile li .item-wrapper .item-details h3 {
	display:inline-block;
	font-size:20px;
}
#yith-wcwl-form .wishlist_table.mobile li .item-wrapper tbody, #yith-wcwl-form .wishlist_table.mobile li .item-wrapper tr {
	background-color:transparent !important;
}
#yith-wcwl-form .wishlist_table.mobile li .additional-info-wrapper {
	width:95.5%;
}
#yith-wcwl-form .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a.button, #yith-wcwl-form .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart .widget.widget_shopping_cart .buttons a.wc-forward, .widget.widget_shopping_cart .buttons #yith-wcwl-form .wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart a.wc-forward {
	width:100%;
}
#yith-wcwl-form .wishlist_table.mobile li .additional-info-wrapper tr {
	background-color:#f6f6f6;
}
#yith-wcwl-form .wishlist_table.mobile li .item-details-table, #yith-wcwl-form .wishlist_table.mobile li .additional-info {
	width:100%;
}
#yith-wcwl-form .wishlist_table.mobile tr td, #yith-wcwl-form .wishlist_table.mobile tr th.product-checkbox, #yith-wcwl-form .wishlist_table.mobile .wishlist_table tr th.wishlist-delete {
	background:transparent;
}
#yith-wcwl-form .wishlist_table.mobile table {
	-webkit-box-shadow:none !important;
	box-shadow:none !important;
}
/* 5.5 Cart */
.card {
	margin:0 -5px;
	*zoom:1;
}
.card:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.card-item {
	float:left;
	width:33.3333%;
	padding:0 5px 10px;
}
.card-item:nth-child(3n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.card-item {
		width:50%;
	}
	.card-item:nth-child(3n+1) {
		clear:none;
	}
	.card-item:nth-child(2n+1) {
		clear:both;
	}
}
@media screen and (max-width: 640px) {
	.card-item {
		width:100%;
	}
	.card-item:nth-child(3n+1) {
		clear:none;
	}
	.card-item:nth-child(2n+1) {
		clear:none;
	}
}
.columns-6 .card-item {
	width:16.666667%;
}
.columns-6 .card-item:nth-child(3n+1) {
	clear:none;
}
.columns-6 .card-item:nth-child(6n+1) {
	clear:both;
}
@media screen and (max-width: 1200px) {
	.columns-6 .card-item {
		width:33.3333%;
	}
	.columns-6 .card-item:nth-child(3n+1) {
		clear:both;
	}
}
@media screen and (max-width: 990px) {
	.columns-6 .card-item {
		width:50%;
	}
	.columns-6 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-6 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
@media screen and (max-width: 640px) {
	.columns-6 .card-item {
		width:100%;
	}
	.columns-6 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-6 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
.columns-5 .card-item {
	width:20%;
}
.columns-5 .card-item:nth-child(3n+1) {
	clear:none;
}
.columns-5 .card-item:nth-child(5n+1) {
	clear:both;
}
@media screen and (max-width: 1200px) {
	.columns-5 .card-item {
		width:33.3333%;
	}
	.columns-5 .card-item:nth-child(5n+1) {
		clear:none;
	}
	.columns-5 .card-item:nth-child(3n+1) {
		clear:both;
	}
}
@media screen and (max-width: 990px) {
	.columns-5 .card-item {
		width:50%;
	}
	.columns-5 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-5 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
@media screen and (max-width: 640px) {
	.columns-5 .card-item {
		width:100%;
	}
	.columns-5 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-5 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
.columns-4 .card-item {
	width:25%;
}
.columns-4 .card-item:nth-child(3n+1) {
	clear:none;
}
.columns-4 .card-item:nth-child(4n+1) {
	clear:both;
}
@media screen and (max-width: 990px) {
	.columns-4 .card-item {
		width:50%;
	}
	.columns-4 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-4 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
@media screen and (max-width: 640px) {
	.columns-4 .card-item {
		width:100%;
	}
	.columns-4 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-4 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
.columns-2 .card-item {
	width:50%;
}
.columns-2 .card-item:nth-child(2n+1) {
	clear:both;
}
.columns-2 .card-item:nth-child(3n+1) {
	clear:none;
}
.columns-2 .card-item:nth-child(4n+1) {
	clear:none;
}
@media screen and (max-width: 640px) {
	.columns-2 .card-item {
		width:100%;
	}
	.columns-2 .card-item:nth-child(3n+1) {
		clear:none;
	}
	.columns-2 .card-item:nth-child(2n+1) {
		clear:none;
	}
}
.columns-1 .card-item {
	width:100%;
}
.card-inner {
	overflow:hidden;
	position:relative;
	background-color:white;
}
.card-inner img {
	width:100%;
	height:auto;
}
.card-image-bg {
	height:280px;
	margin-bottom:0 !important;
	opacity:1;
	background-color:#111111;
	background-position:center;
	background-size:cover;
	-webkit-transition:0.2s ease;
	-o-transition:0.2s ease;
	transition:0.2s ease;
}
.card-image-bg.loaded {
	opacity:1;
}
.card-valigned-content {
	position:absolute;
	top:50%;
	right:0;
	left:0;
	padding-right:20px;
	padding-left:20px;
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
}
.card .entry-more, .card .button, .card button, .card input[type="submit"], .card input[type="reset"], .card .widget.widget_shopping_cart .buttons .wc-forward, .widget.widget_shopping_cart .buttons .card .wc-forward {
	border-color:white;
	color:white;
}
.card .entry-more:hover, .card .button:hover, .card button:hover, .card input:hover[type="submit"], .card input:hover[type="reset"], .card .widget.widget_shopping_cart .buttons .wc-forward:hover, .widget.widget_shopping_cart .buttons .card .wc-forward:hover {
	color:#000000;
}
/* 5.6 Portfolio */
.portfolio-title {
	margin:0;
	font-size:48px;
	font-size:3.6923076923em;
	font-weight:300;
	text-align:center;
}
.filterable-nav {
	padding:20px 0 50px;
	text-align:center;
}
.filterable-nav a {
	display:inline-block;
	position:relative;
	padding:10px 5px;
	color:#848484;
	font-weight:300;
}
.filterable-nav a:before {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:1px;
	opacity:0;
	background-color:#e3e3e3;
	content:" ";
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.filterable-nav a.current, .filterable-nav a:hover {
	color:#ecad25;
}
.filterable-nav a.current:before, .filterable-nav a:hover:before {
	top:100%;
	opacity:1;
	background:#ecad25;
}
.portfolio-holder {
	position:relative;
	margin:0 -3px;
	*zoom:1;
}
.portfolio-holder:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.portfolio-holder + .posts-navigation {
	padding:0 50px;
}
.portfolio-holder.no-gutter .portfolio {
	padding:0 !important;
}
.portfolio-holder.no-gutter .portfolio-inner {
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.portfolio-holder .grid-sizer {
	position:relative;
	width:25%;
}
.portfolio-holder .portfolio {
	position:relative;
	width:25%;
	padding:5px !important;
}
@media screen and (max-width: 990px) {
	.portfolio-holder .portfolio {
		width:33.3333%;
	}
}
@media screen and (max-width: 768px) {
	.portfolio-holder .portfolio {
		width:50%;
	}
}
@media screen and (max-width: 640px) {
	.portfolio-holder .portfolio {
		width:100%;
	}
}
.portfolio-holder .portfolio-inner {
	position:absolute;
	top:5px;
	right:5px;
	bottom:5px;
	left:5px;
}
.portfolio-holder .portfolio .featured-image {
	position:absolute;
	width:100%;
	height:100%;
}
.portfolio-holder .portfolio .featured-image:before {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	opacity:0.6;
	background:rgba(0, 0, 0, 0.2);
	background:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.6)));
	background:-o-linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
	background:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
	content:" ";
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.portfolio-holder .portfolio:hover .featured-image:before {
	opacity:1;
}
.portfolio-holder .portfolio__detail {
	position:absolute;
	bottom:0;
	left:0;
	padding:20px;
}
.portfolio-holder .portfolio__detail .entry-title {
	margin:0;
	color:white;
	font-size:1.5em;
	font-weight:700;
	line-height:1.2;
	letter-spacing:-1;
}
.portfolio-holder .portfolio__detail .entry-title a {
	color:inherit;
}
.portfolio-holder .portfolio__detail .entry-category {
	display:block;
	overflow:hidden;
	max-height:0;
	opacity:0;
	color:white;
	color:#c1c1c1;
	font-style:italic;
	-webkit-transition:0.5s cubic-bezier(0, 0.29, 0.26, 1.54);
	-o-transition:0.5s cubic-bezier(0, 0.29, 0.26, 1.54);
	transition:0.5s cubic-bezier(0, 0.29, 0.26, 1.54);
}
.portfolio-holder .portfolio__detail .entry-category a {
	color:inherit;
}
.portfolio-holder .portfolio:hover .entry-category {
	max-height:30px;
	margin-bottom:20px;
	padding-top:10px;
	opacity:1;
}
.portfolio-holder.columns-3 .portfolio, .portfolio-holder.columns-3 .grid-sizer {
	width:33.3333%;
}
@media screen and (max-width: 768px) {
	.portfolio-holder.columns-3 .portfolio, .portfolio-holder.columns-3 .grid-sizer {
		width:50%;
	}
}
@media screen and (max-width: 480px) {
	.portfolio-holder.columns-3 .portfolio, .portfolio-holder.columns-3 .grid-sizer {
		width:100%;
	}
}
.portfolio-holder.columns-5 .portfolio, .portfolio-holder.columns-5 .grid-sizer {
	width:20%;
}
@media screen and (max-width: 990px) {
	.portfolio-holder.columns-5 .portfolio, .portfolio-holder.columns-5 .grid-sizer {
		width:33.3333%;
	}
}
@media screen and (max-width: 768px) {
	.portfolio-holder.columns-5 .portfolio, .portfolio-holder.columns-5 .grid-sizer {
		width:50%;
	}
}
@media screen and (max-width: 480px) {
	.portfolio-holder.columns-5 .portfolio, .portfolio-holder.columns-5 .grid-sizer {
		width:100%;
	}
}
.portfolio-holder.columns-6 .portfolio, .portfolio-holder.columns-6 .grid-sizer {
	width:16.667%;
}
@media screen and (max-width: 990px) {
	.portfolio-holder.columns-6 .portfolio, .portfolio-holder.columns-6 .grid-sizer {
		width:33.3333%;
	}
}
@media screen and (max-width: 768px) {
	.portfolio-holder.columns-6 .portfolio, .portfolio-holder.columns-6 .grid-sizer {
		width:50%;
	}
}
@media screen and (max-width: 480px) {
	.portfolio-holder.columns-6 .portfolio, .portfolio-holder.columns-6 .grid-sizer {
		width:100%;
	}
}
.koo-image-slider {
	margin-bottom:30px;
}
.tokoo-portfoliolio .entry-date .time {
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:400;
}
.project-meta {
	*zoom:1;
}
.project-meta:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.project-meta .entry-taxonomy {
	float:left;
	width:50%;
	font-size:11px;
	line-height:1.5;
}
@media screen and (max-width: 768px) {
	.project-meta .entry-taxonomy {
		float:none;
		width:100%;
	}
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details {
	padding:0;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-meta .time {
	font-size:12px;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-tags {
	position:relative;
	margin:50px 0;
	padding-left:150px;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-tags h3 {
	position:absolute;
	top:0;
	left:0;
	margin:0;
	font-size:1em;
	font-weight:400;
	letter-spacing:1px;
	text-transform:uppercase;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-tags h3 .drip-icon-tag {
	color:#ecad25;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-tags a {
	color:#888888;
}
.single-tokoo-portfolio .tokoo-portfolio .entry-details .entry-tags a:hover {
	color:#ecad25;
}
/* 5.7 Dokan */
.dokan-dashboard .mobile-header {
	margin-bottom:0;
}
.dokan-dashboard .post-content {
	padding:20px;
}
.dokan-dashboard .dokan-dashboard-menu {
	margin-bottom:0;
}
.dokan-dashboard .dokan-dashboard-menu .store {
	float:none;
	width:100%;
}
.dokan-dashboard .dokan-dashboard-menu a {
	white-space:nowrap;
}
@media screen and (max-width: 768px) {
	.dokan-dashboard .dokan-dashboard-menu li {
		float:left;
		width:50% !important;
	}
}
@media screen and (max-width: 480px) {
	.dokan-dashboard .dokan-dashboard-menu li {
		width:100% !important;
	}
	.dokan-dashboard .dokan-dashboard-menu li.settings .fa-angle-right {
		display:none;
	}
}
.dokan-dashboard .dokan-dashboard-menu li.dokan-common-links a {
	padding:12px 15px !important;
	text-align:center;
}
.dokan-dashboard .dokan-dashboard-menu li.dokan-common-links a .fa {
	padding-right:0;
}
.dokan-dashboard .social-share-holder {
	display:none;
}
.dokan-dashboard .dokan-dashboard-wrap {
	display:table;
	width:100%;
	border:1px solid #e3e3e3;
	table-layout:fixed;
	-webkit-box-shadow:0 2px 5px rgba(0, 0, 0, 0.1), 0 18px 0 -10px #fafafa, 0 19px 5px -9px rgba(0, 0, 0, 0.1), 0 33px 0 -18px #fbfbfb, 0 33px 10px -14px rgba(0, 0, 0, 0.1);
	box-shadow:0 2px 5px rgba(0, 0, 0, 0.1), 0 18px 0 -10px #fafafa, 0 19px 5px -9px rgba(0, 0, 0, 0.1), 0 33px 0 -18px #fbfbfb, 0 33px 10px -14px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
	.dokan-dashboard .dokan-dashboard-wrap {
		display:block;
	}
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar, .dokan-dashboard .dokan-dashboard-wrap .dokan-dashboard-content {
	display:table-cell;
	float:none;
	vertical-align:top;
}
@media screen and (max-width: 768px) {
	.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar, .dokan-dashboard .dokan-dashboard-wrap .dokan-dashboard-content {
		display:block;
		width:100% !important;
	}
	.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar ul.dokan-dashboard-menu, .dokan-dashboard .dokan-dashboard-wrap .dokan-dashboard-content ul.dokan-dashboard-menu {
		height:auto !important;
	}
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dash-sidebar {
	width:200px;
	background-color:#242424;
}
.dokan-dashboard .dokan-dashboard-wrap .dokan-dashboard-content {
	width:auto;
	width:100%;
	padding:20px !important;
}
@media screen and (max-width: 768px) {
	.dokan-dashboard .dokan-dashboard-wrap .dokan-w6 {
		float:none;
		width:100%;
		padding:0 !important;
	}
}
.dokan-dashboard .dashboard-widget {
	padding:0 20px 20px;
}
.dokan-dashboard .dashboard-widget .widget-title {
	margin:0 -10px 20px;
	padding:15px 20px !important;
	background:#fafafa;
}
.dokan-dashboard .dashboard-widget.products {
	margin:0;
}
ul.list-unstyled.list-count li {
	padding:10px 0;
}
ul.list-unstyled.list-count li a {
	color:#000000;
	text-decoration:underline;
}
table#dokan-comments-table {
	width:100%;
	table-layout:fixed;
}
#dokan-comments_menu a {
	color:#848484;
}
.dokan-content {
	position:relative;
	*zoom:1;
}
.dokan-content:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.dokan-content #dokan-secondary {
	float:right;
	width:30%;
	margin-right:0 !important;
	padding:0 30px 30px;
}
@media screen and (max-width: 640px) {
	.dokan-content #dokan-secondary {
		float:none;
		width:100%;
	}
}
.dokan-content #dokan-primary {
	float:left;
	width:70%;
	background-color:white;
}
@media screen and (max-width: 640px) {
	.dokan-content #dokan-primary {
		float:none;
		width:100%;
	}
}
.dokan-content .seller-items {
	padding:15px 0;
}
.dokan-single-store {
	padding-bottom:50px;
}
.dokan-single-store .profile-frame {
	height:auto;
	margin-bottom:0;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.dokan-single-store .profile-frame .profile-info-box .profile-info-img {
	display:block;
}
.dokan-single-store .profile-frame .profile-info-box .dokan-store-info li {
	font-size:14px;
	font-size:1.0769230769em;
	font-weight:300;
}
.dokan-single-store .profile-frame .profile-info-box .dokan-store-info .store-name {
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:18px;
	font-size:1.3846153846rem;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
}
.dokan-single-store .profile-frame .profile-info-summery {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	flex-direction:column;
	padding:30px;
	-webkit-box-direction:normal;
	-webkit-box-orient:vertical;
	-webkit-box-pack:center;
	-webkit-flex-direction:column;
	-ms-flex-direction:column;
	-ms-flex-pack:center;
	-webkit-justify-content:center;
	justify-content:center;
}
.dokan-single-store .profile-frame .dokan-store-tabs {
	background-color:white;
}
.dokan-single-store .profile-frame .dokan-store-tabs .dokan-list-inline {
	border:none;
	border-bottom:1px solid #e3e3e3;
	text-align:center;
}
.dokan-single-store .profile-frame .dokan-store-tabs .dokan-list-inline li {
	border-right:none;
}
.dokan-single-store .profile-frame .dokan-store-tabs .dokan-list-inline li a {
	padding:15px 30px;
	color:#000000;
	font-weight:400;
}
.dokan-single-store .profile-frame .dokan-store-tabs .dokan-list-inline li a:hover {
	color:white;
	background-color:#ecad25;
}
input[type="submit"].dokan-btn-theme, a.dokan-btn-theme, .dokan-btn-theme {
	-webkit-border-radius:0;
	border-radius:0;
}
.store-list {
	*zoom:1;
}
.store-list:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.store {
	float:left;
	overflow:hidden;
	width:49%;
	margin-bottom:30px;
	-webkit-border-radius:3px;
	border-radius:3px;
	background-color:white;
}
.store:nth-child(odd) {
	margin-right:2%;
}
.store:nth-child(2n+1) {
	clear:both;
}
@media screen and (max-width: 640px) {
	.store {
		width:100%;
	}
}
.store__image {
	position:relative;
	height:250px;
	background-color:#444444;
	background-position:center;
	background-size:cover;
}
.store__avatar {
	overflow:hidden;
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	margin:0;
	padding:50px 20px 20px;
	background:rgba(0, 0, 0, 0.5);
	background:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
	background:-o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
	background:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}
.store__avatar img, .store__avatar figcaption {
	display:inline-block;
	vertical-align:middle;
}
.store__avatar img {
	width:64px;
	height:64px;
	margin-right:10px;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.store__avatar h3 {
	margin:0;
	color:white;
	letter-spacing:2px;
	text-transform:uppercase;
}
.store__detail {
	position:relative;
	min-height:80px;
	padding:20px 170px 20px 20px;
}
.store__detail .button, .store__detail button, .store__detail input[type="submit"], .store__detail input[type="reset"], .store__detail .widget.widget_shopping_cart .buttons .wc-forward, .widget.widget_shopping_cart .buttons .store__detail .wc-forward {
	position:absolute;
	top:20px;
	right:20px;
}
input[type="submit"].dokan-btn-theme, a.dokan-btn-theme, .dokan-btn-theme {
	border:none;
	background-color:#ecad25;
}
input[type="submit"].dokan-btn-theme:hover, a.dokan-btn-theme:hover, .dokan-btn-theme:hover {
	background-color:#f0bf54;
}
.dokan-dashboard .site-header {
	margin-bottom:0;
}
.dokan-dashboard .site-header .container {
	width:100%;
}
.dokan-dashboard .main-content .container {
	width:100%;
	padding:0;
}
.dokan-dashboard .main-content .type-page {
	margin-bottom:0;
}
.dokan-dashboard .main-content .type-page .entry-title {
	display:none;
}
.dokan-dashboard .main-content .type-page .entry-content {
	margin-bottom:0;
}
.dokan-dashboard .dokan-dashboard-wrap {
	margin-bottom:0;
	border:none;
	-webkit-box-shadow:none;
	box-shadow:none;
}
.dokan-dashboard select.dokan-form-control {
	height:auto;
	font-size:inherit;
}
.dokan-dashboard .dokan-form-control {
	padding:7px 10px;
	font-size:inherit;
}
.dokan-dashboard .dokan-btn, .dokan-dashboard a.dokan-btn {
	height:auto;
	padding:7px 10px !important;
	font-size:inherit;
	line-height:inherit;
}
.dokan-dashboard .dokan-product-listing .dokan-product-listing-area .product-listing-top {
	line-height:inherit;
}
.dokan-dashboard .dokan-dashboard-menu .store {
	background-color:#242424 !important;
}
.dokan-dashboard fieldset {
	border:none;
}
.dokan-dashboard .diviader {
	display:none;
}
.dokan-dashboard-content .dokan-product-listing-area {
	padding:0;
}
.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table .diviader {
	display:none;
}
@media screen and (max-width: 990px) {
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table thead {
		display:none;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody tr {
		display:block;
		margin-bottom:20px;
		border:1px solid #e3e3e3;
		background-color:white;
		-webkit-box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
		box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td {
		display:block;
		position:relative;
		padding-left:150px;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td:before {
		position:absolute;
		top:15px;
		left:15px;
		width:150px;
		content:attr(data-title);
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td:first-child {
		padding-left:0;
		border-top:none;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td:first-child:before {
		display:none;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td:first-child img {
		display:block;
		max-width:100%;
		max-height:100%;
		margin:0 auto;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td .row-actions {
		visibility:visible;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td .product-type:before {
		display:inline-block;
		margin-right:10px;
		text-align:left;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td .product-type:after {
		content:attr(data-original-title);
	}
}
@media screen and (max-width: 480px) {
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td {
		padding-left:100px;
	}
	.dokan-dashboard-content .dokan-product-listing-area .dokan-table.product-listing-table tbody td:before {
		width:100px;
	}
}
.dokan-table > thead > tr > th {
	padding:10px;
	vertical-align:middle;
}
.dokan-table.dokan-attribute-options-table thead {
	background-color:#000000;
}
.dokan-table.dokan-attribute-options-table .tagit {
	margin-left:0;
	padding:10px;
	-webkit-border-radius:0;
	border-radius:0;
}
ul.dokan-feature-sellers, ul.dokan-best-sellers {
	margin-left:0;
}
ul.dokan-feature-sellers li, ul.dokan-best-sellers li {
	padding:10px 0;
}
ul.dokan-feature-sellers a, ul.dokan-best-sellers a {
	font-size:14px;
	line-height:1;
	text-transform:uppercase;
}
ul.dokan-feature-sellers br, ul.dokan-best-sellers br {
	display:none;
}
.dokan-category-menu #cat-drop-stack ul {
	margin-left:0;
}
.dokan-category-menu #cat-drop-stack li {
	padding:0;
}
.dokan-category-menu #cat-drop-stack li a {
	display:block;
	padding:10px 0;
	border-bottom:1px solid #e3e3e3;
	color:#848484;
}
.dokan-category-menu #cat-drop-stack li a:hover {
	color:#ecad25;
}
.dokan-category-menu .sub-category {
	border-bottom:1px solid #e3e3e3;
}
.dokan-category-menu .sub-category h3 {
	margin-bottom:0;
	margin-left:15px;
	font-size:14px;
	line-height:1;
}
.dokan-category-menu .sub-category h3 a {
	padding-left:10px !important;
	border-left:1px solid #e3e3e3;
}
.dokan-category-menu .sub-block:last-child > h3 > a {
	border-bottom:none !important;
}
.review_comment_container {
	display:table;
	width:100%;
}
.review_comment_container .dokan-review-author-img, .review_comment_container .comment-text {
	display:table-cell;
	vertical-align:top;
}
.review_comment_container .dokan-review-author-img {
	width:80px;
	padding-right:20px;
}
.review_comment_container .dokan-review-author-img img {
	max-width:100%;
	height:auto;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.dokan-dashboard #store-form .dokan-banner {
	max-width:100%;
	margin:0 auto 30px;
}
.image-wrap img {
	display:block;
}
.product-listing-top + .dokan-w12 .dokan-form-inline {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	margin-bottom:15px;
}
.product-listing-top + .dokan-w12 .dokan-form-inline:first-child .dokan-form-group {
	width:50%;
}
.product-listing-top + .dokan-w12 .dokan-form-inline:first-child .dokan-btn {
	width:100%;
}
@media screen and (max-width: 480px) {
	.product-listing-top + .dokan-w12 .dokan-form-inline:first-child {
		-webkit-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.product-listing-top + .dokan-w12 .dokan-form-inline:first-child .dokan-form-group {
		width:100%;
	}
}
.product-listing-top + .dokan-w12 .dokan-form-inline:last-child {
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	-webkit-justify-content:flex-end;
	justify-content:flex-end;
}
@media screen and (max-width: 768px) {
	.product-listing-top + .dokan-w12 .dokan-form-inline:last-child .dokan-form-group {
		width:50%;
		-webkit-box-flex:1;
		-webkit-flex:1;
		-ms-flex:1;
		flex:1;
	}
}
.product-listing-top + .dokan-w12 .dokan-form-inline .dokan-form-group, .product-listing-top + .dokan-w12 .dokan-form-inline .dokan-btn {
	float:left;
	width:33.333%;
	margin:5px;
}
@media screen and (max-width: 480px) {
	.product-listing-top + .dokan-w12 .dokan-form-inline .dokan-form-group, .product-listing-top + .dokan-w12 .dokan-form-inline .dokan-btn {
		margin:0 0 5px;
	}
}
.product-listing-top + .dokan-w12 .dokan-form-inline button[name="product_listing_search"] {
	-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	-webkit-order:1;
	order:1;
}
@media screen and (max-width: 480px) {
	.order-statuses-filter {
		margin:10px 0 !important;
	}
}
.dokan-orders-area .dokan-table .diviader {
	display:none;
}
@media screen and (max-width: 480px) {
	.dokan-orders-area .dokan-table thead {
		display:none;
	}
}
@media screen and (max-width: 767px) {
	.dokan-orders-area .dokan-table tbody .dokan-order-action {
		width:auto !important;
	}
}
@media screen and (max-width: 480px) {
	.dokan-orders-area .dokan-table tbody tr {
		display:block;
		margin-bottom:30px;
		border-bottom-color:#ededed !important;
		-webkit-box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
		box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
	}
	.dokan-orders-area .dokan-table tbody td {
		display:block;
		position:relative;
		padding-left:120px !important;
	}
	.dokan-orders-area .dokan-table tbody td:before {
		position:absolute;
		top:15px;
		left:15px;
		width:100px;
		content:attr(data-title);
	}
	.dokan-orders-area .dokan-table tbody td.dokan-order-action {
		border-bottom:none;
	}
}
/* 5.8 Dokan */
.vendor-shop-header {
	margin-bottom:50px;
}
.vendor-shop-dashboard-navigation {
	margin-bottom:50px;
	border-bottom:2px solid #ecad25;
	*zoom:1;
}
.vendor-shop-dashboard-navigation:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.vendor-shop-dashboard-navigation a {
	float:left;
	color:inherit;
	background-color:transparent;
}
.vendor-shop-dashboard-navigation a:hover {
	color:#222222;
	background-color:transparent;
}
.wcv-date-filter {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
}
.wcv-date-filter label, .wcv-date-filter input {
	margin-right:10px;
}
.wcv-date-filter label {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-align-items:center;
	align-items:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
}
.table-vendor-sales-report .product-header, .table-vendor-sales-report .commission-header {
	white-space:nowrap;
}
#wp-pv_shop_description-wrap button, #wp-pv_seller_info-wrap button {
	font-weight:initial;
	text-transform:initial;
}
#wp-pv_seller_info-editor-container, #wp-pv_shop_description-editor-container {
	border:1px solid #e3e3e3;
}
/* 6. Sidebar and Widgets */
.site-sidebar {
	overflow:auto;
	position:fixed;
	z-index:-1;
	top:0;
	right:0;
	bottom:0;
	width:400px;
	max-width:100%;
	padding:150px 50px 50px;
	background-color:#ffffff;
	font-size:12px;
	font-size:0.9230769231em;
}
.admin-bar .site-sidebar {
	top:32px;
}
.site-sidebar.raise {
	z-index:1;
}
.site-sidebar .close-sidebar {
	float:right;
	position:absolute;
	top:50px;
	right:50px;
	color:#000000;
	font-size:32px;
	font-size:2.4615384615rem;
}
/* 6.1 Default Wordpress Widgets */
/*======================================*
 * Widgets
 * ======================================*/
.widget {
	position:relative;
	margin-bottom:40px;
	word-break:break-word;
	/* Categories, Archive widget list */
	/* RSS Widget */
	/* Text Widget */
	/* Tag list */
	/* Calendar Widget */
	/* Newsletter widget */
	/* Login Widget */
	/* Search Widget */
}
.widget .widget-title {
	position:relative;
	margin-top:0;
	margin-bottom:30px;
	padding-bottom:10px;
	color:#7b7b7b;
	font-size:1em;
	font-weight:400;
	letter-spacing:2px;
	text-transform:uppercase;
}
.site-footer .widget .widget-title {
	color:#7b7b7b;
}
.widget > ul {
	list-style:none;
}
.widget > ul li a {
	display:block;
	padding:5px 0;
	color:#000000;
}
.site-footer .widget > ul li a {
	color:#adadad;
}
.widget > ul .children {
	list-style:none;
}
.widget.widget_categories ul, .widget.tokoo-advanced-categories ul, .widget.widget_archive ul, .widget.dokan-category-menu ul {
	list-style:none;
}
.widget.widget_categories li, .widget.tokoo-advanced-categories li, .widget.widget_archive li, .widget.dokan-category-menu li {
	padding:5px 0;
}
.widget.widget_categories a, .widget.tokoo-advanced-categories a, .widget.widget_archive a, .widget.dokan-category-menu a {
	display:inline-block;
	padding:0;
	font-weight:400;
}
.widget.widget_categories select, .widget.tokoo-advanced-categories select, .widget.widget_archive select, .widget.dokan-category-menu select {
	width:100%;
	margin-top:10px;
}
.site-footer .widget.widget_categories select, .site-footer .widget.tokoo-advanced-categories select, .site-footer .widget.widget_archive select, .site-footer .widget.dokan-category-menu select {
	color:white !important;
}
.widget.widget_categories select:active, .widget.widget_categories select:focus, .widget.tokoo-advanced-categories select:active, .widget.tokoo-advanced-categories select:focus, .widget.widget_archive select:active, .widget.widget_archive select:focus, .widget.dokan-category-menu select:active, .widget.dokan-category-menu select:focus {
	border-color:#ecad25;
}
.widget.widget_recent_comments li {
	padding:10px 0;
	font-style:italic;
}
.widget.widget_recent_comments .comment-author-link, .widget.widget_recent_comments a {
	display:inline;
	font-weight:400;
	font-style:normal;
}
.widget.widget_recent_entries li {
	padding:10px 0;
}
.widget.widget_recent_entries li a {
	padding:0 0 5px;
	font-size:14px;
	font-size:1.0769230769rem;
}
.widget.widget_recent_entries li .post-date {
	font-style:italic;
}
.widget.widget_rss li {
	padding:10px 0;
	list-style:none;
}
.widget.widget_rss li a.rsswidget {
	padding-bottom:0;
	border-bottom:none;
	color:#000000;
	font-size:14px;
	font-size:1.0769230769rem;
	font-weight:600;
	line-height:normal;
	letter-spacing:-1px;
}
.widget.widget_rss li .rss-date {
	display:block;
	margin:5px 0 10px;
	color:#9e9d9d;
	font-size:11px;
	font-size:0.8461538462rem;
	font-style:italic;
	line-height:normal;
}
.widget.widget_rss li cite {
	display:block;
	margin-top:10px;
	font-size:12px;
	font-size:0.9230769231em;
	font-style:italic;
	text-align:right;
}
.widget.widget_nav_menu .menu, .widget.widget_nav_menu .menu > ul {
	margin:0;
	padding-left:0;
	border:1px solid #dcd0c7;
	background:white;
	list-style:none;
}
.site-footer .widget.widget_nav_menu .menu, .site-footer .widget.widget_nav_menu .menu > ul {
	border-top:none;
	border-right:none;
	border-bottom-color:rgba(255, 255, 255, 0.1);
	border-left:none;
	background:transparent;
}
.widget.widget_nav_menu .menu .sub-menu, .widget.widget_nav_menu .menu .children, .widget.widget_nav_menu .menu > ul .sub-menu, .widget.widget_nav_menu .menu > ul .children {
	display:none;
	position:relative;
	padding-left:20px;
	border-top:1px solid #dcd0c7;
	background-image:none !important;
	list-style:none;
}
.site-footer .widget.widget_nav_menu .menu .sub-menu, .site-footer
.widget.widget_nav_menu .menu .children, .site-footer .widget.widget_nav_menu .menu > ul .sub-menu, .site-footer
.widget.widget_nav_menu .menu > ul .children {
	border-top-color:rgba(255, 255, 255, 0.1);
}
.widget.widget_nav_menu .menu .sub-menu .menu-item, .widget.widget_nav_menu .menu .sub-menu .page_item, .widget.widget_nav_menu .menu .children .menu-item, .widget.widget_nav_menu .menu .children .page_item, .widget.widget_nav_menu .menu > ul .sub-menu .menu-item, .widget.widget_nav_menu .menu > ul .sub-menu .page_item, .widget.widget_nav_menu .menu > ul .children .menu-item, .widget.widget_nav_menu .menu > ul .children .page_item {
	border-left:1px dashed #dcd0c7;
}
.site-footer .widget.widget_nav_menu .menu .sub-menu .menu-item, .site-footer .widget.widget_nav_menu .menu .sub-menu .page_item, .site-footer
.widget.widget_nav_menu .menu .children .menu-item, .site-footer
.widget.widget_nav_menu .menu .children .page_item, .site-footer .widget.widget_nav_menu .menu > ul .sub-menu .menu-item, .site-footer .widget.widget_nav_menu .menu > ul .sub-menu .page_item, .site-footer
.widget.widget_nav_menu .menu > ul .children .menu-item, .site-footer
.widget.widget_nav_menu .menu > ul .children .page_item {
	border-left-color:rgba(255, 255, 255, 0.1);
}
.widget.widget_nav_menu .menu-item, .widget.widget_nav_menu .page_item {
	position:relative;
}
.widget.widget_nav_menu .menu-item:not(:last-child), .widget.widget_nav_menu .page_item:not(:last-child) {
	border-bottom:1px solid #dcd0c7;
}
.site-footer .widget.widget_nav_menu .menu-item:not(:last-child), .site-footer .widget.widget_nav_menu .page_item:not(:last-child) {
	border-bottom-color:rgba(255, 255, 255, 0.1);
}
.widget.widget_nav_menu .menu-item a, .widget.widget_nav_menu .page_item a {
	display:block;
	padding:15px 20px;
	color:inherit;
	font-size:12px;
	font-size:0.9230769231em;
	font-weight:600;
	line-height:1.5;
	letter-spacing:1px;
	text-transform:uppercase;
}
.widget.widget_nav_menu .menu-item a:hover, .widget.widget_nav_menu .page_item a:hover {
	color:#ecad25;
}
.widget.widget_nav_menu .menu-item-has-children, .widget.widget_nav_menu .page_item_has_children {
	position:relative;
}
.widget.widget_nav_menu .menu-item-has-children > button, .widget.widget_nav_menu .page_item_has_children > button {
	position:absolute;
	top:0;
	right:0;
	width:50px;
	padding:15px 25px 13px 20px;
	border:none;
	border-left:1px solid #dcd0c7;
	-webkit-border-radius:0;
	border-radius:0;
	outline:none;
	color:#000000;
	background:white;
	font-family:"FontAwesome";
	font-size:18px;
	font-size:1.3846153846em;
	line-height:1.1;
	text-align:center;
	cursor:pointer;
}
.site-footer .widget.widget_nav_menu .menu-item-has-children > button, .site-footer .widget.widget_nav_menu .page_item_has_children > button {
	border-left:1px solid rgba(255, 255, 255, 0.1);
	color:inherit;
	background-color:transparent;
}
.widget.widget_nav_menu .menu-item-has-children.active:after, .widget.widget_nav_menu .page_item_has_children.active:after {
	content:"\f106";
}
.widget.widget_text img, .widget.widget_text input, .widget.widget_text textarea, .widget.widget_text select {
	max-width:100%;
}
.site-footer .widget.widget_text img, .site-footer .widget.widget_text input, .site-footer .widget.widget_text textarea, .site-footer .widget.widget_text select {
	color:white;
}
.widget .tagcloud a {
	display:inline-block;
	overflow:hidden;
	position:relative;
	z-index:1;
	margin:0 2px 5px 0;
	padding:5px 10px;
	border:2px solid #ecad25;
	font-size:1em !important;
	font-weight:700;
	text-transform:uppercase;
}
.widget .tagcloud a:before, .widget .tagcloud a:after {
	position:absolute;
	z-index:-1;
	top:0;
	width:50%;
	height:100%;
	background-color:#ecad25;
	content:" ";
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.widget .tagcloud a:before {
	left:-50%;
}
.widget .tagcloud a:after {
	right:-50%;
}
.widget .tagcloud a:hover {
	color:white;
}
.widget .tagcloud a:hover:before {
	left:0;
}
.widget .tagcloud a:hover:after {
	right:0;
}
.widget #wp-calendar {
	width:100%;
	border-collapse:collapse;
	background-color:white;
}
.widget #wp-calendar td, .widget #wp-calendar th {
	padding:10px;
	border:1px solid #ffffff;
	text-align:center;
}
.widget #wp-calendar td:last-child, .widget #wp-calendar th:last-child {
	color:#ae4f4f;
}
.widget #wp-calendar th {
	background:#ffffff;
	font-weight:400;
}
.widget #wp-calendar td {
	font-weight:700;
}
.widget #wp-calendar caption {
	padding:10px;
	padding:15px 20px;
	color:white;
	background-color:#ae4f4f;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
}
.widget #wp-calendar #today {
	position:relative;
}
.widget #wp-calendar #today:before {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border:2px solid #ae4f4f;
	-webkit-border-radius:50%;
	border-radius:50%;
	content:" ";
}
.widget #wp-calendar #today a {
	color:white;
}
.widget #wp-calendar tfoot {
	letter-spacing:1px;
	text-transform:uppercase;
}
.widget.widget-newsletter {
	overflow:hidden;
	position:relative;
	z-index:1;
	background:#6a4294;
}
.widget.widget-newsletter .widget-title {
	position:relative !important;
	color:white;
	background:transparent !important;
	font-size:12px;
	font-size:0.85714em;
	letter-spacing:5px;
	text-transform:uppercase;
}
.widget.widget-newsletter:after {
	position:absolute;
	z-index:-1;
	right:-50px;
	bottom:-80px;
	color:#8568a4;
	font-family:"Simple-Line-Icons";
	font-size:300px;
	line-height:normal;
	content:"\e01e";
}
.widget.widget-newsletter form {
	padding:0 30px 30px;
}
.widget.widget-newsletter form input {
	width:100%;
	margin-bottom:20px;
	border-color:white;
	color:white;
	background:none;
}
.widget.widget-login input:not([type="checkbox"]) {
	width:100%;
}
.widget.widget-login .remember-me {
	float:left;
}
.widget.widget-login .login-submit {
	float:right;
}
.widget.widget-login .forget-link {
	clear:both;
	margin-bottom:0;
	padding-top:20px;
	border-top:1px solid #ffffff;
	font-weight:300;
	text-align:center;
}
.widget.widget_search form {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
}
.widget.widget_search form label {
	padding-right:20px;
	-webkit-box-flex:1;
	-webkit-flex:1 0 auto;
	-ms-flex:1 0 auto;
	flex:1 0 auto;
}
.widget.widget_search label {
	*zoom:1;
}
.widget.widget_search label:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.widget.widget_search .screen-reader-text {
	display:none;
}
.widget.widget_search input {
	width:100%;
	max-width:100%;
	text-align:left;
}
.widget.widget_search input[type="submit"] {
	min-width:90px;
	text-align:center;
	-webkit-box-flex:0;
	-webkit-flex:0 0 100px;
	-ms-flex:0 0 100px;
	flex:0 0 100px;
}
.widget .testimonial-slider blockquote p {
	font-style:normal;
}
/* 7. Reusable Components */
/* 7.1 Buttons */
.button, button, input[type="submit"], input[type="reset"], .widget.widget_shopping_cart .buttons .wc-forward, .widget.widget_shopping_cart .buttons .wc-forward.checkout {
	padding:10px 15px;
	border:none;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:white;
	background-color:#ecad25;
	font-size:13px;
	font-size:1em;
	font-weight:700;
	text-align:center;
	text-transform:uppercase;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.button:hover, button:hover, input:hover[type="submit"], input:hover[type="reset"], .widget.widget_shopping_cart .buttons .wc-forward:hover {
	color:white;
	background-color:#f0bf54;
}
.button.secondary, button.secondary, input.secondary[type="submit"], input[type="reset"], .widget.widget_shopping_cart .buttons .secondary.wc-forward, .widget.widget_shopping_cart .buttons .wc-forward.checkout {
	background-color:#000000;
}
.button.secondary:hover, button.secondary:hover, input.secondary:hover[type="submit"], input:hover[type="reset"], .widget.widget_shopping_cart .buttons .secondary.wc-forward:hover, .widget.widget_shopping_cart .buttons .wc-forward.checkout:hover {
	background-color:#1a1919;
}
/* 7.2 Social Icon */
.social-links {
	text-align:center;
	*zoom:1;
}
.social-links:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.social-links.large {
	font-size:30px;
	font-size:2.3076923077em;
}
.social-links.large a {
	display:inline-block;
	width:40px;
	height:40px;
	padding:0;
	text-align:center;
}
.social-links.small {
	font-size:14px;
	font-size:1.0769230769em;
}
.social-links.small a {
	display:inline-block;
	width:20px;
	height:20px;
	padding:0;
	text-align:center;
}
.social-links a {
	display:inline-block;
	padding:0 20px;
	border:none;
	-webkit-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}
.social-links a.facebook {
	color:#3b5998;
}
.social-links a.twitter {
	color:#55acee;
}
.social-links a.google-plus {
	color:#e02f2f;
}
.social-links a.linkedin {
	color:#007bb5;
}
.social-links a.spotify {
	color:#78b842;
}
.social-links a.codepen {
	color:#000000;
}
.social-links a.digg {
	color:#115c83;
}
.social-links a.foursquare {
	color:#f84777;
}
.social-links a.github {
	color:#000000;
}
.social-links a.reddit {
	color:#ef4623;
}
.social-links a.skype {
	color:#00aff0;
}
.social-links a.behance {
	color:#111111;
}
.social-links a.youtube {
	color:#e02b28;
}
.social-links a.steam {
	color:#000000;
}
.social-links a.dribbble {
	color:#e94c89;
}
.social-links a.tumblr {
	color:#44546a;
}
.social-links a.wordpress {
	color:#21759b;
}
.social-links a.instagram {
	color:#974518;
}
.social-links a.pinterest {
	color:#cc2127;
}
.social-links a.flickr {
	color:#0063db;
}
.social-links a.vimeo {
	color:#1ab7ea;
}
.social-links a.vine {
	color:#00b489;
}
.social-links a.deviantart {
	color:#536551;
}
.social-links a.lastfm {
	color:#da001c;
}
.social-links a.soundcloud {
	color:#ff4700;
}
.social-links a:hover {
	color:#adadad;
}
.social-links.boxed.small a {
	width:20px;
	height:20px;
	padding:1px;
	font-size:14px;
	line-height:normal;
}
.social-links.boxed.large a, .social-links.boxed.medium a {
	width:40px;
	height:40px;
	padding:8px;
	font-size:18px;
}
.social-links.boxed a {
	display:block !important;
	float:left;
	margin-bottom:0;
	color:white !important;
	text-align:center;
}
.social-links.boxed a.facebook {
	background-color:#3b5998;
}
.social-links.boxed a.twitter {
	background-color:#55acee;
}
.social-links.boxed a.google-plus {
	background-color:#e02f2f;
}
.social-links.boxed a.linkedin {
	background-color:#007bb5;
}
.social-links.boxed a.spotify {
	background-color:#78b842;
}
.social-links.boxed a.codepen {
	background-color:#000000;
}
.social-links.boxed a.digg {
	background-color:#115c83;
}
.social-links.boxed a.foursquare {
	background-color:#f84777;
}
.social-links.boxed a.github {
	background-color:#000000;
}
.social-links.boxed a.reddit {
	background-color:#ef4623;
}
.social-links.boxed a.skype {
	background-color:#00aff0;
}
.social-links.boxed a.behance {
	background-color:#111111;
}
.social-links.boxed a.youtube {
	background-color:#e02b28;
}
.social-links.boxed a.steam {
	background-color:#000000;
}
.social-links.boxed a.dribbble {
	background-color:#e94c89;
}
.social-links.boxed a.tumblr {
	background-color:#44546a;
}
.social-links.boxed a.wordpress {
	background-color:#21759b;
}
.social-links.boxed a.instagram {
	background-color:#974518;
}
.social-links.boxed a.pinterest {
	background-color:#cc2127;
}
.social-links.boxed a.flickr {
	background-color:#0063db;
}
.social-links.boxed a.vimeo {
	background-color:#1ab7ea;
}
.social-links.boxed a.vine {
	background-color:#00b489;
}
.social-links.boxed a.deviantart {
	background-color:#536551;
}
.social-links.boxed a.lastfm {
	background-color:#da001c;
}
.social-links.boxed a.soundcloud {
	background-color:#ff4700;
}
.social-links.boxed a:hover {
	background-color:#adadad;
}
.social-links.rounded.small a {
	width:20px;
	height:20px;
	padding:1px;
	font-size:14px;
	line-height:normal;
}
.social-links.rounded.large a, .social-links.rounded.medium a {
	width:40px;
	height:40px;
	padding:8px;
	font-size:18px;
}
.social-links.rounded a {
	display:block !important;
	float:left;
	margin-bottom:0;
	-webkit-border-radius:50%;
	border-radius:50%;
	color:white !important;
	text-align:center;
}
.social-links.rounded a.facebook {
	background-color:#3b5998;
}
.social-links.rounded a.twitter {
	background-color:#55acee;
}
.social-links.rounded a.google-plus {
	background-color:#e02f2f;
}
.social-links.rounded a.linkedin {
	background-color:#007bb5;
}
.social-links.rounded a.spotify {
	background-color:#78b842;
}
.social-links.rounded a.codepen {
	background-color:#000000;
}
.social-links.rounded a.digg {
	background-color:#115c83;
}
.social-links.rounded a.foursquare {
	background-color:#f84777;
}
.social-links.rounded a.github {
	background-color:#000000;
}
.social-links.rounded a.reddit {
	background-color:#ef4623;
}
.social-links.rounded a.skype {
	background-color:#00aff0;
}
.social-links.rounded a.behance {
	background-color:#111111;
}
.social-links.rounded a.youtube {
	background-color:#e02b28;
}
.social-links.rounded a.steam {
	background-color:#000000;
}
.social-links.rounded a.dribbble {
	background-color:#e94c89;
}
.social-links.rounded a.tumblr {
	background-color:#44546a;
}
.social-links.rounded a.wordpress {
	background-color:#21759b;
}
.social-links.rounded a.instagram {
	background-color:#974518;
}
.social-links.rounded a.pinterest {
	background-color:#cc2127;
}
.social-links.rounded a.flickr {
	background-color:#0063db;
}
.social-links.rounded a.vimeo {
	background-color:#1ab7ea;
}
.social-links.rounded a.vine {
	background-color:#00b489;
}
.social-links.rounded a.deviantart {
	background-color:#536551;
}
.social-links.rounded a.lastfm {
	background-color:#da001c;
}
.social-links.rounded a.soundcloud {
	background-color:#ff4700;
}
.social-links.rounded a:hover {
	background-color:#adadad;
}
/* 7.3 Owl Carousel */
.owl-carousel .animated {
	-webkit-animation-duration:1000ms;
	-o-animation-duration:1000ms;
	animation-duration:1000ms;
	-webkit-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
}
.owl-carousel .owl-animated-in {
	z-index:0;
}
.owl-carousel .owl-animated-out {
	z-index:1;
}
.owl-carousel .fadeOut {
	-webkit-animation-name:fadeOut;
	-o-animation-name:fadeOut;
	animation-name:fadeOut;
}
@-webkit-keyframes fadeOut {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@-o-keyframes fadeOut {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes fadeOut {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
.owl-height {
	-webkit-transition:height 500ms ease-in-out;
	-o-transition:height 500ms ease-in-out;
	transition:height 500ms ease-in-out;
}
.owl-carousel {
	display:none;
	position:relative;
	z-index:1;
	width:100%;
	-webkit-tap-highlight-color:transparent;
}
.owl-carousel .owl-stage {
	position:relative;
	-ms-touch-action:pan-Y;
}
.owl-carousel .owl-stage:after {
	display:block;
	visibility:hidden;
	clear:both;
	height:0;
	line-height:0;
	content:".";
}
.owl-carousel .owl-stage-outer {
	overflow:hidden;
	position:relative;
	-webkit-transform:translate3d(0px, 0, 0);
}
.owl-carousel .owl-controls .owl-dot {
	cursor:pointer;
	cursor:hand;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.owl-carousel .owl-controls .owl-nav .owl-next, .owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor:pointer;
	cursor:hand;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.owl-carousel.owl-loaded {
	display:block;
}
.owl-carousel.owl-loading {
	display:block;
	opacity:0;
}
.owl-carousel.owl-hidden {
	opacity:0;
}
.owl-carousel .owl-refresh .owl-item {
	display:none;
}
.owl-carousel .owl-item {
	float:left;
	position:relative;
	min-height:1px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	-webkit-backface-visibility:hidden;
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
}
.owl-carousel .owl-item img {
	display:block;
	width:100%;
	-webkit-transform-style:preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select:auto;
	-moz-user-select:auto;
	-ms-user-select:auto;
	user-select:auto;
}
.owl-carousel .owl-grab {
	cursor:move;
	cursor:-webkit-grab;
	cursor:-o-grab;
	cursor:-ms-grab;
	cursor:-moz-grab;
	cursor:grab;
}
.owl-carousel.owl-rtl {
	direction:rtl;
}
.owl-carousel.owl-rtl .owl-item {
	float:right;
}
.no-js .owl-carousel {
	display:block;
}
.owl-carousel .owl-item .owl-lazy {
	opacity:0;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
}
.owl-carousel .owl-item img {
	-webkit-transform-style:preserve-3d;
	transform-style:preserve-3d;
}
.owl-carousel .owl-video-wrapper {
	position:relative;
	height:100%;
	background:#000000;
}
.owl-carousel .owl-video-play-icon {
	position:absolute;
	z-index:1;
	top:50%;
	left:50%;
	width:80px;
	height:80px;
	margin-top:-40px;
	margin-left:-40px;
	background:url(owl.video.play.png) no-repeat;
	cursor:pointer;
	-webkit-transition:scale 100ms ease;
	-o-transition:scale 100ms ease;
	transition:scale 100ms ease;
	-webkit-backface-visibility:hidden;
}
.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition:scale(1.3, 1.3);
	-o-transition:scale(1.3, 1.3);
	transition:scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display:none;
}
.owl-carousel .owl-video-tn {
	height:100%;
	opacity:0;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:contain;
	-webkit-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
	position:relative;
	z-index:1;
}
/* 7.4 Owl Carousel */
.vc_general.vc_btn3, .vc_btn {
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	text-transform:uppercase;
	list-style:1px;
}
.has-overlay {
	position:relative;
	z-index:1;
}
.has-overlay .tokoo-row-overlay {
	display:none;
}
.has-overlay .tokoo-row-overlay:nth-of-type(1) {
	display:block;
}
.has-overlay .vc_video-bg {
	z-index:-10 !important;
}
.vc_row.bg-top-left, .vc_row.bg-top-left .vc_parallax-inner .vc_column_container.bg-top-left {
	background-position:top left     !important;
}
.vc_row.bg-top-center, .vc_row.bg-top-center .vc_parallax-inner .vc_column_container.bg-top-center {
	background-position:top center   !important;
}
.vc_row.bg-top-right, .vc_row.bg-top-right .vc_parallax-inner .vc_column_container.bg-top-right {
	background-position:top right    !important;
}
.vc_row.bg-center-left, .vc_row.bg-center-left .vc_parallax-inner .vc_column_container.bg-center-left {
	background-position:center left  !important;
}
.vc_row.bg-center, .vc_row.bg-center .vc_parallax-inner .vc_column_container.bg-center {
	background-position:center       !important;
}
.vc_row.bg-center-right, .vc_row.bg-center-right .vc_parallax-inner .vc_column_container.bg-center-right {
	background-position:center right !important;
}
.vc_row.bg-bottom-left, .vc_row.bg-bottom-left .vc_parallax-inner .vc_column_container.bg-bottom-left {
	background-position:bottom left  !important;
}
.vc_row.bg-bottom-center, .vc_row.bg-bottom-center .vc_parallax-inner .vc_column_container.bg-bottom-center {
	background-position:bottom center !important;
}
.vc_row.bg-bottom-right, .vc_row.bg-bottom-right .vc_parallax-inner .vc_column_container.bg-bottom-right {
	background-position:bottom right !important;
}
.fixed-background {
	background-attachment:fixed !important;
}
.fixed-background .vc_parallax-inner {
	background-attachment:fixed !important;
}
.video-background {
	overflow:hidden;
	position:relative;
	z-index:1;
}
.tokoo-row-overlay {
	position:absolute !important;
	z-index:-9;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.video-bg-wrapper {
	overflow:hidden;
	position:absolute;
	z-index:-10;
	top:0;
	bottom:0;
	width:100%;
}
.video-bg-wrapper video {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	width:auto;
	min-width:100%;
	min-height:100%;
	margin:auto;
}
.vc_grid-filter-item {
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:12px;
	font-size:0.9230769231em;
	font-style:italic;
}
.vc_grid-filter-item.vc_active, .vc_grid-filter-item:hover {
	color:#ecad25 !important;
	background-color:transparent !important;
}
.vc_grid-filter-item.vc_active span, .vc_grid-filter-item:hover span {
	color:#ecad25 !important;
}
.koo-icon-box {
	width:100%;
	text-align:center;
	*zoom:1;
}
.koo-icon-box:after {
	display:block;
	clear:both;
	overflow:hidden;
	height:0;
	content:" ";
}
.koo-icon-box__icon {
	margin-bottom:20px;
	font-size:18px;
}
.koo-icon-box__icon--circle {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	width:100px;
	height:100px;
	margin:0 auto 20px;
	-webkit-border-radius:50%;
	border-radius:50%;
	color:white;
}
.koo-icon-box__icon--circle .fa, .koo-icon-box__icon--circle [class*="ico"] {
	margin:auto;
}
.koo-icon-box__icon--circle-outline {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	width:100px;
	height:100px;
	margin:0 auto 20px;
	border:2px solid;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.koo-icon-box__icon--circle-outline .fa, .koo-icon-box__icon--circle-outline [class*="ico"] {
	margin:auto;
}
.koo-icon-box--left-icon {
	position:relative;
	text-align:left;
}
.koo-icon-box--left-icon .koo-icon-box__icon {
	float:left;
	width:64px;
	height:64px;
	margin-right:30px;
}
.koo-icon-box--right-icon {
	position:relative;
	text-align:left;
}
.koo-icon-box--right-icon .koo-icon-box__icon {
	float:right;
	width:64px;
	height:64px;
	margin-left:30px;
}
.koo-icon-box__content {
	display:table;
}
.koo-icon-box .text-align-left {
	text-align:left !important;
}
.koo-icon-box .text-align-right {
	text-align:right !important;
}
.fullwidth-image .vc_single_image-wrapper {
	display:block !important;
}
.fullwidth-image img {
	width:100%;
	height:auto;
}
.section-title {
	position:relative;
	margin-bottom:50px;
	padding-bottom:20px;
}
.section-title:after {
	position:absolute;
	bottom:0;
	left:0;
	width:45px;
	height:5px;
	background:url(../img/separator.png) no-repeat;
	content:" ";
}
.section-title--center {
	text-align:center;
}
.section-title--center:after {
	right:0;
	margin:auto;
}
.imagebox {
	position:relative;
	z-index:1;
	padding:30px;
}
.imagebox.bg-top-left {
	background-position:top left     !important;
}
.imagebox.bg-top-center {
	background-position:top center   !important;
}
.imagebox.bg-top-right {
	background-position:top right    !important;
}
.imagebox.bg-center-left {
	background-position:center left  !important;
}
.imagebox.bg-center {
	background-position:center       !important;
}
.imagebox.bg-center-right {
	background-position:center right !important;
}
.imagebox.bg-bottom-left {
	background-position:bottom left  !important;
}
.imagebox.bg-bottom-center {
	background-position:bottom center !important;
}
.imagebox.bg-bottom-right {
	background-position:bottom right !important;
}
.imagebox--align-left {
	text-align:left;
}
.imagebox--align-center {
	text-align:center;
}
.imagebox--align-right {
	text-align:right;
}
.imagebox__title {
	margin-top:0;
	margin-bottom:10px;
	font-size:28px;
	font-size:2.1538461538em;
	text-transform:uppercase;
}
.imagebox__desc {
	margin-bottom:20px;
}
.imagebox__action {
	font-weight:700;
	text-transform:uppercase;
}
.imagebox__overlay {
	position:absolute;
	z-index:-1;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.imagebox__block-link {
	position:absolute;
	z-index:2;
	top:0;
	right:0;
	bottom:0;
	left:0;
}
.testimonial-box {
	overflow:hidden;
	position:relative;
	padding-left:70px;
}
.testimonial-box .testimonial-image {
	position:absolute;
	top:10px;
	left:0;
}
.testimonial-box .testimonial-image img {
	width:48px;
	height:48px;
	-webkit-border-radius:50%;
	border-radius:50%;
}
.testimonial-box .testimonial-content blockquote {
	margin:0 0 20px;
	padding:0;
}
.testimonial-box .testimonial-content blockquote:before, .testimonial-box .testimonial-content blockquote:after {
	display:none;
}
.testimonial-box .testimonial-content blockquote p {
	margin:0;
	font-family:"Montserrat", "Open Sans", arial, sans-serif;
	font-size:14px;
	font-size:1.0769230769rem;
	font-weight:400;
	font-style:normal;
}
.testimonial-box .testimonial-content cite strong {
	display:block;
	font-style:normal;
}
.product-single-component .product {
	width:100% !important;
}
.vertical-aligned {
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-align-items:center;
	align-items:center;
	-webkit-box-align:center;
	-ms-flex-align:center;
}
.products-carousel {
	position:relative;
	padding-top:50px;
}
.products-carousel .owl-nav {
	position:absolute;
	z-index:2;
	top:0;
	right:50px;
}
.products-carousel .owl-nav .owl-prev, .products-carousel .owl-nav .owl-next {
	display:inline-block;
	margin-right:5px;
	padding:5px 10px;
	-webkit-border-radius:3px;
	border-radius:3px;
	color:white;
	background:#111111;
	line-height:1;
}
.products-carousel .owl-nav .owl-prev:hover, .products-carousel .owl-nav .owl-next:hover {
	background-color:#444444;
}
.vc_btn3.vc_btn3-shape-rounded {
	-webkit-border-radius:2px !important;
	border-radius:2px !important;
}
/* 7.4 Owl Carousel */
.mfp-bg {
	overflow:hidden;
	position:fixed;
	z-index:1042;
	top:0;
	left:0;
	width:100%;
	height:100%;
	opacity:0.8;
	background:#0b0b0b;
	filter:alpha(opacity=80);
}
.mfp-wrap {
	position:fixed;
	z-index:1043;
	top:0;
	left:0;
	width:100%;
	height:100%;
	outline:none !important;
	-webkit-backface-visibility:hidden;
}
.mfp-container {
	position:absolute;
	top:0;
	left:0;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:100%;
	padding:0 8px;
	text-align:center;
}
.mfp-container:before {
	display:inline-block;
	height:100%;
	vertical-align:middle;
	content:"";
}
.mfp-align-top .mfp-container:before {
	display:none;
}
.mfp-content {
	display:inline-block;
	position:relative;
	z-index:1045;
	margin:0 auto;
	text-align:left;
	vertical-align:middle;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width:100%;
	cursor:auto;
}
.mfp-ajax-cur {
	cursor:progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor:-moz-zoom-out;
	cursor:-webkit-zoom-out;
	cursor:zoom-out;
}
.mfp-zoom {
	cursor:pointer;
	cursor:-webkit-zoom-in;
	cursor:-moz-zoom-in;
	cursor:zoom-in;
}
.mfp-auto-cursor .mfp-content {
	cursor:auto;
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
.mfp-loading.mfp-figure {
	display:none;
}
.mfp-hide {
	display:none !important;
}
.mfp-preloader {
	position:absolute;
	z-index:1044;
	top:50%;
	right:8px;
	left:8px;
	width:auto;
	margin-top:-0.8em;
	color:#cccccc;
	text-align:center;
}
.mfp-preloader a {
	color:#cccccc;
}
.mfp-preloader a:hover {
	color:#ffffff;
}
.mfp-s-ready .mfp-preloader {
	display:none;
}
.mfp-s-error .mfp-content {
	display:none;
}
button.mfp-close, button.mfp-arrow {
	display:block;
	overflow:visible;
	z-index:1046;
	padding:0;
	border:0;
	outline:none;
	background:transparent;
	-webkit-box-shadow:none;
	box-shadow:none;
	cursor:pointer;
	-webkit-appearance:none;
}
button::-moz-focus-inner {
	padding:0;
	border:0;
}
.mfp-close {
	position:absolute;
	top:0;
	right:0;
	width:44px;
	height:44px;
	padding:0 0 18px 10px;
	opacity:0.65;
	color:#ffffff;
	font-family:Arial, Baskerville, monospace;
	font-size:28px;
	font-style:normal;
	line-height:44px;
	text-align:center;
	text-decoration:none;
	filter:alpha(opacity=65);
}
.mfp-close:hover, .mfp-close:focus {
	opacity:1;
	filter:alpha(opacity=100);
}
.mfp-close:active {
	top:1px;
}
.mfp-close-btn-in .mfp-close {
	color:#333333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	right:-6px;
	width:100%;
	padding-right:6px;
	color:#ffffff;
	text-align:right;
}
.mfp-counter {
	position:absolute;
	top:0;
	right:0;
	color:#cccccc;
	font-size:12px;
	line-height:18px;
	white-space:nowrap;
}
.mfp-arrow {
	position:absolute;
	top:50%;
	width:90px;
	height:110px;
	margin:0;
	margin-top:-55px;
	padding:0;
	opacity:0.65;
	filter:alpha(opacity=65);
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
	margin-top:-54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
	opacity:1;
	filter:alpha(opacity=100);
}
.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:0;
	height:0;
	margin-top:35px;
	margin-left:35px;
	border:medium inset transparent;
	content:"";
}
.mfp-arrow:after, .mfp-arrow .mfp-a {
	top:8px;
	border-top-width:13px;
	border-bottom-width:13px;
}
.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width:21px;
	border-bottom-width:21px;
	opacity:0.7;
}
.mfp-arrow-left {
	left:0;
}
.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
	margin-left:31px;
	border-right:17px solid #ffffff;
}
.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
	margin-left:25px;
	border-right:27px solid #3f3f3f;
}
.mfp-arrow-right {
	right:0;
}
.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
	margin-left:39px;
	border-left:17px solid #ffffff;
}
.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	border-left:27px solid #3f3f3f;
}
.mfp-iframe-holder {
	padding-top:40px;
	padding-bottom:40px;
}
.mfp-iframe-holder .mfp-content {
	width:100%;
	max-width:900px;
	line-height:0;
}
.mfp-iframe-holder .mfp-close {
	top:-40px;
}
.mfp-iframe-scaler {
	overflow:hidden;
	width:100%;
	height:0;
	padding-top:56.25%;
}
.mfp-iframe-scaler iframe {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000000;
	-webkit-box-shadow:0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow:0 0 8px rgba(0, 0, 0, 0.6);
}
/* Main image in popup */
img.mfp-img {
	display:block;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:auto;
	max-width:100%;
	height:auto;
	margin:0 auto;
	padding:40px 0 40px;
	line-height:0;
}
/* The shadow behind the image */
.mfp-figure {
	line-height:0;
}
.mfp-figure:after {
	display:block;
	position:absolute;
	z-index:-1;
	top:40px;
	right:0;
	bottom:40px;
	left:0;
	width:auto;
	height:auto;
	background:#444444;
	-webkit-box-shadow:0 0 8px rgba(0, 0, 0, 0.6);
	box-shadow:0 0 8px rgba(0, 0, 0, 0.6);
	content:"";
}
.mfp-figure small {
	display:block;
	color:#bdbdbd;
	font-size:12px;
	line-height:14px;
}
.mfp-figure figure {
	margin:0;
}
.mfp-bottom-bar {
	position:absolute;
	top:100%;
	left:0;
	width:100%;
	margin-top:-36px;
	cursor:auto;
}
.mfp-title {
	padding-right:36px;
	color:#f3f3f3;
	line-height:18px;
	text-align:left;
	word-wrap:break-word;
}
.mfp-image-holder .mfp-content {
	max-width:100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor:pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
			 * Remove all paddings around the image on small screen
			 */
	.mfp-img-mobile .mfp-image-holder {
		padding-right:0;
		padding-left:0;
	}
	.mfp-img-mobile img.mfp-img {
		padding:0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top:0;
		bottom:0;
	}
	.mfp-img-mobile .mfp-figure small {
		display:inline;
		margin-left:5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		position:fixed;
		top:auto;
		bottom:0;
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		box-sizing:border-box;
		margin:0;
		padding:3px 5px;
		background:rgba(0, 0, 0, 0.6);
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding:0;
	}
	.mfp-img-mobile .mfp-counter {
		top:3px;
		right:5px;
	}
	.mfp-img-mobile .mfp-close {
		position:fixed;
		top:0;
		right:0;
		width:35px;
		height:35px;
		padding:0;
		background:rgba(0, 0, 0, 0.6);
		line-height:35px;
		text-align:center;
	}
}
@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform:scale(0.75);
		-ms-transform:scale(0.75);
		-o-transform:scale(0.75);
		transform:scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin:0;
		-ms-transform-origin:0;
		-o-transform-origin:0;
		transform-origin:0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin:100%;
		-ms-transform-origin:100%;
		-o-transform-origin:100%;
		transform-origin:100%;
	}
	.mfp-container {
		padding-right:6px;
		padding-left:6px;
	}
}
.mfp-ie7 .mfp-img {
	padding:0;
}
.mfp-ie7 .mfp-bottom-bar {
	left:50%;
	width:600px;
	margin-top:5px;
	margin-left:-300px;
	padding-bottom:5px;
}
.mfp-ie7 .mfp-container {
	padding:0;
}
.mfp-ie7 .mfp-content {
	padding-top:44px;
}
.mfp-ie7 .mfp-close {
	top:0;
	right:0;
	padding-top:0;
}
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
	padding:0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
	top:0;
	bottom:0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
	padding:0;
}
/* 
for zoom animation 
uncomment this part if you haven't added this code anywhere else
*/
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
	opacity:0;
	-webkit-transition:all 0.3s ease-out;
	-o-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
	-webkit-backface-visibility:hidden;
}
.mfp-with-zoom.mfp-ready .mfp-container {
	opacity:1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
	opacity:0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container, .mfp-with-zoom.mfp-removing.mfp-bg {
	opacity:0;
}
/* 8. Footer Styles */
.site-footer {
	margin-top:0;
	padding:50px 0;
	color:#adadad;
	background-color:#272727;
	font-size:12px;
	font-size:0.9230769231em;
	line-height:1.5;
}
.page-template-fullwidth .site-footer {
	margin-top:0;
}
.colophon {
	padding:20px 0 0;
	border-top:1px solid rgba(255, 255, 255, 0.1);
	text-align:center;
}
.woocommerce-store-notice.demo_store {
	display:block !important;
	margin:0;
	padding:10px;
	color:white;
	background-color:#272727;
	text-align:center;
}
.screen-reader-text {
	visibility:hidden;
	overflow:hidden;
	position:absolute;
	top:-5px;
	left:-5px;
	width:px;
	height:1px;
	text-indent:-999px;
}