<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.column-splitter, .row-splitter {
	width:100%;
}
.component {
    box-sizing: border-box;
}
/*Bootstrap 4 fixes*/
.row.column-splitter&gt;div&gt;div.row{
    margin-left: 0;
    margin-right: 0;    
}
.tabs .tabs-heading &gt; li .scEnabledChrome &gt; .row,
.tabs .tabs-container &gt; .tab&gt;.scEnabledChrome &gt; .row {
    margin-left: 0;
    margin-right: 0;
}
.accordion .scEnabledChrome &gt; .toggle-header &gt; .label &gt; .row,
.accordion .scEnabledChrome &gt; .toggle-content &gt; .row {
    margin-left: 0;
    margin-right: 0;
}
.carousel .scEnabledChrome &gt; .row {
    margin-left: 0;
    margin-right: 0;
}
.snippet .scEnabledChrome &gt; .row {
    margin-left: 0;
    margin-right: 0;
}
.container &gt; .component-content &gt; .row {
    margin-left: 0;
    margin-right: 0;
}
/*Bootstrap 4 fixes end*/

/*background image stretch mode*/
.component.sc-background-image-stretch {
    background-size: 100% 100%;
}

.component.sc-background-image-stretch-vertically {
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.component.sc-background-image-stretch-horizontally {
    background-repeat: repeat-y;
    background-size: 100% auto;
}

.component.sc-background-image-tile {
    background-repeat: repeat;
}

.component.sc-background-image-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.component.sc-background-image-fixed {
    background-attachment: fixed;
}
/*End of background image stretch mode*/
</pre></body></html>