﻿.favorite-list {
    width: calc(100% - 20px);
    margin: 0 auto;
    margin-top: 20px;
    min-height: 400px;
}

    .favorite-list label.title {
        font-weight: normal;
        text-align: center;
        display: block;
        font-size: 20px;
        padding-bottom: 15px;
    }

        .favorite-list label.title .fa {
            color: rgb(255, 179, 0);
        }

    .favorite-list .item-box.odd:before {
        content: "";
        position: absolute;
        height: 27px;
        width: 1px;
        background-color: silver;
        left: -15px;
        top: 45px;
    }

    .favorite-list .item-box {
        position: relative;
        min-height: 140px;
        padding: 10px 0;
    }

        .favorite-list .item-box .placeholder {
            background-image: url('/images/fav_dashed.png');
            height: 120px;
            width: 100%;
            background-repeat: no-repeat;
            background-position: center 15px;
            margin: 0 auto;
        }

        .favorite-list .item-box .image {
            min-height: 45px;
            text-align: center;
            font-size: 2em;
            position: relative;
        }

        .favorite-list .item-box .fa.fa-minus-circle {
            position: absolute;
            top: 15px;
            left: 10px;
            opacity: 0;
        }

        .favorite-list .item-box:hover .fa.fa-minus-circle {
            opacity: 1;
        }

            .favorite-list .item-box:hover .fa.fa-minus-circle:hover {
                color: red;
            }

        .favorite-list .item-box .image img {
            margin-top: 20px;
        }

    .favorite-list a .item-box:hover {
        color: rgba(0,0,0,1);
    }

    .favorite-list a .item-box {
        color: rgba(0,0,0,0.7);
    }

        .favorite-list a .item-box.pointer {
            cursor: pointer;
        }

    .favorite-list .item-box span {
        display: block;
        height: 40px;
        text-align: center;
        font-size: .8em;
    }
