.olympus-simple-nav {
  width: 100%;
  color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: background-color 200ms ease;
}

.admin-bar .olympus-simple-nav {
  top: 32px;
}

/* TODO: do we want primary when scrolled? If not we may need to have a secondary logo for contrast */
html:not([data-scroll="0"]) .olympus-simple-nav {
  background: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

.olympus-simple-nav a {
  text-decoration: none;
}

.olympus-simple-nav-container {
  max-width: var(--wp--style--global--wide-size);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  position: relative;
}

.olympus-simple-nav-logo-wrap,
.olympus-simple-nav-cta-wrap {
  min-width: 20%;
}

.olympus-simple-nav-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.olympus-simple-nav-logo {
  display: block;
  width: 200px;
  height: 90px;
}

.olympus-simple-nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.olympus-simple-nav-items-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.olympus-simple-nav-items-wrap.mobile {
  align-items: flex-end;
}

.olympus-simple-nav-top-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 1.333em;
}

.olympus-simple-nav-items {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 20px;
}

.olympus-simple-nav-top-link {
  font-size: 0.8rem;
}

.olympus-simple-nav-items-wrap.mobile,
.olympus-simple-nav-mobile {
  display: none;
}

.olympus-simple-nav-toggle {
  width: 31px;
  height: 35px;
  padding-top: 1px;
  cursor: pointer;
}
.olympus-simple-nav-toggle .line-1,
.olympus-simple-nav-toggle .line-2,
.olympus-simple-nav-toggle .line-3 {
  width: 100%;
  height: 2px;
  background: white;
  margin-top: 7px;
  margin-left: auto;
  transition: width 200ms ease;
}

.olympus-simple-nav-toggle.open .line-2 {
  width: 66%;
}
.olympus-simple-nav-toggle.open .line-3 {
  width: 33%;
}

@media (max-width: 1050px) {
  .olympus-simple-nav-items-wrap.mobile {
    display: flex;
  }

  .olympus-simple-nav-items-wrap.desktop,
  .olympus-simple-nav-cta-wrap {
    display: none;
  }

  .olympus-simple-nav-items {
    margin-right: 1.333em;
  }

  .olympus-simple-nav-mobile {
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    background: rgba(0, 0, 0, 0.8);
    margin: 10px;
    border-radius: 8px;
  }

  .olympus-simple-nav-mobile .orphic-plugin-boilerplate-template-button {
    align-self: center;
  }

  .olympus-simple-nav-logo {
    width: 172px;
  }
}
