/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 21 2024 | 21:39:13 */
#sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh; /* 25% wysokości ekranu */
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
}

#sticky-banner img {
    max-width: 100%;
    height: auto;
    max-height: 100%; /* Dostosowanie wysokości obrazu do banera */
}

/* Dla wersji desktop */
@media (min-width: 768px) {
    #sticky-banner img {
        content: url('https://filipkubicki.pl/wp-content/uploads/2024/08/baner.png');
    }
}


