.indicators {
    position: absolute;
    z-index: 8;
    left: 0;
    right: 0;
    width: 100%;
    height: 5%;
    bottom: 2%;
    -webkit-transition: none;
    transition: none;
    opacity: 0
}

.dot {
    height: 8px;
    width: 8px;
    margin: 0 3px;
    border: 2px solid #ababab;
    background-color: transparent;
    border-radius: 50%;
    display: inline-block;
    -webkit-transition: var(--quick-transition);
    transition: var(--quick-transition);
    cursor: pointer
}

.dot.active {
    background: #ababab
}

.dot:hover {
    scale: 1.1
}


@media screen and (min-width:500px) {
    .indicators {
        bottom: -5%
    }

    .dot {
        height: 12px;
        width: 12px;
        margin: 0 6px
    }
}

@media screen and (min-width:1200px) {
    .indicators {
        left: 25%;
        right: 25%;
        width: 50%;
        bottom: -5%
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px
    }
}