#btn-favoritos-fixed {
    position: fixed;
    right: 0;
    top: 45px;
    padding: 8px;
    color: #fff;
    cursor: pointer;
    z-index: 19  ;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;        
}

.fav-box.popup {
    display: block !important;
    position: fixed;
    right: -400px;
    width: 400px;
    max-width: 100%; 
    height: 100%;
    top: 0;
    z-index: 20 !important;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;      
}

.fav-box.popup.opened {
    right: 0;  
}
.fav-box.popup .fav-popup-container{border: 2px #ebebeb solid;  background: #fff; position: relative; padding: 10px;display: flex;height: 100%;flex-direction: column;min-height: 100%;}

#fav-product-list{
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 13px;
    padding: 10px 0;
    flex: 1;
}

#fav-product-list img{
    float: left;
    width: 53px !important; 
    height: 53px !important; 
    max-width: inherit !important;
}

.fav-check{     
    -webkit-appearance: checkbox !important;
}
.left-check {
    vertical-align: middle;
    padding: 0px;
}

#fav-product-list .badge {
    position: absolute; right: 3px;
}
#fav-product-list .media-left{ position: relative }
#fav-product-list .product-container{ padding-right:0px; font-weight: bold }
#fav-product-list .product-desc{ line-height: 1.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
 }

#fav-product-list .product-remove { text-align:right; font-weight: bold}

#fav-product-list li {
    display: block;
    height: 55px;
    border-bottom: 1px solid #ddd;
}
#fav-product-list li:hover {
    opacity: 0.8;
}


#fav-product-list .total {
    float: right;
    font-weight: bold;
    margin-top: -15px;
}

.fav-box .totals {
    display: block;
    width: 200px;
    float: right;
    font-weight: bold;    
    text-align: right;
    margin-bottom: 10px;
}