.fg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 401;

  height: 60px;
  width: 100%;
  border-bottom: 1px solid;

  cursor: auto;

  transition: top .4s ease;
}

.fg-header--offset-generic-error {
  top: 60px;
}

.fg-header--offset-banner {
  top: 84px;
}

.fg-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 100%;
  width: 100%;
  max-width: 1440px;

  padding: 0 25px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .fg-header-content {
    max-width: 1024px;

    padding: 0 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fg-header-content {
    max-width: 768px;

    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .fg-header-content {
    padding: 0 5vw;
  }
}
