.is-style-small {
    font-size: 16px !important;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .is-style-small {
        font-size: 14px !important;
    }
}


/* Separator*/

.is-style-fat {
    border-bottom-width: 4px;
    max-width: none !important;
}


/* Kinda Responsive Spacer */


/*
The default height of the Spacer block is 100 pixels.
The spacer height is expected to be a multiple of 10px. 
We use vw as there is no need for mediaqueries. 
Added some max-height so there is a maximum height for really big screens.
*/


/* NOTE We have a body class .local for local environment in the theme functions*/

.local .wp-block-spacer {
    background: url(//muetterzentren-in-bayern.de/wp-content/plugins/stl-block-styles-muetterzentren-revised/css/images/stripes.svg);
}


/*Default for small screens*/

.wp-block-spacer.is-style-responsive-large {
    height: 7vw !important;
    max-height: 7rem;
}

.wp-block-spacer.is-style-responsive-extralarge {
    height: 10vw !important;
    max-height: 10rem;
    min-height: 140px;
}

.wp-block-spacer.is-style-responsive-medium {
    height: 5vw !important;
    max-height: 5rem;
}

.wp-block-spacer.is-style-responsive-small {
    height: 3vw !important;
    max-height: 3rem;
}