/* Quick and easy Animated Pagination Dots */

.pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 1em;
    justify-content: center;
    margin: 3em 0 1em;
    z-index: 999;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.pagination .dot {
    border-radius: 50%;
    background-color: gray;
    width: 15px;
    height: 15px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.pagination .dot:hover {
    background-color: lightgray;
}

.pagination .dot.active {
    background-color: #3EACC4;
    width: 20px;
    height: 20px;
}