
body,html {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}


.btn-block {
    display: block;
    width: 100%;
}
.inline-block {
    display: inline-block;
}
.quantityInputGroup input {
    text-align: center;
}



.list-group-categories .list-group {
    margin-left: -15px;
    margin-right: -15px;

    font-size: 12px;
}

img {
    max-width: 100%;
    height: auto;
}
.clickable {
    cursor: pointer;
}


.btn-block {
    width: 100%;
    text-align: center;
}
.btn-group-xs > .btn, .btn-xs {
    padding: .25rem .4rem;
    font-size: .875rem;
    line-height: .5;
    border-radius: .2rem;
}

.text-sm {
    font-size: 0.875rem;
}
.text-xs {
    font-size: 0.6rem;
}

[data-count="0"] {
    display: none;
}





.categoryCard {
    position: relative;
    border-radius: 15px;
    border: 1px solid #F8F9FA;
    margin-bottom: 15px;
}
.categoryCard .categoryImage {
    border-radius: 15px 15px 0 0;
    aspect-ratio: 45/25;
}
.categoryCard .info {
    padding: 10px;
}
.categoryCard .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.productCard {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    border: 1px solid #F8F9FA;
    margin-bottom: 15px;
}
.productCard .productImage {
    border-radius: 15px 15px 0 0;
    aspect-ratio: 1/1;
    padding: 10px;
}
.productCard .addedToCart {
    background-color: #28CAF0;
    color: #fff;
    position: absolute;
    left:5px; top:5px;
    padding: 10px;
    border-radius: 10px;
    width: calc(100% - 10px);
    box-shadow:0px 0px 10px rgba(0,0,0,0.2);

    opacity: 0;
    transform: translateY(-50px);

    z-index: 10;
    transition: all 0.3s;
    text-align: center;
    font-size: 0.875rem;
}
.productCard .addedToCart.active {
    opacity: 1;
    transform: translateY(0);
}
.productCard .info {
    padding: 10px;
}
.productCard .buttonHolder {
    padding: 10px;
}
.productCard .title {
    height: 3em;
    overflow: hidden;
    line-clamp: 2;
    text-overflow: ellipsis;
}
.productCard .btn {
    border-radius: 10px;
}


.cart-list .flex-shrink-0 {
    display: none;
}
.cart-list {
    font-size: 15px;
}
.cart-list h5 {
    font-size: 18px;
}