.ndx-carusel__nav-item {
    position: relative;
    z-index: 0;
    align-items: stretch;
    gap: 0.5rem;
}

/* BTN */

.ndx-carusel__btn {
    padding: 0;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 3rem;
    color: #333333;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.24s ease 0s;
}

.ndx-carusel__btn.is-active {
    color: var(--color__fill-2);
    pointer-events: none;
}

@media (any-hover: hover){
    .ndx-carusel__btn:hover {
        color: rgba(20, 20, 43, 0.6);;
    }
}

.ndx-carusel__btn.swiper-button-prev,
.ndx-carusel__btn.swiper-button-next {
    position: static;
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0 1.5rem;
    box-shadow: inset 0rem 0rem 0rem 2px rgba(143, 104, 142, 0.32);
    background-color: transparent;
}

.ndx-carusel__btn.swiper-button-prev:hover,
.ndx-carusel__btn.swiper-button-next:hover {
    box-shadow: inset 0rem 0rem 0rem 0.1875rem rgba(143, 104, 142, 1);
    background-color: transparent;
    box-shadow: inset 0rem 0rem 0rem 0.1875rem var(--color__fill-2);
}

.ndx-carusel__btn.swiper-button-disabled {
    opacity: 0.5 !important;
}

.ndx-carusel__btn.swiper-button-prev::after,
.ndx-carusel__btn.swiper-button-next::after {
    display: none;
}

.ndx-carusel__btn.--next svg {
    transform: rotate(-180deg);
}

.ndx-carusel__all-btn {
    width: 6.5rem;
    font-weight: 600 !important;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.js-swiper__ndx .see-all-btn {
    display: none;
    width: 100%;
    max-width: 26.3rem;
    margin: 1.3rem auto 0;
    z-index: 2;
    font-weight: 600 !important;
    background-color: transparent;
    box-shadow: inset 0rem 0rem 0rem 2px rgba(143, 104, 142, 0.32) !important;
}
.js-swiper__ndx .see-all-btn:hover span::before,
.js-swiper__ndx .see-all-btn:hover span::after {
    background-color: var(--color__white);
}

.js-swiper__ndx .see-all-btn span {
    position: relative;
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.9rem;
}

.js-swiper__ndx .see-all-btn span::before,
.js-swiper__ndx .see-all-btn span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--color__fill-2);
    transition: background 0.24s ease 0s;
}

.js-swiper__ndx .see-all-btn span::before {
    transform: translate(-50%, -50%);
}

.js-swiper__ndx .see-all-btn span::after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

/* PAGINATION */

.ndx-carusel__pagination.swiper-pagination {
    position: static;
}

.ndx-carusel__pagination {
    width: 3.8rem !important;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: rgba(20, 20, 43, 0.7);
    pointer-events: none;
    user-select: none;
}

/* SLIDER */

.ndx-carusel__list .swiper-container {
    /* border-radius: 0.75rem; */
    filter: drop-shadow(0px 0.5rem 1.75rem rgba(0, 0, 0, 0.08));
    overflow: hidden;
}

@media (max-width: 768px) {

    .ndx-carusel__btns {
        gap: 1.85rem;
    }

    .ndx-carusel__btn {
        font-size: 1.5rem;
        line-height: 2.46rem;
    }
}

@media (max-width: 640px) {

    .ndx-carusel {
        margin-bottom: 3rem !important;
    }

    .ndx-carusel__navigation {
        display: none;
    }

    .js-swiper__ndx .see-all-btn {
        display: flex;
        font-size: 1.23077rem;
        line-height: 2.15385rem;
    }
    
    .ndx-carusel__list {
        margin-right: -1rem;
    }

    .ndx-carusel__list .swiper-container {
        padding-right: 1rem;
    }
}
