/**
 * Scrolling Light
 * Simple Social Media Stream
 *
 * Version 2.1
 *
 * Ky version NUK krijon scrollbar të dytë.
 * Përdoret vetëm scrollbar-i i faqes / iframe-it.
 */


/*
 * Wrapper-i kryesor nuk është më scroll-container.
 */
.scrolling-light-host {
    position: relative;

    width: 100%;

    height: auto !important;
    max-height: none !important;

    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;

    scroll-behavior: auto;
}


/*
 * Wrapper-i i versioneve të mëparshme
 * nuk duhet të krijojë scroll.
 */
.ssms-scroll-viewport {
    display: contents !important;

    width: auto !important;
    height: auto !important;
    max-height: none !important;

    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}


/*
 * Board-i ruan lartësinë dhe gjerësinë
 * që vendos Masonry / Isotope.
 */
.scrolling-light-host >
.sboard.sb-scrolling.scrolling-light,
.scrolling-light-host
.sboard.sb-scrolling.scrolling-light {

    position: relative;

    width: 100%;
    max-width: 100%;

    height: auto;
    max-height: none !important;

    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;

    transform: none !important;
    will-change: auto !important;
}


/*
 * Asnjë element i brendshëm nuk duhet
 * të krijojë scrollbar.
 */
.scrolling-light-host .sb-inner,
.scrolling-light-host .sb-container,
.scrolling-light-host .sb-wall,
.scrolling-light-host [class*="sb-scroll"] {

    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;

    height: auto;
    max-height: none !important;
}


/*
 * Elementet mbeten të klikueshme.
 */
.scrolling-light-host .sb-item,
.scrolling-light-host .sb-loadmore,
.scrolling-light-host a,
.scrolling-light-host button,
.scrolling-light-host video {

    pointer-events: auto;
}


/*
 * Load More nuk ndryshon pozicion.
 * Mbetet pjesë normale e dokumentit.
 */
.scrolling-light-host .sb-loadmore {

    position: relative !important;

    width: 100%;

    clear: both;

    z-index: 10;
}


/*
 * Nuk na duhen më lartësi fikse
 * për tablet/mobile.
 */
@media (max-width: 991px) {

    .scrolling-light-host {
        height: auto !important;
        max-height: none !important;
    }
}


@media (max-width: 767px) {

    .scrolling-light-host {
        height: auto !important;
        max-height: none !important;
    }
}

