:root {
  --top-nav-height: 80px;
  --top-nav-height-mobile: 70px;
  --top-nav-background: var(--brand-primary);
  --top-nav-link-color: var(--white);
  --top-nav-link-background: var(--top-nav-background);
  --top-nav-link-color-active: var(--white);
  --top-nav-link-background-active: var(--brand-secondary);
  --top-nav-secondary-height: 75px;
}

.cope-core-navigation {
  margin-bottom: var(--top-nav-height-mobile);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation {
    margin-bottom: var(--top-nav-height);
  }
}
@media screen and (min-width: 768px) {
  .cope-core-navigation.cope-core-navigation-top-has-secondary {
    margin-bottom: var(--top-nav-secondary-height);
  }
}
.cope-core-navigation.cope-core-navigation-top-has-secondary .cope-core-navigation-top-container-secondary-navigation {
  height: var(--top-nav-secondary-height);
}

.cope-core-navigation-top {
  background: var(--top-nav-background);
  color: white;
  font-family: var(--frutiger);
  font-size: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top {
    top: var(--globalnavigation-height);
  }
}
.cope-core-navigation-top .cope-core-navigation-top-container {
  display: flex;
  height: var(--top-nav-height-mobile);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  justify-content: space-between;
  align-items: center;
  transition: height 0.25s ease;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    height: var(--top-nav-height);
    align-items: stretch;
    max-width: var(--tablet-width);
    padding: 0 var(--container-padding-tablet);
  }
}
@media screen and (min-width: 1024px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    max-width: var(--desktop-width);
    padding: 0 var(--container-padding-desktop);
  }
}
@media screen and (min-width: 1440px) {
  .cope-core-navigation-top .cope-core-navigation-top-container {
    max-width: var(--desktop-xl-width);
    padding: 0 var(--container-padding-desktop-xl);
  }
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container a {
  text-decoration: none;
  display: block;
  height: 100%;
  transition: height 0.25s ease;
}
.cope-core-navigation-top .cope-core-navigation-top-logo-container img {
  height: 100%;
  display: block;
}
.cope-core-navigation-top .cope-core-navigation-top-links-container {
  width: 100%;
  justify-content: flex-start;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - var(--top-nav-height-mobile));
  background: var(--top-nav-background);
  display: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-links-container {
    overflow: visible;
    padding: 0;
    position: static;
    background: none;
    height: auto;
    display: block;
  }
  .cope-core-navigation-top .cope-core-navigation-top-links-container.cope-core-navigation-top-links-right .cope-core-navigation-top-sections {
    justify-content: flex-end;
  }
  .cope-core-navigation-top .cope-core-navigation-top-links-container.cope-core-navigation-top-links-center .cope-core-navigation-top-sections {
    justify-content: center;
  }
}
.cope-core-navigation-top .cope-core-navigation-top-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-items {
    flex-direction: row;
    height: 100%;
  }
}
.cope-core-navigation-top .cope-core-navigation-global-mobile {
  position: relative;
}
.cope-core-navigation-top .cope-core-navigation-global-mobile:before {
  position: absolute;
  width: calc(100% - 20px - 20px);
  height: 1px;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-nav-link-color);
}
.cope-core-navigation-top .cope-core-navigation-global-mobile a {
  color: var(--top-nav-link-color);
  background-color: var(--top-nav-link-background);
  font-family: inherit;
  text-decoration: none;
  font-size: 12px;
  display: block;
  padding: 20px;
}
.cope-core-navigation-top .cope-core-navigation-global-mobile a:hover, .cope-core-navigation-top .cope-core-navigation-global-mobile a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}
.cope-core-navigation-top .cope-core-navigation-top-additional-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
.cope-core-navigation-top .cope-core-navigation-top-additional-content > div:before {
  position: absolute;
  width: calc(100% - 20px - 20px);
  height: 1px;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--top-nav-link-color);
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-toggle {
  -webkit-appearance: none;
  border: none;
  position: relative;
  width: 30px;
  height: 26px;
  background: transparent;
  border-top: 4px solid;
  border-bottom: 4px solid;
  color: var(--top-nav-link-color);
  font-size: 0;
  transition: all 0.25s ease;
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-toggle:before, .cope-core-navigation-top .cope-core-navigation-top-mobile-toggle:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--top-nav-link-color);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle {
  border-color: transparent;
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-links-container {
  display: block;
}
.cope-core-navigation-top .cope-core-navigation-top-mobile-only {
  display: block !important;
}
.cope-core-navigation-top .cope-core-navigation-top-desktop-only {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top .cope-core-navigation-top-mobile-only {
    display: none !important;
  }
  .cope-core-navigation-top .cope-core-navigation-top-desktop-only {
    display: block !important;
  }
}

.cope-core-navigation-top-additional-content-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .cope-core-navigation-top-using-page-properties .cope-core-navigation-top-container {
    flex-wrap: wrap;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections:nth-child(1) {
    display: none;
  }
}

.cope-core-navigation-top-brand-logo-section {
  display: flex;
}
.cope-core-navigation-top-brand-logo-section .cope-core-navigation-top-brand-logo {
  align-self: center;
}

.cope-core-navigation-top-container-condition-section .cope-core-simple-dropdown select {
  border: none;
  background: white;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only {
  position: relative;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xf-standard,
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xf-page,
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xfpage {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  padding-left: 40px;
  z-index: 1;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xf-standard > .xf-content-height,
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xf-page > .xf-content-height,
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only > .xfpage > .xf-content-height {
  min-height: auto;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-desktop-only p {
  margin: 0;
  padding: 0;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-mobile-only {
  flex: 0 70%;
}
.cope-core-navigation-top-container-condition-section.cope-core-navigation-top-mobile-only .cope-core-simple-dropdown select {
  margin-top: 15px;
}

.cope-core-navigation-top-container-condition-section,
.cope-core-navigation-top-mobile-toggle-label {
  color: var(--top-nav-link-color);
}

.cope-core-navigation > .cope-core-navigation-top:not(.cope-core-navigation-top-open) .cope-core-navigation-top-mobile-toggle-label .menu-close-text {
  display: none;
}
.cope-core-navigation > .cope-core-navigation-top.cope-core-navigation-top-open .cope-core-navigation-top-mobile-toggle-label .menu-text {
  display: none;
}

.cope-core-navigation-top-section-nested-section {
  display: none;
  position: absolute;
  height: auto;
  top: var(--globalnavigation-height);
  z-index: 1;
  border: 1px solid;
}
.cope-core-navigation-top-section-nested-section .cope-core-navigation-top-section-nested-links {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--top-nav-link-color);
}

.cope-core-navigation-top-section:hover .cope-core-navigation-top-section-nested-section {
  display: flex;
}

.cope-core-navigation-top-section-has-banner-text .cope-core-navigation-top-section-nested-section {
  padding-top: 20px;
}

.cope-core-navigation-top-section-banner-text {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid;
  background: white;
  cursor: default;
}
.cope-core-navigation-top-section-banner-text p {
  line-height: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-mobile-only,
  .cope-core-navigation-top-link-mobile-only {
    display: none !important;
  }
}

:root {
  --nav-dropdown-bg: var(--grey);
  --nav-dropdown-color: var(--grey-dark);
  --nav-dropdown-items-bg: var(--grey-light);
  --nav-dropdown-items-color: var(--grey-med);
  --nav-dropdown-items-color-hover: var(--grey);
  --nav-dropdown-open-icon: url(../../../../../../content/dam/novo-core-framework/icons/navigation-dropdown-open.png);
  --nav-dropdown-close-icon: url(../../../../../../content/dam/novo-core-framework/icons/navigation-dropdown-close.png);
}

.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown {
  display: flex;
  cursor: pointer;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-mobile-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-mobile-only {
    display: none;
  }
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-desktop-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-desktop-only {
    display: block;
  }
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-opened .cope-core-navigation-dropdown-items {
  display: block;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown.cope-core-navigation-dropdown-opened .cope-core-navigation-dropdown-label-icon.cope-core-navigation-dropdown-label-icon-open {
  display: none;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown:not(.cope-core-navigation-dropdown-opened) .cope-core-navigation-dropdown-label-icon.cope-core-navigation-dropdown-label-icon-close {
  display: none;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-label {
  display: flex;
  line-height: 1;
  z-index: 1002;
  color: var(--nav-dropdown-color);
  background-color: var(--nav-dropdown-bg);
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-label .cope-core-navigation-dropdown-label-icon {
  position: relative;
  width: 25px;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-label .cope-core-navigation-dropdown-label-icon.cope-core-navigation-dropdown-label-icon-open::after {
  content: var(--nav-dropdown-open-icon);
  position: absolute;
  top: -3px;
  right: 5px;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-label .cope-core-navigation-dropdown-label-icon.cope-core-navigation-dropdown-label-icon-close::after {
  content: var(--nav-dropdown-close-icon);
  position: absolute;
  right: 5px;
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-items {
  display: none;
  position: absolute;
  padding-top: 20px;
  z-index: 310;
  background-color: var(--nav-dropdown-items-bg);
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-items a {
  display: flex;
  margin: 0;
  padding: 10px 15px;
  color: var(--nav-dropdown-items-color);
}
.cope-core-navigation-global .cope-core-navigation-global-content nav.cope-core-navigation-dropdown .cope-core-navigation-dropdown-items a:hover {
  color: var(--nav-dropdown-items-color-hover);
}

.cope-core-navigation-top.cope-core-navigation-top-fixed {
  position: fixed;
  top: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-nav-up, .cope-core-navigation-top.cope-core-navigation-top-stickyscrollvelocity.cope-core-navigation-top-nav-up {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-nav-down, .cope-core-navigation-top.cope-core-navigation-top-stickyscrollvelocity.cope-core-navigation-top-nav-down {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.cope-core-navigation-top.cope-core-navigation-top-stickyscroll.cope-core-navigation-top-animate, .cope-core-navigation-top.cope-core-navigation-top-stickyscrollvelocity.cope-core-navigation-top-animate {
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
  transform: translateY(0);
}

.cope-core-navigation-top-sections {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-sections {
    flex-direction: row;
    height: 100%;
  }
}

.cope-core-navigation-top-section {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--top-nav-link-background);
  color: var(--top-nav-link-color);
  height: 100%;
}
.cope-core-navigation-top-section a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  font-size: inherit;
  display: block;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section {
    flex: 0 1 150px;
    cursor: pointer;
    align-items: center;
    flex-direction: row;
  }
  .cope-core-navigation-top-section:hover, .cope-core-navigation-top-section:active {
    color: var(--top-nav-link-color-active);
    background: var(--top-nav-link-background-active);
  }
}
.cope-core-navigation-top-section:hover ul, .cope-core-navigation-top-section:active ul {
  display: block;
}

.cope-core-navigation-top-section-title .cope-core-navigation-top-section-title-wrapper {
  padding: 20px;
}
.cope-core-navigation-top-section-title a:hover,
.cope-core-navigation-top-section-title a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-title {
    padding: 0;
  }
}

.cope-core-navigation-top-section-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: 10px;
}

.cope-core-navigation-top-section-icon-container {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-icon-container {
    justify-content: center;
  }
  .cope-core-navigation-top-section-icon-container.cope-core-navigation-top-icon-top {
    flex-direction: column;
  }
  .cope-core-navigation-top-section-icon-container.cope-core-navigation-top-icon-top .cope-core-navigation-top-section-icon {
    margin-bottom: 5px;
    margin-right: 0;
  }
}

.cope-core-navigation-top-section-text {
  margin-top: 5px;
}

.cope-core-navigation-top-section-links {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  color: var(--top-nav-link-color);
  background-color: var(--top-nav-link-background);
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
}
.cope-core-navigation-top-section-links a {
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  font-size: inherit;
  display: block;
  padding: 20px 60px;
}
@media screen and (min-width: 768px) {
  .cope-core-navigation-top-section-links a {
    padding: 15px;
  }
}
.cope-core-navigation-top-section-links a:hover, .cope-core-navigation-top-section-links a:active {
  color: var(--top-nav-link-color-active);
  background: var(--top-nav-link-background-active);
}

@media screen and (max-width: 767px) {
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-links-container .cope-core-navigation-top-items {
    padding-left: 0;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title {
    display: flex;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title a {
    width: calc(100% - 50px);
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title a:hover, .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title a:active {
    background: unset;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title .cope-core-navigation-top-children-section {
    width: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections .cope-core-navigation-top-section .cope-core-navigation-top-section-title .cope-core-navigation-top-children-section .cope-core-navigation-has-children-icon::after {
    content: "\f054";
    color: #005AD2;
    font: normal normal normal 10px/1 FontAwesome, sans-serif;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-subsection {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-section {
    flex-direction: row;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section {
    padding: 0 !important;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > a {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > .cope-core-navigation-top-children-section {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > .cope-core-navigation-top-children-section.cope-core-navigation-top-children-opened {
    display: flex;
    width: 100%;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > .cope-core-navigation-top-children-section.cope-core-navigation-top-children-opened > .cope-core-navigation-has-children-icon {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > .cope-core-navigation-top-children-section.cope-core-navigation-top-children-opened > .cope-core-navigation-top-subsection {
    display: flex;
    flex-direction: column;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-sections.cope-core-navigation-top-children-subsection-opened > .cope-core-navigation-top-section > .cope-core-navigation-top-section-title > .cope-core-navigation-top-children-section.cope-core-navigation-top-children-opened.cope-core-navigation-top-children-opened-old > .cope-core-navigation-top-subsection > .cope-core-navigation-top-subsection-title {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-subsection-back {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-subsection-back .cope-core-navigation-top-subsection-back-icon {
    position: absolute;
    top: 40%;
    left: 25px;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-subsection-back .cope-core-navigation-top-subsection-back-icon::after {
    content: "\f053";
    font: normal normal normal 10px/1 FontAwesome, sans-serif;
    position: absolute;
    left: -15px;
    top: 2px;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-navigation-top-children-subsection-opened .cope-core-navigation-top-subsection-title-banner-text {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile .cope-core-mobile-condition-text::before {
    content: "\f053";
    font: normal normal normal 10px/1 FontAwesome, sans-serif;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile:not(.cope-core-navigation-top-condition-open) .cope-core-mobile-opened-condition-text {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile:not(.cope-core-navigation-top-condition-open) .cope-core-navigation-top-sections.cope-core-navigation-top-mobile-only > .cope-core-navigation-top-condition-section {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile.cope-core-navigation-top-condition-open .cope-core-mobile-condition-text {
    display: none;
  }
  .cope-core-navigation-top.cope-core-navigation-top-dynamic-mobile.cope-core-navigation-top-condition-open .cope-core-navigation-top-sections.cope-core-navigation-top-mobile-only > :not(.cope-core-navigation-top-condition-section) {
    display: none;
  }
  .cope-core-navigation-top-sections .cope-core-navigation-top-section{
    margin-right: 0rem !important;
  }
}

.cope-core-navigation-banner {
    display: none;
}

@media screen and (max-width: 767px) {
    .cope-core-navigation-banner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cope-core-navigation-banner .brand-logo-banner-for-mobile {
        padding: 20px 15px;
    }

    .cope-core-navigation-banner .brand-logo-banner-for-mobile img {
        height: 50px;
        vertical-align: middle;
    }
}
:root {
    --container-padding-desktop-xl-wegovy: 32px;
    --desktop-width-wegovy: 1280px;
    --container-padding-desktop-wegovy: 16px;
    --xl-width-wegovy: calc(1440px + var(--container-padding-desktop-xl-wegovy) + var(--container-padding-desktop-xl-wegovy));
}

@media screen and (min-width: 1024px) {
    #wegovy-topNavigation .cope-core-navigation-top-container {
        max-width: var(--desktop-width-wegovy);
        padding: 0 var(--container-padding-desktop-wegovy);
    }
}

@media screen and (min-width: 1440px) {
    #wegovy-topNavigation .cope-core-navigation-top-container {
        max-width: var(--xl-width-wegovy);
        padding: 0 var(--container-padding-desktop-xl-wegovy);
    }
}


#wegovy-topNavigation {
    &.cope-core-navigation {
        margin-bottom: calc(var(--top-nav-height) + var(--globalnavigation-height));

        @media screen and (min-width: 768px) {
            margin-bottom: calc(var(--top-nav-height) + var(--globalnavigation-height));
        }
    }

    .img-wrapper {
        display: none;
        height: 40px;
    }

    .container-including-indication {
        margin: 16px auto;
        align-items: center;

        @media screen and (max-width: 768px) {
            margin: 12px auto;
        }

        .cope-core-navigation-top-logo-container {
            max-width: 250px;
            width: 100%;

            @media screen and (max-width: 768px) {
                max-width: 194px;
            }

            a {
                width: 100%;

                img {
                    width: 100%;
                    height: 74px;

                    @media screen and (max-width: 768px) {
                        height: 100%;
                    }
                }
            }
        }

        .indication-statement {
            padding: 13px 0px;
            color: #414042;
            width: 100%;
            padding-left: 32px;
            padding-right: 32px;

            @media screen and (max-width: 768px) {
                position: absolute;
                top: 72px;
                background: var(--top-nav-background);
                left: 0;
                padding-left: 20px;
                padding-right: 20px;
                width: 100%;
            }

            p {
                margin: 0;
                line-height: 16px;
                font-weight: 400;
                font-size: 14px;
                letter-spacing: 0;
            }
        }
    }

    .cope-core-navigation-global {
        position: fixed;
        width: 100%;
        z-index: 300;
        box-shadow: 0px 3px 6px 0px #00000026;

        .cope-core-navigation-global-content {
            @media screen and (max-width: 768px) {
                display: block;

                .cope-core-navigation-global-column.cope-core-navigation-global-col-links {
                    width: 100%;

                    nav {
                        display: flex;
                        justify-content: center;
                    }
                }
            }

        }

        .cope-core-navigation-global-column-container {
            justify-content: center;

            nav {
                a {
                    padding: 0 40px;
                    border-right: 1px solid;
                    margin: 0;
                    text-decoration: underline;
                    font-size: 14px;
                    position: relative;

                    @media screen and (max-width: 768px) {
                        padding: 0 16px;
                        font-size: 11px;
                    }

                    &[href="https://espanol.wegovy.com/"] {
                        &::before {
                            content: '';
                            background: url("../../../../../../content/dam/obesity/wegovy/images/globe-icon.svg");
                            background-size: 100% 100%;
                            position: absolute;
                            left: 23px;
                            top: 50%;
                            width: 14px;
                            height: 14px;
                            transform: translateY(-50%);

                            @media screen and (max-width: 768px) {
                                left: 16px;
                                width: 10px;
                                height: 10px;
                                top: 3px;
                                transform: unset;
                            }
                        }

                        @media screen and (max-width: 768px) {
                            padding-left: 32px;
                        }
                    }

                    &:first-child {
                        padding-left: 0;
                    }

                    &:last-child {
                        padding-right: 0;
                        border-right: none;
                    }
                }
            }

        }
    }

    .cope-core-navigation-top {
        @media screen and (max-width: 768px) {
            margin-top: var(--globalnavigation-height);
        }

        .cope-core-navigation-top-items {
            @media screen and (min-width: 768px) {
                align-items: center;
                justify-content: space-between;
            }
        }

        .cope-core-navigation-global-mobile {
            display: none !important;
        }


        &.cope-core-navigation-top-fixed {
            position: fixed;

            @media screen and (max-width: 768px) {
                margin-top: 0;
            }
        }

        &.cope-core-navigation-top-open {
            z-index: 200;

            .button-wrap {
                &::after {
                    content: 'close';
                }
            }
        }

        .button-wrap {
            position: relative;

            @media screen and (min-width: 768px) {
                display: none;
            }

            &::after {
                content: "menu";
                font-size: 9px;
                font-weight: 600;
                margin-top: 3px;
                text-transform: uppercase;
                color: #6f6f6f;
                position: absolute;

                left: 50%;
                transform: translateX(-50%);
            }

            .cope-core-navigation-top-mobile-toggle {
                color: rgb(196, 0, 126);

                &::after,
                &::before {
                    background: rgb(196, 0, 126);
                }
            }
        }
    }

    .cope-core-navigation-top-links-container {
        @media screen and (max-width: 768px) {
            padding: 0.5em 1em 300px;
            background: var(--top-nav-link-background);
        }
    }

    .cope-core-navigation-top-sections {
        width: auto;

        @media screen and (min-width: 1110px) {
            flex-wrap: wrap;
        }

        .cope-core-navigation-top-section {
            .search {
                @media screen and (max-width: 768px) {
                    padding-bottom: 16px;
                    border-bottom: 1px solid #414042;
                }
            }

            &.menu-active {
                .cope-core-navigation-top-section-links {
                    display: block;
                    position: relative;
                }

                .cope-core-navigation-top-section-text {
                    font-weight: bold;
                }

                .cope-core-navigation-top-section-title {
                    &::before {
                        top: 30px;
                        transform: rotate(-225deg)
                    }
                }
            }

            .cope-core-navigation-top-section-title {
                @media screen and (max-width: 768px) {
                    padding: 15px 6px;
                    border-bottom: 1px solid #414042;

                    .cope-core-navigation-top-section-title-wrapper {
                        padding: 0;
                        border: none;
                        position: relative;
                    }

                    &::before {
                        content: "";
                        display: inline-block;
                        width: 12px;
                        height: 12px;
                        border-left: 4px solid #C6007E;
                        border-bottom: 4px solid #C6007E;
                        position: absolute;
                        right: 6px;
                        top: 50%;
                        transform: translateY(-50%) rotate(-45deg);
                    }
                }

                a {
                    width: fit-content;
                }
            }

            &:hover,
            &:active {
                .cope-core-navigation-top-section-text {
                    @media screen and (min-width: 768px) {
                        font-weight: bold;
                        border-bottom: 2px solid;
                    }
                }
            }
        }
    }

    .cope-core-navigation-top-section-text {
        @media screen and (min-width: 992px) and (max-width: 1440px) {
            font-size: 16px;
            line-height: 22px;
        }
    }

    .cope-core-navigation-top-section-links {
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1607843137254902), 0 3px 6px rgba(0, 0, 0, .23137254901960785);
        z-index: 1;
        border: 1px solid var(--top-nav-link-color);
        min-width: max-content;
        top: 80%;
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 1rem;
        overflow: hidden;
        left: 0;

        @media screen and (max-width: 768px) {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 1000;
            display: none;
            float: left;
            min-width: 160px;
            padding: 5px 0;
            margin: 2px 0 0;
            list-style: none;
            font-size: 14px;
            text-align: left;
            background-color: #fff;
        }
    }

    .cope-core-navigation-top-link {
        padding: 14px 26px;
        border-bottom: 1px solid #e6e6e6;

        &:last-child {
            border-bottom: none;
        }

        &:hover {
            background: #e5f4f8;
        }

        a {
            padding: 5px;
            color: #c4007e;
            text-decoration: underline;
            font-size: 18px;
            line-height: 22px;
            font-weight: 400;

            &:hover {
                background: #e5f4f8;
            }
        }

    }

    .cope-core-navigation-top-section-title-wrapper {

        @media screen and (min-width: 768px) and (max-width: 1025px) {
            padding-left: 10px;
            padding-right: 10px;
        }

        @media screen and (max-width: 768px) {
            padding: 15px 6px;
            border-bottom: 1px solid;
        }
    }

    .cope-core-navigation-top-additional-content {
        display: none;
    }

    .topnavigation-authentication-status {
        display: flex;

        .login-section {

            padding: 0;
            width: 225px;

            @media screen and (max-width: 768px) {
                padding: 16px 0;
            }

            .cmp-topnavigation-section-title {
                background-color: #c6007e;
                padding: 7px 14px;
                border-radius: 25px;
                font-size: 1rem;
                line-height: 1.5rem;
                width: 100%;

                a {
                    display: flex;
                    text-align: center;
                    text-decoration: none;
                    color: #fff;
                    background-color: transparent;
                    font-size: 14px;
                    outline: none;
                    -webkit-tap-highlight-color: transparent;
                    justify-content: center;
                }
            }
        }

        .logout-section {
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
    }

    .cope-core-navigation-wrapper {
        @media screen and (min-width: 768px) {
            height: 56px;
            background: #f9f9f9;
            box-shadow: 0px -3px 6px 0px #00000026;
        }

        .cope-core-navigation-top-container {
            height: 100%;

            @media screen and (max-width: 768px) {
                height: 0;
            }
        }

        .cope-core-navigation-top-sections {

            width: 100%;

            @media screen and (min-width: 768px) {
                width: auto;
                display: flex;
            }

            @media screen and (min-width: 768px) and (max-width: 1025px) {
                margin: 0 -10px;
            }

            .cope-core-navigation-top-section {

                @media screen and (min-width: 768px) {
                    // padding: 0 62px;
                    flex: none;
                    background: #f9f9f9;
                }

                @media screen and (min-width: 768px) and (max-width: 1025px) {
                    padding: 0 3px;
                }

                @media screen and (min-width: 1110px) {
                    min-width: 20%;
                }

                &:first-child {
                    .cope-core-navigation-top-section-title-wrapper {
                        @media screen and (min-width: 768px) {
                            padding-left: 0;
                        }
                    }
                }
            }
        }

        .cope-core-navigation-top-sections {
            flex-wrap: wrap;
            justify-content: space-between;

            @media screen and (min-width: 1110px) {
                flex: 1;
            }

            @media screen and (min-width: 768px) and (max-width: 999px) {
                justify-content: flex-start;
                width: 50%;
            }
        }
    }

    .cope-core-search-box {
        width: 225px;

        @media screen and (max-width: 768px) {
            width: 100%;
        }

        .cope-core-search__field {
            width: 100%;
            min-width: unset;
            height: 40px;
        }

        .cope-core-search__clear-icon {
            display: none;
        }

        .cope-core-search__input {
            padding-left: 1rem;
            padding-right: 40px;
            border-radius: 50px;
            border: 2px solid #C6007E;
            font-size: 18px;
            line-height: 24px;
        }

        .cope-core-search__submit {
            width: 44px;
            border-radius: 0 50px 50px 0;
            background: #C6007E;
            color: transparent;
            border: none;
            padding: 0;

            &::after {
                content: '';
                position: absolute;
                right: 10px;
                height: 24px;
                width: 24px;
                top: 50%;
                transform: translateY(-50%);
                background: url('../../../../../../content/dam/obesity/wegovy/images/nav-search-icon.svg');
            }
        }

        .cope-core-search__icon {
            display: none;
        }
    }
}
