/*
  $Id: stylesheet.css, v1.00 Web Service Berlin $

  Copyright (c) 2024 Web Service Berlin, Powered by osCommerce

  Released under the GNU General Public License
*/

/*** BOF: 2024 ***/
html {
	height: 100%;
	background-color: rgba(255, 255, 255, 1);
	font-family: "Roboto", serif;
	font-weight: 400;
	font-style: normal;
	color: rgba(var(--greyColor), 1);
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	width: 100%;
	min-width: 330px;
	margin: 0;
}

/* general */
:root {
	--max-mainContent: 1100px; /*1250px*/
	--greyColor: 135, 135, 135;
	--purpleColor: 91, 17, 55;
	--greenColor: 119, 221, 119;
	--redColor: 255, 51, 51;
	--orangeColor: 183, 146, 0;
	--formFieldGap: 10px;
	--boxGap: 15px;
	--greyBorder: var(--greyColor), .3;
	--greyBorderIndiv: var(--greyColor);
	--boxBorder-radius: 5px;
	--boxHeaderBG: linear-gradient(to bottom, rgba(var(--greyColor), .05), rgba(255, 255, 255));
	--inputError-red: 255, 140, 140;

	--overlay-bg-white: rgba(255, 255, 255, .8);

	--inputField-shadow: inset 1px 2px 5px rgba(var(--greyColor), 0.07);
	--inputField-border: 1.2px solid rgba(var(--greyColor), .5);
	--inputField-error-shadow: inset 1px 2px 5px rgba(var(--inputError-red), .1);
	--inputField-error-border: 1px solid rgba(var(--inputError-red), .5);
}

input, textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: rgba(var(--greyColor), 1);
}

input[type="number"] {
	-moz-appearance: textfield;
}

input[type="checkbox"] {
	display: none;
}

input:focus, textarea:focus {
	outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

a, a:hover {
	color: rgba(var(--greyColor), 1);
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	color: rgba(var(--greyColor), 1);
	line-height: 1.3;
	font-size: 1em;
	font-weight: normal;
	clear: both;
}

form, span{
	display: block;
}

img {
	display: block;
	margin: 0;
	padding: 0;
}

div {
	box-sizing: border-box;
	display: block;
}

figure {
	box-sizing: border-box;
	display: block;
	padding: 0;
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

i {
	font-style: normal;

	&.redInfo {
		font-style: italic;
		color: rgba(var(--redColor), .7);
	}

	&.greenInfo {
		font-style: italic;
		color: rgba(var(--greenColor), 1);
	}

	&.orangeInfo {
		font-style: italic;
		color: rgba(var(--orangeColor), .7);

	}

	&.left {
		margin-right: 5px;
	}

	&.right {
		margin-left: 5px;
	}
}

label {
	display: inline-block;
}

/* BUTTONS */
.buttonRow {
	flex-wrap: wrap;
	column-gap: var(--formFieldGap);
}
button, a.button, label.button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	padding: 5px;
	border-radius: 5px;
	font-size: 1em;
	color: rgba(255, 255, 255, 1);
	cursor: pointer;

	& span {
		flex: 1;
		text-align: center;
		font-size: 1em;
	}

	& i {
		font-size: 1.3em;
	}

	&.small {
		width: auto;
		height: 20px;
		font-size: .8em;

	}
}
/*a.del-button {
 padding: 10px 10px 10px 10px !important;
}*/
/* CHECKBOX */
.switch {
	display: inline-block;
	position: relative;
	width: 50px;
	height: 24px;

	& input {
		opacity: 0;
		width: 0;
		height: 0;

		&:checked + .slider {
			background-color: rgba(var(--greenColor), 1) !important;
		}

		&:checked + .slider:before {
			transform: translateX(26px);
		}
	}
}
.switch-label {
	flex: 1;
	margin-left: 10px;
	font-size: .9em;
}
.slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 34px;
	background-color: #ccc;
	transition: 0.4s;
	cursor: pointer;

	&.required {
		background-color: rgba(var(--redColor), .5) !important;
	}

	&:before {
		position: absolute;
		width: 17px;
		height: 17px;
		left: 4px;
		bottom: 4px;
		border-radius: 50%;
		background-color: white;
		transition: 0.4s;
		content: "";
	}
}
/* general */

/* allgemein */
.noProductImage {
	opacity: .4;
}

.greyLineFull {
	height: 1px;
	width: 100%;
	background-color: rgba(180, 180, 180, .3);
}

.flexSpacing {
	flex: 1;
}

.flexBreak {
	flex-basis: 100%;
	height: 0;
}

.hideBorder {
	border: 0 !important;
	padding: 0 1px 0 1px;
	box-shadow: none !important;
}

.contentSize {
	width: 100%;
	max-width: var(--max-mainContent);
}

.flex-0 {
	flex: 0 !important;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex {
	display: flex;
	/*align-items: flex-start;*/
}

.flexWrap {
	/*display: flex;*/
	flex-wrap: wrap;
}

.flexColumn {
	display: flex;
	flex-direction: column;
}

.flexRow {
	display: flex;
	flex-direction: row;
}

.fR-ai-center {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.fR-aic-jcl {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: left;
}

.fR-aic-jcc {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.fR-aic-jcr {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: right;
}

.fR-ais-jcs {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: start;
}

.fl-va-bottom {
	vertical-align: bottom;
}

.fl-va-top {
	vertical-align: top;
}

.fl-va-center {
	vertical-align: middle !important;
}

.fR-ai-start {
	display: flex;
	flex-direction: row;
	align-items: start !important;
}

.fC-ai-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.flex-spacer {
	flex-grow: 1;
	min-width: 100%;
	height: 0;
}

.font-size-18 {
	font-size: 1.8em;
}

.min-250 {
	min-width: 250px;
}

.min-200 {
	min-width: 200px;
}

.max-50p {
	max-width: 50%;
}

.centerText {
	text-align: center;
}

.textButton {
	cursor: pointer;
}

.margin-b-5 {
	margin-bottom: 5px;
}

.margin-b-15 {
	margin-bottom: 15px;
}

.textShadow_lightGrey {
	text-shadow: 1px 1px 2px rgba(var(--greyColor), .2);
}

.boxShadow {
	box-shadow: 0 2px 5px 0 rgba(var(--greyColor), .4);
}

.hidden {
	display: none;
}

.toggleHeadline {
	flex: 1;
	align-items: center;
}
.toggleHeadline > .description {
	flex: 1;
	font-weight: 500;
	font-size: 1.1em;
}
.toggleHeadline > .toggleSign {
	padding-left: 10px;
	font-weight: 500;
	font-size: 1.1em;
	width: 20px;
	text-align: right;
}
#loadOverlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--overlay-bg-white);
}
#loadOverlay > .compilation {}
#loadOverlay > .compilation > .image {
	width: 100px;
	height: 100px;
	margin: 10px auto 0 auto;
	background-image: url(images/icons/loading-1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	animation: load-img-rotation 10s infinite linear;
}
#loadOverlay > .compilation > .text {
	margin: 10px auto 0 auto;
	font-size: .8em;
	text-align: center;
}
@keyframes load-img-rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}


.fullCart-listing {
	row-gap: 10px;

	& li {
		border: var(--inputField-border);
		border-radius: 5px;

		&.removeSlow {
			transition: max-height 1s ease, opacity 1.5s ease;
			opacity: 1;
			overflow: hidden;
			max-height: 350px;

			&.removed {
				opacity: 0;
				max-height: 0;
			}

			&.errorRow {
				background-color: rgba(var(--redColor), .05) !important;
			}
		}

		& .header {
			position: relative;
			padding: 5px 45px 0 5px;
			background: var(--boxHeaderBG);
			font-size: 1em;

			& .description {
				font-weight: 500;
			}

			& .productsModel {
				margin-top: 3px;
				font-size: .8em;
				font-weight: 200;

			}
		}

		& .infoCompilation {
			margin: 10px 5px 5px 5px;
			gap: 5px;

			& .image {
				max-width: 90px;
				min-width: 40px;
				height: auto;
				padding: 5px;
				overflow: hidden;
				border: var(--inputField-border);
				border-radius: 5px;

				& img {
					width: 100%;
					height: auto;
				}
			}

			& .general {
				font-size: .9em;
				margin-bottom: 10px;

				& .description {
					font-weight: 500;
				}

				& .productsModel {
					margin-top: 3px;
					font-size: .9em;
					font-weight: 200;

				}

				& .deliveryTime {
					margin-top: 10px;

					& .list {
						display: grid;
						grid-auto-flow: column;
						grid-template-columns: repeat(2, auto);
						gap: 5px;
					}

					& .deliveryTime-label {
						margin-right: 5px;
						font-style: italic;

					}

					& .deliveryTime-qty {
					}

					& .deliveryTime-time {
					}
				}
			}

			& .quantity {

				& .button {
					display: flex;
					justify-content: center;
					width: 40px;
					height: 40px;
					border: var(--inputField-border);
					align-items: center;
					cursor: pointer;
					background-color: rgba(var(--white));

					&.left {
						border-top-left-radius: 5px;
						border-bottom-left-radius: 5px;
					}

					&.right {
						border-top-right-radius: 5px;
						border-bottom-right-radius: 5px;
					}

					& i {
						font-size: 1.2em;
						color: rgba(var(--greyColor));
					}
				}

				& input {
					display: block;
					height: 40px;
					width: 50px;
					font-size: 1em;
					box-shadow: var(--inputField-shadow);
					background: transparent;
					border-top: var(--inputField-border);
					border-bottom: var(--inputField-border);
					border-left: 0;
					border-right: 0;
					outline: none;
					padding: 0 5px;
					color: rgba(var(--greyColor), 1);
					text-align: center;
				}
			}

			& .price {
				align-items: center;
				gap: 5px;

				& i {
					font-size: .8em !important;
					font-weight: 300;
				}

				& span {
					font-size: 1em !important;
					font-weight: 400;
				}
			}
		}
	}
}
& section.manual-information {
	gap: 10px;
	font-size: .7em;

	& div.compilation {
		gap: 5px;

		& label {
			width: 45px;
		}

		& input {
			display: block;
			padding: 0 10px;
			height: 25px;
			width: 100%;
			font-size: 1em;
			box-shadow: var(--inputField-shadow);
			background: transparent;
			border: var(--inputField-border);
			outline: none;
			border-radius: 5px;
			color: rgba(var(--greyColor), 1);

			&.short {
				width: 100px;
			}

			&.long {
				max-width: 500px;
			}
		}
	}
}




.cartSubTotal {
	text-align: right;
	font-size: 1.1em;
	font-weight: 500;
}

@media screen and (max-width: 519px) {
	& .infoCompilation {
		& .general {
			font-size: .8em !important;
		}
	}
}


.fullCart-listing > li  > .infoCompilation > .image {


}
.fullCart-listing > li  > .infoCompilation > .general {
	/*border: 1px solid red;*/



}
.fullCart-listing > li  > .infoCompilation > .quantity {
	max-width: 120px;
	/*border: 1px solid red;*/
	/*overflow: hidden;*/




}
.fullCart-listing > li  > .infoCompilation > .price {

	/*border: 1px solid blue;*/



}







.checkout-modules {

	& li {
		display: flex;
		flex: 1;
		margin: 5px 0;


		& label {
			display: flex;
			flex: 1;
			align-items: center;
			border: 1.2px solid rgba(var(--greyColor), .5);
			border-radius: var(--boxBorder-radius);

			& .selection {
				padding: 5px;
			}

			& .description {
				padding: 5px;
			}

			& .price {
				padding: 5px;
			}
		}

	}
	& label:hover {
		background-color: rgba(var(--greyColor), .1);
	}
}

#account-mainContent {
	.menuBoxes {
		display: grid;
		grid-gap: var(--boxGap);
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		font-size: .9em;

		& .menuBox {
			border: 1px solid rgba(var(--greyColor), .5);
			border-radius: 5px;

			& a {
				flex: 1;
				display: flex;
				align-items: center;
				padding: 10px 10px 10px 0;

				& i {
					flex: 0;
					padding: 0 10px 0 10px;
					font-size: 3em;
				}

				& span {
					flex: 1;
				}
			}
		}
	}
}

#address-mainContent {
	& .menuBoxes {
		display: grid;
		grid-gap: var(--boxGap);
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		font-size: .9em;

		& .menuBox {
			position: relative;

			& div {
				justify-content: space-between;

				& span {
					padding: 0 10px 0 0;
					font-weight: 300;
					line-height: 1.4em;
				}

				& button,
				& a.button-icon {
					border: 0;
					padding: 0 !important;
					margin: 0 !important;
					border-radius: 0;
					color: rgba(var(--greyColor), .5);
					background-color: rgba(255, 255, 255, 1);
					cursor: pointer;
				}

				& i {
					cursor: pointer;

					&.standard-info {
						font-size: 2em;
						color: rgba(var(--greenColor), .5);
						cursor: auto;
					}

					&.delete-button {
						font-size: 1.5em;
						color: rgba(var(--redColor), .3);
					}

					&.edit-button {
						font-size: 2em;
					}
				}

				& .edit-button-disabled {
					font-size: 2em;
					color: rgba(var(--greyColor), .1);
					cursor: not-allowed;
				}
			}

			& input[type="checkbox"][id^="remove-address-"]:checked + .remove-overlay {
				height: 100%;
			}

			& .remove-overlay {
				position: absolute;
				width: 100%;
				height: 0;
				top: 0;
				left: 0;
				overflow: hidden;
				justify-content: center;
				border-radius: var(--boxBorder-radius);
				background: var(--overlay-bg-white);
				transition: height .5s ease-in-out;

				& .buttons {
					font-size: .9em !important;

					& a {
						margin: 10px;
					}

					& label {
						margin: 10px;
					}
				}
			}
		}
	}
}

#accountHistory-mainContent {
	& .listBoxes {
		display: grid;
		grid-gap: var(--boxGap);
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		font-size: .9em;

		& .textRight {
			text-align: right;
		}

		& .textSmaller {
			font-size: .9em;
		}

		& .listBox {
			position: relative;

			& div {
				justify-content: space-between;

				& span {
					padding: 0 5px 0 0;
					font-weight: 300;
					line-height: 1.4em;
				}
			}

			& .shippingAddress {
				position: relative;
				max-height: 70px;
				margin-top: 10px;
				overflow: hidden;

				&::after {
					content: "";
					position: absolute;
					bottom: 0;
					left: 0;
					width: 100%;
					height: 3em; /* Höhe des Fade-Bereichs */
					background: linear-gradient(to top, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0));
					pointer-events: none; /* verhindert, dass Klicks blockiert werden */
				}
			}

			& .button {
				margin-top: 10px;
				justify-content: right;
			}
		}
	}

	& .details-generalInfo {
		padding: 10px;
		align-self: start;
	}

	& .details-addressInfo {
		padding: 10px;

		& h4 {
			margin-bottom: 5px;
			font-weight: 500;
			text-decoration: underline;
		}

		& span {
			margin-left: 5px;
		}
	}

	& .productListing {
		margin-bottom: 20px;

		& ul {
			& li {
				padding: 10px;
				border-bottom: 1px solid rgba(var(--greyColor), .3);

				&:last-child {
					margin-bottom: 0;
					border-bottom: 5px double rgba(var(--greyColor), .3);
				}
			}
		}

		& .quantity {
			display: inline-block !important;
			min-width: 50px;
			font-weight: 400;
			font-size: .9em;
			align-self: center;
		}

		& .name {
			margin-bottom: 2px;
			font-weight: 400;
			font-size: .9em;
		}

		& .model {
			font-weight: 300;
			font-size: .8em;
		}

		& .price {
			font-weight: 400;
			font-size: .9em;
		}
	}

	& .historyListing {
		margin-bottom: 20px;

		& ul {
			& li {
				padding: 10px;
				border-bottom: 1px solid rgba(var(--greyColor), .3);

				&:last-child {
					margin-bottom: 0;
					border-bottom: 5px double rgba(var(--greyColor), .3);
				}
			}
		}

		& .date {
			display: inline-block !important;
			min-width: 100px;
			font-weight: 400;
			font-size: .9em;
			align-self: center;
		}
		& .status {
			margin-bottom: 2px;
			font-weight: 400;
			font-size: .9em;
		}
		& .comment {
			font-weight: 300;
			font-size: .8em;
		}
	}

	& h3 {
		border-bottom: 1px solid rgba(var(--greyColor), .3);
		font-weight: 500;
		font-size: 1em
	}
}

.standardForm {
	& .fieldCompilation {
		flex: 1;
		flex-wrap: wrap;
		column-gap: var(--formFieldGap);
	}
}
.standardForm label {
	position: relative;
	--padding: 10px;
	--height: 40px;
	font-size: 1em;
	font-weight: 300 !important;
}



.standardForm label > textarea {
	display: block;
	width: 100%;
	resize: none;
	height: 250px;
	padding: 10px;
	font-family: inherit;
	box-shadow: var(--inputField-shadow);
	border: var(--inputField-border);
	outline: none;
	border-radius: 5px;

	&.small {
		height: 100px !important;
	}

	&:focus,
	&:not(:placeholder-shown) {
		& + i, & + i:after {
			content: '';
			transform: translateY(calc(-.45 * var(--height))) scale(.9);
			transition: transform .4s, color 1s;
			background-color: rgba(255, 255, 255, 1);
			font-weight: 400 !important;
			color: rgba(var(--greyColor), .7) !important;
		}
	}
}

.standardForm label.textarea {
	position: relative;

	& i {
		position: absolute;
		--left: calc(.9 * var(--padding));
		top: 10px;
		left: var(--left);
		transition: transform .4s;
		pointer-events: none;
		transform-origin: left;
		color: rgba(var(--greyColor), 1);

	}

	&.error > textarea {
		border: var(--inputField-error-border);
		box-shadow: var(--inputField-error-shadow);
	}

	&.error > i {
		color: rgba(var(--inputError-red), 1);
	}

}
label.textarea.required > i:after {
	content: ' *';
}






.standardForm label:before {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;

	--left: calc(.5 * var(--padding));
	content: attr(aria-label);

	top: calc(.5 * var(--height) - .5lh);
	left: var(--left);
	max-width: calc(100% - 2 * var(--left));
	transition: transform .4s, color 1s;


	margin: 0 calc(.5 * var(--padding));

	pointer-events: none;
	transform-origin: left;
	border-radius: .8em;

}
.standardForm label > input {
	display: block;
	padding: 0 var(--padding);
	height: var(--height);
	width: 100%;
	font-size: 1em;
	box-shadow: var(--inputField-shadow);
	background: transparent;
	border: var(--inputField-border);
	outline: none;
	border-radius: 5px;
	color: rgba(var(--greyColor), 1);
}

.standardForm label > input:autofill,
.standardForm label > textarea:autofill {
	box-shadow: inset 0 0 0 666vw rgba(255, 255, 255, 1);
}
.standardForm label > input::placeholder {
	color: transparent;
}

.standardForm label.required:before {
	content: attr(aria-label) ' *';
}

.standardForm label {
	&.error {
		color: rgba(var(--redColor), .5);
		font-weight: 600 !important;

		& input {
			border: var(--inputField-error-border);
			box-shadow: var(--inputField-error-shadow);
			color: rgba(var(--inputError-red), 1);
			font-weight: 400 !important;
		}
	}

	&:has(input:focus):before,
	&:has(input:autofill):before,
	&:has(:not(input:placeholder-shown)):before {
		content: attr(aria-label);
		transform: translateY(calc(-.5 * var(--height))) scale(.9);
		background-color: rgba(255, 255, 255, 1);
		color: rgba(var(--greyColor), .7);
		font-weight: 400 !important;
	}
}


.standardForm .standardBox {
	position: relative;
	width: 100%;
	padding: 15px 10px 10px 10px;
	background: transparent;
	border: 1.2px solid rgba(var(--greyColor), .5);
	border-radius: 5px;
	box-shadow: inset 1px 2px 5px rgba(var(--greyColor), 0.07);
}
.standardForm .standardBox > label {

	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;

	--left: calc(.5 * var(--padding));

	top: calc(.5 * var(--height) - .5lh);
	left: var(--left);
	max-width: calc(100% - 2 * var(--left));
	transform: translateY(calc(-.5 * var(--height))) scale(.9);


	padding: 0 calc(.5 * var(--padding));
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
	transform-origin: left;
	border-radius: .8em;
	background-color: rgba(255, 255, 255, 1);

}

.manual-form-gap {
	margin-bottom: var(--formFieldGap);
}


select {
	flex: 1;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	box-shadow: inset 1px 2px 5px rgba(var(--greyColor), 0.07);
	background: rgba(255, 255, 255, 1);
	border: 1.2px solid rgba(var(--greyColor), .5);
	outline: 0;
	cursor: pointer;
	font-family: "Roboto", serif !important;
	font-size: 1em !important;
	font-weight: 300 !important;
	font-style: normal !important;
	color: rgba(var(--greyColor), 1);

	& option {
		color: rgba(var(--greyColor), 1);
		font-size: 1em !important;
		font-family: "Roboto", serif !important;
		font-weight: 300 !important;
	}

	&.error {
		border: var(--inputField-error-border);
		box-shadow: var(--inputField-error-shadow);
		color: rgba(var(--inputError-red), 1);
		font-weight: 600 !important;
	}


}

select::-ms-expand {
	display: none;
}
.dropdown-standard {
	display: flex;
	position: relative;
	height: 2.5em;
	background: rgba(255, 255, 255, 1);
	border-radius: .25em;
	overflow: hidden;
	line-height: 2.5;
}
.dropdown-standard::after {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 1em;
	content: '\25BC';
	cursor: pointer;
	pointer-events: none;
	transition: .25s all ease;
	border-left: 1px solid rgba(var(--greyColor), .3);
}
.dropdown-standard:hover::after {
	color: rgba(var(--purpleColor), 1);
}







.smallInfo {
	padding-top: 5px;
	font-size: .7em;
}

.informationText {
	padding: 0 0 10px 0;
	font-size: .9em;
}


.cart-button {
	flex: 1;
	padding: 5px;
	text-align: center;
	font-size: .9em;
	box-shadow: 1px 2px 5px rgba(var(--greyColor), 0.3);
}


.button-normal {
	background-color: rgba(var(--purpleColor), 1);
}
.button-light {
	background-color: rgba(var(--purpleColor), .5);


}
.main-infoText {
	padding: 0 10px 10px 10px;
}

.spacer-10 {
	height: 10px;
}

#pagingMain {
	font-size: .8em;
	flex-wrap: wrap;




	& .description {
		padding: 5px;
		color: rgba(var(--greyColor), .6);
		white-space: pre;       /* genau wie eingegeben */
	}

	& .buttons {
		column-gap: 5px;
		text-align: right;
		flex: 1 1 auto;

		& .pageResults-browse {
			padding: 10px 10px;
			border: 1px solid rgba(var(--greyBorder));
			border-radius: 5px;
			font-size: 1em;

			&.active {
				background-color: rgba(var(--purpleColor), .5);
				color: rgba(255, 255, 255, 1);
			}

			&.icon {
				padding: 5px;
			}

			&:hover {
				background-color: rgba(var(--purpleColor), .5);
				color: rgba(255, 255, 255, 1);
			}

			& i {
				font-size: 1.2em;
				padding-top: 3px;
			}
		}
	}
}
/* allgemein */

/* header */
#headerTopMenu > ul > li.language-overlay,
#headerTopMenu > ul > li.account-overlay,
#headerTopMenu > ul > li.cart-overlay {
	position: relative;
	cursor: pointer;
}
#headerTopMenu > ul > li.language-overlay > .overlay,
#headerTopMenu > ul > li.account-overlay > .overlay,
#headerTopMenu > ul > li.cart-overlay > .overlay {
	display: none;
	position: absolute;
	min-width: 160px;
	padding: 10px;
	right: 0;
	border: 1px solid rgba(var(--greyColor), .3);
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}
#headerTopMenu > ul > li.language-overlay:hover > .overlay,
#headerTopMenu > ul > li.account-overlay:hover > .overlay,
#headerTopMenu > ul > li.cart-overlay:hover > .overlay {
	display: block;
}

#headerTopMenu > ul > li.language-overlay > ul > li {
	margin-bottom: 2px;

	&:last-child {
		margin-bottom: 0;
	}
}
#headerTopMenu > ul > li.language-overlay > ul > li > a {
	padding: 2px;
	align-items: center;
	justify-content: center;
}
#headerTopMenu > ul > li.language-overlay > ul > li > a > div.flag {
	padding: 5px;
}
#headerTopMenu > ul > li.language-overlay > ul > li > a > span.name {
	flex: 1;
	font-weight: 500;
	font-size: .9em;
}


header {
	align-items: center;

	& #headerTopMenu {
		margin: 5px;
		color: rgba(var(--greyColor), 1);
		font-size: .9em;

		& ul {
			padding: 0 10px;
			align-items: center;
			column-gap: 20px;

			& li {
				& a {
					align-items: center;
					justify-content: center;

					& i {
						position: relative;
						font-size: 1.5em;
						margin: 0;
						padding: 0;
					}

					& span {
						max-width: 100px;
						margin-left: 3px;
						overflow: hidden;
						transition: max-width 1s ease;

						@media screen and (max-width: 768px) {
							max-width: 0;
						}
					}
				}
			}
		}
	}

	& #headerMiddleMenu {
		margin: 0 5px;
		padding: 5px 0;

		& .compilation {
			position: relative;
			padding: 0 10px;
			align-items: center;
			gap: 10px;

			& .companyLogo {
				max-width: 300px;
				max-height: 70px;
				margin-left: 1px;
				overflow: hidden;
				justify-content: center;
				transition: max-width 1s ease-in-out;

				@media screen and (max-width: 768px) {
					max-width: 100%;
					flex: 1;
				}

				& img {
					max-width: 100%;
					max-height: 100%;
					object-fit: contain;
				}
			}
			& input[type="checkbox"]:checked {
				& + .searchBarCompilation {
					/*max-height: 100px;/*
     /*overflow: visible;*/
					display: block;

				}

			}


			& .searchBarCompilation {
				position: relative;
				margin-left: 40px;
				/*overflow: hidden;*/
				/*transition: max-height 1s ease;*/
				/*max-height: 100px;*/

				@media screen and (max-width: 768px) {
					position: absolute;

					width: calc(100% - 20px);
					/*max-height: 0;*/
					top: calc(100% + 5px);
					/*left: 10px;*/
					margin: 0;
					padding: 0;
					/*overflow: hidden;*/
					display: none;
				}

				& #fastSearch-result {
					position: absolute;
					width: 100%;
					max-height: 80vh;
					top: 100%;
					background-color: white;
					z-index: 900;
					transition: max-height 1s ease;
					overflow-y: auto;


					& #fastSearch-resultList {
						gap: 5px;
						color: rgba(var(--greyColor));
						/*border: 1px  solid rgba(var(--greyBorder));
      border-radius: 5px;*/

						& li {

							& section.compilation {
								padding: 5px;
								overflow: hidden;

								& figure.image {
									width: 50px;
									height: 50px;
									padding: 5px;
									overflow: hidden;
									border: var(--inputField-border);
									border-radius: 5px;

									& img {
										width: 100%;
										height: auto;
										object-fit: cover;
									}
								}

								& h3 {
									font-size: .8em;
									font-weight: 500;
								}

								& .model {
									font-size: .8em;
									font-weight: 200;
								}
							}

							& section.attributes {
								margin: 5px 0;
								font-size: .7em;
								column-gap: var(--boxGap);


								& div {

									/*white-space: nowrap;*/

								}
							}




							& section.buy-details {
								padding: 0 5px;
								column-gap: var(--boxGap);
								font-size: .8em;
								& .stock {
								}

								& .price {
									text-align: center;
									font-weight: 500;


								}

								& .button {
									text-align: right;

									& i {
										font-size: 2em;

									}
								}


							}

							& i.small {
								font-weight: 200;
								font-style: italic;
							}


						}
					}
				}




				& .searchBar {
					box-shadow: inset 1px 2px 5px rgba(var(--greyColor), 0.07);
					border: 1px solid rgba(var(--greyColor), .5);
					outline: none;
					border-radius: 5px;
					background-color: rgba(255, 255, 255, 1);

					@media screen and (max-width: 768px) {
						border-top-left-radius: 0;
						border-top-right-radius: 0;
						border-bottom-left-radius: 5px;
						border-bottom-right-radius: 5px;
					}

					& input {
						flex: 1;
						margin: 5px 0 5px 0;
						/*width: 100%;
                           height: 100%;*/
						border: 0;
						font-size: .9em;
					}

					& .searchBarButton {
						min-width: 28px;
						min-height: 28px;
						margin: 5px 10px 5px 5px;
						font-size: 2em;
						/*background-image: url(images/icons/magnifier.png);
                           background-repeat: no-repeat;
                           background-position: center;
                           background-size: contain;*/
						color: rgba(var(--greyColor), .4);
					}

					& #fastSearch-resetButton {
						margin: 5px 5px 5px 10px;
						padding: 0;
						background-color: rgba(255, 255, 255, 1);

						& i {
							font-size: 2em;
							color: rgba(var(--greyColor), .4);
						}
					}
				}


			}

			& .contactInfo {
				margin-left: 40px;
				padding-left: 45px;
				background-image: url(images/icons/phone.png);
				background-repeat: no-repeat;
				background-position: left;
				background-size: contain;
				font-size: .9em;

				& b {
					font-size: 1.2em;
				}
			}


		}
	}

}

section.login-details {
	padding: 5px 0;
	font-size: .8em;

	& .text-link {
		font-weight: bold;
		color: rgba(var(--redColor), .5);
	}
}

#headerMiddleMenu > .compilation > .menuButton_h {
	display: none;


	font-size: 3em;
	cursor: pointer;



	@media screen and (max-width: 991px) {
		display: block;
	}
}
#headerMiddleMenu > .compilation > .searchButton_h {
	display: none;
	/*margin: 7px 10px 5px 10px;*/
	font-size: 2.5em;
	cursor: pointer;

	@media screen and (max-width: 768px) {
		display: block;
	}
}

#headerBottomMenu {
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: rgba(var(--purpleColor), 1);
	color: rgba(255, 255, 255, 1);
	transition: max-height 0.5s ease-in-out;

	& .catListing {
		position: relative;
		align-items: center;
		justify-content: center;
		margin: 0 5px 0 5px;

		& ul.main-catgeories {
			column-gap: 10px;
			font-size: 1.1em;

			& .mainCategories {
				position: relative;
				padding: 10px 0 5px 5px;

				& a {
					color: rgba(255, 255, 255, 1);
				}

				&.active {
					background-color: rgba(255, 255, 255, 1);
					box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .2);
					color: rgba(0, 0, 0, .5);

					& label {
						border-bottom: 2px solid rgba(255, 255, 255, 1);
					}
				}

				& label {
					padding: 0 5px 5px 5px;
					border-bottom: 2px solid rgba(var(--purpleColor), 1);
					cursor: pointer;

					&:hover {
						padding: 0 5px 5px 5px;
						border-bottom: 2px solid rgba(255, 255, 255, 1);
					}

					& span {
						margin: 0;
						padding: 0;
					}
				}
			}
		}


		& .subCategoriesOverlay {
			display: flex;

			& .subCategories {
				display: none;
				position: absolute;
				width: calc(100% - calc(var(--boxGap)*2));
				top: 90%;
				left: 0;
				grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
				align-items: start;
				gap: var(--boxGap);
				padding: var(--boxGap);
				border-bottom-left-radius: 5px;
				border-bottom-right-radius: 5px;
				border-left: 1px solid rgba(var(--greyColor), .3);
				border-right: 1px solid rgba(var(--greyColor), .3);
				border-bottom: 1px solid rgba(var(--greyColor), .3);
				background-color: rgba(255, 255, 255, 1);
				box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, .2);
				z-index: 1;

				@media screen and (max-width: 991px) {
					position: relative;
					flex: 1;
					padding: 5px 5px;
				}

				& .subCat {
					border: 1px solid rgba(var(--greyColor), .3);
					border-radius: var(--boxBorder-radius);

					& .header {
						padding: 5px;
						text-align: center;
						font-size: .8em;

						&:hover {
							background-color: rgba(var(--greyColor), .1);
						}
					}

					& .image {
						& img {
							width: 100%;
							height: auto;
							object-fit: cover;
							border-bottom-left-radius: 5px;
							border-bottom-right-radius: 5px;
						}
					}
				}

				& ul.secondSubCategories {
					background-color: rgba(255, 255, 255, 1);
					border-bottom-left-radius: 5px;
					border-bottom-right-radius: 5px;
					vertical-align: top;

					& li.catName {
						border-bottom: 1px solid rgba(var(--greyColor), .2);
						font-size: .7em;
						color: rgba(var(--greyColor), .8);

						& a {
							padding: 5px;

							&:hover {
								background-color: rgba(var(--greyColor), .1);
							}
						}

						&:first-child {
							border-top: 1px solid rgba(var(--greyColor), .2);
						}

						&:last-child {
							border-bottom: none;
						}
					}
				}
			}

			& input[type="checkbox"]:checked ~ .subCategories {
				display: grid;
			}
		}
	}
}









@media screen and (max-width: 991px) {
	#headerMiddleMenu {
		box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .2);
	}
	#headerMiddleMenu > .compilation > .companyLogo {
		width: 300px;
		height: 70px;
	}

	#headerMiddleMenu > .compilation > .contactInfo {
		display: none;
	}

	#headerBottomMenu {
		max-height: 0;
		overflow: hidden;
	}

	header input[type="checkbox"]:checked + #headerBottomMenu {
		max-height: 1000px;
		overflow: scroll;
	}

	#headerBottomMenu .catListing {
		align-items: flex-start;
		justify-content: left;
		margin: 0 5px;
	}

	#headerBottomMenu .catListing ul.main-catgeories {
		display: flex;
		flex: 1;
		flex-direction: column;
		font-size: 1em;
	}
}
/* header */

/* content */
main {
	flex: 1;
	align-items: center;
	justify-content: flex-start;
}
#contentMain,
#formContentMain {
	flex: 1;
	margin: 10px;
	padding: 0 10px;
}
#rotationBannerMain {
	width: 100%;
	height: 100%;
}
#rotationBannerMain > picture {
	width: 100%;
}
#rotationBannerMain > picture > img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

#breadcrumbMain {
	padding-bottom: 10px;
	font-size: .8em;
}
#breadcrumbMain > ul {
	display: inline-flex;
	justify-content: flex-end;
	overflow: hidden;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}
#breadcrumbMain > ul > li {
	display: inline-block;
	padding: 0;
	margin: 0;
}
#breadcrumbMain > ul > li:after {
	display: inline-block;
	margin: 0 .3em;
	content: '>';
}
#breadcrumbMain > ul > li:last-child:after {
	display: none;
	content: '';
}

#contentMain .listCategoriesMain {
	margin-top: 10px;
}
#contentMain .listCategoriesMain .listCategories {
	flex: 1;
	flex-wrap: wrap;
	gap: 20px;
}
#contentMain ul.listCategories li {
	flex: 1;
	min-width: 200px;
	border: 1px solid rgba(var(--greyColor), .3);
	border-radius: var(--boxBorder-radius);

}
#contentMain ul.listCategories .catListHeader {
	padding: 5px;
	text-align: center;
}
#contentMain ul.listCategories .catListImage {
	& img {
		width: 100%;
		height: auto;
		object-fit: cover;
		border-bottom-left-radius: 5px;
		border-bottom-right-radius: 5px;
	}
}

@media screen and (max-width: 768px) {
	.breadcrumbMain > .breadcrumb {
		font-size: .8em;
	}
	#contentMain ul.listCategories li {
		min-width: 150px;
	}
	#contentMain ul.listCategories .catListHeader {
		font-size: .8em;
	}
}
#productsContentMain {
	flex: 1;
}

/* Filter */
#productsFilterMain {
	width: 250px;
	padding-bottom: 10px;
	margin-right: 5px;
	user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	-moz-user-select: -moz-none;
	border-right: 1px solid rgba(var(--greyColor), .1);
}
#productsFilterMain .toggleHeadline {
	flex: 0;
	padding: 5px;
	background-color: rgba(var(--greyColor), .1);
	border-top: 1px solid rgba(var(--greyColor), .1);
	border-bottom: 1px solid rgba(var(--greyColor), .1);
	border-left: 1px solid rgba(var(--greyColor), .1);
	font-weight: 500;
	font-size: .9em;
}
#productsFilterMain > .productsFilterOutput {
	flex: 1;
	position: relative;
	transition: max-height 0.5s ease-in-out;
}
#toggle-filterMenu-1:checked ~ label ~ .productsFilterOutput {
	max-height: 2000px;
}


#productsFilterContent {
	flex: 1;
	padding: 5px;

	& .optionHeader {
		padding: 10px 0;
		align-items: center;
		font-weight: 500;
		font-size: .8em;
		cursor: pointer;
		user-select: none;

		& i {
			&.bx-minus {
				display: none;
			}

			&.bx-plus {
				display: inline-block;
			}
		}
	}

	& ul.gridItems {
		max-height: 0;
		overflow: hidden;
		gap: 10px;
		transition: max-height 0.5s ease-in-out;

		& li.gridItem > label {
			display: block;
			padding: 5px 10px 5px 10px;
			border: 1px solid rgba(var(--greyColor), .2);
			border-radius: 10px;
			font-size: .8em;
			cursor: pointer;
		}

		& li.gridItem > input:disabled + label {
			background-color: rgba(var(--greyColor), .2);
			color: rgba(var(--greyColor), .5);
			cursor: not-allowed;
		}

		& li.gridItem > input[type=checkbox]:checked + label {
			background-color: rgba(var(--purpleColor), 1);
			color: rgba(255, 255, 255, 1);
		}
	}

	& .dropdownContainer {
		position: relative;
		width: 100%;
		max-height: 0;
		gap: 10px;
		overflow: hidden;
		font-size: .8em;
		transition: max-height 0.5s ease-in-out;

		& .dropdownInput {
			width: 100%;
			padding: 8px;
			border: 1px solid rgba(var(--greyBorder));
			border-radius: 4px;
		}

		& .no-results {
			padding: 8px;
			color: #999;
		}

		& .filterList {
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			border: 1px solid rgba(var(--greyBorder));
			border-radius: 4px;
			background: white;
			display: none;
			z-index: 1000;

			&.show {
				display: block;
				overflow-y: auto;
				max-height: 350px;
			}

			& .listItem {
				padding: 8px;
				cursor: pointer;

				&:hover {
					background-color: #f0f0f0;
				}

				&[disabled] {
					color: #aaa;
					cursor: not-allowed;
					background-color: #f9f9f9;

					&:hover {
						background-color: #f9f9f9;
					}
				}
			}
		}
	}

	& input[type="checkbox"]:checked {
		& + label {
			& i {
				&.bx-minus {
					display: inline-block;
				}

				&.bx-plus {
					display: none;
				}
			}

			& + ul, & + .dropdownContainer {
				max-height: none;
				overflow: visible;
			}
		}
	}
}

#productsFilterForm > noscript > .filterSubmit_set {
	width: 100%;
	margin: 10px 0 5px 0;
	background-color: rgba(var(--purpleColor), 1);
	font-size: 1.1em;
	color: rgba(255, 255, 255, 1);
}
#productsFilterForm > noscript > .filterSubmit_reset {
	width: 100%;
	padding: 2px;
	background-color: rgba(var(--purpleColor), .5);
	font-size: 1.1em;
	color: rgba(255, 255, 255, 1);
}


@media screen and (max-width: 768px) {
	#contentMain > #productsContentMain {
		display: flex;
		flex-direction: column;
	}

	#productsFilterMain {
		width: auto;
		padding-bottom: 0;
		border: 0;
		margin: 0;
	}

	#productsFilterContent {
		border: 1px solid rgba(var(--greyColor), .1);
	}

	#productsFilterMain > .toggleHeadline {
		display: flex;
		padding: 5px;
		cursor: pointer;
		border: 1px solid rgba(var(--greyColor), .1);
		/*background-color: rgba(var(--purpleColor), 1);
              font-size: .8em;
              color: rgba(255, 255, 255, 1);*/
	}

	#productsFilterMain > .toggleHeadline > .sign-plus {
		display: block;
	}

	#productsFilterMain > .productsFilterOutput > #loadOverlay {
		display: none;
	}

	#productsFilterMain > .productsFilterOutput {
		max-height: 0;
		overflow: hidden;
	}
}
/* Filter */

#listProducts-list > .header {
	flex: 1;
	gap: 10px;
	justify-content: flex-end;
}

#listProducts-list > .header > .sortBy,
#listProducts-list > .header > .listQty {
	position: relative;
	height: 35px;
	/*width: 200px;*/
	margin: 0 0 5px 0;
	border: 1px solid rgba(var(--greyColor), .3);

}
#listProducts-list > .header > .sortBy > span,
#listProducts-list > .header > .listQty > span {
	position: absolute;
	top: -6px;
	left: 5px;
	padding: 0 5px 0 5px;
	background-color: rgba(255, 255, 255, 1);
	font-size: .7em;

	color: rgba(var(--greyColor), .8);

}
#listProducts-list > .header > .sortBy > select,
#listProducts-list > .header > .listQty > select {
	width: auto;
	min-width: 150px;
	height: 100%;
	padding-top: 5px;
	background-color: rgba(255, 255, 255, 1);
	border: 0;
	cursor: pointer;
	font-weight: 300;
	font-size: .9em;
	padding-left: 15px;
	padding-right: 5px;
	box-shadow: 1px 2px 3px -2px rgba(0,0,0,0.3);
	border-radius: 3px;
	color: rgba(var(--greyColor), 1);
}
#listProducts-list > .header > .listQty > select {
	min-width: 60px;
}
#listProducts-list > .header > .listingType {
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

#listProducts-list > .header > .listingType > .list-as-list {
	width: 24px;
	height: 24px;
	margin: 5px;
	background-image: url(images/icons/list.png);
	background-size: contain;
}
#listProducts-list > .header > .listingType > .list-as-grid {
	width: 24px;
	height: 24px;
	margin: 5px;
	background-image: url(images/icons/grid.png);
	background-size: contain;
}


#listProducts-list {
	flex: 1;
	padding: 0 0 5px 0;

	& ul#listProducts {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: var(--boxGap);

		& > li {
			height: 100%;
			border: 1px solid rgba(var(--greyBorder));
			border-radius: var(--boxBorder-radius);

			& .image {
				max-width: 120px;
				height: 120px;
				margin: 5px;
				overflow: hidden;

				& img {
					width: 100%;
					height: auto;
					object-fit: cover;
					border-radius: 5px;
				}
			}

			& section.productInformation {
				margin: 5px;

				& h3 {
					font-size: 1em;
					font-weight: 500;
				}

				& .model {
					margin-top: 3px;
					font-size: .8em;
					font-weight: 300;
				}

				& .categorieInfo {
					margin-top: 5px;
					font-size: .8em;
					font-weight: 300;
				}
			}

			& section.attributes {
				display: grid;
				grid-auto-flow: column;
				grid-template-rows: repeat(3, auto);
				grid-auto-columns: calc((100% - 1em) / 3);
				gap: .5em;
				margin: 5px;
				padding: 5px;
				overflow: hidden;
				font-size: .8em;

				&.show {
					/*border: 1px solid rgba(var(--greyBorderIndiv), .2);
					border-radius: 5px;*/
				}

				& div {
					flex-wrap: wrap;
					align-items: flex-start;
					white-space: wrap;

					& span {
						margin: 0 5px 2px 0;
						font-style: italic;
						font-weight: 500;
					}

					& ul {
						display: flex;
						gap: 0.25em;
						list-style: none;
						padding: 0;
						margin: 0;

						& li {

							&::after {
								content: ' / ';
							}

							&:last-child::after {
								content: '';
							}
						}
					}
				}
			}
		}

		& .additionalInfos {
			margin: 5px;
			gap: 5px;

			& .manufacturer {
				font-size: .8em;
			}

			& .stock {
				display: grid;
				grid-template-columns: auto auto 1fr;
				gap: .5em .5em;
				align-items: start;
				font-size: .8em;

				& .label {
					padding: 2px 0;
				}

				& .quantity {
					& > li {
						padding: 2px 0 2px 0;
						text-align: right;
					}
				}

				& .info {
					& > li {
						padding: 2px 5px;
					}
				}
			}
		}

		& section.buy-details {
			padding: 5px;

			& .price {
				font-size: 1.3em;
				font-weight: 400;
				text-align: right;
				font-style: italic;
				margin-right: 15px;

				& i.label {
					font-size: .7em;
					font-weight: 400;
				}
				& i.small {
					font-size: .7em;
					font-weight: 300;
				}
			}

			& .buttons {
				padding: 5px;
				align-items: end;
				justify-content: end;
				font-size: .8em !important;
			}
		}
	}
}

@media screen and (max-width: 768px) {
	#listProducts-list > .header > .listingType {
		display: none;
	}
	#listProducts-list > .header {
		/*flex-flow: row-reverse;*/
		padding: 10px 0 10px 0;
	}
}

section.button-back {
	display: inline-block;
}

#product-info {
	& .product-image {
		max-width: 250px;
		height: 250px;
		width: 100%;
		overflow: hidden;

		& img {
			width: 100%;
			height: auto;
			margin: 5px;

			object-fit: cover;
			border-radius: 5px;
		}
	}

	& .productInformation {
		padding: 10px;

		& .manufacturer {
			padding: 10px 0;
			font-size: .8em;
			font-weight: 300;
		}

		& h3 {
			font-size: 1.2em;
			font-weight: 500;
		}

		& p {
			font-size: .9em;
			font-weight: 400;
		}

		& .options {
			gap: 5px;
			font-size: .8em;
			font-weight: 300;
		}
	}

	& .priceInformation {
		display: grid;
		grid-template-columns: repeat(1, max(1fr));
		padding: 10px;
		align-content: start;
		max-width: 490px;
		column-gap: 10px;

		@media screen and (max-width: 820px) {
			grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
			margin-left: auto;
		}

		& i.label {
			width: 100%;
			margin-right: 10px;
			font-size: .8em;
			font-weight: 200;
		}

		& .labelDesc {
			margin-left: 5px;
		}

		& .stock {
			display: grid;
			grid-template-columns: auto 1fr;
			gap: .5em .5em;
			align-items: start;
			margin-left: 5px;
			font-size: .8em;

			& .quantity {
				& > li {
					padding: 2px 0 2px 0;
					text-align: right;
				}
			}

			& .info {
				& > li {
					padding: 2px 5px;
				}
			}
		}

		& .price {
			margin: 5px 0;
			font-size: 1.2em;
			font-weight: 400;
			font-style: italic;

			& i.small {
				font-size: .7em;
				font-weight: 300;
			}
		}

		& .quantityInput {
			margin: 5px 0;
		}

		& .buttons {
			margin: auto 0 5px 5px;
			align-self: flex-start;
		}
	}
}



/* content */

/* footer */
footer {
	align-items: center;

	& .menuCompilation {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));

		@media screen and (max-width: 519px) {
			grid-template-columns: repeat(1, 1fr);
		}

		& .menuGroup {
			min-width: 250px;

			& .menuList {
				margin: 10px;
				@media screen and (max-width: 519px) {
					flex: 1 1 100%;
				}

				#toggle-footerMenu-1:checked ~ label ~ .footerMenu-1,
				#toggle-footerMenu-2:checked ~ label ~ .footerMenu-2,
				#toggle-footerMenu-3:checked ~ label ~ .footerMenu-3,
				#toggle-footerMenu-4:checked ~ label ~ .footerMenu-4 {
					max-height: 200px;
				}

				#toggle-footerMenu-1:checked ~ label > .toggleSign,
				#toggle-footerMenu-2:checked ~ label > .toggleSign,
				#toggle-footerMenu-3:checked ~ label > .toggleSign,
				#toggle-footerMenu-4:checked ~ label > .toggleSign {
					transform: rotate(180deg);
				}

				& .toggleHeadline {
					font-size: .9em;

					& .description {
					}
					& .toggleSign {
						margin: 0;
						padding: 0;
						display: none;
						font-size: 1.5em;
						transition: transform .3s ease-in-out;
						@media screen and (max-width: 519px) {
							display: inline-block;
							transform-origin: center;
						}
					}
				}
				& ul {

					transition: max-height 0.5s ease-in-out;

					@media screen and (max-width: 519px) {
						max-height: 0;
						overflow: hidden;
					}

					& li {
						margin: 5px;
						font-size: .9em;
					}
				}
			}
		}
	}
}

#cookiesMain {
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: fixed;
	transform: translateY(100%);
	background-color: rgba(255, 255, 255, 1);
	padding: 10px;
	margin: 0 10px;
	right: 120px;
	border: 5px solid rgba(var(--purpleColor), .5);
	animation: 2s slide-up forwards;
	bottom: 0;

	& .bx-cookie {
		font-size: 7em;
	}
}

@keyframes slide-up {
	from {}
	to {
		transform: translateY(0);
	}
}

#cookiesMain > span {
	flex: 1;
	justify-content: center;
	min-width: 250px;
	padding: 15px 15px;
	font-size: .9em;
	line-height: 1.5em;
}
#cookiesMain > .buttons {
	gap: 10px;
	min-width: 250px;
}
@media screen and (max-width: 768px) {
	#cookiesMain > i {
		display: none;
	}

	#cookiesMain > .text {
		font-size: .8em;
	}
}
/* footer */


.infoText {
	padding: 0 10px 0 0;
	font-size: .9em;
	font-weight: 300;
	line-height: 1.5em;

	& i {
		&.header {
			display: inline-block;
			padding-bottom: 5px;
			font-size: 1em;
			font-weight: 400;
		}

		&.text {
			font-size: 1em;
			line-height: 2em;
		}

		&.icon {
			font-size: 1.5em;
		}
	}
}

#mainContent, #mainCompilation {
	flex: 1;
}



#halfContent-left {
	flex: 1;
	min-width: 250px;
	padding: 0 20px 20px 0;
	border-right: 1px solid rgba(var(--greyColor), .1);
}
#halfContent-right {
	flex: 1;
	min-width: 250px;
	padding: 0 0 20px 20px;
}
#content-left-twentyFive-p {
	flex: 1;
	min-width: 250px;
	padding: 0 20px 20px 0;
	border-right: 1px solid rgba(var(--greyColor), .1);
	border-bottom: 0;
}
#content-right-seventyFive-p {
	flex: 2;
	min-width: 250px;
	padding: 0 0 20px 20px;
}




@media screen and (max-width: 768px) {
	#mainContent, .mainContent, #mainCompilation {
		flex-direction: column;
	}

	#halfContent-left, #content-left-twentyFive-p {
		flex: 0 0 auto;
		padding: 0 0 10px 0;
		margin: 0 0 20px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(var(--greyColor), .1);

	}

	#halfContent-right, #content-right-seventyFive-p {
		padding: 0 0 10px 0;
	}
}




#mainContent, .mainContent {
	& h2 {
		padding-bottom: 5px;
		margin-bottom: 10px;
		border-bottom: 1px solid rgba(var(--greyColor), .3);
		font-weight: 500;
		font-size: 1.1em
	}
}




.input-group {
	position: relative;
	margin: 20px 0;
}

.input-group label {
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	font-size: 16px;
	/*color: #fff;*/
	padding: 0 5px;
	pointer-events: none;
	transition: .5s;
}

.input-group input {
	width: 320px;
	height: 40px;
	font-size: 16px;
	/*color: #fff;*/
	padding: 0 10px;
	background: transparent;
	border: 1.2px solid rgba(0,0,0,1);
	outline: none;
	border-radius: 5px;
}


.input-group input:focus~label,
.input-group input:valid ~ label,
	/*.input-group input:valid~label,*/
.input-group input:has(input:focus):before ~ label
.input-group input:has(input:autofill):before ~ label
.input-group input:has(:not(input:placeholder-shown)):before ~ label

{
	transform: translateY(calc(-.5 * var(--height))) scale(.8);
	/*top: 0;*/
	font-size: 12px;
	/*background: #7d2ae8;*/
}

/*
      label:has(input:focus):before,
      label:has(input:autofill):before,
      label:has(:not(input:placeholder-shown)):before {
          transform: translateY(calc(-.5 * var(--height))) scale(.8);
      }
      */

.input-group input:valid~label > span {
	display: none;
}
















/* MessageStack */
.messageStackOutput {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	margin: 0 0 10px 0;
	border: .1em solid;
	border-radius: 5px;
	cursor: default;
}
.messageStackOutput.error {
	background: #ffecec;
	border-color: #fad9d7;

	& ul {
		margin-left: 15px;
		list-style: disc;

		& li {
			line-height: 1.4em;
		}
	}
}
.messageStackOutput.error .icon {
	background-image: url(images/icons/error.png);
}
.messageStackOutput.warning {
	background: #fff8c4;
	border-color: #f7deae;
}
.messageStackOutput.warning .icon {
	background-image: url(images/icons/warning.png);
}
.messageStackOutput.success {
	background: #e9ffd9;
	border-color: #D1FAB6;
}
.messageStackOutput.success .icon {
	background-image: url(images/icons/success.png);
}
.messageStackOutput.question {
	background-color: #e3f7fc;
	border-color: #8ed9f6;
}
.messageStackOutput.question .icon {
	background-image: url(images/icons/question.png);
}

.messageStackOutput .icon {
	width: 1.5em;
	height: 1.5em;
	padding: .2em;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.messageStackOutput .message {
	flex: 1;
	margin: 0 5px 0 5px;
	font-family: Tahoma,Geneva,Arial,sans-serif;
	font-size: .9em;
	color: #555;
}
/* MessageStack */

#listProducts-special {}
/*.productsListMainBoxHeader {
          padding: 10px;
      }*/



#listProducts-grid {

	& ul {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: var(--boxGap);
		font-size: .9em;

		& li {
			height: 100%;
			border: 1.2px solid rgba(var(--greyBorder));
			border-radius: var(--boxBorder-radius);

			& .header {
				padding: 5px;
				background: var(--boxHeaderBG);
			}

			& .image {
				max-width: 100px;
				height: 100px;
				margin: 0px 5px 5px 5px;
				overflow: hidden;

				& img {
					width: 100%;
					height: auto;
					object-fit: cover;
					border-radius: 5px;
				}
			}

			& section.buy-details {
				padding: 0 5px 0 5px;

				& .stock {
					padding: 0 5px 5px 5px;
					text-align: right;
					font-weight: 300;
				}

				& .price {
					padding: 5px;
					font-size: 1.3em;
					font-weight: 300;
					text-align: right;
					font-style: italic;
				}

				& .buttons {
					padding: 5px;
					align-items: end;
					justify-content: end;
					font-size: .8em !important;
				}
			}

			& section.attributes {
				margin: 5px;
				overflow: hidden;
				font-size: .7em;
				gap: var(--boxGap);

				& div {
					white-space: nowrap;
				}
			}
		}
	}
}

.productListingBox li .productsImage {
	text-align: center;
}
.productListingBox li .productsStock {
}

.productListingBox li .productsShortDesc {
}
.productListingBox li .productsModel {
}
#listProducts-grid li .productsPrice {

	text-align: center;

}
