/* ===== WRAPPER ===== */
.miko-banner-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== SLIDER ===== */
.miko-video-slider .item {
    position: relative;
    overflow: hidden;
}

.miko-video-slider img,
.miko-video-slider video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.miko-video-slider .item img,
.miko-video-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video autoplay fix */
.miko-video-slider video {
    max-width: 100%;
    pointer-events: none;
}

/* ===== ARROWS ===== */
.miko-banner-slider-wrapper .owl-nav {
    margin: 0;
}

.miko-banner-slider-wrapper .owl-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.miko-banner-slider-wrapper .owl-nav .owl-prev {
    left: 1rem;
}

.miko-banner-slider-wrapper .owl-nav .owl-next {
    right: 1rem;
}

.miko-banner-slider-wrapper .owl-nav button.owl-prev,
.miko-banner-slider-wrapper .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    line-height: 1;
    transition: 0.3s ease;
}

.miko-prev:hover,
.miko-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.miko-prev {
    left: 15px;
}

.miko-next {
    right: 15px;
}

/* ===== PAGINATION (DOTS) ===== */
.miko-pagination {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 8px;
}

.miko-pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.miko-pagination .dot.active {
    background: #fff;
    transform: scale(1.2);
}

.option_content {
    position: absolute;
    z-index: 10;
    top: 110px;
    left: calc((100vw - 1272px)/2);
}

.option_content .miko-slider-button {
    position: absolute;
    bottom: 20px;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    left: 67.5%;
}

.option_content .content {
    position: absolute;
    top: 0;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.option_content .content .avatar {
    max-height: 40px;
    position: unset;
    width: auto;
}

.option_content .content .icon {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

.option_content .content .icon .filled {
    color: #FFDE5A;
    font-size: 20px;
    line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .option_content{
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }
    .miko-prev,
    .miko-next {
        font-size: 26px;
        padding: 8px 10px;
    }
}

@media (max-width: 767px) {
    
    .miko-prev,
    .miko-next {
        font-size: 22px;
        padding: 6px 8px;
    }
    
    .miko-pagination .dot {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 650px) {
    .option_content{
        transform: translateY(-50%) translateX(-20%) scale(0.62);
    }
}
@media (max-width: 420px) {
    .option_content{
        transform: translateY(-50%) translateX(-22%) scale(0.58);
    }
}
@media (max-width: 400px) {
    .option_content{
        transform: translateY(-50%) translateX(-23%) scale(0.58);
    }
}
@media (max-width: 390px) {
    .option_content{
        transform: translateY(-50%) translateX(-24%) scale(0.55);
    }
}
@media (max-width: 360px) {
    .option_content{
        transform: translateY(-50%) translateX(-25%) scale(0.53);
    }
}