#collection_options input.qty {
    background-color: #fff;
    height: 46px;
    padding: 0.175rem 0.5rem;
    width: 60px;
    border: none;
    border-left: 1px solid #e6e7e8;
    border-right: 1px solid #e6e7e8;
    text-align: center;
}

#collection_options table {
    border: 1px solid #e6e7e8;
    width: 100%;
}

#collection_options table tr:nth-child(even) {
    background: #ffffff
}

#collection_options table tr:nth-child(odd) {
    background: #f8f8f8
}

#collection_options table td:first-child {
    padding: 10px 40px;
}

#collection_options table td.product-quantity {
    display: table-cell;
}

#collection_options table td:first-child {
    width: 10%;
}

#collection_options table td:nth-child(2) {
    width: 50%;
}

#collection_options table td:nth-child(3) {
    width: 10%;
}

#collection_options table td:nth-child(4) {
    width: 15%;
}

#collection_options table td:nth-child(5) {
    width: 15%;
}

#collection_options td.price {
    color: #ff6e00;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

#collection_options td.stock {
    color: #5cb157;
    font-size: 20px;
    font-weight: bold;
}

#collection_options td.stock.danger {
    color: #da3832;
}

#collection_options .add_to_cart_options {
    width: 100%;
    height: 50px;
    margin-top: 50px;
    margin-bottom: 100px;
}

#collection_options a {
    color: #3d3d3d;
}

#collection_options a:hover {
    color: #ff6e00
}

@media screen and (max-width: 1200px) {
    #collection_options table thead {
      display: none;
    }
    
    #collection_options table tr {
      display: block;
    }
    
    #collection_options table td {
      border-bottom: 1px solid #ddd;
      display: block !important;
      width: 100% !important;
      text-align: center;
      padding: 10px;
    }

    #collection_options table td.product-quantity .bootstrap-touchspin {
        float: unset;
        max-width: 165px;
        margin: 10px auto;
    }
    
  }