/**********************************************************************************************
 * Revolution Slider Navigation (Dots / Arrows)
 **********************************************************************************************/

.tp-bullets {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tp-bullets .bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
}

.tp-bullets .bullet.selected {
    background: rgba(255,255,255,1);
}

.tp-leftarrow,
.tp-rightarrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
}

.tp-leftarrow { left: 20px; }
.tp-rightarrow { right: 20px; }

.tp-leftarrow:hover,
.tp-rightarrow:hover {
    background: rgba(0,0,0,0.7);
}
