.video-slide {
    cursor: pointer;
    display: inline !important;
}

#scrollable
{
    width:100%;
    height: 700px;
    position: relative;
}
div.scrollableArea {
    cursor: default;
}
#scrollable .video-slide {
    display: none;
}
#scrollable .thumbnail-icon-video
{
/*    position: relative;
    float: left;
    margin: 0 1px;
    padding: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: 700px;
    display: none;*/

    position: relative;
    float: left;
    display: block;
    height: 700px;
    padding: 0;
    margin: 0 1px;
    /* If you don't want the images in the scroller to be selectable, try the following
       block of code. It's just a nice feature that prevent the images from
       accidentally becoming selected/inverted when the user interacts with the scroller. */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

}
div.scrollingHotSpotLeft {
    background: transparent;
    left: 0;
}
@media (min-width: 10px) {
    div.scrollingHotSpotLeft {
        width: 33%;
        min-width: 0;
        cursor: initial;
    }
}
@media (min-width: 768px) {
    div.scrollingHotSpotLeft {
        width: 33%;
        cursor: url("/img/cursor_black_left.png") 22 24, e-resize;
    }
}
div.scrollingHotSpotRight {
    background: transparent;
    right: 0;
    cursor: url("/img/cursor_black_right.png") 22 24, e-resize;
    width: 33%;
}
@media (min-width: 10px) {
    div.scrollingHotSpotRight {
        width: 33%;
        min-width: 0;
        cursor: initial;
    }
}
@media (min-width: 768px) {
    div.scrollingHotSpotRight {
        width: 33%;
        cursor: url("/img/cursor_black_right.png") 22 24, e-resize;
    }
}

.modal-video-iportfolio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 99999;
    display: none;
}
.modal-video-iportfolio .modal-video-content {
    width: 100%;
    height: 100vh;
}
.modal-video-iportfolio .modal-video-content .modal-video-content-header {
    position: relative;
    padding:10px;
    background-color: #e7e7e7;
    color: black;
    font-weight:bold;
}
.modal-video-iportfolio .modal-video-content .modal-video-content-header .modal-video-content-header-close {
    position: absolute;
    text-align: right;
    cursor: pointer;
    right: 20px;
    top: 50%;
    margin-top: -10px;
}.modal-video-iportfolio .modal-video-content #player{
     width: 100%;
     height: 100vh;
 }
.modal-video-iportfolio .modal-video-content iframe{
    width: 100%;
    height: 100vh;
    position: absolute;
    top:40px;
    left:0;
}