.circularProgress{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid;
    border-top: 3px solid #ffffff;
    animation: spin 0.9s linear infinite;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    display: inline-block;
}
.circularProgressContainer{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
}