.bottom-navigation {
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}
.navigation-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0 6px 0;
  width: 100%;
  box-sizing: border-box;
  &-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex: 1;
    .navigation-item-image {
      margin-bottom: 3px;
    }
  }
}
