.loader {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #169179;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

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

#loading-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
