.app-nav {
  position: relative;
  width: 100%;
  text-align: left;
  margin-top: 0;
  padding: 25px 0;
  background-color: var(--primary-bg-color, #f2f8f9);
}

.app-nav.hide-app-nav {
  display: none;
}

.sidebar, .sidebar-toggle {
  position: fixed;
}

.app-nav.no-badge {
  margin-right: 0;
}

.app-nav a img {
  max-width: 200px;
}

.sidebar .app-name {
  display: none;
}

.content {
  padding-top: 0;
}

a.go-to-home {
  top: 10px;
}

a.float-right {
  float: right;
  padding: 5px 0.5rem;
  border-radius: 5px;
  margin: 0 0.5rem;
}

a.float-right.demo-link {
  background: #2886db;
  color: #fff;
  position: relative;
  overflow: hidden;
}

a.float-right.demo-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);

  animation-name: label-new-shine-effect;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.app-nav a.float-right {
  transition: all 0.3s ease-in-out;
}

.app-nav a.float-right.new-docs-link:hover,
.app-nav a.float-right.website-link:hover {
  color: inherit;
  background-color: #f1defc;
}

.app-nav.no-badge::after {
  content: ' ';
  display: table;
  clear: both;
}

@media (max-width: 479px) {
  .app-nav a {
    display: block;
    text-align: center;
    float: none;
  }
  .app-nav a img {
    max-width: 100%;
    max-height: 60px;
    width: 100%;
  }
}
