/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .row{
    display: flex;
    flex: 1;
    gap: 10px;
 }
 .row .product-thumbnail{
    max-width: 100px;
 }
 .mb-3{
    margin-bottom: 10px;
 }
 .mb-auto{
    margin-bottom: auto;
 }
 .product-detail{
    display: flex;
    width: 100%;
    flex-direction: column;
 }
 a.btn{
    text-decoration: none !important;
 }
 .btn:hover{
     background-color: #d5d5d5;
     border-color: #d5d5d5;
 }
 .btn{
    border: 0;
    text-align: center;
    border-radius: 0;
    background: none;
    background-color: #eeeeee;
    border-color: #eeeeee;
    color: #333333;
    cursor: pointer;
    padding: 0.6em 1.5em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
    -webkit-appearance: none;
 }