body{

    background: #fff;
}


.wrapper{

    /* margin-top: 30px; */
}

.card{

    border:1px solid gray;
    cursor: pointer;
}


.weight{

    /* margin-top: -65px;  */
    transition: all 0.5s; 
    min-height: 50px;
}

.weight small{

    color: darkblue;
    font-weight: bolder;
}

.buttons {
        padding: 10px;
    background-color: #d6d4d44f;
    border-radius: 4px;
    position: relative;
    margin-top: 7px;
    opacity: 0;
    transition: all 0.8s;
}

.dot {
    height: 14px;
    width: 14px;
    background-color: green;
    border-radius: 50%;
    position: absolute;
    left: 27%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    color: #fff;
    opacity: 0;
}

.cart-button {
    height: 48px
}

.cart-button:focus {
    box-shadow: none
}

.cart {
    position: relative;
    height: 48px !important;
    width: 50px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 11px;
    border-radius: 5px;
    font-size: 14px;
    transition: 1s ease-in-out;
    overflow: hidden;

}

.cart-button.clicked span.dot {
    animation: item 0.3s ease-in forwards
}

@keyframes item {
    0% {
        opacity: 1;
        top: 30%;
        left: 30%
    }

    25% {
        opacity: 1;
        left: 26%;
        top: 0%
    }

    50% {
        opacity: 1;
        left: 23%;
        top: -22%
    }

    75% {
        opacity: 1;
        left: 19%;
        top: -18%
    }

    100% {
        opacity: 1;
        left: 14%;
        top: 28%
    }
}



.card:hover .buttons{

    opacity: 1;
}


.card:hover .weight{

     margin-top: 10px;
     
}

.card:hover{

    transform: scale(1.04);
    z-index: 2;
    overflow: hidden;
}

.item .item-img{
    max-width: 100%;
    max-height: 100%;
}
.item .item-img-div{
    height: 200px;
}
.item .discount{
    height:44px; 
    width:44px;
}
.product-details .delivery-notes{
    max-width: 100%;
    font-size: 11px;
    padding-bottom: 3px;
}
.item .card a{
    text-decoration: none;
    color: #212529;
}
.filter-header{
    background-color: aliceblue;
    border-bottom: 5px solid chocolate;
    margin-bottom: 10px;
}
hr{
    background-color: chocolate;
    margin: 0;
    opacity: unset;
}

