.site-container {
  width: 100%;
  background-color: $white;
  position: relative;

  &--template {
    padding: 10px;
  }
}

.page-content {
  padding: 10px;
  flex: 1 1 auto;
  margin: 0 20px;
  @include mq($from: tablet) {
    padding: 20px;
  }
}

.main {
  &--page-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: $grey-lightest;
    @include mq($from: tablet) {
      flex-direction: row;
    }
  }
}
.hidden {
  /*hidden but accesible*/
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 0;
  overflow: hidden;
  opacity: 0;
}
