
.choice {
  font-family: Copperplate;
  font-weight: 300;
  font-size: 11px;
  margin-top: 120px;
  margin-left: 120px;
  display: none !important;
}

.in_developing {
  color: white;
  font-family: Copperplate;
  font-weight: 300;
  font-size: 26px;
  display: grid;
  place-items: center;
  margin-top: 370px;
  margin-left: -100px;
}



 .spinner {
   position: absolute;
   left: 775px;
   top: 370px;

   animation: rotator 1.4s linear infinite;
}
 @keyframes rotator {
   0% {
     transform: rotate(0deg);
  }
   100% {
     transform: rotate(270deg);
  }
}
 .path {
   stroke-dasharray: 187;
   stroke-dashoffset: 0;
   transform-origin: center;
   animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
 @keyframes colors {
   0% {
     stroke: #4285f4;
  }
   25% {
     stroke: #de3e35;
  }
   50% {
     stroke: #f7c223;
  }
   75% {
     stroke: #1b9a59;
  }
   100% {
     stroke: #4285f4;
  }
}
 @keyframes dash {
   0% {
     stroke-dashoffset: 187;
  }
   50% {
     stroke-dashoffset: 46.75;
     transform: rotate(135deg);
  }
   100% {
     stroke-dashoffset: 187;
     transform: rotate(450deg);
  }
}

