.webprostor-configurator-preloader
{
	position: fixed;
	background: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 9999;
	transition: all 0.2s ease-out 0.05s;
	visibility: hidden;
	opacity: 0;
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	
	display:flex !important;
	align-items: center;
	justify-content: center;
	
	width: 100%;
    height: 100%;
}

.webprostor-configurator-preloader.show {
    visibility: visible;
    opacity: 1;
	display:flex !important;
}

.webprostor-configurator-preloader-close {
	position: absolute;
	width: 20px;
	height: 20px;
	
	top: 0;
	right: 0;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
	font-size: 20px;
}

.webprostor-configurator-preloader-animation {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.webprostor-configurator-preloader-animation div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: webprostor-configurator-preloader-animation 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.webprostor-configurator-preloader-animation div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes webprostor-configurator-preloader-animation {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}
