/* Loader */
.ns_loader {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .82);
	border-radius: var(--hipnos-border-radius);
}

.blockOverlay {
	background: rgba(255, 255, 255, .82) !important;
	opacity: 1 !important;
}

#ns_product-summary .ns_form .blockOverlay {
	width: 110% !important;
	left: -5% !important;
}

.blockUI.blockOverlay:after,
.ns_loader:after {
	content: " ";
	position: absolute;
	top: 50%;
	right: 50%;
	width: 12px;
	height: 12px;
	margin: -6px -6px 0 0;
	opacity: 1;
	background: var(--hipnos-color-primary-1);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: dotFade 0.8s infinite;
	animation: dotFade 0.8s infinite;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.loading .ns_loader,
.loading .ns_loader:after {
	display: block;
}

@-webkit-keyframes dotFade {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes dotFade {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}