/* Ukryj natywne strzałki liczbowe */
input[type=number].qty::-webkit-outer-spin-button,
input[type=number].qty::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number].qty { 
  -moz-appearance: textfield; 
  appearance: textfield; 
}

/* Wrapper pigułek */
.qty-box{
  position: relative;
}

/* Sam input */
.qty-box .qty{
  width: 50px;
  height: 50px;
  line-height: 48px;
  margin: 0 25px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  outline: 0;
  border: 1px solid #e6e6e6;
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
}

/* Przyciski +/- */
.qty-btn {
  width: 25px;
  height: 25px;
  right: 0;
  position: absolute;
  line-height: 23px;
  border-left: 0;
  cursor: pointer;
  color: #464646;
  transition: color .15s ease-in-out;
  border: 1px solid #e6e6e6;
  border-left: none;
  text-align: center;
  background-color: transparent;
}

.qty-btn:focus{ 
  outline: none;
  box-shadow: inset 0 0 0 2px #2c7be5;
}
.qty-btn:hover{ 
  background:#efefef;
}
.qty-btn:active{ 
  transform: translateY(1px);
}
.qty-btn--minus{ 
  bottom: 0;
}
.qty-btn--plus{ 
  top: 0;
}

/* Rozmiary przycisków Woo obok (Add to cart) żeby nic się nie rozjeżdżało */
.single-product .quantity, .woocommerce-cart-form .quantity { 
  display:inline-block;
}
