@import "/scripts/shop.css"; /* Import general CSS */

/* Fusion template */
@font-face {
	font-family: 'Exo';
	src: local('Exo'),
		url('/scripts/font/Exo.woff2') format('woff2'),
		url('/scripts/font/Exo.woff') format('woff');
}

/* Variables */
html {
	--color1: #fff;		/* Website background */
	--color2: #fff;		/* Menu background */
	--color3: #666;		/* Text color */
	--color4: #000;		/* Hover color */
}

body {
	margin: 0; padding: 0;
	font-family: Exo,Helvetica,Arial,sans-serif;
	background-color: var(--color1);
}

#cont1			{ margin: 30px auto 5px auto; max-width: 1300px; }
#header2		{ height: 40px; background: var(--color2); }

#cont2			{ display: flex; min-height: 60vh; }
main 			{ flex-grow: 2; padding: 10px; background: #fff; }
#asidecontent		{ width: 200px; padding: 10px; }


/* Objects */
main a			{ color: #06c; }
svg, svg path		{ fill: var(--color3); transition: 0.3s fill; }
svg:hover,
svg:hover path		{ fill: var(--color4); }

#mnav, #search		{ float: left; margin: 6px; }

#cart			{ float: right; margin: 4px 6px; }
#cart a			{ text-decoration: none; }
#cart span {
	display: inline-block; margin: -3px 0 0 4px; vertical-align: top; padding: 5px 3px 2px 3px;
	color: #fff; background: #06c;
	font-size: 0.8em; font-weight: bold; border-radius: 3px;
}

#lang {
	float: right; margin: 8px 6px 3px 6px;	color: #878787;
	text-decoration: none; font-weight: bold;
}
#lang a			{ color: var(--color3); text-decoration: none; transition: 0.3s color; }
#lang svg,
#lang svg path 		{ fill: var(--color3); }

/* Navigation */
nav			{ font-weight: bold; background: #fff; max-height: auto; transition: max-height 1s; background: var(--color2); }
nav ul, nav li		{ list-style: none; margin: 0; padding: 0; }
nav > ul		{ max-width: 1200px; margin: 0; display: inline-block; }
nav li			{ display: inline-block; }
nav a {
	display: block; line-height: 40px; text-decoration: none;
	font-weight: bold; outline: none; color: var(--color3); transition: 0.3s color;
}
nav > ul > li > a	{ line-height: 50px; padding: 0 14px; }

/* Sub navigation */
nav > ul ul {
	position: absolute; border-radius: 0 0 5px 5px; min-width: 150px; z-index: 1;
	max-height: 0; opacity: 0; overflow-y: auto; z-index: 2; background: #fff;
	transition: max-height 0.3s linear 0s, opacity 0.2s linear 0s; overflow: hidden;
}

nav > ul ul > li	{ display: block; }
nav > ul ul > li > a	{ padding: 0 14px; }
nav > ul li:hover > ul	{ opacity: 1; max-height: 100%; }

nav a:hover,
#lang a:hover		{ color: var(--color4); }
nav a:hover svg,
nav a:hover svg path,
#lang a:hover svg,
#lang a:hover svg path	{ fill: var(--color4); }

/* Mobile navigation */
#mnav			{ display: none; } /* Hide mobile menu hamburger on wide screens */
#mnav a			{ outline: none; }

/* Account navigation */
#accountnav		{ text-align: right; }
#accountnav a		{ padding-right: 10px; text-decoration: none; }

/* Forms */
.webshop_stylebutton, input[type=submit], input[type=button] {
	display: inline-block;  margin: 0 0 10px 0; padding: 10px 8px;
	white-space: nowrap; text-decoration: none; -webkit-appearance: none; border: 0;
	text-align: center; font-family: inherit; font-size: inherit; cursor: pointer;
	color: #fff; background: #666; border-radius: 0;
	transition: 0.3s background;
}

.webshop_stylebutton:hover, input[type=submit]:hover, input[type=button]:hover {
	background: #333;
}

input[type=submit]:disabled, input[type=button]:disabled {
	background: #ccc; cursor: default;
}

/* Footer */
footer a		{ color: #333; }
footer a:hover		{ color: #000; }
#footer1		{ color: #333; background: #ededed; padding: 20px; }

/* Footer navigation */
footer #cat,
#footnav		{ margin-bottom: 40px; }
footer #cat ul,
#footnav ul		{ list-style: none; margin: 0; padding: 0; }
footer #cat li,
#footnav li		{ display: inline-block; width: 190px; vertical-align: top; }
footer #cat ul ul,
#footnav ul ul		{ margin: 0 0 10px 3px; font-size: 0.9em; }
footer #cat a,
#footnav a		{ line-height: 30px; text-decoration: none; }
#footnav svg		{ display: none; }

/* Footer address */
footer address		{ width: 390px; display: inline-block; font-style: normal; }
address p		{ margin-top: 0; }
address a		{ text-decoration: none; }
address svg		{ width: 14px; height: 14px; margin-right: 6px; fill: #333; }
address svg path	{ fill: #333; }
#footercontent		{ display: inline-block; vertical-align: top; }

/* Footer terms */
#terms			{ clear: both; padding: 10px; font-size: 0.9em; color: #666; text-align: right; }
#terms span		{ margin-right: 16px; }
#terms a		{ color: #666; margin-right: 16px; }


/* Responsive */
@media all and (max-width: 600px) {
	#cont2			{ width: auto; flex-flow: column; }
	main,
	#asidecontent		{ width: auto; margin: 0; padding: 10px; }
	nav			{ position: absolute; left: 0; max-height: 0; width: 100%; overflow: hidden; }
	nav ul, nav ul li	{ display: block; }
	nav > ul ul		{ position: static; opacity: 1; margin-left: 30px; }
	nav > ul li:hover > ul	{ max-height: 0; }
	#mnav			{ display: inline-block; }
	footer address		{ float: none; width: auto; }
}