.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mins,
.categories {
    border: 1px solid #0000004a;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 7px;
    margin-top: 0px;
    padding: 2px 12px;
    margin-right: 10px;
}

.categories {
    font-size: 16px;
}

.instock,
.outstock {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    position: absolute;
    top: 5%;
    right: 10%;
}

.instock {
    background-color: #568f56;
    color: #ffffff;
}

.outstock {
    border: 1px solid #dc3545;
    background-color: #dc3545;
    color: #ffffff;
}

.star-ratings {
    unicode-bidi: bidi-override;
    color: #ccc;
    font-size: 24px;
    position: relative;
    margin: 0;
    padding: 0;

    .fill-ratings {
        color: #e7711b;
        padding: 0;
        position: absolute;
        z-index: 1;
        display: block;
        top: 0;
        left: 0;
        overflow: hidden;

        // Allows us to grab the width of the span elements
        span {
            display: inline-block;
        }
    }

    .empty-ratings {
        padding: 0;
        display: block;
        z-index: 0;
    }
}

.cart {
    position: relative;
    cursor: pointer;
}

.cart:hover {
    color: blue !important;
    background-color: #f3efef !important;
    border-radius: 50px !important;
}

.cart .badge {
    position: absolute;
    top: -7px;
    right: -13px;
    background-color: #e9322d !important;
    color: white !important;
    font-size: 13px !important;
    padding: 4px 7px !important;
    border-radius: 50%;
}

.whatsapp {
    position: fixed;
    width: 70px;
    bottom: 10px;
    right: 10px;
    z-index: 90000000;
}

.whatsapp img {
    width: 70px;
}