/* Slider container */
.daiken-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Each slide */
.daiken-slide {
    display: none;
    width: 100%;
}

.daiken-slide.active {
    display: block;
}

/* Arrows */
.daiken-prev,
.daiken-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 32px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
}

.daiken-prev { left: 15px; }
.daiken-next { right: 15px; }

.daiken-prev:hover,
.daiken-next:hover {
    background: rgba(0,0,0,0.7);
}

/* Dots */
.daiken-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

.daiken-dots button {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    border: none;
    background: #ffffff80;
    cursor: pointer;
}

.daiken-dots .active {
    background: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .daiken-prev, .daiken-next {
        width: 32px;
        height: 32px;
        font-size: 22px;
    }
}
