.feature-slider {
    width: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/* TABS */

.feature-slider-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
}

.feature-slider-tab {
    display: flex;
    justify-content: center;
    align-items: center;

    min-width: 150px;
    margin: 14px 8px 8px 8px;
    padding: 8px;
    border: none;

    font-size: 14px;
    line-height: 1.4em;
    font-weight: 600;

    cursor: pointer;
    transition: 0s;

    background: none;
    color: #ffffff;
}

.feature-slider-tab:hover {
    color: #ffffff;
}

.feature-slider-tab span {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.feature-slider-tab span::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;

    background: #ffffff;
}

.feature-slider-tab.active span::after {
    width: 100%;
}


/* SLIDER */

.feature-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.feature-slider-track {
    display: flex;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-slider-track:active {
    cursor: grabbing;
}

.feature-slider-banner {
    flex: 0 0 100%;
}

.feature-slider-banner picture {
    display: block;
}

.feature-slider-banner img {
    display: block;
    width: 100%;
    height: auto;
}


/* ARROW BUTTONS */

.slider-arrow {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: 100%;
    border: none;
    cursor: pointer;
    background-color: transparent;
    z-index: 20;
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-arrow svg {
    width: 64px;
    height: 64px;
    color: #000000;
    filter: drop-shadow(2px 0 #ffffff);
}


/* --------- MOBILE ----------- */

@media(max-width:768px) {

    .feature-slider-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        /*scrollbar-width: none;*/
    }

    .feature-slider-tabs::-webkit-scrollbar {
        /*display: none;*/
        height: 6px;
        /* espessura da barra horizontal */
    }

    .feature-slider-tabs::-webkit-scrollbar-track {
        background: transparent;
        /* cor do fundo */
    }

    .feature-slider-tabs::-webkit-scrollbar-thumb {
        background: #777777;
        /* cor da barra */
        border-radius: 6px;
    }

    .feature-slider-tab {
        flex: none;
        white-space: nowrap;
        min-width: 80px;
        padding: 8px;
    }

    .slider-arrow {
        display: none;
    }

    /*
    .slider-arrow svg {
        width: 48px;
        height: 48px;
    }

    .slider-prev {
        left: 0;
    }

    .slider-next {
        right: 0;
    }*/
}