.tvcms-prod-popup {
    margin-left: 0;
    position: fixed;
    z-index: 1;
    left: 15px;
    bottom: 15px;
    opacity: 0;
    font-size: 17px;
    z-index: 100;
    box-shadow: 0px 5px 10px 0px rgba(23, 84, 116, 0.18);
    /*display: none;*/
    max-width: 250px;
    visibility: hidden;
     /*transform: translateY(20px);*/
    -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        animation: moveInbottom 0.5s ease-in-out both;
}
.tvcms-prod-popup.show {
    opacity: 1;
    /*display: block;*/
    visibility: visible;
    /*transform: translateY(0px);*/
    animation: moveIntop 0.5s ease-in-out both;
}
@keyframes moveIntop {
    0% {
        transform: translateY(20px);
    }
    80% {
        transform: translateY(-20px);
    }
    100% {
        transform: translate(0);
    }
}
@keyframes moveInbottom {
    0% {
        transform: translate(0);
    }
    10% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(-20px);
    }
}
.tvcms-prod-popup .tvproduct-name,
.tvcms-prod-popup .tvproduct-timer {
    margin-bottom: 10px;
}
.tvcms-prod-popup .tvproduct-timer .tvproduct-timer-wrapper {
    margin: 0;
}
.tvcms-prod-popup .tvproduct-wrapper .tvproduct-timer-wrapper .hours,
.tvcms-prod-popup .tvproduct-wrapper .tvproduct-timer-wrapper .minutes,
.tvcms-prod-popup .tvproduct-wrapper .tvproduct-timer-wrapper .days,
.tvcms-prod-popup .tvproduct-wrapper .tvproduct-timer-wrapper .seconds {
    font-size: 12px;
}
.tvcms-prod-popup .product-price-and-shipping .price {
    font-size: 20px;
}
.tvcms-prod-popup .product-price-and-shipping .regular-price {
    font-size: 14px;
}
.tvcms-prod-popup .thumbnail-container .product-container-img {
    position: relative;
    float: left;
    width: 90px;
    border: 0;
    line-height: 0;
    margin: 0;
    min-height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
    display: -webkit-flex
}

.tvcms-prod-popup .thumbnail-container .product-description {
    padding: 5px 0 5px 10px;
    width: calc(100% - 90px);
    margin-top: 0;

}
.close-prod-popup {
    position: absolute;
    right: 4px;
    top: 2px;
    left: auto;
}
.close-prod-popup i {
    font-size: 18px;
}
.tvcms-prod-popup .thumbnail-container .date-ago {
    font-size: 13px;
    margin-top: 15px;
}
.tvcms-prod-popup .tvproduct-wrapper .tvproduct-info-box-wrapper {
    padding: 0;
}
.tvcms-prod-popup .tvproduct-wrapper {
    min-width: 110px;
    overflow: hidden;
    align-items: center;
    padding: 10px;
    margin: 0;
    border-radius: 0;
}
.tvcms-prod-popup .product-flags,
.tvcms-prod-popup .tvproduct-hover-btn {
    display: none;
}

.lang-rtl .tvcms-prod-popup {
    left: auto;
    right: 15px;
}

.tvprodpopup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px;
    z-index: 10;
}

.tvprodpopup-close i {
    font-size: 18px;
    color: #000;
}

.lang-rtl .tvprodpopup-close {
    left: 5px;
    right: auto;
}