@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import 'header.css'; /* Using a string */
html {
	scroll-behavior: smooth;
}
:root {
	--red: #a41b1d;
	--red-selected: #f6aaab2b;
	--dark-red: #2c0000;
	--blue: #007cb0;
	--black: #000;
	--white: #fff;
	--silver: #fafafa;
	--crem: #fffcfc;
	--crem-dark: #f7efef;
	--grey: #e0e0e0;
	--border-color: #dddddd;
	--system-fonts: 'Rubik', sans-serif;
	--box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
	--big-shadow: rgba(0, 0, 0, 0.5) 0 0 40px;
	--box-shadow-heavy: rgba(0, 0, 0, 0) 0 0 70px;
}
/* .loading{margin-right:10px;width:20px;animation:lds-ring 1.2s cubic-bezier(0.5,0,0.5,1) infinite;}
*/
@keyframes lazy-kf {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
img[loading='lazy'] {
	/* animation:lazy-kf 0.5s;*/
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
body {
	-webkit-animation: fadeinout 0.5s ease-in 1 forwards;
	animation: fadeinout 0.5s ease-in 1 forwards;
	font-family: var(--system-fonts);
}
@-webkit-keyframes fadeinout {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeinout {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes pull {
	from {
		margin-top: -15px;
	}
	to {
		margin-top: 0;
	}
}
@-webkit-keyframes pull {
	from {
		margin-top: -15px;
	}
	to {
		margin-top: 0;
	}
}
@-webkit-keyframes pop-open {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
@keyframes pop-open {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
body {
	height: fit-content;
}
.lngbar {
	position: relative;
	z-index: 30;
	-o-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	margin-right: 10px;
	cursor: pointer;
}
.lngbar .lng {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	color: var(--red);
	font-weight: 600;
	background-color: var(--white);
	font-size: 0.9em;
}
.lngbar ul {
	list-style: none;
	position: absolute;
	top: 30px;
	left: 0;
	background-color: var(--silver);
	width: 30px;
	text-align: center;
	opacity: 0;
	height: 0px;
	overflow: hidden;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
.lngbar ul.open {
	opacity: 100;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
	height: auto;
}
.lngbar ul li {
	color: #000;
	cursor: pointer;
	height: 30px;
	line-height: 30px;
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
.lngbar ul li:hover {
	color: var(--black);
	background-color: var(--red);
	-o-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-webkit-transition: all 0.2s ease;
}
.lngbar ul li:hover a {
	color: var(--white);
}
.lngbar ul li a {
	text-decoration: none;
	color: #000;
	font-size: 0.8em;
	font-weight: 400;
}
.lngbar .select {
	border-color: var(--primary) transparent;
	border-style: solid solid none;
	border-width: 5px 5px medium;
	height: 5px;
	left: 25px;
	position: absolute;
	top: 12px;
	width: 0;
	text-decoration: none;
	color: var(--black);
}

.login_form {
	padding: 2.5rem;
	border-radius: 10px;
	background-color: var(--white);
}

.login-main-section .login_form {
	display: flex;
	justify-content: space-between;
	background-color:transparent;
}


[humge-type=date], [humge-type=email], [humge-type=password], [humge-type=text], [humge-type=textarea], [humge-type=user] {background-color: transparent;}

.login_form input {
	background-color: var(--white);
	border: 1px solid var(--border-color);
}

.login_form label {
	color: var(--black);
	z-index: 1000;
}

.login-main-section .login_form label {
	color: var(--dark-red);
	font-weight: bold;
}

.login_form span {
	border-radius: 10px;
}

.icon-corner {
	color: inherit;
	display: block;
	height: 2.5rem;
	position: r elative;
}
.icon {
	cursor: pointer;
	pointer-events: none;
}
.wraper {
	margin: auto;
}
button,
a {
	cursor: pointer;
	text-decoration: none;
}
.button,
button {
	border-radius: 10px;
}
.shadow {
	box-shadow: var(--box-shadow);
}
.shadow-heavy {
	box-shadow: var(--box-shadow-heavy);
}
.silver {
	background-color: var(--silver);
}
.red {
	background-color: var(--red);
}
.crem {
	background-color: var(--crem);
	color: var(--red);
}
.dark-red {
	background-color: var(--dark-red);
}
.black {
	background-color: var(--black);
}
.white {
	background-color: var(--white) !important;
}
.black-text {
	color: var(--black);
}
.red-text {
	color: var(--red);
}
.white-text {
	color: var(--white);
}
.silver-text {
	color: var(--grey);
}
.dark-red-text {
	color : var(--dark-red)
}

.dark-red {
	background-color: var(--dark-red);
}

.flex-row {
	display: flex;
	flex-direction: row;
}
.flex-column {
	display: flex;
	flex-direction: column;
}
.item-row-value-33p {
	width: 33.333%;
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around !important;
}
.justify-center {
	justify-content: center !important;
}


.row-flex .flex-box {
	flex: 1;
}
.flex-col {
	float: none !important;
	flex-direction: row;
}
.d-flex {
	position: relative;
	display: flex;
}
.flex-center {
	align-items: center;
	gap: 0.5rem;
}
.reverse-row {
	flex-direction: row-reverse;
}
.flex-wrap {
	flex-wrap: wrap;
}
.v-center {
	align-items: center;
}
.editable {
	height: 100%;
}
.bordered {
	border: solid 1px var(--border-color);
}
.actions {
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}
.action {
	background-color: var(--silver) !important;
	padding: 2px 5px !important;
	border: 1px solid var(--border-color);
	color: var(--black);
	transition: 0.2s ease-in-out;
}
.in-use {
	/* background-color:#185c37 !important;*/
	background-color: var(--red) !important;
	color: var(--white) !important; /* opacity:0.8;*/
}
/* .home-login{min-width:300px;max-width:350px;border:solid 1px var(--border-color);margin-right:30px;border-radius:20px;height:max-content;} */
.selectable {
	height: 3.5rem;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.selectable > * {
	/* transition:0.2s cubic-bezier(0.47,0,0.745,0.715);*/
}
.selectable > *:nth-last-child(n + 2) {
	border-right: 1px solid var(--border-color);
}
.even {
	background-color: var(--silver);
}
.selected,
.selected > * {
	background-color: var(--red-selected) !important;
	color: var(--black) !important;
	transition: background-color 0.4s ease-in-out;
}
.pad-top-300 {padding-top: 300px;}
.pad-top-15vw {padding-top: 15vw;}

.wrapper {
	position: relative;
	margin-left: 1rem;
	margin-right: 1rem;
}
input:focus {
	outline: none;
}
.slick-dots {
	text-align: center;
	padding-top: 20px;
}
.slick-dots li {
	display: inline-block;
	padding-left: 3px;
	padding-right: 3px;
}
.slick-dots li button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	font-size: 0.0001em;
	padding: 0px;
	background-color: var(--grey);
	border: none;
}
.slick-dots li button[aria-selected='true'] {
	background-color: var(--red);
}
.slick-prev {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 0;
	position: absolute;
	top: -50px;
	right: 60px;
	background-color: var(--orange);
	box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
	line-height: 55px;
}
.form {
	width: 100%;
	gap: 0.5rem;
}
.slick-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	padding: 0;
	position: absolute;
	top: -50px;
	right: 10px;
	background-color: var(--orange);
	box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
	line-height: 55px;
}
.border-top {
	border-top: solid 1px var(--grey);
}
.br-10 {
	border-radius: 10px;
}
h1 {
	font-weight: bold;
}
.form *[humge-type='text'] {
	padding-top: 5px;
	border: solid 1px var(--red);
}
input {
	border: solid 1px var(--border-color);
	padding: 1rem;
	border-radius: 10px;
	line-height: 30px;
	height: 35px;
}
.data-wrapper {
	height: 3.5rem;
	display: flex;
	padding: 0 0.4rem;
	justify-content: center;
	align-items: center;
	line-height: normal;
}
input.text {
	padding: 1rem;
	border-radius: 10px;
	line-height: 30px;
	width: 100%;
	height: 35px;
}
.gap20 {gap: 20px;}
.border-top-white {border-top: 1px solid rgba(255, 255, 255, 0.4);}
.border-bold-top-white {border-top: 3px solid rgba(255, 255, 255);}
.separeted-lines > *:not(:last-child):after{content: " | ";padding-inline: 10px;}

select.select {
	border-radius: 10px;
	line-height: 30px;
	width: 25%;
	height: 35px;
	border: solid 1px var(--border-color);
	padding: 0 0 0 0.65rem;
}
select.select:focus {
	outline: none;
}
.select:required:invalid {
	color: #686868;
}
.select option[value=''][disabled] {
	display: none;
}
.select option {
	color: black;
}
.select:invalid {
	color: var(--border-color);
}
input.checkbox + label {
	cursor: pointer;
}
.cart-content #items a {
	text-decoration: none;
	font-weight: bold;
	font-size: 0.8em;
	display: block;
	color: var(--red);
	margin-bottom: 0;
}
.extra_footer_info {
	padding-top: 30px;
	border-top: solid 1px var(--red);
}
#search-results {
	background-color: var(--white);
	box-shadow: var(--box-shadow);
	right: 0;
	top: 40px;
	z-index: 10;
}
.search-cats button {
	font-size: 0.8em;
	padding-left: 10px !important;
	padding-right: 10px;
	line-height: 20px;
	height: inherit;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.sort-buttons button {
	font-size: 0.8em;
	padding-left: 10px !important;
	padding-right: 10px;
	line-height: 20px;
	height: inherit;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
}
.prodName {
	margin-bottom: 10px;
}
.prodName a {
	text-decoration: none;
	font-weight: bold;
	color: var(--black);
}
#results-wrapper {
	/* min-height:100vh;*/
}
#main-section {
	margin: 0 5rem;
}
.prodName .sku {
	color: var(--green);
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 0.8em;
}
.prodName .price {
	color: var(--orange);
	font-weight: 700;
}
.prodName .price span {
	background-color: var(--silver);
	color: #8d8d8d;
	float: right;
	margin-right: 20px;
}
#search-prods {
	max-height: 500px;
	overflow-y: auto;
}
.product-title {
	display: flex;
	gap: 1rem;
	line-height: 3.5;
	align-items: center;
	padding: 0 0.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 50%;
}
.product-data {
	width: 10%;
	height: 3.5rem;
	line-height: 3.5;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.main-container {
	width: 100%;
	height: 100%;
	display: flex;
	margin: 0;
	justify-content: center;
	align-items: center;
	background-color: var(--silver);
}
.table-container {
	display: flex;
	flex-flow: column nowrap;
	background-color: white;
	margin: 0 auto;
	border-radius: 4px;
	border: 1px solid #dadada;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.08);
}
.table-row {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;
	border-bottom: 1px solid #dadada;
}
.hidden {
	display: none !important;
}
.heading {
	color: var(--red);
	margin: 0.5rem 0 0 0;
}
.row-item {
	position: relative;
	display: flex;
	font-size: 14px;
	padding: 0.5rem;
	align-items: center;
	text-align: center;
	justify-content: space-evenly;
	width: 40%;
	border-top: 1px solid var(--border-color);
	font-weight: bold;
}
.row-item-value {
	width: 50%;
}
.heading > *:nth-last-child(n + 2) {
	border-right: 1px solid var(--border-color);
}
.row-sub-container {
	display: flex;
	flex-flow: column nowrap;
	flex: 1;
}
.row-sub-container .row-item {
	padding: 8px 0;
	border-bottom: 1px solid #dadada;
}
.table-row:last-child,
.row-sub-container .row-item:last-child {
	border-bottom: 0;
}
.product-details {
	display: flex;
}
.product-large-img {
	display: flex;
	align-items: center;
	max-width: 250px;
	width: 30%;
	height: 250px;
}
.product-image-large {
	display: none;
}
.product-image-small {
	display: block;
}
.spinner {
	width: 200px;
	height: 200px;
	position: fixed;
	left: 50%;
	top: 50%;
	background-image: url(https://raw.githubusercontent.com/niklausgerber/PreLoadMe/master/img/status.gif);
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
}
.loading {
	background-image: url(https://raw.githubusercontent.com/niklausgerber/PreLoadMe/master/img/status.gif);
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
	width: 50px;
	height: 50px;
}
.prod-buy {
	width: 10%;
	text-align: center;
}
.quantity-input {
	border: solid 1px var(--red);
	text-align: center;
	max-width: 100px;
	border: solid 1px var(--border-color);
	padding: 0 0.8rem;
	border-radius: 5px;
	width: 100%;
	overflow: hidden;
	line-height: 1.1;
	height: 20px;
}
.quantity_button {
	border: solid 1px var(--border-color);
	border-radius: 5px;
	height: 20px;
	padding: 0.2rem;
	text-align: center;
	line-height: 1;
	transition: 0.2s ease-in-out;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
	transition: 0.2s ease-in-out;
}
.quantity_button:hover {
	background-color: var(--red);
	border-color: var(--red);
	color: var(--white);
}
.sorting {
	cursor: pointer;
	user-select: none;
}
.sorting.active {
	background-color: var(--red-selected); /* border-right:1px solid var(--crem);*/
}
.even .sorted {
	/* background-color:var(--crem-dark);*/
}
.sorted {
	/* background-color:var(--crem);*/
	color: var(--black);
}
.sorting.active::after {
	content: url('/public/images/descending-icon.svg');
	display: inline-block;
	position: absolute;
	color: var(--red);
	top: 0;
	right: 0;
	width: 0.8rem;
	height: 0.8rem;
	padding: 0.4rem;
}
.active.asc {
	background-color: var(--crem);
}
.active.asc::after {
	content: url('/public/images/ascending-icon.svg');
	display: inline-block;
	position: absolute;
	top: 0;
	color: var(--red);
	right: 0;
	width: 0.8rem;
	height: 0.8rem;
	padding: 0.4rem;
}
.slider {
	border: 0;
	color: var(--red);
	font-weight: bold;
	margin-bottom: 1rem;
}
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	padding: 1rem;
	display: none;
	position: absolute;
	background-color: var(--silver);
	min-width: 200px;
	z-index: 1;
}
.show {
	display: block;
}
#back-to-top {
	display: none;
	background-color: var(--red);
	position: fixed;
	bottom: 3rem;
	left: 50%;
	z-index: 99;
	font-size: 0.8rem;
	border: none;
	outline: none;
	color: white;
	cursor: pointer;
	padding: 0.5rem;
	transform: translateX(-50%);
}
#toast-container > .toast-info {
	background-color: black;
}
.cmspage {
	line-height: 1.5;
}
.cmspage p,
.cmspage ul {
	margin-bottom: 10px;
}
.cmspage ul {
	padding-left: 25px;
}
.image-wrapper {
	display: none;
	z-index: 99999;
	position: absolute;
	left: 25%;
}
.image-preview {
	width: 240px;
	max-height: 320px;
	border-radius: 1rem;
	border: 1px solid var(--crem-dark);
	padding: 0.5rem;
	background-color: var(--crem);
}
#search_letters {
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	padding: 0.5rem;
	margin: 0rem 1.2rem 1.2rem 1.2rem;
}
.search_letter {
	width: 30px;
	padding: 0.35rem;
	border-radius: 0.5rem;
	border: 1px solid var(--border-color);
	font-size: 0.8rem;
	cursor: pointer;
	transition: 0.2s ease-in-out;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}
.search_letter:hover {
	background-color: var(--red);
	color: var(--white);
	border-color: var(--red);
}
.search_letter.active {
	background-color: var(--red);
	color: var(--white);
	border-color: var(--red);
}
#preloader {
	display: none;
}
#no-results {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 1rem;
}
.col-50 {
	width: 50%;
}
.mobile-only {
	display: none;
}

.button-transparent {border-radius: 5px;padding: 10px 20px;font-size: 1.2rem; background-color: transparent; color:var(--white);border: 2px solid white;display: block; width: fit-content;}
.login-main-section {background-image: url("/public/images/newIndex.jpg"); position: relative; background-size: cover;}
.login-main-section #remember+label {color: var(--white);}
.login-brands > div { border-radius: 10px; box-shadow: var(--box-shadow); margin-bottom: 20px;}
.login-brands > div:nth-child(5n+1) { margin-left: 0;}
section:has(>.login-offering) {background-image: url("/public/images/image-bckrg.jpg"); background-position: bottom; position: relative; background-size: cover;}
.login-offering > div{border-radius: 10px; box-shadow: var(--box-shadow); padding: 25px; padding-top: 50px; background-color: white;}
.login-offering-shape {position: absolute; width: 100%;height:15vw; top: 0;left: 0; background-image: url(/public/images/shape.svg);    background-repeat: no-repeat; background-size: 100%;}
.login-offering-shape .text {top: 50%;left: 50%;color: white;transform: translate(-50%, -50%);}

@media screen and (max-width: 735px) {
	.flex-row {
		flex-direction: column;
	}
	.col-50 {
		width: 100% !important;
	}
	#login-wrapper {
		max-height: unset !important;
		overflow-y: scroll !important;
	}

	#main-section {
		margin: 0 1rem;
	}
	.product-image-large {
		display: block;
	}
	.product-image-small {
		display: none;
	}
	.product-large-img {
		display: none;
	}
	.product-title {
		width: auto;
		max-width: 100%;
		font-size: 1.5rem;
		border-bottom: 3px solid var(--border-color);
	}
	.product-data {
		width: 100%;
	}
	.selectable .product-data:last-of-type {
		margin-top: 1rem !important;
	}
	.selectable > *:nth-last-child(n + 2) {
		border-right: none;
		border-bottom: 1px solid var(--border-color);
	}
	.icon-corner {
		display: block;
		position: absolute;
		top: 6px;
		left: 4px;
	}
	.form {
		width: auto;
		flex-direction: column;
	}
	.form input,
	#slider-range {
		width: 100%;
		margin-bottom: 20px;
	}
	input.text {
		width: 100%;
	}
	select.select {
		width: 100%;
	}
	.prod-buy {
		width: unset;
		margin-bottom: 1rem;
	}
	.table-row {
		display: none;
	}
	.quantity-input {
		width: 100%;
	}
	.selectable {
		height: auto;
		padding: 1.5rem;
		margin-bottom: 1rem;
	}
	.pc-only {
		display: none !important;
	}
	.mobile-only {
		display: unset;
	}
}


@media screen and (max-width: 1000px) {
	.selectable {
		font-size: 1.05rem;
		margin-bottom: 1rem;
	}
	.image-wrapper {
		display: none !important;
	}
}


@media screen and (min-width: 2500px) {
	#main-section {
		margin: 0 13rem; /* max-width:70%;*/
	}
}
