/*############ LiveProof ###########*/

.product-liveproof-wrapper {
    position: fixed;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ccc;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 2px 3px 10px -8px rgba(0,0,0,0.2);
    bottom: 6px;
    display: flex;
    align-items: stretch;
    gap: 5px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    left: 6px;
    max-width: 300px;
    min-width: 300px;
}

.product-liveproof-wrapper .product-image-box {
    width: 30%;
    min-height: 80px;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.product-liveproof-wrapper .product-description {
    width: 70%;
    padding: 8px 8px 8px 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-liveproof-wrapper:hover {
    cursor: pointer;
}

.product-liveproof-wrapper .product-purchased-details {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.product-liveproof-wrapper .product-purchased-duration {
    color: #a3a3a3;
    font-size: 11px;
}

.product-liveproof-wrapper.show-notification {
    opacity: 1;
    transform: translateY(0);
}

.product-liveproof-wrapper.hide-notification {
    opacity: 0;
    transform: translateY(100%);
}