.top-btn {
  border-radius: 2rem;
}
.top-btn {
  position: relative;
  width: auto;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.7);
  border: 2px solid transparent !important;
  background:
    linear-gradient(120deg, #462523 0, #cb9b51 34%, #f6e27a 45%, #fff8a7 50%, #f6e27a 55%, #cb9b51 66%, #462523 100%) border-box,
    linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a); padding-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(168, 136, 77, .5), inset 0 0 4px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.top-btn:active {
  transform: scale(.95);
}
    
.top-btn:hover::before {
  animation: shine 2.5s infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7), inset 0 0 8px rgba(255, 255, 255, 0.4);
}

.top-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

@keyframes shine {
  0% {
    left: -100%;
  }
  60% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}


.btn, button, input, select, textarea {
  border-radius: .5rem !important;
}

.input-quantity input{
  border-radius: 0 !important;
}

.input-quantity button:first-of-type {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-quantity button:last-of-type {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}