/* =========================
   DOT INDICATORS
========================= */

.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff6b6b;
    width: 16px;
    height: 16px;
}
