.last-customer-wrap{
    position: fixed;
    width: 350px;
    height: 110px;
    background: #fff;
    bottom: 15px;
    left: 75px;
    right: auto;
    display: flex;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 3px 4px 3px #00000080;
    padding: 10px;
    display: none;
    opacity: 0;
    z-index: 15;
}
.last-customer-wrap.fadeIn{
    display: flex;
    opacity: 1;
    animation-name: fadeIn;
    animation-duration: 2s;
}
.last-customer-wrap.fadeOut{
    opacity: 0;
    animation-name: fadeOut;
    animation-duration: 0.5s;
}
.lc-product-image{
    width: 100px;
    height: 88px;
    min-width: 100px;
    max-width: 100px;
    max-height: 88px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc-product-image img{
    width: auto; /* let the browser calculate the width */
    height: auto; /* let the browser calculate the height */
    max-width: 100%; /* set maximum width to 100% of container */
    max-height: 100%; /* set maximum height to 100% of container */
}

.lc-product-info{
    margin-left: 10px;
    position: relative;
    height: 100%;
    max-width: 217px;
}

.lc-product-info a{
    text-decoration: none;
    color:inherit;
}

.lc-product-info a:hover .lc-product-title{
    text-decoration: underline;
}

.lc-product-title{
    font-weight: 600;
    margin-bottom: 5px;
    max-width: 217px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 42px;
}

.lc-customer-name{
    font-size: 13px;
    color: #9a9a9a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lc-time{
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (max-width: 480px) {
    .last-customer-wrap {
        width: auto;
        left: 75px;
        right: 10px;
        bottom: 15px;
        height: 55px;
        min-height: 55px;
    }
    .lc-product-image {
        width: 70px;
        min-width: 70px;
        max-width: 70px;
        height: 70px;
        max-height: 70px;
    }
    .lc-product-info {
        max-width: calc(100vw - 125px);
    }
    .lc-product-title {
        max-width: calc(100vw - 125px);
        font-size: 13px;
    }
}

@keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
}

@keyframes fadeOut {
    0% {
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      opacity: 0;
      transform: translateX(-20px);
    }
}