﻿.SIS_Mask_C {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(133, 133, 133, 0.31);
	z-index:99;
}

.SIS_Loader_C {
	background-image: url('../img/loader_1.gif');
	position: fixed;
	width: 265px;
	height: 265px;
	z-index: 100000000;
	top: 80%;
	left: 60%;
	margin-top: -15em; /*set to a negative number 1/2 of your height*/
	margin-left: -15em; /*set to a negative number 1/2 of your width*/
	background-repeat: no-repeat;
}

.mandatory {
	color: red;
}


/* --------------------------New Loader -------------------------------*/

.loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(188 188 188 / 30%);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99999999;
	transition: opacity 0.3s ease;
}

.loader-container {
	position: relative;
	width: 140px;
	height: 140px;
	background: #fff;
	border: 5px solid #e0e0e0;
	border-radius: 50%;
	box-shadow: 0 0 15px rgb(0 0 0 / 70%);
}

	.loader-container::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 140px;
		height: 140px;
		border-top: 4px solid #2196f3;
		border-radius: 50%;
		animation: loaderspin 1.8s linear infinite;
	}

.loader-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	user-select: none;
}

	.loader-icon img {
		animation: loaderpulse 900ms ease-in-out infinite alternate;
		max-height: 60px;
		max-width: 80px;
	}

@keyframes loaderspin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes loaderpulse {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.15);
	}
}
