#primary-navigation {
  background-color: white;
  height: 100px;
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  align-items: center;

  .logo {
    width: 250px;
    max-width: 250px;
    height: 64px;
    flex: none;
    object-fit: contain;
    object-position: left;
  }

  .menu {
    flex: 1;
    display: flex;

    ul {
      display: flex;
      flex: 1;
      margin: 0;
      padding: 0;
      align-items: center;
      justify-content: center;

      li {
        list-style: none;

        a {
          font-size: 16px;
          line-height: 24px;
          text-decoration: none;
          color: var(--text-light);
          font-weight: 400;
          transition: color 0.2s, background-color 0.2s;
          background-color: transparent;
          border-radius: 5px;
          padding: 15px 20px;

          &.active {
            font-weight: 600;
            color: black;
          }

          &:hover {
            color: var(--text-dark);
            background-color: var(--shadow);
          }
        }
      }
    }
  }

  .account {
    width: 250px;
    max-width: 250px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    .avatar {
      width: 50px;
      height: 50px;
      background-color: var(--secondary);
      border-radius: 50%;
    }

    .info {
      display: flex;
      flex-direction: column;

      .name {
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
      }

      .email {
        font-size: 12px;
        font-weight: 300;
        line-height: 22px;
      }
    }

    [data-tippy-root] {
      width: 200px;

      .account-menu {
        display: flex;
        flex-direction: column;

        a {
          font-size: 16px;
          line-height: 24px;
          padding: 8px 20px;
          text-decoration: none;
          color: var(--text-light);
          font-weight: 300;
          transition: background-color 0.2s, color 0.2s;

          &:hover {
            background-color: var(--shadow);
            color: var(--primary);
          }
        }
      }

      .tippy-content {
        padding: 10px 0;
      }

      .tippy-box {
        background-color: white;
        box-shadow: 0px 1px 3px 0px var(--shadow);
      }
    }
  }

  .breadcrumb-divider {
    margin: 0 10px;
    color: var(--text-dark);

    &:after {
      content: '';
      display: inline-block;
      width: .35em;
      height: .35em;
      border-top: 2px solid var(--text-dark);
      border-right: 2px solid var(--text-dark);
      border-radius: 1px;
      transform: rotate(45deg);
      position: relative;
      bottom: 2px;
      right: 3px;
    }
  }

  @media (max-width: 1024px) {
    padding: 18px;

    .logo {
      width: 50px;
      height: 45px;
      object-fit: cover;
      object-position: left;
      overflow: hidden;
    }

    .account {
      width: 50px;

      .info {
        display: none;
      }
    }
  }
}
