// jegyzet magamnak: https://www.youtube.com/watch?v=qm0IfG1GyZU

@use '../../common/color.module.scss';

.navigation {
  &.main {
    $menuHeight: 55px;

    // display: flex;
    flex-wrap: wrap;

    & > * {
      height: $menuHeight;
      border-bottom: 1px solid #e0e0e0;
      display: flex;
      place-items: center;
      flex-wrap: nowrap;
      flex-grow: 1;
    }

    .logo {
      position: static;
      padding: 10px;
      box-sizing: border-box;

      img {
        height: 100%;
      }
    }

    .division {
      width: 50%;
      text-transform: uppercase;
      color: #3a3d45;
      line-height: $menuHeight;
      font-size: 14px;
      padding: 0 20px;
      text-align: center;
      box-shadow: -1px 0 0 0 #e5e5e5, 1px 0 0 0 #e5e5e5;
      margin: 0 0 0 1px;

      &.active {
        color: white;
        background: color.$color-red;
      }
    }

    .search {
      padding-left: 10px;
    }

    .shopping-cart {
      border-left: unset;
      padding-left: 20px;
    }

    .open-login {
      display: inline-block;
      height: 100%;
    }

    .user-container {
      .open-login,
      .shopping-cart {
        display: flex;
        height: 100%;
        margin: 0 0 0 10px;
        padding: 0 10px;
        align-items: center;

        i {
          height: 20px;
          line-height: 20px;
        }

        .blinking.indicator {
          top: 5px;
          right: -7px;
        }
      }
    }

    @include media-breakpoint-down(sm) {
      .user-container {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      .search {
        width: 100%;
        margin-bottom: 0;
      }

      .shopping-cart {
        padding-left: 80px;
      }
    }
  }
}

.blinking.indicator {
  background: color.$color-red;
  color: white;
  width: 16px;
  height: 15px;
  line-height: 15px;
  right: -20px;
  top: -5px;
  text-align: center;
  font-size: 10px;
  border-radius: 5px;
  text-transform: uppercase;
  position: absolute;
}
