.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;
}
