
.wish_image {
    width: 195px;
    height: 260px;
}

/* Wishlist hover effect (like nav tooltips) */
.wish {
    position: relative;
    display: block;
}

.wish span {
    display: block;
    position: absolute;
    background: #222222;
    color: #ffffff;
    bottom: 0; /* place tooltip over bottom of image */
    left: 50%;
    font-size: 0.8em;
    padding: 0.5em 1em;
    line-height: 1.2em;
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
    transition: opacity .25s ease-in-out, transform .25s ease-in-out;
    white-space: nowrap;
    border-radius: 0.3em;
}

.wish:hover span {
    opacity: 1;
    transform: translateX(-50%) translateY(-20%);
}