/* Sales Popup */
#lsdd-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: 1.7;
    font-size: 15px;
    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: 12px !important;
    padding-bottom: 4px;
    margin-top: -3px !important;
    line-height: 1.4;
}


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

    .container-popup{
        width: 307px;
    }

    .popup-headline{
        font-size: 13px;
        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;
} 