/* styling for views/layouts/main.php */
html {
  height: 100%;
  font-size: 14px;
}
body {
  margin: 0;
  padding: 0;
  background: var(--color-white);
}

* {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

header {
  border-bottom: 1px solid var(--color-grey-200);
  height: 89px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
  background: var(--color-white);
}

header.sticky {
  position: fixed;
}

#contentWrapper {
  margin-top: 90px;
}

#contentWrapper > .container {
  /* max-width: 960px;
  margin: 0 auto; */
}

div.form .rememberMe label {
  display: inline;
}

#bgOverlay {
  background-color: var(--color-black);
  opacity: 0.5;
}

/* ----------- layouts ------------ */
.embed header.navigation {
  display: none;
}

.embed #contentWrapper {
  margin-top: 0;
}

/* ----------- mobile -------------- */

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  body.mobile header {
    height: 60px;
  }

  body.mobile #contentWrapper {
    margin-top: 60px;
  }
}
