.suggested-product-list {
    margin: 0;
    height: 120px;
    max-width: 300px;
    min-width: 300px;
    position: fixed;
    bottom: 20px;
    width: auto;
    z-index: 9;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding: 0;
}

.suggested-product-list .suggested-product-data {
    display: flex;
    justify-content: space-between;
    height: 100%;
    margin: 0;
    opacity: 0;
    padding: 15px 15px;
    position: absolute;
    bottom: 0px;
    left: 0;
    visibility: hidden;
    width: 100%;
    border-radius: 0;
    -webkit-transition: all cubic-bezier(0.47, 1.21, 0.47, 1.21) 0.3s;
    transition: all cubic-bezier(0.47, 1.21, 0.47, 1.21) 0.3s;
    align-items: center;
    border: 0px solid var(--wdtSecondaryColor);
}

.suggested-product-list .suggested-product-data.active {
    opacity: 1;
    visibility: visible;
    animation: pop-up-ani .3s cubic-bezier(0.39, 0.58, 0.57, 1) 1 backwards;
    -webkit-animation: pop-up-ani .3s cubic-bezier(0.39, 0.58, 0.57, 1) 1 backwards;
}

@keyframes pop-up-ani {
    0% {
        bottom: 0px;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0px;
    }
}

@-webkit-keyframes pop-up-ani {
    0% {
        bottom: 0px;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0px;
    }
}

/* -------- Custom Css -------- */

.suggested-product-list {
    left: 20px;
}

.fa-window-close::before {
    content: "\2716" !important;
}

.suggested-product-list .suggested-product-data:before {
    background-color: var(--wdtTertiaryColor);
    content: "";
    display: block;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    z-index: -1;
    /* border-radius: 6px; */
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 15%);
    box-shadow: 0 0 30px rgb(0 0 0 / 15%);
}

.suggested-product-list .suggested-product-data .suggested-product-image {
    width: 100px;
    height: 100px;
}

.suggested-product-list .suggested-product-data a.wdt_close {
    height: 14px;
    position: absolute;
    right: 10px;
    top: 4px;
    text-align: center;
    width: 14px;
    pointer-events: all;
    font-size: 14px;
}

.suggested-product-list .suggested-product-data .suggested-product-content span {
    font-size: var(--wdtFontSize_Ext);
}

.suggested-product-list .suggested-product-data .suggested-product-content .suggested-product-time {
    /* line-height: normal; */
    margin: 0;
    font-size: var(--wdtFontSize_Ext);
}

.suggested-product-list .suggested-product-data .suggested-product-content a {
    font-size: calc(var(--wdtFontSize_H6) - 4px);
    font-weight: var(--wdtFontWeight_Ext);
    display: block;
    line-height: 1.1;

}
.suggested-product-content {display: flex;flex-direction: column;justify-content: center;}
.suggested-product-list .suggested-product-data>* a img {
    max-width: 100px;
}