.navigator {
  display: flex;
  position: fixed;
  flex-direction: column;
  width: 100%;
  height: 84px;
  background-color: transparent;
  bottom: 0px;
  z-index: 100;
  justify-content: end;
}
.navigator__top {
  height: 36px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.navigator__extra {
  display: contents;
}
.navigator__tab {
  display: grid;
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: var(--white);
  font-size: 1rem;
  align-content: center;
  text-align: center;
  z-index: 4;
  cursor: pointer;
}
.navigator__tab--left {
  border-top: 1px solid var(--gray);
  left: 0;
}
.navigator__tab--right {
  border-top: 1px solid var(--gray);
  right: 0;
}
.navigator__tab.select {
  background-color: var(--blue);
  color: var(--white);
}
.navigator__tab--small {
  position: relative;
  width: 20%;
  height: 100%;
  border: 1px solid var(--mine-shaft);
  font-size: 20px;
}

.navigator__bottom {
  background-color: var(--gray-light);
  width: 100%;
  /* height: 50%; */
  height: 48px;
  display: flex;
  justify-content: space-between;
}
.navigator__bottom.mode {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 101;
}
.navigator__item {
  flex: 1;
  background-color: var(--gray-light);
  height: auto;
  width: 20%;
  border: none;
  border-top: 1px solid var(--mine-shaft);
}

.navigator__item.end-mode {
  flex: 2;
  width: 40%;
  display: grid;
}
.navigator__item.profile-mode {
  display: grid;
  justify-items: center;
}
.navigator__img {
  object-fit: contain;
  width: 55%;
  max-width: 40px;
}
.navigator__img.mode {
  border-radius: 50%;
  /* width: 35%; */
  width: 28px;
  object-fit: contain;
}
.navigator__login {
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  letter-spacing: 2px;
}