body {
  margin: var(--top-nav-height) 0 0 0 !important;
}

.cp-mobile-nav {
  display: none;
}

.cp-burger {
  display: block;
  height: var(--top-nav-height);
  width: 2.5rem;
  background-color: #000;
  color: #ebebeb;
  border: none;
  margin: 0 20px;
}

.cp-burger-bun {
  width: 100%;
  height: 0.15rem;
  background-color: #ebebeb;
  margin: 0.5rem 0;
}

.cp-mobile-nav-image {
  height: var(--top-nav-height);
  max-width: 75%;
}

.cp-mobile-nav-title {
  height: var(--top-nav-height);
  max-width: 75vw;
  text-align: left;
  display: table-cell;
  vertical-align: middle;
  color: #de5206;
  font-family: "Source Sans 3", serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cp-top-nav {
  height: var(--top-nav-height);
  background-color: #000;
  overflow: hidden;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  border-bottom: 0.5px ridge #ebebeb;
}

.cp-top-nav-container {
  min-height: var(--top-nav-height);
  background-color: #000;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-bottom: 0.5px ridge #ebebeb;
}

.cp-top-nav-container-item {
  flex: 20;
  color: #ebebeb;
  height: 100%;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Source Sans 3", "Arial", sans-serif;
}

.cp-top-nav-container-item:hover {
  color: #de5206;
}

.cp-top-nav-container-item-selected {
  color: #de5206 !important;
}

.cp-none {
  display: none;
}

/* hide bar and only show burger*/
@media screen and (max-width: 1000px) {
  /* hide direct links or dropdowns in the navbar */
  .cp-top-nav-container {
    display: none;
  }
  /*mobile-nav is hidden per default, show it */
  .cp-mobile-nav {
    display: flex;
    flex-direction: row;
  }
  .cp-top-nav-container-item {
    text-align: left;
  }
  .cp-top-nav-container-item-text {
    display: flex;
  }
  .cp-top-nav-container-item-logo {
    display: none;
  }
  #cp-injectable-image {
    display: none;
  }
  #cp-injectable-text {
    display: none;
  }

  /* special behaviour when the "responsive"-class is added"*/
  /* apply relative positioning to the links and the dropdowns*/
  .cp-top-nav.cp-responsive .cp-top-nav-container {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--top-nav-height);
    /* set extra padding at bottom */
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1001px) {
  .cp-top-nav-container-item-logo {
    display: flex;
  }

  .cp-top-nav-container-item-text {
    display: none;
  }
  #cp-injectable-text {
    display: none;
  }
}
