@import '~@spglobal/tokens/dist/web/tokens.css';

.spg-header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  background-color: $t-color-base-black;
  z-index: 200;
  
  &__logo {
    height: 32px;
  }
}

.spg-nav {
  display: flex;
  position: fixed;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  background-color: $t-color-base-black;
  z-index: 200;

  &__item {
    display: flex;
    padding: 0 $t-size-space-md;
    align-items: center;
  }
  
  &__nav {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 50px;
    
    &-menu {
      display: flex;
      background-color: white;
      list-style-type: none;
      width: 100%;
    }

    &-link {
      display: flex;
      align-items: center;
      color: $t-color-base-black;
      font-size: $t-size-font-5;
      font-weight: 700;
      height: 40px;
      margin: 0 $t-size-space-2xl;
      padding: $t-size-space-md 0;

      &:hover {
        color: $t-color-base-gray-5;
      }

      &--active {
        box-shadow: inset 0 -4px 0 0 #d6002a;
      }
    }
  }
}
