#lesson-video-mini-view {
    display: none;
    position: absolute;
    top: 2%;
    right: 2%;
    width: 350px;    
    padding: 15px;
    background-color:white;
    border: 1px solid white;
    border-radius: 10px;
    cursor: move;

    webkit-box-shadow: 0px 2px 4px rgba(50, 50, 50, 0.6);
    -moz-box-shadow: 0px 2px 4px rgba(50, 50, 50, 0.6);
    box-shadow: 0px 2px 4px rgba(50, 50, 50, 0.6);

    video {
        cursor: move;
    }

    #close-video-view {
        position: absolute;
        top: -9px;
        left: -9px;
        background-color: white;
        border-radius: 50%;
        
        cursor: pointer;
        
        font-size: 20px;
        border-radius: 50%;
        font-size: 25px;
        z-index: 99999;

        &:hover {
            color: #3498db;
        }        
    }
        
}