 #loading {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#loading .bg {
	background: #000000;
	opacity: 0.7;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}
#loading .img_gif {
	width: 250px;
	height: 75px;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	font-size: 16px;
	z-index: 10;
	color: #ffffff;
} 

/* #loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.7;
  background-color: #fff;
  z-index: 99;
}

#loading-image {
  position: absolute;
  top: 100px;
  left: 240px;
  z-index: 100;
} */

#resultLoading {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#resultLoading .bg {
	background: var(--bg-body);
	/* opacity: 0.7; */
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}
 #resultLoading .img_gif {
	width: 250px;
	height: 75px;
	text-align: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	font-size: 16px;
	z-index: 10;
	color: #ffffff;
}
.cursor-wait {
	cursor: default;
}
#text_loader {
	color: var(--primary);
}
 [data-bs-theme="dark"] #text_loader {
	 color: var(--bs-heading-color);
 }
/* ---- PreLoader ---- */
@keyframes hidePreloader {
    0% {
        width: 100%;
        height: 100%
    }
    100% {
        width: 0;
        height: 0
    }
}

body>div.preloader {
    position: fixed;
	background: var(--bg-body);
    width: 100%;
    height: 100%;
    z-index: 1071;
    opacity: 0;
    transition: opacity .5s ease;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center
}

body:not(.loaded)>div.preloader {
    opacity: 1
}

body:not(.loaded) {
    overflow: hidden
}

body.loaded>div.preloader {
    animation: hidePreloader .5s linear .5s forwards
}
/* ---- PreLoader ---- */