
/* Slideshow container */
.carousel-container 
{
    width:100%;
    min-width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin: auto;
}



.carousel-item
{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

/* Next & previous buttons */
.carousel-prev, .carousel-next 
{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;

    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

/* Position the "next button" to the right */
.carousel-next 
{
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.carousel-prev:hover, .carousel-next:hover 
{
    background-color: rgba(0,0,0,0.6);
    color: white !important;
}

.carousel-numbertext 
{
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.carousel-dot-container
{
    text-align: center;
    min-height: 20px;
}

.carousel-dot 
{
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    margin: 0 2px;
    background-color: #bbb;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carousel-active, .carousel-dot:hover
{
    background-color: #717171;
}

@-webkit-keyframes fade 
{
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade 
{
    from {opacity: .4} 
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}