/**
 * VIB CSS Styling.
 * Copyright 2022 VIB Bioinformatics Core Facility.
 * Permission is granted to use, change, and modify this
 * code under the terms of the MIT license
 * (see LICENSE, https://raw.githubusercontent.com/vibbits/vib-css/main/LICENSE)
 */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500&display=swap");
@font-face {
  font-family: Dense;
  src: url("https://cdn.jsdelivr.net/npm/@vibbioinfocore/vib-css/fonts/Dense-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: Dense-Bold;
  src: url("https://cdn.jsdelivr.net/npm/@vibbioinfocore/vib-css/fonts/Dense-Bold.otf") format("opentype");
  font-display: swap;
}
/**
 * VIB CSS Styling.
 * Copyright 2022 VIB Bioinformatics Core Facility.
 * Permission is granted to use, change, and modify this
 * code under the terms of the MIT license
 * (see LICENSE, https://raw.githubusercontent.com/vibbits/vib-css/main/LICENSE)
 */
* {
  margin: 0;
}

body.vib-body {
  background-color: rgb(244, 244, 244);
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  text-rendering: optimizeLegibility;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
body.vib-body a {
  color: #1b2944;
}
body.vib-body a:hover {
  color: #ff681e;
}
body.vib-body h1 {
  font-size: 4.375rem;
  line-height: 4.375rem;
  color: #1b2944;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
}
body.vib-body h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  font-family: "Barlow Condensed", sans-serif;
}

main.vib-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 2rem;
}
main.vib-main section {
  width: 100%;
}
main.vib-main table {
  border: 1px solid rgba(128, 128, 128, 0.1);
  text-align: left;
}
main.vib-main table thead {
  color: gray;
}
main.vib-main th,
main.vib-main td {
  padding: 15px 0px 15px 25px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  font-size: 14px;
}

.background-off-white {
  background-color: rgb(244, 244, 244);
}

.background-off-black {
  background-color: rgba(0, 0, 0, 0.85);
}

.background-blue {
  background-color: #1b2944;
}

.background-cyan {
  background-color: #1cbbba;
}

.background-orange {
  background-color: #ff681e;
}

.border-grey {
  border-color: rgba(128, 128, 128, 0.1);
}

.foreground-blue {
  color: #1b2944;
}

.foreground-cyan {
  color: #1cbbba;
}

.foreground-orange {
  color: #ff681e;
}

.vib-h1 {
  font-family: Dense, sans-serif;
  font-size: 72px;
}

.vib-h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
}

.vib-h3 {
  font-family: Dense-Bold, sans-serif;
  font-size: 30px;
}

.vib-btn {
  font-family: Dense, sans-serif;
  font-size: 1.875rem;
  color: #1b2944;
  margin-left: 32px;
  text-decoration: none;
}
.vib-btn:hover {
  color: #1cbbba;
  text-decoration: underline;
}

.vib-bar-breadcrumb {
  height: 45px;
  background-color: #1b2944;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  overflow-x: auto;
  overflow-y: hidden;
}
.vib-bar-breadcrumb .vib-breadcrumbs {
  padding: 0;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: center;
}
.vib-bar-breadcrumb .vib-breadcrumbs a:last-child span::after {
  content: none;
}
.vib-bar-breadcrumb .vib-breadcrumbs span.vib-breadcrumb-arrow {
  display: block;
  position: relative;
  width: 1px;
  height: 24px;
}
.vib-bar-breadcrumb .vib-breadcrumbs span.vib-breadcrumb-arrow::before, .vib-bar-breadcrumb .vib-breadcrumbs span.vib-breadcrumb-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid currentcolor;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  z-index: 2 !important;
  bottom: -30px;
  top: -30px;
  left: auto;
  right: -22px;
  margin: auto;
}
.vib-bar-breadcrumb .vib-breadcrumbs span.vib-breadcrumb-arrow::after {
  right: -23px;
  left: auto;
  z-index: 1 !important;
  border-left-color: white;
}
.vib-bar-breadcrumb .vib-breadcrumbs a.breadcrumb {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #1b2944;
  padding: 11px 14px 10px 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: underline;
  margin-left: -10px;
}
@media only screen and (min-width: 990px) {
  .vib-bar-breadcrumb .vib-breadcrumbs a.breadcrumb {
    text-decoration: none;
  }
  .vib-bar-breadcrumb .vib-breadcrumbs a.breadcrumb:hover {
    color: #1cbbba;
    background-color: #1cbbba;
  }
}
.vib-bar-breadcrumb .vib-breadcrumbs a.breadcrumb span.vib-link-title {
  color: white;
}
.vib-bar-breadcrumb .vib-auth {
  padding: 0;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: center;
}
.vib-bar-breadcrumb .vib-auth a.vib-auth-button {
  margin-left: auto;
  margin-right: 10px;
  padding: 0 1.2rem 0 1.4rem;
  display: flex;
  align-items: center;
  height: 100%;
  color: white;
  text-decoration: none;
  font-weight: normal;
  cursor: pointer;
}
.vib-bar-breadcrumb .vib-auth a.vib-auth-button:hover {
  text-decoration: none;
  color: white;
}
.vib-bar-breadcrumb .vib-auth a.vib-auth-button .vib-avatar {
  border-radius: 50%;
  color: #fff;
  height: 30px;
  overflow: hidden;
  width: 30px;
  margin-left: 8px;
  margin-right: 8px;
}
.vib-bar-breadcrumb .vib-auth a.vib-auth-button .vib-auth-button-text {
  display: none;
  color: white;
  box-sizing: border-box;
  line-height: 30px;
  text-align: center;
}
@media only screen and (min-width: 990px) {
  .vib-bar-breadcrumb .vib-auth a.vib-auth-button .vib-auth-button-text {
    display: inherit;
  }
}
.vib-bar-breadcrumb .vib-auth a.vib-auth-button .vib-username {
  font-weight: 700;
}
.vib-bar-breadcrumb .vib-auth a.vib-admin {
  border-left: 1px solid white;
  border-right: 1px solid white;
}
.vib-bar-breadcrumb .vib-auth a.vib-admin i.vib-admin-icon {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' viewBox='0 0 22 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m11.1 0-11.3 4.8s.2 5 .4 6.9c.2 1.9 1.1 6.3 3.5 9.5 2.5 3.1 6.1 4.2 7.4 4.7 1.3-.5 4.5-1.5 7.4-4.7 2.9-3.2 3.3-7.5 3.6-9.5.3-1.9.1-7 .1-7zm0 5.7c1.7 0 3 1.3 3 3 0 1.7-1.3 3-3 3-1.7 0-3-1.3-3-3 0-1.7 1.3-3 3-3zm-1.8 6.6c-.3.7 0 .9 1.7.9 1.7 0 2.1-.1 1.8-.9.7 1 2.1.7 2.9 1.4 1.2 1.1.7 3.3-.4 4.2-1.2.9-2.8 1.3-4.2 1.3-1.4 0-2.7-.3-4.2-1.3-1.5-1-1.6-3.1-.4-4.2.8-.7 2.1-.5 2.9-1.4z' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-size: 25px 22px;
  background-repeat: no-repeat;
  width: 22px;
  height: 25px;
  margin-right: 0.2rem;
}
@media only screen and (min-width: 990px) {
  .vib-bar-breadcrumb .vib-auth a.vib-admin {
    display: inherit;
  }
}
.vib-bar-breadcrumb .vib-auth a.vib-user-info {
  padding: 0 0.5rem;
}
.vib-bar-breadcrumb .vib-auth a.vib-user-info img {
  width: 30px;
  height: 30px;
}

.vib-logo-small {
  height: 18px;
  width: 50px;
  margin-bottom: 3px;
}

header.vib-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 21, 41, 0.12);
  background-color: white;
}
header.vib-header nav.vib-nav {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-self: center;
  background-color: white;
  padding: 0.7rem 0rem 0.7rem 0rem;
  width: 90%;
}
@media only screen and (min-width: 990px) {
  header.vib-header nav.vib-nav {
    flex-direction: row;
  }
}
header.vib-header nav.vib-nav input[type=checkbox]#vib-toggle-menu {
  display: none;
}
header.vib-header nav.vib-nav input[type=checkbox]#vib-toggle-menu:checked ~ .vib-main-menu {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 990px) {
  header.vib-header nav.vib-nav input[type=checkbox]#vib-toggle-menu:checked ~ .vib-main-menu {
    flex-direction: row;
  }
}
header.vib-header nav.vib-nav .vib-menu-toggle-button {
  display: inline-block;
  padding: 7px 10px;
  position: absolute;
  right: 10px;
}
@media only screen and (min-width: 990px) {
  header.vib-header nav.vib-nav .vib-menu-toggle-button {
    display: none;
  }
}
header.vib-header nav.vib-nav .vib-menu-button-bar {
  display: block;
  background-color: #1b2944;
  width: 30px;
  height: 3px;
  border-radius: 5px;
  margin: 5px auto;
  transition: transform 0.2s ease-in;
}
header.vib-header nav.vib-nav ul.vib-main-menu {
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
  width: 100%;
  display: none;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}
@media only screen and (min-width: 990px) {
  header.vib-header nav.vib-nav ul.vib-main-menu {
    display: flex;
    flex-direction: row;
  }
}
header.vib-header nav.vib-nav ul.vib-main-menu a {
  font-size: 30px;
  line-height: 1;
  font-family: Dense, sans-serif;
  font-weight: 500;
  color: #1b2944;
  text-decoration: none;
}
header.vib-header nav.vib-nav ul.vib-main-menu a:hover {
  text-decoration: underline;
}
header.vib-header nav.vib-nav .vib-app-logo {
  max-width: 80%;
  max-height: 140px;
  object-fit: contain;
}

div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  gap: 50px;
}
@media only screen and (min-width: 672px) {
  div.container {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

div.column-container {
  display: grid;
  grid-auto-flow: row;
  place-items: center;
  place-content: center;
  margin: 0.5rem;
  gap: 0.5rem;
}
div.column-container > * {
  overflow: scroll !important;
  max-width: 100%;
}

footer.vib-main-footer {
  width: 100%;
  margin: 60px 0 0 0 !important;
  font-weight: 400;
  padding: 0 0 0 0;
  display: flex;
  font-family: "Open Sans", sans-serif;
  flex-direction: column;
}
@media only screen and (min-width: 990px) {
  footer.vib-main-footer {
    flex-direction: row;
  }
}
footer.vib-main-footer h3 {
  font-family: Dense, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.875rem;
}
footer.vib-main-footer .footer-l {
  padding: 65px 40px 65px 40px;
  flex-grow: 2;
  background-color: #1b2944;
  color: white;
}
@media only screen and (min-width: 990px) {
  footer.vib-main-footer .footer-l {
    width: 168%;
  }
}
footer.vib-main-footer .footer-l .menu-box {
  margin-bottom: 40px;
}
footer.vib-main-footer .footer-l .menu-box ul {
  list-style: none;
  padding-left: 0;
}
footer.vib-main-footer .footer-l .menu-box a {
  color: white;
  text-decoration: none;
}
footer.vib-main-footer .footer-l .menu-box a:hover {
  text-decoration: underline;
}
footer.vib-main-footer .footer-r {
  padding: 65px 50px 65px 50px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  background-color: #1cbbba;
  color: #1b2944;
}
@media only screen and (min-width: 990px) {
  footer.vib-main-footer .footer-r {
    width: 132%;
  }
}

.logo-partner {
  height: 61px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.vlaanderen-footer {
  padding: 10px 18px 10px 18px;
  margin: 0 !important;
  width: 100%;
}
.vlaanderen-footer > img {
  width: 150px;
}

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