    body{
      color: rgb(0, 0, 0);
      font-size: 14px;
      background-color: rgb(228, 228, 228);
      font-family: 'Montserrat', sans-serif;
    }

    .locked {
      font-family: 'Montserrat', sans-serif;
      color: #1a1c20;
      font-size: 15px;
      font-weight: 600;
    }

    .drag {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0%;
  display: inline-block;
  line-height: 50px;
  border-radius: 100%;
  cursor: pointer;
  border: none;
  background: url('/p-p-p-p/arrow.png') center center no-repeat, transparent;
  text-align: center;
  z-index: 5;

  animation: fadeSteps 30s steps(10, end) forwards;
}

@keyframes fadeSteps {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}



