.generic-numberic-input {
  display: flex;
  align-items: center;
}
.generic-numberic-input .qty-btn {
  display: inline-block;
  width: 15px;
  text-align: center;
  cursor: pointer;
}

.cart-popup {
  position: fixed;
  width: 500px;
  right: 2rem;
  top: 3rem;
  background: #fff;
  border: 1px solid #f1f1f1;
  z-index: 99;
  border-radius: 3px;
  box-shadow: 0 1px 5px 2px rgba(2, 2, 2, 0.05);
}
.cart-popup--wrapper {
  position: relative;
}
.cart-popup--header {
  position: relative;
  padding: 2rem 2rem 0;
}
.cart-popup--close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.cart-popup--close:hover {
  color: #E05F36;
}
.cart-popup--empty {
  width: 100%;
  margin: 2rem auto;
  padding: 3rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart-popup--empty .empty-cart--icon {
  font-size: 80px;
  color: #cacaca;
}
.cart-popup--empty p {
  font-size: 12px;
  margin-bottom: 2rem;
}
.cart-popup--body {
  height: 380px;
  overflow: hidden;
  padding: 2rem 2rem 0;
  overflow-y: auto;
  overscroll-behavior: none;
}
.cart-popup--body::-webkit-scrollbar {
  width: 5px;
  background-color: #E05F36;
}
.cart-popup .cart--item {
  padding: 2rem 0;
}
.cart-popup .cart--item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.cart-popup .cart--item-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.cart-popup .cart--item-info {
  padding: 0 2rem;
  width: 300px;
}
.cart-popup .cart--item-sku {
  font-size: 12px;
  font-weight: bold;
  color: #888;
}
.cart-popup .cart--item-name {
  margin: 1rem 0;
}
.cart-popup .cart--item-name a {
  font-weight: bold;
  color: #333;
  font-size: 14px;
}
.cart-popup .cart--item-price {
  color: #E05F36;
  font-weight: bold;
}
.cart-popup .cart--item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.cart-popup .cart--item-actions input {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 6px 1rem;
  width: 60px;
  text-align: center;
  margin-bottom: 1rem;
}
.cart-popup .cart--item-actions a {
  cursor: pointer;
}
.cart-popup--footer {
  padding: 2rem;
  border-top: 1.5px solid #dadada;
}
.cart-popup--price {
  font-weight: bold;
}
.cart-popup--actions {
  margin-top: 2rem;
}
.cart-popup--button {
  display: block;
  width: 100%;
  background-color: #E05F36;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  padding: 8px 0;
  font-weight: bold;
  transition: background-color 0.5s;
}
.cart-popup--button:hover {
  background-color: #f1754d;
  text-decoration: none;
  color: #fff;
}

.text-input-container {
  align-items: center;
  display: flex;
}
.text-input-container label {
  margin-right: 10px;
}
.text-input-container .text-input {
  background-color: white;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  flex-grow: 1;
  padding: 8px 10px;
}
.text-input-container .input-wrapper {
  display: flex;
  flex-grow: 1;
  position: relative;
}
.text-input-container .input-buttons {
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 7px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.spinner {
  color: #333;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 0;
}
.spinner:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/** Spinner Wheel**/
.spinner.spinner-wheel {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  font-size: 0;
}
.spinner.spinner-wheel:before,
.spinner.spinner-wheel:after {
  content: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

