<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Styling for the ds_2col_fluid template.
 */

.ds-2col-fluid &gt; .group-left {
  float: left; /* LTR */
  width: 50%;
}

[dir="rtl"] .ds-2col-fluid &gt; .group-left {
  float: right;
}

.ds-2col-fluid &gt; .group-right {
  float: right; /* LTR */
  width: 50%;
}

[dir="rtl"] .ds-2col-fluid &gt; .group-right {
  float: left;
}

.ds-2col-fluid.group-one-column &gt; .group-left,
.ds-2col-fluid.group-one-column &gt; .group-right {
  float: none;
  width: 100%;
}
</pre></body></html>