/**********************************************************************************/
/* Global *************************************************************************/
/**********************************************************************************/

.row,
.vc_span12.wpb_column
{
	padding:0 15px;
}

.row .row {
	padding:0;
}

.wpb_text_column {
	float: inherit !important;
}

.st-container
{
	overflow-x: hidden;
}

.without-sidebar .page-title,
.without-sidebar .entry-title,
.woocommerce .page-title,
.woocommerce .entry-title
{
	text-align:center;
}

a:active,
a:focus
{
	outline: 0 !important;
}

h1, h2, h3, h4, h5, h6,
h1 a
{
	font-weight: 700;
}

h1{
	font-size: 1.875rem;
	line-height: 1.33333em;
}

h2{
	font-size: 1.6875rem;
	line-height: 1.259259em;
}

.woocommerce h2 {
    font-size: 1.5rem;
}

h3{
	font-size: 1.4375rem;
	line-height: 1.391304em;
}

.woocommerce h3
{
	font-size: 1.125em;
}

h4{
	font-size: 1.125rem;
	line-height: 1.55555em;
}

h5{
	font-size: 1rem;
	line-height: 1.625em;
}

h6{
	font-size: 0.875rem;
	line-height: 1.71428em;
}

p
{
	font-size: 0.875rem;
	line-height: 1.71428em;
	margin-bottom: 0.8rem;
}

ul, ol, dl
{
	font-size: 0.875rem;
	line-height: 1.714em;
}

table tr td,
table thead tr th,
table tbody tr td,
table tfoot tr th,
table tfoot tr td
{
    line-height: 1.8rem;
}

table tr th,
table tr td
{
	padding-top: 8px;
	padding-bottom: 8px;
}


/**********************************************************************************/
/* Header *************************************************************************/
/**********************************************************************************/

.top-headers-wrapper {
    width: 100%;
}

.site-branding a {
	display: inline-block;
}

.site-tools {
	text-align:right;
	margin: 20px -30px 0 -30px;
	padding: 10px 22px 10px 7px;
}

.site-tools.site_tools_sticky {
	position: fixed;
	z-index: 999999;
	top: 0;
	width: 100%;
	margin-top: 0; 
	padding: 10px 22px 7px 7px;
	background: #fff;
}

.site-tools ul {
	padding:0;
	margin:0;
	list-style:none;
	font-size: 13px;
	line-height: 23px;
}

.site-tools ul li {
	display:inline-block;
	margin:0 8px 0 8px;
	position:relative;
	cursor:pointer;
	opacity: 1;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.site-tools ul li a {
	display:inline-block;
	text-align:right;
	width:25px;
	height:25px;
	overflow:hidden;
	font-size:24px;
	color:#314381;
	padding: 1px;
	margin: 0;
}

.site-tools ul li a img {
	vertical-align: inherit;
}

@media only screen and (min-width: 1024px){

	.site-tools ul li:hover
	{
		opacity: 0.6;
		
		transition: opacity 0.3s;
		-webkit-transition: opacity 0.3s;
	}

}

.site-tools ul li.mobile-menu-button
{
	padding: 0px;
	float: left;
}

.search-button-only .site-tools ul li.mobile-menu-button
{
	position: relative;
	top: -3px;
}

.site-tools ul li.mobile-menu-button a
{
	font-size: 13px;
	width: auto;
	height: 29px;
	padding: 1px 13px;
	border: 2px solid;
	border-color: transparent;
	position: relative;
	top: 4px;
}

.mobile-menu-text
{
	margin-right: 7px;
	display: inline-block;
}

.site-tools ul li.mobile-menu-button .fa
{
	font-size: 14px;
}



/* Site Search */

.site-search {	
	
	visibility: hidden;
	opacity: 0;
	
	height:50px;
	width: 100%;
	
	padding-right:33px;
	padding-top:6px;
	bottom:-8px;
	
	text-align: right;
	
	position:absolute;
	right: 0;
	
	transition: opacity 0.3s, visibility 0s ease .3s;
	-webkit-transition: opacity 0.3s, visibility 0s ease .3s;
}

.site-search.open {

	visibility: visible;
	opacity: 1;
	
	transition: opacity 0s ease .3s, visibility 0s ease .3s;
	-webkit-transition: opacity 0s ease .3s, visibility 0s ease .3s;
}


.site-search input[type=text],
.site-search input[type=search]
{
	display: inline-block;
	border: 0 none;
    padding: 0;
    width: 0;
	
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
}

.site-search.open input[type=text],
.site-search.open input[type=search]
{
	width: 100%;
	border: 1px solid #ddd;
	padding: 0 10px;
	
	transition: width 0.3s ease 0.32s;
	-webkit-transition: width 0.3s ease 0.32s;
}

.site-branding,
#site-navigation,
.site-tools
{
	opacity: 1;
	visibility: visible;
	
	transform: translate(0px, 0px);
	-webkit-transform : translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	
	transition: opacity .3s ease .32s, transform .3s ease .32s, visibility 0s ease .32s;
	-webkit-transition: opacity .3s ease .32s, transform .3s ease .32s, visibility 0s ease .32s;
}

.site-header.site-search-open #site-navigation,
.site-header.site-search-open .site-tools,
.site-header-sticky.site-search-open .site-branding,
.site-header-sticky.site-search-open #site-navigation,
.site-header-sticky.site-search-open .site-tools
{
	opacity: 0;
	visibility: hidden;
	
	transform: translate(0px, -30px);
	-webkit-transform : translate(0px, -30px);
	-ms-transform: translate(0px, -30px);
	
	transition: opacity .3s, transform .3s, visibility 0s ease .3s;
	-webkit-transition: opacity .3s, transform .3s, visibility 0s ease .3s;
}



/* Site Search Logo Centered*/

.site-header.header-centered.site-search-open .site-branding
{
	opacity: 1;
	visibility: visible;
	
	transform:none;
	-webkit-transform:none;
	-ms-transform:none;
	
	position: relative;
	z-index: 100;
}

.site-header.header-centered.site-search-open #site-navigation .site-tools
{
	transform:none;
	-wbkit-transform:none;
}



/* sticky-header */

.site-header-sticky{
	position: fixed;
	top: -100px;
	right: 0;
	width: 100%;
	z-index: 9998;
	padding: 15px 0;
	transition: all 0.15s;
	-webkit-transition: all 0.15s;
	background: #fff;
	display: none;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.20);
}

.site-header-sticky.on_page_scroll
{
	top: 0;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.site-header-sticky .site-logo
{
	max-height: 40px;
}

.site-header-sticky #site-navigation
{
	line-height: 54px;
}

.site-header-sticky.on_page_refresh
{
	top: 0;
	transition: none;
	-webkit-transition: none;
}

body:not(.vc_editor) .site-header-sticky.wpadminbar_onscreen
{
	top: 32px;
}

.site-header-sticky.on_page_refresh.wpadminbar_onscreen
{
	transition: none;
	-webkit-transition: none;
}

.site-header-sticky .site-search
{
	margin-top: -25px;
}

.site-header-sticky-inner
{
	position: relative;
}

.site-header-sticky.wpadminbar_onscreen.offcanvas-active,
.site-header-sticky.offcanvas-active
{
	top: -85px;
}

.site-header-sticky.wpadminbar_onscreen.offcanvas-active,
.site-header-sticky.on_page_scroll.offcanvas-active
{
	transition: none;
	-webkit-transition: none;
	top: -100px !important;
}

.site-header-sticky .main-navigation > ul > li > a
{
	line-height: 1;
}

/**********************************************************************************/
/* Menu Header ********************************************************************/
/**********************************************************************************/

#site-navigation-top-bar > ul {
    display: inline-block; 
    vertical-align: top;
}

#site-navigation > ul {
	display: inline-block; 
    vertical-align: middle;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 

	#site-navigation > ul, #site-navigation-top-bar > ul {
		-webkit-transform: translateZ(0);
	}
}

.header-centered #site-menu {
	margin-top:30px;
}

.header-centered #site-navigation {
	line-height:inherit !important;
}

.header-centered #site-navigation > ul {
    vertical-align:inherit;
}

.main-navigation {
	display:none;
}

.main-navigation > ul
{
	max-width: 80%;
}

.main-navigation ul ul {
	display: none;
}

.main-navigation ul li:hover > ul {
	display: block;
}

.main-navigation > ul > li.menu-item-has-children {
	padding-right:2px;
	margin-right:10px;
}

.main-navigation ul ul li.menu-item-has-children a {
	margin-right:40px;
}

.main-navigation ul li.menu-item-has-children > a:after {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	content: "\f105";
	display: block;
	width: 10px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: .9em;
	line-height:12px;
	text-align:left;
}

.main-navigation > ul > li.menu-item-has-children > a:after {
	top: 50%;
	right: 0px;
	content: "\f107";
	margin-top: -6px;
	line-height: 12px;
	height: auto;
	
}

.main-navigation ul {
	padding: 0;
	margin:0;
	list-style: none;
	position: relative;
}

.main-navigation ul:after {
	content: "";
	clear: both;
	display: block;
}

.main-navigation ul li {
	float: left;
	white-space:nowrap;
	position:relative;
}

.main-navigation ul li:hover {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
	
.main-navigation ul li:hover a {

}
	
.main-navigation ul li a {
	display: inline-block;
	margin: 10px 15px;
	text-decoration: none;
	color:#000;
	text-transform:uppercase;
}

.main-navigation ul li a:hover {
	color:#ccc;
}

.main-navigation > ul > li > a
{
	opacity: 1;
	margin: 0;
	padding: 10px 15px;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.site-header .main-navigation > ul > li > a
{
	border: 1px solid transparent;
	line-height: 1;
}

.main-navigation > ul > li:hover > a
{
	opacity: 0.6;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

@-webkit-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-moz-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-o-keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes main_nav_anim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.main-navigation ul ul {
	background: #fff;
	padding: 30px 0;
	position: absolute;
	top: 100%;
	left:-15px;
	min-width:250px;
	z-index: 99999;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.20);
	
	font-size: 13px;
	line-height: 23px;
	
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
			
	-webkit-animation-name: main_nav_anim;
	-moz-animation-name: main_nav_anim;
	-o-animation-name: main_nav_anim;
	animation-name: main_nav_anim;
}

/* filter Safari ( from 5+ till 6.1)  from Chrome: */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
	
	::i-block-chrome, .main-navigation ul ul
	{
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}
	
}

.main-navigation ul ul li {
	float: none; 
	border-top: 0px solid #ccc;
	position: relative;
	z-index: 99999;
}

.main-navigation ul ul li:last-child {
	border-bottom: 0px solid #ccc;
}
	
.main-navigation ul ul li a {
	margin: 3px 40px;
	border-bottom: 2px solid transparent;
	text-transform: none;
	color: #000 !important;
}
			
.main-navigation ul ul li a:hover {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-bottom-width:2px;
	border-bottom-style:solid;
	border-bottom-color:#314381;
}

.main-navigation ul ul ul {
	position: absolute;
	left: 100%;
	top:-15px;
    background: none;
}

.main-navigation ul ul ul li a {
	display: inline-block;
}


/*call to action button*/

.main-navigation > ul > li.call-to-action
{
	margin: 0px 4px 0;
}

.main-navigation > ul > li.call-to-action > a {
	border-width:1px;
	border-style:solid;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*megamenu*/
.main-navigation .megamenu-1-col ul ul,
.main-navigation .megamenu-2-col ul ul, 
.main-navigation .megamenu-3-col ul ul, 
.main-navigation .megamenu-4-col ul ul,
.main-navigation .megamenu-1-col ul ul ul,
.main-navigation .megamenu-2-col ul ul ul, 
.main-navigation .megamenu-3-col ul ul ul, 
.main-navigation .megamenu-4-col ul ul ul 
{
	background: transparent;
}

.main-navigation .megamenu-1-col ul .sub-menu,
.main-navigation .megamenu-2-col ul .sub-menu,
.main-navigation .megamenu-3-col ul .sub-menu,
.main-navigation .megamenu-4-col ul .sub-menu
{
    position: static;
    display: block;
}

.main-navigation .megamenu-1-col li.menu-item-has-children a:after,
.main-navigation .megamenu-2-col li.menu-item-has-children a:after,
.main-navigation .megamenu-3-col li.menu-item-has-children a:after,
.main-navigation .megamenu-4-col li.menu-item-has-children a:after
{
	display:none;
}

.main-navigation .megamenu-1-col ul li,
.main-navigation .megamenu-2-col ul li,
.main-navigation .megamenu-3-col ul li,
.main-navigation .megamenu-4-col ul li
{
	white-space:normal;
}

.main-navigation .megamenu-1-col ul ul,
.main-navigation .megamenu-2-col ul ul,
.main-navigation .megamenu-3-col ul ul,
.main-navigation .megamenu-4-col ul ul
{
	box-shadow: 0px 0px 0px rgba(0,0,0,0);
}

.main-navigation .megamenu-1-col > ul,
.main-navigation .megamenu-2-col > ul,
.main-navigation .megamenu-3-col > ul,
.main-navigation .megamenu-4-col > ul
{
	position:absolute;
	margin:0;
	padding:30px 0 10px 0;
}

.main-navigation .megamenu-1-col > ul ul,
.main-navigation .megamenu-2-col > ul ul,
.main-navigation .megamenu-3-col > ul ul,
.main-navigation .megamenu-4-col > ul ul
{
	margin:0;
	padding:5px 0 20px 0;
}

.main-navigation .megamenu-1-col > ul ul ul,
.main-navigation .megamenu-2-col > ul ul ul,
.main-navigation .megamenu-3-col > ul ul ul,
.main-navigation .megamenu-4-col > ul ul ul
{
	margin:0;
	padding:5px 0 0 0;
}

.main-navigation .megamenu-1-col > ul > li,
.main-navigation .megamenu-2-col > ul > li,
.main-navigation .megamenu-3-col > ul > li,
.main-navigation .megamenu-4-col > ul > li
{
    float: left;
	display:block;
	width:250px;	
}

.main-navigation .megamenu-4-col > ul > li
{
	width:200px;	
}

.main-navigation .megamenu-1-col > ul > li > a,
.main-navigation .megamenu-2-col > ul > li > a,
.main-navigation .megamenu-3-col > ul > li > a,
.main-navigation .megamenu-4-col > ul > li > a
{
	text-transform:uppercase;
}

.main-navigation .megamenu-1-col > ul > li:nth-child(1n+1) { clear: both; }
.main-navigation .megamenu-2-col > ul > li:nth-child(2n+1) { clear: both; }
.main-navigation .megamenu-3-col > ul > li:nth-child(3n+1) { clear: both; }
.main-navigation .megamenu-4-col > ul > li:nth-child(4n+1) { clear: both; }

.main-navigation .megamenu-1-col > ul { width:250px; }
.main-navigation .megamenu-2-col > ul { width:500px; }
.main-navigation .megamenu-3-col > ul { width:750px; }
.main-navigation .megamenu-4-col > ul { width:850px; }

.main-navigation .megamenu-1-col > ul.with_bg_image,
.main-navigation .megamenu-2-col > ul.with_bg_image,
.main-navigation .megamenu-3-col > ul.with_bg_image,
.main-navigation .megamenu-4-col > ul.with_bg_image
{
	background-position:top right;
	background-repeat:no-repeat;
	background-size:contain;
}

.main-navigation .megamenu-1-col > ul.with_bg_image { width:400px; }
.main-navigation .megamenu-2-col > ul.with_bg_image { width:650px; }
.main-navigation .megamenu-3-col > ul.with_bg_image { width:900px; }
.main-navigation .megamenu-4-col > ul.with_bg_image { width:1000px; }



/*call to action button*/

.site-header .main-navigation > ul > li.call-to-action
{
	margin: -1px 4px 0;
}

.site-header .main-navigation > ul > li.call-to-action > a {
	border-width:2px;
	border-style:solid;
	border-color: inherit;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


/**********************************************************************************/
/* Menu Mobiles *******************************************************************/
/**********************************************************************************/

.mobile-navigation {
	padding:20px 0;
	border-bottom:1px solid #3d3d3d;
}

.mobile-navigation ul,
.mobile-navigation li {
	padding:0;
	margin:0;
	list-style:none;
	display:block;
	font-size: 1em;
}

.mobile-navigation ul li {
	text-transform:none;
	display:block;
	position:relative;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mobile-navigation > ul > li {
	text-transform:uppercase;
}

.mobile-navigation .sub-menu {
	display:none;
	position: relative;
	background: #484848;
	padding:20px 0 20px 0;
	margin:15px 0 15px 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	
	-webkit-backface-visibility: hidden; /*webkit fix*/
    -webkit-transform: translateZ(0); /*webkit fix*/
}

.mobile-navigation .sub-menu.open {
	display:block;
	
	-webkit-animation-duration: .3s;
	-moz-animation-duration: .3s;
	-o-animation-duration: .3s;
	animation-duration: .3s;
	
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
			
	-webkit-animation-name: main_nav_anim;
	-moz-animation-name: main_nav_anim;
	-o-animation-name: main_nav_anim;
	animation-name: main_nav_anim;
	
	-webkit-backface-visibility: hidden; /*webkit fix*/
    -webkit-transform: translateZ(0); /*webkit fix*/
}

.mobile-navigation  .sub-menu.open li:last-child  .sub-menu.open{
	padding-bottom: 20px;
	margin-bottom: -20px;
}

.mobile-navigation  li:last-child  > .sub-menu.open
{
	margin-bottom: -20px;
}

.mobile-navigation .sub-menu .sub-menu {
	margin:15px 0;
	padding:20px 0;
	background: #5b5b5b;
}

.mobile-navigation .sub-menu .sub-menu .sub-menu {
	padding:0;
	margin:0;
}

.mobile-navigation .sub-menu:after,
.mobile-navigation .sub-menu:before {
	bottom: 100%;
	right: 33px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.mobile-navigation .sub-menu:after {
	border-color: rgba(72, 72, 72, 0);
	border-bottom-color: #484848;
	border-width: 5px;
	margin-left: -5px;
}

.mobile-navigation .sub-menu:before {
	border-color: rgba(72, 72, 72, 0);
	border-bottom-color: #484848;
	border-width: 5px;
	margin-left: -5px;
}

.mobile-navigation .sub-menu .sub-menu:after {
	border-bottom-color: #5b5b5b;
}

.mobile-navigation .sub-menu .sub-menu:before {
	border-bottom-color: #5b5b5b;
}

.mobile-navigation .sub-menu .sub-menu .sub-menu:after,
.mobile-navigation .sub-menu .sub-menu .sub-menu:before {
	display:none;
}

.mobile-navigation .menu-item-has-children .more,
.mobile-navigation .menu-item-language .more
{
	display:block;
	position:absolute;
	top:0;
	right:20px;
	width:36px;
	height:36px;
	margin-top:5px;
	border:3px solid #3d3d3d;
	color:#6e6e6e;
	text-align:center;
	font-family: FontAwesome;
    font-style: normal;
	content:"";
	font-size:11px;
	vertical-align:middle;
	line-height:32px;
	-moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    border-radius: 50px;
	cursor:pointer;
}

.mobile-navigation .menu-item-language .sub-menu .more {
	display:none;
}

.mobile-navigation .sub-menu .menu-item-has-children .more {
	border:3px solid #515151;
	color:#7c7c7c;
}

.mobile-navigation .sub-menu .sub-menu .menu-item-has-children .more {
	border:3px solid #6e6e6e;
	color:#6e6e6e;
}

.mobile-navigation a {
	font-size:.8125em;
	color:#fff;
	padding:11px 20px;
	display:inline-block;
}

.mobile-navigation .sub-menu a {
}

.mobile-navigation a:hover {
	color:#999;
}

.mobile-navigation .current-menu-item > a,
.mobile-navigation .current-menu-ancestor > a,
.mobile-navigation .current_page_item > a,
.mobile-navigation .current_page_ancestor > a
{
    color: #999 !important;
}



/**********************************************************************************/
/* Mobiles Socials ****************************************************************/
/**********************************************************************************/

.mobile-socials .site-social-icons ul {
	padding:30px 10px;
	text-align:left;
}

.mobile-socials .site-social-icons li {
	float:none;
	display:inline-block;
	padding:0;
}

.mobile-socials .site-social-icons li:last-child {
	padding:0;
}

.mobile-socials .site-social-icons li a {
	font-size:20px;
	color:#bfbfbf;
	padding:10px;
}

/**********************************************************************************/
/* Slider *************************************************************************/
/**********************************************************************************/

/*Style 1*/

.main-slider {
	overflow:hidden;
	display:block;
	margin:0 -30px;
	padding:0;
	list-style:none;
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
}

.main-slider .swiper-container {
	visibility:hidden;
	width: 100%;
	color: #fff;
	text-align: center;
}

.main-slider .swiper-slide {
	padding:0;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	text-align:center;
	position:relative;
	display: table;
	width: 100%;
	min-height: 300px;
}

.main-slider .swiper-slide.no_parallax {
	background-position:center !important;
}

.main-slider-content {
	margin:0 auto;
	padding:40px 15px 60px 15px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width:100%;
	background: rgba(0, 0, 0, 0);
}

.main-slider-elements {
	visibility:hidden;
}

.main-slider-elements.animated {
	visibility:visible;
	
	-webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    
	-webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.main-slider h1 {
	font-size:13px;
	text-transform:uppercase;
	color:#fff;
	margin:0 0 24px 0;
	line-height:1.8em;
}

.main-slider h1:after {
	content:"";
	display:block;
	margin:0 auto;
	width:70px;
	height:2px;
	background:#fff;
	margin-top:24px;
}

.main-slider h2 {
	color:#fff;
	margin:0 0 25px 0;
}

.main-slider a.slider_button {
	font-size: 13px;
	font-weight: bold;
	color:#000;
	text-transform:uppercase;
	background:#fff;
	padding: 20px 40px;
	display:inline-block;
	line-height:1.5em;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
	transition-property: color, background;
}

.main-slider a.slider_button:hover {
	color:#fff;
	background:#000;
}

.main-slider .pagination {
	position: absolute;
	z-index: 20;
	left: 0px;
	bottom: 15px;
	text-align:center;
	width:100%;
}

.main-slider .swiper-pagination-switch {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 20px;
	background: #222;
	margin:0 3px;
	opacity: 0.8;
	cursor: pointer;
}

.main-slider .swiper-visible-switch {
	background: #aaa;
}

.main-slider .swiper-active-switch {
	background: #fff;
}

.main-slider .arrow-left,
.main-slider .arrow-right
{
	display: none;
	position:absolute;
	color:#fff;
	opacity:0.3;
	width:64px;
	height:64px;
	font-size:64px;
	line-height:1;
	top:50%;
	margin-top:-32px;
	transition:all .3s;
	-webkit-transition:all .3s;
}

.main-slider .arrow-left
{
	left:30px;
}

.main-slider .arrow-right
{
	right:30px;
}

.main-slider .arrow-left:before,
.main-slider .arrow-right:before
{
	font-family: 'getbowtied-icons';
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	text-transform: none;
	transition:all .3s;
	-webkit-transition:all .3s;
}

.main-slider .arrow-left:before
{
	content: "\e610";
}

.main-slider .arrow-right:before
{
	content: "\e611";
}


.main-slider .arrow-left:hover,
.main-slider .arrow-right:hover
{
	opacity:1;
}

.main-slider .arrow-left.hidden,
.main-slider .arrow-right.hidden
{
	display:none;
}


/**********************************************************************************/
/* Blog ***************************************************************************/
/**********************************************************************************/

.content-area {
	position:relative;
}

.post_header_date {
	text-align:center;
	text-transform: uppercase;
	margin:18px 0 30px 0;
}

.post_header_date,
.post_footer_date
{
	font-size: 13px;
	text-transform: uppercase;
}

.more-link
{
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.entry-header .page-description {
    margin: 0 0 50px 0;
    position:relative;
}

.entry-header.with_featured_img {
    padding: 100px 0 50px 0;
    margin-top: 0px;
    margin-bottom: 50px;
    color: #fff;
    position:relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.entry-header.with_featured_img h1 {
    color: #fff;
}

.entry-header.with_featured_img .page_header_overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,.5);
}

.entry-header.with_featured_img .page-description,
.page-contact .page-description
{
    padding: 35px 0 30px 0;
    margin: 15px 0 0 0;
    color:#fff;
}

.page-contact .page-description
{
    color:#000;
}

.entry-header.with_featured_img .page-description:before,
.page-contact .page-description:before
{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    height: 2px;
    background:#fff;
}

.page-contact .page-description:before {
    background:#000;
}

.post_footer_date {
	margin:20px 0 44px 0;
}

.post_footer_date a {
}

.content_hr {
	margin: 15px -15px 58px;
	padding: 0 15px;
}

.wp-caption.alignleft,
.wp-caption.alignright,
img.alignright,
img.alignleft
{
	margin-top: 8px;
}

img.alignright,
img.alignleft
{
	margin-bottom: 1em;
}

table tr th,
table tr td
{
	font-size: 0.875em;
}

.post table td:last-child
{
	display: none;	
}

.video-container
{
	margin-bottom:40px;
	text-align:center;
}

.video-container iframe
{
	margin:0 auto !important;
}

.audioplayer {
	margin-bottom:40px;
}

.with-sidebar .comments_section {
	background:none;
}

/* sidebar */

#filters-offcanvas .widget_shopping_cart_content tr,
#secondary .widget_shopping_cart_content tr
{
	border-top:1px solid #ddd;
}

#filters-offcanvas .widget_shopping_cart_content tr:last-child,
#secondary .widget_shopping_cart_content tr:last-child
{
	border-bottom:1px solid #ddd;;
}

#filters-offcanvas .widget_shopping_cart .buttons .view_cart,
#secondary .widget_shopping_cart .buttons .view_cart
{
	border: 2px solid #314381;
	color: #222222 !important;
}

#filters-offcanvas .widget_shopping_cart .buttons .view_cart:hover,
#secondary .widget_shopping_cart .buttons .view_cart:hover
{
	color: #fff !important;
	border: 2px solid #000;
}

#filters-offcanvas .widget_shopping_cart .buttons .checkout,
#secondary .widget_shopping_cart .buttons .checkout
{
	background: #314381;
	border: none;
}

.woocommerce-checkout .woocommerce-checkout-payment .form-row.place-order
{
	padding-left: 0 !important;
}
	
/*blog navigation*/

.archive-navigation a
{
	font-size: 0.875em;
}

/*posts navigation*/

.post-navigation
{
	font-size: 0.875rem;
	font-weight: 700;
}

.nav-previous-title,
.nav-next-title
{
	font-size: 0.75rem
}

.no-results
{
	margin-bottom: 60px;	
}

.no-results .page-header
{
	margin-bottom: 16px;
}

.no-results .search-form
{
	margin-top: 6px;
} 

.no-results .screen-reader-text
{
	display: none;
}


/**********************************************************************************/
/* Blog Masonry ******************************************************************/
/**********************************************************************************/

.blog-isotop-container
{
	margin: 0 -30px;
	padding: 0;
}

.blog-isotop-container #filters
{
	display: none;
}

.blog-isotope
{
	position: relative;
}

.blog-isotope .wpb_row,
.blog-isotope .wpb_content_element,
.blog-isotope ul.wpb_thumbnails-fluid > li,
.blog-isotope .last_toggle_el_margin,
.blog-isotope .wpb_button
{
	margin-bottom: 0;
}

.blog-post,
.grid-sizer
{
	width: 100%;
	float: left;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	opacity: 1;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.blog-post.hidden
{
	opacity: 0;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.blog-post-inner
{
	position: relative;
}

.blog-post
{
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
	
	z-index:3;
}

.blog-post .blog-post-inner
{
	padding-bottom: 37px;
}

.thumbnail_archive_container
{
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.thumbnail_archive_container:before
{
	content: "";
	display: block;

	background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    
	height: 100%;
    width: 100%;
	
	position: absolute;
	top: 0;
	left: 0;
    z-index: 2;
	
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
}

.thumbnail_archive:hover .thumbnail_archive_container:before
{
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
}

.thumbnail_archive .wp-post-image
{
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}

.thumbnail_archive:hover .wp-post-image
{
	transform: translateZ(0) scale(1.1,1.1);
	-moz-transform: translateZ(0) scale(1.1,1.1);
	-webkit-transform: translateZ(0) scale(1.1,1.1);
	-ms-transform: none;
}

.blog-isotope .entry-content-archive h1,
.blog-isotope .entry-content-archive h2,
.blog-isotope .entry-content-archive h3,
.blog-isotope .entry-content-archive h4,
.blog-isotope .entry-content-archive h5
{
	font-size: 1rem;
	line-height: 1.625em;
    margin-bottom: 10px;
}

.blog-isotope .entry-content-archive h6
{
	display: none;
}

.blog-isotope .entry-content-archive,
.blog-isotope .entry-content-archive p,
.blog-isotope .entry-content-archive ul,
.blog-isotope .entry-content-archive ol,
.blog-isotope .entry-content-archive dl
{
	font-size: 1rem;
	line-height: 1.625em;
	margin-bottom: 10px;
}

.entry-title-archive
{
	font-size: 1.875rem;
	line-height: 1.333em;
}

.entry-title-archive:first-child
{
	margin: 0 0 19px;
}

.entry-title-archive span{
	display: block;
}

.post_meta_archive,
.entry-title-archive .entry-title-archive-text,
.gallery-title,
.entry-content-archive
{
	margin-left: 40px;
	margin-right: 40px;
}

.post_meta_archive,
.blog-isotope .more-link
{
	display: block;
	font-size: 0.8125rem;
	text-transform: uppercase;
}

.post_meta_archive
{
	margin-bottom: 19px;
}

.blog-isotope .more-link
{
	margin: 16px 0 0;
}

.blog-isotope .gallery-caption
{
    display: none;
}

.entry-content-archive .gallery
{
    display: none;
}

.blog-post .video-container
{
	margin-top: 31px;
}

.blog-post.audio iframe
{
	margin-top: 15px;
}

.blog-post .wp-caption
{
    display: inline-block;
    height: auto !important;
}

.blog-isotop-master-wrapper #nav-below.paging-navigation
{
	margin: 0 -8px;
	padding: 27px 0;
	border-top: 1px solid;
}

.blog-isotop-master-wrapper .archive-navigation
{
	margin: 0;
	padding: 0px;
}


/**********************************************************************************/
/* Contact page *******************************************************************/
/**********************************************************************************/

.wpcf7 input[type="text"],
.wpcf7 input[type="password"],
.wpcf7 input[type="date"],
.wpcf7 input[type="datetime"],
.wpcf7 input[type="datetime-local"],
.wpcf7 input[type="month"],
.wpcf7 input[type="week"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="search"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="time"],
.wpcf7 input[type="url"],
.wpcf7 textarea
{
    margin-bottom: 0px;
    margin-top: 5px;
}

.wpcf7 textarea
{
    height: 200px;
}

.wpcf7 p {
    text-transform: uppercase;
    font-size: .8125rem;
	margin-bottom: 8px;
}

.wpcf7 p:not(.half) {
    clear: both;
}

.wpcf7-response-output {
    padding: 0px 15px !important;
    margin: 0 !important;
    line-height: 1.5em;
    border: 0 !important;
    color: #f00;
    font-size: .8em;
}

.wpcf7 .wpcf7-not-valid-tip {
    margin: 10px 0 0 0 !important;
    text-transform: none;
}


/**********************************************************************************/
/* Archive ************************************************************************/
/**********************************************************************************/

.page-header.archive
{
	margin: 0px 0 51px;
}

.content-area.archive .vcard {
	display: inline-block;
	margin: 0;
	border: none;
	padding: 0;
}

.archive-navigation
{
	padding: 0;
}

.content_hr:nth-last-child(2)
{
	margin-bottom: 0;
}

.content_hr:nth-last-child(1)
{
	display: none;
}


/**********************************************************************************/
/* Custom gallery *****************************************************************/
/**********************************************************************************/

.gallery-slider-wrapper {
    visibility:hidden;
    opacity:0;
}

.gallery-slider .swiper-container {
	color: #fff;
	text-align: center;
	margin:0 0 10px 0;
	cursor:pointer;
}

.gallery-slider .swiper-wrapper {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.gallery-slider .swiper-slide {
	height: 100%;
	opacity: 0.3;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity  1s;
	-ms-transition: opacity  1s;
	-o-transition: opacity  1s;
	transition: opacity  1s;
	text-align:center;
}

.gallery-slider .swiper-slide img.portrait {
	height:100%;
	width:auto;
}

.gallery-slider .swiper-slide img.landscape {
	height:auto;
	width:100%;
}

.gallery-slider .swiper-slide-active {
	opacity: 1;
}

.gallery-slider .pagination {
	text-align:center;
	width:100%;
    margin: 10px 0 0 0;
}

.gallery-slider .swiper-pagination-switch {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 20px;
	background: #a9a9ab;
	margin: 0 3px 10px;
	opacity: 0.8;
	cursor: pointer;
}

.gallery-slider .swiper-pagination-switch:hover {
	background: #d4d4d4;
}

.gallery-slider .swiper-visible-switch {
	background: #a9a9ab;
}

.gallery-slider .swiper-active-switch {
	background: #d4d4d4;
}

.gallery-slider .swiper-prev,
.gallery-slider .swiper-next
{
	width:50%;
	height:100%;
	position:absolute;
	top:0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.gallery-slider .swiper-prev {
	left:0;
}

.gallery-slider .swiper-next {
	right:0;
}

/**********************************************************************************/
/* Catalog ************************************************************************/
/**********************************************************************************/

.filter_products_container
{
	margin: 35px 0 10px;
}

.filter_products_container:after
{
	content: "";
	display: block;
	clear: both;
}

.woocommerce .woocommerce-ordering
{
	margin-bottom: 5px;
}

.woocommerce .woocommerce-ordering .select2-container {
	width: auto !important;
}

.woocommerce .woocommerce-ordering .select2-container--default .select2-selection--single {
  border:none !important;
}

.woocommerce .woocommerce-ordering .select2-container .select2-selection__rendered {
	font-weight: bold;
	padding-right: 30px;
    text-transform: uppercase !important;
}

.catalog_top_sep
{
	display: none;
}

.page-description {
	text-align:center;	
}

.page-description:before {
    
}

.page-description p {
	padding:0;
	margin:0;
}

.term-description {
	text-align:center;
    position: relative;
}

.catalog_top {
	padding:30px 0 0 0;
}

.catalog_top_sep {
	padding:0;
	margin:0;
}

.filters_button {
	font-size:0.8125em;
	font-weight: 700;
	padding: 15px 1em 15px 3em;
	vertical-align:text-bottom;
	position:relative;
	display:block;
	text-transform: uppercase;
	float: none;
	border: 1px solid #eee;
}

.filters_button:before {
	content:"\e60e";
	font-family: 'getbowtied-icons';
	font-size: 16px;
	line-height: 1;
	width:16px;
	height:16px;
	position:absolute;
	left:16px;
	top: 13px;
	display:block;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
	speak: none;
	font-variant: normal;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.product_after_shop_loop {
	height:33px;
	overflow:hidden;
}

.product_after_shop_loop_switcher {
	height:66px;
	overflow:hidden;
	-webkit-transition: -webkit-transform .3s ease;                  
    -moz-transition: -moz-transform .3s ease;                 
    -o-transition: -o-transform .3s ease;
    -ms-transition: -ms-transform .3s ease;          
    transition: transform .3s ease;
	-moz-transform: rotate(0);
	-webkit-transform: translateZ(0);
}

.products li:not(.catalog_mode):hover .product_after_shop_loop_switcher {
	transform: translateY(-33px);
	-ms-transform: translateY(-33px);
	-webkit-transform: translateY(-33px);
}

.force-add-to-cart .product_after_shop_loop {
	height: auto;
	overflow: auto;
}

.force-add-to-cart .product_after_shop_loop_switcher {
	height: auto;
	overflow: auto;
	-moz-transform: none;
	-webkit-transform: none;
	transform: none;
}

.force-add-to-cart.products li:not(.catalog_mode):hover .product_after_shop_loop_switcher {
	transform: none;
	-ms-transform: none;
	-webkit-transform: none;
}

.product_after_shop_loop .price {
	font-size: 0.875rem;
	line-height:16px;
	font-weight: 700;
}

.product_after_shop_loop_price {
	height:33px;
	overflow:hidden;
	line-height: 1;
}

.product_after_shop_loop_buttons {
	height:33px;
	overflow:hidden;
}

.product_wrapper,
.product_thumbnail_wrapper
{
	position: relative;
}

.product_thumbnail.with_second_image {
   
	position: relative;
}

.product_thumbnail_background
{
	width: 100%;
	height: 100%;
	opacity: 0;
	display: block;
	position: absolute;
	background-size: 0px;
	background-repeat: no-repeat;
	
	-webkit-transition: opacity 0ms ease 0.3s !important;
	-moz-transition: opacity 0ms ease 0.3s !important;
	transition: opacity 0ms ease 0.3s !important;

	-webkit-backface-visibility:hidden;
}


.product_thumbnail.with_second_image:hover .product_thumbnail_background
{
	opacity: 1;
	
	-webkit-transition: opacity 0ms ease 0s !important;
	-moz-transition: opacity 0ms ease 0s !important;
	transition: opacity 0ms ease 0s !important;
	
}

.product_thumbnail.with_second_image.second_image_loaded img {
    
	opacity: 1 !important;
    
	-webkit-transition: opacity 300ms ease 0s !important;
	-moz-transition: opacity 300ms ease 0s !important;
	transition: opacity 300ms ease 0s !important;
	
	-moz-transform: rotate(0);
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

.product_thumbnail.with_second_image.second_image_loaded:hover img {

    opacity: 0 !important;
	
	-webkit-transition: opacity 300ms ease 0.05s !important;
	-moz-transition: opacity 300ms ease 0.05s !important;
	transition: opacity 300ms ease 0.05s !important;
	
}

.product_thumbnails {
	width: 100%;
    transition: opacity 300ms ease;
    overflow: hidden;
    max-height: 488px;
}

.product_thumbnails .carousel-cell {
    transition: all 0.5s ease;
    padding: 0 0 20px 0;
    opacity: 1;
    cursor: pointer;
}

.horizontal_product_thumbnails {
	display: flex;
}

.horizontal_product_thumbnails .carousel-cell {
	padding: 0 10px 20px 0;
	flex-shrink: 0;
	-webkit-flex-shrink: 0;
	-ms-flex: 0;
}

.product_thumbnails .carousel-cell:hover, 
.product_thumbnails .carousel-cell.is-nav-selected {
	opacity: .2;
}

.active_filters {
	margin:0;
	padding:0;
}

.active_filters .widget,
.active_filters .widget ul,
.active_filters .widget li
{
	margin:0;
	padding:0;
}

.original_subcategories_listing {
	display: none;
}

.category_header {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.category_header.with_featured_img {
    padding: 100px 0;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #fff;
}

.category_header.with_featured_img h1 {
    color: #fff;
}
    
.category_header.with_featured_img .woocommerce-breadcrumb
{
	color: rgba(255,255,255,0.45);
}

.category_header.with_featured_img .woocommerce-breadcrumb a {
    color: #fff;
}

.category_header.with_featured_img .woocommerce-breadcrumb a:hover {
    color: rgba(255,255,255,0.55);
}
    
.category_header.with_featured_img .category_header_overlay {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0,0,0,.5);
}
    
.category_header.with_featured_img .term-description {
    padding: 35px 0 0 0;
    margin: 15px 0 0 0;
}
    
.category_header.with_featured_img .term-description:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    height: 3px;
    background:#fff;    
}

.woocommerce_category_header_image {
    display: none;
}



/*Catalog With Sidebar*/

.catalog-page.with-sidebar .catalog_top
{
	margin-top: 10px;
}

.catalog-page.with-sidebar .catalog_top_sep
{
	margin-bottom: 10px;
}

@media all and (min-width: 1024px) {
	.catalog-page.with-sidebar .filters_button
	{
		display: none;
	}
}

.catalog-page.with-sidebar .woocommerce-pagination
{
	text-align: left !important;
}

.shop_sidebar.wpb_widgetised_column
{
	margin-top: 30px;
}

.single-product.with-sidebar .wpb_widgetised_column
{
	padding-right: 25px;
}

.catalog-page.with-sidebar .woocommerce-pagination li a,
.catalog-page.with-sidebar .woocommerce-pagination li span
{
	text-align: center;
}


@media only screen and (max-width: 40em) {
	.category_list {
		margin-bottom:30px !important;
		padding:0 !important;
		width:100% !important;
	}
}

/**********************************************************************************/
/* Single Product *****************************************************************/
/**********************************************************************************/

.product_thumbnails .swiper-container {
	width: 100%;
	-webkit-transition: opacity 300ms ease;
	-moz-transition: opacity 300ms ease;
	transition: opacity 300ms ease;
}

.product_thumbnails .swiper-slide {
	padding-bottom:20px;
	opacity:.2;
    cursor: pointer;
	-webkit-transition: opacity 300ms ease;
	-moz-transition: opacity 300ms ease;
	transition: opacity 300ms ease;
	float: left;
	height: auto;
}

.product_thumbnails .swiper-slide:last-child {
	padding-bottom:0;
}

.product_thumbnails .swiper-slide-active {
	opacity:1;
	-webkit-transition: opacity 300ms ease;
	-moz-transition: opacity 300ms ease;
	transition: opacity 300ms ease;
}

.product_images {
    position: relative;
}

.product_images .swiper-container {
	width: 100%;
}

.easyzoom-notice,
.owl-item.loading
{
	background-image: url("../images/ajax-loader.gif");
    background-position: center;
    background-repeat: no-repeat;
}

.easyzoom-notice
{
	display: block !important;
	width: 48px;
	height: 48px;
	margin: -24px 0 0 -24px;
	
	background-color: #fff;
}

.product_images ul,
.product_images ol
{
	margin:0;
	padding:0;
	list-style:none;
}

.product_images .flex-control-nav {
	bottom: 0px;
	position:relative;
	margin-top:50px;
	z-index:100;
}

.product_images .flexslider {
	margin:0 !important;
	overflow:hidden;
}

.product_images .flexslider .slides {
	padding: 0 !important;
	-webkit-transition: height 300ms ease;
	-moz-transition: height 300ms ease;
	transition: height 300ms ease;
}

.woocommerce .recently_viewed_in_single h2 {
	font-size:.8em;
	margin:0 0 15px 0;
	-ms-word-wrap: normal;
	word-wrap: normal;
    text-transform: uppercase;
    line-height: 14px;
}

.recently_viewed_in_single ul {
	margin:0 !important;
	padding:0 !important;
	list-style:none;
}

.recently_viewed_in_single li {
	padding: 0 !important;
	margin:0 0 20px 0 !important;
}

.recently_viewed_in_single img 
{
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}

.recently_viewed_in_single span 
{
	display: none;
}

.out_of_stock_badge_loop,
.out_of_stock_badge_single
{
	height: 70px;
	width: 70px;
	padding: 20px 10px;
	font-size: 12px;
	line-height: 14px;
	display: block;
	text-align: center;
	position: absolute;
	top: -10px;
	left: auto;
	right: 35px;
	margin: 0;
	-webkit-border-radius: 150px;
	border-radius: 150px;
	background: #8c8b8b;
	text-shadow: none;
	color: #ffffff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	text-transform:uppercase;
	z-index:10;
	
}

.out_of_stock_badge_loop,
.out_of_stock_badge_single
{
	right: 90px;
}

.out_of_stock_badge_loop.first_position,
.out_of_stock_badge_single.first_position {
	right: 25px;
}

.products.large-block-grid-6 .out_of_stock_badge_loop,
.products.large-block-grid-6 .out_of_stock_badge_single,
.products .out_of_stock_badge_loop,
.products .out_of_stock_badge_single
{
	height: 36px;
	width: 36px;
	padding: 10px;
	font-size: 0px;
	top: -5px;
	right: 37px;
}

.products.large-block-grid-6 .out_of_stock_badge_loop.first_position,
.products.large-block-grid-6 .out_of_stock_badge_single.first_position,
.products .out_of_stock_badge_loop.first_position,
.products .out_of_stock_badge_single.first_position {
	right: 5px;
}

.products.large-block-grid-6 .out_of_stock_badge_loop:before,
.products.large-block-grid-6 .out_of_stock_badge_single:before,
.products .out_of_stock_badge_loop:before,
.products .out_of_stock_badge_single:before
{
	font-family: 'getbowtied-icons';
	content: "\e60b";
	font-size: 16px;
	display: inline-block;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.woocommerce #products-grid .out_of_stock_badge_loop
{
	-webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -ms-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
}

.product_image_zoom_button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    overflow: hidden;
    bottom: 0;
    right: 0;
    padding: 16px 0 0 16px;
    color: #000;
    font-family: sans-serif;
    font-size: 18px;
    -webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
}

.product_image_zoom_button:hover {
    color: #fff;
    background: #000;
}

.product-nav-previous,
.product-nav-next
{
	display:none;
}

.product-nav-previous .getbowtied-icon-arrow_left,
.product-nav-next .getbowtied-icon-arrow_right
{
	font-size: 36px;
	position: absolute;
	top:50%;
	margin-top: -16px;
}

.product-nav-previous .getbowtied-icon-arrow_left {
	left: 50%;
	margin-left: -10px;
}

.product-nav-next .getbowtied-icon-arrow_right {
	right: 50%;
	margin-right: -10px;
}

.product_nav_img {
	max-width:70px !important;
	height:auto !important;
	position: relative;
	transition: left .3s;
	-webkit-transition: left .3s;
	z-index: 2;
}

.product-nav-previous .product_nav_img {
	left: -70px;
	transition: left .3s;
	-webkit-transition: left .3s;
}

.product_nav_link_left:hover .product_nav_img {
	left: 0;
}

.product-nav-next .product_nav_img {
	right: -70px;
	transition: right .3s;
	-webkit-transition: right .3s
}

.product_nav_link_right:hover .product_nav_img {
	right: 0;	
}

.product_meta {
	font-size: 0.8125em;
	line-height: 1.8461em;
}

.product_meta > span
{
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 10px;
}

.product_meta span a,
.product_meta span span
{
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
	margin: 0;
}

.group_table
{
	margin-bottom: 22px;	
}

.woocommerce #content div.product form.cart .group_table td,
.woocommerce div.product form.cart .group_table td,
.woocommerce-page #content div.product form.cart .group_table td,
.woocommerce-page div.product form.cart .group_table td
{
	padding-top: 1em;
	padding-bottom: 1em;
	vertical-align: middle;
}

.woocommerce #content div.product form.cart .group_table td:first-child,
.woocommerce div.product form.cart .group_table td:first-child,
.woocommerce-page #content div.product form.cart .group_table td:first-child,
.woocommerce-page div.product form.cart .group_table td:first-child
{
	width: 79px;
}

.group_table input.qty
{
	margin-bottom: 0;
}

.group_table td.woocommerce-grouped-product-list-item__label
{
	width: auto;
	white-space: normal;
	text-align: left;
	font-size: 1em;
	display: table-cell;
	
}

.group_table td.woocommerce-grouped-product-list-item__label label
{
	font-size: 1em;
	margin-bottom: 0;
	margin-right: 15px;
}

.group_table td.woocommerce-grouped-product-list-item__label a
{
	text-transform: none;
	line-height: 1.3125em;
}

.group_table td.woocommerce-grouped-product-list-item__quantity a.button 
{
    padding: 10px;
    margin-right: 30px;
    min-width: 100px;
    line-height: 16px;
    font-size: 12px !important;
}

.group_table td.woocommerce-grouped-product-list-item__price
{
	width: 130px;
	line-height: 1;
}

.group_table td.woocommerce-grouped-product-list-item__price .amount
{
	margin-bottom: 10px;
	display: inline-block;
}

.group_table td.woocommerce-grouped-product-list-item__price del .amount
{
	text-decoration: line-through;
}

.group_table .stock
{
	margin-bottom: 0;
}



/**
 * Single Product - Socials
 * Single Post - Socials
**/

.box-share-master-container
{
	margin-bottom: 25px;
}

.box-share-container
{
	display: inline-block;
	position: relative;
	z-index: 99;
}

.box-share-container a {
    font-weight: bold;
    }

.box-share-container.post-share-container
{
	display: block;
	text-align: center;
	margin: 48px 0 40px;
}

.trigger-share-list
{
	display: inline-block;
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
	
	position: relative;
}

.trigger-share-list .fa
{
	font-size: 13px;
	margin-right: 13px;
	
	position: relative;
    top: 0px;
	left: 3px;
}

.box-share-list
{
	position: absolute;
	top: 8px;
	left: 50%;
	width: 0px;
	height: 0px;
	
	overflow: hidden;
	text-align: left;
	
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);

	webkit-transition: height 0.3s, width 0.3s, -webkit-transform 0.3s;
	transition: height 0.3s, width 0.3s, transform 0.3s;
}

.box-share-container.open .box-share-list
{
	width: 185px;
}

.box-share-list-inner
{
	padding: 24px 13px 28px 22px;
	width: 185px;
}

.box-share-link
{
	display: block;
	font-size: 13px;
	color: #000;
	margin-bottom: 13px;
	font-weight: normal;
	position: relative;
	left: 200%;
	
	-webkit-transition: left 0.3s;
	transition: left 0.3s;
}

.box-share-container.open .box-share-link
{
	left: 0
}

.box-share-container.open a:nth-child(1)
{
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.box-share-container.open a:nth-child(2)
{
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.box-share-container.open a:nth-child(3)
{
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.box-share-container.open a:nth-child(4)
{
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.box-share-link:last-child
{
	margin-bottom: 0;
}

.box-share-link:hover
{
	color: #000 !important;
}

.box-share-link span
{
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	
	transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}

.box-share-link:hover span
{
	border-bottom-width: 2px;
	border-bottom-style: solid;
}

.box-share-link .fa
{
	font-size: 16px;
    margin-right: 6px;
    position: relative;
    text-align: center;
    top: 2px;
    width: 20px;
}



/* Single Product - With Sidebar */

.single-product.with-sidebar .product_infos
{
	padding-right: 0;
}

.single-product.with-sidebar .product_thumbnails
{
	overflow: hidden;
	margin: 10px 0;
}

.single-product.with-sidebar .swiper-container
{
	height: 90px !important;
	width: auto !important;
	margin: 0 -5px;
}

.single-product.with-sidebar .swiper-wrapper
{
	display: flex;
	display: -webkit-flex;
}

.single-product.with-sidebar .swiper-slide
{
	padding:0 5px;
}

.single-product.with-sidebar .product_meta > span
{
	margin: 0 20px 0 0;
}

.single-product.with-sidebar .large-10,
.single-product.with-sidebar .large-10 .large-9
{
	width: 100%;
}

.single-product.with-sidebar .group_table td.woocommerce-grouped-product-list-item__price
{
	text-align: right;
	width: 50px;
}


/**********************************************************************************/
/* Forms **************************************************************************/
/**********************************************************************************/

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"], input[type="week"],
input[type="email"], input[type="number"],
input[type="search"], input[type="tel"],
input[type="time"], input[type="url"],
textarea
{
	background: #f1f1f1;
	border-color:transparent;
	margin-bottom: 10px;
	font-weight: 400;
}

select,
.chosen-results
{
	color: rgba( 0,0,0,0.75);
	background-color: #f1f1f1;
	border: 1px solid #eee;
	padding: 0.3rem;
}

.cart-collaterals select,
.cart-collaterals textarea,
.cart-collaterals input[type="text"],
.cart-collaterals input[type="password"],
.cart-collaterals input[type="date"],
.cart-collaterals input[type="datetime"],
.cart-collaterals input[type="datetime-local"],
.cart-collaterals input[type="month"],
.cart-collaterals input[type="week"],
.cart-collaterals input[type="email"],
.cart-collaterals input[type="number"],
.cart-collaterals input[type="search"],
.cart-collaterals input[type="tel"],
.cart-collaterals input[type="time"],
.cart-collaterals input[type="url"],
.comments_section textarea,
.comments_section input[type="text"],
.comments_section input[type="password"],
.comments_section input[type="date"],
.comments_section input[type="datetime"],
.comments_section input[type="datetime-local"],
.comments_section input[type="month"],
.comments_section input[type="week"],
.comments_section input[type="email"],
.comments_section input[type="number"],
.comments_section input[type="search"],
.comments_section input[type="tel"],
.comments_section input[type="time"],
.comments_section input[type="url"]
{
	background-color: #fff;
}


.with-sidebar .comments_section textarea,
.with-sidebar .comments_section input[type="text"],
.with-sidebar .comments_section input[type="password"],
.with-sidebar .comments_section input[type="date"],
.with-sidebar .comments_section input[type="datetime"],
.with-sidebar .comments_section input[type="datetime-local"],
.with-sidebar .comments_section input[type="month"],
.with-sidebar .comments_section input[type="week"],
.with-sidebar .comments_section input[type="email"],
.with-sidebar .comments_section input[type="number"],
.with-sidebar .comments_section input[type="search"],
.with-sidebar .comments_section input[type="tel"],
.with-sidebar .comments_section input[type="time"],
.with-sidebar .comments_section input[type="url"]
{
	background: #f1f1f1;
}

label
{
	text-transform: uppercase;
	font-size: 0.8125rem;
	margin-bottom: 0.4rem;
	background: transparent;
}

.button,
input[type="button"],
input[type="reset"],
input[type="submit"]
{
	color: #fff;
	border: none;
	font-size: 0.8125rem !important;
	font-weight: 700;
	text-transform: uppercase;
    padding: 1.1875rem 3.7rem 1.125rem;
	width: 100%;
	
	transition: color 0.3s, background 0.3s;
	-webkit-transition: color 0.3s, background 0.3s;
}


input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover
{
	background: #000 !important;
	color: #fff !important;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row
{
	padding: 8px 0px;
	width: 100%;
}

input[type="checkbox"] + label,
input[type="radio"] + label
{
	margin-left: 0;
	margin-right: 0;
}

.check_box_radio,
.check_box {
    left: -9999px;
    position: absolute;
}

.check_label_radio,
.check_label {
	display: block !important;
	line-height: 1.5em !important;
    cursor: pointer;
    vertical-align: middle;
	padding-left: 32px;
	position: relative;
	text-indent: 0;
}

.check_label_radio
{
	 font-size: 0.8125rem;
	 padding-top: 1px;
	 text-transform: uppercase;
}

.check_label_radio:before
{
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	
	position: absolute;
	left: 0;
	top: 1px;
	
	background-image: url("../images/radio.png");
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: 16px 40px;
	background-position: 0 0;
}	


.check_label
{
	font-weight: 400;
	font-size: 0.875em;
	padding-top: 0;
	text-transform: none;
	margin: 0 0 15px;
}

.check_label:before
{
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 0px;
	background-image: url("../images/checkbox.png");
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: 20px 40px;
	background-position: 0 0;
}

.check_box_radio:checked + .check_label_radio:before
{
    background-position: 0px -24px;
}

.check_box:checked + .check_label:before {
    background-position: 0px -20px;
}

/*select2*/

.cart-collaterals select,
.woocommerce-shipping-calculator #select2-calc_shipping_country-container,
.woocommerce-shipping-calculator #select2-calc_shipping_state-container {
	font-weight: 700;
}

.woocommerce-shipping-calculator #select2-calc_shipping_country-container,
.woocommerce-shipping-calculator #select2-calc_shipping_state-container {
	padding-left: 10px !important;
	font-size: 0.875rem !important;
	text-transform: none !important;
}

.woocommerce-shipping-calculator .select2-container .select2-selection--single .select2-selection__rendered {
	background-size: 7px;
}

.woocommerce-shipping-calculator .select2-selection,
.woocommerce-edit-address .select2-container--default,
.woocommerce-edit-address .select2-selection--single {
	border: transparent;
    -webkit-border-radius: 0;
}

.woocommerce-edit-address .select2-container--default,
.woocommerce-edit-address .select2-selection--single {
	background-color: #f1f1f1;
	width: 100% !important;
}

.woocommerce-edit-address .select2-container--default .select2-selection__arrow,
.woocommerce-edit-address .select2-selection--single .select2-selection__arrow {
	top: -6px;
    width: 20px;
}

.woocommerce-edit-address .select2-dropdown {
	margin-left: 0px;
}

.woocommerce-edit-address .select2-selection__rendered {
	line-height: 37px !important;
}

.big-select:hover
{
	background-color:transparent;
}

.big-select:focus
{
	outline: none;
}

.select2-container,
.big-select,
select.big-select
{
	font-size: 1.625em !important;
	border: none;
	background-color:transparent;
	font-family: inherit;
	color: #314381;
	display: inline-block;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding:0;
	margin:0;
	font-weight: 400;
	opacity:1;
	width: auto;
	line-height: 1;
	height: auto;
}

select.big-select
{
	border: 1px solid #EEEEEE;
    font-size: 13px !important;
    font-weight: 700;
    padding: 9px 11px 11px;
    text-transform: uppercase;
    width: 100% !important;
	max-width: 320px;
}

.woocommerce-ordering select.big-select
{
	max-width: none;
	padding: 12px 11px 12px 34px;
	height: 45px;
}

.catalog_top .big-select
{
    font-size: 0.8125em !important;
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow {
  line-height: 35px;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices, 
.select2-container .select2-choice
{
	background: none;
	border: none;
	filter:none;
	color: #314381;
	font-weight: 400;
	padding: 0;
	padding-right: 26px;
	box-shadow: none;
	height: auto;
	line-height: 1;
}

.select2-container .select2-choice > .select2-chosen
{
	margin: 0;
}

.select2-container .select2-choice .select2-arrow
{
	background: none;
	background-image: none;
	filter:none;
	border: none;
	border-radius: 0;
	font-size: 0.692em;
	line-height: 1em;
	box-shadow: none;
}

.select2-container .select2-choice .select2-arrow:before
{
	content: "\f107";
	display: block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.select2-results
{
	font-size: 13px;
	margin: 0;
	padding: 5px 0;
}

.select2-drop {
	min-width: 250px !important;
	border: none;
	margin-top: 0px;
	margin-left: -15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
}

.select2-drop.select2-drop-above
{
	margin-bottom: 6px;
}

.select2-drop.select2-drop-above.select2-drop-active
{
	border: 0;
	border-radius: 0;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.select2-results .select2-result-label 
{
	padding: 3px 16px 4px;
}

.select2-offscreen, .select2-offscreen:focus {
    border: 0 none !important;
    clip: rect(0px, 0px, 0px, 0px) !important;
    height: 26px !important;
    left: 0 !important;
    margin: 0 !important;
    outline: 0 none !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 1px !important;
}

.catalog_top .select2-container
{
	padding-top: 4px;
}

.catalog_top .select2-container .select2-choice
{
	font-weight: 700;
}

.catalog_top .select2-container .select2-choice .select2-arrow
{
	font-size: 18px;
    line-height: 13px;
}

.catalog_top .select2-container .select2-choice .select2-arrow:before
{
	display: block;
	line-height: 13px;
}

.variations .select2-container .select2-choice
{
	line-height: 37px;
}

.variations .select2-container .select2-choice > .select2-chosen
{
	line-height: inherit;
}

.variations .select2-container .select2-choice .select2-arrow:before
{
	line-height: 37px;
}

.select2-container.select2-container-disabled,
.select2-container.select2-container-disabled .select2-choice,
.select2-container.select2-container-disabled .select2-choice .select2-arrow
{
	background: none;
	border: none;
}


/*Language and Currency*/

.language-and-currency,
.site-top-message
{
	display: inline-block;
}

.language-and-currency img
{
	display: none;
}

.select2-container.topbar-language-switcher,
.select2-container.wcml_currency_switcher
{
	margin-right: 23px;
}

.select2-container.topbar-language-switcher,
.select2-container.wcml_currency_switcher
{
	height: 43px;
	line-height: 43px;
	padding-top: 15px;
}

.select2-container.topbar-language-switcher,
.select2-container.wcml_currency_switcher
{
    font-size: 0.8125rem !important;
}

.select2-container.topbar-language-switcher .select2-choice > .select2-chosen,
.select2-container.wcml_currency_switcher .select2-choice > .select2-chosen
{
	font-size: 12px !important;
	font-weight: 700;
	text-transform: uppercase;
}

.select2-container.topbar-language-switcher .select2-choice .select2-arrow,
.select2-container.wcml_currency_switcher .select2-choice .select2-arrow
{
	font-size: 13px;
    line-height: 12px;
}


/*Off-Canvas Language and Currency */

.language-and-currency-offcanvas
{
	padding: 36px 20px 21px;
	border-bottom: 1px solid #3d3d3d;
}

.language-and-currency-offcanvas img
{
	display: none;
}

select.topbar-language-switcher,
select.wcml_currency_switcher{
	font-size: 0.8125rem;
	color: #fff;
	
	background-color: transparent;
	background-image: url(../images/arrow.svg);
	background-position: right 3% center;
    background-repeat: no-repeat;
	border: 1px solid #3d3d3d;
	
	font-weight: 700;
	text-transform: uppercase;
	
	height: 2.5rem;
	margin: 0 0 15px;
	outline: medium none;
	
}

select.topbar-language-switcher option,
select.wcml_currency_switcher option
{
	color: #000;
	background: #fff;
}

.language-and-currency-offcanvas .select2-container.topbar-language-switcher,
.language-and-currency-offcanvas .select2-container.wcml_currency_switcher
{
	display: block;
	height: auto;
	line-height: normal;
	padding-top: 0px;
	margin: 0 0 12px 0;
}

.language-and-currency-offcanvas .select2-container .select2-choice
{
	display: inline-block;
	padding-bottom: 7px;
	color: #a3a3a3;
	font-weight: 400;
}

.language-and-currency-offcanvas .select2-container:last-of-type
{
	margin-bottom: 8px;
}


/*Checkout and My Account*/

.woocommerce-checkout .woocommerce-form-coupon-toggle
{
	background-image: url('../images/checkout_notice_border.png');
	background-repeat: no-repeat;
    background-position: top center;
    padding-top: 30px;
    margin-top: 5px;
}

.woocommerce-checkout .woocommerce-terms-and-conditions h1,
.woocommerce-checkout .woocommerce-terms-and-conditions h2,
.woocommerce-checkout .woocommerce-terms-and-conditions h3,
.woocommerce-checkout .woocommerce-terms-and-conditions h4,
.woocommerce-checkout .woocommerce-terms-and-conditions h5,
.woocommerce-checkout .woocommerce-terms-and-conditions h6,
.woocommerce-checkout .woocommerce-terms-and-conditions p,
.woocommerce-checkout .woocommerce-terms-and-conditions b,
.woocommerce-checkout .woocommerce-terms-and-conditions strong,
.woocommerce-checkout .woocommerce-terms-and-conditions i,
.woocommerce-checkout .woocommerce-terms-and-conditions span,
.woocommerce-checkout .woocommerce-terms-and-conditions a,
.woocommerce-checkout .woocommerce-terms-and-conditions li,
.woocommerce-checkout .woocommerce-terms-and-conditions address,
.woocommerce-checkout .woocommerce-terms-and-conditions tr,
.woocommerce-checkout .woocommerce-terms-and-conditions td,
.woocommerce-checkout .woocommerce-terms-and-conditions th,
.woocommerce-checkout .woocommerce-terms-and-conditions dt,
.woocommerce-checkout .woocommerce-terms-and-conditions dd,
.woocommerce-checkout .woocommerce-terms-and-conditions dl,
.woocommerce-checkout .woocommerce-terms-and-conditions code,
.woocommerce-checkout .woocommerce-terms-and-conditions pre,
.woocommerce-checkout .woocommerce-terms-and-conditions img,
.woocommerce-checkout .woocommerce-terms-and-conditions blockquote,
.woocommerce-checkout .woocommerce-terms-and-conditions div
{
    font-size: 13px !important;
}

.wc_payment_methods
{
	margin-bottom: 47px !important;
}

.country_select.select2-container,
.state_select.select2-container
{
	display: block;
  
	border-color: transparent;
	background: none repeat scroll 0 0 #f1f1f1;
	
	width: 100% !important;
	height: auto;
}

.country_select.select2-container .select2-choice > .select2-chosen,
.state_select.select2-container .select2-choice > .select2-chosen
{
    font-size: 0.875rem;
	line-height: 20px;
	color: rgba(0,0,0,0.75);
	padding: 0.5rem;
	height: 2.3125rem;
}

.woocommerce-account .select2-drop,
.woocommerce-checkout .select2-drop
{
	margin:0;
}

.woocommerce-account .select2-drop.select2-drop-above,
.woocommerce-checkout .select2-drop.select2-drop-above
{
	margin-top: -5px;
}

.woocommerce-account .select2-search,
.woocommerce-checkout .select2-search
{
	padding: 4px;
}

.woocommerce-account .select2-search,
.woocommerce-checkout .select2-search
{
	padding: 4px;
}

.woocommerce-account .select2-search .select2-input,
.woocommerce-checkout .select2-search .select2-input
{
	margin: 0;
}

.country_select.select2-container .select2-choice .select2-arrow,
.state_select.select2-container .select2-choice .select2-arrow
{
	color: rgba(0,0,0,0.75);
	top: 10px;
}

.woocommerce-checkout #payment div.payment_box:before {
	display: none;
}

.woocommerce-checkout #payment div.payment_box:before {
	display: none;
}

.woocommerce-account .row .entry-content {
min-height: 450px;
}

.woocommerce-MyAccount-navigation ul {
list-style-type: none;
margin: 0 !important;
}

.woocommerce-MyAccount-navigation ul li {
margin-bottom: 5px;
text-transform: uppercase;
font-weight: bold;
font-family: Montserrat;
font-size: 13px;
}

.woocommerce-account .woocommerce a.button:hover {
color: #FFFFFF;
}

.woocommerce form .form-row label.rememberme,
.woocommerce-page form .form-row label.rememberme
{
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td
{
	background: transparent;
}


/**********************************************************************************/
/* Cart ***************************************************************************/
/**********************************************************************************/

/* shopping cart */

.cart-buttons {
	padding:30px 1000px 30px;
	margin: 0 -1000px;
}

.cart-form
{
	margin-bottom: 0;
}

.cart-buttons .coupon #coupon_code,
.cart-buttons .update_and_checkout .update_cart
{
	margin-bottom: 10px !important;
}

.cart-buttons .coupon .apply_coupon{
	margin-bottom: 30px !important;
}

.update_and_checkout
{
	text-align: right;
	
}

.cart-buttons .update_and_checkout .update_cart {
	border-width:2px !important;
	border-style:solid !important;
	border-color:#314381 !important;
	padding-top:17px !important;
	padding-bottom:16px !important;
	background:transparent !important;
	color:#314381 !important;
	margin-right:20px !important;
}

.cart-buttons .update_and_checkout .update_cart:hover {
    color: #fff !important;
	border-color: #000 !important;
}

.cart-buttons .update_and_checkout .update_cart, 
.cart-buttons .update_and_checkout .checkout-button
{
	width: 100%;
}

.cart-buttons .update_and_checkout .checkout-button
{
	float: right;
}

.cart-buttons .update_and_checkout .checkout-button:after
{
	display: none;
}

.cart-buttons .coupon #coupon_code {
	box-shadow: none;
    border: none;
	-webkit-box-shadow: none;
	font-size: 0.875em;
	padding: 16px 15px 16px 15px;
	margin: 0;
	outline: 0;
	line-height: normal;
	margin-right: 25px;
	color: rgba(0, 0, 0, 0.75);
	width: 100%;
}

.cart-buttons .coupon .apply_coupon {
	background: none repeat scroll 0 0 transparent !important;
    border-width:2px !important;
	border-style:solid !important;
	border-color:#314381 !important;
    color: #314381 !important;
    margin-right: 0px !important;
    padding-bottom: 16px !important;
    padding-top: 17px !important;
	min-width: 110px;
}

.cart-buttons .coupon .apply_coupon:hover {
    color: #fff !important;
	border-color: #000 !important;
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-page .cart-collaterals .cart_totals h2
{
	display: none;
}


.cart_totals
{
	width: 414px;	
}

.cart-collaterals .cart_totals .shop_table .order-total .includes_tax .woocommerce-Price-amount
{
	font-weight: normal;
	font-size: 14px;
}

/* cart empty */

.cart-wishlist-empty-banner
{
	margin-bottom: 70px;
	margin-top: 20px;
}

.cart-wishlist-empty
{
	font-size: 1.5em;
	margin-bottom: 3px;
	line-height: 1.5em;
}

.cart-empty
{
	margin: 10px 0 13px;
}

.woocommerce-cart .entry-content .woocommerce
{
	max-width: 1260px;
	position: relative;
	margin: 0 auto;
}

.woocommerce-cart .entry-content .woocommerce > form
{
	
	margin-bottom: 100px;
}

.woocommerce-cart .entry-content .woocommerce form thead
{
	display: none;
}

.woocommerce-cart .entry-content .woocommerce form table.shop_table tr:first-child td
{
	border-top: none;
}

.woocommerce-cart .entry-content .woocommerce .cart-collaterals
{

}

.woocommerce-cart .entry-content .woocommerce .cart-collaterals .cart_totals
{
	padding: 40px 0;
}

.woocommerce-page #content .actions > input.button[name="update_cart"] { color: #FFF;}

.woocommerce table.shop_table.cart td.actions, 
.woocommerce-page table.shop_table.cart td.actions
{
	padding: 40px 0 0 0;
}

.woocommerce-cart .entry-content .woocommerce .actions .button
{
	float: right;
}

.woocommerce-cart .entry-content .woocommerce .actions #coupon_code
{
    padding: 16px;
    min-width: 240px;
    height: 50px;
    font-size: 14px;
    display: block;
    margin-right: 15px;
}

.woocommerce .cart-collaterals .cross-sells, 
.woocommerce-page .cart-collaterals .cross-sells
{
	width: 100%;
	float: none;
	padding: 0 40px 40px 40px;
}


.cart-collaterals .cart_totals .shop_table .order-total .woocommerce-Price-amount
{
	font-size: 36px;
}
.woocommerce ul#shipping_method li span
{
	text-indent: 0;
}


/**********************************************************************************/
/* Checkout ***********************************************************************/
/**********************************************************************************/

.woocommerce-checkout .entry-title:after
{
    content: "";
    display: block;
    height: 2px;
    margin: 29px auto 31px;
    width: 100px;
}

.woocommerce-checkout .content-area h2,
.woocommerce-checkout .content-area h3
{
	text-align: center;
}

.woocommerce-checkout .content-area h2
{
	margin-bottom: 13px;
	margin-top: 41px;
	text-transform: capitalize;
}

.woocommerce-checkout .content-area h3
{
	margin-bottom: 17px;
    margin-top: 28px;
}
	
/* Checkout - Thank you */

.woocommerce-thankyou-order-received {
    text-align: center;
    background: url(../images/thank_you_header_img.png) no-repeat;
    background-position: center bottom;
    height: 70px;
}

.woocommerce-thankyou-order-details {
    display: flex;
    padding-top: 20px !important;
    justify-content: center;
    margin: 0px 0px 60px 0px !important;
    background: url(../images/thank_you_header_img.png) no-repeat;
    background-position: center bottom;
}

.woocommerce-thankyou-order-details li:last-child {
	padding-right: 0px !important;
	margin-right: 0px !important;
	margin-bottom: 50px;
}

.woocommerce-thankyou-order-details li {
	margin: 0 2em 0 0;
    border-right: none !important;
    padding: 0 2.25em 0 0;
    font-size: 0.8125em !important;
    font-weight: 700 !important;
    text-align: left;
    display: inline;
}

.woocommerce-thankyou-order-details li strong {
    font-size: 1.0769em !important;
    color: #383838;
    font-weight: 400 !important;
    margin-top: 2px;
}

@media all and (max-width: 640px) {
	.woocommerce-thankyou-order-details {
		margin: 0px 0px 40px 0px !important;
	    display: block;
	    height: auto;
	}

	.woocommerce-thankyou-order-details li {
		display: block;
		clear: both;
		float: left;
	    margin-bottom: 20px !important;
	}

	.woocommerce-thankyou-order-details li:last-child {
	    margin-bottom: 30px !important;
	}

	.woocommerce-thankyou-order-received {
	    height: 60px;
	}
}

/**********************************************************************************/
/* Track Your Order ***************************************************************/
/**********************************************************************************/

.track-order-container
{
	padding: 22px 0 0;
}

.track-order-img-container
{
	height: 251px;
	line-height: 251px;
	margin: 0px 0 40px;
}

.track-order-description
{
	margin-bottom: 30px;
	text-align: center;
}


/**********************************************************************************/
/* Login/register  ****************************************************************/
/**********************************************************************************/

.login-register-container
{
	margin-top: 97px;
}

.account-forms-container
{
	height: auto;
	padding-left: 0px;
}

.account-img-container
{
	display: none;
}

.site-content .account-tab-list,
.account-tab-list
{
	list-style: none;
	padding: 0 0 20px;
	margin: 0;

}

.account-tab-list:after
{
	content: "";
	display: block;
	clear: both;
}

.account-tab-list li a
{
    font-weight: 400;
}

.account-tab-item
{
	float: left;
}

.account-tab-link
{
	display: inline-block;
	color: #b3b3b3;
	margin-right: 38px;
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	line-height: 1;
}

.account-tab-item.last .account-tab-link
{
	margin-right: 0;
}

.account-tab-link:hover
{
	color: #777;
}

.account-tab-link.current
{
	color: #000;
	border-bottom: 2px solid #000;;
	cursor: default;
}

.lost-pass-link
{
	font-size: 0.875em;
}

.login-register-container input[type="submit"]
{
	margin-top: 10px !important;
}

.register
{
	display: none;
}

.login_header
{
	border-top-width:7px;
	border-top-style:solid;
	border-top-color:#314381;
	position: absolute;
	width: 100%;
	top:0;
	left: 0;
	z-index: 100;
	text-align: left;
	padding-left: 30px;
	display: none;
}

.go_home
{
	display: inline-block;
	outline: none;
	margin-top: 22px;
	font-size: 0.8125em;
	font-weight: 700;
	position: relative;
	line-height: 1em;
	text-transform: uppercase;
}



/**********************************************************************************/
/* Lost reset password ************************************************************/
/**********************************************************************************/

.lost-reset-pass-text
{
	font-size: 1.125em;
	line-height: 1.3888em;
	color: #000;
	margin-bottom: 20px;
}


/**********************************************************************************/
/* My account/logged-in ***********************************************************/
/**********************************************************************************/

.woocommerce-account .entry-title:after
{
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	margin: 29px auto 31px;
}

.woocommerce-account .woocommerce-MyAccount-content p.form-row span em
{
	font-style: normal;
	font-size: 13px;
}

.woocommerce-account .content-area h2,
.woocommerce-account .content-area h3
{
	text-align: center;
}

.my_account_container h2
{
	margin-top: 41px;
	margin-bottom: 13px;
}

.myaccount_address_headers
{
	margin-bottom: 17px;
	margin-top: 28px;
}

.account_button
{
	margin-top: 43px !important;
}

.myaccount_form_headers
{
	font-size: 1.875em;
	text-align: center;
	margin-bottom: 24px;
	margin-top: -9px;
}

.myaccount_user 
{
	text-align: center;
}

.account_view_link
{
	font-size: 13px;
	text-transform: uppercase;
}


.edit-account fieldset
{
	margin: 0;
	padding: 0;
	border: 0;
}

.edit-account legend
{
	margin: 50px 0 15px;
	padding: 0;
	display: inline-block;
	float: left;
	font-size: 20px;
}

.edit-account .button
{
	margin-top: 10px !important;
}

/**********************************************************************************/
/* Offcanvas Widgets **************************************************************/
/**********************************************************************************/

.woocommerce .st-menu h2,
.st-menu h2
{
	color: #fff;
	margin:0;
	padding:0;
	font-size:1.5em;
	margin:30px 20px 35px; 
}

.st-menu .offcanvas-right-content .widget a,
.st-menu .offcanvas-right-content .widget .widget-title
{
	color:#fff;
}

.st-menu .offcanvas-right-content .widget,
.st-menu .offcanvas-right-content .widget .widget-title,
.st-menu .offcanvas-right-content .widget a:hover
{
	color:#ccc;
}

.st-menu .widget a
{
	font-size:1em;
}

.st-menu table tr th,
.st-menu table tr td
{
	font-size: 1em;
}

#site-footer .widget .total strong,
.slide-from-right  .widget .total strong
{
	color:#fff;
}

.st-menu.slide-from-right .widget .amount
{
	color: #fff;
}

.widget_shopping_cart .total .amount
{
	font-size:1.5em;
}

.widget_shopping_cart .total .subtotal_name
{
	padding:1em 0 0 0;	
}

#wishlist-offcanvas a.remove,
.widget_shopping_cart a.remove
{
	display: block;
	font-size:17px !important;
	line-height: 16px;
	text-align: right;
	
	width: auto;
	height: auto;
	margin-top: -10px;
    padding: 10px;
}

.offcanvas-right-content a.remove,
.offcanvas-right-content .woocommerce  a.remove,
.woocommerce .offcanvas-right-content a.remove
{
	color: rgba(255,255,255, 0.5) !important;
}

.offcanvas-right-content a.remove:hover,
.offcanvas-right-content .woocommerce  a.remove:hover,
.woocommerce .offcanvas-right-content a.remove:hover
{
	color: #fff !important;
}

#empty-wishlist-offcanvas-box
{
	width: 100px;
	height: 86px;
	background-image: url('../images/empty_wishlist_offcanvas.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100px 86px;		
	display: inline-block;
}

.widget_shopping_cart dt,
.widget_shopping_cart dt p,
.widget_shopping_cart dd,
.widget_shopping_cart dd p
{
	font-size:12px;
}

.widget_shopping_cart dl
{
	padding:0 !important;
	margin:0 !important;
}

.price_label:first-child
{
	display: none;
}

.widget.widget_price_filter .price_slider_amount .button
{
	padding:0 !important;
	margin:0 !important;
	line-height:inherit !important;
	height:auto !important;
	background:none !important;
	border: none;
	color:#314381 !important;
	text-align: right;
	width: 45px;
}

.widget.widget_price_filter .price_slider_amount .button:hover
{
	background:none !important;
}



/**********************************************************************************/
/* Categories Grid ****************************************************************/
/**********************************************************************************/

.categories_grid {
	margin:30px 0 0px 0;
}

article .categories_grid {
	margin-bottom: 0px;
}

.categories_grid:before,
.categories_grid:after
{
    content: " ";
    display: table;
}

.categories_grid .category_grid_box,
.category_list .category_grid_box
{
	overflow: hidden;
	position: relative;
	
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}

.categories_grid .category_item,
.category_list .category_item
{
	display:table !important;
	width:100%;
	color:#fff;
	position:relative;
	border-spacing:0;
}

.category_item_bkg
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	
	display: block;
	
	background-color:#f5f5f5;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}

.categories_grid .category_grid_box:hover .category_item_bkg,
.category_list .category_grid_box:hover .category_item_bkg
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.categories_grid .category_name,
.category_list .category_name
{
	width:100%;
	display: table-cell; 
	vertical-align: middle; 
	text-align: center;
	line-height:1.5em;
    font-size: 1.5em;
	font-weight:400;
    padding: 0 30px;
	background:rgba(0,0,0,.15);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
	z-index: 2;
}

.categories_grid .category_name:hover,
.category_list .category_name:hover
{
	width:100%;
	display: table-cell; 
	vertical-align: middle; 
	text-align: center;
	background:rgba(0,0,0,.6);
}



/**********************************************************************************/
/* Wishlist Plugin ****************************************************************/
/**********************************************************************************/

.yith-wcwl-add-to-wishlist {
	margin: 25px 0 10px;
}

#yith-wcwl-popup-message,
.cart tr center {
	display:none !important;
}

.yith-wcwl-add-button,
.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse {
	font-size:0.8125rem;
	font-weight: bold;
	text-transform: uppercase;
	position:relative;
	display:inline-block;
	padding:0 0 2px 24px;
	cursor:pointer;
}

.yith-wcwl-add-to-wishlist a {
    font-weight: bold;
    }

.yith-wcwl-wishlistaddedbrowse,
.yith-wcwl-wishlistexistsbrowse
{
	cursor: default;
}

.yith-wcwl-wishlistaddedbrowse .feedback,
.yith-wcwl-wishlistexistsbrowse .feedback
{
	text-transform: none;
	font-weight: 400;
}

.product_infos .yith-wcwl-wishlistexistsbrowse.show a,
.product_infos .yith-wcwl-wishlistaddedbrowse a
{
	margin-left: 8px;
}

.single-product.with-sidebar .product_infos .yith-wcwl-wishlistexistsbrowse a
{
	display: block;
	margin: 7px 0 0;
}

.add_to_wishlist:before,
.product_infos .yith-wcwl-wishlistaddedbrowse:before,
.product_infos .yith-wcwl-wishlistexistsbrowse:before,
.products .yith-wcwl-wishlistaddedbrowse a:before,
.products .yith-wcwl-wishlistexistsbrowse a:before
{
	font-size:13px;
	width: 18px;
	text-align: center;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.product_infos .add_to_wishlist:before,
.product_infos .yith-wcwl-wishlistaddedbrowse:before,
.product_infos .yith-wcwl-wishlistexistsbrowse:before 
{
	position: absolute;
	left: 0;
	top: -3px;
}

.product_infos .yith-wcwl-wishlistaddedbrowse:before,
.product_infos .yith-wcwl-wishlistexistsbrowse:before,
.products .yith-wcwl-wishlistaddedbrowse a:before,
.products .yith-wcwl-wishlistexistsbrowse a:before
{
	content: "\f004";
	line-height: 18px;
}

.add_to_wishlist:before
{
	content: "\f08a";
	line-height: 18px;
}

.products .yith-wcwl-add-to-wishlist
{
	height: 0;
	margin: 0;
	overflow: hidden;
}

.products li a.add_to_wishlist,
.products .yith-wcwl-add-button,
.products .yith-wcwl-wishlistexistsbrowse,
.products .yith-wcwl-wishlistaddedbrowse

{
	font-size: 0;
	line-height: 0;
	padding: 0;
	position: static !important;
}

.products .add_to_wishlist:before,
.products .yith-wcwl-wishlistaddedbrowse a:before,
.products .yith-wcwl-wishlistexistsbrowse a:before
{
	position:absolute;
	bottom: -29px;
	right:0;
}

.yith-wcwl-add-to-wishlist .ajax-loading
{
	display: none !important;
    position: absolute;
    top: 50%;
	left: 50%;
    margin-left: -8px;
    margin-top: -8px;
}

.products .add_to_wishlist:before
{	
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
}

.yith-wcwl-add-button:after
{
	content: '';
	display: inline-block;
	
	background: rgba(255,255,255,.9);
	
	opacity: 0;
	
	transition: opacity 0.3s, width 3s ease 30s, height 0s ease 30s;
	-webkit-transition: opacity 0.3s,width 0s ease 30s, height 0s ease 30s;
}

.products .yith-wcwl-add-button:after
{
	position: absolute;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
}

.yith-wcwl-add-button.show_overlay:after
{
	opacity: 1;
	
	transition: opacity 0.3s, width 0s ease 0s, height 0s ease 0s;
	-webkit-transition: opacity 0.3s,width 0s ease 0s, height 0s ease 0s;
}

.product_infos .yith-wcwl-add-button.show_overlay:after
{
    width: 48px;
	height: 10px;
}

.products .yith-wcwl-add-button.show_overlay:after
{
	position: absolute;
	width: 100%;
	height: 100.1%;
}

.products .yith-wcwl-add-button.show_overlay.hide:after
{
	width: 0px;
	height: 0px;
	
	opacity: 1;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.yith-wcwl-add-button:after
{
	background-image: url('../images/ajax-loader.gif') !important;
	background-position: center;
	background-repeat: no-repeat;
}


/* Wishlist Table*/

.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock,
.wishlist_table tr td.product-stock-status span.wishlist-in-stock,
.wishlist-in-stock,
.wishlist-out-of-stock
{
	font-size: 0.6875em;
	padding: 5px 9px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	letter-spacing: 1px;
}

.wishlist_table tr td.product-stock-status span.wishlist-in-stock
{
	border: 2px solid #297e29;
}

.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock
{
	color: #4f4c4d;
	border: 2px solid #4f4c4d;
}

.product_list_widget .wishlist-in-stock
{
	color: #fff;
	border: 2px solid #fff;
	padding: 2px 9px;
	
}

.product_list_widget .wishlist-out-of-stock
{
	border: 2px solid;
}

.wishlist-empty-banner
{
	margin-bottom: 40px;
}

.yith-wcwl-share ul {
	margin:0 !important;
	padding:0 !important;
}

/**********************************************************************************/
/* Offcanvas wishlist **************************************************************/
/**********************************************************************************/


#wishlist-offcanvas h2
{
	text-align: center;
}

table.cart_list .product-description
{
	padding-left: 20px;
}

.st-menu .widget .product-title
{
	display: block;
    font-size: 0.875em;
    font-weight: 700 !important;
    line-height: 1.428em;
	margin-top: -2px;
    margin-bottom: 3px;
}

.product_list_widget .product-variation
{
	color: #fff;
	font-size: .8125em;
	line-height: 23px;
	display: block;
}

.product_list_widget .product-variations
{
    margin-top: -5px;
    margin-bottom: 5px;
}

.cart .product-variation
{
	font-size: .8125em;
	line-height: 23px;
	display: block;
}

.product_list_widget .product-description .amount
{
	display: block;
    margin: -4px 0 1px 0;
}

.product-description .amount
{
	margin-right: 8px;
	display: inline-block;
	font-size: 0.8125em;
}

table.cart_list .wishlist_offcanvas_mobile 
{
	border-top: none;
}

table.cart_list .wishlist_offcanvas_mobile td
{
	padding-top: 0;
	text-align: center;
}

#wishlist-offcanvas .button,
#wishlist-offcanvas input[type="button"],
#wishlist-offcanvas input[type="reset"],
#wishlist-offcanvas input[type="submit"]
{
	color: #314381 !important;
	background: #fff;
	padding:11px 15px 10px;
	height: auto;
	margin: 7px 0 10px;
	width: 210px;
}

#wishlist-offcanvas .button:hover
{
	color: #fff !important;
	background: #000;
}

.wishlist-empty-text
{
	max-width: 80%;
}

/**********************************************************************************/
/* Minicart ***********************************************************************/
/**********************************************************************************/

#minicart-offcanvas .widgettitle 
{
	text-align: center;
	font-weight: 400;
	display: none;
}

#minicart-offcanvas .widget .widget_shopping_cart_content .product-name  a
{
	font-size: 0.875em;
	line-height: 1.428em;
	display: block;
	margin-bottom: 8px;
	color: #fff;
}

table.cart_list {
	margin:0;
	padding:0;
}

table.cart_list tr {
	position:relative;
	border:0;
	border-top:2px solid rgba(255, 255, 255, .05);
}

#minicart-offcanvas table.cart_list tr:first-child
{
	border: none;
}

table.cart_list tr tr {
	border-top:0;
}

table.cart_list td {
	position:relative;
	vertical-align:top;
	padding:20px 0;
}

table.cart_list td td {
	padding:0;
}
 
#wishlist-offcanvas .product-thumbnail,
#minicart-offcanvas .product-thumbnail {
	padding-left:20px;
	width:80px;
}

table.cart_list .product-thumbnail img {
	width:60px;
	height:auto;
}

table.cart_list .product-name {
	padding-left:20px;
}

table.cart_list .variation {
	font-size:.8em;
}

#site-footer table.cart_list .variation,
.slide-from-right table.cart_list .variation
{
	color:#fff;
}

table.cart_list .variation:after{
	content: "";
	display: block;
	clear: both;
}

table.cart_list .variation dt {
	padding-right:5px !important;
	text-transform:capitalize;
}

table.cart_list .variation dd {
	text-transform:uppercase;
}

.cart_list .product-name a
{
	display: block;
    font-size: 14px;
    line-height: 1.787em;
    margin-top: -2px;
	margin-bottom: 5px;
}

table.cart_list .quantity {
	font-size:.8125em;
	line-height: 1em;
	display: block;
}

table.cart_list .product-remove {
	padding-left:10px;
	padding-right:6px;
}

.widget_shopping_cart .remove
{
	margin-right: -19px;
}

#minicart-offcanvas .widget_shopping_cart .remove
{
	margin-right: 0;
}

#minicart-offcanvas .widget_shopping_cart .buttons {
	margin:0 20px;
}

.widget_shopping_cart .buttons .view_cart {
	border:2px solid #fff;
}

.widget_shopping_cart .buttons .view_cart:hover {
	background:#000;
	border: 2px solid #000000;
}

#site-footer .widget_shopping_cart .buttons .checkout,
#minicart-offcanvas .widget_shopping_cart .buttons .checkout {
	background:#fff !important;
	color:#000 !important;
}

#site-footer .widget_shopping_cart .buttons .checkout:hover,
#minicart-offcanvas .widget_shopping_cart .buttons .checkout:hover {
	background:#000 !important;
	color:#fff !important;
}

.widget_shopping_cart .buttons .checkout:hover 
{
	border: none;
}

.offcanvas-empty-banner
{
	text-align: center;
	margin-top: 65px;
	margin-bottom: 25px;
}

#empty-cart-offcanvas-box
{
	width: 111px;
	height: 129px;
	background-image: url('../images/empty_cart_offcanvas.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 111px 129px;		
	display: inline-block;
}

.offcanvas-empty-text
{
	text-align: center;
	font-size: 1.5em;
	line-height: 1.5em; 
	color: #fff;
	
	margin: 0 auto;
}

.cart-empty-text
{
	max-width: 70%;
}

/**********************************************************************************/
/* Offcanvas filters **************************************************************/
/**********************************************************************************/

#filters-offcanvas {
	padding:26px 30px;
}

.slide-from-left aside {
	margin: 0 -30px 39px;
	padding: 0 30px 32px;
}


.slide-from-left.filters aside
{
	border-bottom-width: 2px;
	border-bottom-style: solid;
}

/**********************************************************************************/
/* Shortcodes *********************************************************************/
/**********************************************************************************/

/* Add to Cart Button */

.wpb_wrapper .add_to_cart_inline
{
	border: none !important;
	padding: 0 0 35px !important;
	margin: 0;
}

.wpb_wrapper .add_to_cart_inline:after
{
	content: "";
	display: block;
	clear: both;
}

.wpb_wrapper .add_to_cart_inline .amount
{
	display: inline-block;
    font-size: 1.875rem;
	line-height: 1;
	margin-bottom: 20px;
	
	position: relative;
}

.wpb_wrapper .add_to_cart_inline del .amount
{
	color: inherit;
	font-size: 1.3125rem;
	display: inline;
}

.wpb_wrapper .add_to_cart_inline ins
{
	background-color: transparent;
}

.wpb_wrapper .add_to_cart_inline .add_to_cart_separator
{
	content: "";
	display: block;
	clear: both;
}

.wpb_wrapper .product.woocommerce .add_to_cart_button:before,
.wpb_wrapper .product.woocommerce .added_to_cart_button:before
{
	display: inline-block;
	margin-right: 6px;
	font: normal normal normal 13px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	position: relative;
	top: 0px;
}

.wpb_wrapper .product.woocommerce .add_to_cart_button:before
{
	content: "\f067"; 
}

.wpb_wrapper .product.woocommerce .added_to_cart_button:before
{
	content: "\f00c";
}

.add_to_cart_inline .add_to_cart_button.vc_btn_rounded.loading,
.add_to_cart_inline .add_to_cart_button.vc_btn_square.loading
{
	opacity: 0.8;
}

.add_to_cart_inline .add_to_cart_button.loading span,
.add_to_cart_inline .add_to_cart_button.loading:before
{
	opacity: 0;
}

.add_to_cart_inline .add_to_cart_button:after
{
	content: "";
	display: inline-block;
	width: 30px;
	height: 14px;
	border-radius: 7px;
	opacity: 0;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 2;
	
	background:url('../images/preloader-white-bg-32.gif') center no-repeat rgba(255,255,255,1);
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.add_to_cart_inline .add_to_cart_button:focus
{
	border:0;
}

.add_to_cart_inline .add_to_cart_button.loading:after
{
	opacity: 1;
}

.wpb_wrapper .product.woocommerce  .add_to_cart_button.added:before
{
	content: "\f00c";
	display: inline-block;
	
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	position: relative !important;
	right: auto !important;
	left: auto !important;
}

.shortcode_single_product li {
	width:100% !important;
}

/* Banner */

.shortcode_banner_simple_height {
	
	cursor:pointer;
	margin-bottom:30px;
	clear:both;
	
	position: relative;
	
}

.shortcode_banner_simple_height_inner
{
    
    padding:15px;
    
    overflow: hidden;
    position: relative;
	
    backface-visibility:hidden;
    -webkit-backface-visibility: hidden;
}

.shortcode_banner_simple_height_inner:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	z-index: 3;
}

.shortcode_banner_simple_height_inner:hover:before
{
	background:rgba(0,0,0,.3);
}

.shortcode_banner_simple_height_bkg
{
    	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	
	display: block;
	
	background-color:#f5f5f5;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
	
	z-index: 2;
}

.shortcode_banner_simple_height:hover .shortcode_banner_simple_height_bkg
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.shortcode_banner_simple_height:hover {
	background-size: 115%;
}

.shortcode_banner_simple_height_inside {
	padding:20px;
	text-align:center;
	border:2px solid #fff;
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	display: table;
	width:100%;
	box-sizing: border-box;
	
	position: relative;
	z-index: 5;
}

.shortcode_banner_simple_height_content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	
	position: relative;
	z-index: 999;
}

.shortcode_banner_simple_height_inside h3 {
	padding:0;
	margin:0;
	font-size:1.7em;
	line-height: 1.391em;
}

.shortcode_banner_simple_height_inside h3 strong {
	font-size:28px;
}

.shortcode_banner_simple_height_inside h3 a {
	text-decoration:underline;
}

.shortcode_banner_simple_height_inside h4 {
	padding:0;
	margin:0;
	font-size:1rem;
	font-weight: 400;
	line-height: 1.5em;
}

.shortcode_banner_simple_height_inside h4 a {
	text-decoration:underline;
}

.shortcode_banner_simple_height_sep {
	width:20%;
	height:2px;
	background:#fff;
	margin:5px auto;
}

.shortcode_banner_simple_height_bullet {
		
	display: table;
	width:180px;
	height:180px;
	background:#000;
	
	border-radius: 50%;
	text-align:center;
	text-transform:uppercase;
	color:#fff;
	line-height:1.3em;
	
	position:absolute;
	top:50%;
	margin-top: -90px;
	right:30px;
	z-index: 4;
	
}

.shortcode_banner_simple_height_bullet strong {
	font-size:18px;
	line-height:1.5em;
}

.shortcode_banner_simple_height_bullet span {
	display: table-cell;
	vertical-align: middle;
	font-weight: 700;
	padding:20px;
}


/* Site Social Icons */

.site-social-icons-shortcode {
	vertical-align: middle;
	clear:both;
	margin: 5px -15px 15px -15px;
	display: block;
}

.site-social-icons-shortcode ul {
	list-style:none;
	margin:0 !important;
	padding:0 !important;
    line-height: 1em;
}

.site-social-icons-shortcode ul.left {
	text-align:left;
}

.site-social-icons-shortcode ul.center {
	text-align:center;
}

.site-social-icons-shortcode ul.right {
	text-align:right;
}

.site-social-icons-shortcode:before,
.site-social-icons-shortcode:after,
.site-social-icons-shortcode ul:before,
.site-social-icons-shortcode ul:after
{
	content:" ";
	display:table;
	clear:both;
}

.site-social-icons-shortcode ul li {
	font-size: 24px;
	padding: 5px 15px;
	display:inline-block;
}

.site-social-icons-shortcode ul li a {
    color: #222;
}

.site-social-icons-shortcode ul li a i {
	-webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}

.site-social-icons-shortcode ul li a:hover i {
	opacity:.5;
}

.site-social-icons-shortcode ul li span {
	display:none;
}


/* from the blog slider */

.from-the-blog-wrapper {
	margin: 30px 0px 0px 0px;
}

.from_the_blog_item {
	padding: 0 15px;	
}

.from_the_blog_item h3 {
	text-align: center;
	font-size: 1.457em;
	line-height: 1.304em;
	margin: 0 0 12px;
}

.from_the_blog_item .post_header_date {
	text-align: center;
	font-size: 0.875em;
}

.from_the_blog_item.gallery {
	margin: 0 !important;
}

.from_the_blog_overlay
{
	display: block;
	background: rgba(0,0,0,0);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
}

.from_the_blog_item:hover .from_the_blog_overlay
{
	background: rgba(0,0,0,0.6);
}

.from_the_blog_img_link
{
	display: block;
	overflow: hidden;
	position: relative;
	height: 245px;
	width: 100%;
	margin-bottom: 18px;
	
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}	

.from_the_blog_img
{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    -ms-background-size:cover;
	
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}

.from_the_blog_item:hover .from_the_blog_img
{
	transform: translateZ(0) scale(1.1,1.1);
	-moz-transform: translateZ(0) scale(1.1,1.1);
	-webkit-transform: translateZ(0) scale(1.1,1.1);
	-ms-transform: none;
}

.grabbing .from_the_blog_item:hover .from_the_blog_img
{
	transform: none;
	-moz-transform: none;
	-webkit-transform: none;
	-ms-transform: none;
}

.with_thumb_icon {
	position: absolute;
	width:50px;
	height: 50px;
	display: block;
	background: #314381;
	top: 0;
	left: 0;
	text-align: center;
	color: #fff;
	line-height: 50px;
	z-index: 3;
}

.no_thumb_icon {
	line-height: 245px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	z-index: 3;
}


.no_thumb_icon:before,
.with_thumb_icon:before {
	display: inline-block;
	vertical-align: middle;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 3;
}

.with_thumb_icon:before {
	font-size: 18px;
}

.no_thumb_icon:before {
	font-size: 78px;
}

.from_the_blog_item.standard .with_thumb_icon {
	display: none;
}

.no-thumb.standard .no_thumb_icon:before {
	content: "\f15c";
}

.no_thumb.status .no_thumb_icon:before,
.from_the_blog_item.status .with_thumb_icon:before 
{
	content: "\f075";
}

.no_thumb.link .no_thumb_icon:before,
.from_the_blog_item.link .with_thumb_icon:before
{
	content: "\f0c1";
}

.no_thumb.video .no_thumb_icon:before,
.from_the_blog_item.video .with_thumb_icon:before
{
	content: "\f16a";
}

.no_thumb.audio .no_thumb_icon:before,
.from_the_blog_item.audio .with_thumb_icon:before
{
	content: "\f001";
}

.no_thumb.aside .no_thumb_icon:before,
.from_the_blog_item.aside .with_thumb_icon:before
{
	content: "\f15b";
}

.no_thumb.quote .no_thumb_icon:before,
.from_the_blog_item.quote .with_thumb_icon:before
{
	content: "\f10d";
}

.no_thumb.image .no_thumb_icon:before,
.from_the_blog_item.image .with_thumb_icon:before
{
	content: "\f03e";
}

.no_thumb.gallery .no_thumb_icon:before,
.from_the_blog_item.gallery .with_thumb_icon:before
{
	content: "\f00a";
}

.no_thumb .from_the_blog_img
{
	line-height: 245px;
}

.from_the_blog_noimg
{
	background: #f5f5f5;
	height: 245px;
	width: 100%;
	display: block;
}


/* from the blog list */

.from-the-blog-list-wrapper
{
	display: block;
	position: relative;
}

.blog-list-item
{
	position: relative;
	margin:0 -30px;
}

.blog_list_img_link
{
	display: block;
	overflow: hidden;
	position: relative;
	
	width: 100%;
	
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}	

.blog_list_overlay
{
	display: block;
	background: rgba(0,0,0,0);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	-ms-transition: all .3s ease;
}

.blog_list_img_link:hover .blog_list_overlay
{
	background: rgba(0,0,0,0.6);
}

.blog_list_img
{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size:cover;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    -o-background-size:cover;
    -ms-background-size:cover;
	
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
}

.blog_list_img_link:hover .blog_list_img
{
	transform: translateZ(0) scale(1.1,1.1);
	-moz-transform: translateZ(0) scale(1.1,1.1);
	-webkit-transform: translateZ(0) scale(1.1,1.1);
	-ms-transform: none;
}

.blog-list-content-wrapper
{
	display: table;
	color: #fff;
	padding: 50px 0px;
	
	width: 100%;
	
	position: relative;
	z-index: 10;
}

.blog-list-content-inner
{
	display: table-row;
}

.blog-list-day 
{
	display: table-cell;
	vertical-align: top;
	
	font-size: 30px;
	line-height: 20px;
	text-align: left;
	
	padding-left: 30px;
	
	width: 80px;
	min-width: 80px;
}

.blog-list-content
{
	display: table-cell;
	vertical-align: top;
	
	padding-left: 18px;
	padding-right: 30px;
	border-left: 2px solid;
}

.blog-list-date
{
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	
	margin: -1px 0 7px 3px;
}

.blog-list-title
{
	font-size: 24px;
	line-height: 1.2;
	margin: 0 0 -4px;
}

/*Gallery*/

.gallery-item
{
	display: block;
	overflow: hidden;
	
	position: relative;
	
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}

.gallery-item:hover
{
	cursor: pointer;
	
}

.gallery-icon a
{
	display: block;
	position: relative;
	z-index: 2;
}

.gallery-icon a:before
{
	content: "";
	display: block;
	background: rgba(0,0,0,0); 
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	
	-webkit-transition: all .3s ease;                  
    -moz-transition: all .3s ease;                 
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
}


.gallery-icon a:hover:before
{
	background: rgba(0,0,0,0.6);
}

.gallery-item img
{
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
	
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}

.gallery-item:hover img
{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.gallery-item .gallery-caption,
.gallery-caption-trigger
{
	display: none;
}


/* shortcode_products_slider */

.shortcode_products_slider {
	margin:0 -15px;
}

/* shortcode product */

.shortcode_single_product li {
	width:100% !important;
}


/**********************************************************************************/
/* Footer *************************************************************************/
/**********************************************************************************/

.site-footer-widget-area
{
	display: none;
}

.trigger-footer-widget-area
{
	text-align: center;
	
}

.trigger-footer-widget-icon
{
	display: inline-block !important;
	padding: 9px 20px;
	border: 1px solid #4b4b4c;
	margin-bottom: 30px;
}

.trigger-footer-widget-icon:before
{
	font-family: 'getbowtied-icons';
	content: "\e60a";
	font-size: 30px;
	display: inline-block;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: middle;
}

@media only screen and (min-width: 1024px){

	.trigger-footer-widget-icon:hover
	{
		cursor: pointer;
	}

	.trigger-footer-widget-icon.active:hover
	{
		cursor: default;
	}

}


#site-footer .widget_shopping_cart .remove
{
	color:rgba(255,255,255,.5) !important;
}

#site-footer .widget_shopping_cart .remove:hover
{
	color:rgba(255,255,255,1) !important;
}

#site-footer .widget_calendar table tr th,
#site-footer .widget_calendar table tr td
{
	color: #fff;
}

#site-footer .widget li:last-child
{
	padding-bottom: 0;
}

#site-footer .button.checkout.wc-forward
{
	margin-bottom: 0;
}


/**********************************************************************************/
/* Visual Composer Shortcodes  ****************************************************/
/**********************************************************************************/

/*general*/

.wpb_wrapper h1,
.wpb_wrapper h2,
.wpb_wrapper h3,
.wpb_wrapper h4,
.wpb_wrapper h5,
.wpb_wrapper h5,
.wpb_wrapper h6,
.wpb_wrapper h1 a,
.wpb_wrapper p
{
	color: inherit;
}

.wpb_wrapper #products-grid > li > a
{
	color: inherit;
}

.wpb_wrapper #products-grid {
	margin-top:5px;
}

.full-width-page .wpb_wrapper div[id^="gallery-"],
.full-width-page .wpb_alert.wpb_content_element,
.full-width-page .wpb_wrapper .wpb_gmaps_widget,
.full-width-page .wpb_wrapper #map_container,
.full-width-page .wpb_wrapper .wpb_revslider_element,
.full-width-page .wpb_wrapper .portfolio-isotope-container,
.full-width-page .lookbook
{
	margin-left: -30px !important;
	margin-right: -30px !important;
}

.full-width-page .boxed-row .wpb_wrapper .gallery,
.full-width-page .boxed-row .wpb_alert.wpb_content_element,
.full-width-page .boxed-row .wpb_wrapper .wpb_gmaps_widget,
.full-width-page .boxed-row .wpb_wrapper #map_container,
.full-width-page .boxed-row .wpb_wrapper .wpb_revslider_element,
.full-width-page .boxed-row .wpb_wrapper .portfolio-isotope-container
{
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.wpb_wrapper .owl-wrapper-outer .gallery
{
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.wpb_tabs.wpb_content_element .wpb_alert.wpb_content_element,
.wpb_tour.wpb_content_element .wpb_alert.wpb_content_element,
.wpb_accordion.wpb_content_element .wpb_alert.wpb_content_element
{
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.wpb_wrapper .wpb_content_element .gallery
{
	margin-bottom: -35px !important;
}

.wpb_gmaps_widget.wpb_content_element
{
	margin-bottom: 0;
}

.wpb_wrapper .site-social-icons-shortcode ul li a {
    color: inherit;
}


/* Visual Composer Rows */

/* Front-end editor */
.vc_empty-placeholder {
	margin-bottom: 0;
}

.vc_row-fluid.parallax {
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}

.full-width-page .content-area
{
    padding:0;
}

.full-width-page .row-fluid
{
	margin: 0 -15px;
}

.full-width-page .row
{
	padding: 0;
	max-width:none;
	background-repeat: no-repeat;
	background-position: center top;
}

.full-width-page .boxed-row
{
	max-width:1290px;
	margin:0 auto;
}

.full-width-page .row .boxed-row .row
{
	margin-left: 0;
	margin-right: 0;
}

.boxed-row .vc_row-fluid .vc_row-fluid
{
	margin-left: -15px;
	margin-right: -15px;
}


/* Adjust Columns Height */

.adjust_cols_height > div > .column_container
{
	background-size: 0 !important;
	min-height: 200px;
}

.adjust_cols_height.height_adjusted .column_container
{
	 background-size: cover !important;
}


/*Tabs & Tour Sections*/

.wpb_tabs.wpb_content_element #products-grid
{
	margin-top: 0;
}

.wpb_tabs.wpb_content_element .wpb_tabs_nav
{
	list-style: none;
	padding: 0;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	text-align:center;
	background: none;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav
{
	width: 100%;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li,
.wpb_tabs.wpb_content_element .wpb_tabs_nav  li
{
	display:block;
	float: none;
	background: none;
	padding: 0;
	margin: 0;
}

.wpb_tabs.wpb_content_element .wpb_tabs_nav li:first-child
{
	margin-left: 0;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li:hover,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li:hover
{
	background: none;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li.ui-tabs-active,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active
{
	background: none;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li a,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li a
{
	display: block;
	color: inherit;
	font-size: 1.2857em;
	padding: .8em 0;
	text-shadow: none;
	text-decoration: none;
	border-bottom:1px solid;
	
	opacity: 0.45;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li a
{
	font-size: 0.8125rem;
	text-transform: uppercase;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li a:hover,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li a:hover
{
	opacity: 0.55;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav  li.ui-tabs-active a,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a
{
	color: inherit;
	background: none;
	border-bottom: 2px solid;
	opacity: 1;
}

.wpb_tour.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab
{
	width: 100%;
	padding: 21px 0 30px 0;
	
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav
{
	width: 100%;
	margin-left: 0;
	padding-left: 0;
	padding-right: 0;
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span
{
	padding-top: 20px;
	border-top: 1px solid #ddd;
	width: 50%;
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a
{
	font-size: 0.875rem;
	border-bottom: none;
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a:before,
.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav span a:after
{
	display: inline-block;
	font-size: 16px;
	font-style: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav .wpb_prev_slide a:before
{
	content: "\2190";
	margin-right: 8px;
}

.wpb_tour.wpb_content_element .wpb_tour_next_prev_nav .wpb_next_slide a:after
{
	content: "\2192";
	margin-left: 8px;
}

.wpb_tabs.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header,
.wpb_tabs.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab

{
	background:none;
	border:0;
	padding:35px 0;
	margin:0;
	
	-webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .7s;
    -moz-animation-duration: .7s;
    -ms-animation-duration: .7s;
    -o-animation-duration: .7s;
    animation-duration: .7s;
	
	-webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.vc_tta.vc_general .vc_tta-tab > a {
	padding: 16px 32px;
}

.vc_tta-title-text {
	font-size: 18px;
}


/* Tabs/Accordions/Toggles/Tour fix - jQuery ui */

.wpb_tabs .ui-widget-content,
.wpb_accordion .ui-widget-content,
.wpb_tour .ui-widget-content
{
    border: none;
}

.wpb_tabs .ui-widget-header,
.wpb_accordion .ui-widget-header,
.wpb_tour .ui-widget-header
{
    border:none;
	background: none;
}

.wpb_tabs .ui-state-default,
.wpb_tabs .ui-widget-content .ui-state-default,
.wpb_tabs .ui-widget-header .ui-state-default,
.wpb_accordion .ui-state-default,
.wpb_accordion .ui-widget-content .ui-state-default,
.wpb_accordion .ui-widget-header .ui-state-default
{
    border: none;
}

.wpb_accordion .ui-accordion .ui-accordion-header .ui-icon
{
	font-size: 1rem;
	line-height: 1;
    left: auto;
    margin-top: 0;
    text-indent: 0;
    overflow: visible;
}

.wpb_tabs .ui-corner-all,
.wpb_accordion .ui-corner-all
{
    border-radius: 0;
}

.wpb_tabs .wpb_tabs_nav:after
{
    visibility: visible;
}

.wpb_tabs .ui-tabs .ui-tabs-nav li
{
    top: 0;
}

.wpb_tabs .ui-tabs .ui-tabs-nav li a
{
    float: none;
    font-weight: bold;
}
 
.wpb_tour .ui-helper-reset,
.wpb_tabs .ui-helper-reset,
.wpb_accordion .ui-helper-reset
{
	line-height: 1.714em;
}

.wpb_tour.wpb_content_element .wpb_tabs_nav li,
.wpb_tabs.wpb_content_element .wpb_tabs_nav li
{
	border: none;
}


/*Message Boxes*/

.wpb_alert.wpb_content_element
{
	border-radius: 0;
}

.wpb_alert.wpb_content_element.wpb_alert-info,
.wpb_alert.wpb_content_element.wpb_alert-warning,
.wpb_alert.wpb_content_element.wpb_alert-success,
.wpb_alert.wpb_content_element.wpb_alert-danger
{
	border: none;
	padding: 22px 30px;
	text-shadow: none;
}

.wpb_alert.wpb_content_element.wpb_alert-info
{
	color: #1e85be;
	border-top: 2px solid #1e85be;
	background: #f4f9fc;
}

.wpb_alert.wpb_content_element.wpb_alert-warning
{
	color: #fca103;
	border-top: 2px solid #fca103;
	background: #fffaf2;
}

.wpb_alert.wpb_content_element.wpb_alert-success
{
	color: #8fae1b;
	border-top: 2px solid #8fae1b;
	background: #f9fbf3;
}

.wpb_alert.wpb_content_element.wpb_alert-danger
{
	color: #b81c23;
	border-top: 2px solid #b81c23;
	background: #fdf8f8;
}


.wpb_alert.wpb_content_element .messagebox_text
{
	padding-left: 27px;
	position: relative;
	background: none;
}

.wpb_alert.wpb_content_element .messagebox_text:before
{
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left: 4px;
	top: 2px;
}

.wpb_alert.wpb_content_element.wpb_alert-info .messagebox_text:before
{
	content: "\f129";
}

.wpb_alert.wpb_content_element.wpb_alert-warning .messagebox_text:before
{
	content: "\f12a";
}

.wpb_alert.wpb_content_element.wpb_alert-success .messagebox_text:before
{
	content: "\f00c";
	left: 0px;
}

.wpb_alert.wpb_content_element.wpb_alert-danger .messagebox_text:before
{
	content: "\f00d";
	left: 1px;
}


/* Buttons */

.vc_btn.vc_btn_xs,
.vc_btn.vc_btn_sm,
.vc_btn.vc_btn_md,
.vc_btn.vc_btn_lg
{
	border-radius: 0;
	font-size: 0.8125rem;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	border: none;
	min-width: 170px;
	width: auto;
	position: relative;

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	
	transition: padding 0.3s, min-width 0.3s, opacity 0.3s;
	-webkit-transition: padding 0.3s, min-width 0.3s, opacity 0.3s;
}

.vc_btn.vc_btn_xs
{
	min-width: 100px;
}

.vc_btn.vc_btn_xs:hover
{
	min-width: 120px;
}

.vc_btn.vc_btn_sm:hover,
.vc_btn.vc_btn_md:hover,
.vc_btn.vc_btn_lg:hover
{
	min-width: 190px;
}

.button_text
{
	position: relative;
	z-index: 5;
}

.vc_btn.vc_btn_rounded:before,
.vc_btn.vc_btn_rounded_outlined:before,
.vc_btn.vc_btn_rounded_outlined .outlined_background,
.vc_btn.vc_btn_xs.vc_btn_rounded,
.vc_btn.vc_btn_sm.vc_btn_rounded,
.vc_btn.vc_btn_md.vc_btn_rounded,
.vc_btn.vc_btn_lg.vc_btn_rounded,
.vc_btn.vc_btn_xs.vc_btn_rounded_outlined,
.vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
.vc_btn.vc_btn_md.vc_btn_rounded_outlined,
.vc_btn.vc_btn_lg.vc_btn_rounded_outlined
{
	border-radius: 100px;
	-webkit-border-radius: 100px;
	border:0;
}

.vc_btn.vc_btn_xs
{
	padding: 8px 16px 7px;
}

.vc_btn.vc_btn_xs:hover
{
	padding: 8px 26px 7px;
}

.vc_btn.vc_btn_sm
{
	padding: 15px 24px 13px;
}

.vc_btn.vc_btn_sm:hover
{
	padding: 15px 34px 13px;
}

.vc_btn.vc_btn_md
{
	padding: 22px 36px 19px;
}

.vc_btn.vc_btn_md:hover
{
	padding: 22px 46px 19px;
}

.vc_btn.vc_btn_lg
{
	padding: 30px 48px 27px;
}

.vc_btn.vc_btn_lg:hover
{
	padding: 30px 58px 27px;
}

.vc_btn.vc_btn_xs.vc_btn_square_outlined,
.vc_btn.vc_btn_xs.vc_btn_rounded_outlined
{
	padding: 8px 15px 7px;
}

.vc_btn.vc_btn_xs.vc_btn_square_outlined:hover,
.vc_btn.vc_btn_xs.vc_btn_rounded_outlined:hover
{
	padding: 8px 25px 7px;
}

.vc_btn.vc_btn_sm.vc_btn_square_outlined,
.vc_btn.vc_btn_sm.vc_btn_rounded_outlined
{
	padding: 13px 22px 11px;
}

.vc_btn.vc_btn_sm.vc_btn_square_outlined:hover,
.vc_btn.vc_btn_sm.vc_btn_rounded_outlined:hover
{
	padding: 13px 32px 11px;
}

.vc_btn.vc_btn_md.vc_btn_square_outlined,
.vc_btn.vc_btn_md.vc_btn_rounded_outlined
{
	padding: 20px 34px 17px;
}

.vc_btn.vc_btn_md.vc_btn_square_outlined:hover,
.vc_btn.vc_btn_md.vc_btn_rounded_outlined:hover
{
	padding: 20px 44px 17px;
}

.vc_btn.vc_btn_lg.vc_btn_square_outlined,
.vc_btn.vc_btn_lg.vc_btn_rounded_outlined
{
	padding: 27px 45px 24px;
}

.vc_btn.vc_btn_lg.vc_btn_square_outlined:hover,
.vc_btn.vc_btn_lg.vc_btn_rounded_outlined:hover
{
	padding: 27px 55px 24px;
}

.vc_btn.vc_btn_xs.vc_btn_square:hover,
.vc_btn.vc_btn_sm.vc_btn_square:hover,
.vc_btn.vc_btn_md.vc_btn_square:hover,
.vc_btn.vc_btn_lg.vc_btn_square:hover
{
	border:none; 
}

.vc_btn.vc_btn_xs.vc_btn_square_outlined,
.vc_btn.vc_btn_sm.vc_btn_square_outlined,
.vc_btn.vc_btn_md.vc_btn_square_outlined,
.vc_btn.vc_btn_lg.vc_btn_square_outlined,
.vc_btn.vc_btn_xs.vc_btn_rounded_outlined,
.vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
.vc_btn.vc_btn_md.vc_btn_rounded_outlined,
.vc_btn.vc_btn_lg.vc_btn_rounded_outlined
{
	position: relative;
	background: none !important;
}

.vc_btn.vc_btn_xs.vc_btn_square_outlined,
.vc_btn.vc_btn_xs.vc_btn_rounded_outlined
{
	border: 1px solid;
}

.vc_btn.vc_btn_sm.vc_btn_square_outlined,
.vc_btn.vc_btn_md.vc_btn_square_outlined,
.vc_btn.vc_btn_sm.vc_btn_rounded_outlined,
.vc_btn.vc_btn_md.vc_btn_rounded_outlined
{
	border: 2px solid;
}

.vc_btn.vc_btn_lg.vc_btn_square_outlined,
.vc_btn.vc_btn_lg.vc_btn_rounded_outlined
{
	border: 3px solid;
}

.outlined_background
{
	opacity: 0;
	width: 100%;
	height: 100%;
	
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	
	z-index: 2;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.vc_btn.vc_btn_xs.vc_btn_link,
.vc_btn.vc_btn_sm.vc_btn_link,
.vc_btn.vc_btn_md.vc_btn_link,
.vc_btn.vc_btn_lg.vc_btn_link
{
	background: none !important;
	padding: 0;
	margin: 5px 0;
	padding-bottom: 1px;
	min-width: 0;
	border:0;
	border-bottom: 2px solid;
	width: auto;
	
	transition: border 0.3s;
	-webkit-transition: border 0.3s;
}

.vc_btn.vc_btn_link:hover
{
	border-bottom: 2px solid transparent;
}

.vc_btn.vc_btn_md.add_to_cart_button:hover
{
	border: 0;
}


/* Toggles */

.wpb_wrapper .wpb_toggle,
#content .wpb_wrapper h4.wpb_toggle
{
	background: none;
	position: relative;
	font-size: 1.125rem;
	line-height: 1.5265rem;
	padding-left: 30px;
	margin-bottom: 18px;
}

.wpb_wrapper .wpb_toggle:last-of-type,
#content .wpb_wrapper  h4.wpb_toggle:last-of-type
{
	margin-bottom: 0;
}

.wpb_wrapper .wpb_toggle:last-of-type + .wpb_toggle_content,
#content .wpb_wrapper  h4.wpb_toggle:last-of-type + .wpb_toggle_content
{
	margin-top: 8px;
}

.wpb_wrapper .wpb_toggle:before,
#content .wpb_wrapper h4.wpb_toggle:before
{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	border: 1px solid;
}

.wpb_wrapper .wpb_toggle:after,
#content .wpb_wrapper h4.wpb_toggle:after
{
	content: "\e608";
	font-family: 'getbowtied-icons';
	font-size: 14px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left:2px;
	top: 5px;
}


.wpb_wrapper .wpb_toggle_title_active:after,
#content .wpb_wrapper h4.wpb_toggle_title_active:after
{
	content: "\e60f";
	font-family: 'getbowtied-icons';
	font-size: 14px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	left:2px;
	top: 5px;
}


.wpb_wrapper .wpb_toggle_content
{
	margin-top:-5px;
	margin-bottom: 28px;
	padding-left: 30px;
}

.wpb_wrapper .last_toggle_el_margin
{
	margin: 0;
}

/*Accordions*/

.wpb_heading.wpb_accordion_heading
{
	margin: 0px;
}

.wpb_accordion_section.group
{
	position: relative;
}

.wpb_accordion_section.group:after
{
	content: "";
	display: block;
	height: 0;
	width: 100%;
	
	border-bottom: 1px solid;
	opacity: 0.15;
	
	position: absolute;
	left: 0;
	bottom: 0;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header
{
	margin: 0;
	background: none;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header.ui-state-active
{
	border-bottom:none;
	
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header:focus
{
	outline: 0;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon,
.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon
{
	background: none;
	top: 23px;
	right: 10px;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon:before
{
	content: "\f107";
	font-size: 18px;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon:before
{
	content: "\f106";
	font-size: 18px;
	opacity: 0.3;
	display: inline-block;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wpb_wrapper .wpb_content_element .wpb_accordion_header a
{
	display: block;
	cursor: pointer;
	background: none;
	font-size: 1.4375rem;
	line-height: 2rem;
	padding: 20px 40px 20px 20px;
	color: inherit;
	font-weight: bold;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header.ui-state-active a
{
	border-bottom: none;
	cursor: default;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a,
.wpb_wrapper .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content
{
	padding-left: 0;
}

.wpb_wrapper .wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header.ui-state-active a:hover
{
	cursor: default;
}

.wpb_wrapper .wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content
{
	padding-top: 0;
	padding-right: 0;
	padding-bottom:34px;
}


/*Google Maps*/

.wpb_gmaps_widget.wpb_content_element  .wpb_wrapper
{
	padding: 0;
}

/* Google Maps */

.wpb_gmaps_widget.wpb_content_element  .wpb_wrapper
{
	padding: 0;
}

#map_container
{
	position: relative;
}

#map_container img {
	max-width: none;
}

.map_button_wrapper
{
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

#map_button
{
	display: block;
	font-size: 0.8125rem;
	font-weight:700;
	text-transform: uppercase;
	text-align: center;
	min-width: 150px;
	background-color: #fff;
    padding: 1.5rem 3rem 1.5rem;	
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

#map_button:hover
{
	background-color: #000;
	color: #fff;
}


/*Progress Bars*/

.wpb_heading.wpb_progress_bar_heading
{
	font-size: 1.125rem;
	margin-bottom: 21px;
}

.wpb_wrapper .vc_progress_bar .vc_single_bar
{
	margin-bottom: 30px;
	box-shadow: none;
	border-radius: 0;
	background: rgba(221,221,221,.2);
}

.wpb_wrapper .vc_progress_bar .vc_single_bar .vc_label
{
	font-size: 1rem;
	padding: 12px 16px 16px;
	text-shadow: none !important;
	display: block;
	color:#fff !important;
}

.wpb_wrapper .vc_progress_bar .vc_single_bar:before
{
	content: "";
	display: block;
	width: 100%;
	height: 0px;
	
	border-bottom: 4px solid;
	opacity: 0.13;
	
	position: absolute;
	bottom: 0;
	left: 0;
}

.wpb_wrapper .vc_progress_bar .vc_single_bar .vc_label .vc_label_units
{
	font-weight: 700;
}

.wpb_wrapper .vc_progress_bar .vc_single_bar .vc_bar
{
	border-radius: 0;
	border-bottom-width:4px;
	border-bottom-style:solid;
	border-color: rgba(0,0,0,0.4);
}


/*Pie Charts*/

.wpb_wrapper .vc_pie_chart[data-pie-color="btn-primary"] .vc_pie_chart_back
{
	border-color: #ddd;
}


/*Single Image*/

.wpb_single_image .vc_single_image-wrapper
{
	max-width: 100%;
}


/* from the blog */

.wpb_wrapper .from-the-blog-wrapper {
	margin-top: 0;
}

.boxed-row .wpb_wrapper .from-the-blog-wrapper {
	margin: 0px -30px 0px;
}


/* Products */

.shortcode_products_slider  .product_after_shop_loop .price del
{
	color: inherit;
	opacity: 0.55;
}

.shortcode_products_slider .products ul h3 a
{
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.shortcode_products_slider .products ul h3 a:hover
{
	color: inherit;
	opacity: 0.55;
}

.shortcode_products_slider .products .yith-wcwl-add-button,
.shortcode_products_slider .products .add_to_wishlist
{
	color: inherit !important;
}

.shortcode_products_slider .products .add_to_wishlist:before
{
	color: inherit;
	opacity: 0.4;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.shortcode_products_slider .products li:hover .add_to_wishlist:before
{
	color: inherit;
	opacity: 0.55;
}

.shortcode_products_slider .products .yith-wcwl-wishlistexistsbrowse,
.shortcode_products_slider .products .yith-wcwl-wishlistaddedbrowse,
.shortcode_products_slider .products .yith-wcwl-wishlistexistsbrowse a:hover,
.shortcode_products_slider .products .yith-wcwl-wishlistaddedbrowse a:hover
{
	color: inherit;
}

.shortcode_products_slider .products .star-rating:before,
.shortcode_products_slider .products .star-rating:before
{
	color: inherit;
	opacity: 0.35;
}

.shortcode_products_slider .owl-theme .owl-controls .owl-page span
{
	background: none;
	border: 4px solid;
	opacity: 0.35;
	
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span
{
	opacity: 0.55;
}


/*lookbook slider*/


.lookbook {
	visibility: hidden;
}

.full-width-page .lookbook {
	margin-left: -15px !important;
	margin-right: -15px !important;
}

.lookbook .swiper-slide {
	width: 500px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.lookbook .swiper-slide.first {
	text-align: center;
}

.lookbook-first-slide-wrapper {
	max-width: 1200px;
	padding: 0 50px;
	margin: 0 auto;
}

.lookbook-first-slide-wrapper .lookbook-title {
	color: #fff;
	font-size: 32px;
	line-height: 1em;
}

.lookbook-first-slide-wrapper .lookbook-subtitle {
	color: #fff;
	font-size: 18px;
}

.lookbook_product_wrapper {
	overflow: hidden;
	position: relative;
	height: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;

	transition: .5s ease;
	-webkit-transition: .5s ease;
}

.lookbook_product_wrapper_inside
{
	height: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: block;
	
	transition: transform .5s ease;
	-webkit-transition: transform .5s ease;
	
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	transform-style: preserve-3d;
}

.lookbook_product_wrapper:hover {
	box-shadow: 0px 0px 80px 0px rgba(0,0,0,0.3);
	z-index: 1;
}

.lookbook_product_wrapper:hover .lookbook_product_wrapper_inside {
	-webkit-transform: perspective(1000px) translate3d(0,0,50px);
	-moz-transform: perspective(1000px) translate3d(0,0,50px) rotate(0.01deg);
	transform: perspective(1000px) translate3d(0,0,50px);
}

.lookbook-first-slide-wrapper {
	position: relative;
	top: 50%;
	margin-top: -10px;
	-ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lookbook-first-slide-wrapper h2 {
	padding: 0 0 30px 0;
}

.lookbook .star-rating {
	display: none !important;
}

.lookbook .product_after_shop_loop {
	text-align: right;
	position: absolute;
	right: 30px;
	bottom: 24px;
}

.lookbook .product_after_shop_loop .price {
    line-height: 36px;
}

.lookbook-arrow-left,
.lookbook-arrow-right
{
	font-size:80px;
	line-height:1;
	
	color:#fff;
	
	width:80px;
	height:80px;
	
	position:absolute;
	top:50%;
	margin-top:-40px;
	z-index: 100;
	cursor: pointer;
}

.lookbook-arrow-left
{
	left:15px;
}

.lookbook-arrow-right
{
	right:15px;
}

.lookbook-arrow-left:before,
.lookbook-arrow-right:before
{
	font-family: 'getbowtied-icons';
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	line-height: 1;
	text-transform: none;
}

.lookbook-arrow-left:before
{
	content: "\e610";
}

.lookbook-arrow-right:before
{
	content: "\e611";
}

.lookbook_product_infos {
	position: absolute;
	padding: 45px 70px;
	bottom: 0px;
	left: 0px;
	z-index: 200;
	pointer-events: none;
}

.lookbook_product_title {
	color: #fff !important;
	font-size: 22px !important;
}

.lookbook_product_price {
	color: #fff !important;
	font-size: 18px;
}

.lookbook_product_overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: -moz-linear-gradient(bottom,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%); /* FF3.6+ */
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0%,rgba(0,0,0,1)), color-stop(50%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%); /* Opera 11.10+ */
	background: -ms-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%); /* IE10+ */
	background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%); /* W3C */

	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: .3s;
	-webkit-transition: .3s;
	display: block;
}

.lookbook_product_overlay:hover {
	opacity: .5;
}


/**********************************************************************************/
/* Rev Slider *********************************************************************/
/**********************************************************************************/

.full-width-page .wpb_revslider_element {
	margin:0 -15px;
}

.wpb_revslider_element ul,
.wpb_revslider_element ol
{
	margin:0 !important;
}


/**********************************************************************************/
/* Portfolio **********************************************************************/
/**********************************************************************************/

.portfolio-container .content-area
{
	min-height: 0;
}

.portfolio-isotope
{
	position: relative;
}

.portfolio-isotope:after
{
	content: "";
	display: block;
	clear: both;
}

.portfolio-box
{
	width: 100%;
	float: left;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	opacity: 1;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;	
	padding-bottom: 100%;
}

.portfolio-grid-sizer
{
	width: 100%;
}

.portfolio-box.hidden
{
	opacity: 0;
	transition: opacity 0.3s;
	-webkit-transition: opacity 0.3s;
}

.portfolio-box-inner
{
	display: block;
	height: 100%;
    position: absolute;
    width: 100%;
}


/* Portfolio Filters */

.portfolio-filters .filters-group.list-centered
{
	margin-bottom: 90px;
	text-align: center;
}

.filters-group li
{
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    margin-left: 2px;
	margin-bottom: 10px;
	margin: 0 12px 5px;
    padding: 5px 0px;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
	cursor: pointer;
	
	transition: color 0.3s, border-color 0.2s;
	-webkit-transition: color 0.3s, border-color 0.3s;
}

.filters-group li:hover
{
	border-bottom: 1px solid transparent;
}


/* Portfolio Hover Effect */

.hover-effect-link
{
	display: block;
	overflow: hidden;
	margin: 0;
	background: #000;
	text-align: center;
	cursor: pointer;
	width: 100%;
	height: 100%;
	
	position: absolute;
	z-index: 1;
}

.hover-effect-link .hover-effect-thumb
{
	display: block;
	opacity: 1;

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	
	width: -webkit-calc(100% + 60px);
	width: calc(100% + 60px);
	max-width: none;
	min-height: 100.6%;
	
	position: absolute;
	
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	
	-webkit-transform: translate3d(-30px,0, 0);
	transform: translate3d(-30px,0,0);
}

/* filter Safari ( from 5+ till 6.1)  from Chrome: */
@media screen and (-webkit-min-device-pixel-ratio:0) { 

    /* Safari only override */
    ::i-block-chrome, .hover-effect-link .hover-effect-thumb {
		width: 110%;
		
		-webkit-transform: translate3d(-5%,0, 0);
		transform: translate3d(-5%,0,0);
    }
	
	::i-block-chrome, .hover-effect-content:hover .hover-effect-thumb
	{		
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
	
	::i-block-chrome, .main-navigation ul ul
	{
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}
}

.hover-effect-content .hover-effect-title,
.hover-effect-content .hover-effect-text {
	margin: 0;
}

.hover-effect-content .hover-effect-title,
.wpb_wrapper h2.hover-effect-title
{
	color: #fff !important;
	font-size: 1.375rem;
	line-height: 1.2em;
	font-weight: 900;
	
	position: absolute;
	bottom: 28px;
	left: 0px;
	padding: 40px 40px 5px;
	transform :none !important;
	text-align: left;
	
	transition: all .3s !important;
	-webkit-transition: all .3s !important;
}

.hover-effect-content .hover-effect-text,
.wpb_wrapper .hover-effect-text
{
	color: #fff !important;
	opacity: 0;
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;

	position: absolute;
	bottom: 0;

	padding: 0px 40px 33px;
	text-align: left;
	
	transition: all .45s !important;
	-webkit-transition: all .45s !important;
}

.hover-effect-link:hover .hover-effect-thumb
{
	opacity: 0.15;
	
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.hover-effect-link:hover .hover-effect-text
{
	opacity: 1;
	
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}


/* Portfolio Boxed */

.boxed-page .hover-effect-content .hover-effect-title,
.boxed-page .wpb_wrapper h2.hover-effect-title
{
	font-size: 1.375rem;
}

.boxed-page .wpb_wrapper .portfolio-isotope-container
{
	margin: 0;
}


/* Portfolio Single */

.portfolio-single-featured-img
{
	height: 760px;
	background-repeat: no-repeat;
	background-size:cover;
	background-position: center center;
}

.portfolio_single_list_cat
{
	display: block;
	text-align: center;
}

.portfolio_single_list_cat a
{
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 900;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.portfolio_content_nav .nav-next .nav-next-title,
.portfolio_content_nav .nav-previous .nav-previous-title
{
	display: none;
}


/* VC Buttons */

.vc_btn3 {
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}

.vc_btn3.vc_btn3-size-xs {
	font-size: 13px;
	padding: 10px 20px;
}

.vc_btn3.vc_btn3-size-sm {
	font-size: 13px;
	padding: 15px 30px;
}

.vc_btn3.vc_btn3-size-md {
	font-size: 13px;
	padding: 20px 40px;
}

.vc_btn3.vc_btn3-size-lg {
	font-size: 13px;
	padding: 26px 52px;
}

/* VC activation nag */
.vc_license-activation-notice {
  display: none !important;
}

/**********************************************************************************/
/* Small,Medium screen retina stuff ***********************************************/
/**********************************************************************************/

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx)
{ 
	#empty-cart-offcanvas-box {
		background-image: url('../images/empty_cart_offcanvas_retina.png');
	}
	
	#empty-wishlist-offcanvas-box
	{
		background-image: url('../images/empty_wishlist_offcanvas_retina.png');
	}
	
	.check_label_radio:before
	{
		background-image: url("../images/radio_retina.png");
	}	

	.check_label:before
	{
		background-image: url("../images/checkbox_retina.png");
		
	}
	
}

/* woocommerce checkout select */

.woocommerce-checkout .woocommerce form .form-row .select2-container
{
	width: 100% !important;
	background: #F1F1F1;
	height: 2.3125rem;
}

.woocommerce-checkout  .select2-container--default .select2-selection--single
{
	background: transparent;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
	height: 37px;
}

.woocommerce-checkout  .select2-container .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered
{
	line-height: 39px;
}

.widget .select2-container .select2-selection--single .select2-selection__rendered
{
	line-height: 37px !important;
}

.widget .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 6px;
}
.widget .select2-container--default .select2-selection--single .select2-selection__clear {
	top: 5px;
}
.widget .select2-container--default .select2-selection--multiple {
	border: 1px solid #ddd;
}

.woocommerce-checkout  .select2-container--default .select2-selection--single .select2-selection__arrow
{
	top: -7px;
}

.woocommerce-checkout .select2-dropdown
{
	margin-left: 0;
}


.woocommerce-wishlist.woocommerce-page table.cart .product-name a, 
.woocommerce-wishlist.woocommerce-page #content table.cart .product-name a
{
	padding-left: 30px;
}

.woocommerce-cart .cart-empty:before {
    background-image: url('../images/empty_cart.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    content: '';
    text-align: center;
    width: 100%;
    height: 233px;
    display: block;
    margin: 0 auto 70px;
}

.woocommerce-cart .cart-empty {
    margin: 10px 0 0px;
}

.woocommerce-cart p.cart-empty, 
.woocommerce-cart p.return-to-shop {
    text-align: center;
}

.woocommerce-cart p.return-to-shop a,
.woocommerce-cart p.return-to-shop a:hover {
	background: none !important;
	font-weight: bold;
	padding: 0px;
}

.woocommerce-cart .wc-proceed-to-checkout .wcppec-checkout-buttons__separator {
	font-size: 12px;
    padding: 10px 0 20px;
}

.woocommerce-cart .wc-proceed-to-checkout .wcppec-checkout-buttons.woo_pp_cart_buttons_div {
	text-align: center;
}

.woocommerce-order-received .woocommerce-customer-details--phone,
.woocommerce-order-received .woocommerce-customer-details--email,
.woocommerce-view-order .woocommerce-customer-details--phone,
.woocommerce-view-order .woocommerce-customer-details--email {
	font-size: 0.875rem;
}

.woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled] {
    padding: 1.1875rem 2rem 1.125rem;
}

.woocommerce-customer-details h2 {
    font-size: 1.875em !important;
    text-align: left !important;
}

.woocommerce-customer-details address {
	border: none !important;
	padding: 6px 0 !important;
}

.woocommerce-customer-details .woocommerce-column {
    vertical-align: top;
}

@media (max-width: 480px) {
	.woocommerce-cart .cart-empty:before {
		height: 180px;
		margin: 0 auto 50px;
	}
}

@media (max-width: 640px) {
	.woocommerce-cart .cart-empty {
    	font-size: 1.5em;
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
	.woocommerce-cart .cart-empty {
    	font-size: 3.125em;
    }
}

.wc-terms-and-conditions span {
    text-transform: initial;
}


section.woocommerce-columns--addresses .woocommerce-column h3.woocommerce-column__title
{
	text-align: left;
}

@media only screen and (min-width: 90.063em)
{
	.woocommerce-order-received .woocommerce-order-details .woocommerce-table--order-details th,
	.woocommerce-order-received .woocommerce-order-details .woocommerce-table--order-details td,
	.woocommerce-order-received section.woocommerce-customer-details .woocommerce-table--customer-details th
    {
    	padding-left: 195px !important;
    	width: auto !important;
    } 

    section.woocommerce-columns--addresses .woocommerce-column--1
    {
    	padding-left: 195px !important;
    }

    section.woocommerce-columns--addresses .woocommerce-column--2
	{
		padding-left: 0 !important;
	}
   
}


@media only screen and (min-width: 768px)
{
	section.woocommerce-columns--addresses .woocommerce-column
    {
    	width: 50%!important;
    	display: inline-block;;
    	margin-left: -4px;
    }

}

.wcppec-cart-widget-button {
	cursor: pointer;
    position: relative;
    padding: .618em 1em !important;
    text-align: center;
    display: inline-block;
}

.woocommerce-checkout .woocommerce-terms-and-conditions h1,
.woocommerce-checkout .woocommerce-terms-and-conditions h2,
.woocommerce-checkout .woocommerce-terms-and-conditions h3,
.woocommerce-checkout .woocommerce-terms-and-conditions h4,
.woocommerce-checkout .woocommerce-terms-and-conditions h5,
.woocommerce-checkout .woocommerce-terms-and-conditions h6,
.woocommerce-checkout .woocommerce-terms-and-conditions span,
.woocommerce-checkout .woocommerce-terms-and-conditions a,
.woocommerce-checkout .woocommerce-terms-and-conditions li,
.woocommerce-checkout .woocommerce-terms-and-conditions address,
.woocommerce-checkout .woocommerce-terms-and-conditions tr,
.woocommerce-checkout .woocommerce-terms-and-conditions td,
.woocommerce-checkout .woocommerce-terms-and-conditions th,
.woocommerce-checkout .woocommerce-terms-and-conditions dt,
.woocommerce-checkout .woocommerce-terms-and-conditions dd,
.woocommerce-checkout .woocommerce-terms-and-conditions dl,
.woocommerce-checkout .woocommerce-terms-and-conditions code,
.woocommerce-checkout .woocommerce-terms-and-conditions pre,
.woocommerce-checkout .woocommerce-terms-and-conditions img,
.woocommerce-checkout .woocommerce-terms-and-conditions blockquote,
.woocommerce-checkout .woocommerce-terms-and-conditions div,
.woocommerce-checkout .woocommerce-terms-and-conditions p
{
    font-size: 13px !important;
    text-align: left !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions span,
.woocommerce-checkout .woocommerce-terms-and-conditions a,
.woocommerce-checkout .woocommerce-terms-and-conditions li,
.woocommerce-checkout .woocommerce-terms-and-conditions address,
.woocommerce-checkout .woocommerce-terms-and-conditions tr,
.woocommerce-checkout .woocommerce-terms-and-conditions td,
.woocommerce-checkout .woocommerce-terms-and-conditions th,
.woocommerce-checkout .woocommerce-terms-and-conditions dt,
.woocommerce-checkout .woocommerce-terms-and-conditions dd,
.woocommerce-checkout .woocommerce-terms-and-conditions dl,
.woocommerce-checkout .woocommerce-terms-and-conditions code,
.woocommerce-checkout .woocommerce-terms-and-conditions pre,
.woocommerce-checkout .woocommerce-terms-and-conditions img,
.woocommerce-checkout .woocommerce-terms-and-conditions blockquote,
.woocommerce-checkout .woocommerce-terms-and-conditions div
{
	margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions p
{
	margin-top: 0.4rem !important;
	margin-bottom: 0.4rem !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions h1,
.woocommerce-checkout .woocommerce-terms-and-conditions h2,
.woocommerce-checkout .woocommerce-terms-and-conditions h3,
.woocommerce-checkout .woocommerce-terms-and-conditions h4,
.woocommerce-checkout .woocommerce-terms-and-conditions h5,
.woocommerce-checkout .woocommerce-terms-and-conditions h6
{
	margin-bottom: 1rem !important;
	margin-top: 1rem !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions li
{
	padding-left: 0 !important;
}

.woocommerce-checkout .woocommerce-terms-and-conditions dd
{
	padding: 0.3rem;
}

.woocommerce-checkout .woocommerce-terms-and-conditions ul,
.woocommerce-checkout .woocommerce-terms-and-conditions ol
{
    margin: 0 0 1rem 1rem;
}