﻿/* General style */
.uxhover {
    width: 100%;/*11%*/
    /*margin: 6px;*/
    float: left;
    border: 1px solid rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}

    .uxhover .mask,
    .uxhover .content {
        width: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0
    }

    .uxhover img {
        display: block;
        position: relative;
    }

    .uxhover h2 {
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        position: relative;
        font-size: 12px;
        /*padding: 5px;*/
        margin: 2px 0 0 0
    }

    .uxhover p {
        font-size: 12px;
        position: relative;
        color: #fff;
        padding: 0px 2px 0px;
        text-align: center;
        /*height: 170px;
        height: 70%;*/
        overflow-y: hidden;
        position:relative;
    }

.fade-out:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient( rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 1) 100% );
}

.uxhover .info {
    position: absolute;
    margin: 0 auto;
    bottom: 5px;
    width:100%;
}

.uxhover a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 1);
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    position: absolute;
    left: 5px;
    bottom: 5px;
    width: 45%;
}
.uxhover a.infoRight {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 1);
    color: #000;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 45%;
}

    .uxhover a.info:hover {
        background: rgba(255, 255, 255, .7);
        cursor:pointer;
        /*color: #fff;*/
    }
.uxhover a.infoRight:hover {
    background: rgba(255, 255, 255, .7);
    /*color: #fff;*/
}
/* Effect 3*/
.hoverEffect-tenth img {
    width: 100%;
    height: 100%;
    transform: scaleY(1);
    transition: all .7s ease-in-out;
}

.hoverEffect-tenth .mask {
    /*background-color: rgba(0, 0, 0, .9);*/
    transition: all 1.0s linear;
    opacity: .4;
    height: 100%;
    cursor: pointer;
    padding:10px;
}

.hoverEffect-tenth h2 {
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.3);*/
    background: transparent;
    font-weight: 900;
    margin: 10px 0px 10px 0px;
    transform: scale(0);
    transition: all 0.5s linear;
    opacity: 0;
}

.hoverEffect-tenth p {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}

.hoverEffect-tenth a.info {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}

.hoverEffect-tenth a.infoRight {
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s linear;
}

.hoverEffect-tenth:hover img {
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 0;
}

.hoverEffect-tenth:hover .mask {
    /*background-color: #cccccc;*/
    background-color: rgba(0, 0, 0, 1);
    opacity: 1;
}

.hoverEffect-tenth:hover h2,
.hoverEffect-tenth:hover p,
.hoverEffect-tenth:hover a.info,
.hoverEffect-tenth:hover a.infoRight {
    transform: scale(1);
    opacity: 1;
    cursor:pointer;
}

/*Below gives a straight line content image START*/

/*.overlay {
    position: absolute;
    top: 0px;
    right: -20px;
    border-top: 70px solid #28a745;
    border-left: 70px solid transparent;
    z-index: 10000;
}

.overlayImage {
    position: absolute;
    top: -67px;
    left: -46px;
    color:white;
}*/

/*Above gives a straight line content image END*/

.overlay {
    position: absolute;
    top: 0px;
    right: -20px;
    border-top: 50px solid red;
    border-left: 45px solid red; /*#28a745;*/
    border-radius: 20px;
    z-index: 10000;
    transform: translate(-0%, -50%);
}

.overlayImage {
    position: absolute;
    top: -25px;
    left: -40px;
    color: white;
    width:20px;
    text-align:center;
    font-weight:bold;
}

.overlayImageBR {
    position: absolute;
    bottom: 0;
    right: 16px;
    color: white;
    width: 20px;
    z-index: 10000;
    text-align: center;
}

.overlayRecommend {
    position: absolute;
    bottom: -50px;
    right: -20px;
    border-bottom: 50px solid #28a745;
    border-right: 45px solid #28a745;
    border-radius: 20px;
    z-index: 10000;
    transform: translate(-0%, -50%);
}

.overlayRecommendImage {
    position: absolute;
    bottom: -25px;
    right: -26px;
    color: white;
    width: 20px;
    text-align: center;
}










.movie:hover {
    transform: scale(1.3);
    z-index: 2;
}

.movie img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.description {
    position: absolute;
    display: none;
    z-index: 9999;
    background-color: #272727;
    width: var(--movie-width);
    margin-top: -10px;
    padding: 10px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Make description visible when movie is hovered */
.movie:hover > .description {
    display: block;
}

.movie:hover > img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
