﻿.animate-fading {
    width: 100%;
    animation: fading 10s infinite
}

@keyframes fading {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.mySlides {
    display: none;
    width: 115%
}

.mycontainer {
    position: relative;
}

.button-left {
    left: 1%;
    font-size: 20px
}

.button-right {
    right: 1%;
    font-size: 20px
}

.image-button {
    border: none;
    display: inline-block;
    padding: 5px;
    height: 40px;
    vertical-align: middle;
    overflow: hidden;
    color: #fff;
    background: #000;
    position: absolute;
    top: calc(100% - 55px);
    opacity: 0.5;
}

    .image-button:hover {
        color: #000;
        background-color: #ccc;
    }

/*---Css Chấm tròn---*/
.badge {
    text-align: center;
    margin-bottom: 16px;
    font-size: 20px;
    position: absolute;
    bottom: 0;
}

.badge-white {
    color: #000 !important;
    background-color: #fff !important
}

.image-badge {
    display: inline-block;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    border: 1px solid #ccc;
}

    .image-badge:hover {
        background: #fff;
    }

