<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.qs-wait-mask {
	position: fixed;
	z-index: 1054;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/* perso client */
	background-color: #f2f2f2;
    opacity: 0.8; 
    /* admin qs  
    background-color: #10a0dd;
    opacity: 0.8; */  
    /* admin qs transparent 
    background-color: #ffffff;
    opacity: 0.5; */
}

.qs-wait-img img {
	display: none;
}


@keyframes spinner {
    to {transform: rotate(360deg);}
}
 
@-webkit-keyframes spinner {
    to {-webkit-transform: rotate(360deg);}
}
 
.qs-wait-img {
    min-width: 30px;
    min-height: 30px;
    margin: 10px 0px;
}
 
.qs-wait-img:before {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    opacity: 1;
    line-height: 30px;
}
 
.qs-wait-img:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 2px solid #f2f2f2;
    border-top-color: #ed1e79;
    animation: spinner 0.8s linear infinite;
    -webkit-animation: spinner 0.8s linear infinite;
}


body &gt; .qs-wait-img {
    z-index: 1055;
    min-width: 100px;
    min-height: 100px;
    margin: 0px;
}
 
body &gt; .qs-wait-img:before {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 1;

    line-height: 100px;
}
 
body &gt; .qs-wait-img:not(:required):before {
    border: 2px solid #FFFFFF;
    border-top-color: #ed1e79;
}


/* theme QS fond transparent 
.qs-wait-img:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: rgba(16, 160, 221, 1);
    animation: spinner 0.8s linear infinite;
    -webkit-animation: spinner 0.8s linear infinite;
}
*/
</pre></body></html>