@use "../../assets/scss/customVariables.scss" as *;

.container {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 81px;
  justify-content: center;
  box-shadow: 0 0 10px #4271D640;
  z-index: 1000;
  position: relative;

  .maxContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: $max-width-layout;

    @media screen and (max-width: 700px) {
      justify-content: center;
    }

    @media screen and (max-width: calc($max-width-layout + 60px)) {
      padding: 0 30px;
    }
    
    .menuIcon {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 30px;
      display: none;
      flex-direction: row;
      align-items: center;
      gap: 3px;
      cursor: pointer;

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

    .routes {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 30px;

      @media screen and (max-width: 700px) {
      display: none;
    }

      .links {
        font-size: 20px;
        font-weight: 800;
        cursor: pointer;
      }
    }
  }
}