
.foods {
    list-style: none;
    width: 100%;
    display: inline-block;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .foods > li {
        text-align: center;
        font-size: 12px;
        display: inline-block;
        height: 150px;
        min-height: 250px;
        padding: 10px !important;
    }

        .foods > li .media {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 4px !important;
            overflow: hidden;
            position: relative;
        }

        .foods > li img {
            min-width: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            transition: width .5s, height .5s, top .1s, left .1s;
            max-width: none !important;
            min-height: 175px;
        }

        
.foods > li:hover h3.place-name {
    color: #fff !important;
}

.foods > li:hover .tags {
    display: none;
}

.foods .media-body {
    position: absolute;
    bottom: 10px;
    margin-left: -10px;
    width: 100%;
    background: #fff;
    padding: 0 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

    .foods .media-body > span {
        color: #333;
        font-size: 15px;
        text-transform: capitalize;
        line-height: 20px !important;
    }

    .foods .media-body > h3 {
        margin-bottom: 3px !important;
        margin-top: 3px !important;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .foods .media-body a {
        font-size: 14px;
        font-weight: bold;
        color: #965306;
        text-transform: capitalize;
    }

.foods > li .city-opts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    background: rgba(150, 83, 6, 0.6);
    padding-top: 40px;
    text-align: center;
    display: none;
}

    .foods > li .btn {
        color: white;
        box-shadow: 1px 1px 1px rgba(100, 100, 100, 0.2);
        transition: width .5s, height .5s, background-color .5s, opacity 2s;
        border: 0;
        border-radius: 2px !important;
        margin-top: 5px !important;
        width: 100%;
        text-shadow: none !important;
    }

        .foods > li .btn.btn-explore:focus {
            background: #3fbfdf !important;
        }

        .foods > li .btn.btn-planner:focus {
            background: #fb7a19 !important;
        }

        .foods > li .city-opts .btn i {
            color: white;
        }

.foods > li:hover .city-opts {
    display: block;
}

.foods > li .buttons {
    width: 70%;
    margin: auto;
    display: block;
    text-align: center;
    z-index: 999;
}

.foods li .list-buttons {
    height: 0;
    transition: height .5s;
}

