.front-modal{
    background: #0000007d !important;
}

  /* CART POPUP */
  .popup-cart {
    position: absolute;
    top: 110%; /* Adjust position */
    left: 110%;
    transform: translateX(-50%);
    background-color: rgba(250, 249, 249, 0.8);
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    pointer-events: none; /* Prevent blocking select */
}

.popup-cart::after{
    content: attr(data-title);
    position: absolute;
    background: white;
    color: black;
    left: 0;
    /* top: -45px; */
    font-size: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 200px;
    padding: 5px;
    border-radius: 4px;
    transition: 300ms;
    margin-left: 50%;
    margin-top: 50%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;

}

.d-inline-block:hover .popup-cart {
    visibility: visible;
    opacity: 1;
}
#send-email-modal{
    z-index: 100000000;
}
.view-data{
    color:#2196F3;
    font-weight: 500;
    cursor: pointer;
}
