.custom-slider {
    position: relative;
}

.custom-slider-wrapper {
	width: 100%;
}

.custom-slider-list {
    display: flex;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.custom-slider-track {
    display: flex;
    transition: opacity 0.5s ease;
    /* Transición de desvanecimiento */
    width: 100%;
}

.custom-slider-slide {
    flex: 0 0 auto;
}

.custom-slider-dot {
    width: 50px;
    height: 4px;
    background-color: #c5b9ac;
    margin: 0 5px;
    cursor: pointer;
}

.custom-slider-dot.active-bullet {
    background-color: #D42E12;
}

.custom-slider-pagination {
    position: absolute;
    bottom: 15px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 10;
}

.custom-slider-arrow {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 1px solid #000;
    cursor: pointer;
}

.custom-slider-prev-arrow {
    left: 100px;
}

.custom-slider-arrow::after {
    content: "";
    background-size: contain;
    width: 17px;
    height: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.custom-slider-arrow.custom-slider-prev-arrow::after {
    transform: translateY(-50%) scaleX(-1);
    right: 0;
}

.custom-slider-arrow.custom-slider-next-arrow::after {
    left: 0;
}

.custom-slider-next-arrow {
    right: 100px;
}

.custom-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.custom-slider-slide {
  transition: transform 0.3s ease, z-index 0.3s ease;
}

.custom-slider-slide.slide-active {
  opacity: 1;
}

.custom-slider-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* barra interna: presencia de left es clave */
.custom-slider-progress-bar {
    position: absolute;
    top: 0;
    left: 0;                /* la usaremos para mover la barra */
    height: 100%;
    background: #0073e6;
    border-radius: 3px;
    width: 0;
    transition: left 0.45s ease, width 0.45s ease;
    will-change: left, width;
}

/* .custom-slider-slide.slide-inactive {
  opacity: 0.7;
} */
@media(max-width:767px){
    .custom-slider-next-arrow {
        right: 30px;
    }
    .custom-slider-prev-arrow {
        left: 30px;
    }
}