 .storeFadeOut {
        max-height: 110px;
        overflow: hidden;
        position: relative;
        transition: max-height 0.35s ease;
    }
    
    .storeFadeOut::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.35s ease;
    }
    
    .storeFadeOut.show {
        max-height: none;
        overflow: visible;
    }
    
    .storeFadeOut.show::after {
        opacity: 0;
    }
    
    /* Bootstrap Collapse Animation deaktivieren */
    .storeFadeOut.collapsing {
        transition: none;
    }
    .storeFadeOut.collapse:not(.show) {
    display:block;
    }