<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Galerie */
.gallery {
    margin: auto;
}

.gallery-columns-4 &gt; .gallery-item {
    width: 25%;
}

.gallery-columns-3 &gt; .gallery-item {
    width: 33%;
}

.gallery-columns-2 &gt; .gallery-item {
    width: 50%;
}

.gallery-item {
    float: left;
    margin-top: 10px;
    text-align: center;
    width: 33%;
}

.gallery-caption {
    margin-left: 0;
}

.gallery img {
    border: 1px solid #ccc;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
    font-family: "interstate-light";
    font-size: 18px;
}

/* Galerie Resp */
@media (min-width:804px) and (max-width: 1023px) {
    .gallery-columns-4 &gt; .gallery-item {
        width: 33%;
    }

    .gallery-item:nth-child(3n+1) {
        clear:both;
    }

    .gallery br {
        clear: none !important;
    }

    .gallery br:last-child {
        clear: both !important;
    }

}

@media (min-width: 574px) and (max-width: 803px) {
    .gallery-columns-4 &gt; .gallery-item, .gallery-columns-3 &gt; .gallery-item  {
        width: 50%;
    }

    .gallery-item:nth-child(2n+1) {
        clear:both;
    }
}

@media (max-width: 573px) {
    .gallery-item {
        width: 100% !important;
        margin-bottom: 15px;
    }
}</pre></body></html>