
/* ===================================
   GLOBAL
=================================== */


@font-face {
    font-family: 'Archivo Black';
    src: url('../webfonts/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../webfonts/RedHatDisplay-Black.ttf') format('truetype');
    font-weight: 900; 
    font-style: normal;
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('../webfonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: 400; 
    font-style: normal;
}

@font-face {
    font-family:star;
    src:url(../webfonts/star.eot);
    src:url(../webfonts/star.eot?#iefix) format("embedded-opentype"),url(../webfonts/star.woff) format("woff"),url(../webfonts/star.ttf) format("truetype"),url(../webfonts/star.svg#star) format("svg");
    font-weight:400;
    font-style:normal;
}

@font-face {
    font-family:WooCommerce;
    src:url(../webfonts/WooCommerce.eot);
    src:url(../webfonts/WooCommerce.eot?#iefix) format("embedded-opentype"),url(../webfonts/WooCommerce.woff) format("woff"),url(../webfonts/WooCommerce.ttf) format("truetype"),url(../webfonts/WooCommerce.svg#WooCommerce) format("svg");
    font-weight:400;
    font-style:normal;
}

:root {
	--color-gray: #f8f8f8;
	--color-dark-gray: #3f3f3f;
	--color-white: #ffffff;
	--color-dark: #111111;
	--color-light-dark:#1a1a1a;
	--color-green: #6b7656;
	--color-green-light: #b4d518;
}

::selection {
	background-color: var(--color-green-light);
	color: var(--color-dark);
}

* {
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
	display: inline-block;
	transition: all;
	transition-duration: 0.5s;
}

img {
	display: block;
	height: auto;
}

body {
	font-family: "Red Hat Display", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-gray);
	background-color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
}

h1 {
	font-size: 70px;
	color: var(--color-white);
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 18px;
}

.owc-site-title {
	text-transform: uppercase;
	color: var(--color-white);
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	font-size: 35px;
}


.owc-stroke {
    -webkit-text-stroke: 3px var(--color-green-light);
    color: transparent;
}

.owc-align-center {
	text-align: center;
}


.owc-btn, .single_add_to_cart_button, .checkout-button.button, .checkout-content-order .button[type="submit"], #account-content button[type="submit"], .return-to-shop a {
	padding: 15px 30px;
	background-color: var(--color-green-light);
	color: var(--color-dark);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 900;
	border-radius: 30px;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.return-to-shop a {
    margin-top: 20px;
}

.single_add_to_cart_button {
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	cursor: pointer;
}

.checkout-button.button {
	width: 100%;
	text-align: center;
}

.owc-btn:hover, 
.single_add_to_cart_button:hover, .checkout-button.button:hover, 
.checkout-content-order .button[type="submit"]:hover, #account-content button[type="submit"]:hover, .return-to-shop a:hover {
	background-color: var(--color-green);
	color: var(--color-white);
}


.add_to_cart_button {
	color: var(--color-green-light);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 900;
}

.add_to_cart_button:hover {
	color: var(--color-green);
}


.owc-wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.owc-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
}

.owc-ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.owc-flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.owc-suptitle {
	display: inline-block;
	color: var(--color-green-light);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.owc-suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-green-light);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

@keyframes menu {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#owc-scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}


@keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.elementor-editor-active #owc-preload {
	display: none !important;
}


#owc-preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#owc-preload img {
	width: 32px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

#owc-openmenu,
#owc-closemenu {
	font-size: 20px;
	color: var(--color-white);
	display: none;
}

#owc-openfilter {
	font-size: 20px;
	color: var(--color-white);
}

#owc-closefilter {
	font-size: 25px;
	color: var(--color-white);
	float: right;
	margin: 30px 20px;
	margin-bottom: 20px;
}

#owc-openmenu:hover,
#owc-closemenu:hover,
#owc-openfilter:hover, 
#owc-closefilter:hover {
	color: var(--color-green-light);
}


#owc-mobile-nav {
	position: fixed;
	top: 0;
	left: -320px;
	bottom: 0;
	width: 320px;
	background-color: var(--color-light-dark);
	z-index: 10000;
	padding: 20px;
	overflow: auto;
}

.owc-mobile-menu {
	clear: both;
}

.owc-mobile-menu li {
	padding: 10px;
}

.owc-mobile-menu li a {
	text-decoration: none;
	color: var(--color-white);
	font-size: 20px;
	text-transform: uppercase;
	font-size: 16px;
}

.owc-mobile-menu li a:hover {
	color: var(--color-green-light);
}

.owc-mobile-menu .sub-menu li a {
	padding: 5px;
	font-size: 16px;
}

.owc-mobile-menu>li.menu-item-has-children>a {
	display: block;
}

.owc-mobile-menu>li.menu-item-has-children>a i {
	font-size: 12px;
	margin-left: 5px;
	float: right;
	margin-top: 4px;
}

.owc-mobile-menu .sub-menu>li.menu-item-has-children>a {
	display: block;
}

.owc-mobile-menu .sub-menu>li.menu-item-has-children>a i {
	font-size: 12px;
	margin-left: 5px;
	float: right;
	margin-top: 4px;
}

.owc-mobile-menu .sub-menu li.menu-item-has-children {
	padding-right: 0px;
}

.owc-mobile-menu .sub-menu {
	display: none;
	margin-top: 20px;
}


.breadcrumbs-content {
	padding: 20px 0px 20px 0px;
	color: var(--color-green-light);
	justify-content: center;
}

.breadcrumbs-content>div {
	margin-right: 10px;
}

.breadcrumbs-content a {
	color: var(--color-white);
}

.breadcrumbs-content a:hover {
	color: var(--color-green-light);
}


.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none; color:var(--color-green-light);}
.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:"\e021";text-indent:0}
.woocommerce p.stars a:hover~a::before{content:"\e021"}
.woocommerce p.stars:hover a::before{content:"\e020"}
.woocommerce p.stars.selected a.active::before{content:"\e020"}
.woocommerce p.stars.selected a.active~a::before{content:"\e021"}
.woocommerce p.stars.selected a:not(.active)::before{content:"\e020"}

.woocommerce .star-rating {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 1em;
    width: 5.4em;
    font-family: star;
}

.woocommerce .star-rating::before {
    content: "sssss";
    color: var(--color-green-light);
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.woocommerce .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
    content: "SSSSS";
    top: 0;
    position: absolute;
    left: 0;
    color: var(--color-green-light);
}

.woocommerce .woocommerce-product-rating {
    line-height: 2;
    display: block;
}

.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
    content: " ";
    display: table;
}

.woocommerce .woocommerce-product-rating::after {
    clear: both;
}

.woocommerce .woocommerce-product-rating .star-rating {
    margin: .5em 4px 0 0;
    float: left;
}

.woocommerce .products .star-rating {
    display: block;
    margin: 0 0 .5em;
    float: none;
}

.woocommerce .hreview-aggregate .star-rating {
    margin: 10px 0 0;
}

.products .product .star-rating,
.products .wc-block-grid__product .star-rating,
.wc-block-grid__products .product .star-rating,
.wc-block-grid__products .wc-block-grid__product .star-rating {
    margin: 0 auto .5407911001em;
}


/* ===================================
   HEADER
=================================== */

#owc-header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1000;
}


.owc-wrapper-header {
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.owc-wrapper-nav-cart {
	align-items: center;
}

.owc-header-menu>li {
	float: left;
	margin: 0px 20px;
}

.owc-header-menu>li a {
	color: var(--color-white);
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
}

.owc-header-menu>li a:hover {
	color: var(--color-green-light);
}

.owc-header-menu>.menu-item-has-children {
	position: relative;
}

.owc-header-menu>.menu-item-has-children>.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	background-color: var(--color-light-dark);
	z-index: 100000;
	padding-top: 15px;
	padding-bottom: 15px;
}

.owc-header-menu>.menu-item-has-children>.sub-menu>li {
	margin-left: 0px;
	white-space: nowrap;
	width: 100%;
	padding-top: 8px;
	padding-bottom: 8px;
	margin: 0px;
}

.owc-header-menu>.menu-item-has-children>.sub-menu>li a {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
	display: block;
	padding: 0px 20px;
}

.owc-header-menu>.menu-item-has-children .sub-menu li a {
	color: var(--color-white);
}

.owc-header-menu>.menu-item-has-children .sub-menu li a:hover {
	color: var(--color-green-light);
}

.owc-header-menu>.menu-item-has-children:hover>.sub-menu {
	display: block;
	-webkit-animation-name: menu;
	animation-name: menu;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.owc-header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children {
	position: relative;
}

.owc-header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-menu {
	position: absolute;
	padding-top: 15px;
	padding-bottom: 15px;
	top: -15px;
	left: 100%;
	display: none;
	z-index: 10000;
	background-color: var(--color-light-dark);
}

.owc-header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children:hover>.sub-menu {
	display: block;
	-webkit-animation-name: menu;
	animation-name: menu;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}

.owc-header-menu>.menu-item-has-children>.sub-menu>.menu-item-has-children>.sub-menu li {
	margin-left: 0px;
	width: 100%;
	margin: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.owc-header-menu li {
	white-space: nowrap;
}

.owc-wrapper-cart-account {
	margin-left: 50px;
}

.owc-wrapper-cart-account a {
	color: var(--color-white);
	font-size: 20px;
	margin-left: 20px;
}

.owc-wrapper-cart-account a:hover {
	color: var(--color-green-light);
}

.owc-wrapper-cart-account .link-cart {
	position: relative;
	margin-right: 20px;
}

.owc-wrapper-cart-account .link-cart span {
    font-size: 14px;
    position: absolute;
    right: -22px;
    top: -5px;
    width: 20px;
}


/* ===================================
   HEADER CONTENT
=================================== */

.owc-wrapper-header-content {
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: cover;
	height: 800px;
	justify-content: center;
	align-items: center;
}


/* ===================================
   HEADR PAGE
=================================== */


#owc-header.page {
	position: static;
}

.owc-wrapper-title {
	padding-top: 50px;
	padding-bottom: 50px;
}

.owc-wrapper-title h1 {
	font-size: 40px;
	margin-bottom: 10px;
}


/* ===================================
   ABOUT US
=================================== */


.aboutus-img {
	margin: 25px;
	position:relative;
}

.aboutus-img img {
	border-radius: 10px;
	width: 100%;
}


.small-img {
	max-width: 350px;
	position: absolute;
	bottom: -30px;
	right: -10px;
	-webkit-box-shadow: -15px -15px 0px -5px var(--color-green-light);
	        box-shadow: -15px -15px 0px -5px var(--color-green-light);
	border-radius: 10px;
}

.small-img  > a {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 60px;
	color: var(--color-green-light);
}

.small-img  > a:hover {
	color: var(--color-green);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.owc-wrapper-signature {
	margin-top: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 50px;
}

.owc-wrapper-signature img {
	max-width: 180px;
	margin-right: 10px;
}

.owc-wrapper-signature h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.owc-wrapper-signature p {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--color-green-light);
}


/* ===================================
   CATEGORY
=================================== */


.owc-single-service {
	display: block;
	margin: 10px;
	padding: 40px 20px;
	background-color: var(--color-light-dark);
	border-radius: 10px;
	border: 1px solid var(--color-light-dark);
}

.owc-single-service:hover {
	border: 1px solid var(--color-green-light);
}

.owc-single-service {
	display: block;
	color: var(--color-white);
}

.owc-single-service img {
	max-width: 64px;
	margin: 0 auto 20px auto;
}

.owc-single-service h3 {
	margin-bottom: 20px;
	font-size: 18px;
}


/* ===================================
   PRODUCT
=================================== */



.products .product img {
	width: 100%;
}

.products .product {
	margin: 10px;
	padding: 40px 20px;
	background-color: var(--color-light-dark);
	border-radius: 10px;
	border: 1px solid var(--color-light-dark);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	position: relative;
}

.products .product .onsale {
   position: absolute;
   top: 30px;
   left: 30px;
   color: var(--color-green-light);
   text-transform: uppercase;
} 

.products .product:hover {
	border: 1px solid var(--color-green-light);
}

.columns-5 .product {
	width: calc(20% - 20px);
}

.columns-4 .product {
	width: calc(25% - 20px);
}

.columns-3 .product {
	width: calc(33.333333% - 20px);
}

.columns-2 .product {
	width: calc(50% - 20px);
}

.woocommerce-LoopProduct-link img {
	margin-bottom: 20px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.woocommerce-LoopProduct-link:hover img {
	-webkit-filter: opacity(70%);
	filter: opacity(70%);
}

.woocommerce-LoopProduct-link h3 {
	color: var(--color-white);
	font-size: 16px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	margin-bottom: 10px;
}

.woocommerce-LoopProduct-link:hover h3 {
	color: var(--color-green-light);
}

.price {
	font-size: 16px;
	color: var(--color-gray);
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 10px;
	display: inline-block;
}

.woocommerce-Price-amount {
	border: none;
	text-decoration: none;
	outline: none;
}

span.price,
.price ins {
    text-decoration: none;
}

span.price del {
    color: var(--color-green-light);
}

p.price,
.price ins {
    text-decoration: none;
}

p.price del {
    color: var(--color-green-light);
}

.added_to_cart.wc-forward {
    display: block;
    color: var(--color-white);
    font-size: 14px;
    margin-top: 10px;
}

.added_to_cart.wc-forward:hover {
   color: var(--color-green);
}



/* ===================================
   CONTACTS
=================================== */


footer {
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
}

#contacts {
	padding-bottom: 40px;
}

.owc-wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.owc-wrapper-contact>div {
	width: 25%;
	padding: 20px;
	color: var(--color-white);
}

.owc-wrapper-contact>div p {
	margin-bottom: 10px;
}

.owc-wrapper-contact>div h3 {
	font-size: 20px;
}

.owc-wrapper-contact>div a {
	color: var(--color-white);
}

.owc-wrapper-contact>div a:hover {
	color: var(--color-green-light);
}

.copyright {
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}

#contacts #menu-social-links {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

#contacts #menu-social-links li {
	margin-right: 20px;
}

#contacts #menu-social-links li a {
	color: var(--color-green-light);
}

#contacts #menu-social-links li a:hover {
	color: var(--color-green);
}


/* ===================================
   PAGES
=================================== */

.owc-content p {
	margin-bottom: 30px;
}

.owc-content img {
	max-width: 100%;
	margin-bottom: 30px;
	width: auto;
}

.owc-content ul,
.owc-content ol {
	margin: 30px;
}

.owc-content ul li {
	list-style: disc;
}

.owc-content ol li {
	list-style: decimal;
}

.owc-content strong {
	font-weight: 900;
}

.owc-content .alignleft {
	float: left;
	max-width: 100%;
	margin-right: 30px;
	margin-bottom: 30px;
}

.owc-content .alignright {
	float: right;
	max-width: 100%;
	margin-left: 30px;
	margin-bottom: 30px;
}

.owc-content .aligncenter {
	clear: both;
	display: block;
	float: none;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.owc-content h1 {
	font-size: 32px;
	color: var(--color-dark);
}

.owc-content h2 {
	font-size: 24px;
}

.owc-content h3 {
	font-size: 19px;
}

.owc-content h4 {
	font-size: 16px;
}

.owc-content h5 {
	font-size: 13px;
}

.owc-content h6 {
	font-size: 11px;
}

.owc-content em {
	font-style: italic;
}

.owc-content blockquote {
	margin-bottom: 30px;
}

.owc-content blockquote:before {
	content: "“";
}

.owc-content blockquote:after {
	content: "“";
}

.tags-links {
	margin-bottom: 30px;
	display: block;
}

.tags-links a {
	display: inline-block;
	color: var(--color-green-light);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 20px 10px;
}

.tags-links a:hover {
	color: var(--color-green);
}


/* ===================================
   BLOG
=================================== */

.owc-wrapper-blog {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.owc-wrapper-blog.owc-ptb {
	padding-top: 0px;
	padding-bottom: 50px;
}

.owc-wrapper-blog .w-100 {
	width: 100%;
}

.single-blog {
	margin: 10px;
}

.owc-row-1 .single-blog {
	width: calc(100% - 20px);
}

.owc-row-2 .single-blog {
	width: calc(50% - 20px);
}

.owc-row-3 .single-blog {
	width: calc(33.333333% - 20px);
}

.owc-row-4 .single-blog {
	width: calc(25% - 20px);
}


.blog-article-img {
	display: block;
	position: relative;
	color: var(--color-green-light);
}

.blog-article-img img {
	width: 100%;
}

.blog-article-content {
	padding: 40px 20px;
	background-color: var(--color-light-dark);
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.blog-article-content a {
	color: var(--color-white);
}

.blog-article-content a:hover {
	color: var(--color-green-light);
}

.blog-article-content a h3 {
	font-size: 18px;
	margin-bottom: 0px;
}

.owc-wrapper-date {
	margin: 15px 0px;
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

.owc-wrapper-date p {
	letter-spacing: 3px;
	font-size: 12px;
}

.owc-wrapper-date i {
	margin-right: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(17, 17, 17, 0.5);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.overlay i {
	color: var(--color-green-light);
}

.blog-article-img:hover .overlay {
    opacity: 1;
}

.navigation.pagination {
	padding: 30px 10px 30px 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-family: "Archivo Black", sans-serif;
	font-weight: 400;
}

.navigation.pagination .nav-links {
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.navigation.pagination .nav-links span.current {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: var(--color-green-light);
	margin: 0px 5px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	cursor: pointer;
}

.navigation.pagination .nav-links a {
	display: inline-block;
	padding: 10px;
	border-radius: 3px;
	text-decoration: none;
	color: var(--color-white);
	margin: 0px 5px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.navigation.pagination .nav-links span.current:hover,
.navigation.pagination .nav-links a:hover {
	color: var(--color-green-light);
}


/* ===================================
   SIDEBAR
=================================== */


#owc-blog-sidebar, #owc-shop-sidebar {
    position: fixed;
	top: 0;
	left: -320px;
	bottom: 0;
}

.owc-sidebar, 
.owc-sidebar-shop {
	width: 320px;
	background-color: var(--color-light-dark);
	z-index: 10000;
	overflow: auto;
}

.owc-wrapp-btn {
	padding: 30px 20px;
	flex-direction: row;
	justify-content: flex-end;
}

#owc-closesidebar, 
#owc-opensidebar {
	font-size: 20px;
	color: var(--color-white);
}

#owc-closesidebar:hover,
#owc-opensidebar:hover {
	color: var(--color-green-light);
}

.owc-wrapp-sidebar-btn {
	padding: 10px 10px 20px 10px;
}


/* ===================================
   SHOP
=================================== */

.owc-wrapper-shop  {
	align-items: flex-start;
	padding-bottom: 50px;
}

.owc-wrapper-shop .products {
	width: 100%;
}



.woocommerce-message {
	padding: 10px 20px;
	background-color: var(--color-green);
	margin-bottom: 20px;
}

.woocommerce-message > .button,  .woocommerce-message > a {
    color: var(--color-green-light);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 900;
}

.woocommerce-message > .button:hover, .woocommerce-message > a:hover {
	color: var(--color-white);
}

.wrapper-product-info {
	padding: 10px 20px 0px 20px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    justify-content: space-between;
}

.woocommerce-pagination {
	padding-top: 50px;
	width: 100%;
}

.page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.page-numbers .page-numbers.current {
    display: inline-block;
    padding: 10px;
    border-radius: 3px;
    text-decoration: none;
    color: var(--color-green);
    margin: 0px 5px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    cursor: pointer;
}

.page-numbers li a {
    display: inline-block;
    padding: 10px;
    border-radius: 3px;
    text-decoration: none;
    color: var(--color-green-light);
    margin: 0px 5px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.page-numbers li a:hover {
	color: var(--color-green);
}


/* ===================================
   FORM
=================================== */

.owc-wrapper-contact-form {
    max-width: 1000px;
	margin: 0 auto;
}

input, 
select {
    background-color: transparent;
    outline: none;
    border: none;
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    color: var(--color-white);
    border: 1px solid var(--color-dark-gray);
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
}

select {
	padding: 10px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url('../images/arrow-down.png');
	background-size: 12px auto;
	background-repeat: no-repeat;
	background-position: 95% 55%;
}

select option {
	color: var(--color-dark);
}

select:focus {
	border: 1px solid var(--color-green-light);
}

.owc-wrapper-contact-form input:focus, 
.owc-wrapper-contact-form textarea:focus {
	border: 1px solid var(--color-green-light);
}

.owc-wrapper-input {
	justify-content: space-between;
}

.owc-wrapper-input p {
    width: calc(50% - 10px);
}

textarea {
    background-color: transparent;
    outline: none;
    border: none;
    display: block;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: 250px;
    color: var(--color-white);
    border: 1px solid var(--color-dark-gray);
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
}

input::placeholder, 
textarea::placeholder {
	color: var(--color-gray);
	font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
}

input.btn[type="submit"] {
    outline: none;
    border: none;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    cursor: pointer;
    display: block;
    background-color: var(--color-green-light);
    margin-top: 30px;
	color:var(--color-dark);
    width: 100%;
}

input.btn[type="submit"]:hover {
	background-color: var(--color-green);
}

input[type="submit"] {
	cursor: pointer;
}


.wpcf7 form .wpcf7-response-output {
    margin: 0px !important;
    padding: 0px !important;
    border: none !important;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: transparent !important;
	text-align: center;
}


/* ===================================
   WIDGETS
=================================== */


.owc-sidebar {
	display: block;
}

.widget 
 {
	margin-bottom: 30px;
	color: var(--color-gray);
	padding-left: 20px;
	padding-right: 20px;
	clear: both;
}

.widget-title {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--color-white);
	padding-bottom: 5px;
}

.wp-block-search__inside-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.wp-block-search__input {
	display: block;
	width: 100%;
}

.wp-block-search__input:focus {
	border: 1px solid var(--color-green-light);
}

.wp-block-search__button {
	padding: 15px 30px;
	background-color: var(--color-green-light);
	color: var(--color-dark);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 900;
	border-radius: 30px;
	display: block;
	width: 100%;
	cursor: pointer;
	border: none;
	transition: all;
	transition-duration: 0.5s;
	margin-left: 0px;
}

.wp-block-search__button:hover {
	background-color: var(--color-green);
	color: var(--color-white);
}

.widget ul li {
	margin-bottom: 15px;
}

.widget ul li a {
	color: var(--color-gray);
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
}

.widget ul li a:hover {
	color: var(--color-green-light);
}

.wp-block-tag-cloud {
	display: block;
}

.wp-block-tag-cloud a {
	display: inline-block;
	color: var(--color-gray);
	font-size: 14px !important;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 20px 10px;
}

.wp-block-tag-cloud a:hover {
	color: var(--color-green-light);
}


.wp-block-calendar {
	width: 100%;
	border-collapse: collapse;
	color: var(--color-white);
	font-size: 14px;
	margin-bottom: 20px;
}

.wp-block-calendar th {
	color: var(--color-gray);
	border: 1px solid var(--color-dark-gray);
	padding: 8px;
	text-align: center;
	font-weight: 600;
	background-color: transparent;
}

.wp-block-calendar td {
	padding: 8px;
	text-align: center;
	color: var(--color-gray);
	border: 1px solid var(--color-dark-gray);
}

.wp-block-calendar td a {
	color: var(--color-green-light);
	text-decoration: none;
	display: block;
	padding: 10px;
	-webkit-transition: background 0.3s, color 0.3s;
	-o-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}

.wp-block-calendar td a:hover {
	color: var(--color-green);
}

.wp-block-calendar #today {
	color: var(--color-green-light);
	font-weight: bold;
}

.wp-block-calendar caption {
	color: var(--color-white);
	font-size: 16px;
	margin-bottom: 10px;
}

.wp-calendar-nav-prev a, .wp-calendar-nav-next a {
	color: var(--color-green-light);
}

.wp-calendar-nav-prev a:hover, .wp-calendar-nav-next a:hover {
	color: var(--color-green);
}

*[class^="wp-block-woocommerce-product"] {
	margin-bottom: 30px;
	color: var(--color-gray);
	clear: both;
}

.wp-block-heading {
	margin-bottom: 20px;
}

.wc-block-product-filter-price-slider__range {
	background-color: var(--color-green) !important;
}

.wc-block-product-filter-price-slider .text input[type=text] {
    border: 1px solid var(--color-dark-gray) !important;
    border-radius: 4px;
    font-size: .875em;
    margin: 0;
    max-width: 60px;
    min-width: 0;
    padding: 8px;
    width: auto;
}


/* ===================================
   PRODUCT
=================================== */


.wrapper-single-product {
	width: 100%;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.single-product-img {
	width: 40%;
}

.single-product-content {
	width: 60%;
	padding-left: 50px;
}

.single-product-img a {
	display: block;
	width: 100%;
}

.single-product-img  img {
	width: 100%;
	display: block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.single-product-img  img:hover {
	-webkit-filter: opacity(70%);
	filter: opacity(70%);
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    visibility: hidden;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
    visibility: visible;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
    visibility: visible;
}

.flex-control-thumbs {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.flex-control-thumbs li {
	width: 100px;
	height: auto;
	margin: 10px;
	cursor: pointer;
	border: 1px solid var(--color-dark-gray);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
	border-radius: 10px;
	overflow: hidden;
}

.flex-control-thumbs li:hover {
	border: 1px solid var(--color-green-light);
}

.flex-control-thumbs li img {
	display: block;
	width: 100%;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.flex-control-thumbs li img:hover {
	-webkit-filter: opacity(70%);
	filter: opacity(70%);
}

.single-product-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--color-white);
}

.woocommerce-review-link {
	color: var(--color-green-light);
	margin-bottom: 10px;
}

.woocommerce-review-link:hover {
   color: var(--color-green);
}

.single-product-content .price {
    font-size: 20px;
}

.single-product-content .variations tr {
    width: 100%;
}

.single-product-content .variations .label {
    font-weight: 700;
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
}

.single-product-content .variations select {
    margin-bottom: 10px;
    width: 200px;
}

.single-product-content .woocommerce-product-details__short-description {
    margin-bottom: 20px;
}

.single-product-content input[type="number"] {
    width: 100px;
    margin-bottom: 0px;
    margin-right: 10px;
}

.single-product-content .quantity {
    float: left;
}

.product_meta {
    clear: both;
    padding-top: 20px;
}

.product_meta > span {
    display: block;
}

.product_meta > span a {
    color: var(--color-green-light);
}

.product_meta > span a:hover {
    color: var(--color-green);
}

.single-product-content .reset_variations {
    margin-bottom: 20px;
    color: var(--color-green-light);
}

.single-product-content .reset_variations:hover {
	color: var(--color-green);
}

.single-product-img .onsale {
	color: var(--color-green-light);
	text-transform: uppercase;
}

.tabs.wc-tabs {
    background-color: var(--color-light-dark);
}

.wc-tabs li {
    padding: 20px;
}

.wc-tabs li a {
    color: var(--color-white);
    text-transform: uppercase;
    font-family: "Archivo Black", sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.wc-tabs li a:hover {
	color: var(--color-green-light);
}

.wc-tabs li.active a {
    color: var(--color-green-light);
}

.woocommerce-Tabs-panel {
    padding: 20px 20px 50px 20px;
}

.woocommerce-Tabs-panel h2 {
    font-size: 20px;
}

.woocommerce-product-attributes {
    width: 100%;
}

.woocommerce-product-attributes th {
    text-align: left;
}

.woocommerce-product-attributes tr td, .woocommerce-product-attributes th {
    border: 1px solid var(--color-dark-gray);
    padding: 10px;
}

.comment_container {
    margin-bottom: 40px;
}

.comment_container img {
	width: 60px !important;
	height: 60px !important;
	display: inline-block;
    border-radius: 50%;
	margin-bottom: 5px;
}

.woocommerce-review__author, 
.woocommerce-review__dash, 
.woocommerce-review__published-date {
	font-weight: 700;
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 12px;
}

.commentlist p.meta {
   margin-bottom: 20px;
   font-size: 10px;
   margin-top: 10px;
} 

.comment_container {
	margin-bottom: 40px;
}

.comment-reply-title {
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 14px;
	display: block;
}

.comment-form-rating {
	margin-bottom: 20px;
}

label[for="comment"], 
.comment-form-author label, 
.comment-form-email label  {
	margin-bottom: 20px;
	display: block;
}

.comment-form-cookies-consent {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap:nowrap;
	    flex-wrap:nowrap;
}

#wp-comment-cookies-consent {
   width: 50px;
   margin-bottom: 0px;
}

.comment-form-cookies-consent  {
	width: 100%;
	padding: 20px 0px;
}

.woocommerce-tabs.wc-tabs-wrapper .submit {
	padding: 15px 30px;
	background-color: var(--color-green-light);
	color: var(--color-dark);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 900;
	border-radius: 30px;
	cursor: pointer;
}

.woocommerce-tabs.wc-tabs-wrapper .submit:hover {
	background-color: var(--color-green);
	color: var(--color-white);
}

.upsells.products h2 {
    font-size: 30px;
}

.up-sells.upsells.products {
	padding-bottom: 50px;
}

/* ===================================
   CART / CHEKOUT
=================================== */


table {
	width: 100%;
}

.shop_table thead {
	width: 100%;
}

.title-table {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 20px;
	text-align: left;
}

.title-table  .product-remove {
	width: 5%;
}

.title-table  .product-thumbnail {
	width: 15%;
}

.title-table .product-name {
	width: 40%;
}

.title-table .product-price {
	width: 10%;
} 

.title-table .product-quantity {
	width: 20%;
}

.title-table .product-subtotal {
	width: 10%;
}

.woocommerce-cart-form__cart-item.cart_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-dark-gray);
}

.woocommerce-cart-form__cart-item.cart_item  > td, .title-table > th {
	padding: 10px;
}

.woocommerce-cart-form__cart-item.cart_item .product-remove {
	width: 5%;
}

.woocommerce-cart-form__cart-item.cart_item .product-remove a {
	color: var(--color-green-light);
}

.woocommerce-cart-form__cart-item.cart_item .product-remove a:hover {
	color: var(--color-green);
}

.woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
	width: 15%;
}

.woocommerce-cart-form__cart-item.cart_item .product-name {
	width: 40%;
}

.woocommerce-cart-form__cart-item.cart_item .product-name a {
	color: var(--color-green-light);
}

.woocommerce-cart-form__cart-item.cart_item .product-name a:hover {
	color: var(--color-green);
}

.woocommerce-cart-form__cart-item.cart_item .product-price {
	width: 10%;
}

.woocommerce-cart-form__cart-item.cart_item .product-quantity {
	width: 20%;
}

.woocommerce-cart-form__cart-item.cart_item .product-subtotal {
	width: 10%;
	font-weight: 700;
}

.woocommerce-cart-form__cart-item.cart_item .product-name > .variation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
}

.woocommerce-cart-form__cart-item.cart_item .product-name > .variation > dt {
	margin-right: 5px;
}

.woocommerce-cart-form__cart-item.cart_item .product-thumbnail img, .woocommerce-cart-form__cart-item.cart_item .product-quantity input  {
    margin-bottom: 0px;
}

.wrapper-coupons-update-btn {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.wrapper-coupons, .wrapper-update-btn {
	width: 50%;
	padding: 20px;
}

.wrapper-update-btn button.btn {
	float: right;
	border: none;
}

.wrapper-update-btn button.btn:disabled {
	background-color: var(--color-green);
	border: 1px solid var(--color-dark-gray);
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: var(--color-dark);
	cursor: not-allowed;
}

.wrapper-coupons button.btn {
	border: none;
	width: 100%;
}

.variation p {
	margin-bottom: 0px;
}

.wrapper-cart-content {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.wrapper-cart-form.w-70 {
	width: 70%;
}

.wrapper-cart-total-info.w-30 {
	width: calc(30% - 30px);
	padding: 30px;
	margin-left: 30px;
	border: 1px solid var(--color-dark-gray);
}

.wrapper-cart-total-info .btn {
	width: 100%;
	text-align: center;
}

.cart_totals h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

ul.woocommerce-shipping-methods {
	margin: 0px;
}

.cart_totals .shop_table {
	width: 100%;
}

.cart_totals .shop_table  tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 10px;
	border-bottom: 1px solid var(--color-dark-gray);
	padding-bottom: 10px;
}

.cart_totals .shop_table .order-total {
	margin-bottom: 0px;
	border: none;
	padding-bottom: 0px;
}

.wc-proceed-to-checkout {
	margin-top: 30px;
}

.cart_totals .shop_table  tr  th {
	text-align: left;
	width: 30%;
}

.cart_totals .shop_table  tr  td {
	text-align: right;
	width: 70%;
} 

.cart-subtotal th, .order-total th {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 16px;
}

.cart-subtotal > td, .order-total > td {
    font-weight: 700;
}

.cart-discount .woocommerce-remove-coupon {
	color: var(--color-green-light);
}

.cart-discount .woocommerce-remove-coupon:hover {
	color: var(--color-green);
}

#shipping_method.woocommerce-shipping-methods {
	list-style: none;
}

#shipping_method.woocommerce-shipping-methods input[type="radio"] {
   width: auto;
   display: inline;
   margin: 0px;
   margin-right: 10px;
} 

#shipping_method.woocommerce-shipping-methods  li {
	margin-bottom: 10px;
	list-style: none;
}

.wrapper-checkout-order {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
	width: 100%;
}

.checkout-content-form {
	width: 60%;
	padding-right: 50px;
}

.checkout-content-order {
	width: 40%;
	padding: 30px;
	border: 1px solid var(--color-dark-gray);
}

.checkout-content-order .product-name > .variation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
}

.checkout-content-order .product-name > .variation td {
	margin-right: 5px;
}

.checkout-content-form h3, 
.checkout-content-order h3  {
	font-size: 20px;
	text-transform: capitalize;
}


.wrapper-coupons-update-btn {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.wrapper-coupons, .wrapper-update-btn {
	width: 50%;
	padding: 20px;
}

.wrapper-update-btn button.owc-btn {
	float: right;
	border: none;
}

.wrapper-update-btn button.owc-btn:disabled {
	background-color: var(--color-green);
	border: 1px solid var(--color-dark-gray);
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: var(--color-dark);
	cursor: not-allowed;
}

.wrapper-coupons button.owc-btn {
	border: none;
	width: 100%;
}




.checkout-content-form p {
	margin-bottom: 0px;
}

.checkout-content-form label {
	margin-bottom: 10px;
	display: inline-block;
}

.wrapper-checkout-order label.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-checkout-order label.checkbox > input {
	margin-bottom: 0px;
	margin-right: 10px;
	display: inline-block;
	width: auto;
}

.select2-container--default .select2-selection--single {
    border: none;
}

.form-row .select2-container--default .select2-selection--single {
    min-height: 55px;
}

.form-row .select2-container--default .select2-selection--single {
    background-color: transparent;
    border-radius: 3px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 55px;
	background-color: transparent;
	border: 1px solid var(--color-dark-gray);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 16px;
    right: 1px;
    width: 20px;
}

.select2-container {
	margin-bottom: 20px;
}

.checkout-content-order .woocommerce-checkout-review-order-table tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

.checkout-content-order .woocommerce-checkout-review-order-table  thead tr {
	border-bottom: 1px solid var(--color-dark-gray);
}

.checkout-content-order .woocommerce-checkout-review-order-table th.product-name,
.checkout-content-order .woocommerce-checkout-review-order-table th.product-total {
	width: 50%;
	text-transform: uppercase;
	color: var(--color-white);
	font-weight: 700;
}

.checkout-content-order .woocommerce-checkout-review-order-table th.product-name {
	text-align: left;
}

.checkout-content-order .woocommerce-checkout-review-order-table th.product-total {
	text-align: right;
}

.checkout-content-order .woocommerce-checkout-review-order-table .cart-subtotal {
    padding-top: 10px;
	border-top:1px solid var(--color-dark-gray);
	border-bottom: 1px solid var(--color-dark-gray);
	font-weight: 700;
	text-transform: uppercase;
}

.checkout-content-order .woocommerce-checkout-review-order-table  .order-total {
	padding-top: 10px;
	border-top: 1px solid var(--color-dark-gray);
	border-bottom: 1px solid var(--color-dark-gray);
	font-weight: 700;
	text-transform: uppercase;
}

.checkout-content-order .wc_payment_methods.payment_methods.methods {
	list-style: none;
}

.checkout-content-order .wc_payment_methods.payment_methods.methods  li {
    margin-bottom: 10px;
    list-style: none;
}

.checkout-content-order .wc_payment_methods.payment_methods.methods  li > div {
	padding-top: 10px;
}

.checkout-content-order .wc_payment_methods.payment_methods.methods input[type="radio"] {
    width: auto;
    display: inline;
    margin: 0px;
    margin-right: 10px;
}

.checkout-content-order .wc_payment_methods.payment_methods.methods  li label {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
}

.checkout-content-order .woocommerce-privacy-policy-text  {
	border:1px solid var(--color-dark-gray);
	padding: 20px;
}

.checkout-content-order .woocommerce-privacy-policy-text p {
	margin-bottom: 0px;
}

.checkout-content-order .woocommerce-privacy-policy-text a {
	color: var(--color-green-light);
}

.checkout-content-order .woocommerce-privacy-policy-text a:hover {
	color:var(--color-green);
}

.checkout-content-order .button[type="submit"] {
	width: 100%;
	text-align: center;
	border: none;
	cursor: pointer;
	margin-top: 30px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.woocommerce-error {
	padding: 30px;
	background-color:#f00;
	color: var(--color-white);
	list-style: none;
	margin: 30px 0px;
}

.woocommerce-error li {
	list-style: none;
	margin-bottom: 5px;
}

.woocommerce-error li a {
	color:var(--color-white);
}

.woocommerce-error li a:hover {
	color:var(--color-dark);
}

#order-checkout-thankyou   .woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
		font-weight: 700;
		margin-bottom: 30px;
		text-transform: capitalize;
		line-height: 1.3;
		font-size: 24px;
		text-align: center;
}

#order-checkout-thankyou .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details, #order-checkout-thankyou .wc-bacs-bank-details.order_details.bacs_details {
	margin-left: 0px;
}

#order-checkout-thankyou .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li, #order-checkout-thankyou .wc-bacs-bank-details.order_details.bacs_details li  {
	margin-bottom: 10px;
	list-style: none;
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    margin-bottom: 50px;
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details tr td, #order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details th {
    border: 1px solid var(--color-dark-gray);
    padding: 10px;
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details th  {
	text-align: left;
	font-weight: 700;
	text-transform: uppercase;
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details a {
	color: var(--color-green-light);
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details a:hover {
	color: var(--color-green);
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta {
	list-style: none;
	margin:0px;
	margin-top: 10px;	
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin-bottom: 5px;
	font-size: 12px;
}

#order-checkout-thankyou .woocommerce-table.woocommerce-table--order-details.shop_table.order_details .wc-item-meta li p {
	margin-bottom: 0px;
	padding-left: 5px;
}

#customer_login {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#customer_login .u-column1.col-1 h3,
#customer_login .u-column2.col-2 h3 {
    font-size: 20px;
    text-transform: capitalize;
} 

#customer_login .u-column1.col-1 {
	width: 50%;
	padding-right: 25px;
}

#customer_login .u-column2.col-2 {
	width: 50%;
	padding-left: 25px;
}

#customer_login  label {
    margin-bottom: 10px;
    display: inline-block;
}

#customer_login  .woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	width: 100%;
}

#customer_login  .woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme  input {
	width: auto;
	margin-right: 10px;
	margin-bottom: 0px;
}

#customer_login  .woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme span {
	display: inline-block;
	padding-top: 3px;
}

#customer_login  .btn {
	display: block;
	border: none;
	width: 100%;
}

#customer_login  .woocommerce-LostPassword.lost_password a {
    color: var(--color-green-light);
}

#customer_login  .woocommerce-LostPassword.lost_password a:hover {
	color: var(--color-green);
}

#customer_login .woocommerce-privacy-policy-link {
   color: var(--color-green-light);
}

#customer_login .woocommerce-privacy-policy-link:hover {
	color: var(--color-green);
}

.wrapper-lost-pass {
	width: 70%;
	margin: 0 auto;
}

.wrapper-lost-pass  label {
    margin-bottom: 10px;
    display: inline-block;
}

.wrapper-lost-pass  .btn {
	display: block;
	border: none;
	width: 100%;
}

#wrapper-account {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

#account-navigation {
	width: 30%;
	padding-right: 50px;
}

#account-navigation ul {
	margin: 0px;
}

#account-navigation ul li {
	list-style: none;
	margin-bottom: 10px;
}

#account-navigation ul li a {
	color: var(--color-green-light);
	font-size: 16px;
	text-transform: uppercase;
}

#account-navigation ul li a:hover {
	color: var(--color-green);
}

#account-content {
	width: 70%;
}

#account-content a {
	color: var(--color-green-light);
}

#account-content a:hover {
	color: var(--color-green);
}

#account-content a.button.view {
    padding: 0px;
    border-radius: 0px;
	background-color: transparent;
	color: var(--color-green-light);
}

#account-content a.button.view:hover {
	color: var(--color-green);
}

#account-content  table  tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom:1px solid var(--color-dark-gray);
}

#account-content .wc-item-meta {
   margin: 0px;
   margin-top: 10px;
   font-size: 14px;
}

#account-content .wc-item-meta li {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

#account-content .wc-item-meta li p {
	margin-bottom: 0px;
	margin-left: 5px;
}

#account-content .woocommerce-Address {
    float: left;
	padding: 20px;
	width: 50%;
}

#account-content  label {
	margin-bottom: 10px;
	display: inline-block;
}

#account-content legend {
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

#account-content button[type="submit"] {
	border: none;
	outline:none;
	width: 100%;
	display: block;
	text-align: center;
	margin-top: 0px;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.woocommerce-error {
    padding: 30px;
    background-color: #f00;
    color: var(--color-white);
    list-style: none;
    margin: 30px 0px;
}

.show-password-input {
	display: none !important;
}



/* ===================================
   MEDIA
=================================== */


@media all and (max-width:1100px) {

    #owc-navigation {
		display: none;
	}

	#owc-openmenu,
	#owc-closemenu {
		display: inline-block;
	}

	#owc-closemenu {
		float: right;
	}


    .owc-wrapper-shop .products {
        width: 100%;
    }


}

@media all and (max-width:900px) {

	#customer_login .u-column1.col-1 {
		width: 100%;
		padding-right: 0px;
   }

	#customer_login .u-column2.col-2 {
		width: 100%;
		padding-left: 0px;
	}

    .aboutus-img {
		width: 70%;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
        margin-left: auto;
        margin-right: auto;
	}

	.aboutus-content {
		width: 100%;
		padding-left: 0px;
		margin-bottom: 50px;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

    .owc-wrapper-category a {
        width: calc(50% - 20px);
    }
    
    .columns-5 .product,
	.columns-4 .product,
	.columns-3 .product,
	.columns-2 .product {
		width: calc(50% - 20px);
	}

    .owc-wrapper-contact>div {
        width: 50%;
        text-align: center;
    }

    #contacts #menu-social-links {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	#contacts #menu-social-links li {
      margin-right: 0px;
	  margin: 0px 10px;
    }

    .owc-wrapper-input p {
        width: calc(100% - 0px);
    }

	.owc-row-2 .single-blog,
	.owc-row-3 .single-blog,
	.owc-row-4 .single-blog {
	   width: calc(50% - 20px);
   }

   
    .single-product-img {
        width: 100%;
        margin-bottom: 50px;
    }

    .single-product-content {
        width: 100%;
        padding-left: 0px;
    }
    .wrapper-cart-form.w-70 {
		width: 100%;
		margin-bottom: 50px;
	}
	
	.wrapper-cart-total-info.w-30 {
		width: 100%;
		margin-left: 0px;
	}

    .title-table {
		display: none;
	}
    .woocommerce-cart-form__cart-item.cart_item {
        padding-bottom: 20px;
    }
    .woocommerce-cart-form__cart-item.cart_item .product-remove {
        width: 5%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
        width: 30%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-name {
        width: 65%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-price {
        width: 33.333333%;
        text-align:center;
    }
    .woocommerce-cart-form__cart-item.cart_item .product-quantity {
        width: 33.333333%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-quantity input {
        width: 100%;
    }

    .woocommerce-cart-form__cart-item.cart_item .product-subtotal {
        width: 33.333333%;
        text-align:center;
    }

    .wrapper-coupons, .wrapper-update-btn {
        width: 100%;
    }

    .wrapper-coupons, .wrapper-update-btn {
        width: 100%;
    }
    .checkout-content-form {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 50px;
    }
    
    .checkout-content-order {
        width: 100%;
    }

    #account-navigation {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 50px;
    }

    #account-content {
        width: 100%;
    }

}

@media all and (max-width:600px)  {

     h1 {
        font-size: 50px;
     }

     h2 {
        font-size: 35px;
     }

     .owc-wrapper-title h1 {
        font-size: 35px;
    }

    .owc-row-1 .single-blog,
	.owc-row-2 .single-blog,
	.owc-row-3 .single-blog,
	.owc-row-4 .single-blog {
	   width: calc(100% - 20px);
   }

   .wrapper-cart-account {
        margin-left: 0px;
    }

}

@media all and (max-width:460px) {

    .owc-wrapper-category a {
        width: calc(100% - 20px);
    }
    
    .columns-5 .product,
	.columns-4 .product,
	.columns-3 .product,
	.columns-2 .product {
		width: calc(100% - 20px);
	}

    .owc-wrapper-contact>div {
        width: 100%;
    }

    .owc-wrapper-cart-account {
        margin-left: 0px;
    }

}