/**
 * Project          : Classic
 * Source filename  : videos.css
 * Description      : css styles for videos
 * Author           : Pratham <pratham.jn@robosoftin.com>
 * Copyright        : Copyright © 2016, Saregama India Ltd
 *                    Written under contract by Robosoft Technologies Pvt. Ltd.
 */

.videoEditImage{
	text-align: center;
    margin: 0 auto;
    position: relative;
    max-width: 100%; 
}


.videoEditImage .editImage {
    display: none; 
}
.videoEditImage .videoThumbnail {
    display: block;
    border: solid 1px black;
    max-height: 400px;
    max-width: 400px; 
}

.videoEditImage .recommendEditIcon {
    /* display: none; */
    position: absolute;
    right: 5%;
    top: 0;
}

.videoEditImage:hover .videoThumbnail {
  opacity: 0.7; }
.videoEditImage:hover .recommendEditIcon {
  display: block; }
