#react-sticky-nav {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 0;
  overflow: auto !important;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  width: auto;
}
#react-sticky-nav::-webkit-scrollbar {
  height: 0 !important;
}
.nav-fixed {
  position: fixed;
  z-index: 300;
  top: 0px;
  left: -15px;
  width: 100%;
  overflow: auto !important;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.nav-fixed::-webkit-scrollbar {
  height: 0 !important;
}
.esg-sticky-nav-main-container {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  margin-left: 15px;
  margin-right: 15px;
}
.nav-fixed> .esg-sticky-nav-container {
  flex-grow: 1;
}
.esg-sticky-nav-container {
  height: 60px;
  display: inline-flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  margin: auto;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid rgba(232, 232, 232, 1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 8px;
}
.nav-item {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  margin-right: 8px;
  color: #035fa4;
  font-family: "FS Elliot Web Bold", Arial, arial, sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  white-space: nowrap;
}
.nav-item-highlighted {
  background-color: #d8f2ff;
  border-radius: 4px;
}
.nav-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 720px) {
  .nav-fixed {
    top: 0;
  }
}
;
