﻿.sticky-navigation-wrapper {
  padding: 0 100px;
  background-color: #F1F1F1;
  display: flex;
  height: 48px;
  align-items: center;
  position: initial;
  top: -1px;
  z-index: 5;
  opacity: 1;
  display: none;
}
@media (min-width: 992px) {
  .sticky-navigation-wrapper {
    display: block;
    visibility: visible;
    padding: 0 140px;
  }
}
@media only screen and (min-width: 1360px) {
  .sticky-navigation-wrapper {
    padding: 0 280px;
  }
}
.sticky-navigation-wrapper .sticky-navigation-inner-wrapper {
  display: flex;
  max-width: 1020px;
  margin: auto;
}
@media (min-width: 992px) {
  .sticky-navigation-wrapper .sticky-navigation-inner-wrapper {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #919191;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }
}
.sticky-navigation-wrapper .sticky-navigation-inner-wrapper .navigation-item {
  text-align: center;
  height: 100%;
  padding-top: 14px;
  cursor: pointer;
}
.sticky-navigation-wrapper .sticky-navigation-inner-wrapper .navigation-item:hover {
  border-bottom: 3px solid #629CBC;
  font-weight: bold;
  color: #629CBC;
}
.sticky-navigation-wrapper .sticky-navigation-inner-wrapper .focused {
  border-bottom: 3px solid #629CBC;
  font-weight: bold;
  color: #629CBC;
}
.removed-initial-navigation {
  visibility: hidden;
}
.sticky-nav {
  position: fixed;
  top: 76px;
  width: 100%;
  display: none;
}
.sticky-nav-visible {
  display: none;
}
@media (min-width: 992px) {
  .sticky-nav-visible {
    display: block;
    animation: slide-down 0.4s ease;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}