.column-layout {
  width: 100%;
}
.column-layout-left,
.column-layout-right {
  position: fixed;
  width: 264px;
  vertical-align: top;
  height: 100%;
  z-index: 3;
  transition: transform ease 0.5s;
  top: 0;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
}
.column-layout-left {
  transform: translateX(-264px);
}
.column-layout-right {
  right: 0;
  transform: translateX(264px);
}
[dir="rtl"] .column-layout-right {
  left: 0;
  right: auto;
  right: initial;
}
.column-layout-left.open,
.column-layout-right.open {
  transform: translateX(0);
}
.column-layout-main {
  width: 100%;
}
.column-layout-top {
  position: fixed;
  top: 0;
  width: 264px;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  backface-visibility: hidden;
}
.column-layout-bottom {
  position: fixed;
  bottom: 0;
  width: 264px;
  padding: 24px;
  padding: var(--size-24);
}
@media (min-width: 992px) {
  .column-layout {
    display: table;
  }
  .column-layout-left,
  .column-layout-right {
    position: relative;
    display: table-cell;
    transform: none;
  }
  .column-layout-main {
    display: table-cell;
    vertical-align: top;
    width: auto;
  }
}
.column-layout-cover.in {
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.column-layout-cover .close {
  position: absolute;
  left: 284px;
  top: -1000px;
  opacity: 0;
  transition: opacity 0.35s ease;
  transition-delay: 0.35s;
  -webkit-text-decoration: none;
  text-decoration: none;
}
[dir="rtl"] .column-layout-cover .close {
  right: 284px;
  left: auto;
  left: initial;
}
.column-layout-cover.in .close {
  opacity: 1;
  top: 20px;
}
@media (min-width: 992px) {
  .column-layout-cover {
    display: none;
  }
}
@media (max-width: 991px) {
  .column-layout-open {
    overflow: hidden;
  }
  .column-layout-cover {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    background-color: #37517e;
    cursor: pointer;
    z-index: 1055;
  }
  [dir="rtl"] .column-layout-cover {
    right: 0;
    left: auto;
    left: initial;
  }
  .column-layout-left,
  .column-layout-right {
    z-index: 1060;
  }
}
.column-layout-main .container {
  max-width: 1176px;
  margin-left: 0;
}
[dir="rtl"] .column-layout-main .container {
  margin-right: 0;
  margin-left: 0;
  margin-left: initial;
}
.column-layout-brand {
  padding: 4px 24px;
  padding: var(--size-4) 24px;
}
@media (min-width: 992px) {
  .column-layout-brand {
    padding-left: 32px;
    padding-right: 32px;
  }
}
body > .column-layout {
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
}
.column-layout-left .column-layout-top {
  background-position: 0 40px;
  background-position: 0 var(--size-40);
  background-repeat: no-repeat;
  background-size: 264px auto;
  height: 100vh;
  height: 100dvh;
}
@media (min-height: 596px) {
  .column-layout-left .column-layout-top {
    background-position: left bottom;
  }
  [dir="rtl"] .column-layout-left .column-layout-top {
    background-position: right bottom;
  }
}
