@charset "UTF-8";
/* Original file: layouts/rx-flex-layout-main/assets/css/layout.scss */
.app-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  zoom: 1;
}
.app-content:before, .app-content:after {
  content: "";
  display: table;
}
.app-content::after {
  clear: both;
}
@media (max-width: 1024px) {
  .app-content {
    display: block;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.app-content--tight {
  padding-left: 0;
  padding-right: 0;
}
.app-content .x {
  padding: 1rem;
  background-color: white;
  border-radius: 6px;
}
.app--grid-style .app-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .app--grid-style .app-main {
    grid-template-columns: repeat(3, 1fr);
  }
}
.app--grid-style .app-container, .app--grid-style .app-content {
  grid-column: 2 / 5;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .app--grid-style .app-container, .app--grid-style .app-content {
    grid-column: 1 / 4;
  }
}
.app-layout-lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
}
.app-layout-lines.app-layout-bg {
  position: fixed;
}
@media (max-width: 1024px) {
  .app-layout-lines {
    grid-template-columns: repeat(3, 1fr);
  }
}
.app-layout-lines__col {
  height: 100%;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  .app-layout-lines__col:nth-child(4), .app-layout-lines__col:nth-child(5) {
    display: none;
  }
}
.app-layout-lines__col:last-child {
  border-right: none;
}

