.sb-sidenav-menu {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE & Edge */
}

.sb-sidenav-menu::-webkit-scrollbar {
  width: 0;
  display: none;
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- AJAX LOADING MEMBER ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */
body.ajax-loading {
  overflow: hidden;
}

.ajax-loader-member,
.ajax-loader-member * {
  box-sizing: border-box;
}

.ajax-loader-member {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 31, 31, 0.08), transparent 35%),
    radial-gradient(
      circle at bottom,
      rgba(212, 175, 55, 0.12),
      transparent 40%
    ),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ajax-loader-box {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 390px;
  min-height: 0;
  padding: 34px 26px 30px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #fffdf8 55%, #fffaf0 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 30px;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.ajax-loader-glow {
  position: absolute;
  z-index: -1;
  top: -90px;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 31, 31, 0.2) 0%,
    rgba(212, 175, 55, 0.1) 40%,
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- RING ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.ajax-loader-ring-wrap {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 16px;
}

.ajax-loader-ring {
  width: 100%;
  height: 100%;
  border: 5px solid rgba(17, 17, 17, 0.07);
  border-top-color: #ff1f1f;
  border-right-color: #111111;
  border-bottom-color: #d4af37;
  border-left-color: rgba(17, 17, 17, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(212, 175, 55, 0.2),
    inset 0 0 10px rgba(0, 0, 0, 0.03);
  animation: ajaxLoaderSpin 0.85s linear infinite;
}

@keyframes ajaxLoaderSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- LOGO ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.ajax-loader-logo-asg {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 76px;
  margin: 0 auto 10px;
  padding: 0;
}

.ajax-loader-logo-image {
  display: block;
  width: auto;
  max-width: 210px;
  height: 66px;
  max-height: 66px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- BRAND --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.ajax-loader-brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  margin: 0 auto 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 2.2px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #111111, #d4af37, #111111);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Hanya satu garis di bawah brand */
.ajax-loader-brand::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- TEXT ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.ajax-loader-title {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #151515;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.ajax-loader-subtitle {
  position: relative;
  z-index: 2;
  min-height: 20px;
  margin: 0;
  color: #6c757d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- PROGRESS ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.ajax-loader-progress {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 160px;
  max-width: 100%;
  height: 5px;
  margin: 18px auto 0;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.ajax-loader-progress span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 45%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #111111, #d4af37, #ff1f1f);
  animation: ajaxLoaderProgress 1.2s ease-in-out infinite;
}

@keyframes ajaxLoaderProgress {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(260%);
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- RESPONSIVE ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

@media (max-width: 576px) {
  .ajax-loader-member {
    padding: 15px;
  }

  .ajax-loader-box {
    max-width: 360px;
    padding: 30px 20px 26px;
    border-radius: 25px;
  }

  .ajax-loader-ring-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .ajax-loader-ring {
    border-width: 5px;
  }

  .ajax-loader-logo-asg {
    min-height: 68px;
    margin-bottom: 8px;
  }

  .ajax-loader-logo-image {
    max-width: 190px;
    height: 58px;
    max-height: 58px;
  }

  .ajax-loader-brand {
    font-size: 11px;
    letter-spacing: 1.7px;
    white-space: normal;
  }

  .ajax-loader-title {
    font-size: 17px;
  }

  .ajax-loader-subtitle {
    font-size: 12px;
  }
}

body.ajax-loading {
  overflow: hidden;
}

@keyframes ajaxLoaderSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes ajaxLoaderProgress {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(240%);
  }
}
/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- AJAX LOADING MEMBER ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------------------------------------------- */
/* ------- LOADING ------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------------- */

.cursor {
  cursor: pointer;
}

.pelangi {
  background: -webkit-linear-gradient(red, goldenrod);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
