/**
 * @name: Noracent Online Order
 * @author: Marc Funk
 * @company: marcfunk IT UG (hb.)
 * @creation: 2022-02-03
 * @version: 0.1-0000
 * 
 * @notes
 * This program is the property of the company listed above and
 * may not be passed on or changed. Publication is only permitted by the author.
**/
:root {
	--green: rgb(143, 199, 64);
	--brown: rgb(107, 95, 87);
	--brownlight: rgba(107, 95, 87, 0.075);
	--brownlight2: rgba(107, 95, 87, 0.3);
}

@font-face {
	font-family: 'Schrift';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/Regular.eot');
	src: url('fonts/Regular.eot?#iefix') format('embedded-opentype'),
		url('fonts/Regular.woff2') format('woff2'),
		url('fonts/Regular.woff') format('woff'),
		url('fonts/Regular.ttf') format('truetype'),
		url('fonts/Regular.svg#svgFontName') format('svg');
}

@font-face {
	font-family: 'Schrift';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/Bold.eot');
	src: url('fonts/Bold.eot?#iefix') format('embedded-opentype'),
		url('fonts/Bold.woff2') format('woff2'),
		url('fonts/Bold.woff') format('woff'),
		url('fonts/Bold.ttf') format('truetype'),
		url('fonts/Bold.svg#svgFontName') format('svg');
}

* {
	box-sizing: border-box;
	color: var(--brown);
	font-family: 'Schrift', Arial, sans-serif;
	margin: 0px;
	padding: 0px;
	outline-width: 0px;
}

a {
	color: var(--green);
	text-decoration: none;
}

body {
	font-size: 100.01%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

h1 {
	color: var(--green);
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 15px;
}

h2 {
	color: var(--green);
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
}

h3 {
	color: var(--green);
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
}

h4 {
	color: var(--green);
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
}

h1 img,
h2 img,
h3 img,
h4 img {
	display: inline-block;
	height: auto;
	margin-left: 5px;
	width: 25px;
	vertical-align: bottom;
}

html {
	height: 100%;
	overflow-y: scroll;
}

button[type=button] {
	background-color: var(--green);
	border: 0px;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

button[type=submit] {
	background-color: var(--brown);
	border: 0px;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

input[type=text],
input[type=password],
select,
textarea {
	background-color: #FFF;
	border: 2px solid var(--green);
	border-radius: 10px;
	color: var(--brown);
	display: inline-block;
	padding: 7.5px;
	width: calc(100% - 55px);
}

input[type=image] {
	border: 0px;
	height: auto;
	margin-left: 15px;
	vertical-align: bottom;
	width: 35px;
}

input[type=submit] {
	background-color: var(--brown);
	border: 0px;
	color: #FFFFFF;
	cursor: pointer;
	font-size: 1rem;
	font-weight: bold;
	padding: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

input:disabled {
	background-color: var(--brownlight2);
}

input::placeholder {
	color: var(--brownlight2);
}

label {
	display: block;
	font-weight: bold;
	margin-bottom: 10px;
}

span,
p {
	line-height: 135%;
}

p {
	margin-bottom: 20px;
}

#site:not(:target) .close,
#site:target .open {
	display: none;
}

#site:target .close,
#site:not(:target) .open {
	display: block;
}

#site:not(:target) .nav {
	height: 100vh;
	left: -1000px;
	position: absolute;
	top: 0px;
	-webkit-transition: all 0.3s 0s ease-in-out;
	-moz-transition: all 0.3s 0s ease-in-out;
	-o-transition: all 0.3s 0s ease-in-out;
	transition: all 0.3s 0s ease-in-out;
}

#site:target .nav {
	background-color: #FFF;
	height: 100vh;
	left: 0px;
	padding: 20px;
	position: fixed;
	top: 0px;
	width: 80%;
	z-index: 1001;
	-webkit-transition: all 0.3s 0s ease-in-out;
	-moz-transition: all 0.3s 0s ease-in-out;
	-o-transition: all 0.3s 0s ease-in-out;
	transition: all 0.3s 0s ease-in-out;
}

#site #content {
	padding: 20px;
	padding-bottom: 425px;
}

#site #footer {
	background-color: var(--brown);
	bottom: 0px;
	color: #FFFFFF;
	font-size: 0.9rem;
	padding: 20px;
	position: absolute;
	width: 100%;
}

#site #footer ul,
#site #footer li,
#site #footer a {
	color: #FFFFFF;
	list-style-type: none;
	text-decoration: none;
}

#site #footer img {
	height: auto;
	width: 35px;
}

#site #footer ul li {
	margin-bottom: 20px;
}

#site #footer ul li:last-child {
	margin-bottom: 0px;
}

#site #footer ul li ul {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

#site #footer ul li ul li:nth-child(1) {
	width: 45px;
}

#site #footer ul li ul li:nth-child(2) {
	width: calc(100% - 45px);
}

#site #header .logo {
	padding: 35px;
	width: 100%;
}

#site #header .logo img {
	height: auto;
	width: 100%;
}

#site #search {
	padding: 35px;
	width: 100%;
}

#site #topline {
	background-color: var(--green);
	color: #FFFFFF;
}

#site #topline li {
	color: #FFFFFF;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	text-align: center;
	width: 25%;
}

#site #topline li img {
	height: auto;
	width: 30px;
}

#site #topline ul {
	margin: 0px;
	padding: 10px;
	width: 100%;
}

#site #wrapper {
	min-height: 100%;
	position: relative;
}

#site .add,
#site .edit {
	background-color: var(--brownlight);
	padding: 20px;
	padding-bottom: 5px;
}

#site .admin-addinfo {
	width: 100%;
}

#site .admin-addinfo img {
	height: auto;
	margin-right: 5px;
	width: 25px;
}

#site .artdescr {
	display: block;
	padding-bottom: 20px;
}

#site .buttons button {
	margin-bottom: 10px;
}

#site .cart--ordering {
	margin-top: 40px;
}

#site .desktop {
	display: none;
}

#site .intro {
	margin-bottom: 20px;
}

#site .lb-caption {
	color: #FFFFFF;
}

#site .login {
	width: 100%;
}

#site .login p {
	margin-bottom: 20px;
}

#site .login .form {
	text-align: center;
	width: 100%;
}

#site .login .logo {
	margin-bottom: 40px;
	text-align: center;
	width: 100%;
}

#site .login .logo img {
	height: auto;
	width: 75%;
}

#site .mb {
	margin-bottom: 20px;
}

#site .mod--article {
	width: 100%;
}

#site .mod--article h1 {
	border-bottom: 1px solid var(--brown);
	padding-bottom: 5px;
}

#site .mod--article p {
	margin-bottom: 20px;
}

#site .mod--article input[type=image] {
	width: 60px;
}

#site .mod--article .imgbox {
	border: 1px solid var(--brown);
	margin-bottom: 20px;
	padding: 20px;
	position: relative;
}

#site .mod--article .imgbox .artchecks {
	left: 20px;
	position: absolute;
	top: 20px;
	z-index: 1002;
}

#site .mod--article .imgbox .artchecks img {
	height: auto;
	margin-bottom: 5px;
	width: 50px;
}

#site .mod--articlelist .buttons {
	text-align: center;
}

#site .mod--my-account .accountdata,
#site .mod--my-account .deliveryaddresses {
	background-color: var(--brownlight);
	margin-top: 20px;
	padding: 20px;
	padding-bottom: 0px;
	width: 100%;
}

#site .mod--my-account .deliveryaddresses .element {
	background-color: #FFFFFF;
	margin-bottom: 20px;
	padding: 20px;
	width: 100%;
}

#site .mod--my-account .deliveryaddresses .element .symbols {
	padding-top: 10px;
	text-align: left;
}

#site .mod--my-account .deliveryaddresses .element .symbols a {
	margin: 0px;
}

#site .mod--my-account .deliveryaddresses .element .symbols img {
	margin-right: 10px;
}

#site .mod--saved-carts-list,
#site .mod--order-history {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}

#site .mod--saved-carts-list .element,
#site .mod--order-history .element {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	margin-bottom: 20px;
	width: 100%;
}

#site .mod--saved-carts-list .element .cbox,
#site .mod--order-history .element .cbox {
	border-bottom: 1px solid var(--green);
	padding: 5px;
	width: 50%;
	word-wrap: break-word;
}

#site .mod--saved-carts-list .element .cbox:nth-child(odd),
#site .mod--order-history .element .cbox:nth-child(odd) {
	background-color: var(--green);
	border-bottom: 1px solid #FFFFFF;
	color: #FFFFFF;
}

#site .mod--saved-carts-list .element .cbox img,
#site .mod--order-history .element .cbox img {
	height: auto;
	width: 50px;
}

#site .mod--saved-carts-list .element .cbox:last-of-type,
#site .mod--order-history .element .cbox:last-of-type {
	border-bottom: 0px;
}

#site .nav li {
	list-style-type: none;
	margin: 0px;
	margin-bottom: 35px;
	padding: 0px;
}

#site .nav li img {
	height: auto;
	margin-right: 10px;
	vertical-align: middle;
	width: 35px;
}

#site .pagination {
	width: 100%;
}

#site .pagination img {
	height: auto;
	width: 50px;
}

#site .passnote {
	display: block;
	margin-bottom: 10px;
}

#site .priceinfo {
	color: #FFFFFF;
	font-size: 0.8rem;
}

#site .productimage {
	height: auto;
	width: 100%;
}

#site .stockimg {
	display: block;
	height: auto;
	margin-top: 10px;
	width: 30px;
}

#site .quantity {
	font-size: 1.2rem;
	padding: 15px;
	text-align: center;
	width: 100px;
}

#site .small {
	font-size: 0.9rem;
}

#site .symbols a {
	margin-right: 10px;
}

#site .symbols img {
	height: auto;
	width: 50px;
}

#site .widget-select,
#site .widget-text,
#site .widget-textbox {
	margin-bottom: 20px;
}

#site .widget-select select {
	width: 100%;
}

#site .widget-text input[type=text],
#site .widget-text input[type=password] {
	width: 100%;
}

#site .widget-textbox textarea {
	min-height: 150px;
	width: 100%;
}

#site .widget-submit {
	margin-bottom: 20px;
}

.mf--flex-spb {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.mf--flex-spb-center {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.mf--msg-error {
	background-color: #FFD2D2;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 12px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.mf--msg-error i {
	color: #D8000C;
	font-size: 2em;
	vertical-align: middle;
	width: 35px;
}

.mf--msg-error span {
	color: #D8000C;
	width: calc(100% - 40px);
}

.mf--msg-error span a {
	color: #D8000C;
	text-decoration: underline;
}

.mf--msg-info {
	background-color: #BDE5F8;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 12px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.mf--msg-info i {
	color: #00529B;
	font-size: 2em;
	vertical-align: middle;
	width: 35px;
}

.mf--msg-info span {
	color: #00529B;
	width: calc(100% - 40px);
}

.mf--msg-info span a {
	color: #00529B;
	text-decoration: underline;
}

.mf--msg-success {
	background-color: #DFF2BF;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 12px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.mf--msg-success i {
	color: #4F8A10;
	font-size: 2em;
	vertical-align: middle;
	width: 35px;
}

.mf--msg-success span {
	color: #4F8A10;
	width: calc(100% - 40px);
}

.mf--msg-success span a {
	color: #4F8A10;
	text-decoration: underline;
}

.mf--msg-warning {
	background-color: #FEEFB3;
	border-radius: 10px;
	margin: 10px 0px;
	padding: 12px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.mf--msg-warning i {
	color: #9F6000;
	font-size: 2em;
	vertical-align: middle;
	width: 35px;
}

.mf--msg-warning span {
	color: #9F6000;
	width: calc(100% - 40px);
}

.mf--msg-warning span a {
	color: #9F6000;
	text-decoration: underline;
}

.mf--table {
	border-collapse: collapse;
	display: table;
	margin-bottom: 20px;
	width: 100%;
}

.mf--table .cell {
	border-bottom: 1px solid var(--green);
	display: table-cell;
	padding-bottom: 5px;
	padding-top: 5px;
}

.mf--table .cell:nth-child(2n+1) {
	background-color: var(--green);
	border-bottom: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px;
	width: 35%;
	word-wrap: break-word;
}

.mf--table .cell:nth-child(2n+2) {
	padding-left: 5px;
	padding-right: 5px;
	width: 65%;
	word-wrap: break-word;
}

.mf--table .footer {
	display: table-footer-group;
}

.mf--table .footer .cell,
.mf--table .footer .cell:nth-child(2n+1),
.mf--table .footer .cell:nth-child(2n+2) {
	background: none !important;
	border-bottom: 1px solid var(--green) !important;
	color: var(--brown) !important;
	width: 65% !important;
}

.mf--table .footer .cell:nth-child(4) {
	background-color: var(--green) !important;
	border-bottom: 1px solid #FFFFFF !important;
	color: #FFFFFF !important;
	font-weight: bold;
	width: 35% !important;
}

.mf--table .footer .dns {
	display: none;
}

.mf--table .header {
	display: none;
}

.mf--table .header .cell {
	background-color: var(--green);
	border-right: 1px solid #FFFFFF;
	color: #FFFFFF;
	display: table-cell;
	font-weight: bold;
	padding: 5px;
	text-align: center;
}

.mf--table .header .cell:last-child {
	border: 0px;
}

.mf--table .row {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	margin-bottom: 20px;
}

@media(min-width: 480px) {
	#site #header .logo img {
		margin-left: 12.5%;
		width: 75%;
	}
	
	#site .buttons button {
		margin-right: 10px;
	}
	
	#site .buttons button:last-of-type {
		margin-right: 0px;
	}
}

@media(min-width: 600px) {
	p {
		margin-bottom: 35px;
	}
	
	#site #content {
		padding: 35px;
		padding-bottom: 311px;
	}
	
	#site #footer ul {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	
	#site #footer ul li {
		width: 50%;
	}
	
	#site #header .logo img {
		margin-left: 25%;
		width: 50%;
	}
	
	#site .admin-addinfo img {
		height: auto;
		width: 35px;
	}
	
	#site .cart--ordering {
		margin-top: 75px;
	}
	
	#site .intro {
		margin-bottom: 35px;
	}
	
	#site .login {
		margin: 0 auto;
		width: 300px;
	}
	
	#site .login p {
		margin-bottom: 35px;
	}
	
	#site .mb {
		margin-bottom: 35px;
	}
	
	#site .mod--article .imgbox .artchecks img {
		height: auto;
		width: 70px;
	}
	
	#site .mod--my-account .accountdata,
	#site .mod--my-account .deliveryaddresses {
		padding: 35px;
		padding-bottom: 0px;
	}
	
	#site .mod--my-account .deliveryaddresses .element {
		margin-bottom: 35px;
		padding: 35px;
	}
	
	#site .symbols img {
		height: auto;
		width: 40px;
	}
	
	#site .widget-select,
	#site .widget-text,
	#site .widget-textbox {
		margin-bottom: 35px;
	}
	
	#site .widget-submit {
		margin-bottom: 35px;
	}
	
	.mf--table .cell,
	.mf--table .cell:nth-child(2n+1),
	.mf--table .cell:nth-child(2n+2) {
		padding: 10px;
	}
}

@media(min-width: 800px) {
	form.flex {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	
	form .widget-select {
		width: calc(50% - 17.5px);
	}
	
	form .widget-submit {
		width: 100%;
	}
	
	form .widget-text {
		width: calc(50% - 17.5px);
	}
	
	form .widget-textbox {
		width: 100%;
	}
	
	h1 img,
	h2 img,
	h3 img,
	h4 img {
		width: 35px;
	}
	
	#site:not(:target) .nav,
	#site:target .nav {
		height: auto;
		left: 0px;
		position: relative;
		text-align: right;
		top: 0px;
		width: 70%;
	}
	
	#site #content {
		padding-bottom: 323px;
	}
	
	#site #footer {
		padding: 35px;
	}
	
	#site #header {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: center;
		-ms-flex-line-pack: center;
		align-content: center;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		padding: 35px;
	}
	
	#site #header .logo {
		padding: 0px;
		width: 30%;
	}
	
	#site #header .logo img {
		margin: 0px;
		width: 100%;
	}
	
	#site #header .nav li {
		display: inline-block;
		margin-left: 10px;
	}
	
	#site #header .nav li img {
		height: auto;
		margin: 0px;
		width: 50px;
	}
	
	#site #search {
		text-align: center;
	}
	
	#site #search input[type=text] {
		padding: 12px;
		width: 600px;
	}
	
	#site #topline a {
		color: #FFFFFF;
		text-decoration: none;
	}
	
	#site #topline li {
		font-weight: bold;
		text-align: left;
		width: 33.33%;
	}
	
	#site #topline li:nth-child(2) {
		text-align: center;
	}
	
	#site #topline li:nth-child(3) {
		text-align: right;
	}
	
	#site #topline li img {
		margin-right: 5px;
		vertical-align: middle;
	}
	
	#site .add,
	#site .edit {
		padding: 35px;
		padding-bottom: 0px;
	}
	
	#site .desktop {
		display: block;
		font-size: 0.8rem;
	}
	
	#site .mobile {
		display: none;
	}
	
	#site .mod--article {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-content: flex-start;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	
	#site .mod--article .imgbox {
		width: 30%;
	}
	
	#site .mod--article .imgbox .artchecks img {
		width: 50px;
	}
	
	#site .mod--article .txtbox {
		margin-left: 35px;
		width: calc(70% - 35px);
	}
	
	#site .mod--articlelist .buttons {
		text-align: right;
	}
	
	#site .mod--my-account .accountdata,
	#site .mod--my-account .deliveryaddresses {
		width: calc(50% - 17.5px);
	}
	
	#site .mod--my-account .accountdata .widget-text,
	#site .mod--my-account .accountdata .widget-textbox,
	#site .mod--my-account .accountdata .widget-select,
	#site .mod--my-account .accountdata .widget-submit {
		width: 100%;
	}
	
	#site .mod--saved-carts-list .element,
	#site .mod--order-history .element {
		margin-bottom: 35px;
		width: calc(50% - 17.5px);
	}
	
	#site .mod--saved-carts-list .element .cbox,
	#site .mod--order-history .element .cbox {
		padding: 7px;
	}
	
	#site .pagination img {
		height: auto;
		width: 35px;
	}
	
	#site .priceinfo {
		color: var(--brown);
	}
	
	#site .stockimg {
		width: 40px;
	}
	
	#site .symbols {
		text-align: center;
	}
	
	#site .symbols a:last-child {
		margin-right: 0px;
	}
	
	.mf--table .cell,
	.mf--table .cell:nth-child(2n+1),
	.mf--table .cell:nth-child(2n+2) {
		background: none;
		border-bottom: 1px solid var(--green);
		color: var(--brown);
		vertical-align: top;
		width: auto;
	}
	
	.mf--table .footer .cell,
	.mf--table .footer .cell:nth-child(2n+1),
	.mf--table .footer .cell:nth-child(2n+2),
	.mf--table .footer .cell:nth-child(4) {
		width: auto !important;
	}
	
	.mf--table .footer .dns {
		display: table-cell;
	}
	
	.mf--table .header {
		display: table-header-group;
	}
	
	.mf--table .header .cell,
	.mf--table .header .cell:last-child {
		background-color: var(--green);
		border-bottom: 1px solid var(--green);
		color: #FFFFFF;
	}
	
	.mf--table .img {
		width: 100px !important;
	}
	
	.mf--table .mobile {
		display: none;
	}
	
	.mf--table .row {
		display: table-row;
	}
}

@media(min-width: 1024px) {
	#site #footer ul li {
		width: 33.33%;
	}
	
	#site #footer ul li:nth-child(2) {
		width: 40%;
	}
	
	#site #footer ul li:nth-child(3) {
		width: 26.66%;
	}
	
	#site #header .nav li {
		margin-left: 20px;
	}
	
	#site #header .nav li img {
		height: auto;
		width: 65px;
	}
	
	#site #search input[type=text] {
		padding: 15px;
	}
	
	#site #search input[type=image] {
		width: 50px;
	}
	
	#site .admin-addinfo img {
		height: auto;
		width: 30px;
	}
	
	#site .desktop {
		font-size: 0.9rem;
	}
	
	#site .symbols img {
		height: auto;
		width: 30px;
	}
	
	.mf--table .quant {
		text-align: center;
	}
}

@media(min-width: 1200px) {
	form .widget-select {
		width: calc(33.33% - 23.33px);
	}
	
	form .widget-text {
		width: calc(33.33% - 23.33px);
	}
	
	#site #content {
		margin: 0 auto;
		padding-left: 0px;
		padding-right: 0px;
		width: 1200px;
	}
	
	#site #footer .inner {
		margin: 0 auto;
		width: 1200px;
	}
	
	#site #header {
		margin: 0 auto;
		padding-left: 0px;
		padding-right: 0px;
		width: 1200px;
	}
	
	#site #header .nav li img {
		height: auto;
		width: 70px;
	}
	
	#site #search input[type=text] {
		font-size: 1.2rem;
		padding: 25px;
	}
	
	#site #search input[type=image] {
		width: 70px;
	}
	
	#site #topline ul {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	#site #topline .desktop {
		margin: 0 auto;
		width: 1200px;
	}
	
	#site .desktop {
		font-size: 1rem;
	}
}