/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Defaults + Redefines */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

body {
	font-size: 16px;
	font-weight: 300;
	color: var(--primary-darker-color);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .caption {
	font-family: var(--header-font);
}
.h1, h1 {
	font-size: calc(1.5rem + 1.25vw);
	margin-bottom: 10vw;
}
.h2, h2, main .caption, footer .caption {
	font-size: calc(1rem + 1vw);
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 .25rem var(--primary-alpha20-color);
}
.form-check-input {
	--bs-border-color: var(--primary-darker-color);
}
.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}
.form-check-input:focus {
	box-shadow: 0 0 0 .25rem var(--primary-alpha20-color);
	border-color: var(--primary-darker-color);
}
b, strong {
	font-weight: 700;
}
.border-secondary {
	border-color: var(--primary-darker-color)!important;
}
.accordion {
	--bs-accordion-active-color: var(--primary-darker-color);
	--bs-accordion-active-bg: var(--primary-alpha20-color);
	--bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem var(--primary-alpha20-color);
}

@media (orientation:landscape) {
	.h1, h1 {
		margin-bottom: 5vw;
	}
}

h1 {
	position: relative;
	color: var(--primary-color);
	font-weight: 300;
	text-align: center;
}

*:focus-visible {
	outline: 0;
}

.btn-check + .btn:hover {
	color: #ffffff;
}
.dropdown-item {
	--bs-dropdown-item-padding-y: .5rem;
}
.dropdown-item:hover {
	color: var(--text-color, #000000)!important;
}

a.bi, a.bi:hover, a.bi:focus {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: var(--btn-icon-size, 40px);
	height: var(--btn-icon-size, 40px);
}
.cart-buttons a.bi,
.cart-buttons a.bi:hover,
.cart-buttons a.bi:focus {
	width: var(--btn-icon-size, 180px);
	height: var(--btn-icon-size, 60px);
}
.cart-buttons .bi::before{
	padding: 0 0.25rem;
}
@media (min-width:768px) {
	a.bi, a.bi:hover, a.bi:focus {
		width: var(--btn-icon-size, 32px);
		height: var(--btn-icon-size, 32px);
		transition: all .3s;
	}
	.cart-buttons a.bi,
	.cart-buttons a.bi:hover,
	.cart-buttons a.bi:focus {
		width: var(--btn-icon-size, 240px);
		height: var(--btn-icon-size, 60px);
	}
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Layout */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


header {
	position: fixed;
	top: 0px; left: 0;
	right: 0;
	z-index: 80;
	display: flex;
	flex-flow: row wrap;
	color: var(--header-color);
	background: var(--header-background);
	box-shadow: 0 5px 10px rgba(0,0,0,.05);
}
.header-grid {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
header a, header a:hover, header a:focus, header .btn-link, 
header .btn-link:hover, header .btn-link:focus {
	color: var(--header-color);
}
.header-main {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}
nav.panel.alter ul {
	padding: 1rem;
}
.nav-handy {
	
}
.header-social {
	display: flex;
	justify-content: center;
}
nav ul {
	padding: 0;
}

.card,
.card-header {
	border: 0;
}

footer {
	padding: 2rem 0;
	color: var(--grey-color);
	background: none;
	font-size: .875rem;
}
footer .caption,
.nav-flat .caption {
	display: block;
	padding: 0 1rem;
	color: var(--secondary-darker-color);
	font-size: 1.125rem;
}
footer a, footer a:hover, footer a:focus {
	color: var(--footer-link-color);
	text-decoration: none;
	transition: all var(--speed);
}
footer [class^="si-"]::before, footer [class*=" si-"]::before {
	font-size: 20px;
}

.toggle.close {
	font-size: 1rem;
}

@media (max-width:991px) {
	.toggle {
		--toggle-width: 42px;
		--toggle-height: 42px;
		display: inline-flex;
		width: var(--toggle-width);
		height: var(--toggle-height);
		background: none;
		align-items: center;
		justify-content: center;
	}
	.panel {
		max-width: 400px;
	}
	.alter.panel {
		background: var(--lightgrey-color);
		text-align: center;
	}
	.alter.panel .nav-head {
		text-align: right;
	}
	.dropdown-toggle.language {
		display: none;
	}
	.lang-select .dropdown-menu {
		display: flex;
		justify-content: space-around;
		background: none;
		margin: 1rem 0;
		border: 0;
	}
}
.brand{
	margin: 0 auto;
}
.brand img {
	max-height: 2rem;
}
#map, .map {
	z-index: 1;
	height:450px;
}
@media (min-width:992px) {
	header {
		position: sticky;
		top: -60px;
	}
	header .header-grid {
		--gap: 0;
		position: sticky;
		top: -102px;
		display: grid;
		grid-template-columns: auto auto 1fr auto auto;
		grid-template-areas:
			"social	handy	handy	langs	langs"
			"brand	search	search user  cart"
			"main	main   main   main	main";
		gap: var(--gap);
		justify-content: space-between;
		align-items: center;
	}
	.panel,
	.nav-body,
	.nav-user {
		display: contents;
	}
	.panel.cart-summary {
		display: block;
	}
	.header-social { grid-area: social; }
	.nav-handy	{ grid-area: handy; }
	.langs	{ grid-area: langs; }

	.brand	{ grid-area: brand; }
	.search	{ grid-area: search; }
	.toggle-cart { grid-area: user; }
	.nav-user { grid-area: cart; }

	.nav-root { grid-area: main; }
	.alter	{ grid-area: alter; }
	.nav-pages { grid-area: alter; }

	.toggle-main,
	.toggle-alt,
	.toggle-search {
		display: none!important;
	}

	.brand {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 0;
		width: auto;
		height: auto;
	}
	.brand img {
		display: block;
		max-height: 6rem;
		width: auto;
	}
	.nav-handy a,
	.bi::before{
		transition: all .3s;
	}

	header .bi:hover::before{
		transform: translateY(-0.25rem);
	}

	nav.panel.alter ul {
		padding: .5rem 0;
	}
	nav.panel.alter ul.header-social {
		justify-content: start;
	}
	.nav-pages {
		margin: auto;
		margin-right: 0;
	}
	.form-search,
	.form-search.collapse:not(.show) {
		display: inline-flex;
		order: initial;
		width: auto;
		max-width: 240px;
	}
	nav.alter > .container, nav.alter > .container-fluid {
		padding-top: 7px;
		padding-bottom: 7px;
	}
	.brand {
		height: auto;
		margin-left: 0;
		padding: 1rem 0;
	}
	
	.dropdown-toggle.language {
		display: block;
	}
	.lang-select .dropdown-menu:not(.show) {
		display: none;
	}
	.toggle-alt {
		display: none;
	}

	footer {
		padding: 5rem 0;
	}
	footer .caption,
	.nav-flat .caption {
		font-size: 1.5rem;
	}
	footer .collapse:not(.show),
	footer .collapsing,
	footer .collapsing:not(.show) {
		display: block;
		height: auto;
		overflow: auto;
	}
	#map, .map {
		height: 600px;
	}
}
@media (min-width:1200px) {
	.form-search,
	.form-search.collapse:not(.show) {
		max-width: none;
	}
}

@media (max-width:991px){
	header .container,
	header .container-fluid {
		padding: 0;
		margin: 0;
		max-width: 100vw;
	}
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Components */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


.logo img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
}
footer .logo {
	max-width: 280px;
	margin: 0 auto;
}
footer .logo img {
	margin: 0 auto;
}
footer .nav-body {
	padding: 0;
}

.breadcrumb {
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 1rem;
}
.breadcrumb .divider {
	display: none;
}
.breadcrumb li {
	display: flex;
}
.breadcrumb li + li::before {
	content: '|';
	display: inline-block;
	padding: 0 .5rem;
	color: var(--secondary-color);
}
.arrow-pipe .breadcrumb li + li::before { content: '|'; }
.arrow-slash .breadcrumb li + li::before { content: '/'; }
.arrow-greater .breadcrumb li + li::before { content: '›'; }
.arrow-play .breadcrumb li + li::before { content: '►'; }

@media (min-width: 768px) {
	.breadcrumb {
		font-size: .875rem;
	}
}

/**
 * Search form
 */
.form-search {
	display: flex;
	justify-content: center;
	padding: 10px 1rem;
}
.form-search input, .form-search button {
	display: block;
	border: 1px solid var(--line-color);
}
.form-search input {
	border-radius: 20px;
	padding: 5px 10px;
}
.form-search button {
	padding: 5px 10px;
	color: var(--header-color);
	border: none;
	margin: 0;
}
.form-search button .si-search {
	width: 24px;
	height: 24px;
	mask-size: 20px 20px;
	margin-top: 3px;
}
.form-search {
	order: 2;
	margin: 0 auto;
}
.form-search-sticky {
	position: sticky;
	z-index: 0;
	top: 0px;
	margin-left: 1rem;
	margin-right: 1rem;
/*
	margin-bottom: 10px;
*/
}
@media (min-width:640px) {
	.form-search-inline {
		display: inline-flex;
		align-self: center;
		margin: auto;
		width: 100%;
	}
	.form-search input {
		min-width: 0;
		outline: none;
	}
	.form-search-sticky {
		display: none;
	}
	nav.controls .toggle.toggle-main {
		margin-right: 1rem;
	}
}
.form-search-sticky::before, .form-search-sticky::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	border-top: 1px solid var(--line-color);
}
.form-search-sticky::before {
	top: 0;
}
.form-search-sticky::after {
	bottom: 0;
}

/**
 * Thumbnails
 */
.thumb {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	aspect-ratio: 1;
	overflow: hidden;
	background: none;
}
.thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}
.thumb.cover img {
	object-fit: cover;
}
.thumb.round {
	border-radius: 20rem;
}
.thumb.sq,
.thumb.aspect1x1 { aspect-ratio: 1; }
.thumb.aspect2x1 { aspect-ratio: 2; }
.thumb.aspect16x9 { aspect-ratio: 16 / 9; }
.thumb.aspect4x3 { aspect-ratio: 4 / 3; }
.thumb.aspect3x2 { aspect-ratio: 3 / 2; }
.thumb.aspect2x3 { aspect-ratio: 2 / 3; }

.thumb .caption {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: -100%;
	transform: translate(-50%,50%);
	transition: all .3s;
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: normal;
}
.thumb:hover .caption {
	bottom: 50%;
}

/* effects */
.thumb.overlay::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	display: block;
	background: var(--brand-secondary-color-fade50);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	opacity: 0;
}
.thumb.overlay:hover::after {
	opacity: 1;
}
.thumb.bw2color img {
	transition: filter .5s;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}
.thumb.bw2color:hover img {
	-webkit-filter: grayscale(0); /* Safari 6.0 - 9.0 */
	filter: grayscale(0);
}

.thumb.border-in {
}
.thumb.border-in::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background-color: var(--brand-secondary-color-fade50);
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	opacity: 0;
}
.thumb.border-in:hover::after {
	opacity: 1;
}
.thumb.border-in .caption {
	position: absolute;
	z-index: 2;
	top: 0; bottom: 0; left: 0; right: 0;
	padding: 10px;
	background-color: rgba(47, 56, 71, 0.45);
	border: 2px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	margin: 0;
	transition: .3s ease-out;
	-webkit-transform: rotate(2deg);
	-ms-transform: rotate(2deg);
	transform: rotate(2deg);
}
.thumb.border-in:hover .caption {
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	margin: 10px;
}

.thumb.stack-3-left {
	display: inline-block;
	position: relative;
	max-width: 100%;
	-webkit-perspective: 1600px;
	perspective: 1600px;
}
.thumb.stack-3-left img {
	-webkit-transform: translateZ(0) translateX(0) rotateY(0);
	transform: translateZ(0) translateX(0) rotateY(0);
	max-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	outline: 1px solid transparent;
}
.thumb.stack-3-left img:last-child {
	position: relative;
}
.thumb.stack-3-left:hover img:first-child {
	-webkit-transform: translateZ(-300px) translateX(20%) rotateY(-45deg);
	transform: translateZ(-300px) translateX(20%) rotateY(-45deg);
}
.thumb.stack-3-left:hover img:nth-child(2) {
	-webkit-transform: translateZ(-300px) rotateY(-45deg);
	transform: translateZ(-300px) rotateY(-45deg);
}
.thumb.stack-3-left:hover img:nth-child(3) {
	-webkit-transform: translateZ(-300px) translateX(-20%) rotateY(-45deg);
	transform: translateZ(-300px) translateX(-20%) rotateY(-45deg);
}


@media (min-width:992px) {
	.thumb.border-in:hover .caption {
		margin: 2rem;
	}
}

/**
 * Hover effects
 */
.he {
	position: relative;
	transition: all var(--speed);
}
.he:hover {
	z-index: 2;
}
.he-zoomin {
	will-change: transform;
}
.he-zoomin:hover {
	transform: scale(1.1);
}
.he-shadow-3 {
	will-change: opacity;
}
.he-shadow-3:hover {
	box-shadow: 0 0 1rem rgba(0,0,0,.5);
}
.he-mid2bot {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%,50%);
}
.he-wrap:hover .he-mid2bot {
	bottom: 0;
	transform: translate(-50%,0);
}

/**
 * Video
 */
.video-section {
	max-width: 100%;
	margin: 30px auto;
	border: 8px solid #ffffff;
	overflow: hidden;
}
.video-container {
	padding: 15px;
	background: rgba(0,0,0,0.5);
	position: relative;
	width: 100%;
	height: 0;
	padding: 0;
	padding-bottom: 56.25%; /* The height of the item will now be 56% of the width. */
	margin: auto;
	overflow: hidden;
}
.video-container iframe,
.video-container video,
.video-container object,
.video-container embed {
	display: block;
	position:absolute;
	/*
	top:0;
	left:0;
	*/
	width:100%;
	height:100%;
	border: 0;
}
@media (min-width: 992px) {
	.video-section {
		max-width: 640px;
	}
}
@media (min-width: 1200px) {
	.video-section {
		max-width: 800px;
	}
}



/**
 * Ajax
 */
.ajax-container {
	position: relative;
	display: block;
	min-height: 100px;
}
.ajax-inline { display: inline-block; }
.working {
	position: relative;
}
.working:after {

	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	margin-top: -24px;
	margin-left: -24px;

	content: ' ';
	width: 87px;
	height: 87px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='87' height='87' class='lds-gooey-balls' preserveAspectRatio='xMidYMid' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cfilter id='a' width='300%25' height='300%25' x='-100%25' y='-100%25' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur in='SourceGraphic' stdDeviation='10'/%3E%3CfeColorMatrix result='cm' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 60 -40'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23a)'%3E%3Ccircle cx='27' cy='50' r='25' fill='%23997966'%3E%3Canimate attributeName='r' begin='0s' calcMode='spline' dur='1' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' keyTimes='0;0.5;1' repeatCount='indefinite' values='18;25;18'/%3E%3Canimate attributeName='cx' begin='0s' calcMode='spline' dur='1' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' keyTimes='0;0.5;1' repeatCount='indefinite' values='20;27;20'/%3E%3C/circle%3E%3Ccircle cx='73' cy='50' r='18' fill='%23c65d3b'%3E%3Canimate attributeName='r' begin='0s' calcMode='spline' dur='1' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' keyTimes='0;0.5;1' repeatCount='indefinite' values='25;18;25'/%3E%3Canimate attributeName='cx' begin='0s' calcMode='spline' dur='1' keySplines='0.5 0 0.5 1;0.5 0 0.5 1' keyTimes='0;0.5;1' repeatCount='indefinite' values='66;73;66'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E")
		50% 50% no-repeat;
	min-height: 48px;
}
.ajax-container th {
	font-weight: normal;
	text-align: right;
	font-size: 85%;
}
.ajax-container th h4 {
	text-align: center;
}
.ajax-container .btn {
}

.ajaxLookup { position: relative; }
.ajaxLookup > input {
	position: absolute;
	top: 0;
	left: 15px;
	z-index: -1;
}

.ajaxLookupResults {
	width: auto;
	max-height: 300px;
	overflow-y: auto;
}
.ajaxLookupResults table {
	width: 100%;
	border-collapse: collapse;
}
.ajaxLookupResults table tr {
	border-bottom: 1px solid var(--line-color);
	cursor: pointer;
}
.ajaxLookupResults table tr:hover td {
	color: #ffffff;
	background: var(--primary-color);
}
.ajaxLookupResults table tr td {
	padding: 3px;
	vertical-align: top;
	font-size: 85%;
}

.hover-fade-bottom {
	position: relative;
}

.hover-fade-bottom .hover-target {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
	transition: all var(--speed);
	pointer-events: none;
}
@media (min-width:992px) {
	.hover-fade-bottom .hover-target {
		display: block;
	}
	.hover-fade-bottom:hover .hover-target {
		top: 50%;
		opacity: 1;
		pointer-events: initial;
	}
}

/**
 * Attached documents
 */
.attached-docs ul { display: block; margin: 0; padding: 0; margin-top: 30px; list-style: none; }
.attached-docs ul li:before { display: none; }
.attached-docs a { display: block; font-size: 1.2em; }
.attached-docs a[href$='.pdf'],
.attached-docs a.icon-PDF {
	background:transparent url(//static.torus.gr/icons/filetypes/pdf/pdf-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.xls'],
.attached-docs a[href$='.xlsx'],
.attached-docs a[href$='.csv'],
.attached-docs a[href$='.xlw'],
.attached-docs a[href$='.xlt'] {
	background:transparent url(//static.torus.gr/icons/filetypes/xlsx_win/xlsx_win-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.doc'],
.attached-docs a[href$='.docx'],
.attached-docs a[href$='.rtf'],
.attached-docs a[href$='.wps'],
.attached-docs a[href$='.txt'] {
	background:transparent url(//static.torus.gr/icons/filetypes/docx_win/docx_win-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.pps'],
.attached-docs a[href$='.ppt'],
.attached-docs a[href$='.ppsx'],
.attached-docs a[href$='.pptx'] {
	background:transparent url(//static.torus.gr/icons/filetypes/pptx_win/pptx_win-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.zip'] {
	background:transparent url(//static.torus.gr/icons/filetypes/zip/zip-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.7z'],
.attached-docs a[href$='.rar'] {
	background:transparent url(//static.torus.gr/icons/filetypes/rar/rar-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.jpg'],
.attached-docs a[href$='.jpe'],
.attached-docs a[href$='.jpeg'] {
	background:transparent url(//static.torus.gr/icons/filetypes/jpeg/jpeg-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.gif'] {
	background:transparent url(//static.torus.gr/icons/filetypes/gif/gif-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.png'] {
	background:transparent url(//static.torus.gr/icons/filetypes/png/png-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
.attached-docs a[href$='.tif'],
.attached-docs a[href$='.tiff'] {
	background:transparent url(//static.torus.gr/icons/filetypes/tiff/tiff-32_32.png) center left no-repeat; padding:.8em 0 .8em 48px; }
/* mailto and external links
a[href^="mailto:"] {
	background:transparent url(../images/mailto.png) center left no-repeat; padding-left:20px; line-height:15px; }
 */
.attached-docs a, .attached-docs a:hover { text-decoration: none; }
.attached-docs .filetitle { font-weight: bold; }
.attached-docs .filelocation { display: block; font-weight: normal; text-style: italic; font-size: .875rem; clear: both; }

/**
 * Marquee
 */
.marquee {
	z-index: 10;
	position: relative;
	width: 100%;
	height: 60px;
	margin: 0 auto;
	padding: 15px;
	border-radius: 15px;
	overflow: hidden;
	background: #777777;
}
@keyframes marquee {
	from { margin-left: 100%; }
	to { margin-left: -850px; }
}
.marquee h3 {
	position: absolute;
	color: #ffffff;
	display: inline-block;
	width: 850px;
	margin: 0;
	line-height: 30px;
	font-size: 22px;
	animation: marquee 20s linear 0s infinite;
}
.marquee h3:hover {
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

/**
 * Cookies box
 */
.cb-cookiesbox {
	position: fixed;
	top: auto; left: 0; right: 0; bottom: 0;
	z-index: 1010;
	display: block;
	padding: 8px;
	margin: 0;
	color: var(--secondary-light-color);
	background: var(--primary-color);
}
.cb-cookiesbox p {
	margin: 0;
	text-align: center;
	line-height: 1em;
}
.cb-cookiesbox .btn {
	margin: 1rem 0.3rem;
}
.cb-cookiesbox .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 24px;
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	color: var(--secondary-light-color);
	background: none;
}
.cb-cookiesbox .btn-close::before {
	font-family: 'bootstrap-icons';
	content: '\f659';
}

@media (min-width:992px) {
	.cb-cookiesbox {
		left: 2rem; right: auto; bottom: 2rem;
		width: 470px;
		padding: 1rem 2rem;
	}
	.cb-cookiesbox p {
		padding-right: 4rem;
	}
}

/**
 * owl carousel
 */
/*
.owl-carousel .owl-stage-outer {
	display: flex;
	justify-content: center;
}
*/
.owl-stage {
	display: flex;
	align-items: stretch;
}
.owl-stage .item {
	display: flex;
	flex-flow: column wrap;
	height: 100%;
	background: #ffffff;
	text-align: center;
}
.owl-stage .item > *:last-child {
	margin-top: auto;
}
.owl-stage .item > *:first-child {
	margin-top: 0;
}
.owl-carousel .owl-item img {
	margin: auto;
	width: auto;
}

/**
 * vbox
 */
.vbox-container img {
	max-height: 100vh;
}

/**
 * Swiper slider
 */
.swiper {
	/*
	color: #ffffff;
	background: (--dark-color);
	*/
}
.swiper-slide {
	height: 67vw;
	background-position: 50% 50%;
}
@media (min-width:768px) {
	.swiper-slide {
		height: 60vw;
	}
}
@media (max-width:991px) and (orientation: landscape) {
	.swiper-slide {
		height: calc(100vh - 42px);
	}
}
@media (min-width:1200px) {
	.swiper-slide {
		height: 33.33vw;
	}
}


/**
 * Areas
 */
.area {
	position: relative;
	padding: 4rem 0;
}
.area.area-standout {
	color: #ffffff;
	background: var(--primary-color);
	font-size: 1.25rem;
	text-align: center;
}
.area.area-standout h2 {
	font-size: 2rem;
	font-weight: 700;
}
.area.area-standout small {
	font-size: .875rem;
}
.area.area-standout .btn-primary {
	padding: 1rem 2rem;
	font-weight: 700;
	background: #fd8d38!important;
	border: 1px solid #bf6018!important;
	border-bottom: 5px solid #bf6018!important;
}
.area.area-standout .btn-primary:hover {
	background: #a7270d!important;
}
.area.area-standout .strike-through {
	text-decoration: line-through;
}
@media (orientation: landscape) or (min-width: 768px) {
	.area.area-standout .wrapper {
		display: flex;
		align-items: center;
	}
	.area.area-standout .wrapper > div {
		flex: 0 0 50%;
	}
	.area.area-standout .wrapper .col-txt {
		order: 1;
		text-align: left;
	}
	.area.area-standout .wrapper .col-img {
		order: 2;
	}
}
@media (min-width: 992px) {
	.area.area-standout .wrapper .col-txt {
		padding-right: 4rem;
	}
}
@media (min-width: 1200px) {
	.area.area-standout {
		font-size: 1.5rem;
	}
	.area.area-standout .wrapper .col-img {
		padding-left: 4rem;
	}
	.area.area-standout h2 {
		font-size: 2.5rem;
	}
	.area.area-standout small {
		font-size: 1rem;
	}
	.area.area-standout .btn-primary {
		font-size: 1.5rem;
	}
}

/**
 * Signature
 */
.signature {
	display: block;
	width: auto;
	text-align: center;
	font-size: .875rem;
	font-weight: bold;
}
.torus { display: inline-block; }
.torus a { display: inline-block; padding: .5rem 1rem; }

@media print {
	header .top-bar,
	header .top-bar2,
	#toolbox, #searchbox, #cartsummary, #headmenu,
	.brand-carousel-container,
	.newsletter
	{ display: none; }
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Utilities */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


.text-primary {
	color: var(--primary-darker-color)!important;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Theme */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


h1 > span {
	position: relative;
	z-index: 1;
}
h1::after {
	content: '';
	position: absolute;
	left: 50%; right: auto;
	top: auto; bottom: -5px;
	z-index: 0;
	width: 200px;
	height: 1px;
	background: var(--primary-light-color);
	transform: translateX(-50%);
}

@media (min-width: 992px) {
	h1::after {
		width: 200px;
	}
}

.product-photo,
.product-thumb {
	border: 0;
}



/**
 * SVG ICONS
 */
.si:before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	color: var(--primary-darker-color);
	font-size: 32px;
}
.bg-dark .si:before {
	color: #ffffff;
}
.si.si-start,
.si.si-end {
	position: relative;
	line-height: 1.5;
}
.si.si-start:before,
.si.si-end:before {
	position: absolute;
	width: 32px;
	height: auto;
	line-height: 1.2;
}
.si.si-start {
	padding-left: calc(32px + 1rem);
}
.si.si-end {
	padding-right: 32px;
}
.si.si-start:before {
	left: .75rem;
}
.si.si-end:before {
	right: 0;
}
.si-burger {
	display: inline-flex;
	width: 42px;
	height: 42px;
	background: none;
	align-items: center;
	justify-content: center;
}
.si-burger span {
	position: relative;
	display: inline-block;
	width: 23px;
	border-bottom: 2px solid var(--header-color,#000000);;
}
.si-burger span::before,
.si-burger span::after {
	content: '';
	position: absolute;
	width: 100%;
	border-bottom: 2px solid var(--header-color,#000000);
	transform: translateY(-7px);
}
.si-burger span::after {
	transform: translateY(7px);
}
[class^="si-"]::before, [class*=" si-"]::before,
header [class^="bi-"]::before, header [class*=" bi-"]::before {
	line-height: initial;
	font-size: 24px;
}
label[class^="si-"]::before, label[class*=" si-"]::before,
label[class^="bi-"]::before, label[class*=" bi-"]::before,
.page-link [class^="bi-"]::before, .page-link [class*=" bi-"]::before {
	line-height: initial;
	font-size: 16px;
}

header [class*=" bi-x"]::before {
	font-size: 32px;
}

@media (min-width:992px) {
	.si-burger {
		display: none;
	}
}


th .caption {
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
}

.text-sm {
	font-size: .875rem;
}

a, a:hover, a:focus,
.btn-link, .btn-link:hover, .btn-link:focus {
	text-decoration: none;
	color: var(--primary-color);
}
 a.btn-success:focus{
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: #ffffff;
}
a.btn:hover, a.btn:focus {
	text-decoration: none;
}
header a:hover, header a:focus {
	text-decoration: none;
}
.dropdown {
	display: inline-block;
	width: auto;
}
.dropdown .dropdown-toggle,
.dropdown .dropdown-toggle:hover
.dropdown .dropdown-toggle:focus {
	display: flex;
	box-shadow: 0 0 0 transparent;
	background: transparent;
	padding: 8px;
	color: var(--primary-color);
}
.dropdown .dropdown-toggle::after {
	display: none;
}
header .dropdown .dropdown-toggle,
header .dropdown .dropdown-toggle:hover
header .dropdown .dropdown-toggle:focus {
	color: var(--header-color,#000000);
}
.btn-primary,
.bg-primary,
.page-item.active .page-link {
	background: var(--primary-color)!important;
	border-color: var(--primary-color)!important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, 
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
	background-color: var(--primary-light-color)!important;
	border-color: var(--primary-light-color)!important;
	color:#ffffff;
}
.btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color)!important;
}
.btn-check:active + .btn-outline-primary,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}
.btn-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary:hover,
.bg-secondary {
	background-color: var(--primary-darker-color)!important;
	border-color: var(--primary-darker-color)!important;
}
.btn-check:active + .btn-outline-secondary,
.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
	color: #ffffff;
	background-color: var(--secondary-darker-color)!important;
	border-color: var(--secondary-darker-color)!important;
}
.btn-floating {
	display: flex;
	align-items: center;
	height: 100%;
}
.btn-floating.text-center {
	justify-content: center;
}

.swiper-slide-caption {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 20;
	padding: 1rem;
	width: calc(100vw - 2rem);
	color: #ffffff;
	background: var(--primary-alpha50-color);
	text-align: center;
	transform: translateX(-50%);
}
.swiper-slide-caption .btn {
	margin-top: 1rem;
}
.swiper-slide {
	background: var(--bg-img) 50% 50% / cover no-repeat;
}
@media (min-width: 680px) {
	.swiper-slide {
		background-image: var(--bg-lg-img);
	}
}

main {
	padding: 45px 0 2rem;
}
.text-secondary {
	color: var(--secondary-darker-color)!important;
}

.list-inline {
	display: inline-flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 992px) {

	main {
		padding: 0;
	}
}


.bg-dark,
.bg-dark a,
.bg-dark a:hover {
	color: #ffffff;
	background-color: var(--primary-darker-color)!important;
}
.bg-dark a:hover {
	color: var(--secondary-light-color)!important;
}

/**
 * Nav-Tree
 */
@media (max-width:991px) {
	.nav-tree {
		position: fixed;
		top: 0; bottom: 0;
		left: 0; right: 0;
		z-index: 9900;
		width: 100vw;
		transition: all .3s;
	}
	/** Flip from top */
	.nav-tree.flip-left {
		-webkit-transform: perspective(300px) rotateY(90deg);
		transform: perspective(300px) rotateY(90deg);
		-webkit-transform-origin: left;
		transform-origin: left;
	}
}
@media (min-width:992px) {
	.toggle-main {
		display: none;
	}
	.nav-tree .nav-root > li {
		display: flex!important;
		place-items: center;
	}
	.nav-tree .nav-root > li > a {
		text-align: center;
		font-size: .875rem !important;
		font-weight: 700 !important;
	}
	.nav-tree .nav-root > li.itm-5 {
		margin-left: auto;
	}
}



.thumb h2 {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 1rem;
	color: #ffffff;
	background: var(--primary-alpha50-color);
	font-size: 1.2rem;
	letter-spacing: -1px;
	overflow: hidden;
}
.thumb h2 span {
	position: relative;
	z-index: 2;
}
.thumb h2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	transform: translateX(-100%);
	background: var(--primary-color);
	transition: all var(--speed);
}
.thumb:hover h2::after {
	transform: translateX(0);
}

.thumb .caption {
	width: 100%;
	padding: 1rem;
	color: #ffffff;
	background: var(--primary-alpha50-color);
	font-size: 1.2rem;
	letter-spacing: -2px;
	overflow: hidden;
}

/* thumb inner border */
.inborder a.thumb img {
	display: inline-block;
	width: 100%;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
}

.inborder a.thumb:before,
.inborder a.thumb:after {
	content: "";
	display: block;
	position: absolute;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	z-index: 2;
	height: auto;
	width: auto;
	right: 15px;
	left: 15px;
	top: 15px;
	bottom: 15px;
}

.inborder a.thumb:after {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: scale(1, 0);
}

.inborder a.thumb:before {
	border-top: 2px solid #fff;
	transform: scale(0, 1);
	border-bottom: 2px solid #fff;
}

.inborder:hover a.thumb:before,
.inborder:hover a.thumb:after {
	transform: scale(1, 1);
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
}

.inborder:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(204,204,204, 0.6);
	transition: all .3s;
	opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	z-index: 1;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
}

.inborder:hover:before {
	opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	transition: all 0.5s ease-out 0s;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
}

.inborder {
	display: block;
	position: relative;
	overflow: hidden;
}
@media (max-width: 979px) {
	.inborder {
		padding: 0;
	}
	.inborder {
		text-align: center;
	}
}
@media (max-width: 1299px) {
	.inborder {
		margin-top: 50px;
	}
}
@media (max-width: 767px) {
	.inborder {
		margin-top: 0;
	}
}

.box-heading {
	position: relative;
	color: #000000;
	font-size: 24px;
	line-height: 40px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	display: block;
	letter-spacing: 2px;
	padding: 0 0 20px 0;
}
.box-heading::before {
	content: '';
	position: absolute;
	background: var(--grey-color);
	height: 3px;
	width: 102px;
	background-size: 100%;
	top: auto;
	bottom: 15px;
	right: 0;
	left: 0;
	margin: 0 auto;
	display: block;
	z-index: 4;
}
.box-desc {
	font-size: .9rem;
	text-align: center;
}

.owl-home-categories h2 {
	font-size: 1.125rem;
	font-weight: 300;
	text-transform: uppercase;
}
.owl-home-categories .owl-stage .item > :last-child {
	margin-top: 2rem;
}

@media (min-width:992px) {
	.owl-home-categories .item {
		padding: 0 2rem;
	}
	.owl-home-categories h2 {
		font-size: 1.25rem;
	}
}

.category-card {
	position: relatice;
	display: flex;
	place-items: center;
}
.category-card .caption {
	position: absolute;
	z-index: 10;
	width: 100%;
	font-weight: 700;
	color: #ffffff;
}
.category-card .caption a,
.category-card .caption a:hover,
.category-card .caption a:focus {
	color: #ffffff;
}

.products-home h3 {
	font-size: 1rem;
	color: #000000;
}

.recently-viewed {
	background-color: var(--lightgrey-bg);
}

.banner-container {
	padding: 1rem 0;
	background-color: var(--lightgrey-bg);
}

.brand-text {
	margin-left: 1rem;
	color: var(--primary-color);
	font-size: 1.5rem;
	font-weight: bold;
}

.home-slider {
	position: relative;
}
.home-slider .banner-espa {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 20;
	transform: translate(-50%, 100%);
	max-width: 100vw;
	height: auto;
}

.page-photo {
	margin-bottom: 2rem;
}
@media (orientation: landscape) {
	.home-slider .banner-espa {
		top: 0; left: 0; bottom: auto;
		transform: none;
		max-width: 50vw;
	}
	.page-photo {
		max-width: 50%;
		float: right;
		margin-left: 2rem;
	}
}

/**
 * region Differ first item
 */
/*
@media (min-width:992px) {
	.nav-tree .nav-root > li.itm-0 {
		margin-right: auto;
	}
	.nav-tree ul.nav-root > li.itm-0 > span,
	.nav-tree ul.nav-root > li.itm-0:hover > span {
		top: 50%;
		left: 16px;
		box-sizing: border-box;
		display: inline-block;
		width: 26px;
		height: 20px;
		color: #ffffff;
		background: none;
		border: 0;
		border-top: 2px solid #ffffff;
		transform: rotate(0) translateY(-50%);
	}
	.nav-tree ul.nav-root > li.itm-0.open > span {
		transform: rotate(0) translateY(-50%);
	}
	.nav-tree ul.nav-root > li.itm-0 > span::before,
	.nav-tree ul.nav-root > li.itm-0 > span::after {
		content: '';
		position: absolute;
		width: 100%;
		border-bottom: 2px solid #ffffff;
		transform: translateY(7px);
	}
	.nav-tree ul.nav-root > li.itm-0 > span::after {
		transform: translateY(16px);
	}
	.nav-tree .nav-root > li.itm-0 > a {
		width: 300px;
		padding-left: 56px;
		color: #ffffff;
		background: var(--primary-color);
		font-size: 1.25rem;
	}
}
*/
/* endregion */

@media (min-width:1200px) {
	.home-slider .banner-espa {
		top: auto;
		left: 50%;
		bottom: 0;
		transform: translate(-50%, 100%);
		max-width: 100vw;
		height: auto;
	}
}

.nav-flat a:hover, .nav-flat a:focus {
	color: var(--primary-color)!important;
	background: none!important;
	text-decoration: underline;
}
.cb-cookiesbox {
	color: #ffffff;
}
.cb-cookiesbox .btn-close {
	color: #ffffff;
}
.cookies-manager h2 {
	font-size: 1.5rem;
}

.boxnow-info table td {
}
.boxnow-info table td:first-child {
	font-weight: 400;
	width: 33%;
}
.boxnow-info h3 {
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 700;
}

.icon {
	max-height: 60px;
}

@media (min-width: 1200px) {
	.swiper-slide {
		height: 56.25vw;
	}
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--primary-color);
}
.features td{
	border-bottom-width: 1px;
	padding: 0 1.5rem;
}
.features{
	justify-content: center;
	display: flex;
	margin: 1.5rem 0 4rem;
}

/**
 * Category icons with bubbles
 */
/***
.cat-card {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 140px;
  height: 140px;
  isolation: isolate; / * so z-index stays inside * /
  -webkit-tap-highlight-color: transparent;
}

.cat-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
}

.cat-bg {
  position: absolute;
  inset: -40px; / * λίγο μεγαλύτερο από το icon * /
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: scale(.9);
  transition: opacity .18s ease, transform .18s ease;
  filter: blur(0.2px);
}

.bubbles { width: 100%; height: 100%; }

.b {
  transform-box: fill-box;
  transform-origin: center;
  opacity: .25;
  mix-blend-mode: multiply;
  --dx: 0px;
  --dy: 0px;
  --s1: 1;
  --s2: 1.3;
  --dur: 3.2s;
  animation: none;
}

.b1{ fill: #ff4d6d; }
.b2{ fill: #4dabf7; }
.b3{ fill: #51cf66; }
.b4{ fill: #ffd43b; }

@keyframes floatPulse {
  0% {
    transform: translate(var(--dx), var(--dy)) scale(var(--s1));
  }
  50% {
    transform: translate(
      calc(var(--dx) * -1),
      calc(var(--dy) * -1)
    ) scale(var(--s2));
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(var(--s1));
  }
}

/ * hover + keyboard focus * /
.cat-card:is(:hover, :focus-visible, .is-active) .cat-bg{
  opacity: 1;
  transform: scale(1);
}
.cat-card:is(:hover, :focus-visible, .is-active) .b{
  animation: floatPulse var(--dur) ease-in-out infinite;
}

/ * reduced motion * /
@media (prefers-reduced-motion: reduce){
  .cat-card:is(:hover, :focus-visible, .is-active) .b{
    animation: none;
  }
}
***/

