.favorites {
    position: fixed;
    top: 20%;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background: white;
    padding: 36px;
    width: 1000px;
    min-height: 250px;
    border-top-left-radius: 15px;
    -webkit-transition: right 0.5s ease-out;
    transition: right 0.5s ease-out;
    border-bottom-left-radius: 15px;
    border: 1px solid #ab915d;
    border-right: none;
    z-index: 500;
}

.favorites.active {
    right: 1000px;
    -webkit-transition: right 0.5s ease-out;
    transition: right 0.5s ease-out;
}
.favorites span.empty {
    display: none;
}
.favorites.active.none span.empty {
    display: block;
}
.favorites.active.none {
    right: 250px;
}
.favorites.active.one {
    right: calc(250px + 36px);
}
.favorites.active.two {
    right: calc(500px + 36px);
}
.favorites.active.three {
    right: calc(750px + 36px);
}    
.favorites.active.none header {
    width: 200px;
}
.favorites.active.one header {
    width: calc(250px - 18px);
}
.favorites.active.two header {
    width: calc(500px - 18px);
}
.favorites.active.three header {
    width: calc(750px - 18px);
}    

.favorites .toggleFavorites {
    position: absolute;
    left: 0;
    -webkit-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    top: 50%;
    width: 20px;
    background: #AB915D99;
    background: #AB915D;
    background: rgb(171,145,93);
    color: white;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    cursor: pointer;
    -webkit-transition: background-color 0.1s ease-out;
    transition: background-color 0.1s ease-out;
    line-height: 1.4em;
}
/* Use .no-csspointerevents to detect IE < 11*/
.no-csspointerevents .favorites .toggleFavorites {
    display: block;
    padding-right: 25px;
    padding-left: 15px;
}

.favorites button.toggleFavorites:hover, .favorites.active button.toggleFavorites {
    background: #AB915DFF;
    background: #AB915D;
    background: rgb(171,145,93);
}

.favorites header {
    margin-bottom: 36px;
}
.favorites header h1 {
    text-align: center;
    font-size: 24px;
    color: #ab915d;
    position: relative;
}
.favorites header h1:after {
    content: "";
    position: absolute;
    width: 34px;
    height: 4px;
    background: #ab915d;
    left: 50%;
    bottom: -16px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.favorites .productContainer {
    display: block;
    position: relative;
    /* max-height: 755px; */
    max-height: 50vh;
    overflow-y: overlay;
    /* padding-right: 15px; */
}
.favorites .productContainer .favorite3 {
    position: absolute;
    font-size: 14px;
    line-height: 24px;
    margin: 5px;
    vertical-align: middle;
    color: #595959;
    width: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
}
.favorites li.favourite_card {
    position: relative;
}
.favorites .productContainer .favorite3:after {
    content: " ";
    display: block;
    width: 24px;
    height: 24px;
    background: transparent url(/front/img/product/ico-star.png) 0% 0% no-repeat;
    background-size: 100% auto;
    -webkit-background-size: 100% auto;
    margin-right: 6px;
    -webkit-transition: all 0.05s;
    transition: all 0.05s;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
.favorites .productContainer .favorite3.active:after {
    background-image: url(/front/img/product/ico-star-active.png);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
.favorites .productContainer ul {
    margin: 0;

}

.favorites .card01 .inner {
    background-position: unset;
    background-repeat: unset;
    background-size: unset;
    -webkit-background-size: unset;
}

@media screen and (max-width: 736px){
    .favorites.active, .favorites.active.none,
    .favorites.active.one, .favorites.active.two,
    .favorites.active.three {
        right: 65%;
    }

    .favorites {
        width: 65%;
        min-height: 200px;
        top: 15%;
        padding: 8px;
        /* padding: 18px; */
    }

    .favorites.active.none header, 
    .favorites.active.one header,
    .favorites.active.two header,
    .favorites.active.three header {
        width: 100%;
    }    
    .favorites header h1 {
        font-size: 22px;
    }
    .favorites .favourites_list.card04 {
        width: 100%;
    }
    .favorites .favourites_list.card04 li {
        max-width: 100% !important;
    }
    .favorites .productContainer {
        max-height: 70vh;
        padding-right: 0px;
    }
    .favorites .productContainer .favourites_list {
        max-height: 50vh;
        overflow-y: auto;
    }
    .favorites .productContainer .favourites_list.card04 .photo {
        height: 60px;
        padding-bottom: 60% !important;
    }
    .favorites .productContainer .favourites_list.card04 .text {
        height: auto;
    }
}