.cus-loader {
  position: fixed;
  top: 0;
  background-color: var(--white);
  z-index: 1999;
  width: 100vw;
  height: 100vh;
}
.cus-loader .cs-loader-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.cus-loader .cs-loader-in .logo {
  height: 3.5em;
  width: -webkit-fill-available;
}
.cus-loader .cs-loader-in .dot-gif {
  height: 3em;
  margin-top: 1.25em;
}
.cus-loader .loading-text {
  padding-top: 2em;
  color: var(--black-2);
  text-transform: capitalize;
  padding-top: 1.25em;
}
.cus-loader .float-logo {
  position: absolute;
  top: 3.8em;
  left: 2.8em;
}

.compo-loader {
  background-color: var(--white-op);
  display: block;
}
.compo-loader .loader-container {
  width: 60%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}
.compo-loader figure {
  margin: 0 0 3em;
}
.compo-loader figure .img-fluid {
  height: 4rem;
}
.compo-loader .percent {
  position: absolute;
  right: 13vw;
}

.btn-loader {
  background: var(--lgray-14);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn-loader .gry-spinner {
  border-color: var(--lgray-11);
  border-right-color: var(--lgray-13);
}
.btn-loader.htmx-request.htmx-indicator {
  display: flex;
}

.loader:empty {
  margin: auto;
  width: 100%;
  height: 200px; /* change height to see repeat-y behavior */
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%), linear-gradient(transparent 10px, #f4f4f4 0), linear-gradient(#f4f4f4 60px, #f4f4f4 0), linear-gradient(#f4f4f4 60px, #f4f4f4 0), linear-gradient(#f4f4f4 60px, #f4f4f4 0), linear-gradient(#f4f4f4 30px, #f4f4f4 0);
  background-repeat: no-repeat;
  background-size: 20% 100%, 20% 5%, 75% 15%, 75% 15%, 65% 15%, 45% 15%;
  background-position: 0 0, 0 0, 10% 10%, 75% 10%, 7% 45%, 5% 80%;
  animation: shine 1.5s infinite;
}

.trans-loader.htmx-indicator {
  position: relative;
  width: 2em;
  background: transparent;
}

@keyframes shine {
  to {
    background-position: 100% 0, 0 0, 10% 10%, 75% 10%, 7% 45%, 5% 80%;
  }
}
.skeleton-disp {
  position: absolute;
  top: 0;
  background-color: var(--white);
  z-index: 99;
}

.highlight-qstn .skeleton-disp {
  margin: 0 0 0 0.75em;
  padding-right: 1.5em;
}

.skeleton, .line-skltn-txt {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: #d0d0d0;
  }
  100% {
    background-color: rgba(208, 208, 208, 0.368627451);
  }
}
.skeleton-text {
  width: 90%;
  height: 2em;
  margin-bottom: 1em;
  margin-top: 0.625em;
  border-radius: 0.25rem;
}

.line-skltn-txt {
  width: 12em;
  height: 1em;
  margin-top: 0.625em;
  border-radius: 0.25rem;
}

.skeleton-disp.htmx-request.htmx-indicator {
  display: none !important;
}

.ons-loader .skeleton-disp.htmx-request.htmx-indicator {
  display: block !important;
}

.attach-loader {
  width: calc(100% - 2em);
  height: 1.5em;
  position: absolute;
  top: 0.5em;
  background-color: var(--white);
}
.attach-loader .line-skltn-txt {
  width: 100%;
  height: 1.5em;
  margin: 0;
}/*# sourceMappingURL=loader.css.map */