
/* ========================================================================= *\
    vmcarousel plugin
\* ========================================================================= */

.vmc-container{position: relative;}
.vmc-viewport{overflow: hidden;padding:50px 0;}

.vmcarousel{list-style-type: none; padding: 0; margin: 0; width: 1000%;}
.vmcarousel:after{content: ''; display: table; clear: both;}
.vmcarousel > li{float: left;}
.vmcarousel > li img{ display: block; margin: 0 auto; max-width: 100%;}

.vmc_active img{
        -moz-box-shadow:0px 0px 10px 5px #888888;
        box-shadow: 0px 0px 10px 5px #888888;
}

.vmc-container.hide-controls .vmc-arrow-left, .vmc-container.hide-controls .vmc-arrow-right{display: none;}

.vmc-arrow-left, .vmc-arrow-right{
    position: absolute; top: 50%; left: -60px; width: 50px; height: 50px; margin-top: -25px; overflow: hidden;
    opacity: 1; border-radius: 50%; 
    transition: opacity 0.3s ease;
    text-align: center;
}
.vmc-arrow-right{left: auto; right: -60px;}
.vmc-container:hover .vmc-arrow-left, .vmc-container:hover .vmc-arrow-right{opacity: 1;}

.vmc-arrow-left:after, .vmc-arrow-right:after{
/*    content: ''; display: inline-block;
    font-family: 'Glyphicons Halflings'; 
    font-style: normal; 
    font-weight: 400; 
    line-height: 1; 
    
    text-shadow: 2px 2px #000;*/
    content: ''; 
    display: inline-block;
    line-height: 50px; 
    width: 55px;
    font-size: 0px;   
}
.vmc-arrow-left:after{
    background: url('/static/home/images/video_left1.png') 1px 1px no-repeat;
}
.vmc-arrow-left:hover:after{
    background: url('/static/home/images/video_left2.png') 1px 1px no-repeat;
}
.vmc-arrow-right:after{
    background: url('/static/home/images/video_right1.png') 1px 1px no-repeat;
}
.vmc-arrow-right:hover:after{
    background: url('/static/home/images/video_right2.png') 1px 1px no-repeat;
}
/*.vmc-arrow-left:hover:after, .vmc-arrow-right:hover:after{color: white;}*/
.vmc-arrow-left:after{content: "\e079";}
.vmc-arrow-right:after{content: "\e080";}

.vmc-container img[src$=".svg"]{width: 100% !important; height: auto !important; max-height: 100%;}

.notransition{-webkit-transition: none !important; -moz-transition: none !important; -o-transition: none !important; -ms-transition: none !important; transition: none !important;}
