/* Image Hover */
.img-hover {
    position: relative;
    transition: all ease 0.5s;
    cursor: pointer;
}
.img-hover .link-hover {
    background: url('/includes/public/assets/images/shadow.png') repeat 0 0;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    content: '\A';
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: inherit;
    opacity: 0;
    box-sizing: border-box;
    transition: all ease 0.5s 0.1s;
    -webkit-transition: all ease 0.5s 0.1s;
}
.img-hover .link-hover a {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    width: auto;
    font-family: 'Knockout', Arial, sans-serif;
    font-size: 36px;
    color: #fff;
    padding-right: 35px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: translate(-50%, 0%);
    transition: all ease 0.5s 0.1s;
}
.img-hover .link-hover a:after {
    content: '\f178';
    position: absolute;
    top: 53%;
    right: 0px;
    display: block;
    font-family: 'FontAwesome';
    font-size: 28px;
    width: auto;
    min-width: 20px;
    height: 100%;
    opacity: 1;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all ease .5s;
}
.img-hover .link-hover:hover {
    opacity: 1;
    transition: all 0.5s ease 0.1s;
}

.img-hover:hover .link-hover a {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.contentRender[class*="contentRender_name_plugins_collections"] .logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.8;
    z-index: 1;
}

@media only screen and (max-width: 40em) {
    .contentRender[class*="contentRender_name_plugins_collections"] .logo-overlay {
        top: 10px;
        left: 10px;
        bottom: auto;
        right: auto;
    }

    .contentRender[class*="contentRender_name_plugins_collections"] .logo-overlay img {
        max-width: 50px;
    }
}