.displayNone {
    display: none;
}
.jsSlideItem {
    padding: 0 10px;
    text-align: center;
    position: relative;
}
.jsSlideItem img{
    display: block;
    margin: 0 auto;
}
.jsSlideMainBlock {
    width: 100%;
    align-items: baseline;
    justify-content: center;
    position: relative;
    min-height: 100px;
    overflow: hidden;
}
/**/
.jsSlideContent{
    display: flex;
    width: 95%;
    transition: all .3s linear;
    justify-content: space-around;
}
/**/

.js-slide-btn-left {
    background: #fff url(/vzo_theme/img/arrow-l.png) no-repeat center center;
    left: -20px;
}
.js-slide-btn-right {
    background: #fff url(/vzo_theme/img/arrow-r.png) no-repeat center center;
    right: -20px;
}
.js-slide-btn-left,.js-slide-btn-right {
    width: 50px;
    height: 50px;
    box-shadow: 8px 8px 22px #f1f1f1, -3px -8px 22px #f1f1f1;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 40%;
    bottom: 60px;
    /*margin: auto;*/
    display: block;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
}
.jsAnimateLeft {
    animation: mymoveleft 0.5s;
}
.jsAnimate {
    animation: animateBorder 2s;
}
.jsAnimateRight {
    animation: mymoveright 0.5s;
}
@keyframes mymoveleft {
    from {right: 0;}
    to {right: -25%;}
}
@keyframes mymoveright {
    from {left: 0;}
    to {left: -25%;}
}
@keyframes animateBorder {
    /*from {opacity: 0;}*/
    /*to {opacity: 1;}*/
    /*0%   { border-color: rgba(0, 255, 255, 1); }*/
    /*100%  { border-color: rgba(0, 255, 255, 0); }*/
    0%   { border: 1px solid rgba(235, 235, 235, 0.5); }
    50%  { border: 1px solid rgba(235, 235, 235, 1); }
    100%  { border: 1px solid rgba(235, 235, 235, 0); }
}

@media only screen and (max-width: 767px) {
    .js-slide-btn-left, .js-slide-btn-right {
        width: 30px;
        height: 30px;
    }
    .js-slide-btn-left {
        left: 0;
    }
    .js-slide-btn-right {
        right: 0;
    }
}
