/* Product Page */

/* Disable up down arrow in input - Chrome, Safari, Edge, Opera */
.qty-wrapper input::-webkit-outer-spin-button,
.qty-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Disable up down arrow in input - Firefox */
.qty-wrapper input[type=number] {
  -moz-appearance: textfield;
  font-size: 16px;
  }

.qty-wrapper{
  float: left;
  display: flex;
  margin-right: 15px;
  text-align: center;
  touch-action: none;
}
.qty-wrapper label{
  display: none;
}
.qty-wrapper input[type=number]{
  text-align: center;
  height: 44px;
  width: 44px;
  border: 1px solid #f1f1f1;
  margin: 0;
  padding: 0;
  float: left;
  position: relative;
  z-index: 101;
}
.qty-wrapper .minus{
  float: left;
}
.qty-wrapper .plus{
  float: right;
}
.qty-wrapper .minus,
.qty-wrapper .plus{
  height: 44px;
  width: 44px;
  border: 0;
  background-color: #e6e6e6;
  color: #565a62;
  position: relative;
  z-index: 100;
  }

/* Cart Page */
.soldindividually{
  float: left;
  width: 100%;
  text-align: center;
}
.qty-wrapper.cart{
  float: left;
  display: flex;
  margin:0 auto;
  text-align: center;
  width: 100%;
}
.qty-wrapper.cart .minus,
.qty-wrapper.cart .plus,
.qty-wrapper.cart .quantity{
  width: 33.33%;
}
.qty-wrapper.cart input[type=number]{
  width: 100%;
}


.cwd_attribute_wrapper{
  float: left;
  width: 100%;
}
.cwd_attribute_option{
  float: left;
  display: inline-block;
  margin-bottom: 15px;
}
.cwd_attribute_option input{
  display: none;
}
.cwd_attribute_option label{
  float: left;
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 15px;
  margin-right: 10px;
  font-size: 0.8em;
  cursor: pointer;
}

.cwd_attribute_option label.active{
  float: left;
  display: inline-block;
  background:#019934;
  color: #fff;
  padding: 15px;
  margin-right: 10px;
  font-size: 0.8em;
}

body.single-product div.product button.single_add_to_cart_button{
  margin: 0;
}


/* select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"]{
  font-size: 16px;
} */
