@media (min-width: $media-tablet) {
  .header {
    position: fixed;
    top: 0;
    z-index: 98;
    width: 100%;
    &__link {
      .is-notify > & {
        &:after {
          content: '';
          position: absolute;
          top: 7px;
          left: 20px;
          z-index: 10;
          width: 7px;
          height: 7px;
          border-radius: 50%;
          background-color: $attention-color;
        }
      }
    }
    &__logo {
      margin-left: 19px;
      &-np {
        display: block;
        background-image: inline-image('header/logo.svg');
        background-repeat: no-repeat;
        background-size: 100%;
        width: 213px;
        height: 28px;
      }
    }
    &__top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: $dark-bg-color;
      width: 100%;
      height: 40px;
      color: hsla(0,0%,100%,.4);
      font-family: $font-futurabook;
      font-size: 17px;
      position: relative;
      z-index: 99;
    }
    &__bottom {
      background-color: $white-color;
      height: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 3px 0 rgba(0, 0, 0, .06);
    }
    &__list {
      display: flex;
      align-items: center;
      height: 100%;
      list-style-type: none;
    }
    &__item {
      text-align: center;
      height: 100%;
    }
    &__link {
      font-family: $font-futurademi;
      color: $dark-bg-color;
      transition: color 200ms ease-out;
      &:hover {
        color: $attention-color;
      }
      .is-active > & {
        color: $dark-bg-color;
        background-color: $white-color;
        position: relative;
        border-bottom: 1px solid $base-bg-color;
        &:hover {
          color: $dark-bg-color;
        }
      }
    }
    &__projects {
      &-item {
        width: 90px;
        line-height: 40px;
        border-right: 1px solid $dark-border-color;
        &:last-child {
          border-right: 0;
        }
      }
      &-link {
        font-family: $font-futurademi;
        font-size: 12px;
        letter-spacing: calc(12px * 30 / 1000);
        text-transform: uppercase;
        color: $white-color;
        display: block;
        width: 100%;
        height: 100%;
      }
    }

    // Menu
    &__menu {
      &-item {
        line-height: 40px;
        position: relative;
        &.is-user {
          line-height: 38px;
          &:hover,
          &.is-active {
            background-color: $white-color;
            color: $dark-bg-color;
            .header__menu-link {
              background-color: $white-color;
              color: $dark-bg-color;
              &::before {
                background: inline-image('header/user-dark.svg');
                background-size: 100%;
                width: 16px;
                height: 17px;
                display: inline-block;
              }
            }
            & > .header__submenu {
              opacity: 1;
              pointer-events: auto;
            }
          }
        }
      }
      &-link {
        display: block;
        color: hsla(0,0%,100%,.4);
        padding: 0 11px;
        transition: background-color 200ms ease-out;
        .is-user & {
          width: auto;
          height: 100%;
          position: relative;
          font-family: $font-futurabook;
          &::before {
            background: inline-image('header/user-white.svg');
            background-size: 100%;
            width: 16px;
            height: 17px;
            content: '';
            display: inline-block;
            vertical-align: -4%;
            margin-right: 8px;
            transition: background-image 200ms ease-out;
          }
        }
        .is-create & {
          font-family: $font-futurademi;
          font-size: 12px;
          text-transform: uppercase;
          letter-spacing: .69px;
          background-color: $attention-color;
          color: $white-color;
          width: auto;
          height: 100%;
          padding: 0 21px;
          &:hover {
            background-color: $attention-color-darker;
          }
        }
      }
    }

    // Submenu
    &__submenu {
      height: 60px;
      transition: opacity 200ms ease-out, background-color 200ms ease-out;
      .is-user & {
        position: absolute;
        right: -135px;
        padding-left: 130px;
        background-color: $white-color;
        opacity: 0;
        pointer-events: none;
      }
      &-item {
        margin-right: 20px;
        line-height: 58px;
        white-space: nowrap;
        font-size: 17px;
      }
    }
  }
  .header-mobile {
    display: none;
  }
}
