.StickyNavbarView {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  box-shadow: 0px -2px 3px var(--color-offwhite_02);
  list-style: none;
}
.with-share-this .StickyNavbarView {
	bottom: 40px;
}
.StickyNavbarView li {
  width: 100%;
}
.StickyNavbarView li a {
  display: block;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--color-grey);
  text-decoration: none;
}
.StickyNavbarView li a:hover,
.StickyNavbarView li a.active {
  color: var(--color-primary);
}

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