.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 3;
	opacity: 0.7;
	visibility: visible;
}

.round1, .round1:before, .round1:after {
	border: 3px solid transparent;
	border-radius: 50%;
}

.round1 {
	width: 150px;
	height: 150px;
	position: relative;	
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-top-color: #bac900;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}

.round1:before, .round1:after {
	content: '';
	position: absolute;
}

.round1:before {
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	border-top-color: #00abd4;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

.round1:after {
	top: 23px;
	right: 23px;
	bottom: 23px;
	left: 23px;
	border-top-color: #ff1400;
	-webkit-animation: spin 3s infinite linear;
	animation: spin 3s infinite linear;
}

@-weblit-keyframes spin {
	from {
    	-webkit-transform: rotate(0deg);
    	-ms-transform: rotate(0deg);
    	transform: rotate(0deg);
	}
	to {
    	-webkit-transform: rotate(360deg);
    	-ms-transform: rotate(360deg);
    	transform: rotate(360deg);    
	}
}

@keyframes spin {
	from {
    	-webkit-transform: rotate(0deg);
    	-ms-transform: rotate(0deg);
    	transform: rotate(0deg);
	}
	to {
    	-webkit-transform: rotate(360deg);
    	-ms-transform: rotate(360deg);
    	transform: rotate(360deg);    
	}
}

.done {
   	opacity: 0;
   	visibility: hidden;
}

@media print {
    .noprint {
        display: none;
    }
	.print {
    	max-width: 100%;
    	flex: 0 0 100%;
	}
}