﻿.vla_Slides {
    display: none
}

.vla_img {
    vertical-align: middle;
    border-radius: 15px;
}

/* Slideshow container */
.vla_slideshow-container {
    max-width: 1300px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.vla_prev, .vla_next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    line-height: 0.5;
}

/* Position the "next button" to the right */
.vla_next {
    left: 5px;
    /* border-radius: 3px 0 0 3px; */
}

.vla_prev {
    right: 5px;
    /* border-radius: 3px 0 0 3px; */
}

/* On hover, add a black background color with a little bit see-through */
.vla_prev:hover, .vla_next:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

/* Caption text */
.vla_text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    text-shadow: 2px 2px 5px #333;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.vla_numbertext {
    color: #ffffff;
    text-shadow: 0 0 5px #333;
    font-size: 14px;
    padding: 8px 12px;
    position: absolute;
    top: 100px;
}

/* The dots/bullets/indicators */
.vla_dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #dedede;
    border: 1px solid #7b7b7b;
    border-radius: 50%;
    display: inline-block;
    /* transition: background-color 0.6s ease; */
}

.vla_dot_container {
    text-align: center;
    margin-top: -25px;
}

.vla_active, .vla_dot:hover {
    background-color: #717171;
}

/* Fading animation */
.vla_fade {
    -webkit-animation-name: vla_fade;
    -webkit-animation-duration: 1.5s;
    animation-name: vla_fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes vla_fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes vla_fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .vla_prev, .vla_next, .vla_text {
        font-size: 11px
    }
}