pre.dw-error {
	margin-top: 20px;
	padding: auto;
	font-family: "Open Sans";
	font-size: 1.2em;
	white-space: normal;
}

@media (min-width:320px) {
	pre.dw-error {
		width: 90vw;
	}
}

@media (min-width:641px) {
	pre.dw-error {
		width: 50vw;
	}
}

.spinner-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.spinner {
	width: 3rem;
	height: 3rem;
	border: 0.5rem solid #f3f3f3;
	border-top: 0.5rem solid #FFDC00;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 1rem;
}

.spinner-text {
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.ffHighlighted {
	border: 1px solid #FFDC00;
	border-left-width: 10px;
}


.tooltip-element {
	border: 1px solid transparent;
	border-radius: 50%;
	width: 1.5rem;
	height: 1.5rem;
}

	.tooltip-element.active {
		border-color: black;
		box-shadow: 0 0 0 1px white inset;
		border-width: 2px !important;
	}

	.tooltip-element.available {
		background-color: rgba(var(--bs-success-rgb)) !important;
	}

	.tooltip-element.unavailable {
		background-color: rgba(var(--bs-danger-rgb)) !important;
	}

	.tooltip-element.blocked {
		background-color: var(--bs-gray-600) !important;
	}


/*For IDN_ProductDetailsImage.cshtml START(also used for EUKO)*/

.pdpImagesThumbnails {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

	.pdpImagesThumbnails::-webkit-scrollbar {
		display: none;
	}

.pdp-images-arrow {
	padding: 0.3rem;
	position: absolute;
	height: auto;
	width: 100%;
	z-index: 1;
	display:flex;
}

.pdp-images-arrow-top {
	top: 0;
}

.pdp-images-arrow-bottom {
	bottom: 0;
}

.pdp-images-arrow .prev, .pdp-images-arrow .next {
	display: inline-flex;
	justify-content: center;
	width: 33%;
	height: auto;
	cursor:pointer;
	margin:auto;
}

.pdp-images-arrow-icon {
	color: var(--swift-foreground-color);
	background-color: var(--swift-background-color);
	border: 1px solid var(--swift-foreground-color);
	width: 100%;
}

/*For IDN_ProductDetailsImage.cshtml END*/
