.qty-widget-msg {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 50px;
  top: -55px;
  left: 0;
  text-align: center;
  font-size: 12px;
  z-index: 1;
  border-radius: 5px;
}

#product-content .qty-widget-msg, #product_details .qty-widget-msg {
  top: -55px;
}

.qty-widget-msg.qty-widget-msg-info {
  border: 1px solid #CCC;
  color: #FFF;
  background-color: #505050
}

.qty-widget-msg.qty-widget-msg-error {
  border: 1px solid #350000;
  background-color: #c80000;
  color: #FFF;
}

.qty-widget {
  display: flex;
  margin: 8px auto 0;
  height: 34px;
  max-width: 120px;
}

.qty-widget > div {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.qty-widget-loader {
  height: 34px;
  background: url(/wp-content/themes/gfsstore.com/images/spinner-icon-0-original.gif) center no-repeat;
  background-size: 30px;
  width: 120px;
  padding: 2px;
  margin: 0;
  float:right;
}

#product-content #case-detail .qty-widget-loader, #product-content #each-detail .qty-widget-loader {
  margin: 0;
}

.qty-widget .qty-widget-btn {
  height: 35px;
  width: 35px;
  font-weight: bold;
  font-size: 26px;
  background-color: #c80000;
  border: 1px solid #c80000;
  border-radius: 18px;
  color: #fff;
  margin: 0;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.qty-widget .qty-widget-btn:hover {
  cursor: pointer;
}

.qty-widget .qty-decrement .qty-widget-btn {
  margin-right: 4px;
}

.qty-widget .qty-increment .qty-widget-btn {
  margin-left: 4px;
}

.qty-widget .qty-widget-btn > span {
  display: inline-block;
  overflow: hidden;
}

.qty-widget .qty-amount {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid #505050;
}

.qty-widget .qty-amount .qty-amount-count {
  width: 100%;
  border: none;
  text-align: center;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

input.qty-amount-count::-webkit-outer-spin-button,
input.qty-amount-count::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.qty-amount-count[type=number] {
  -moz-appearance: textfield;
}

#shopping-list-multi-product-modal #product-content div.qty-widget {
	margin: 0;
  max-width:100%;
}