.quantity {
    position: relative;
  }

  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

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

  .quantity input {
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 0px;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
  }

  .quantity input:focus {
    outline: 0;
  }

  .quantity_fate input {
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 0px;
    border: none;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
  }

  .quantity_fate input:focus {
    outline: 0;
  }

  .quantity-nav {
    float: right;
    position: relative;
    height: 52px;
  }

  .quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
  }

  .quantity-button:active {
    background: #EAEAEA;
  }

  .quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "FontAwesome";
    border-radius: 0 4px 0 0;
    line-height: 1.6
  }

  .quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    font-family: "FontAwesome";
    border-radius: 0 0 4px 0;
  }