/* Image Carousel
-------------------------------------------------- */
.wn-vertical-carousel .owl-dots .owl-dot.active {
    background: #437df9;
}

.wn-vertical-carousel .owl-dots .owl-dot:after {
    background-color: #437df9;
    content: " ";
    position: absolute;
    width: 15px;
    height: 1px;
    left: -10px;
    bottom: 0;
}

.wn-vertical-carousel .owl-nav .owl-prev .ol-pre:after,
.wn-vertical-carousel .owl-nav .owl-next .ol-nxt:after {
    font-family: "linea-arrows-10";
    font-size: 32px;
    color: #437df9;
    position: absolute;
    right: calc(50% - 26px);
    opacity: 1;
    width: 52px;
    height: 53px;
    line-height: 52px;
    text-align: center;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.wn-vertical-carousel .owl-nav .owl-prev .ol-pre:after {
    content: "\e06a";
    top: 0;
}

.wn-vertical-carousel .owl-nav .owl-prev .ol-pre:hover::after {
    content: "\e06b";
    color: #000;
    background: #fff
}

.wn-vertical-carousel .owl-nav .owl-next .ol-nxt:after {
    content: "\e064";
    bottom: 55px;
}

.wn-vertical-carousel .owl-nav .owl-next .ol-nxt:hover::after {
    content: "\e065";
    color: #000;
    background: #fff;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}