.wrapper-circular-index {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
}
.wrapper-circular-index.hidden {
  display: none;
}
.profile-main-loader-index {
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  width: 58px;
  height: 58px;
  z-index: 9000 !important;
}
.profile-main-loader-index .loader {
  position: relative;
  margin: 0px auto;
  width: 58px;
  height: 58px;
}
.profile-main-loader-index .loader:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.circular-loader-index {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}
.loader-path-index {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes color {
  0% {
    stroke: #fa5762;
  }
  40% {
    stroke: #fa5762;
  }
  66% {
    stroke: #fa5762;
  }
  80%,
  90% {
    stroke: #fa5762;
  }
}
.img-index {
  height: 46px;
  margin: 2px;
}

/* ─── Traktez Logo Styles ────────────────────────────────────────────────── */

.traktez-loader-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 101;
  display: flex;
  justify-content: center;
  align-items: center;
}

.traktez-loader-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: inline-block;
  padding: 4px;
}
.traktez-loader-container svg {
  position: relative;
  z-index: 11;
}
.traktez-loader-outer {
  width: 80px;
  height: 80px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  z-index: 9;
}
.traktez-loader-outer::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid;
  border-color: #fa5762 transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.traktez-loader-inner {
  width: 84px;
  height: 84px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.traktez-loader-inner::after,
.traktez-loader-inner::before {
  content: '';
  box-sizing: border-box;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fa576265;
  position: absolute;
  left: -2px;
  top: -2px;
  animation: scaling 1s linear infinite;
}

@keyframes scaling {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
