@font-face {
  font-family: "intro_bold_regular";
  src: url("/local/fonts/introboldregular.ttf") format("truetype"), url("/local/fonts/introboldregular.woff2") format("woff2"), url("/local/fonts/introboldregular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --global--font-primary: intro_bold_regular, "Helvetica Neue", sans-serif;
  --branding--title--font-size: intro_bold_regular;
  --branding--title--text-transform: none;
  --body--font-family: "Roboto", sans-serif;
  --branding--description--font-size: 12px;
  --branding--description--line-heigth: 19px;
  --global--font-size-base: 1rem;
  --global--font-color: #000000;
  --global--color-background: #ffffff;
  --global--spacing-vertical: 50px;
  --logo--font-color: #292929;
  --logo--font-family: var(--global--font-primary);
  --logo--font-weight: bold;
  --header--font-family: var(--global--font-primary);
  --header--color-link: rgba(255, 255, 255, 70%);
  --header--color-link-hover: #ffffff;
  --header--color-background: #FFFFFF;
  --footer--font-family: intro_bold_regular;
  --footer--color-background: #081016;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body--font-family);
}

#nora-header {
  background-color: var(--header--color-background);
}
#nora-header .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100vw;
  padding: 0 40px;
  box-sizing: border-box;
}
#nora-header .header__top-name {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 21px;
  font-weight: var(--logo--font-weight);
  line-height: 27px;
  font-family: var(--logo--font-family);
  color: var(--logo--font-color);
}
#nora-header .header__top-name--logo {
  height: 44px;
  width: 44px;
}
#nora-header .header__top-database {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 40px;
}
#nora-header .header__top-database--name {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--body--font-family);
}
#nora-header .header__top-database--icon {
  height: 31px;
  width: 25px;
  margin-right: 0.5rem;
  background-image: var(--theme--database-icon);
  background-position: center;
  background-repeat: no-repeat;
}
#nora-header .header__top-database--selector {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--body--font-family);
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: var(--theme--select-chevron);
  /* background-attachment: fixed | scroll; */
  /* background-size: auto | cover | contain | 500px 250px; */
  background-position: center right;
  background-repeat: no-repeat;
  margin-left: 5px;
  padding-right: 20px;
  /* background-origin: border-box | padding-box | content-box; */
  /* background-clip: border-box | padding-box | content-box; */
  /* background-blend-mode: multiply | screen | overlay; */
}
#nora-header .header__top-database-info {
  position: absolute;
  right: 0;
  height: 18px;
  width: 18px;
  color: var(--theme--primary-color);
}
#nora-header .header__top-database-info-icon {
  filter: drop-shadow(0 0 1px #ddd);
  color: var(--global--font-color);
}
#nora-header .header__top-database-info-box {
  position: absolute;
  right: 0;
  height: 0;
  width: 0;
  max-width: 100vw;
  background-color: var(--global--color-background);
  border: 2px solid var(--theme--primary-color);
  padding: 1rem 2rem 1rem 1rem;
  box-sizing: border-box;
  color: var(--global--font-color);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 300ms ease-in-out;
}
#nora-header .header__top-database-info-box--open {
  height: 300px;
  width: 700px;
  overflow: scroll;
  opacity: 1;
  pointer-events: all;
}
#nora-header .header__top-database-info-box-close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 20px;
  width: 20px;
}
#nora-header .header__top-database-info-box-close::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 25px;
  transform: rotate(45deg) translate(4px, 8px);
  background-color: var(--theme--primary-color);
  border-radius: 2px;
}
#nora-header .header__top-database-info-box-close::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 25px;
  transform: rotate(-45deg) translate(-8px, 4px);
  background-color: var(--theme--primary-color);
  border-radius: 2px;
}
#nora-header .header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  width: 100vw;
  padding: 0 40px;
  box-sizing: border-box;
  background-color: var(--theme--primary-color);
  border-top: 1px solid #000000;
  color: var(--theme--contrast-color);
}
#nora-header .header__bar-search-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#nora-header .header__bar-search-toggle--option {
  cursor: pointer;
}
#nora-header .header__bar-search-toggle--option:hover {
  text-decoration: underline;
}
#nora-header .header__bar-search-toggle--selected-option {
  font-weight: 700;
  text-decoration: underline;
}
#nora-header .header__bar-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--theme--contrast-color);
}
#nora-header .header__bar-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#nora-footer {
  width: 100vw;
  background-color: var(--footer--color-background);
  padding: 30px 40px 40px;
  box-sizing: border-box;
  color: #FFFFFF;
}
#nora-footer .footer__institution {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nora-footer .footer__institution--owner {
  height: 60px;
}
#nora-footer .footer__institution--owner img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
#nora-footer .footer__institution--producer {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  font-size: 12px;
  font-weight: 300;
  height: 38px;
}
#nora-footer .footer__institution--producer svg {
  height: 100%;
  width: auto;
  object-fit: contain;
}
#nora-footer .footer__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid #FFFFFF;
  margin-top: 2rem;
  padding-top: 1.5rem;
}
#nora-footer .footer__link {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */
