.indicator {
    position: absolute;
    width: 128px;
    height: 128px;
    left: 50%;
    top: 50%;
    margin-left: -64px;
    margin-top: -64px; 
  }
  
  .indicator::before,
  .indicator::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  
  .indicator.circle::before {
    border: 2px solid #ddd;
    border-top-color: #9D1546;
    z-index: 3;
    border-radius: 1000px;
    animation: rotate 1s infinite linear;
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(90deg);
    }
    50% {
      transform: rotate(180deg);
    }
    75% {
      transform: rotate (270deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .indicator.check::before {
    transform: scaleX(-1) rotate(135deg);
    transform-origin: top left;
    border-top: 3px solid #eee;
    border-right: 3px solid #eee;
    border-color: #9D1546;
    z-index: 3;
    height: 50%;
    width: 25%;
    margin-top: 54%;
    margin-left: 25%;
    animation: check 1s ease;
  }
  
  .indicator.check::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5000px;
    border: 2px solid #eee;
    /* border-color: #9D1546; */
    z-index: 3;
  }

  .indicator.times {
    position: absolute;
    border-radius: 5000px;
    border: 2px solid #eee;
    z-index: 3;
  }
  
  .indicator.times::after {
    transform: rotate(45deg) translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transform-origin: top left;
    border-bottom: 3px solid #eee;
    z-index: 3;
    width: 50%;
    height: 0;
    animation: times1 1s ease;
  }

  .indicator.times::before {
    transform: rotate(-45deg) translate(-50%, -50%);
    top: 50%;
    left: 50%;
    transform-origin: top left;
    border-top: 3px solid #eee;
    z-index: 3;
    width: 50%;
    height: 0;
    animation: times2 1s ease;
  }

  @keyframes times1 {
    0% {
      width: 0;
    }
    50% {
      width: 50%;
    }
    100% {
      width: 50%;
    }
  }
  
  @keyframes times2 {
    0% {
      width: 0;
    }
    50% {
      width: 0;
    }
    100% {
      width: 50%;
    }
  }

  @keyframes check {
    0% {
      height: 0;
      width: 0;
    }
    20% {
      height: 0%;
      width: 25%;
    }
    40% {
      height: 50%;
      width: 25%;
    }
    100% {
      height: 50%;
      width: 25%;
    }
  }