﻿.loading-spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
  margin: 0 auto; /* Center the spinner */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.selector {
  display: flex;
  width: fit-content;
  border: 1px #E5E5E5 solid;
  border-radius: 30px;
}

.quantity-btn {
  padding: 8px;
  height: 40px;
  width: 40px;
  min-height: 40px;
  min-width: 40px;
}

.quantity-btn:hover {
  background: #2c64b5;
  color: white;
}

.quantity-button--icon-only {
  font: var(--podium-cds-typography-body1-strong);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  min-height: 40px;
  position: relative;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  background: inherit;
  color: #292621;
  border: none;
  border-radius: 30px;
  outline: none;
  background-color: #ffffff;
}

.quantity-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  padding: 0 5px;
}
