.nd-header {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  min-height: 65px;
  background: var(--nd-color-primary);
  z-index: 10;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
    pointer-events: none;
  }

  @media screen and (min-width: 700px) {
    position: relative;
    bottom: auto;
  }
}

.nd-header__content {
  position: relative;
  display: flex;
  flex: 1;
  padding: ($default-spacing * 1.5);
  z-index: 2;
}

.nd-header__logo {
  display: none;
  background: rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  padding: ($default-spacing * 2);
  width: 182px;
  height: 65px;

  img {
    max-height: 100%;
    max-width: 100%;
    display: inline-block;
  }

  @media screen and (min-width: 700px) {
    display: flex;
  }
}

.nd-header-logo__link {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
}

.nd-header__user-information {
  margin-left: auto;
}

.nd-header {
  .nd-dropdown-container,
  .nd-dropdown__arrow {
    border-color: rgba(0, 0, 0, 0.2);
  }

  .nd-dropdown__selected {
    color: $white;
  }

  .nd-dropdown__arrow {
    color: rgba(0, 0, 0, 0.2);
  }
}
