.mainarticle,
mainarticlenodata {
	margin-bottom: 20px;
}

.divOrderData {
	padding: 10px;
	font-family: 'Manrope', cursive;
	text-align: left;
}
.divOrderData label {
	clear: left;
	float: none;
	color: #636262;
	/* font-weight: bold; */
	text-decoration: none;
}
.divOrderData .data {
	clear: right;
	float: right;
}
.divOrderData .formtitle {
	font-weight: bold;
	color: #000;
	font-size: 17px;
	padding-top: 20px;
	padding-bottom: 5px;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	clear: both;
}

.m0 {
	margin: 0 !important;
}

.pagingloadmore {
	margin: 0 auto;
	text-align: center;
}

.lds-facebook {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-facebook div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 12px;
	background: #777;
	animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
	left: 8px;
	animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
	left: 28px;
	animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
	left: 48px;
	animation-delay: 0;
}
@keyframes lds-facebook {
	0% {
		top: 8px;
		height: 64px;
	}
	50%,
	100% {
		top: 24px;
		height: 32px;
	}
}
/* --- Form validation ------------------------------------ */
.validationerrorline {
	box-shadow: #f00 0px -4px inset !important;
	/*
	box-shadow: #f00 5px 0px inset !important;
	box-shadow: #f00 5px 0px inset, #f00 -5px 0px inset !important;
	*/
}
.validationerror {
	background-color: #ffcdcd !important;
	border: 1px solid red !important;
}
.checkoutrequiredprompt,
.deliveryrequiredprompt,
.paymentrequiredprompt {
	height: 38px;
	padding: 6px 10px;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	background-color: #ffcdcd !important;
	border: 1px solid red !important;
}
.checkoutrequiredprompt,
.paymentrequiredprompt,
.deliveryrequiredprompt,
.billingrequiredprompt {
	display: none;
	color: #f00;
}
.visibleerror {
	display: block !important;
}
/* --------------------------------------- */
.template {
	position: relative;
	display: inline-block;
	outline: 1px dashed #d00;
	padding: 0;
	margin: -1px;
}
.templatefile {
	position: absolute;
	background-color: #dddddd;
	color: #000000;
	font-size: 11px;
	font-family: tahoma;
	left: 0px;
	top: 0px;
	padding: 0px;
}

[style*='--aspect-ratio'] > :first-child {
	width: 100%;
}
[style*='--aspect-ratio'] > img {
	height: auto;
}
@supports (--custom: property) {
	[style*='--aspect-ratio'] {
		position: relative;
	}
	[style*='--aspect-ratio']::before {
		content: '';
		display: block;
		padding-bottom: calc(100% / (var(--aspect-ratio)));
	}
	[style*='--aspect-ratio'] > :first-child {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
	}
}
.hide {
	display: none !important;
}
#amount {
	display: block;
	border: 0;
	font-weight: bold;
	padding: 6px 10px;
	margin-bottom: 1rem;
}

button.loading .loader {
	display: block;
}
button.loading span:first-child {
	display: none;
}

button .loader {
	position: relative;
	display: none;
	width: 24px;
	height: 24px;
	font-size: 5px;
	text-indent: -9999em;
	margin: 3px auto;
	border: 3px solid #ffffff55;
	border-left-color: #ffbd99;
	border-radius: 50%;
	transform: translateZ(0);
	-webkit-animation: load8 1.1s linear infinite;
	animation: load8 1.1s linear infinite;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/* Custom checkbox }
/* Customize the label (the container) */
.chkcontainer {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.chkcontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.chkcontainer:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkcontainer input:checked ~ .checkmark {
	background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: '';
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.chkcontainer input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.chkcontainer .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-group {
	position: relative;
	display: inline-flex;
	vertical-align: middle;
}

.btn-group > .sztag {
	position: relative;
	flex: 1 1 auto;
	border-top: 1px solid #555;
	border-bottom: 1px solid #555;
}

.btn-group > .sztag {
	border-radius: 5px;
	color: #000000;
	cursor: default;
	text-shadow: 1px 1px #fff;
	padding: 6px 10px;
	background: linear-gradient(to bottom, #ecebeb 0%, #bbbbbb 100%);
	font-size: 18px;
}
.btn-group > .sztag:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.btn-group > .sztag:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.btn-group > .sztag:first-child {
	border-left: 1px solid #555;
}
.btn-group > .sztag:last-child {
	border-right: 1px solid #555;
}
.sztag-on {
	background: linear-gradient(to bottom, #b1b1b1 0%, #656565 100%) !important;
	color: #fff !important;
	text-shadow: 1px 1px black !important;
}
.validationerror.sztag {
	background: linear-gradient(to bottom, #ffd7d7 0%, #e98c8c 100%);
	border-top: 1px solid #f00 !important;
	border-bottom: 1px solid #f00 !important;
	border-left: 0 !important;
	border-right: 0 !important;
}
.btn-group > .validationerror.sztag:first-child {
	border-left: 1px solid #f00 !important;
}
.btn-group > .validationerror.sztag:last-child {
	border-right: 1px solid #f00 !important;
}

/* checkout */
.registerwarning {
	border: 1px solid #5a287f;
	background-color: #f7e6ff;
	color: #5a287f;
	padding: 5px;
	margin: 0 5px;
	font-size: 14px;
}
.registerwarning label,
.registerwarning input {
	margin-bottom: 0;
	margin-right: 5px;
}
.registerwarning labelcheck {
	display: inline-flex;
	align-items: center;
}
.registertext {
	padding: 5px;
	font-size: 14px;
}

#divcartmain .carttoolbar {
	width: 49%;
	float: left;
}
.w10 {
	width: 10%;
}
.w30 {
	width: 30%;
}
.w60 {
	width: 60%;
}
.w75 {
	width: 75%;
}
.w100 {
	width: 100%;
}
.p-y-10 {
	padding: 10px 0;
}
.totalcarttext {
	text-align: right;
	padding-right: 20px;
}
.totalcartprice {
	text-align: right;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
#chkAcceptTerms {
	margin-top: 1.5rem;
}
.vatdiv {
	display: flex;
	align-items: center;
}
.vatprefix1 {
	display: none;
}
.vatprefix56 {
	border: 1px solid #999;
	padding: 13px;
	border-right: 0;
}
