@media screen and (min-width: 992px) {
  .bottom-menu {
    display: none !important;
  }
  .on-desktop {
    display: block !important;
  }
  .on-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .on-desktop {
    display: none !important;
  }
  .on-mobile {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .bottom-menu {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.bottom-menu {
  z-index: 104;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--bg-linear);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  grid-column-gap: 4px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(183, 207, 255, 0.0509803922);
  overflow: hidden;
}
.menu-link {
  padding-top: 0.5em;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.menu-link__label {
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}
.menu-link__label {
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
