/* Sales Popup */
#lwp-popup-notification {
    position: fixed;
    display: block;
    bottom: 20px;
    left: 20px;
    z-index: 9999999999999 !important;
}

.container-popup {
    /* box-shadow: 1px 1px 6px rgba(163, 177, 198, .22), 1px 1px 6px rgba(255, 255, 255, .5); */
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.31) 0px 0px 1px 0px;
    width: 360px;
    max-height: 100px;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: start;
    justify-content: center;
}


.popup-headline {
    margin: 0;
    margin-bottom: -2px;
    line-height: 18px;
    font-size: 14px;
    padding: 0;
}


.popup-image {
    flex-shrink: 0;
    /* shrinks to 0 to apply 70% width*/
    flex-basis: 30%;
    /* sets initial width to 70% */
    background: #fbfbfb;
    max-height: 100px;
    max-width: 100px;
    margin-left: -10px;
}

.popup-image img {
    object-fit: cover;
    width: 100px;
    height: 100px;
}

.popup-content {
    flex-shrink: 0;
    /* shrinks to 0 to apply 70% width*/
    flex-basis: 70%;
    /* sets initial width to 70% */
    padding: 10px;
    max-height: 95px;
    overflow: hidden;
}

.popup-content p {
    padding: 0;
    margin: 0;

}

.popup-content p {
    font-size: 14px !important;
    padding-bottom: 4px;
    margin-top: 1px !important;
    line-height: 16px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 38px; /* fallback */
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
}


/* Mobile Version */
@media only screen and (max-width: 480px) {
    #lwp-popup-notification {
        position: fixed;
        display: none;
        bottom: 3px;
        left: 12px;
        height: 100px;
    }

    .container-popup {
        width: 300px;
    }

    .popup-headline {
        font-size: 14px;
        margin: 0;;
    }

    .popup-image {
        max-height: 90px;
        max-width: 90px;
        margin-left: -6px;
    }

    .popup-image img {
        object-fit: cover;
        width: 90px;
        height: 90px;
    }

    .popup-content {
        max-height: 85px;
    }

    .popup-content p {
        padding-bottom: 0;
    }
}


#popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 12px;
    width: 12px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    transform: rotate(45deg);
    opacity: 1;
}

#popup-close::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: gray;
    position: absolute;
    left: 0;
    top: 5px;
}

#popup-close::after {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: gray;
    position: absolute;
    left: 5px;
    top: 0;
}