.imageWrapper {
    display: inline-block;
    position: relative;
    margin-right: 10px;

    i {
        visibility: hidden;
    }

    &:hover i {
        visibility: visible;
    }

    .left {
        position: absolute;
        left: 5px;
        top: 25px;
        color: white;
    }

    .middle {
        position: absolute;
        left: 50%;
        margin-left: -5px;
        top: 25px;
        color: white;
    }

    .right {
        position: absolute;
        right: 5px;
        top: 25px;
        color: white;
    }

    img {
        width: 'auto';
        height: 60px;
    }
}