.cover {
    position: absolute;
    top: 7%; 
    left: 0;
    width: 100%;
    height: 93%;
    overflow: auto;
    z-index: 1000;
    -webkit-animation: fadeinout 4s linear forwards;
    animation: fadeinout 4s linear forwards;
    opacity: 0.7;
    color: rgba(0, 0, 0, 0.85);
    background-color: #ffffff;
}
.dark-mode .cover {
    color: rgba(255, 255, 255, 0.8);
    background-color: #191c20;
    background-image: none;
}
.cover-white {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: 0px;
    top: 0px;
    left: 0px;
    z-index: 1000;
}
.loader-container {
  display: inline-block;
  position: relative;
  top: 50%;
  width: 100%;
  text-align: center;
}
.loader {
  position: relative;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid darkgrey;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 1s linear infinite; /* Safari */
  animation: spin 1s linear infinite;
}
#SPIN_COVER_MAIN {
    z-index: 2000;
}
.loader-text {
    display: inline-block;
    position: absolute;
    font-size: 10px;
    top: 54%;
    left: 0%;
    text-align: center;
    width: 100%;
    z-index: 2000;
}
    .loader-text::after {
        content: var(--app-loader-text);
    }
@keyframes fadeinout {
	50% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
	}
}
/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}