diff --git a/core/modules/overlay/css/overlay-child.css b/core/modules/overlay/css/overlay-child.css
index 8162d5b..59a0c49 100644
--- a/core/modules/overlay/css/overlay-child.css
+++ b/core/modules/overlay/css/overlay-child.css
@@ -86,10 +86,12 @@ html[dir="rtl"] {
   /* Replace with position:fixed to get a scrolling close button. */
   position: absolute;
   width: 26px;
+  left: 30px; /* LTR */
 }
 [dir="rtl"] #overlay-close,
 [dir="rtl"] #overlay-close:hover {
   border-radius: 12px 0 0 12px;
+  right: 30px;
 }
 
 /**
diff --git a/core/modules/overlay/templates/overlay.html.twig b/core/modules/overlay/templates/overlay.html.twig
index 732bc33..2830abc 100644
--- a/core/modules/overlay/templates/overlay.html.twig
+++ b/core/modules/overlay/templates/overlay.html.twig
@@ -20,7 +20,7 @@
 #}
 {{ disable_overlay }}
 <div{{ attributes }}>
-  <div id="overlay-titlebar" class="clearfix">
+  <div id="overlay-titlebar" class="clearfix l-container">
     <div id="overlay-title-wrapper" class="clearfix">
       <h1{{ title_attributes }}>{{ title }}</h1>
     </div>
diff --git a/core/themes/seven/layout.css b/core/themes/seven/layout.css
new file mode 100644
index 0000000..4f3f04b
--- /dev/null
+++ b/core/themes/seven/layout.css
@@ -0,0 +1,68 @@
+.l-container {
+  padding-left: 0.625em;
+  padding-right: 0.625em;
+  margin: 0 1.5em;
+}
+.l-container:after {
+  content: "";
+  display: table;
+  clear: both;
+}
+
+@media screen and (min-width: 38em) {
+  .l-container {
+    margin: 0 2.5em;
+  }
+  .l-column {
+    width: 100%;
+    float: left;  /* LTR */
+    display: inline;
+  }
+  [dir="rtl"] .l-column{
+    float:right;
+  }
+  .l-column.half {
+    width: 46.66667%;
+    float: left; /* LTR */
+    margin-right: 6.66667%; /* LTR */
+    display: inline;
+  }
+  [dir="rtl"] .l-column.half{
+    float: right;
+    margin-right: 0;
+    margin-left: 6.66667%;
+  }
+  .l-column.quarter {
+    width: 20%;
+    float: left;
+    margin-right: 6.66667%;
+    display: inline;
+  }
+  [dir="rtl"] .l-column.quarter{
+     float: right;
+     margin-right: 0;
+     margin-left: 6.66667%;
+  }
+  .l-column.three-quarter {
+    width: 73.33333%;
+    float: left;
+    margin-right: 6.66667%;
+    display: inline;
+  }
+   [dir="rtl"] .l-column.three-quarter{
+    float: right;
+    margin-right: 0;
+    margin-left: 6.66667%;
+  }
+  .l-column.omega {
+    float: right;
+    margin-right: 0;
+    display: inline;
+  }
+  [dir="rtl"] .l-column.omega{
+    float: left;
+    margin-left: 0;
+  }
+}
+
+
diff --git a/core/themes/seven/seven.info.yml b/core/themes/seven/seven.info.yml
index ad68f6c..c36af57 100644
--- a/core/themes/seven/seven.info.yml
+++ b/core/themes/seven/seven.info.yml
@@ -6,6 +6,7 @@ version: VERSION
 core: 8.x
 stylesheets:
   screen:
+    - layout.css
     - style.css
 stylesheets-override:
   - vertical-tabs.css
diff --git a/core/themes/seven/style.css b/core/themes/seven/style.css
index c628c55..63a67ca 100644
--- a/core/themes/seven/style.css
+++ b/core/themes/seven/style.css
@@ -66,6 +66,7 @@ dl dl {
 [dir="rtl"] dl dd,
 [dir="rtl"] dl dl {
   margin-right: 20px;
+  margin-left: 0px;
 }
 blockquote {
   margin: 1em 40px;
@@ -200,12 +201,12 @@ pre {
  */
 #branding {
   overflow: hidden;
-  padding: 20px 20px 0 20px; /* LTR */
+  padding: 20px 20px 0 0; /* LTR */
   position: relative;
   background-color: #e0e0d8;
 }
 [dir="rtl"] #branding {
-  padding: 20px 20px 0 20px;
+  padding: 20px 0 0 20px;
 }
 .breadcrumb {
   font-size: 0.846em;
@@ -355,9 +356,6 @@ ul.secondary li.active a.active {
   color: #fff;
   background: #666;
 }
-#content {
-  clear: left;
-}
 @media screen and (max-width:56.538em) { /* 735px */
   .touch #branding {
     padding-right: 0;
@@ -411,23 +409,8 @@ ul.secondary li.active a.active {
 #page {
   background: #fff;
   color: #333;
-  margin-left: 0.8125em;
-  margin-right: 0.8125em;
-  padding: 20px 0 40px 0;
   position: relative;
 }
-@media screen and (min-width:28.125em) { /* 450px */
-  #page {
-    margin-left: 1.25em;
-    margin-right: 1.25em;
-  }
-}
-@media screen and (min-width:45em) { /* 720px */
-  #page {
-    margin-left: 2.5em;
-    margin-right: 2.5em;
-  }
-}
 ul.links li,
 ul.inline li {
   padding-right: 1em; /* LTR */
@@ -857,9 +840,6 @@ select.form-select:focus {
  * Improve form element usability on narrow devices.
  */
 @media screen and (max-width: 600px) {
-  #page {
-    margin: 0 10px;
-  }
   input.form-autocomplete,
   input.form-text,
   input.form-tel,
@@ -1011,34 +991,6 @@ div.admin-options div.form-item {
 }
 
 /* Maintenance theming */
-body.in-maintenance #sidebar-first {
-  float: left; /* LTR */
-  max-width: 200px;
-  width: 25%;
-}
-[dir="rtl"] body.in-maintenance #sidebar-first {
-  float: right;
-}
-body.in-maintenance #content {
-  float: right; /* LTR */
-  clear: none;
-  width: 72%;
-}
-[dir="rtl"] body.in-maintenance #content {
-  float: left;
-}
-body.in-maintenance #page {
-  max-width: 770px;
-  margin: 0 auto;
-  padding-top: 2em;
-  width: 90%;
-}
-body.in-maintenance #branding h1 {
-  max-width: 770px;
-  margin: 0 auto;
-  float: none;
-  width: 90%;
-}
 body.in-maintenance .form-radios .form-type-radio {
   padding: 2px 0;
 }
@@ -1054,14 +1006,6 @@ body.in-maintenance #logo {
   margin-bottom: 1.5em;
   max-width: 180px;
 }
-@media all and (max-width: 768px) {
-  body.in-maintenance #sidebar-first,
-  body.in-maintenance #content {
-    float: none;
-    max-width: none;
-    width: auto;
-  }
-}
 .task-list {
   margin-left: 0; /* LTR */
   list-style-type: none;
@@ -1102,10 +1046,6 @@ body.in-maintenance #logo {
 .overlay #footer {
   display: none;
 }
-.overlay #page {
-  margin: 0;
-  padding: 0 20px;
-}
 .overlay #branding .breadcrumb {
   float: left; /* LTR */
   position: relative;
@@ -1664,12 +1604,6 @@ details.fieldset-no-legend {
   screen and (min-width: 780px),
   (orientation: landscape) and (min-device-height: 780px) {
 
-  [class*="page-node-add-"] #page,
-  .page-node-edit #page {
-    padding-top: 0;
-    margin-right: 0;
-  }
-
   [class*="page-node-add-"] #console,
   .page-node-edit #console {
     margin-right: 2.5em;
diff --git a/core/themes/seven/templates/maintenance-page.html.twig b/core/themes/seven/templates/maintenance-page.html.twig
index ecd7286..ce138c0 100644
--- a/core/themes/seven/templates/maintenance-page.html.twig
+++ b/core/themes/seven/templates/maintenance-page.html.twig
@@ -24,18 +24,20 @@
   {{ page_top }}
 
   <header id="branding">
-    {% if title %}<h1 class="page-title">{{ title }}</h1>{% endif %}
+    <div class="l-container">
+      {% if title %}<h1 class="page-title">{{ title }}</h1>{% endif %}
+    </div>
   </header>
 
-  <div id="page">
-    <div id="sidebar-first" class="sidebar">
+  <div id="page" class="l-container">
+    <div id="sidebar-first" class="l-column quarter sidebar">
       {% if logo %}
         <img id="logo" src="{{ logo }}" alt="{{ site_name }}" />
       {% endif %}
       {{ sidebar_first }}
     </div>
 
-    <main id="content" class="clearfix">
+    <main id="content" class="l-column three-quarter omega clearfix">
       {% if messages %}
         <div id="console">{{ messages }}</div>
       {% endif %}
diff --git a/core/themes/seven/templates/page.html.twig b/core/themes/seven/templates/page.html.twig
index 5a50431..91620f4 100644
--- a/core/themes/seven/templates/page.html.twig
+++ b/core/themes/seven/templates/page.html.twig
@@ -66,23 +66,25 @@
  */
 #}
   <header id="branding" class="clearfix">
-    {{ breadcrumb }}
-    {{ title_prefix }}
-    {% if title %}
-      <h1 class="page-title">{{ title }}</h1>
-    {% endif %}
-    {{ title_suffix }}
-    {% if primary_local_tasks %}
-      {{ primary_local_tasks }}
-    {% endif %}
+      <div class="l-container">
+        {{ breadcrumb }}
+        {{ title_prefix }}
+        {% if title %}
+          <h1 class="page-title">{{ title }}</h1>
+        {% endif %}
+        {{ title_suffix }}
+        {% if primary_local_tasks %}
+          {{ primary_local_tasks }}
+        {% endif %}
+      </div>
   </header>
 
-  <div id="page">
+  <div id="page" class="l-container">
     {% if secondary_local_tasks %}
-      <div class="tabs-secondary clearfix" role="navigation">{{ secondary_local_tasks }}</div>
+      <div class="l-column tabs-secondary clearfix" role="navigation">{{ secondary_local_tasks }}</div>
     {% endif %}
 
-    <main id="content" class="clearfix" role="main">
+    <main id="content" class="l-column clearfix" role="main">
       <div class="visually-hidden"><a id="main-content"></a></div>
       {% if messages %}
         <div id="console" class="clearfix">{{ messages }}</div>
@@ -100,7 +102,7 @@
       {{ page.content }}
     </main>
 
-    <footer id="footer" role="contentinfo">
+    <footer id="footer" role="contentinfo" class="l-column">
       {{ feed_icons }}
     </footer>
 
diff --git a/sites/default/default.settings.php b/sites/default/default.settings.php
index a58d60e..fe16cfc 100644
--- a/sites/default/default.settings.php
+++ b/sites/default/default.settings.php
@@ -411,15 +411,14 @@
 /**
  * Class Loader.
  *
- * By default, Drupal uses Composer's ClassLoader, which is best for
- * development, as it does not break when code is moved on the file
- * system. It is possible, however, to wrap the class loader with a
- * cached class loader solution for better performance, which is
- * recommended for production sites.
+ * By default, Drupal uses the Symfony UniversalClassLoader which is best for
+ * development, as it does not break when code is moved on the file system.
+ * The APC classloader provides better performance and is recommended for
+ * production sites.
  *
  * Examples:
- *   $settings['class_loader'] = 'apc';
- *   $settings['class_loader'] = 'default';
+ *  $class_loader = 'apc'
+ *  $class_loader = 'default'
  */
 # $settings['class_loader'] = 'apc';
 
@@ -456,15 +455,6 @@
 # $settings['mixed_mode_sessions'] = TRUE;
 
 /**
- * Public file path:
- *
- * A local file system path where public files will be stored. This directory
- * must exist and be writable by Drupal. This directory must be relative to
- * the Drupal installation directory and be accessible over the web.
- */
-# $settings['file_public_path'] = 'sites/default/files';
-
-/**
  * Session write interval:
  *
  * Set the minimum interval between each session write to database.
