.product_count {
  display: flex;
  width: 265px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  position: relative;
  margin-top: 12px;
}

.product_count.disabled {
  pointer-events: none;
  background: #EDEDED;
  color: #979797;
}

.product_count > span {
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  font-size: 22px;
  line-height: 44px;
  flex: 1 0 auto;
  cursor: pointer;
  font-family: var(--fontFamily);
}

.product_count > span:first-child {
  border-right: 1px solid #CCCCCC;
}

.product_count > span:last-child {
  border-left: 1px solid #CCCCCC;
}

.product_count input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  flex: 1 1 auto;
  background: transparent;
}

.product_count.disabled input {
  color: #979797;
}

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

.product_count input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 767px) {
  .product_count {
    width: 100%;
    height: 42px;
  }
  
  .product_count > span {
    width: 50px;
    height: 40px;
    line-height: 42px;
  }
  .product_count input{
    line-height: 40px;
  }
}
