/*****************************
  *  TOPNAV
  ******************************/
.top-nav {
  height: 50px;
  background-color: var(--fsa-color-usafa-blue);
  color: var(--fsa-color-white);
  z-index: 2;
  font-size: 14px;
}

.top-nav .navbar-nav {
  display: flex;
  flex-direction: row;
}

.top-nav .nav-item:not(:last-child) {
  padding-right: 30px;
}

.top-nav .nav-item.social-networks {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-nav .nav-item .nav-link,
.top-nav .nav-item a {
  padding: 0.25rem;
  display: flex;
  align-items: center;
  color: var(--fsa-color-white);
}

.top-nav .nav-item.social-networks a {
  padding: 0 0.5rem;
}

.top-nav .nav-item .fsa-button-top {
  background-color: var(--fsa-color-blueberry);
  color: var(--fsa-color-white);
  margin: 0;
  padding: 8px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1;
  text-decoration: none;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  outline: none;
  border: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.top-nav .nav-item .fsa-button-top:hover,
.top-nav .nav-item .fsa-button-top:focus {
  color: var(--fsa-color-space-cadet);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*****************************
  *  MEDIA QUERIES
  ******************************/
@media (max-width: 767.98px) {
  .top-nav .nav-item.linksrapidos,
  .top-nav .nav-item.social-networks {
    display: none;
  }
}