/* CSS Document */

.old-price{
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 16px;
}

.sale-price{
    color: #e53935;
    font-weight: 600;
    font-size: 18px;
    margin-right: 8px;
}

.discount{
    background: #e53935;
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
}

.bi-heart-fill{
    color: red;
}
/* quick view modal */
.quick-modal{
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.5);
    z-index:999;
}

.quick-modal-content{
    background:#fff;
    width:60%;
    margin:5% auto;
    padding:20px;
    position:relative;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    cursor:pointer;
    font-size:20px;
}