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

.vmc-container{position: relative;}
.vmc-viewport{overflow: hidden;}

.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-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: -15px; width: 50px; height: 50px; margin-top: -25px; overflow: hidden;
    opacity: 0; border-radius: 50%; transition: opacity 0.3s ease;
    text-align: center;*/
	position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 32px;
  height: 40px;
  background: url(../images/slider-arrow2.png) -110px 5px no-repeat;
  filter: alpha(opacity=50);
  opacity: 0.5;
  z-index: 999;
}
.vmc-arrow-right{/*left: auto; right: -15px;*/left: auto;
  right: -15px;
  background-position: 8px 5px;}
.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-style: normal; font-weight: 400; line-height: 1; -webkit-font-smoothing: antialiased;
	 font-size: 50px; line-height: 50px; color: #d5d5d5;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.vmc-arrow-left:hover:after, .vmc-arrow-right:hover:after{color: #d82128;}
.vmc-arrow-left:after{content: "<";}
.vmc-arrow-right:after{content: ">";}*/

.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;}
