.ft_newproductslider {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.ft_newproductslider .container-fluid {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.ft_newproductslider .row {
    margin-left: 0;
    margin-right: 0;
}

#field_newproductslider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.native-slider {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    background: transparent;
}

.native-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}

.native-slider.is-dragging .native-slider-track {
    transition: none;
    cursor: grabbing;
}

.native-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    display: block;
}

.native-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.native-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.native-slide img[data-src] {
    opacity: 0.01;
}

.native-slide img:not([data-src]) {
    opacity: 1;
    transition: opacity 0.25s ease;
}

.native-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.native-slider-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.native-slider-btn:focus {
    outline: none;
}

.native-slider-prev {
    left: 12px;
}

.native-slider-next {
    right: 12px;
}

.native-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.native-slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.native-slider-dot.is-active {
    background: rgba(255, 255, 255, 1);
}

.native-slider-dot:focus {
    outline: none;
}

@media (max-width: 991px) {
    .native-slider-btn {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .native-slider-prev {
        left: 10px;
    }

    .native-slider-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .ft_newproductslider {
        display: block !important;
        width: 100%;
    }

    .ft_newproductslider .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .ft_newproductslider .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .native-slider {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .native-slider-track {
        display: flex;
        width: 100%;
    }

    .native-slide {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        display: block;
    }

    .native-slide a {
        display: block;
        width: 100%;
    }

    .native-slide img {
        display: block;
        width: 100%;
        height: auto;
    }

    .native-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .native-slider-prev {
        left: 8px;
    }

    .native-slider-next {
        right: 8px;
    }

    .native-slider-dots {
        bottom: 10px;
        gap: 7px;
    }

    .native-slider-dot {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 575px) {
    .native-slider-btn {
        display: none;
    }

    .native-slider-dots {
        bottom: 8px;
    }
}