.container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 992px) {
  .container {
    max-width: 1296px;
    padding: 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 688px;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: calc(100% - 30px);
    padding: 0 15px;
  }
}
.navigation {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .navigation {
    display: none;
  }
}
.navigation .navigation__wrapper {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  background-color: rgba(72, 127, 251, 0.8);
  border-radius: 8px;
  padding: 5px;
}
.navigation .navigation__wrapper .navigation__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: clamp(20px, 1vw, 14px);
  width: auto;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
  color: #FCFCFC;
  text-decoration: none;
  height: 38px;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .navigation .navigation__wrapper .navigation__button {
    height: 24px;
    font-size: 10px;
    padding: 0 12px;
  }
}
.navigation .navigation__wrapper .navigation__button:hover {
  background-color: #FCFCFC;
  color: #487FFB;
}
.navigation .navigation__wrapper .navigation__button-active {
  background-color: #FCFCFC;
  color: #487FFB;
}

.navigation.visible {
  opacity: 1;
  z-index: 1000;
}

/*# sourceMappingURL=sticky-navigation.css.map */
