/* CSS Variables */
:root{
	--gold:#D7B963;
	--beige:#F4EFE9;
	--light-beige:#F9F7F5;
}
html, body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
main, nav, section, summary {
  display: block;
}
audio,canvas, video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* General styling */
*, :before, :after {
  -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:root {
  -webkit-tap-highlight-color: transparent; /* no more color over a link when tapped, usually iOS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* antialiasing, Mozilla only */
  -webkit-font-smooth: always; /* text has no sharp edges, Safari only */
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for IE */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	min-height: 100vh;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-justify-content: space-between;
	justify-content: space-between;
  font: 22px/1.4 "niveau-grotesk", sans-serif;
  font-weight:400;
  color: #000;
  background: var(--light-beige);
}
h1, h2, h3, h4, h5, h6,
h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
article h1 a, article h2 a, article h3 a, article h4 a, article h5 a, article h6 a  {
	margin-bottom: 20px;
	font-family: "League Gothic", sans-serif;
  line-height: 1;
  font-synthesis-weight: none;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
	transition: .4s;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration:none;
}
article ul li,
article ol li,
article p {
	word-break: break-word;
}
article table tr:first-child{
	background:#d5d5d5!important;
}
article table tr:nth-child(odd){
	background:#f9f7f6;
}
article table tr:nth-child(even){
	background:#fff;
}
p, li, a{
	font-family: "niveau-grotesk",sans-serif;
}
p{
	margin-bottom: 20px;
}
span {
  display: inline;
}
a {
	color: inherit;
  cursor: pointer;
	transition:.4s;
}
header a{
	font-size: 18px;
}
a:not([class]):focus {
  outline: none;
	box-shadow: none;
}
img, iframe {
	max-width: 100%;
	height: auto;
}
img.size-portrait-thumbnail {
	width:auto;
	max-width:unset;
}
i:not([class]), em, cite, dfn {
	font-style: italic;
}
ul, ol {
  margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
	list-style-position:inside;
}
ul {
	list-style: disc;
}
nav ul, nav ol {
  margin: 0;
  list-style: none;
}
b, strong, th, legend {
	font-weight: bold;
}
small {
	font-size: 75%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
  vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
abbr[title] {
  text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
  cursor: help;
}
del {
  text-decoration: line-through;
}
table {
	margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	border: 1px solid #eceeef;
	padding: 10px;
	vertical-align: middle;
}
caption {
	font-size: 15px;
  padding: 10px 0;
  caption-side: bottom;
}
figcaption {
  font-size:15px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
	cursor: pointer;
}
button, input, textarea {
	font-family: inherit;
	line-height: normal;
	margin: 0;
}
textarea {
	min-height: 80px;
	resize: vertical;
}
[type="submit"], [type="reset"], [type="button"],
[type="text"], [type="email"], [type="tel"], [type="search"],
button {
	border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
	appearance: none;
}
button, [type="submit"], [type="reset"], [type="button"] {
   cursor: pointer;
}
textarea:focus, button:focus,
div[contenteditable="true"]:focus, [class~="btn"]:focus,
[type="text"]:focus, [type="tel"]:focus, [type="email"]:focus, [type="password"]:focus, [type="submit"]:focus {
  outline: 0;
}
[hidden] {
	display: none;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
p + h2, p + h3, p + h4,
ul + h2, ul + h3, ul + h4,
ol + h2, ol + h3, ol + h4,
code + h2, code + h3, code + h4,
table + h2, table + h3, table + h4,
blockquote + h1, blockquote + h2, blockquote + h3, blockquote + h4 {
    margin-top: 35px;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}
input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}
/* WordPress Core */
.alignnone {
  margin: 5px 20px 5px 0;
}
.aligncenter,
div.aligncenter  {
  display: block;
  margin: 30px auto 40px auto;
}
div.aligncenter{
	width: 90%!important;
	margin: 0 auto;
	padding:10px;
	border:1px solid #41ee6e;
}
div.aligncenter img{
	width: 100%;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  max-width: 100%; /* Image does not overflow the content area */
  text-align: left;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
	margin-bottom: 5px;
}
.wp-caption p.wp-caption-text,
.wp-block-image figcaption, .caption{
  font-size: 15px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
	margin:0px;
}
.full-width {
	width:100%;
	overflow:hidden;
}
.has__gallery .gallery{
	margin: auto -6px;
	padding: 6px 0;
	line-height: 1;
	overflow-x: hidden;
}
.has__gallery .gallery .gallery-item {
	float: left;
	margin: 0;
	text-align: center;
	padding: 6px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.has__gallery .gallery .gallery-caption,
.has__gallery .gallery .gallery-icon {
	margin: 0;
}
.has__gallery .gallery .gallery-caption {
	font-size: 13px;
	margin: 4px 0;
}
.has__gallery .gallery-columns-1 .gallery-item {
	width: 100%;
}
.has__gallery .gallery-columns-2 .gallery-item {
	width: 50%;
}
.has__gallery .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
.ie8 .has__gallery .gallery-columns-3 .gallery-item,
.ie7 .has__gallery .gallery-columns-3 .gallery-item {
	width: 33%;
}
.has__gallery .gallery-columns-4 .gallery-item {
	width: 25%;
}
.has__gallery .gallery-columns-5 .gallery-item {
	width: 20%;
}
.has__gallery .gallery-columns-6 .gallery-item {
	width: 16.665%;
}
.has__gallery .gallery-columns-7 .gallery-item {
	width: 14.285%;
}
.has__gallery .gallery-columns-8 .gallery-item {
	width: 12.5%;
}
.has__gallery .gallery-columns-9 .gallery-item {
	width: 11.111%;
}
.has__gallery .gallery img {
	max-width: 100%;
	height: auto;
	border: none;
	padding: 0;
	border-radius:15px;
}
@media(max-width:1200px){
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width:33%;
	}
}
@media(max-width:767px){
	.has__gallery .gallery-columns-2 .gallery-item,
	.has__gallery .gallery-columns-3 .gallery-item,
	.ie8 .has__gallery .gallery-columns-3 .gallery-item,
	.ie7 .has__gallery .gallery-columns-3 .gallery-item,
	.has__gallery .gallery-columns-4 .gallery-item,
	.has__gallery .gallery-columns-5 .gallery-item,
	.has__gallery .gallery-columns-6 .gallery-item,
	.has__gallery .gallery-columns-7 .gallery-item,
	.has__gallery .gallery-columns-8 .gallery-item,
	.has__gallery .gallery-columns-9 .gallery-item {
		width: 100%;
	}
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
    white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
html.js, html.no-js, html {
    margin-top: 0 !important;
}
/* End of WordPress Core */
/* General Theme Style */
.h-align{
  text-align:center;
}
.clear:after, .clear:before, .row:after, .row:before{
	clear:both;
	display:block;
	width:100%;
	content:'';
}
.container{
	width:100%;
	max-width:1500px;
	padding:0px 15px;
	margin:0 auto;
	display:block;
	position:relative;
}
.img-abs{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top:0;
	left: 0;
}
.screen{
	padding: 30px 0;
	position: relative;
}
main:not(.site-main){
	margin-top:85px;
}
@media(min-width:768px){
	.screen{
		padding: 40px 0;
	}
}
@media(min-width:850px){
	main:not(.site-main){
		margin-top:135px;
	}
}
@media(min-width:1100px){
	main:not(.site-main) {
    margin-top: 180px;
	}
}
@media(min-width:1280px){
	.screen{
		padding: 50px 0;
	}
}
@media(min-width:1440px){
	.screen{
		padding: 65px 0;
	}
}
/* Row */
.row{
	display: block;
	width: 100%;
}
.row > .item{
	display: inline-block;
	padding: 10px;
	vertical-align: top;
}
.row > .item.full-item{
	width: 100%;
}
@media(min-width:768px){
	.row > .item.item50,
	.row > .item.item32{
		width: 49%;
	}
}
@media(min-width:800px){
	.row > .item.item32{
		width: 33%;
	}
}
/* Flex */
.flex-row, .flex-row.reverse, .flex-column, .flex-column.reverse{
	display: flex;
}
.flex-column, .flex-row, .flex-row.reverse{
	flex-direction: column;
}
.flex-column.reverse{
	flex-direction: column-reverse;
}
.flex-item{
	padding: 10px;
	position: relative;
}
.flex-item.full-item, .flex-item.item50, .flex-item.item30, .flex-item.item70{
	flex: 1 1 100%;
}
@media(min-width:768px){
	.flex-item.item50{
		flex: 1 1 50%;
	}
	.flex-item.item30{
		flex: 1 1 30%;
	}
  .flex-item.item70{
	  flex: 1 1 70%;
  }
	.flex-row{
		flex-direction: row;
	}
	.flex-row.reverse{
		flex-direction: row-reverse;
	}
}
/*form adds */
.wpcf7-spinner{
	position: absolute;
}
 span.wpcf7-list-item{
  margin: 0;
}
.wpcf7-not-valid-tip{
  font-size: 12px;
  color:#cc1818;
  line-height: 16px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output{
  border: none;
  font-size: 14px;
  padding: 0;
  margin:5px 0;
  line-height: 18px;
	text-align: center;
}
 .wpcf7 form.invalid .wpcf7-response-output{
	color:#cc1818;
}
.wpcf7 form.sent .wpcf7-response-output {
	color:#41ee6e;
}
form input[type=checkbox] {
  position: absolute;
	width: auto;
	display: inline-block;
	padding: 0;
	line-height: 0;
	margin-right: 7px;
	visibility: hidden;
}
form input[type=checkbox]+span:before {
  display: block;
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  top: 2px;
  left: 0;
	border:1px solid #000;
}
form input[type=checkbox]+span:after {
  display: block;
	content:'';
  position: absolute;
	height: 9px;
	width: 9px;
	top: 5px;
  left: 3px;
  background-color: #000;
	visibility: hidden;
}
form input[type=checkbox]:checked+span:before {
  background: transparent;
}
form input[type=checkbox]:checked+span:after {
  visibility: visible;
}
form input:not([type="submit"]):not([type=checkbox]):not([type=radio]),
form textarea{
	width: 100%;
	background:transparent;
	color:#000;
	font-size: 16px;
	border:0;
	border-bottom: 1px solid #000;
	padding: 10px 5px;
	border-radius: 0;
	border-top: 0 !important;
	border-left: 0 !important;
	border-right: 0 !important;
	box-shadow: none !important;
}
form textarea{
	border: 1px solid #000!important;
	border-radius: 13px;
	resize: none;
	height: 190px;
	margin-top:15px;
	padding: 15px;
}
form.invalid input:not([type="submit"]):not([type=checkbox]):not([type=radio]){
	border-bottom: 1px solid #cc1818;
}
form.invalid textarea{
	border: 1px solid #cc1818!important;
}
form input::placeholder, form .label{
	text-transform: uppercase;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.9px;
	color:#000;
	margin-bottom: 0;
}
form label span:not(.required){
	padding-left: 25px;
	font-size: 14px;
  vertical-align: super;
}
.form .terms-item{
	font-size: 12px;
	margin-top:7px;
	margin-bottom: 20px;
}
.form .terms-item label, form label{
	position: relative;
	text-align: left;
}
.form .terms-item label span{
	padding-left: 24px;
  display: inline-block;
	font-size: 14px;
}
form.invalid .terms-item label span{
	color:#cc1818;
}
.form .flex-row{
	flex-direction: column;
}
.form .flex-row .email-item span{
	width: 100%;
}
.form .submit-item{
	text-align: center;
}
.product_page .form .terms-item{
	 padding: 0 10px;
	 margin-top:-10px;
}
.product_page .form .flex-row .full-item{
	margin-bottom: 10px;
}
form fieldset{
	margin-top:50px;
}
/**/
select {
	cursor: pointer;
	font-size: 16px!important;
	font-weight: 400;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	background-color: transparent;
	text-align: center;
	text-align-last: center;
	color:#000;
	background-image:url('../img/down-arrow.svg');
	background-position: center right;
	background-size: 10px;
	background-repeat: no-repeat;
	padding-right: 14px;
}
select option {
  padding: 6px;
  color: #000;
}
select option:checked,
select option:hover {
  background-color: #f7f3ef; /* light highlight similar to screenshot */
}
@media(min-width:800px){
	.form .flex-row{
		flex-wrap: wrap;
		align-items: baseline;
		flex-direction: row;
	}
	.form .flex-row > div{
		display: inline-flex;
		flex-direction: column;
	}
	.form .flex-row .email-item{
		order: 1;
		flex: 1 1 70%;
		width: 70%;
		padding-right: 10px;
	}
	.form .flex-row .submit-item{
		order: 2;
		flex: 1 1 30%;
		width:30%;
	}
	.form .flex-row .terms-item{
		order: 3;
		flex: 1 1 100%;
	}
}
@media(min-width:850px){
	select{
		text-align: left;
		text-align-last: left;
	}
}
/* Fonts */
h1, .main-title, .screen-title{
	font-size: 36px;
}
h2{
	font-size: 32px;
}
h3, .small-screen-title{
	font-size: 28px;
}
h4{
	font-size: 24px;
}
h5, h6{
	font-size: 20px;
}
p, body, li{
	font-size: 16px;
}
.price, .amount, .option-label{
	font-size: 16px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.info a{
	text-decoration: underline;
}
.info ul li, .info ol li, .info p{
	margin-bottom: 15px;
}
.content-body li, .content-body p{
	font-size: 16px;
	line-height: 1.3;
}
.content-body ul{
  column-count: 2;
  margin:30px 0;
  list-style-position: inside;
}
.info ul,
.info ul li{
	list-style: none;
	margin-left: 0;
}
.info ul li{
	position: relative;
	padding-left: 23px;
}
.info ul li:before{
	display: block;
	content:'';
	position: absolute;
	left: 0;
	background-image: url('../img/sageata-diagonala.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
  height: 11px;
  top: 3px;
}
time{
	font-size: 16px;
	line-height: 1;
	color:#000;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}
.intro-text-block{
	margin-bottom: 40px;
	font-size: 20px;
	line-height: 1.2;
	display: block;
}
.beige-text-block, .verdict{
	padding: 40px;
	background-color:var(--beige);
	margin:40px 0;
	display: block;
	font-size: 20px;
	line-height: 1.2;
	border-radius:12px;
}
.verdict .ft{
	flex: 1 1 25%;
	font-size: 16px;
	line-height: 1;
	color:#000;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}
.verdict{
	text-align: center;
}
.verdict .st{
	flex: 1 1 75%;
	font-size: 20px;
	line-height: 1.2;
}
.info blockquote{
	position: relative;
	margin:40px 0;
}
.info blockquote:before{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	background-image:url('../img/quote.svg');
	background-size: contain;
	width: 35px;
	height: 35px;
}
.info blockquote p{
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 0;
	padding-left: 50px;
}
@media(min-width:1024px){
	h1, .main-title, .screen-title{
		font-size: 48px;
	}
	h2{
		font-size: 36px;
	}
	h3, .small-screen-title{
		font-size: 28px;
	}
	h4{
		font-size: 22px;
	}
	h5, h6{
		font-size: 20px;
	}
	.beige-text-block, .verdict{
		margin:40px -40px;
	}
	.verdict .st{
		padding-left: 40px;
	}
	.verdict{
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		text-align: left;
	}
	.verdict p{
		margin-bottom: 0;
	}
	.verdict .st, .beige-text-block, .verdict,
	.info blockquote p{
		font-size: 26px;
	}
	.info blockquote p{
		padding-left: 0;
	}
	.info blockquote:before{
		left: -40px;
	}
	.intro-text-block{
		font-size: 22px;
	}
}
@media(min-width:1280px){
	h3, .small-screen-title{
		font-size: 30px;
	}
	h4{
		font-size: 26px;
	}
	h5, h6{
		font-size: 22px;
	}
	p, body, li, .price, .amount, time, .content-body li, .content-body p{
		font-size: 17px;
	}
	.intro-text-block{
		font-size: 28px;
	}
}
@media(min-width:1440px){
	h1, .main-title, .screen-title{
		font-size: 58px;
	}
	h2{
		font-size: 48px;
	}
	h3, .small-screen-title{
		font-size: 36px;
	}
	h4{
		font-size: 28px;
	}
	h5, h6{
		font-size: 22px;
	}
}
/* Fonts Wrappers */
.screen-title-wrapper, .screen-title{
	text-align: center;
	margin-bottom: 45px;
}
.screen-title-wrapper > .screen-title,
.screen-title-wrapper > .small-screen-title{
	margin-bottom: 25px;
}
.screen-title-wrapper p{
	max-width: 640px;
  margin: 0 auto 20px;
}
/* Buttons */
.btn, .read-more, button, .single_add_to_cart_button, .btn-border, .wc-forward, .woocommerce-Button, .woocommerce-button,
.wc-block-components-totals-coupon__button, .wc-block-components-checkout-place-order-button, .wc-block-components-checkout-return-to-cart-button{
	display: inline-block;
	text-decoration: none;
	transition: .4s;
	font-size: 16px;
	line-height: 1;
	color:#000;
	letter-spacing: 0.9px;
	text-align: center;
	overflow: hidden;
	border-radius: 13px;
	text-transform: uppercase;
	background: transparent;
	font-weight: 400;
}
button, .wc-block-components-checkout-return-to-cart-button{
	border-radius: 0;
	outline:unset;
	margin: 3px 5px;
	margin-left: 0;
	letter-spacing: .9px;
	position: relative;
	border:0;
	text-transform: unset;
}
button:before,
.btn-border:before, .w-arrow:before, .read-more:before{
	display: block;
  content:'';
  width: 0;
  height: 1px;
  background:#000;
  position: absolute;
  bottom:0;
  left: 0;
  transition: .4s;
}
button:hover:before,
button.selected:before,
.btn-border:hover:before,
.btn-border.active:before{
	 width: 100%;
}
.btn.w-border, .single_add_to_cart_button, .wc-forward, .woocommerce-Button, .woocommerce-button,
.wp-element-button{
	padding: 13px 20px;
	border:1.5px solid #000;
	background:transparent;
}
.btn.w-border:hover, .single_add_to_cart_button:hover, .wc-forward:hover, .woocommerce-Button:hover, .woocommerce-button:hover,
.wp-element-button:hover{
	background:#000;
	color:var(--light-beige);
}
.btn.w-arrow, .read-more{
	display: inline-flex;
	align-items: center;
	padding: 0;
	border-radius: 0;
	margin:3px;
	margin-left: 0;
	position: relative;
}
.btn.w-arrow span, .read-more span{
	flex: 1;
}
.btn.w-arrow svg, .read-more svg{
	width: 22px;
	height: 22px;
	transition: .4s;
}
.btn.w-arrow:hover:before,
.post-preview:hover .read-more:before{
	width:calc(100% - 22px);
}
.btn.w-arrow:hover svg,
.post-preview:hover .read-more svg{
	transform: translateX(100px);
}
.grid-btn{
	margin-top:2rem;
}
.btn-border{
	padding: 0;
	border-radius: 0;
	position: relative;
}
.blog_categories{
	margin-bottom: 45px;
	margin-left: -5px;
	margin-right:-5px;
}
.blog_categories .btn{
	margin: 5px 15px;
	font-size: 16px;
}
.ws-navigation {
  display: block;
  width: 100%;
  text-align: center
}
.ws-navigation ul {
  margin: 0;
  list-style: none;
  margin-top: 50px
}
.ws-navigation ul li {
  display: inline-block;
	padding: 5px 8px;
	margin:5px;
}
.ws-navigation ul li a {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
	font-weight: 700;
	font-size: 14px;
	position: relative;
}
.ws-navigation ul li a:before {
  display: block;
  content: '';
  position: absolute;
	width: 30px;
	height: 30px;
	top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
	background-color: var(--beige);
  opacity: 0;
  z-index: -1;
  border-radius: 4px;
  transition: .4s
}
.ws-navigation ul li.next svg,.ws-navigation ul li.last svg {
  transform: rotate(-180deg)
}
.ws-navigation ul li.active a:before,.ws-navigation ul li a:hover:before {
  opacity: 1
}
.ws-navigation ul li.active a,
.ws-navigation ul li a:hover {
	color: var(--gold);
}
@media(min-width:768px){
	.grid-btn{
		margin-top:3rem;
	}
}
@media(min-width:1024px){
	.btn.w-border{
			min-width: 204px;
	}
}
@media(min-width:1280px){
	.btn, .read-more, button{
		font-size: 17px;
	}
}
ul.slick-dots {
  line-height: 0;
	margin: 0;
}
ul.slick-dots li {
  display: inline-block;
  padding: 0 5px;
  line-height: 0
}
ul.slick-dots li button {
  display: inline-block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background-color: var(--light-beige);
	border:1px solid #000;
  text-indent: -9999px;
  margin-bottom: 0;
  transition: .4s;
  overflow: hidden;
	border-radius:50%;
	margin: 0;
}
ul.slick-dots li.slick-active button,ul.slick-dots li button:hover {
	background-color: #000;
}
.slider-arrow{
	cursor: pointer;
	transition: .4s;
	z-index: 3;
}
.slider-arrow svg{
	width: 70px;
	height: 70px;
	transition: .4s;
}
.slider-arrow:hover svg{
	fill:var(--gold);
}
.slider-arrow.next-arrow svg{
	transform:rotate(-180deg);
}
.woocommerce-breadcrumb{
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 11px;
}
.woocommerce-breadcrumb .breadcrumb-separator{
	padding:0 10px!important;
}
.woocommerce-breadcrumb a{
	text-decoration: none!important;
	position: relative;
}
.woocommerce-breadcrumb a:first-of-type::before{
	display: none!important;
}
.woocommerce-breadcrumb a:before{
	display: block;
  content: '';
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .4s;
}
.woocommerce-breadcrumb a:hover:before{
	width: 100%;
}
/* Post Previews */
.post-preview{
	margin-bottom: 20px;
}
.post-preview .inner{
	display: block;
	text-decoration: none;
	text-align: center;
}
.post-preview .inner .featured{
	position: relative;
	width:100%;
	aspect-ratio:1.2/1;
	max-height: 580px;
	margin-bottom: 12px;
}
.post-preview:hover h3{
	color:var(--gold);
}
.post-preview .inner p{
	margin-bottom: 10px;
}
/* Product previews */
.product .product-loop-figure{
	position: relative;
}
.product .product-loop-figure img{
	width:100%;
	height: 300px;
	object-fit: contain;
}
.product h3 a:hover{
	color:var(--gold);
}
.product-price-addtocart .price{
	margin-right: 10px;
	padding-right: 10px;
	border-right:1px solid #000;
}
/***/
.featured-product{
	background:var(--beige);
	position: relative;
	margin-top:140px;
	text-align: center;
}
.featured-product .flex-row{
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.featured-product .featured-product-image{
	width: 100%;
	max-width: 660px;
}
.featured-product .featured-product-image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.featured-product .product-info{
	max-width: 500px;
	margin: 0 auto;
	padding:20px 0 30px;
}
.featured-product .product-vector{
	position: absolute;
	top: 0;
	width: 100%;
}
.featured-product .product-vector:after{
	top: -30px;
}
.featured-product .product-vector.costa-rica:after {
  top: -46px;
}
@media(min-width:768px){
	.post-preview .inner,
	.featured-product{
		text-align: left;
	}
	.featured-product .product-info{
		padding: 0;
	}
}
/* Product grids */
.products{
	list-style: none;
	text-align: center;
	margin:0;
}
.products .product{
	display: inline-block;
	padding: 10px;
	vertical-align: top;
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
}
@media(min-width:768px){
	.products .product{
		padding: 20px;
		max-width: 300px;
		margin-bottom: 30px;
	}
}
@media(min-width:800px){
	.products .product{
		max-width: 480px;
	}
	.products.columns-3 .product{
		max-width: 32%;
	}
	.products.columns-4 .product{
		max-width: 24%;
	}
}
/* Woocommerce General Settings */
main .woocommerce header{
	position: static;
}
.qty-container{
	display: inline-block;
}
.quantity{
	text-align: center;
}
.wc-block-components-quantity-selector:after{
	display: none!important;
}
.quantity input, .quantity input:focus, .quantity input:active,
.info .wc-block-cart-item__quantity input, .info .wc-block-cart-item__quantity input:focus, .info .wc-block-cart-item__quantity input:active {
  width: 45px!important;
  height: 30px!important;
  text-align: center;
	border:0;
	outline: 0;
	background:transparent;
	font-size: 16px;
	border-bottom: 0 !important;
	padding: 0 !important;
	font-weight: 400 !important;
}
.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity button, .info  .wc-block-cart-item__quantity button:not(.wc-block-cart-item__remove-link) {
  margin: 0 2px;
  background: transparent;
  box-shadow: none;
  padding: 0;
	border:0;
	outline:0;
	transition: .4s;
	min-width: unset;
  opacity: 1;
	position:relative;
	width: 20px!important;
	height: 20px!important;
	text-indent: -99999999999;
  color: transparent;
  vertical-align: middle;
}
.quantity button:before, .info  .wc-block-cart-item__quantity button:before{
	display: none;
}
.quantity button:after, .info  .wc-block-cart-item__quantity button:not(.wc-block-cart-item__remove-link):after{
	display: block;
	content:'';
	background-position: center;
	background-size: contain;
	width: 20px;
	height: 20px;
	top:0;
	position: absolute;
}
.quantity button.minus:after,
.info .wc-block-components-quantity-selector__button--minus:after{
	background-image:url('../img/minus.svg');
}
.quantity button.plus:after,
.info .wc-block-components-quantity-selector__button--plus:after{
	background-image:url('../img/plus.svg');
}
.wc-block-cart-item__remove-link:hover{
	color:var(--gold)!important;
}
.info .wc-block-components-quantity-selector{
	align-items: center;
}
.single_variation_wrap, .inner-variation{
	display: inline-block;
	vertical-align: top;
}
.variations{
	flex: 1;
  display: inline-flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 20px;
}
.variations .variation-button{
	line-height: 1.3;
}
.variations select.hidden-select{
	display: none;
}
.wp-element-button{
	min-height: unset!important;;
  text-decoration: none!important;;
  border: 1px solid #000!important;;
  background: unset!important;;
  color: #000!important;;
  text-transform: uppercase!important;;
  border-radius: 13px!important;;
  box-shadow: none !important;
  outline: none !important;
	transition:all .4s!important;
}
.wp-element-button:hover{
	background: #000!important;
	color:var(--light-beige)!important;
}
@media(min-width:850px){
	.variations{
		flex-direction: row;
		gap:0;
		margin-bottom: 0;
	}
	.variations .inner-variation{
		flex: 1 1 50%;
		min-width: 50%;
		padding-right: 20px;
	}
}
/* Subcategory banner  - used in caegory product page */
.subcategory-banner{
	position: relative;
	margin:50px 0 0;
	aspect-ratio:2.3/1;
}
.subcategory-banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/** woocoommerce errors, messages */
.woocommerce-notices-wrapper{
	width: 100%;
	max-width: 1540px;
	padding: 0px 15px;
	margin: 0 auto;
}
.woocommerce-error, .woocommerce-message, .woocommerce-info{
	text-align: left;
	padding: 20px;
	margin-left: 0;
	list-style: none;
	margin:0;
}
.woocommerce-error, .woocommerce-info{
  margin-top: 60px;
	border-radius: 4px;
}
.woocommerce-error li, .woocommerce-error, .woocommerce-info{
	font-size: .875em;
}
.woocommerce-error li{
	position: relative;
	padding-left: 25px;
	margin-bottom: 6px;
}
.woocommerce-error li{
	list-style-image: none!important;
}
.woocommerce-error li:last-of-type{
	margin-bottom: 0;
}
.woocommerce-error li:before{
	display: block;
	content:'';
	position: absolute;
	top:0;
	left: 0;
	background-image:url('../img/woo-error.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	background-color: #cc1818;
	border-radius: 50%;
}
.woocommerce-error{
	background-color: #fff0f0;
	border:1px solid#cc1818;
}
.woocommerce-info{
	border:1px solid var(--gold);
	background-color: #f4f0e6;
}
.woocommerce-message{
	width: calc(100% - 15px);
	max-width: 630px;
	padding:20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position:relative;
	margin:5px 0;
	padding: 14px 7px;
	background-color:#000;
	font-size:16px;
	color: var(--light-beige);
	font-weight: 500;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	gap:10px;
	text-align: center;
}
.woocommerce-message .wc-forward{
	order:2;
	display: inline-block;
	background-color: transparent;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 0 5px;
	border:transparent;
}
.woocommerce-message .wc-forward:hover{
	background: unset;
}
.woocommerce-message .wc-forward:after{
	display: none;
}
.woocommerce-message .notice-dismiss{
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 8px;
	height: 8px;
	background-image:url('../img/close-notif.svg');
	background-size: contain;
	background-repeat: no-repeat;
	border: 0;
	margin-right: 0;
}
/* Add to cart Notifications */
@keyframes slideInFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.woo-custom-message,
.product_page .woocommerce-message {
  position:fixed;
  bottom:2%;
  left:2%;
  z-index: 10;
  animation: slideInFade 0.5s ease-in-out;
}
.woo-custom-message a:not(.wc-forward),
.product_page .woocommerce-message a:not(.wc-forward){
	color:#fff;
	text-decoration:underline;
	padding: 0;
	margin-left: 10px;
	font-weight: bold;
}
@media(min-width:768px){
	.woocommerce-message{
		width: auto;
		justify-content: flex-start;
		text-align: left;
		padding: 10px 7px;
		padding-right: 30px;
	}
}
/* Facet */
div.facetwp-type-reset{
	text-align: center;
  margin-bottom: 0;
  margin-top: 20px;
}
.facetwp-reset{
	display: inline-block;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.9px;
  text-align: center;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 400;
  background: #000;
  padding: 6px 12px;
  margin: 0 auto;
}
.facetwp-reset:before{
	display: none;
}
.facetwp-checkbox{
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 15px !important;
	background-image:url('../img/facet-unchecked.svg')!important;
	font-weight: 500;
}
.facetwp-checkbox.checked{
	background-image:url('../img/facet-checked.svg')!important;
}
.facetwp-filters .option-label{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap:7px;
}
.facetwp-filters .option-label svg{
	width: 14px;
	height: 14px;
}
.facetwp-filters .open-filters .close-f{
	display: none;
}
.facetwp-filters .open-filters.open .close-f{
	display: block;
}
.facetwp-filters .open-filters.open .open-f{
	display: none;
}
.product-filters-wrapper .open-filters{
	cursor: pointer;
	position: relative;
	z-index: 3;
}
.product-filters-wrapper .filters-container{
	position: absolute;
	background: #F9F7F5;
	width: calc(100% - 30px);
	max-width: 550px;
	transition: .4s;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
	padding:50px 10px 20px;
	top:0;
	box-shadow: 6px 5px 12px -10px rgba(0, 0, 0, 0.29);
	-webkit-box-shadow: 6px 5px 12px -10px rgba(0, 0, 0, 0.29);
	-moz-box-shadow: 6px 5px 12px -10px rgba(0,0,0,0.29);
}
.product-filters-wrapper .filters-container.open-filters{
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
}
.product-filters-wrapper .filters-container div{
	break-inside: avoid;
}
.sort-filter select, .sort-filter .facetwp-facet{
	display: inline-block;
	width: auto;
	margin-bottom: 0;
}
.shop-page-content .facetwp-filters{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	z-index: 2;
	margin-bottom: 20px;
}
@media(min-width:1024px){
	.shop-page-content .facetwp-filters{
		position: absolute;
		width: calc(100% - 30px);
	}
	.product-filters-wrapper .filters-container .columns{
		column-count: 2;
	}
}
/*****/
.product-vector:after{
	display: block;
	content:'';
	position: absolute;
	top:0;
	height: 50px;
	width: 100%;
	background-repeat: repeat-x;
	background-size: cover;
}
.product-vector.brazil:after{
	background-image: url('../img/bordura-brazil.svg');
}
.product-vector.colombia:after{
	background-image: url('../img/bordura-colombia.svg');
}
.product-vector.costa-rica:after{
	background-image: url('../img/bordura-costa-rica.svg');
}
.product-vector.guatemala:after{
	background-image: url('../img/bordura-guatemala.svg');
}
.product-vector.hawaii:after{
	background-image: url('../img/bordura-hawaii.svg');
}
.product-vector.kenya:after{
	background-image: url('../img/bordura-kenya.svg');
}
.product-vector.default:after{
	background-image: url('../img/bordura-default.svg');
}
@media(min-width:1024px){
	.product-vector:after{
		background-size: contain;
	}
}
