.bottom-nav__button {
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  z-index: 3;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
}
.bottom-nav__button {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  padding: 10px;
  background-color: #fff;
  color: #000;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 5px;
  cursor: pointer;
  border-left: 1px solid #C4C4C4;
  border-right: 1px solid #C4C4C4;
}
.bottom-nav__button--highlighted {
  color: #EE2B45;
}
.bottom-nav__button--highlighted .bottom-nav__icon > path {
  stroke: red;
}
.bottom-nav__button--with-undefined-auth-state > [data-auth-dependent] {
  display: none;
}
@media screen and (max-width: 400px) {
  .bottom-nav__button {
    font-size: 10px;
  }
}
.bottom-nav__link {
  color: #000;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .bottom-nav {
    display: none;
  }
}