.nbs-bar {
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    text-align: center;
    padding: 8px 0;
    overflow: hidden;
}

.nbs-slider {
    display: flex;
    justify-content: center;
    /* ממקם במרכז */
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: row;
    animation: none;
    position: relative;
}

.nbs-slide {
    display: none;
    white-space: nowrap;
    text-align: center;
    direction: rtl !important;
    margin: 0 auto;
    /* מבטיח שהתוכן עצמו באמצע */
}

.nbs-slide.active {
    display: block;
    animation: fadein 0.6s ease-in-out;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}