@-webkit-keyframes rotate {
100% {
    transform: rotate(360deg);
}
}
@keyframes rotate {
100% {
    transform: rotate(360deg);
}
}
@-webkit-keyframes dash {
0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
}
50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
}
100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
}
}
@keyframes dash {
0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
}
50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
}
100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
}
}
.loading-icon {
  text-align: center;
  padding: 24px;
}
.loading-icon .spinner {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  width: 50px;
  height: 50px;
}
.loading-icon .spinner.xl {
  width: 36px;
  height: 36px;
}
.loading-icon .spinner.md {
  width: 24px;
  height: 24px;
}
.loading-icon .spinner.sm {
  width: 16px;
  height: 16px;
}
.loading-icon .spinner .path {
  stroke: #FFE343;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}
.loading-icon.absolute {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.94);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
