﻿/* Hide the images by default */
.carousel-slide {
    display: none;
}

/* The dots/bullets/indicators */
.carousel-dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active {
        background-color: #F3E600;
    }

/* Faint animation */
.carousel-fade {
    animation-name: carousel-fade;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes carousel-fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
