/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Fonts
# Root
# Global
    ## Tools
# Typography
# actusblank
# Menu
# Footer
# Layout
--------------------------------------------------------------*/
 


/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Manrope:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Geologica:300,400,700,900&display=swap&subset=greek');
/*
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700,900&display=swap&subset=greek');
@import url('https://fonts.googleapis.com/css?family=Sofia+Sans+Condensed:300,400,500,700,900,1000&display=swap&subset=greek');
*/
 



/* Root */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
:root {

    --fontA: 'Manrope', sans-serif;
    --fontB: 'Geologica', sans-serif;
	
	--colorA: #7e4939;
	--colorB: #505f58;
	--colorC: #b38972;
	--colorD: #21221c;


    --txA: 0 0 1px hsla(176, 99%, 33%, 0.4);
    --txB: 0 0 1px hsla(217, 51%, 20%, 0.4);
    --txC: 0 0 1px hsla(215, 26%, 37%, 0.4);
    --txD: 0 0 1px hsla(0, 0%, 90%, 0.4);

    --txA3: 0 0 1px hsla(210, 74%, 48%, 0.4);

    --txWH: 0 0 1px hsla(0, 0%, 100%, 0.4);
    --txBL: 0 0 1px hsla(0, 0%, 0%, 0.4);



}


 
/* Typography - Colors */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
html {
	box-sizing: border-box;
	font-family: sans-serif; 
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body { margin: 0; font-family: var(--fontA); }
body, body * { box-sizing: border-box; }
html, body { overflow-x: hidden; }
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--colorA);
}
::-webkit-scrollbar-thumb {
    background: var(--colorB);
    border: 2px solid var(--colorA);
}
body::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}


a,p,li,h1,h2,h3,h4,h5,h6 { font-family: var(--fontA); }
.uline::after { border-bottom: 8px solid var(--colorA); }
a { color: var(--colorA); text-decoration: none; }
a h1, a h2, a h3, a h4, a h5, a h6, a li,
a p { color: black; }



.A-round,
.A-button-round { background: var(--colorA); }

.backA { background: var(--colorA); }
.backB { background: var(--colorB); }
.backC { background: var(--colorC); }
.backD { background: var(--colorD); }
.backE { background: #021d26; }
.backF { background: #cecece; }

.A-flex { display: flex; }
.A-flex-wrap { display: flex; flex-flow: row wrap; }

.abs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}




body main#content,
body footer { display: block; }
figure { margin: 0; }


img { position: relative; }
img:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
}
.A-content img { max-width: 100%; height: auto; }
[data-show="1"] { cursor: zoom-in; }



/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ HEADER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
header {
	position: relative;
    text-align: center;
	padding: 48px 0 0;
}
header .A-flex {
	flex-flow: column;
	place-items: center;
}
header .A-logo {
	display: inline-block;
    width: auto;
	margin: 0 0 24px 0;
	transition: 1s all;
}
header .A-logo img {
    width: auto;
    height: 140px;
    object-fit: contain;
}
header .A-logo.closed { transform: scale(0); }


/* Navigation */
header nav .menu-toggle {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
}
header nav .menu-toggle svg {
	height: 32px;
    fill: black;
    stroke: black;
    stroke-width: 12px;
}
header nav {
    position: relative;
	display: block;
    width: 100%;
	margin: 0;
	padding: 16px 0;
    text-align: right;
	transition: 1s all;
    z-index: 9;
	border: 2px solid hsla(0, 0%, 0%, 0.3);
	border-left: 0;
	border-right: 0;
}
header nav.closed { left: -300px; }
header nav ul {
	width: auto;
    padding: 0;
    margin: 0;
    list-style: none;
	text-align: center;
}
header nav ul li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0px;
    margin: 0px 16px;
    cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
header nav ul li a {
    position: relative;
    font: 700 20px var(--fontA);
	text-decoration: none;
	color: black;
    z-index: 99;
}
header nav ul li:hover > a,
header nav ul li.current_page_item > a {
    color: var(--colorB);
    opacity: 1;
}
header nav ul.sub-menu { 
	display: none;
	position: absolute;
	min-width: 120px;
	padding: 4px 0;
	text-align: left;
}
header nav ul.sub-menu li {
	margin: 0;
	padding: 4px 0 4px 16px;
}
header nav ul li:hover ul.sub-menu { display: block; }


nav.A-breadcrumb {}

nav.A-breadcrumb ul { display: flex; list-style: none; }
nav.A-breadcrumb ul li { margin-right: 8px; }
nav.A-breadcrumb ul li a { text-decoration: none; font-weight: 700; color: var(--colorB); }
nav.A-breadcrumb ul li a:hover { text-decoration: underline; }


/* SEARCH */
.A-search {
	display: flex;
	position: absolute;
    top: 168px;
    right: 48px;
}
.A-search:hover {opacity: 1;}
.A-search form { display: flex; }
.A-search label span { display: none; }
.A-search input[type="search"] {
    width: 100%;
    min-width: 260px;
    padding: 6px 32px 6px 8px;
    font: 400 14px var(--fontA);
    background: hsla(0, 0%, 0%, 0.1);
    border: 0;
    outline: 0;
    border-radius: 100px;
}
.A-search .search-submit {
    top: 2px;
    margin-left: -34px;
    font-size: 14px;
    opacity: 0.7;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.A-search .search-submit:hover { opacity: 1; }
.A-search .search-submit img {
    width: auto;
    height: 20px;
    padding: 2px 0;
	object-fit: contain;
}
.A-search svg {
    position: relative;
    top: 2px;
	height: 16px;
	pointer-events: none;
}


header .icons-01 {
	display: flex;
	position: absolute;
	right: 48px;
	top: 24px;
}
.sticky-bar-A .icons-01 { top: 9px; }
header .icons-02 {
	position: absolute;
	left: calc(15vw - 46px);
	bottom: 0;
}
header .icons-01 #site-header-cart > li:first-child .amount {
    position: absolute;
    right: 0;
    top: 112%;
	font: 700 16px var(--fontB);
	color: var(--colorB);
	opacity: 0.4;
}
header .icons-01 div,
header .icons-02 div { display: inline-block;  }
header .icons-01 svg,
header .icons-02 svg {
	display: block;
	width: 24px;
	height: 24px;
	margin-left: 24px;
	fill: var(--colorA);
}



.woocommerce-table--order-details  { border-collapse: collapse;  }
.woocommerce-table--order-details td { padding: 8px 0; }
.woocommerce-table--order-details th { text-align: left; }
.woocommerce-table--order-details th:last-child,
.woocommerce-table--order-details td:last-child { text-align: right; }
.woocommerce-table--order-details tfoot tr:first-child td,
.woocommerce-table--order-details tfoot tr:first-child th {
	border-top: 4px solid var(--colorC);
}
.woocommerce-table--order-details tfoot th { text-align: right; padding-right: 24px; }


.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button {
	display: inline-block;
	margin: 0;
	padding: 8px 16px;
	font: 700 16px var(--fontA);
	color: white;
	background: var(--colorA);
	border: 0;
	cursor: pointer;
}
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover { background: var(--colorC); }


.site-header-cart {
    position: relative;
    margin: 0;
    padding: 0;
	text-align: right;
}
header .product_list_widget,
.site-header-cart {
	padding: 0;
	list-style: none;
}
header .cart-contents .count { display: none; }
header .widget_shopping_cart {
	width: 300px !important;
	max-height: 80vh;
	overflow-y: auto;
	padding: 16px 8px 16px 16px;
	background: var(--colorD);
}
.widget_shopping_cart { z-index: 999999; }
.site-header-cart .widget_shopping_cart { left: unset; right: -1000px; }
.site-header-cart:hover .widget_shopping_cart,
.site-header-cart.focus .widget_shopping_cart { 
	left: unset !important;
    right: 0;
    top: 28px;
}


.site-header-cart .h-cart-link { height: 48px; }
.site-header-cart .cart-contents .amount {
    position: absolute;
    right: 0;
	bottom: -2px;
	opacity: 0.45;
}
header .icons-01 .h-cart-icon svg { float: right; }

.widget_shopping_cart_content li {
	position: relative;
	margin-bottom: 24px;
	padding-left: 20px;
	text-align: left;
}
.widget_shopping_cart_content li .remove {
	position: absolute;
	left: 0;
	top: 0;
}
.widget_shopping_cart_content .total .woocommerce-Price-amount {
	font: 300 18px var(--fontB);
    color: var(--colorA);
}
.widget_shopping_cart_content li .quantity {
	font: 300 16px var(--fontB);
    text-align: right;
    width: 100%;
    display: block;
	margin-top: 4px;
    padding-right: 68px;
    color: var(--colorA);
}
.widget_shopping_cart_content li a:not(.remove) {
	display: flex;
	flex-flow: row-reverse;
	padding-right: 68px;
	font: 700 14px var(--fontA);
    text-align: right;
	line-height: 1;
	color: black;
}
.widget_shopping_cart_content li img {
	position: absolute;
	right: 0;
	width: 48px;
	height: 48px;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.woocommerce-mini-cart__buttons a {
	display: table;
    margin: 0 auto 6px;
	display: inline-block;
	margin: 0 4px;
	padding: 6px 20px;
	background: var(--colorB);
	color: white;
	font: 400 16px var(--fontA);
	cursor: pointer;
}
.woocommerce-mini-cart__buttons a:hover { background: var(--colorA); }
.woocommerce-mini-cart__total { margin: 32px 0 16px; }












.search-result-list {
	padding: 0;
	list-style: none;
}
.search-result-list li { margin-bottom: 4px; }
.search-result-list li > a {
	display: flex;
    align-items: center;
    border: 2px solid black;
    padding-right: 16px;
}
.search-result-list li > a:hover { background: black; }
.search-result-list li > a:hover h3 { color: white; }
.search-result-list li .img-placeholder,
.search-result-list li img {
	flex: 0 0 auto;
	width: 100px;
	height: 100px;
	object-fit: cover;
	margin-right: 16px;
	background: #DDD;
}
.search-result-list li h3 { margin: 0 0 12px; }
.search-result-list li p { margin: 0; }


.A-404,
.A-SEARCH-RESULTS { padding: 32px 10%; }
.A-SEARCH-RESULTS ul {
	padding: 0;
	list-style: none;
}
.A-SEARCH-RESULTS .pagination { margin-top: 64px; }
.A-SEARCH-RESULTS .pagination > .screen-reader-text {
	display: none;
}
.A-SEARCH-RESULTS .nav-links {
	display: flex;
	align-items: center;
	place-content: center;
}
.A-SEARCH-RESULTS .nav-links span,
.A-SEARCH-RESULTS .nav-links a {
	margin: 0 4px;
	font-size: 18px;
	line-height: 1;
}
.A-SEARCH-RESULTS .page-numbers {
	margin: 4px;
	padding: 6px 12px;
	background: var(--colorA);
	color: white;
}
.A-SEARCH-RESULTS .prev,
.A-SEARCH-RESULTS .next {
	background: transparent;
	color: var(--colorA);
}
.A-SEARCH-RESULTS .page-numbers:hover {
	background: var(--colorB);
	color: white;
}



#act_map {
	display: none;
	width: 60%;
	height: 300px;
}
.gm-style-mtc { display: none; }




.A-video-frame {
	position: relative;
	background: url(img/laptop.png) no-repeat;
	background-size: 100%;
    width: 80%;
	padding: 2.5% 0.4% 10% 0.3%;
	margin: 32px 0 64px;
    margin-left: 10%;
}
.A-video-frame .wp-block-embed__wrapper {
	position: relative;
	width: calc(100% / 1.3);
	padding-top: calc(56.25% / 1.3);
	margin: 0 auto;
}
.A-video-frame .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.A-shadow-R { position: relative; }
.A-shadow-R:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 128px;
	background: url(img/shadow-R.jpg) no-repeat;
	background-size: contain;
}


.Aitem .more,
.A-more {
	display: inline-block;
	position: relative;
	margin-top: 24px;
	padding: 7px 16px 5px;
	font: 700 14px var(--fontA);
	line-height: 1;
	background: var(--colorA);
	color: white;
	border-radius: 40px;
	cursor: pointer;
}
.A-more a { color: white; }
.Aitem .more:hover,
.A-more:hover { background: black; }


.wp-block-button a {
	font-family: var(--fontB);
	font-size: 16px;
	letter-spacing: 4px;
	color: black;
	background: transparent;
	border: 2px solid black;
	border-radius: 0;
	cursor: pointer;
}
.wp-block-button a:hover {
	color: white;
	background: black;
}


/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ MAIN */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


h2 {
	font-size: 36px;
	font-family: var(--fontB);
	color: var(--colorA);
}


.home-A {
	padding: 64px 25vw;
	text-align: center;
}
.home-A .wp-block-buttons { margin-top: 48px; }


.home-banner {
	display: flex;
	flex-flow: column;
	align-items: center;
	place-content: center;
	width: 100%;
	height: 450px;
}
.home-banner .Apic {
	position: absolute;
	width: 100%;
	height: 100%;
}
.home-banner .Apic:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

.home-banner .Apic img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-banner h2 {
	position: relative;
	margin-top: 0;
	padding: 0 5%;
	text-align: center;
	color: white;
	font-size: 48px;
}

.home-banner .wp-block-buttons { position: relative; }
.home-banner .wp-block-button a {
	color: white;
	border-color: white;
}
.home-banner .wp-block-button a:hover {
	color: black;
	background: white;
}

.home-B {
	padding: 64px 30vw;
	text-align: center;
	background: var(--colorD);
	border-bottom: 12px solid var(--colorC);
}
.home-B2 {
	border-bottom: 0;
	border-top: 12px solid var(--colorC);
}
.home-B h2 { margin-top: 0; }
.home-B p { font-size: 18px; }


.brands-list {
	display: flex;
	flex-flow: row wrap;
	place-content: center;
	padding: 64px 15vw 96px;
}
.brands-list h2 {
	width: 100%;
	text-align: center;
}
.brand-item {
	display: flex;
	flex-flow: column;
	align-items: center;
	place-content: center;
	width: 23%;
	margin: 12px 1%;
	background: white;
	filter: brightness(0.93);
	cursor: pointer;
}
.brand-item:hover {
	filter: brightness(1);
}




.home-C {
	padding: 64px 20vw;
	text-align: center;
}
.home-C svg {
	width: auto;
	height: 120px !important;
}
.home-C h2 {
	font-size: 24px;
}
.home-C .Acolumn { flex: 0 0 auto; width: 50%; padding: 0 7%; }


.brands-scroll {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	background: #f9f9f9;
	border: 1px solid #ccc;
}

.scrolling-content {
	display: inline-block;
	padding: 16px 0;
	padding-left: 100%;
	animation: scroll 400s linear infinite;
}

.scrolling-content span {
	margin-right: 96px;
	font-size: 16px;
	font-family: var(--fontB);
	letter-spacing: 4px;
}



@keyframes scroll {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-100%);
	}
}


















.A-author-info {  }
.A-author-info .author_link { display: block; margin-top: 16px; }
#author-description > p { margin: 0; }
#author-description h2 { margin: 0; }
#author-description .bio {}
.A-archive .A-page-title.author { margin-bottom: 48px; }


/* 	--------------
	ARCHIVE
 	-------------- */
.A-archive { position: relative; padding: 48px 10vw;  }
.A-archive .A-page-title { margin: 0; }
.A-archive .A-subcategories {
	margin-top: 16px;
}
.A-archive .A-subcategories > a {
	margin-right: 16px;
}
.A-archive .A-list {
	display: flex;
	flex-flow: row wrap;
	margin-top: 48px;
}
.A-archive .A-list > a {
	width: 33.333%;
	margin-bottom: 48px;
	padding-right: 32px;
}
.A-pagination { margin-top: 64px; }
.A-pagination ul {
	display: flex;
    place-content: center;
	padding: 0;
	list-style: none;
}
.A-pagination ul li { margin: 0 8px; }
.A-pagination ul li a { color: black; }

.A-archive .A-list > a img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}






/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ FOOTER */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
footer { width: 100%; }
.A-footer {
	display: flex;
    padding: 64px 5% 48px;
    background: #f8f8f8;
}
.A-footer-col {
    width: 25%;
    padding: 16px;
    float: left;
}
.A-footer-col.col2 { width: 50%; text-align: center; }
.A-footer-col.col3 { text-align: right; }
.A-footer-col.col3 a { display: block; }
.A-footer-col .A-logo {
	width: 100%;
	text-align: center;
	mix-blend-mode: multiply;
}
.A-footer-col .A-logo img {
    width: 100%;
	max-height: 140px;
    height: auto;
	object-fit: contain;
    object-position: left;
}
.A-footer-col h2 {
	margin: 0 0 16px;
	font: 900 24px var(--fontB);
	color: var(--colorA);
}
.A-footer-col h3 {
	margin: 0;
	font: 700 18px var(--fontA);
	color: var(--colorB);
}
.A-footer-col label,
.A-footer-col p,
.A-footer-col li,
.A-footer-col a {
	margin: 2px 0;
	font: 400 16px var(--fontA);
	color: black;
}
.A-footer-col label { display: inline-block; margin-right: 8px; }
.A-footer-col a:hover { color: var(--colorB);  font-weight: 700; }
.A-footer-col ul { padding: 0; margin: 0; list-style: none; }
.A-contact-row {
	display: flex;
	margin: 16px 0;
}
.A-contact-row svg {
	height: 24px;
	margin-right: 8px;
	fill: white;
	stroke: white;
}
.A-footer-col a { 
	color: var(--colorA);
	font-weight: 700;
}




footer a { text-decoration: none; }
header .A-social {
	display: flex;
    position: absolute;
    left: 48px;
    top: 24px;
    padding: 0;
	text-align: center;
}
.A-social a {
	margin: 0 16px 0 0;
	cursor: pointer;
}
.A-social svg { 
	height: 24px;
	fill: var(--colorA);
	transition: 0.3s all;
}
.A-social a:hover svg { fill: var(--colorB); transform: scale(1.2); }

footer .A-social { margin: 32px 0 0; }
footer .A-social a { margin: 0 8px; }


.A-footer-created {
	display: none;
	position: relative;
    width: 100%;
    text-align: center;
    padding: 8px;
    color: var(--colorB);
    background: var(--colorD);
	z-index: 9;
}
.A-footer-created a {
	font-size: 14px;
    font-weight: 700;
    color: var(--colorB);
}
.A-footer-created a:hover { color: var(--colorC); }
.A-footer-created img {
    height: 40px;
    margin: 16px 0 8px 0;
}






/* PARALLAX */
.actus-parallax { overflow: hidden; }

.velaki {
    display: none;
    background: var(--colorA);
    position: fixed;
    bottom: 16px;
	left: calc(100% - 64px);
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transform: rotate(-90deg) scale(1);
    cursor: pointer;
    z-index: 9999;
    border-radius: 7px;
    box-shadow: -4px 4px 8px hsla(0, 0%, 0%, 0.3);
    transition: 0.3s;
}




form .form-field { margin-bottom: 16px; }
form .form-submit { position: relative; text-align: center; }
form label { padding-left: 12px; color: var(--colorA); }
form input,
form textarea {
	width: 100%;
	padding: 8px 16px;
	font: 400 22px var(--fontA);
	background: var(--colorD);
	border: 0;
	outline: 0;
}
form textarea { font-size: 18px; }
form .wpcf7-acceptance:hover label { color: var(--colorB); }
form .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
form .wpcf7-acceptance label { display: flex; }
form input[type="checkbox"] {
	position: relative;
	flex: 0 0 auto;
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
	padding: 0;
	margin-right: 8px;
	background: transparent;
    border: 4px solid var(--colorB);
	border-radius: 0;
	cursor: pointer;
}
form input[type="checkbox"]::before {
    content: "";
	position: absolute;
    width: 12px;
    height: 12px;
    margin: 2px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 20px 20px var(--colorB);
}
form input[type="checkbox"]:checked::before { transform: scale(1); }
form input[type="submit"] { text-align: center; }
form .form-submit:after {
	content: " ";
	position: absolute;
	top: 46px;
	left: 20%;
	width: 80%;
	height: 48px;
	background: url(img/shadow-2.jpg) no-repeat;
	background-size: 100% 100%;
}
form input[type="submit"] {
	position: relative;
	background: var(--colorA);
	color: white;
	cursor: pointer;
}
form input[type="submit"]:hover { background: var(--colorB); }
form input[type="submit"][disabled] {
	background: var(--colorC);
	cursor: not-allowed;
}


.wc-block-checkout form input[type="checkbox"]::before { box-shadow: unset; }


blockquote,
blockquote > * {
    margin: 0;
    font: 400 18px var(--fontB);
    color: var(--colorA);
}
blockquote {
	position: relative;
    padding: 16px;
	margin: 12px 0;
	background: var(--colorD);
	border-left: 16px solid var(--colorC);
}
blockquote ul { padding-left: 16px; margin: 6px 0; }

.clearfix {
	display: table;
	clear: both;
}


.A-page-content { padding: 64px 15% 96px; }
.A-page-content h1 {
	margin: 0 0 48px;
	padding-bottom: 8px;
	font: 900 38px var(--fontB);
	border-bottom: 2px solid var(--colorC);
}
.A-page-content h2 {
	margin: 32px 0 16px;
    font: 900 28px var(--fontB);
}
.A-page-content h3 {
	margin: 28px 0 12px;
	color: var(--colorC);
}
.A-page-content h4 {
	margin: 32px 0 12px;
	font: 300 18px var(--fontB);
	color: var(--colorC);
}


.A-contact { align-items: center; }
.A-contact .A-prompt {
	margin-bottom: 32px;
	padding: 12px 24px;
	background: var(--colorB);
	color: white;
	text-align: center;
}
.A-contact img {
	width: auto;
	height: 240px;
	object-fit: contain;
}



.page-template-page-register #customer_login > .u-column1.col-1 { display: none; }


.woocommerce-EditAccountForm fieldset { margin: 12px 0; }



.A-minimum {
    width: 100%;
    margin: 0 auto;
    padding: 4px 24px;
	font: 700 16px var(--fontA);
    text-align: center;
    white-space: nowrap;
    background: var(--colorD);
    color: #959595;
}



/* MARK: ARCHIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 
*/
.woocommerce.archive .site-content {
	padding: 64px 8%;
	background: var(--colorD);
}
.A-products-archive {
	position: relative;
	padding: 96px 5% 64px;
	background: white;
}
.A-products-archive .A-icon.brand {
	position: absolute;
	top: 0;
}
.A-products-archive .A-brand-name {
	position: absolute;
	top: 48px;
	right: 64px;
	font: 700 32px var(--fontB);
	color: var(--colorA);
}
.A-products-archive .A-icon.brand img {
	width: 154px;
	height: 154px;
	width: 250px;
	height: 130px;
    margin: 24px 0 0;
	object-fit: cover;
}

.A-products-archive-main {
	display: flex;
}
.A-products-archive .A-list {
	width: 100%;
}
.A-products-archive .A-brands-list {
	flex: 0 0 auto;
	width: 250px;
	margin-right: 96px;
}
.A-products-archive .A-brands-list h2 {
	height: 40px;
	min-width: 40px;
	margin: 0;
	font: 900 32px var(--fontB);
	color: var(--colorA);
}
.A-products-archive .A-brands-list ul {
	margin: 0;
	padding: 24px 0 0;
	list-style: none;
    border-top: 2px solid var(--colorC);
}
.A-products-archive .A-brands-list li {
	position: relative;
	margin: 8px 0;
	padding: 4px 8px;
	font: 700 18px var(--fontB);
}
.A-products-archive .A-brands-list li:hover {
	background: #dfdfdf;
}
.A-products-archive .A-brands-list li:before {
	content: "";
    display: inline-block;
    position: relative;
    top: 0px;
    width: 14px;
    height: 14px;
    margin-right: 12px;
	background: #dfdfdf;
}
.A-products-archive .A-brands-list li.active { background: #dfdfdf; }
.A-products-archive .A-brands-list li.active:before { background: var(--colorC); }

.woocommerce-result-count {
    margin: 10px 0 32px;
    padding-bottom: 6px;
    font: 400 18px var(--fontA);
    text-align: right;
    border-bottom: 2px solid var(--colorC);
	color: #999;
}


.woocommerce div.product form.cart table.variations tbody,
.woocommerce div.product form.cart table.variations tr {
    display: flex;
    align-items: center;
}
table.variations label { padding: 0; }
table.variations th { margin-right: 8px; }
.woocommerce div.product form.cart table.variations button {
	padding: 7px 8px;
    margin-left: 2px;
    font-size: 14px;
    background: var(--colorC);
    color: white;
    border: 1px solid var(--colorC);
	outline: 0;
    cursor: pointer;
}
.woocommerce div.product form.cart table.variations button:hover {
	background: var(--colorA);
	border: 1px solid var(--colorA);
}



.A-products-archive .A-list .products {
    display: flex;
    flex-flow: row wrap;
}
.A-products-archive .A-list .products li.product {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.woocommerce-loop-product__title {
	margin: 12px 0 8px;
	font: 700 18px var(--fontB);
	line-height: 1.2;
	color: var(--colorA);
}
.woocommerce ul.products li.product { text-align: left; }
.woocommerce ul.products li.product .price {
	display: flex;
    align-items: flex-end;
	flex: 1;
	margin: 0 0 4px;
	font: 400 20px var(--fontB);
	color: var(--colorC);
}
.button.product_type_simple,
.add_to_cart_button {
	flex: 0 0 auto;
	display: inline-block !important;
	margin-top: 8px;
	padding: 6px 16px;
	background: white;
	color: black;
	cursor: pointer;
	text-align: center;
	border: 2px solid black;
}
.button.add_to_cart_button {
	background: black;
	color: white;
	border: 0;
}
.button.product_type_simple:hover {
	border-color: var(--colorA);
	background: var(--colorA);
	color: white;
}
.add_to_cart_button:hover { background: var(--colorA); }
.button.product_type_simple.connect-to-see,
.add_to_cart_button.connect-to-see {
	padding: 6px 8px;
    font-size: 13px;
}

.related.products { margin-top: 64px; }


ul.products .woocommerce-LoopProduct-link { 
    display: flex;
    flex-flow: column;
	flex: 1;
}
ul.products li.product img {
    display: block;
    object-fit: contain;
    object-position: top;
}




/* MARK: PRODUCT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 
*/
.woocommerce div.product {
	padding: 64px 8%;
	background: var(--colorD);
}
.woocommerce div.product .ACT-single-product {
	position: relative;
	padding: 0 0 96px;
	background: white;
	
}
.woocommerce div.product .onsale {
	position: absolute;
	right: 32px;
	top: -16px;
	width: 120px;
	z-index: 9;
}
.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
	object-fit: contain;
}
.woocommerce div.product div.images > .flex-viewport { position: relative; }
.woocommerce div.product div.images .flex-viewport img {
	width: 30vw;
    height: 30vw;
	object-fit: cover;
}
.woocommerce div.product div.images:after {
	content: ' ';
	position: absolute;
	right: 0;
	top: 0;
    width: 38px;
    height: 100%;
    background: white;
    border-left: 6px solid var(--colorC);
}
.woocommerce div.product .product_title {
    margin: 0 0 24px;
	font: 900 34px var(--fontB);
	color: var(--colorA);
	word-break: break-word;
}
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
	height: 8vw;
}
.wdr_product_strikeout ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	font: 900 40px var(--fontA);
    text-decoration: none;
    color: var(--colorA);
}
.woocommerce div.product form.cart, 
.woocommerce-variation-add-to-cart {
	display: flex;
	flex-flow: row wrap;
	width: 320px;
}
.woocommerce div.product form.cart div.quantity { margin-right: 4px; }
.woocommerce .quantity .qty {
	position: relative;
    font-size: 24px;
    width: 80px;
    padding: 6px;
    border: 2px solid black;
	border-radius: 0;
    background: transparent;
    color: black;
    text-align: right;
}
.woocommerce div.product form.cart .button {
	margin-top: 0;
	padding: 8px 32px;
	font: 400 17px var(--fontA);
	background: black;
    color: white;
    border: 0;
	cursor: pointer;
}
.woocommerce div.product form.cart .button:hover { background: var(--colorA); }
.ACT-single-product .product_meta { margin-top: 8px; }
.ACT-single-product .product_meta > span { font: 400 14px var(--fontA); }
.ACT-single-product .product_meta > span > span { 
	font: 700 14px var(--fontB);
	color: var(--colorB); 
}
.ACT-product-description { 
	padding: 24px 0 0;
} 
.ACT-product-description a { font-weight: 700; color: var(--colorB); }
.ACT-product-description h2 { margin: 32px 0 16px; font: 900 28px var(--fontB); }
.ACT-product-description h2 strong { font: 700 28px var(--fontB); }
.ACT-product-description table {   
	background: var(--colorD);
    padding: 16px;
    box-shadow: 3px 3px 12px hsla(0, 0%, 0%, 0.3);
}
.ACT-product-description p { margin: 12px 0; }
.ACT-product-description p span { display: inline-block; }
.ACT-product-description h3 {
	margin: 28px 0 12px;
	font: 700 22px var(--fontB);
	color: var(--colorC);
}
.ACT-product-description h4 {
	margin: 32px 0 12px;
	font: 300 18px var(--fontB);
	color: var(--colorC);
}
.ACT-product-description li { margin: 4px 0; }

.ACT-product-description.ACT-product-attributes a,
.ACT-product-description.ACT-product-attributes p,
.ACT-product-description.ACT-product-attributes li {
	font-size: 14px;
}


.product-brand-logo {
}
.product-brand-logo img {
    width: 120px;
    height: 120px;
	object-fit: contain;
	object-position: left;
    filter: brightness(0.93);
}




.ACT-product-description table tr:first-child { background: var(--colorA); }
.ACT-product-description table tr:first-child th,
.ACT-product-description table tr:first-child td {
	padding: 4px 8px;
	color: white;
	font-weight: 400;
}
.ACT-product-description table tr:first-child td strong,
.ACT-product-description table tr:first-child td b { color: white; }

.ACT-product-description table tr td {
	padding: 4px 8px;
}
.ACT-product-description table tr:nth-child(even) {
	background: hsla(0, 0%, 100%, 0.5);
}
.ACT-prosfores { padding: 64px 10%; }
.ACT-blog { padding: 96px 10%; }
.ACT-blog img { object-fit: cover; }


.wdr_product_strikeout del,
.woocommerce div.product p.price del, 
.woocommerce div.product span.price del {
	font-size: 28px;
    color: var(--colorB);
    text-shadow: var(--txB);
    opacity: 0.5;
}

.woocommerce #content div.product div.images, 
.woocommerce div.product div.images, 
.woocommerce-page #content div.product div.images, 
.woocommerce-page div.product div.images {
	width: 100%;
	float: none;
}
.ACT-product-top { padding: 64px 64px 16px; }
.ACT-product-left {
	position: relative;
	width: 48%;
	float: left;
}
.ACT-idaniko { margin-bottom: 32px; }
.ACT-idaniko ul { padding-left: 90px; margin: -8px 0 0; }
.ACT-idaniko ul li { margin: 0px; }
.ACT-idaniko img { width: 260px; height: auto; }
.ACT-product-extra { padding: 0 64px; text-align: center; }
.ACT-product-extra .seperator { margin: 64px 0; }
.ACT-product-reviews { padding: 0 20%; text-align: left; }
h2.section-title,
.upsells > h2,
.ACT-product-extra section > h2 {
	margin-bottom: 48px;
	font: 400 20px var(--fontA);
	letter-spacing: 8px;
	text-align: center;
}
.upsells > h2 {
    background: transparent;
    font: 400 28px var(--fontA);
    color: var(--colorA);
    text-shadow: var(--txA);
}

.ACT-product-attributes {
	position: relative;
	margin: 24px 0 0 0;
	padding: 64px 0 0 0;
}
.ACT-product-attributes:before {
	content: " ";
	position: absolute;
	left: -64px;
	top: 16px;
	width: 204px;
	height: 6px;
	background: var(--colorC);
}
.ACT-product-attributes-mobile { display: none; }
.ACT-idaniko-mobile { display: none; }

.ACT-product-content {
	position: relative;
    margin-right: 40px;
	padding: 0 10vw 0 0;
    border-right: 2px solid var(--colorC);
}

.woocommerce table.shop_attributes th, 
.woocommerce table.shop_attributes td { border: 0; }
.woocommerce table.shop_attributes tr:nth-child(even) td, 
.woocommerce table.shop_attributes tr:nth-child(even) th {
	background: rgba(0,0,0,.05); 
}


.woocommerce-page div.product div.summary { 
	display: inline-block;
    float: none !important;
    width: 48%;
}
.woocommerce div.product form.cart table tr { display: block; }
.woocommerce div.product form.cart table td {
    display: block;
	margin: 0;
    padding: 0 !important;
    line-height: 1.8 !important;
}
.woocommerce table.shop_attributes tbody { box-shadow: 4px 6px 10px hsla(0, 0%, 0%, 0.5); }
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td { 
	background: hsla(0, 0%, 100%, 1);
	font-size: 16px;
}
.woocommerce table.shop_attributes td p { font-size: 16px; }

.woocommerce div.product form.cart table td,
.woocommerce div.product form.cart .variations td.value select,
.woocommerce div.product form.cart .variations td.label {
	padding: 4px;
	font-size: 18px;
}
.woocommerce div.product form.cart .variations select { 
	min-width: 50% !important; 
}
.woocommerce div.product form.cart .variations { margin-bottom: 8px; }
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    margin: 0 0 32px;
    font: 300 40px var(--fontB);
    color: var(--colorA);
}
.woocommerce div.product form.cart,
.woocommerce-variation-add-to-cart { width: 333px; }

.product_meta > span { display: block; color: hsla(0, 0%, 0%, 0.3); }
.product_meta > span > span { color: black; }
.product_meta .posted_in,
.product_meta .tagged_as { display: none; }
.woocommerce .star-rating span::before {
	font-family: star;
    color: var(--colorB);
}
.woocommerce p.stars a::before { color: var(--colorB); }
.woocommerce p.stars a { font-size: 24px; }
.woocommerce #review_form #respond p.stars { 
	display: inline-block;
	margin: 0 0 0 12px;
}
.V-product-reviews #comments { margin-top: 16px; }
.woocommerce #review_form #respond .comment-form-rating { margin-top: 48px; }
.woocommerce #review_form #respond p.comment-form-comment { margin-top: 16px; }
.V-product-reviews .comment-form-comment label,
.V-product-reviews .comment-form-rating label {
    position: relative;
    top: -4px;
    font-size: 20px;
}
.woocommerce-Reviews-title { display: none; }
.woocommerce div.product .stock { display: none; }



.woocommerce .woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
    background-color: #0f837e;
    background-color: var(--colorC);
}

.woocommerce-no-products-found { margin-top: 38px; }
.woocommerce .woocommerce-info {
    color: white;
    padding: 8px 16px;
    background: var(--colorC);
    text-align: right;
}

.woocommerce-notices-wrapper {
    position: fixed;
    right: 8px;
    bottom: 8px;
    max-width: 80%;
    box-shadow: 6px 6px 20px black;
    z-index: 9999999999;
}
.woocommerce-message,
.woocommerce-error {
	margin: 0;
	border-top-width: 16px;
	padding: 6px 16px;
	list-style: none;
	color: white;
}

.woocommerce table.shop_attributes td { padding: 0 8px; }
.woocommerce-message { border-top-color: var(--colorB); }
.woocommerce-message::before { color: var(--colorB); }
.woocommerce-message a.button {
	margin-left: 16px;
	background: black;
	color: white;
    padding: 2px 8px;
    margin-right: -8px;
}
.woocommerce-message a.button:hover { background: var(--colorA); color: white; }

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	background: var(--colorD);
    box-shadow: 3px 5px 10px hsla(0, 0%, 0%, 0.5);
}

.upsells.products { margin-top: 96px; overflow: hidden; max-width: 100%; } 

.AB-related {
    position: relative;
    padding-left: 21%;
	margin-bottom: 80px;
    background: var(--colorD);
}
.AB-related .related.products > h2 {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 21%;
    height: 100%;
	padding: 32px 64px 32px 32px;
    margin: 0;
	color: white;
    background: var(--colorA);
	text-align: center;
    z-index: 9;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.woocommerce .products ul, 
.woocommerce ul.products { padding: 0; }
.woocommerce .AB-related .products ul, 
.woocommerce .AB-related ul.products { padding: 0 32px 0 0; }

.woocommerce .woocommerce-ordering select > option {
    background: white;
    color: var(--colorA);
}
.woocommerce .woocommerce-ordering select {
    background: var(--colorA);
    color: white;
    padding: 8px;
    margin-top: -8px;
    border: 0;
}


.woocommerce form.login { clear: both; margin-bottom: 32px !important; }


.woocommerce-pagination ul {
	display: flex;
	place-content: center;
	list-style: none;
	margin-top: 48px;
	padding: 0;
}
.woocommerce-pagination ul li span,
.woocommerce-pagination ul li a {
    display: inline-block;
	min-width: 35px;
	margin: 0 1px;
	padding: 4px 8px;
    text-align: center;
	border: 2px solid hsl(0, 0%, 70%);
	cursor: pointer;
}
.woocommerce-pagination ul li .current,
.woocommerce-pagination ul li:hover span,
.woocommerce-pagination ul li:hover a {
	background: black;
	color: white;
	border: 2px solid hsl(0, 0%, 0%);
}
.woocommerce-pagination ul li a.prev,
.woocommerce-pagination ul li a.next {
	border: 0;
    height: 34px;
    font-weight: 700;
    font-size: 24px;
    line-height: 0.8;
}


/*---------------------------------
# ΦΙΛΤΡΑ
---------------------------------*/
.woof_auto_show { margin-bottom: 24px; }
.woocommerce-ordering { display: none; }
.woof_show_auto_form, 
.woof_hide_auto_form {
    width: auto;
	padding: 6px 16px 8px;
    margin-bottom: 16px !important;
	color: white;
	background: var(--colorA);
	font: 700 16px var(--fontA);
}
.woof_show_auto_form:hover, 
.woof_hide_auto_form:hover { background: var(--colorC); }
.woof_sid_auto_shortcode {
	margin-bottom: 32px;
	border: 0;
	background: hsl(0, 0%, 90%);
	box-shadow: 4px 6px 10px hsla(0, 0%, 0%, 0.6);
}
.chosen-container-multi .chosen-choices {
    padding: 4px 4px 2px;
    font-size: 16px;
	border: 0;
}
.chosen-container-multi .chosen-choices li.search-field { font-size: 16px; }

.chosen-container-single .chosen-single {
	margin-bottom: 0;
    background: var(--colorA);
    color: white;
    border: 0;
}
.woof_sid_auto_shortcode .woof_container { 
	width: 25%;
    height: 30px;
	min-width: unset;
	margin-bottom: 0;
    clear: none;
}
.chosen-container { width: 100%; }
.woof_submit_search_form_container { margin: 0; }
.woof_submit_search_form_container button { padding: 0; background: transparent; }

/*--------------------------------------------------------------
# CART
--------------------------------------------------------------*/
.woo-back-button {
	position: absolute;
    bottom: -40px;
    left: 64px;
	padding: 8px 16px 8px 32px;
	color: white;
	background: var(--colorB);
	z-index: 9;
}
.woo-back-button:before {
	content: '<';
	position: absolute;
    left: 8px;
    top: 6px;
    font: 300 24px var(--fontA);
	color: white;
	opacity: 0.5;
}
.woo-back-button:hover { background: var(--colorA); }
.woo-back-button:hover:before { opacity: 1; }

.ACT-section-title.reverse h2 { padding-bottom: 8px; }
.ACT-section-title .total {
    width: 100%;
    color: white;
    font: 300 28px var(--fontA);
    margin-bottom: 0;
    text-align: center;
    color: var(--colorB);
}

.ACT-cart-page {
	padding: 64px 5%;
}
.woocommerce-checkout .site-main:after {
  content: "";
  display: table;
  clear: both;
}

.woocommerce-cart-form {
    width: calc(100% - 360px);
    padding-right: 16px;
    float: left;
}
.woocommerce-cart .cart-collaterals { width: 360px; float: left; }
.ACT-cart-page .cart-collaterals .cart_totals, 
.ACT-cart-page .cart-collaterals .shipping_calculator {
    width: 100%;
    padding-left: 32px;
    float: none;
}
.ACT-cart-page .cart-collaterals .cart_totals > h2 { display: none; }
.woocommerce a.button.alt { background: var(--colorB); }
.woocommerce a.button.alt:hover { background: var(--colorA); }

.ACT-cart-page .woocommerce .quantity .qty { 
    font-size: 18px;
    background: transparent;
    border: 0;
}



.woocommerce-cart .woocommerce:after {
    content: " ";
    display: table;
    clear: both;
}

.woocommerce-cart table.cart tbody {
    padding-left: 32px;
}
.woocommerce-cart table.cart th {
    position: relative;
    padding: 9px 12px 8px;
    color: rgba(255, 255, 255, 0.5);
    background: var(--colorA);
}
.woocommerce-cart .product-remove { padding: 0; }
.woocommerce-cart a.remove {
    width: 24px;
    text-align: center;
}
.woocommerce-cart table.cart .product-thumbnail {
    padding: 0;
    text-align: center;
}
.woocommerce-cart table.cart .product-thumbnail img {
    width: 100%;
    max-width: 100px;
	padding-top: 4px;
}
.woocommerce-cart.woocommerce-page table.cart td.actions input.input-text {
    display: inline-block;
    width: auto !important;
    margin: 0;
    padding: .6180469716em;
    background-color: #f2f2f2;
    color: #43454b;
    outline: 0;
    border: 0;
    font-size: 100%;
    font-weight: 400;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.125);
}


.woocommerce-cart .cart-collaterals .cart_totals .cart-subtotal { display: none; }
.woocommerce-cart .cart-collaterals .cart_totals table { border: 0; }
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td { display: block; }
.woocommerce-cart .cart-collaterals .cart_totals table th {
	width: 100%;
	padding: 8px 16px;
	margin: 0;
	color: white;
	background: var(--colorA);
	text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals table td {
	position: relative;
	margin-bottom: 8px;
	background: var(--colorD);
    text-align: right;
}


.order-total strong .woocommerce-Price-amount {
    display: block;
    font-size: 30px;
}
.order-total small .woocommerce-Price-amount { color: black; font-weight: 700; }
.woocommerce ul#shipping_method li label { color: hsla(0, 0%, 0%, 0.35); }
.woocommerce ul#shipping_method li label span { color: black; }

.woocommerce ul#shipping_method li input[type="radio"] {
    width: 20px;
    height: 20px;
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}
.woocommerce ul#shipping_method li input[type="radio"]:checked {
    color: #99a1a7;
    background-color: var(--colorB);
    border: 1px solid #adb8c0;
}



/*--------------------------------------------------------------
# CHECKOUT
--------------------------------------------------------------*/

.woocommerce-checkout .woocommerce .col2-set,
.woocommerce-checkout .woocommerce-page .col2-set {
    width: 60%;
    float: left;
}
.woocommerce-checkout .woocommerce .col2-set .col-1, 
.woocommerce-checkout .woocommerce-page .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-2, 
.woocommerce-checkout .woocommerce-page .col2-set .col-2 {
    width: 100%;
    float: none;
}
.woocommerce-checkout .woocommerce .col2-set { 
	width: calc(100% - 500px); 
    padding: 0 5%;
}
#order_review_heading {
    width: 500px;
    padding: 8px 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    background: var(--colorA);
    font: 300 22px var(--fontA);
    float: left;
}
#order_review {
    position: relative;
    width: 500px;
    margin-bottom: 32px;
    background: white;
    box-shadow: 4px 4px 12px black;
    float: left;
}


.woocommerce table.shop_table { border: 0; }
.woocommerce table.shop_table thead > tr { margin-bottom: 8px; }

.woocommerce-checkout #payment { border-radius: 0; }
.payment_box.payment_method_bacs p { font-size: 14px; }
.woocommerce form .form-row { margin: 0 0 2px; }

.woocommerce form .form-row.form-row-wide { display: flex; }
.woocommerce form .form-row.form-row-wide .woocommerce-input-wrapper { flex: 1 1 auto; }
.woocommerce form .form-row.form-row-wide label {
	flex: 0 0 auto;
	width: 120px;
	margin: 0;
    line-height: 1.25;
    text-align: right;
}
.woocommerce form #reg_password { width: auto; }
.woocommerce .woocommerce-password-strength {
    display: inline-block;
	padding-left: 8px;
	text-align: left;
}
.woocommerce .woocommerce-password-hint {
    display: inline-block;
	padding-left: 8px;
	text-align: left;
}

.woocommerce form .form-row.form-row-wide label.woocommerce-form__label-for-checkbox { width: 100%; }
.woocommerce form .form-row.form-row-wide.mc4wp-checkbox label {
	width: 100%;
	text-align: left;
}
.woocommerce form .form-row.form-row-wide.mc4wp-checkbox label span {
    position: relative;
    top: -8px;
}

.woocommerce form .form-row.form-row-wide label span { display: inline-block; }
.woocommerce form #shipping_country_field { display: none; }
.woocommerce form #billing_country_field { display: none; }
.woocommerce form #shipping_state_field { 
	 
}
.woocommerce form #billing_state_field { 
	
}
.woocommerce form .form-row.woocommerce-validated select { height: 33px; }
.woocommerce form #billing_timologio_field select { width: 120px; }
 
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce-checkout form.checkout select,
.woocommerce-checkout form.checkout input { 
    font: 700 18px var(--fontA);
    padding: 6px 10px;
    background-color: #f2f2f2;
    color: black; 
    outline: 0;
    border: 0;
    box-sizing: border-box;
    font-weight: 400;
}
.woocommerce-checkout form.checkout input[type="radio"],
.woocommerce-checkout form.checkout input[type="checkbox"] {
    width: 20px;
    height: 20px;
    -webkit-appearance: button-bevel;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
}


.woocommerce-checkout form.checkout input[type="radio"]:checked,
.woocommerce-checkout form.checkout input[type="checkbox"]:checked {
    background-color: var(--colorB);
}
.woocommerce-checkout form.checkout input[type="radio"]:checked:before,
.woocommerce-checkout form.checkout input[type="checkbox"]:checked:before {
    content: "\f147";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin: -3px 0 0 -4px;
    vertical-align: middle;
    font: normal 24px/1 dashicons;
    color: white;
}

.woocommerce form .form-row label[for="account_password"] {
    color: white !important;
    font-size: 16px;
}

.woocommerce ul#shipping_method li label { 
	font-size: 16px;
	line-height: 1.2;
}
.woocommerce table.shop_table td { border: 0; }
.woocommerce table.shop_table tfoot .cart-subtotal td,
.woocommerce table.shop_table tfoot .cart-subtotal th { border: 0; }

.woocommerce #payment #place_order, 
.woocommerce-page #payment #place_order {
    width: 100%;
    background: var(--colorB);
    font-size: 18px;
}
.woocommerce #payment #place_order:hover, 
.woocommerce-page #payment #place_order:hover { 
    background: var(--colorA);
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination { display: none; }


#customer_details { padding: 0 3% 0 0; }
#customer_details .create-account,
#status_field,
#customer_details h3 {
	width: 100%;
    padding: 8px 16px;
    margin: 0;
    font: 300 22px var(--fontA);
    color: rgba(255, 255, 255, 0.6);
    background: var(--colorA);
}
.woocommerce-additional-fields .form-row { display: none; }
#status_field {
	display: block;
	padding: 8px 16px;
}
#order_comments_field { display: block; }

#customer_details .create-account { margin-bottom: 16px; }
#customer_details .create-account span { 
	color: white; 
	font: 700 22px var(--fontA); 
}
.woocommerce form #status_field label.checkbox {
    display: block;
    background: transparent;
    color: white;
    font: 700 20px var(--fontA);
}
.woocommerce form #status_field label.checkbox span { display: none; } 


.woocommerce-additional-fields__field-wrapper,
.woocommerce-shipping-fields .shipping_address,
.woocommerce-billing-fields__field-wrapper {
    position: relative;
	padding: 32px 64px;
    margin-left: 0;
    margin-bottom: 32px;
    background: white;
    box-shadow: 4px 4px 12px black;
}

.woocommerce form:not(.login) .form-row label {
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.25);
    padding: 14px 4px 0;
    font-size: 12px;
    text-shadow: 0 0 0;
}
.woocommerce form .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
}
.woocommerce form.register button[type="submit"],
.woocommerce form.login button[type="submit"] { margin-top: 20px; }
.woocommerce form .button {
	padding: 8px 16px;
	font-size: 18px;
	border: 0;
	cursor: pointer;
	background: black;
	color: white;
	cursor: pointer;
}
.woocommerce form .button:hover {
	background: var(--colorA);
}
.woocommerce form.login .form-row {
	flex-flow: column;
	margin-bottom: 8px;
}
.woocommerce form.login .form-row .password-input { width: 100%; }
.woocommerce form.login .form-row label {
	width: 100%;
	height: auto;
    color: rgba(0, 0, 0, 0.5);
    padding: 2px 4px;
    margin: 0;
    font-size: 12px;
	text-align: left;
}

.woocommerce form.register > p:nth-child(2) { display: none; }
.woocommerce form.register .woocommerce-privacy-policy-text {
	font-size: 14px;
}
.woocommerce form.register {
	padding: 0 20%;
}
.woocommerce form .form-row .required { color: darkorange; }

.woocommerce-checkout form.checkout .woocommerce-form__label-for-checkbox {
    position: relative;
    top: -3px;
	background: transparent;
}
#ship-to-different-address-checkbox { top: 4px; }

.woocommerce-additional-fields { margin-top: 32px; }
#customer_details .woocommerce-additional-fields h3 { margin-top: 16px; }

.woocommerce-billing-fields__field-wrapper:after,
.woocommerce-additional-fields__field-wrapper:after {
    content: " ";
    display: table;
    clear: both;
}
.select2-container .select2-selection--single {
    padding: 3px 0;
    height: auto;
    border-radius: 0;
    border: 0;
    background: #f2f2f2;
    color: black;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--single span,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: black;
}
.woocommerce form .shipping-calculator-form .form-row input.input-text { text-align: right; }
.select2-container--default .select2-selection--single .select2-selection__arrow { top: 8px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: hsla(0, 0%, 100%, 0.5) transparent transparent transparent;
}
.woocommerce-terms-and-conditions-checkbox-text a { font-size: 14px; }
.woocommerce-privacy-policy-text a { font-weight: 700; }

.woocommerce-terms-and-conditions-wrapper input-checkbox {
	top: -4px;
    width: 24px;
    height: 24px;
}

.woocommerce form.login,
.woocommerce-form-coupon-toggle,
.woocommerce-form-login-toggle {
	width: 50%; 
	float: left;
}


.woocommerce-account .woocommerce > h2 { text-align: center; }
.woocommerce form.login { 
	width: 45%; 
	margin: 0; 
	margin: 0 auto;
	float: none;
}

.woocommerce-EditAccountForm input { max-height: 33px; }
.woocommerce-EditAccountForm > p > span {
    min-width: 244px;
    margin-left: 4px;
    font-size: 12px;
}
.woocommerce .woocommerce-EditAccountForm fieldset .form-row label { width: 220px; }



div.wpforms-container-full, 
div.wpforms-container-full .wpforms-form * {
    width: 600px;
	max-width: 100%;
    margin: 0 auto;
}





.V-default-page-content {
	padding: 64px 7%;
}





.woocommerce-account .A-content > .woocommerce .woocommerce-message {
	margin-right: 12px;
}
.woocommerce-account .A-content > .woocommerce {
	display: flex;
}
.woocommerce-MyAccount-navigation {
	margin-right: 48px;
}
.woocommerce-MyAccount-navigation ul li { margin: 6px 0; }
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.woocommerce-MyAccount-content { flex: 1; }
.woocommerce-MyAccount-content > table { width: 100%; }
.woocommerce-MyAccount-navigation-link--downloads { display: none; }
.woocommerce-EditAccountForm > fieldset {
    width: 476px;
    max-width: 100%;
	margin-top: 32px;
}

ul.products li.product .added_to_cart {
    padding: 4px 8px;
    background: var(--colorC);
    color: white;
}
ul.products li.product .added_to_cart:hover {
	background: var(--colorA);
}







/*--------------------------------------------------------------
# THANK YOU PAGE
--------------------------------------------------------------*/
.woocommerce-order-received .woocommerce-order {
	padding: 32px 0;
}

.woocommerce-bacs-bank-details h2,
.woocommerce-bacs-bank-details h3,
.woocommerce-customer-details,
.woocommerce-checkout.woocommerce-order-received .woocommerce-order p,
.woocommerce-thankyou-order-received { padding: 0; }
.woocommerce-checkout.woocommerce-order-received .woocommerce-order p { padding: 0; font-size: 20px !important; }
.woocommerce-order-received  .woocommerce ul.order_details {
	display: flex;
}
.woocommerce-order-received  .woocommerce ul.order_details li {
	flex: 1 1 auto;
    padding: 12px 8px 8px;
    margin: 0 4px 0 0;
	font-size: 14px;
    text-align: center;
    background: var(--colorD);
}

.woocommerce-order-received .woocommerce-order-details { padding: 0 15%; }
.woocommerce-order-received .woocommerce-order-details__title {
    width: 100%;
    padding: 8px 16px;
    margin: 0 0 12px;
    color: white;
    background: var(--colorA);
    float: left;
}
.woocommerce-checkout.woocommerce-order-received .woocommerce .col2-set { 
	float: none;
}


.woocommerce-order-received .woocommerce-customer-details {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 4px solid var(--colorA);
}
.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns--addresses {
	display: flex;
	width: 100%;
}
.woocommerce-order-received ul {
	list-style: none;
	padding: 0;
}
.woocommerce-order-received .woocommerce ul.order_details.woocommerce-thankyou-order-details { padding: 0; }
.woocommerce-thankyou-order-details strong { display: block; }



.woocommerce-bacs-bank-details {
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 64px;
}
.woocommerce-bacs-bank-details h2 { width: 100%; }
.woocommerce-bacs-bank-details h3 {
	width: 300px;
	margin: 2px 0;
	text-align: right;
	padding: 8px 16px;
	font-size: 16px;
	color: black;
	background: var(--colorC);
	color: white;
	border-right: 4px solid white;
}
.woocommerce-bacs-bank-details ul { width: calc(100% - 300px); margin: 2px 0; }















/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ RESPONSIVE */
/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1500px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


	.home-B { padding: 64px 20vw; }



}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1280px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


	.brands-list { padding: 64px 10vw; }
	.brand-item { margin: 8px 1%; }

	.A-products-archive .A-icon.brand img,
	.A-products-archive .A-brands-list { width: 220px; }


}




.A-brands-button {
	display: none;
    position: absolute;
    right: 0;
    bottom: 16px;
	padding: 8px 20px;
	background: var(--colorC);
	color: white;
	cursor: pointer;
}
.A-brands-button:hover { background: var(--colorA); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


	.home-B { padding: 64px 10vw; }
	.brand-item { width: 31.333%; margin: 6px 1%; }


	.home-C { flex-flow: column; }
	.home-C .Acolumn { width: 100%; margin: 24px 0; }


	.A-products-archive .A-brands-list h2,
	.woocommerce-result-count { display: none; }
	.A-products-archive .A-brands-list {
		transition: 0.5s all;
		position: fixed;
		background: var(--colorD);
		z-index: 999;
		left: calc(-8vw - 320px);
		left: -320px;
		top: 0px;
		box-shadow: 8px 0 18px hsl(0deg 0% 0% / 20%);
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
		padding: 64px 32px;
		width: 300px;
	}
	.A-products-archive .A-brands-list.open { left: 0; }
	.A-products-archive .A-brands-list ul { border: 0; }
	.A-products-archive .A-icon.brand img {
		width: 300px;
		margin: 16px 0 0;
		object-position: left;
	}
	.A-brands-button { display: block; }

	.A-products-archive { padding-top: 0; }
	.A-products-top {
		position: relative;
		height: 160px;
		margin-bottom: 64px;
		border-bottom: 2px solid var(--colorC);
	}
	.A-products-archive .A-brand-name {
		right: 0;
	}

	
	
}



.ACT-mobile { display: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 800px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	.ACT-mobile { display: block; }
	.ACT-product-description.ACT-desktop { display: none; }

	header nav {
		margin-top: 0;
		padding: 20px 0 8px;
		text-align: center;
	}
	.A-minimum { margin-top: 12px; }
	header .A-logo { margin-bottom: 20px; }
	header nav .menu-toggle { display: inline-block; }
	header nav ul { display: none; }
	header nav ul li {
		display: block;
		margin: 6px 0px 12px 0;
	}
	.A-search {
		position: relative;
		top: unset;
		right: unset;
	}

	.home-A {
		padding: 48px 20vw 64px;
	}
	

	.ACT-product-extra ul.products {
		display: flex;
		flex-flow: row wrap;
	}
	#content ul.products li.product {
		width: 48%;
		margin: 0 1% 48px;
	}


	.ACT-product-left {
		margin-bottom: 16px;
		padding-bottom: 16px;
		border-bottom: 4px solid var(--colorC);
	}
	.woocommerce-page div.product div.summary,
	.ACT-product-left { width: 100%; float: none; }
	.woocommerce div.product div.images:after { content: none; }

	.woocommerce div.product div.images .flex-viewport img {
		width: 100%;
		height: 50vw;
		object-fit: contain;
	}
	.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
		height: 15vw;
	}
	.ACT-product-content {
		margin-right: 0;
		margin-top: 32px;
		padding: 32px 0 0 0;
		border-top: 2px solid var(--colorC);
		border-right: 0;
	}


		
	.woocommerce-order-received .woocommerce ul.order_details { flex-flow: row wrap; }
	.woocommerce-order-received .woocommerce ul.order_details li { margin-bottom: 4px; }
	.woocommerce-order-received .woocommerce-order-details { padding: 0; }
	.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns--addresses {
		display: block;
		padding: 0;
	}

	.woocommerce-table--order-details a { font-size: 14px; }
	.woocommerce-bacs-bank-details h3 { width: 100%; text-align: left; }
	.woocommerce-bacs-bank-details ul { width: 100%; }







	.A-footer { 
		flex-flow: column;
		align-items: center;
	}
	.A-footer-col,
	.A-footer-col.col2 { width: 100%; text-align: center; }
	.A-footer-col.col3 { text-align: center; }
	.A-footer-col .A-logo img {
		margin-bottom: 16px;
		object-position: center;
	}


}





/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

	
	.search-result-list li { margin-bottom: 32px; }
	.search-result-list li .img-placeholder,
	.search-result-list li img { display: none; }


	header .A-logo { margin-top: 32px; }

	
	.brand-item { width: 48%; margin: 4px 1%; }

	.A-products-top { height: auto; text-align: center; }
	.A-products-archive .A-icon.brand { position: relative; }
	.A-products-archive .A-icon.brand img {
        width: 90%;
        height: 160px;
	}
	.A-products-archive .A-brand-name {
		position: relative;
		right: unset;
		top: unset;
		margin: 12px 0 16px;
		font-size: 28px;
	}
    .A-brands-button {
        position: relative;
		right: unset;
		bottom: unset;
    }
	.woocommerce-no-products-found { margin-top: 0; }

	#content ul.products li.product {
        align-items: center;
		width: 100%;
		margin: 0 0% 64px;
		text-align: center;
	}
	ul.products .woocommerce-LoopProduct-link { align-items: center; }

}
	



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


	header .A-social { left: 24px; }
	header .icons-01 { right: 24px; }
		
	.home-A {
		padding: 32px 10vw 64px;
	}
	.home-banner { height: 350px; }
	.home-banner h2 { font-size: 40px; }

	.home-B h2 { font-size: 32px; line-height: 1.2; }
	
	.brands-list { padding: 32px 8px 48px; }

	.A-page-content { padding: 48px 10% 64px; }
	.A-page-content h1 { font-size: 34px; }

	.woocommerce div.product div.images .flex-viewport img { height: 70vw; }

	.woocommerce div.product { padding: 24px; }
	.ACT-product-top {
		padding: 32px;
	}


}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 320px) {
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */


}












.fontA { font-family: var(--fontA) !important; }
.fontB { font-family: var(--fontB) !important; }
