/*
Imports all X default less files
Excluding files in sub folders, such as app-profile, optional etc.
*/
:root {
  --color-alert: #c00;
  --color-nearly-black: #18191c;
  --color-neutral-tint-20: rgba(0, 0, 0, 0.7);
  --color-neutral-tint-25: rgba(0, 0, 0, 0.6);
  --color-neutral-tint-30: rgba(0, 0, 0, 0.5);
  --color-neutral-tint-80: rgba(0, 0, 0, 0.2);
  --color-neutral-tint-90: rgba(0, 0, 0, 0.1);
  --color-neutral-tint-95: rgba(0, 0, 0, 0.05);
  --color-neutral-tint-opaque-20: #4c4c4c;
  --color-neutral-tint-opaque-25: #666;
  --color-neutral-tint-opaque-30: #7f7f7f;
  --color-neutral-tint-opaque-80: #ccc;
  --color-neutral-tint-opaque-90: #e5e5e5;
  --color-neutral-tint-opaque-95: #f2f2f2;
  --font-size-large-40: 5rem;
  --font-size-large-30: 3.6rem;
  --font-size-large-20: 3rem;
  --font-size-large-10: 2.4rem;
  --font-size-large-05: 2rem;
  --font-size-base: 1.8rem;
  --font-size-small: 1.6rem;
  --font-size-tiny: 1.4rem;
  --font-size-xtiny: 1.2rem;
  --space: 40px;
  --radius: 5px;
  --indent: 200px;
  --width-total-max: 1500px;
  --width-soft-max: 1000px;
  --width-text-max: 700px;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
}
html.hard-scroll {
  scroll-behavior: auto;
}
body {
  margin: 0;
}
img {
  margin-bottom: 20px;
}
img[alt] {
  font-size: var(--font-size-tiny);
}
figure {
  margin: 0 0 20px 0;
}
figure p,
figure img {
  margin: 0;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
audio {
  max-width: 100%;
}
img[src*="/frontpage-editor"] {
  display: initial;
}
iframe {
  max-width: 100%;
  border: none;
}
vrtx-component-block {
  display: block;
}
#vrtx-frontpage.vrtx-mode-edit #main #left-main {
  display: none;
}
#vrtx-change-language-link,
#vrtx-uh-person-change-language-link,
#vrtx-fs-studieprogram-frontpage-change-language-link,
#vrtx-fs-studieprogram-plan-change-language-link {
  display: none;
}
.vrtx-media-player iframe,
.main iframe[src*=youtube],
.main iframe[src*=facebook],
.main iframe[src*=vimeo],
.main iframe[src*=panopto] {
  --video-aspect-ratio: 16/9;
  width: 100%;
  max-width: var(--width-soft-max);
  height: auto;
  max-height: 700px;
  aspect-ratio: var(--video-aspect-ratio);
}
/* Some use absolute pos to handle aspect ratio. Override that. */
.main iframe[src*=vimeo],
.main iframe[src*=panopto] {
  position: static !important;
}
.vrtx-media-player iframe.portrait-ratio {
  max-width: 350px;
}
.media-portrait-left,
.media-portrait-right {
  clear: both;
  margin: 40px 0;
}
@media (min-width: 751px) {
  .media-portrait-left,
  .media-portrait-right {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space);
    align-items: center;
  }
}
.media-portrait-left .vrtx-media-player iframe,
.media-portrait-right .vrtx-media-player iframe {
  --video-aspect-ratio: 9/16;
  display: block;
  margin-bottom: 15px;
}
@media (min-width: 751px) {
  .media-portrait-right {
    grid-template-columns: 1fr 300px;
  }
  .media-portrait-right .vrtx-media-player {
    order: 2;
  }
}
.vrtx-media-player-print {
  display: none;
}
.nettskjema-iframe {
  border: 1px solid var(--color-neutral-tint-80);
}
form {
  margin: 0;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
legend {
  font-weight: bold;
  padding: 0;
}
.vrtx-search-form {
  margin-bottom: 25px;
}
.vrtx-search-form fieldset,
.vrtx-search-form .field-wrapper {
  display: flex;
  gap: 10px;
  max-width: 500px;
}
.vrtx-search-form fieldset input,
.vrtx-search-form .field-wrapper input {
  width: 100%;
}
.vrtx-search-form fieldset button,
.vrtx-search-form .field-wrapper button {
  flex-shrink: 0;
}
table {
  border-collapse: collapse;
  margin-bottom: 40px;
}
caption,
th {
  text-align: left;
}
caption {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
}
thead {
  background: var(--color-neutral-tint-95);
}
th,
td {
  border: 1px solid var(--color-neutral-tint-80);
  padding: 10px;
}
table.no-border th,
table.no-border td {
  border: none;
}
table.overflows {
  display: block;
  overflow: auto;
  width: var(--availableWidth);
  border-right: 2px dashed var(--color-neutral-tint-30);
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat right 10px top 10px / 16px;
}
table.overflows:not(:has(caption)) {
  padding-top: 30px;
}
.responsive-table span.responsive-content {
  display: none;
}
@media (max-width: 750px) {
  .responsive-table span.responsive-content {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  .responsive-table,
  .responsive-table caption,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table th,
  .responsive-table td {
    display: block;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table tr {
    border: 1px solid var(--color-neutral-tint-80);
    padding: 10px;
  }
  .responsive-table tr:not(:last-child) {
    border-bottom-width: 0;
  }
  .responsive-table th,
  .responsive-table td {
    border: none;
    padding: 0;
  }
}
.invisible,
.skip-link,
.offscreen-screenreader {
  position: absolute;
  left: -100000px;
}
body#error #head-wrapper {
  margin-bottom: 30px;
}
body#error .error-404 {
  display: grid;
  gap: var(--space) calc(2 * var(--space));
}
@media (min-width: 1101px) {
  body#error .error-404 {
    grid-template-columns: 1fr 1fr;
  }
}
body#error .error-404 .search-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin-bottom: 25px;
}
body#error .error-404 .search-form label {
  position: absolute;
  left: -100000px;
}
body#error .error-404 .search-form input {
  width: 100%;
}
body#error .error-404 .search-form button {
  flex-shrink: 0;
}
.modali:has(.admin-frontpage-color-option-container) {
  max-width: 80%;
}
.modali .admin-frontpage-color-option-container {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option {
  text-align: center;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option:focus {
  outline-offset: 0;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option__circle {
  stroke: white;
  stroke-width: 2px;
  border-radius: 100%;
  outline: 2px solid #0004;
  transition: stroke 0.3s;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option__circle--selected {
  outline-color: black;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option__title {
  padding: 2px 8px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border-color 0.3s;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option__title--selected {
  text-decoration: none;
  border-color: black;
}
.modali .admin-frontpage-color-option-container .admin-frontpage-color-option:hover .admin-frontpage-color-option__circle {
  stroke: #0002;
  outline-color: #0008;
}
.modali:has(.admin-frontpage-color-option-container) {
  width: auto;
}
.modali .admin-frontpage-color-option-container {
  width: auto;
}
#vrtx-image-preview main h2 {
  margin: 40px 0 10px;
}
#hidnav,
#head-admin-menu,
#head,
.sidebar-menu-inner-wrapper,
.left-menu-wrapper,
#vrtx-frontpage #left-main,
#vrtx-frontpage #breadcrumbs,
#vrtx-frontpage h1,
#vrtx-frontpage .vrtx-introduction,
.row,
body:not(#vrtx-frontpage) #main,
.mixin-page-wrapper {
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  max-width: var(--width-total-max);
}
@media (max-width: 750px) {
  #hidnav,
  #head-admin-menu,
  #head,
  .sidebar-menu-inner-wrapper,
  .left-menu-wrapper,
  #vrtx-frontpage #left-main,
  #vrtx-frontpage #breadcrumbs,
  #vrtx-frontpage h1,
  #vrtx-frontpage .vrtx-introduction,
  .row,
  body:not(#vrtx-frontpage) #main,
  .mixin-page-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#head-admin-menu .vrtx-dropdown-link::after,
#footer-wrapper .vrtx-dropdown-link::after {
  content: "";
  padding-right: 20px;
  background: url("/vrtx/dist/resources/x1/images/arrow-triangle.svg") no-repeat right center;
  background-size: 11px auto;
}
#head-admin-menu .vrtx-dropdown-wrapper,
#footer-wrapper .vrtx-dropdown-wrapper {
  margin-top: 5px;
  background: white;
  color: black;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
#head-admin-menu .vrtx-dropdown-wrapper:not(.open),
#footer-wrapper .vrtx-dropdown-wrapper:not(.open) {
  display: none;
}
#head-admin-menu .vrtx-dropdown-wrapper ul,
#footer-wrapper .vrtx-dropdown-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#head-admin-menu .vrtx-dropdown-wrapper li:not(:last-child),
#footer-wrapper .vrtx-dropdown-wrapper li:not(:last-child) {
  border-bottom: 1px solid var(--color-neutral-tint-90);
}
#head-admin-menu .vrtx-dropdown-wrapper a,
#footer-wrapper .vrtx-dropdown-wrapper a,
#head-admin-menu .vrtx-dropdown-wrapper button,
#footer-wrapper .vrtx-dropdown-wrapper button {
  padding: 10px 15px;
}
#head-admin-menu .vrtx-dropdown-wrapper a,
#footer-wrapper .vrtx-dropdown-wrapper a {
  display: block;
  text-decoration: none;
}
#head-admin-menu .vrtx-dropdown-wrapper a:hover,
#footer-wrapper .vrtx-dropdown-wrapper a:hover {
  text-decoration: underline;
}
#head-admin-menu .vrtx-dropdown-wrapper button,
#footer-wrapper .vrtx-dropdown-wrapper button {
  border: none;
  border-radius: 0;
  width: 100%;
  text-align: left;
}
#head-admin-menu .vrtx-dropdown-wrapper button:hover,
#footer-wrapper .vrtx-dropdown-wrapper button:hover {
  background-color: transparent;
  text-decoration: underline;
}
#head-admin-menu a.vrtx-login-manage-logout,
#footer-wrapper a.vrtx-login-manage-logout {
  display: none;
}
#head-admin-menu-wrapper {
  position: relative;
  z-index: 11;
  background-color: #eee;
  border-bottom: 1px solid #ddd;
}
#head-admin-menu {
  display: flex;
  justify-content: end;
  font-size: var(--font-size-tiny);
  padding-top: 5px;
  padding-bottom: 5px;
}
#head-admin-menu .vrtx-dropdown-link {
  text-decoration: none;
}
#head-admin-menu .vrtx-dropdown-link:hover {
  text-decoration: underline;
}
#head-admin-menu .vrtx-dropdown-component {
  position: relative;
}
#head-admin-menu .vrtx-dropdown-wrapper {
  position: absolute;
  right: 0;
  width: 250px;
}
#footer-wrapper .vrtx-dropdown-component {
  min-width: 250px;
}
#footer-wrapper .vrtx-dropdown-link::after {
  border-left: 1px solid;
  margin-left: 12px;
  background-image: url("/vrtx/dist/resources/x1/images/arrow-triangle-white.svg");
}
#footer-wrapper .vrtx-dropdown-wrapper {
  width: fit-content;
}
#footer-wrapper .vrtx-login-manage-logout {
  display: none;
}
.vrtx-mode-preview #head-admin-menu-wrapper,
.vrtx-mode-edit #head-admin-menu-wrapper,
.vrtx-mode-preview #footer-wrapper .vrtx-dropdown-component,
.vrtx-mode-edit #footer-wrapper .vrtx-dropdown-component {
  display: none;
}
#hidnav-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#hidnav-wrapper a {
  position: absolute;
  left: -100000px;
  z-index: 12;
  padding: 5px;
  margin: 5px;
  background: white;
  text-decoration: none;
}
#hidnav-wrapper a:focus {
  left: 0;
}
body[class*="test.uio.no"]::before {
  content: "Dette er et test-nettsted";
  display: block;
  text-align: center;
  padding: 15px;
  background: yellow;
  border: 5px dashed #0007;
  margin: 5px;
  position: relative;
  z-index: 10;
}
body[class*="test.uio.no"].en::before {
  content: "This is a test-website";
}
#head-wrapper {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}
@media (max-width: 750px) {
  #head-wrapper {
    padding: 10px 0;
  }
}
#head-wrapper img {
  margin: 0;
}
#header {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 30px;
  transition: all 0.3s;
}
#header .logo {
  background: url("/vrtx/dist/resources/x1/images/logo.svg") no-repeat left center;
  background-size: contain;
  width: 250px;
  height: 90px;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  #header .logo {
    width: 150px;
    height: 60px;
  }
}
#header .logo img {
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}
#header .logo span {
  position: absolute;
  left: -100000px;
}
#header .uio-logo {
  flex-shrink: 0;
  background: url("/vrtx/dist/resources/x1/images/uio-logo.svg") no-repeat right center;
  background-size: contain;
  width: 200px;
  height: 50px;
  margin-right: 5%;
}
@media (max-width: 1100px) {
  #header .uio-logo {
    display: none;
  }
}
html[lang=en] #header .logo {
  background-image: url("/vrtx/dist/resources/x1/images/logo-en.svg");
}
html[lang=en] #header .uio-logo {
  background-image: url("/vrtx/dist/resources/x1/images/uio-logo-en.svg");
}
#header-tools {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto auto;
  column-gap: 30px;
}
@media (max-width: 750px) {
  #header-tools {
    column-gap: 20px;
  }
}
#header-tools #header-language {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header-tools #header-language > span,
#header-tools #header-language > a {
  text-transform: uppercase;
  font-size: 1.4rem;
  white-space: nowrap;
}
#header-tools #header-language > span {
  border: 1px solid;
  padding: 0 5px;
}
#header-tools #header-language > a {
  text-decoration: none;
}
#header-tools #header-language > a:hover {
  text-decoration: underline;
}
#header-tools #header-language .lang-primary {
  order: -1;
}
#header-tools #header-language-tooltip {
  align-self: start;
  position: absolute;
  z-index: 1;
  right: 0;
  margin-top: 40px;
  background-color: var(--color-nearly-black);
  padding: 30px;
  width: 450px;
  max-width: 80vw;
}
#header-tools #header-language-tooltip:not(.visible) {
  display: none;
}
#header-tools #header-language-tooltip,
#header-tools #header-language-tooltip * {
  color: white;
}
#header-tools #header-language-tooltip p {
  margin-bottom: 10px;
}
#header-tools #header-language-tooltip p:first-of-type {
  font-weight: bold;
}
#header-tools #header-language-tooltip p:last-child {
  margin: 0;
}
#header-tools #header-language-tooltip #header-language-tooltip-close {
  position: absolute;
  right: 0;
  top: 0;
  background: url("/vrtx/dist/resources/x1/images/x-small-white.svg") no-repeat center;
  background-size: 14px;
  margin: 5px;
  width: 30px;
  height: 30px;
}
#header-tools #header-language-tooltip #header-language-tooltip-close:hover {
  outline: 1px solid;
}
#header-tools .toggle-search,
#header-tools .sidebar-menu-toggle {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
}
#header-tools .toggle-search:hover,
#header-tools .sidebar-menu-toggle:hover {
  text-decoration: underline;
}
#header-tools .toggle-search::before,
#header-tools .sidebar-menu-toggle::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
@media (max-width: 750px) {
  #header-tools .toggle-search::before,
  #header-tools .sidebar-menu-toggle::before {
    margin: 0;
  }
  #header-tools .toggle-search span,
  #header-tools .sidebar-menu-toggle span {
    position: absolute;
    left: -100000px;
  }
}
#header-tools .toggle-search::before {
  background-image: url("/vrtx/dist/resources/x1/images/search.svg");
}
#header-tools .sidebar-menu-toggle::before {
  background-image: url("/vrtx/dist/resources/x1/images/menu.svg");
  width: 36px;
}
#header-tools .search-form {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
#header-tools .search-form form,
#main-menu .search-form form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
#header-tools .search-form form .search-string-label,
#main-menu .search-form form .search-string-label {
  position: absolute;
  left: -100000px;
}
#header-tools .search-form form input,
#main-menu .search-form form input {
  width: 100%;
}
#header-tools .search-form form button,
#main-menu .search-form form button {
  white-space: nowrap;
}
@media (min-width: 751px) {
  #header-tools .search-form form input,
  #main-menu .search-form form input,
  #header-tools .search-form form button,
  #main-menu .search-form form button {
    padding: 7px 15px;
  }
  #header-tools .search-form form input,
  #main-menu .search-form form input {
    font-size: var(--font-size-large-10);
  }
  #header-tools .search-form form input::placeholder,
  #main-menu .search-form form input::placeholder {
    font-size: var(--font-size-base);
  }
}
body:not(.header-search-visible) #header-tools .search-form {
  display: none;
}
body.header-search-visible #header {
  padding-bottom: 100px;
}
#footer-wrapper {
  margin-bottom: 0;
  padding: 50px 0;
  background-color: var(--color-nearly-black);
  color: white;
  font-size: var(--font-size-small);
}
#footer-wrapper .row,
#footer-wrapper .footer-content {
  display: grid;
  gap: 40px;
}
@media (min-width: 751px) {
  #footer-wrapper .row {
    grid-template-columns: 1fr auto;
  }
}
@media (min-width: 1101px) {
  #footer-wrapper .footer-content {
    grid-auto-flow: column;
  }
}
#footer-wrapper .menu-label {
  font-weight: bold;
  font-size: var(--font-size-large-30);
  line-height: 1.3;
  margin: 0 0 25px 0;
}
@media (max-width: 750px) {
  #footer-wrapper .menu-label {
    font-size: var(--font-size-large-20);
  }
}
#footer-wrapper h2,
#footer-wrapper .menu-label {
  font-size: var(--font-size-base);
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
#footer-wrapper h2:not(:first-child) {
  margin-top: 25px;
}
#footer-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-wrapper p {
  margin: 0;
}
#footer-wrapper img {
  margin: 0;
}
#footer-wrapper a[href*=twitter]::before,
#footer-wrapper a[href*=facebook]::before {
  content: "";
  background: no-repeat center;
  background-size: contain;
  padding: 10px;
  margin-right: 10px;
}
#footer-wrapper a[href*=twitter]::before {
  background-image: url("/vrtx/dist/resources/x1/images/twitter-white.svg");
}
#footer-wrapper a[href*=facebook]::before {
  background-image: url("/vrtx/dist/resources/x1/images/facebook-white.svg");
}
#footer-wrapper #privacy-notification {
  position: fixed;
  z-index: 100;
  left: 0;
  bottom: 0;
  background-color: black;
  width: 100%;
  padding: 15px 50px;
}
#footer-wrapper #privacy-notification:not(.visible) {
  display: none;
}
@media (max-width: 750px) {
  #footer-wrapper #privacy-notification {
    padding: 15px;
  }
}
#footer-wrapper #privacy-notification > div {
  width: fit-content;
  margin: 0 auto;
}
#footer-wrapper #privacy-notification p,
#footer-wrapper #privacy-notification button {
  margin: 0 10px 10px 0;
}
#footer-wrapper #privacy-notification p {
  display: inline-block;
}
#footer-wrapper #privacy-notification button {
  text-align: left;
}
#footer-wrapper #privacy-notification button:hover {
  text-decoration: underline;
}
#footer-wrapper #privacy-notification .buttons {
  display: inline-block;
}
#uio-footer-logo {
  background-color: var(--color-nearly-black);
  padding: 25px 0;
  margin: 0;
}
#uio-footer-logo a {
  display: block;
  background: url("/vrtx/dist/resources/x1/images/uio-logo-white.svg") no-repeat left center;
  background-size: contain;
  width: 250px;
  height: 60px;
}
html[lang=en] #uio-footer-logo a {
  background-image: url("/vrtx/dist/resources/x1/images/uio-logo-en-white.svg");
}
/*
- Imports groups/all consent styles.
- Defines variables and mixins necessary for X.
- Adds necessary styles for X.
*/
.consent-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}
.consent,
.consent-settings {
  background-color: #fff;
  position: fixed;
  width: 800px;
  max-width: 100%;
  top: calc(50% - 200px);
  left: max(0.01px, calc(50% - 400px));
  z-index: 12;
}
.consent:focus,
.consent-settings:focus {
  outline: none;
}
.consent .consent-inner,
.consent-settings .consent-inner,
.consent .consent-settings-inner,
.consent-settings .consent-settings-inner {
  position: relative;
}
.consent .consent-inner h2,
.consent-settings .consent-inner h2,
.consent .consent-settings-inner h2,
.consent-settings .consent-settings-inner h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.consent .consent-inner p,
.consent-settings .consent-inner p,
.consent .consent-settings-inner p,
.consent-settings .consent-settings-inner p,
.consent .consent-inner .consent-main-intro-text,
.consent-settings .consent-inner .consent-main-intro-text,
.consent .consent-settings-inner .consent-main-intro-text,
.consent-settings .consent-settings-inner .consent-main-intro-text,
.consent .consent-inner .consent-settings-main-buttons button,
.consent-settings .consent-inner .consent-settings-main-buttons button,
.consent .consent-settings-inner .consent-settings-main-buttons button,
.consent-settings .consent-settings-inner .consent-settings-main-buttons button,
.consent .consent-inner .consent-main-buttons button,
.consent-settings .consent-inner .consent-main-buttons button,
.consent .consent-settings-inner .consent-main-buttons button,
.consent-settings .consent-settings-inner .consent-main-buttons button {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem;
}
.consent .consent-inner .consent-settings-main-buttons,
.consent-settings .consent-inner .consent-settings-main-buttons,
.consent .consent-settings-inner .consent-settings-main-buttons,
.consent-settings .consent-settings-inner .consent-settings-main-buttons,
.consent .consent-inner .consent-main-buttons,
.consent-settings .consent-inner .consent-main-buttons,
.consent .consent-settings-inner .consent-main-buttons,
.consent-settings .consent-settings-inner .consent-main-buttons {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 18px 0px;
}
.consent .consent-inner .consent-settings-main-buttons button,
.consent-settings .consent-inner .consent-settings-main-buttons button,
.consent .consent-settings-inner .consent-settings-main-buttons button,
.consent-settings .consent-settings-inner .consent-settings-main-buttons button,
.consent .consent-inner .consent-main-buttons button,
.consent-settings .consent-inner .consent-main-buttons button,
.consent .consent-settings-inner .consent-main-buttons button,
.consent-settings .consent-settings-inner .consent-main-buttons button {
  width: auto;
  max-width: none;
  padding: 9px 29px 8px 29px;
  text-align: center;
  width: 200px;
}
.consent .consent-inner p {
  margin: 0;
}
.consent h1,
#vrtx-frontpage .consent h1 {
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.6rem;
  margin: 0;
}
.consent-settings-lang,
.consent-lang {
  color: var(--color-neutral-tint-20, rgba(0, 0, 0, 0.7));
  align-self: end;
}
.consent-settings-lang {
  margin-bottom: -60px;
}
.consent-a .consent-inner {
  display: flex;
  padding: 60px 80px 80px 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
}
.consent-b {
  top: auto;
  bottom: 0;
  width: 100%;
  left: 0;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}
.consent-b .consent-inner {
  max-width: 1440px;
  min-width: 1050px;
  margin: 0 auto;
  padding: 40px 20px 60px 220px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.consent-b .consent-inner .consent-main-buttons {
  padding: 0;
}
.consent-b .consent-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 690px;
}
.consent-b .consent-inner .consent-main-buttons,
.consent-b .consent-inner > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.consent-b .consent-lang {
  display: none;
}
@media (min-width: 900px) and (max-height: 850px) {
  .consent-a .consent-inner {
    display: flex;
    padding: 20px 40px 40px 40px;
    gap: 10px;
  }
}
.consent-settings {
  position: fixed;
  width: 80%;
  height: 80vh;
  top: 10vh;
  left: 10%;
  max-width: none;
  overflow-y: auto;
  overflow-x: hidden;
}
.consent-settings .consent-settings-intro {
  margin: 20px 0 0 0;
  max-width: 690px;
}
.consent-settings .consent-settings-inner {
  display: flex;
  padding: 40px 50px 20px 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.consent-settings .consent-settings-inner > div > h3:first-child {
  display: none;
}
.consent-settings .consent-settings-inner .consent-settings-type {
  padding: 20px;
  background-color: var(--colorNeutralTint95, rgba(0, 0, 0, 0.05));
  width: 100%;
}
.consent-settings .consent-settings-inner .consent-settings-type h2 {
  margin-bottom: 20px;
}
.consent-settings .consent-settings-inner .consent-settings-type h3.accordion {
  font-size: 1.8rem;
  line-height: 2.7rem;
  border-color: rgba(0, 0, 0, 0.2);
}
.consent-settings .consent-settings-inner .consent-settings-type p {
  margin: 20px 0;
  max-width: 690px;
}
.consent-settings .consent-settings-inner .consent-settings-type .ui-accordion.ui-widget {
  margin: 20px 0;
}
.consent-settings .consent-settings-inner .consent-settings-main-buttons {
  margin: -20px -50px;
  padding: 20px 50px;
  position: sticky;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: calc(100% + 100px);
  box-shadow: 0 0 10px 10px #ffffff;
}
body.consent-settings-opened {
  overflow: hidden;
}
.consent-settings-inner li {
  background-color: #fff;
  padding: 10px 20px;
}
.consent-settings-inner li:before {
  content: "";
}
.consent-settings-inner li a {
  margin-left: 30px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.consent-settings-inner li a:hover {
  text-decoration: underline;
}
.consent-settings-inner li a:before {
  content: " ";
  height: 18px;
  width: 18px;
  background: transparent url("../images/checkbox-unchecked.svg") no-repeat center;
  background-size: 18px auto;
  margin-left: -30px;
  position: absolute;
  top: 6px;
  left: 0;
}
.consent-settings-inner li a.checked:before {
  background-image: url("/vrtx/dist/resources/x1/images/checkbox-checked.svg");
}
.consent-settings-inner li a.disabled {
  color: #666;
}
.consent-settings-inner li a.disabled:hover {
  cursor: default;
  text-decoration: none;
}
.consent-settings-inner li a.disabled:before {
  opacity: 0.4;
}
.consent-settings-inner li a.disabled {
  color: #666;
}
.consent-settings-inner li a:before {
  top: 4px;
}
body#vrtx-frontpage .consent-settings .consent-settings-inner h1,
.consent-settings .consent-settings-inner h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 4.9rem;
}
body#vrtx-frontpage .consent-settings .consent-settings-inner .consent-settings-type h2,
.consent-settings .consent-settings-inner .consent-settings-type h2 {
  font-size: 2.8rem;
  line-height: 3.6rem;
}
body#vrtx-frontpage .consent-settings .consent-settings-inner .consent-settings-type h3.accordion,
.consent-settings .consent-settings-inner .consent-settings-type h3.accordion {
  font-size: 1.8rem;
  line-height: 2.7rem;
  border-color: rgba(0, 0, 0, 0.2);
}
.consent h1,
#vrtx-frontpage .consent h1,
body#vrtx-frontpage .consent-settings h1,
.consent-settings h1 {
  opacity: 1;
  transform: none;
  font-family: var(--mainFontStack);
  color: var(--textColor);
  margin: 0;
  min-width: 0;
  height: auto;
  visibility: visible;
  position: static !important;
}
#vrtx-frontpage .consent h1,
#vrtx-person .consent h1,
#vrtx-course-description .consent h1,
#vrtx-program-frontpage .consent h1,
#vrtx-structured-article .consent h1,
#vrtx-tagview .consent h1,
#vrtx-frontpage .consent-settings h1,
#vrtx-person .consent-settings h1,
#vrtx-course-description .consent-settings h1,
#vrtx-program-frontpage .consent-settings h1,
#vrtx-structured-article .consent-settings h1,
#vrtx-tagview .consent-settings h1 {
  margin: 0;
  padding: 0;
  display: block;
  max-width: none;
}
.consent-settings,
.consent-a {
  border: 1px solid #888;
}
@media only screen and (max-width: 1100px) {
  .consent-settings .consent-settings-inner,
  .consent-b .consent-settings-inner,
  .consent-settings .consent-inner,
  .consent-b .consent-inner {
    max-width: 100%;
    min-width: auto;
  }
  .consent-settings-lang {
    margin-bottom: -20px;
  }
  .consent-b .consent-inner {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 750px) {
  body.consent-settings-opened-mobile {
    overflow: hidden;
  }
  body.consent-settings-opened-mobile .consent {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 65px);
    top: 65px;
  }
  .consent-settings {
    width: 100%;
    height: calc(100vh - 65px);
    top: 65px;
    left: 0;
  }
  .consent-settings .consent-settings-inner {
    padding: 30px 15px 20px 15px;
  }
  .consent-settings .consent-settings-inner .consent-settings-main-buttons {
    gap: 15px;
  }
  #vrtx-frontpage .consent h1,
  .consent h1 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 2.6rem;
  }
  .consent-settings .consent-settings-inner h1,
  body#vrtx-frontpage .consent-settings .consent-settings-inner h1,
  .consent-settings .consent-settings-inner .consent-settings-type h2,
  body#vrtx-frontpage .consent-settings .consent-settings-inner .consent-settings-type h2 {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 2.6rem;
  }
  .consent-settings .consent-settings-inner .consent-settings-main-buttons,
  .consent .consent-inner .consent-main-buttons {
    flex-direction: column;
  }
  .consent-settings-lang {
    margin-bottom: -66px;
    position: relative;
    z-index: 2;
  }
  #vrtx-frontpage .consent h1,
  #vrtx-person .consent h1,
  #vrtx-course-description .consent h1,
  #vrtx-program-frontpage .consent h1,
  #vrtx-structured-article .consent h1,
  #vrtx-tagview .consent h1,
  #vrtx-frontpage .consent-settings h1,
  #vrtx-person .consent-settings h1,
  #vrtx-course-description .consent-settings h1,
  #vrtx-program-frontpage .consent-settings h1,
  #vrtx-structured-article .consent-settings h1,
  #vrtx-tagview .consent-settings h1 {
    padding-right: 100px;
  }
  .consent-title,
  .consent-settings-title {
    padding-right: 100px;
  }
  .consent .consent-inner {
    padding: 30px 15px 100px 15px;
    align-items: start;
  }
  .consent .consent-inner .consent-main-buttons {
    gap: 15px;
    padding: 0;
  }
  .consent .consent-inner .consent-main-buttons,
  .consent .consent-inner .consent-main-buttons button {
    width: 100%;
  }
  body .consent .consent-inner a,
  body .consent-settings .consent-inner a,
  body .consent .consent-settings-inner a,
  body .consent-settings .consent-settings-inner a,
  body .consent .consent-inner p,
  body .consent-settings .consent-inner p,
  body .consent .consent-settings-inner p,
  body .consent-settings .consent-settings-inner p,
  body .consent .consent-inner .consent-settings-intro,
  body .consent-settings .consent-inner .consent-settings-intro,
  body .consent .consent-settings-inner .consent-settings-intro,
  body .consent-settings .consent-settings-inner .consent-settings-intro,
  body .consent .consent-inner .consent-main-intro-text,
  body .consent-settings .consent-inner .consent-main-intro-text,
  body .consent .consent-settings-inner .consent-main-intro-text,
  body .consent-settings .consent-settings-inner .consent-main-intro-text,
  body .consent .consent-inner .consent-settings-main-buttons button,
  body .consent-settings .consent-inner .consent-settings-main-buttons button,
  body .consent .consent-settings-inner .consent-settings-main-buttons button,
  body .consent-settings .consent-settings-inner .consent-settings-main-buttons button,
  body .consent .consent-inner .consent-main-buttons button,
  body .consent-settings .consent-inner .consent-main-buttons button,
  body .consent .consent-settings-inner .consent-main-buttons button,
  body .consent-settings .consent-settings-inner .consent-main-buttons button {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .consent .consent-inner {
    flex-direction: column;
    gap: 15px;
  }
  .consent .consent-inner > div:last-child {
    width: 100%;
  }
  .consent .consent-inner .consent-lang {
    display: inline;
    margin-bottom: -35px;
    position: relative;
    z-index: 1;
  }
}
.consent-overlay {
  z-index: 100;
}
.consent,
.consent-settings {
  z-index: 101;
}
.consent .consent-inner .consent-main-buttons,
.consent-settings .consent-settings-inner .consent-settings-main-buttons {
  display: grid;
  gap: 10px 20px;
}
.consent .consent-inner .consent-main-buttons .button-large,
.consent-settings .consent-settings-inner .consent-settings-main-buttons .button-large {
  width: auto;
  padding: 10px 15px;
}
@media (min-width: 751px) {
  .consent .consent-inner .consent-main-buttons .button-large,
  .consent-settings .consent-settings-inner .consent-settings-main-buttons .button-large {
    min-width: 200px;
  }
}
.consent .consent-inner .consent-main-buttons .button-large::after,
.consent-settings .consent-settings-inner .consent-settings-main-buttons .button-large::after {
  display: none;
}
.consent .consent-inner .consent-main-buttons .button-large:hover,
.consent-settings .consent-settings-inner .consent-settings-main-buttons .button-large:hover {
  background-color: black;
}
.consent .consent-inner .consent-main-buttons {
  grid-template-columns: 1fr 1fr;
}
.consent-settings .consent-settings-inner .consent-settings-main-buttons {
  grid-template-columns: max-content max-content;
}
.consent-settings .consent-settings-inner ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 750px) {
  .consent-settings .consent-settings-inner .consent-settings-type table * {
    font-size: var(--font-size-tiny);
  }
}
.consent-settings .consent-settings-inner .consent-settings-type table thead {
  background: none;
}
.consent-settings .consent-settings-inner .consent-settings-type table thead th {
  white-space: nowrap;
}
.consent-settings .consent-settings-inner .consent-settings-type table p {
  margin: 0;
}
/*
(uio-version replaced Oct. 2024)
*/
#crisis-banner,
#crisis-banner-demo {
  background-color: #444;
  padding: 30px 15px;
  font-size: var(--font-size-base);
}
#crisis-banner *,
#crisis-banner-demo * {
  color: white;
}
#crisis-banner p,
#crisis-banner-demo p {
  margin: 0;
}
#crisis-banner .crisis-banner-inner,
#crisis-banner-demo .crisis-banner-inner {
  text-align: center;
}
#crisis-banner .crisis-banner-inner::before,
#crisis-banner-demo .crisis-banner-inner::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/alert-2-white.svg") no-repeat center;
  background-size: contain;
  padding-left: 24px;
  margin-right: 5px;
}
#crisis-banner {
  position: relative;
  z-index: 10;
}
.sidebar-menu-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.5s;
}
.sidebar-menu-wrapper .sidebar-menu {
  padding-bottom: 50px;
  transition: all 0.5s;
}
.sidebar-menu-wrapper .sidebar-search {
  display: none;
  padding-top: 10px;
  margin-bottom: 40px;
}
.sidebar-menu-wrapper .sidebar-global-menu {
  padding: 25px 0;
  margin: 0 auto;
  border: 1px solid;
  border-width: 1px 0;
  max-width: 600px;
}
@media (min-width: 751px) {
  .sidebar-menu-wrapper .sidebar-global-menu {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
.sidebar-menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu-wrapper a {
  display: block;
  text-decoration: none;
  padding: 10px 30px 10px 0;
  transition: all 0.3s, font-size 0s;
}
.sidebar-menu-wrapper a:hover {
  text-decoration: none;
  background: var(--color-neutral-tint-95);
  padding-right: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 751px) {
  .sidebar-menu-wrapper .vrtx-tab-menu {
    flex-grow: 1;
  }
  .sidebar-menu-wrapper .vrtx-tab-menu a {
    font-size: var(--font-size-large-10);
  }
}
.sidebar-menu-wrapper #supplementary-menu {
  display: none;
}
@media (max-width: 750px) {
  .sidebar-menu-wrapper #supplementary-menu {
    margin-top: 20px;
  }
  .sidebar-menu-wrapper #supplementary-menu a {
    font-size: var(--font-size-small);
  }
}
body:not(.sidebar-menu-wrapper-visible) .sidebar-menu-wrapper {
  visibility: hidden;
  height: 0;
}
body.sidebar-menu-wrapper-visible .sidebar-menu-wrapper {
  height: var(--open);
}
#global-menu ul {
  list-style: none;
  padding: 0;
}
#global-menu .sidebar-services-language-menu {
  margin: 0;
}
#global-menu .sidebar-services-language-menu .language a {
  display: none;
}
#global-sub-menu .inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  max-width: var(--width-total-max);
}
@media (max-width: 750px) {
  #global-sub-menu .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#global-sub-menu .vrtx-subfolder-menu {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
  padding-bottom: 20px;
}
#global-sub-menu .vrtx-subfolder-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#global-sub-menu .vrtx-subfolder-menu ul,
#global-sub-menu .vrtx-subfolder-menu ul li {
  display: inline;
  margin-right: 10px;
}
#global-sub-menu .vrtx-subfolder-menu a {
  text-decoration: none;
}
#global-sub-menu .vrtx-subfolder-menu a:hover {
  text-decoration: underline;
}
.the-frontpage #global-sub-menu {
  display: none;
}
#left-menu-same-level-folders {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
  margin-bottom: 20px;
}
#left-menu-same-level-folders.hidden {
  display: none;
}
#left-menu-same-level-folders #left-menu-title {
  display: none;
}
#left-menu-same-level-folders ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#left-menu-same-level-folders ul,
#left-menu-same-level-folders ul li {
  display: inline;
}
#left-menu-same-level-folders ul .vrtx-ancestor {
  display: none;
}
#left-menu-same-level-folders ul .vrtx-parent > a::after {
  content: ":";
}
#left-menu-same-level-folders ul .vrtx-marked {
  font-weight: bold;
  color: black;
}
#left-menu-same-level-folders a {
  margin-right: 10px;
  text-decoration: none;
}
#left-menu-same-level-folders a:hover {
  text-decoration: underline;
}
#breadcrumbs {
  font-size: var(--font-size-tiny);
}
#breadcrumbs #vrtx-breadcrumb-wrapper {
  margin-bottom: 20px;
}
#breadcrumbs .vrtx-breadcrumb-delimiter,
#breadcrumbs .vrtx-breadcrumb-active {
  display: none;
}
#breadcrumbs span {
  display: inline-flex;
}
#breadcrumbs span::after {
  content: "";
  flex-shrink: 0;
  background: url("/vrtx/dist/resources/x1/images/chevron.svg") no-repeat center;
  width: 15px;
  margin-left: 5px;
  opacity: 0.6;
}
@media (max-width: 750px) {
  #breadcrumbs span:not(.vrtx-breadcrumb-before-active) {
    display: none;
  }
}
#breadcrumbs a {
  color: var(--color-neutral-tint-25);
  text-decoration: none;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}
.main .vrtx-subfolder-menu {
  background: var(--color-neutral-tint-95);
  padding: 15px;
  margin-bottom: 40px;
  column-width: 250px;
  column-count: auto;
}
.main .vrtx-subfolder-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main .vrtx-subfolder-menu ul ul {
  padding-left: 30px;
}
.main .vrtx-subfolder-menu .menu-title {
  column-span: all;
  font-weight: bold;
  margin-bottom: 5px;
}
.main .vrtx-subfolder-menu a {
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}
.main .vrtx-subfolder-menu a:hover {
  text-decoration: underline;
}
.main .vrtx-subfolder-menu a::before {
  content: "";
  flex-shrink: 0;
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 18px;
  height: 1.5em;
}
.main .row-all-colored .vrtx-subfolder-menu {
  background: white;
}
.navigation-links ul,
.navigation-links ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space);
}
@media (min-width: 751px) {
  .navigation-links ul,
  .navigation-links ol {
    grid-template-columns: 1fr 1fr;
  }
}
.navigation-links li {
  display: inline-block;
  position: relative;
  padding: 15px 60px 15px 15px;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
  background-color: var(--color-neutral-tint-95);
  border-color: transparent;
}
.navigation-links li,
.navigation-links li::after {
  transition: all 0.3s;
}
.navigation-links li::after {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 15px;
}
.navigation-links li:focus {
  outline-offset: 4px;
}
.navigation-links li:hover::after {
  right: 5px;
}
.navigation-links li a {
  text-decoration: none;
}
.navigation-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.navigation-links li figure {
  margin-bottom: 10px;
}
.navigation-links li p {
  margin: 0;
}
.navigation-links li strong {
  display: block;
  margin-bottom: 5px;
}
.navigation-links li br {
  display: none;
}
@media (min-width: 1101px) {
  .navigation-links.navigation-links-three-columns ul,
  .navigation-links.navigation-links-three-columns ol {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 751px) {
  .navigation-links.navigation-links-one-column ul,
  .navigation-links.navigation-links-one-column ol {
    grid-template-columns: none;
    max-width: var(--width-text-max);
  }
}
.navigation-links.numbered ul,
.navigation-links.numbered ol {
  counter-reset: numbered-nav-links;
}
.navigation-links.numbered li {
  counter-increment: numbered-nav-links;
  position: relative;
  padding-left: 6rem;
}
.navigation-links.numbered li::before {
  content: counter(numbered-nav-links);
  position: absolute;
  left: 20px;
  font-size: var(--font-size-large-20);
  line-height: 0.9;
}
.row-all-colored .navigation-links li {
  background-color: white;
}
.main .navigation-links .vrtx-subfolder-menu {
  background: none;
  padding: 0;
  columns: initial;
}
.main .navigation-links .vrtx-subfolder-menu .menu-title {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
}
.main .navigation-links .vrtx-subfolder-menu li {
  overflow: initial;
}
.main .navigation-links .vrtx-subfolder-menu a::before {
  background: none;
  width: 100%;
  height: 100%;
}
.main .navigation-links .vrtx-subfolder-menu a:hover {
  text-decoration: none;
}
span.vrtx-toc-header {
  font-weight: bold;
}
#toc {
  margin-bottom: 50px;
}
.vrtx-toc-only-one-level #toc ul ul {
  display: none;
}
a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}
.mixin-arrow-link {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
.mixin-arrow-link:hover {
  text-decoration: underline;
}
.mixin-arrow-link::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  padding-right: 24px;
  margin-right: 10px;
}
.read-more,
.vrtx-more a,
.vrtx-read-more,
.all-messages {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
.read-more:hover,
.vrtx-more a:hover,
.vrtx-read-more:hover,
.all-messages:hover {
  text-decoration: underline;
}
.read-more::before,
.vrtx-more a::before,
.vrtx-read-more::before,
.all-messages::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  padding-right: 24px;
  margin-right: 10px;
}
.vrtx-more {
  margin-top: 25px;
}
.mixin-button-link {
  display: inline-block;
  position: relative;
  padding: 15px 60px 15px 15px;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
}
.mixin-button-link,
.mixin-button-link::after {
  transition: all 0.3s;
}
.mixin-button-link::after {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 15px;
}
.mixin-button-link:focus {
  outline-offset: 4px;
}
.mixin-button-link:hover::after {
  right: 5px;
}
.button,
.button-loud,
.button-large {
  display: inline-block;
  position: relative;
  padding: 15px 60px 15px 15px;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
}
.button,
.button-loud,
.button-large,
.button::after,
.button-loud::after,
.button-large::after {
  transition: all 0.3s;
}
.button::after,
.button-loud::after,
.button-large::after {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 15px;
}
.button:focus,
.button-loud:focus,
.button-large:focus {
  outline-offset: 4px;
}
.button:hover::after,
.button-loud:hover::after,
.button-large:hover::after {
  right: 5px;
}
.button-loud,
.button-large {
  background-color: black;
  border-color: transparent;
  color: white;
}
.button-loud::after,
.button-large::after {
  background-image: url("/vrtx/dist/resources/x1/images/arrow-white.svg");
}
.mixin-prev-button,
.mixin-next-button {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}
.mixin-prev-button {
  transform: rotate(180deg);
}
input,
button,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: 1px solid;
  padding: 5px 10px;
  margin: 0;
  max-width: 100%;
}
input:focus,
button:focus,
select:focus {
  outline-offset: 4px;
}
input:hover,
button:hover,
select:hover {
  background-color: var(--color-neutral-tint-95);
}
input {
  border-radius: 0;
}
select,
button,
input[type=submit] {
  border-radius: var(--radius);
}
select:not(:disabled),
button:not(:disabled),
input[type=submit]:not(:disabled),
input[type=radio]:not(:disabled),
input[type=checkbox]:not(:disabled) {
  cursor: pointer;
}
input[type=radio],
input[type=checkbox] {
  padding: 0;
}
select {
  appearance: none;
  background: url("/vrtx/dist/resources/x1/images/chevron-down.svg") no-repeat center right 10px;
  padding-right: 30px;
  max-width: 100%;
}
textarea {
  max-width: 100%;
}
.vrtx-social-list {
  list-style: none;
  padding: 0;
}
.vrtx-social-list li {
  display: inline-block;
  margin: 0 15px 15px 0;
}
.vrtx-social-list a {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-indent: -100000px;
  transition: all 0.3s;
}
.vrtx-social-list a:hover {
  opacity: 0.6;
}
.vrtx-social-list a.facebook,
.vrtx-social-list a[href*=facebook] {
  background-image: url("/vrtx/dist/resources/x1/images/social/facebook.svg");
}
.vrtx-social-list a.instagram,
.vrtx-social-list a[href*=instagram] {
  background-image: url("/vrtx/dist/resources/x1/images/social/instagram.svg");
}
.vrtx-social-list a.linkedin,
.vrtx-social-list a[href*=linkedin] {
  background-image: url("/vrtx/dist/resources/x1/images/social/linkedin.svg");
}
.vrtx-social-list a.pinterest,
.vrtx-social-list a[href*=pinterest] {
  background-image: url("/vrtx/dist/resources/x1/images/social/pinterest.svg");
}
.vrtx-social-list a.snapchat,
.vrtx-social-list a[href*=snapchat] {
  background-image: url("/vrtx/dist/resources/x1/images/social/snapchat.svg");
}
.vrtx-social-list a.tiktok,
.vrtx-social-list a[href*=tiktok] {
  background-image: url("/vrtx/dist/resources/x1/images/social/tiktok.svg");
}
.vrtx-social-list a.tripadvisor,
.vrtx-social-list a[href*=tripadvisor] {
  background-image: url("/vrtx/dist/resources/x1/images/social/tripadvisor.svg");
}
.vrtx-social-list a.twitter,
.vrtx-social-list a[href*=twitter] {
  background-image: url("/vrtx/dist/resources/x1/images/social/x.svg");
}
.vrtx-social-list a.x,
.vrtx-social-list a[href*='x.com'] {
  background-image: url("/vrtx/dist/resources/x1/images/social/x.svg");
}
.vrtx-social-list a.youtube,
.vrtx-social-list a[href*=youtube] {
  background-image: url("/vrtx/dist/resources/x1/images/social/youtube.svg");
}
.vrtx-social-list a.bluesky,
.vrtx-social-list a[href*=bluesky] {
  background-image: url("/vrtx/dist/resources/x1/images/social/bluesky.svg");
}
.vrtx-social-list a.mail {
  background-image: url("/vrtx/dist/resources/x1/images/social/mail.svg");
}
.link-list li {
  position: relative;
}
.link-list li:has(a) {
  list-style: none;
}
.link-list li:has(a)::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: -30px;
  width: 20px;
  height: 1.5em;
}
.link-list li a {
  font-weight: bold;
  text-decoration: none;
}
.link-list li a:hover {
  text-decoration: underline;
}
body {
  font-family: helvetica, sans-serif;
  font-size: var(--font-size-base);
  /*
  Word breaking

  March 2024 update: Excluding hyphens, as they are too eager,
  and the limit-chars moderation only works in Chrome/Edge.
  Overflow-wrap will break words if no space, without hyphen unfortunately.

  https://www.epinova.no/en/folg-med/blog/2016/hyphenate-only-overflowing-words/
  https://github.com/w3c/csswg-drafts/issues/616
  */
  overflow-wrap: anywhere;
  /*
  Limit hyphenation to words of:
  <minimum total chars> <minimum chars before break> <minimum chars after break>
  Minimum total chars set as high as possible (best guess).
  Minimum chars before and after can't be too high, or risk not breaking where gramatically correct.
  Only supported in Chrome (incl Edge) on desktop as of Jan 2024. (Not iOS. Chrome on iOS = webkit).
  */
}
@-moz-document url-prefix() {
  body {
    font-family: arial, sans-serif;
  }
}
table {
  overflow-wrap: initial;
}
sub,
sup {
  vertical-align: baseline;
  position: relative;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre {
  background-color: var(--color-neutral-tint-95);
  border: 2px dashed var(--color-neutral-tint-80);
  padding: 20px;
  margin: 0 0 25px 0;
  font-family: monospace;
  font-size: var(--font-size-small);
  overflow: auto;
}
blockquote {
  margin: 0;
}
blockquote::before {
  content: "กฐ";
  display: block;
  font-size: 4em;
  line-height: 1;
  height: 0.5em;
}
blockquote p:first-child {
  font-style: italic;
  font-size: var(--font-size-large-10);
}
cite {
  font-style: normal;
}
p,
ul,
ol,
dl {
  margin: 0 0 25px 0;
}
ul,
ol {
  padding-left: 30px;
}
ul.lettered,
ol.lettered {
  list-style: upper-alpha;
}
ul ul,
ol ol {
  margin-bottom: 0;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0;
}
h1 {
  font-size: var(--font-size-large-40);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  h1 {
    font-size: var(--font-size-large-30);
    line-height: 1.3;
  }
}
h1.hidden {
  position: absolute;
  left: -100000px;
}
h2,
.mixin-h2 {
  font-weight: bold;
  font-size: var(--font-size-large-30);
  line-height: 1.3;
  margin: 0 0 25px 0;
}
@media (max-width: 750px) {
  h2,
  .mixin-h2 {
    font-size: var(--font-size-large-20);
  }
}
h3,
.mixin-h3 {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
}
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}
.vrtx-introduction {
  margin-bottom: 50px;
  font-size: var(--font-size-large-10);
}
@media (min-width: 751px) {
  .vrtx-introduction {
    font-size: var(--font-size-large-20);
  }
}
#main {
  margin-bottom: 100px;
}
@media (min-width: 751px) {
  #main {
    min-height: 500px;
  }
}
.grid-container {
  margin-bottom: calc(3 * var(--space));
}
.grid-container.row-all-colored {
  background: var(--color-neutral-tint-95);
  padding-top: calc(2 * var(--space));
  padding-bottom: calc(2 * var(--space));
  margin-bottom: calc(2 * var(--space));
}
.grid-container.no-space-bottom,
.grid-container.no-space-bottom.row-all-colored {
  padding-bottom: 0;
  margin-bottom: 0;
}
body#vrtx-frontpage.vrtx-mode-edit #main .grid-container {
  overflow: visible;
}
.column-wrapper {
  display: grid;
  gap: var(--space);
}
@media (min-width: 1101px) {
  .column-wrapper.half-half {
    grid-template-columns: 1fr 1fr;
  }
  .column-wrapper.narrow-wide {
    grid-template-columns: 2fr 3fr;
  }
  .column-wrapper.wide-narrow {
    grid-template-columns: 3fr 2fr;
  }
  .column-wrapper.triple {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.column-wrapper > *:has(pre) {
  min-width: 0;
}
.vrtx-frontpage-box.running-text {
  max-width: var(--width-text-max);
}
@media (min-width: 1101px) {
  #vrtx-article-listing #vrtx-content,
  #vrtx-event-listing #vrtx-content,
  #vrtx-structured-project #vrtx-content,
  #vrtx-research-group-listing #vrtx-content,
  #vrtx-project-listing #vrtx-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
#vrtx-article-listing #vrtx-additional-content,
#vrtx-event-listing #vrtx-additional-content,
#vrtx-structured-project #vrtx-additional-content,
#vrtx-research-group-listing #vrtx-additional-content,
#vrtx-project-listing #vrtx-additional-content {
  background: var(--color-neutral-tint-95);
  padding: 30px;
}
@media (min-width: 1101px) {
  #vrtx-article-listing #vrtx-additional-content,
  #vrtx-event-listing #vrtx-additional-content,
  #vrtx-structured-project #vrtx-additional-content,
  #vrtx-research-group-listing #vrtx-additional-content,
  #vrtx-project-listing #vrtx-additional-content {
    flex-shrink: 0;
    flex-basis: 33%;
    margin-left: 10%;
  }
}
@media (max-width: 1100px) {
  #vrtx-article-listing #vrtx-additional-content,
  #vrtx-event-listing #vrtx-additional-content,
  #vrtx-structured-project #vrtx-additional-content,
  #vrtx-research-group-listing #vrtx-additional-content,
  #vrtx-project-listing #vrtx-additional-content {
    margin-top: 50px;
    max-width: var(--width-text-max);
  }
}
@media (min-width: 751px) {
  .vrtx-resource,
  .vrtx-feed li,
  .vrtx-event-component-item,
  .vrtx-event-component-main {
    display: flex;
    gap: var(--space);
  }
  .vrtx-resource .vrtx-list-item-content,
  .vrtx-feed li .vrtx-list-item-content,
  .vrtx-event-component-item .vrtx-list-item-content,
  .vrtx-event-component-main .vrtx-list-item-content {
    flex-basis: var(--width-text-max);
  }
  .vrtx-resources .vrtx-image,
  .vrtx-feed .vrtx-image,
  .vrtx-event-component-picture {
    flex-shrink: 0;
    flex-basis: 350px;
    max-width: 47%;
  }
  #vrtx-collection .vrtx-resource {
    display: revert;
    max-width: var(--width-text-max);
  }
}
.vrtx-feed .items,
.vrtx-event-component {
  display: grid;
  gap: var(--space);
  list-style: none;
  padding: 0;
  margin: 0;
}
.vrtx-feed .item-title,
.vrtx-event-component-title.summary {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
  display: block;
  width: fit-content;
  text-decoration: none;
}
.vrtx-feed .item-title:hover,
.vrtx-event-component-title.summary:hover {
  text-decoration: underline;
}
.vrtx-feed li p,
.vrtx-event-component-item p,
.vrtx-feed li ul,
.vrtx-event-component-item ul,
.vrtx-feed li ol,
.vrtx-event-component-item ol {
  margin-bottom: 15px;
}
.vrtx-image img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.vrtx-metadatasets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.vrtx-metadatasets > * {
  background-color: var(--color-neutral-tint-90);
  border-radius: var(--radius);
  font-size: var(--font-size-tiny);
  padding: 5px 10px;
}
.vrtx-time-and-place-container {
  margin-bottom: 15px;
}
.vrtx-event-component-misc {
  margin-bottom: 15px;
}
.vrtx-date-icon {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--color-neutral-tint-opaque-90);
  padding: 15px 20px;
  width: fit-content;
  height: fit-content;
  margin-bottom: 15px;
  font-size: var(--font-size-large-10);
  line-height: 1.2;
}
.vrtx-date-icon .vrtx-date-icon-day,
.vrtx-date-icon .vrtx-date-icon-month {
  display: block;
  text-align: center;
  white-space: nowrap;
}
.vrtx-date-icon .vrtx-date-icon-day {
  font-weight: bold;
}
.vrtx-date-icon .vrtx-date-icon-day .vrtx-date-icon-punctuation {
  display: none;
}
.vrtx-date-icon .vrtx-date-icon-month {
  font-size: var(--font-size-small);
}
.vrtx-date-icon .vrtx-date-icon-today + .vrtx-date-icon-month {
  display: none;
}
.vrtx-date-icon .vrtx-date-icon-separator {
  margin: 0 5px;
}
.vrtx-event-component-item.with-picture {
  position: relative;
}
.vrtx-event-component-item.with-picture .vrtx-date-icon {
  position: absolute;
}
.vrtx-feed .feed-title {
  display: block;
  width: fit-content;
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
}
.vrtx-feed .authors,
.vrtx-feed .published-date {
  display: block;
  font-size: var(--font-size-small);
  margin-bottom: 15px;
}
.vrtx-feed .authors {
  font-weight: bold;
}
.vrtx-feed .published-date {
  color: var(--color-neutral-tint-25);
}
.vrtx-feed .authors + .published-date {
  margin-top: -15px;
}
[class*=column-feed] .vrtx-feed li,
[class*=column-feed] .vrtx-event-component-item,
[class*=column-feed] .vrtx-event-component-main {
  display: revert;
}
[class*=column-feed] .vrtx-image,
[class*=column-feed] .vrtx-event-component-picture {
  max-width: none;
}
@media (min-width: 751px) {
  .two-column-feed .vrtx-feed .items,
  .two-column-feed .vrtx-event-component {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 751px) {
  .three-column-feed .vrtx-feed .items,
  .three-column-feed .vrtx-event-component {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1101px) {
  .three-column-feed .vrtx-feed .items,
  .three-column-feed .vrtx-event-component {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 751px) {
  .four-column-feed .vrtx-feed .items,
  .four-column-feed .vrtx-event-component {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1101px) {
  .four-column-feed .vrtx-feed .items,
  .four-column-feed .vrtx-event-component {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.featured-feed-item .vrtx-feed li:first-child {
  grid-column: 1/-1;
}
@media (min-width: 751px) {
  .featured-feed-item .vrtx-feed li:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .featured-feed-item .vrtx-feed li:first-child .vrtx-image {
    display: grid;
  }
  .featured-feed-item .vrtx-feed li:first-child .vrtx-image img {
    margin: 0;
    height: 100%;
  }
  .featured-feed-item .vrtx-feed li:first-child .vrtx-list-item-content {
    align-self: center;
  }
}
@media (min-width: 1101px) {
  .featured-feed-item .vrtx-feed li:first-child .item-title {
    font-size: var(--font-size-large-30);
  }
}
.featured-feed-item .vrtx-event-component-item:first-child {
  grid-column: 1/-1;
}
@media (min-width: 751px) {
  .featured-feed-item .vrtx-event-component-item:first-child .vrtx-event-component-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .featured-feed-item .vrtx-event-component-item:first-child .vrtx-event-component-picture {
    display: grid;
  }
  .featured-feed-item .vrtx-event-component-item:first-child .vrtx-event-component-picture img {
    margin: 0;
    height: 100%;
  }
  .featured-feed-item .vrtx-event-component-item:first-child .vrtx-list-item-content {
    align-self: center;
  }
}
@media (min-width: 1101px) {
  .featured-feed-item .vrtx-event-component-item:first-child .vrtx-event-component-title.summary {
    font-size: var(--font-size-large-30);
  }
}
.vrtx-resources .vrtx-resource {
  margin-bottom: calc(2 * var(--space));
}
.vrtx-resources .publish-date,
.vrtx-resources .published-date,
.vrtx-resources .lastModified {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
  margin-bottom: 15px;
}
.vrtx-resources .vrtx-title {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
}
.vrtx-resources .vrtx-title a {
  text-decoration: none;
}
.vrtx-resources .vrtx-title a:hover {
  text-decoration: underline;
}
.vrtx-resources p {
  margin: 0;
}
@media (min-width: 751px) {
  body#vrtx-article-listing h1,
  body#vrtx-collection h1,
  body#vrtx-tagview h1,
  body#vrtx-project-listing h1,
  body#vrtx-research-group-listing h1 {
    margin-bottom: 50px;
  }
  body#vrtx-article-listing .vrtx-introduction,
  body#vrtx-collection .vrtx-introduction,
  body#vrtx-tagview .vrtx-introduction,
  body#vrtx-project-listing .vrtx-introduction,
  body#vrtx-research-group-listing .vrtx-introduction {
    margin-top: -30px;
  }
}
body#vrtx-tagview .vrtx-resources,
body#vrtx-metadataview .vrtx-resources,
body#vrtx-research-group-listing .vrtx-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  row-gap: calc(2 * var(--space));
  column-gap: var(--space);
  margin-bottom: calc(2 * var(--space));
}
body#vrtx-tagview .vrtx-resources .vrtx-resource,
body#vrtx-metadataview .vrtx-resources .vrtx-resource,
body#vrtx-research-group-listing .vrtx-resources .vrtx-resource {
  display: revert;
  margin: 0;
}
body#vrtx-tagview .vrtx-resources .vrtx-image,
body#vrtx-metadataview .vrtx-resources .vrtx-image,
body#vrtx-research-group-listing .vrtx-resources .vrtx-image {
  max-width: none;
}
#vrtx-uh-exchange-listing #main h2 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.vrtx-messages-main-content-wrapper .vrtx-resource,
body#vrtx-message-listing .vrtx-resource,
.vrtx-messages-main-content-wrapper .vrtx-feed li,
body#vrtx-message-listing .vrtx-feed li {
  display: revert;
  max-width: var(--width-soft-max);
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit,
body#vrtx-message-listing .vrtx-message-listing-edit {
  display: inline-block;
  padding: 15px 60px 15px 15px;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
  flex-shrink: 0;
  font-size: var(--font-size-tiny);
  font-weight: normal;
  padding: 0 5px;
  position: relative;
  top: -2px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit,
body#vrtx-message-listing .vrtx-message-listing-edit,
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit::after,
body#vrtx-message-listing .vrtx-message-listing-edit::after {
  transition: all 0.3s;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit::after,
body#vrtx-message-listing .vrtx-message-listing-edit::after {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 15px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit:focus,
body#vrtx-message-listing .vrtx-message-listing-edit:focus {
  outline-offset: 4px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit:hover::after,
body#vrtx-message-listing .vrtx-message-listing-edit:hover::after {
  right: 5px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit::after,
body#vrtx-message-listing .vrtx-message-listing-edit::after {
  display: none;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-edit:hover,
body#vrtx-message-listing .vrtx-message-listing-edit:hover {
  background-color: var(--color-neutral-tint-95);
}
.vrtx-messages-main-content-wrapper .vrtx-messages-header h2 {
  line-height: inherit;
}
.vrtx-messages-main-content-wrapper .vrtx-messages-header a:first-child {
  display: inline-block;
  margin: 0 10px 10px 0;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create {
  display: inline-block;
  position: relative;
  padding: 15px 60px 15px 15px;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  font-weight: normal;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create,
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create::after {
  transition: all 0.3s;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create::after {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: contain;
  width: 24px;
  height: 1.5em;
  position: absolute;
  right: 20px;
  top: 15px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create:focus {
  outline-offset: 4px;
}
.vrtx-messages-main-content-wrapper .vrtx-message-listing-create:hover::after {
  right: 5px;
}
.vrtx-messages-main-content-wrapper .vrtx-resource {
  margin-bottom: var(--space);
}
.vrtx-messages-main-content-wrapper .vrtx-resource p {
  margin: 0;
}
.vrtx-messages-main-content-wrapper div.vrtx-title,
.vrtx-messages-main-content-wrapper .description {
  margin-bottom: 10px;
}
.vrtx-messages-main-content-wrapper a.vrtx-title {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
  margin: 0 5px 0 0;
}
.vrtx-messages-main-content-wrapper .vrtx-message-line {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
}
.vrtx-messages-main-content-wrapper .vrtx-message-line-publish-date {
  margin-right: 5px;
}
body#vrtx-message-listing #vrtx-message-listing-create {
  margin-bottom: var(--space);
}
body#vrtx-message-listing a.vrtx-title {
  margin-right: 5px;
}
body#vrtx-message-listing .vrtx-number-of-comments-add-event-container {
  margin-bottom: 20px;
}
.vrtx-image-listing {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.vrtx-image-listing img {
  margin-bottom: 10px;
  box-shadow: 0 0 0 1px var(--color-neutral-tint-80);
  transition: all 0.3s;
}
.vrtx-image-listing a:hover img {
  transform: scale(1.1);
  box-shadow: 0 5px 20px var(--color-neutral-tint-80);
}
.vrtx-image-listing .vrtx-image-title a {
  font-weight: bold;
  text-decoration: none;
}
.vrtx-image-listing .vrtx-image-title a:hover {
  text-decoration: underline;
}
.vrtx-image-listing p {
  margin: 0;
}
#vrtx-searchview #vrtx-show-advanced-search,
#vrtx-searchview #vrtx-advanced-search-wrapper {
  display: none;
}
#vrtx-searchview #vrtx-advanced-search-wrapper {
  background: var(--color-neutral-tint-95);
  padding: 20px;
  margin-bottom: 20px;
  width: fit-content;
}
#vrtx-searchview #vrtx-advanced-search-wrapper h3 {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
#vrtx-searchview #vrtx-advanced-search-wrapper .vrtx-textfield {
  margin-bottom: 15px;
}
#vrtx-searchview #vrtx-advanced-search-wrapper label {
  display: block;
  margin-bottom: 5px;
}
#vrtx-searchview #vrtx-advanced-search-wrapper input,
#vrtx-searchview #vrtx-advanced-search-wrapper .button {
  background-color: white;
}
#vrtx-searchview #vrtx-advanced-search-wrapper input {
  width: 100%;
}
#vrtx-searchview #vrtx-advanced-search-wrapper .button {
  padding: 10px 15px;
  margin-right: 15px;
}
#vrtx-searchview #vrtx-advanced-search-wrapper .button::after {
  display: none;
}
#vrtx-searchview .vrtx-big-search,
#vrtx-searchview #vrtx-search-did-you-mean,
#vrtx-searchview .hits {
  background: var(--color-neutral-tint-95);
  padding: 20px;
}
#vrtx-searchview .vrtx-big-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 600px;
}
#vrtx-searchview .vrtx-big-search input,
#vrtx-searchview .vrtx-big-search button {
  background: white;
}
#vrtx-searchview .vrtx-big-search input {
  width: 100%;
}
#vrtx-searchview .vrtx-big-search button {
  white-space: nowrap;
}
@media (min-width: 751px) {
  #vrtx-searchview .vrtx-big-search input,
  #vrtx-searchview .vrtx-big-search button {
    padding: 7px 15px;
  }
  #vrtx-searchview .vrtx-big-search input {
    font-size: var(--font-size-large-10);
  }
}
#vrtx-searchview hr {
  display: none;
}
#vrtx-searchview #vrtx-search-did-you-mean {
  padding-top: 0;
  padding-bottom: 0;
}
#vrtx-searchview .hits {
  display: block;
  padding-top: 0;
  margin-bottom: 40px;
}
#vrtx-searchview .result {
  margin-bottom: 40px;
}
#vrtx-searchview .result h2 {
  font-size: var(--font-size-large-10);
  margin-bottom: 5px;
}
#vrtx-searchview .result .snippet {
  margin-bottom: 5px;
}
#vrtx-searchview .result .footer {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
}
.vrtx-paging-feed-wrapper {
  margin-top: 40px;
}
.vrtx-paging-wrapper {
  display: block;
  margin-bottom: 20px;
}
.vrtx-paging-wrapper a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid;
  border-radius: var(--radius);
  padding: 5px 15px;
  margin: 0 10px 10px 0;
}
.vrtx-paging-wrapper a:hover {
  background: var(--color-neutral-tint-95);
}
.vrtx-paging-wrapper a.marked,
.vrtx-paging-wrapper a.vrtx-marked {
  background: black;
  border-color: transparent;
  color: #fff;
}
.vrtx-subscribe-component .vrtx-dropdown-link,
.vrtx-subscribe-component .vrtx-dropdown-top {
  display: none;
}
.vrtx-subscribe-component ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vrtx-resources .vrtx-read-more {
  display: none;
}
#vrtx-collection .vrtx-icon {
  display: none;
}
#configurable-filtered-listing .configurable-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: var(--space);
}
#configurable-filtered-listing .configurable-filter label {
  display: block;
  margin-bottom: 3px;
}
#configurable-filtered-listing:not(.js-ready) .configurable-list {
  display: none;
}
#configurable-filtered-listing .feedback:not(.no-hits) h2 {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
}
#configurable-filtered-listing .pagination {
  margin-top: calc(2*var(--space));
}
#configurable-filtered-listing .pagination button {
  min-width: 44px;
  margin: 0 10px 10px 0;
}
#configurable-filtered-listing .pagination button[aria-current] {
  background: black;
  border-color: transparent;
  color: white;
}
#configurable-filtered-listing ul {
  display: grid;
  gap: calc(2*var(--space)) var(--space);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1101px) {
  #configurable-filtered-listing ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) and (min-width: 751px) {
  #configurable-filtered-listing ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
#configurable-filtered-listing li {
  position: relative;
}
#configurable-filtered-listing li.inactive {
  display: none;
}
#configurable-filtered-listing li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease-out;
}
#configurable-filtered-listing li.updated::before {
  transform: scaleX(1);
  transition: none;
}
#configurable-filtered-listing li img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
#configurable-filtered-listing li h3 {
  margin-bottom: 10px;
}
#configurable-filtered-listing li a {
  text-decoration: none;
}
#configurable-filtered-listing li a:hover h3 {
  text-decoration: underline;
}
#configurable-filtered-listing li span:not(:last-child)::after {
  content: "?";
  margin-left: 5px;
}
.three-column-list .vrtx-box-content ul,
.two-column-list .vrtx-box-content ul,
.three-column-list .vrtx-box-content ol,
.two-column-list .vrtx-box-content ol {
  column-gap: var(--space);
  column-count: 1;
}
.three-column-list .vrtx-box-content ul li,
.two-column-list .vrtx-box-content ul li,
.three-column-list .vrtx-box-content ol li,
.two-column-list .vrtx-box-content ol li {
  break-inside: avoid;
}
@media (min-width: 751px) {
  .three-column-list .vrtx-box-content ul,
  .three-column-list .vrtx-box-content ol {
    column-count: 3;
  }
}
@media (min-width: 751px) {
  .two-column-list .vrtx-box-content ul,
  .two-column-list .vrtx-box-content ol {
    column-count: 2;
  }
}
.vrtx-frontpage-box.img-special-left,
.vrtx-frontpage-box.img-special-right {
  background: var(--color-neutral-tint-95);
  display: grid;
}
@media (min-width: 751px) {
  .vrtx-frontpage-box.img-special-left,
  .vrtx-frontpage-box.img-special-right {
    grid-template-columns: 1fr 1fr;
  }
}
.vrtx-frontpage-box.img-special-left .vrtx-frontpage-box-picture,
.vrtx-frontpage-box.img-special-right .vrtx-frontpage-box-picture {
  display: grid;
  overflow: hidden;
}
.vrtx-frontpage-box.img-special-left img,
.vrtx-frontpage-box.img-special-right img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 0;
}
.vrtx-frontpage-box.img-special-left .vrtx-box-content,
.vrtx-frontpage-box.img-special-right .vrtx-box-content {
  align-self: center;
  padding: 10%;
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.img-special-left .vrtx-box-content,
  .vrtx-frontpage-box.img-special-right .vrtx-box-content {
    padding: 30px 15px;
  }
}
@media (min-width: 751px) {
  .vrtx-frontpage-box.img-special-right .vrtx-frontpage-box-picture {
    order: 2;
  }
}
.vrtx-frontpage-box.box-special {
  background-color: var(--color-neutral-tint-95);
}
.vrtx-frontpage-box.box-special .vrtx-box-content {
  padding: 10%;
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.box-special .vrtx-box-content {
    padding: 30px 15px;
  }
}
@media (min-width: 751px) {
  .vrtx-frontpage-box.box-special h2 {
    font-size: var(--font-size-large-40);
    line-height: 1.2;
  }
}
@media (min-width: 751px) {
  .vrtx-frontpage-box.box-special p {
    font-size: var(--font-size-large-20);
  }
}
.vrtx-frontpage-box.box-special .read-more,
.vrtx-frontpage-box.box-special .button,
.vrtx-frontpage-box.box-special .button-loud,
.vrtx-frontpage-box.box-special .button-large {
  font-size: var(--font-size-base);
}
.vrtx-frontpage-box.link-special {
  border: 1px solid;
  padding: 10% 15% 12% 10%;
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.link-special {
    padding: 20px 50px 20px 15px;
  }
}
.vrtx-frontpage-box.link-special .vrtx-box-content {
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 1101px) {
  .vrtx-frontpage-box.link-special .vrtx-box-content {
    font-size: 7rem;
  }
}
@media (max-width: 1100px) and (min-width: 751px) {
  .vrtx-frontpage-box.link-special .vrtx-box-content {
    font-size: var(--font-size-large-40);
  }
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.link-special .vrtx-box-content {
    font-size: var(--font-size-large-20);
  }
}
.vrtx-frontpage-box.link-special p {
  margin: 0;
}
.vrtx-frontpage-box.link-special a {
  display: block;
  text-decoration: none;
}
.vrtx-frontpage-box.link-special a::after {
  content: "";
  position: absolute;
  background: var(--color-neutral-tint-90) url("/vrtx/dist/resources/x1/images/arrow.svg") no-repeat center;
  background-size: 40px auto;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-left: 20px;
  margin-top: 15px;
}
@media (max-width: 1100px) {
  .vrtx-frontpage-box.link-special a::after {
    background-size: 24px;
    width: 36px;
    height: 36px;
    margin-left: 10px;
  }
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.link-special a::after {
    margin-top: 0;
  }
}
.vrtx-frontpage-box.link-special a:hover {
  text-decoration: underline;
}
.row-all-colored .vrtx-frontpage-box.img-special-left,
.row-all-colored .vrtx-frontpage-box.img-special-right,
.row-all-colored .vrtx-frontpage-box.box-special {
  background: white;
}
/*
Styles used for articles, events and other similar, article-ish pages
*/
.vrtx-byline {
  margin-bottom: 40px;
}
/*
- Max-width to match h1 and introduction text
- Max-height to handle portrait format
- Image will be full width until 10/7 ratio (1.42)

Change Sep 2025 by Kjetil
No longer using table layout to make image text follow img width.
Now using fit-content and contain. See commented lines.
Code is fully browser supported:
https://caniuse.com/?search=contain%3A%20inline-size
*/
.vrtx-introduction-image {
  width: fit-content;
  max-width: var(--width-soft-max);
  margin-bottom: 50px;
}
.vrtx-introduction-image img {
  max-height: 700px;
  margin: 0;
}
.vrtx-introduction-image .vrtx-imagetext {
  contain: inline-size;
  min-width: 250px;
}
.vrtx-imagetext,
figcaption {
  font-size: var(--font-size-tiny);
  color: var(--color-neutral-tint-25);
  margin-top: 5px;
}
.vrtx-imagetext p,
figcaption p {
  margin: 0;
}
.vrtx-article-body {
  max-width: var(--width-text-max);
  border-bottom: 1px solid;
  padding-bottom: 80px;
  margin-bottom: 30px;
}
.vrtx-article-body::after {
  content: "";
  clear: both;
  display: block;
}
.vrtx-article-body hr,
.vrtx-article-body figure,
.vrtx-article-body table,
.vrtx-article-body video,
.vrtx-article-body iframe {
  clear: both;
}
.vrtx-article-body figure,
.vrtx-article-body img,
.vrtx-article-body video {
  margin: 40px 0;
}
.vrtx-article-body figure img,
.vrtx-article-body figure video {
  margin: 0;
}
.vrtx-article-body hr {
  padding-top: 80px;
  border: none;
  border-bottom: 1px solid var(--color-neutral-tint-80);
  margin-bottom: 40px;
}
.vrtx-article-body h2 {
  margin: 50px 0 20px;
}
.vrtx-article-body iframe {
  margin: 40px 0;
}
.vrtx-article-body iframe[src*="captivate.fm"] {
  margin: 0;
}
.vrtx-article-body .vrtx-media-player iframe {
  margin-top: 0;
}
.vrtx-article-body .image-left,
.vrtx-article-body .image-right {
  width: 300px;
}
@media (max-width: 750px) {
  .vrtx-article-body .image-left,
  .vrtx-article-body .image-right {
    max-width: 70vw;
    margin-right: auto;
    margin-left: auto;
  }
  .vrtx-article-body img[align] {
    float: none;
  }
}
@media (min-width: 751px) {
  .vrtx-article-body .image-left,
  .vrtx-article-body .image-right {
    clear: both;
    margin: 10px 40px 40px 40px;
  }
  .vrtx-article-body .image-left {
    float: left;
    margin-left: 0;
  }
  .vrtx-article-body .image-right {
    float: right;
    margin-right: 0;
  }
}
.vrtx-article-body figure .image-left,
.vrtx-article-body figure .image-right {
  float: none;
  width: auto;
  max-width: 100%;
  margin: 0;
}
.vrtx-article-body .vrtx-facts-container {
  background: var(--color-neutral-tint-95);
  font-size: var(--font-size-small);
  padding: 30px;
  margin: 40px 0;
}
@media (min-width: 1101px) {
  .vrtx-article-body .vrtx-facts-container {
    clear: both;
  }
  .vrtx-article-body .vrtx-facts-container.vrtx-container-left,
  .vrtx-article-body .vrtx-facts-container.vrtx-container-right {
    margin: 10px 40px 40px 40px;
  }
  .vrtx-article-body .vrtx-facts-container.vrtx-container-left {
    float: left;
    width: 350px;
    margin-left: 0;
  }
  .vrtx-article-body .vrtx-facts-container.vrtx-container-right {
    float: right;
    width: 400px;
    margin-right: -100px;
  }
}
.vrtx-article-body .vrtx-facts-container h2 {
  font-size: var(--font-size-large-10);
  margin-top: 0;
}
.vrtx-article-body .vrtx-facts-container h3 {
  font-size: var(--font-size-large-05);
}
@media (min-width: 1101px) {
  #vrtx-structured-article #vrtx-content,
  #vrtx-structured-event #vrtx-content {
    margin-left: var(--indent);
  }
}
#vrtx-structured-article h1,
#vrtx-structured-event h1,
#vrtx-structured-article .vrtx-introduction,
#vrtx-structured-event .vrtx-introduction {
  max-width: var(--width-soft-max);
}
#vrtx-structured-article #vrtx-related-content,
#vrtx-structured-event #vrtx-related-content {
  max-width: var(--width-text-max);
  margin-top: 80px;
  border-bottom: 1px solid;
  padding-bottom: 80px;
  margin-bottom: 30px;
}
#vrtx-structured-article #vrtx-additional-content #vrtx-related-content,
#vrtx-structured-event #vrtx-additional-content #vrtx-related-content {
  border-bottom: none;
  padding-bottom: 0;
  border-top: 1px solid;
  padding-top: 30px;
}
.vrtx-event-organizers {
  margin: 0;
}
.vrtx-event-organizers h2 {
  display: inline;
  font-size: inherit;
}
.vrtx-event-organizers h2::after {
  content: ":";
}
.vrtx-tags {
  display: block;
}
.vrtx-tags .title {
  font-weight: bold;
}
.vrtx-authors {
  display: block;
}
.vrtx-authors .vrtx-authors-prefix {
  font-weight: bold;
}
.vrtx-authors .vrtx-authors-prefix::after {
  content: ":";
}
.vrtx-date-info .published-date-label {
  font-weight: bold;
}
.vrtx-date-info .published-date-label::after {
  content: ":";
}
#vrtx-message #vrtx-main-content {
  max-width: var(--width-soft-max);
}
#vrtx-message .vrtx-date-info {
  margin-top: calc(2 * var(--space));
}
.vrtx-social-components {
  margin-top: 25px;
}
@media (min-width: 751px) {
  .vrtx-social-components * {
    display: inline-flex;
  }
}
.vrtx-social-components ul {
  list-style: none;
  padding: 0;
}
.vrtx-social-components a {
  display: inline-flex;
  align-items: center;
  margin: 0 20px 5px 0;
  text-decoration: none;
}
.vrtx-social-components a::before {
  content: "";
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.vrtx-social-components a:hover {
  text-decoration: underline;
}
.vrtx-social-components a.vrtx-email-friend::before {
  background-image: url("/vrtx/dist/resources/x1/images/social/mail.svg");
}
.vrtx-social-components a.facebook::before {
  background-image: url("/vrtx/dist/resources/x1/images/social/facebook.svg");
}
.vrtx-social-components a.twitter::before {
  background-image: url("/vrtx/dist/resources/x1/images/social/x.svg");
}
.vrtx-social-components a.x::before {
  background-image: url("/vrtx/dist/resources/x1/images/social/x.svg");
}
.vrtx-comments {
  background-color: var(--color-neutral-tint-95);
  padding: 20px;
  margin-top: 25px;
  max-width: var(--width-text-max);
}
.vrtx-comments .button {
  padding: 5px 10px;
}
.vrtx-comments .button::after {
  display: none;
}
.vrtx-comments .comments-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.vrtx-comments .comments-header {
  margin-bottom: 40px;
}
.vrtx-comments .comments-header .header-href {
  font-weight: bold;
  font-size: var(--font-size-large-10);
  line-height: 1.3;
  margin: 0 0 15px 0;
  display: block;
  margin-bottom: 10px;
}
.vrtx-comments .comments-header #comments-header-feedHref {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
}
.vrtx-comments .vrtx-comment {
  margin-bottom: 40px;
}
.vrtx-comments .comment-body {
  margin-bottom: 10px;
}
.vrtx-comments .comment-body * {
  margin: 0;
}
.vrtx-comments .comment-info > span {
  font-size: var(--font-size-small);
  color: var(--color-neutral-tint-25);
}
.vrtx-comments .comment-info form {
  margin-top: 10px;
}
.vrtx-comments .submit input {
  margin-right: 5px;
}
@media (max-width: 750px) {
  .vrtx-comments .submit input {
    display: block;
    margin-bottom: 5px;
  }
}
/*
Needs x-image-slide.js

NOTE:
May need override of width and position if local differences from X
See section: Width and position
*/
@media (min-width: 751px) {
  #vrtx-structured-article .image-slide-prev-next,
  #vrtx-structured-article .image-slide {
    width: calc(100vw - 100px);
  }
}
@media (min-width: 1101px) {
  #vrtx-structured-article .image-slide-prev-next,
  #vrtx-structured-article .image-slide {
    margin-left: calc(0px - var(--indent));
  }
}
@media (min-width: 1501px) {
  #vrtx-structured-article .image-slide-prev-next,
  #vrtx-structured-article .image-slide {
    width: calc(var(--width-total-max) - 100px);
  }
}
#vrtx-structured-article .image-slide-prev-next {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
}
#vrtx-structured-article .image-slide-prev-next .prev {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  transform: rotate(180deg);
}
#vrtx-structured-article .image-slide-prev-next .next {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}
#vrtx-structured-article .image-slide-prev-next .zoom-out-button {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-image: url("/vrtx/dist/resources/x1/images/x.svg");
  display: none;
}
#vrtx-structured-article .image-slide-prev-next + .image-slide {
  margin-top: 0;
}
#vrtx-structured-article .image-slide-prev-next.no-overflow {
  display: none;
}
#vrtx-structured-article .image-slide-prev-next.no-overflow + .image-slide {
  margin-top: 50px;
}
#vrtx-structured-article .image-slide-prev-next.zoom-mode {
  display: flex;
  position: fixed;
  z-index: 101;
  left: 0;
  top: 0;
  width: 100vw;
  margin: 0;
  justify-content: center;
}
#vrtx-structured-article .image-slide-prev-next.zoom-mode button {
  border: none;
  background-size: 24px;
  margin: 5px;
  outline-offset: 0;
}
#vrtx-structured-article .image-slide-prev-next.zoom-mode .zoom-out-button {
  display: block;
  position: absolute;
  right: 0;
}
#vrtx-structured-article .image-slide {
  scrollbar-width: none;
  overflow: auto;
  display: flex;
  margin-top: 95px;
  margin-bottom: 50px;
  gap: 3%;
}
#vrtx-structured-article .image-slide::-webkit-scrollbar {
  display: none;
}
@media (max-width: 750px) {
  #vrtx-structured-article .image-slide {
    gap: 5%;
  }
}
#vrtx-structured-article .image-slide > *:not(figure) {
  display: none;
}
#vrtx-structured-article .image-slide figure,
#vrtx-structured-article .image-slide img {
  margin: 0;
}
#vrtx-structured-article .image-slide img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: none;
}
#vrtx-structured-article .image-slide img[src*="?alt=listing"],
#vrtx-structured-article .image-slide img.has-zoomed {
  display: block;
}
#vrtx-structured-article .image-slide.ratio-free img {
  aspect-ratio: auto;
}
#vrtx-structured-article .image-slide.ratio-1-1 img {
  aspect-ratio: 1/1;
}
#vrtx-structured-article .image-slide figure {
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 1101px) {
  #vrtx-structured-article .image-slide figure {
    flex-basis: 29%;
  }
}
@media (max-width: 1100px) {
  #vrtx-structured-article .image-slide figure {
    flex-basis: 44%;
  }
}
@media (max-width: 750px) {
  #vrtx-structured-article .image-slide figure {
    flex-basis: 88%;
  }
}
#vrtx-structured-article .image-slide .zoom-in-button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline-offset: -2px;
}
@media (max-width: 750px) {
  #vrtx-structured-article .image-slide .zoom-in-button {
    display: none;
  }
}
#vrtx-structured-article .image-slide .zoom-in-button::before {
  content: "";
  background: white url("../images/maximize.svg") no-repeat center;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 18px;
  border-radius: var(--radius);
  opacity: 0;
  transition: all 0.5s;
}
#vrtx-structured-article .image-slide .zoom-in-button:focus,
#vrtx-structured-article .image-slide .zoom-in-button:hover {
  background-color: transparent;
}
#vrtx-structured-article .image-slide .zoom-in-button:focus::before,
#vrtx-structured-article .image-slide .zoom-in-button:hover::before {
  opacity: 1;
}
#vrtx-structured-article .image-slide.no-zoom .zoom-in-button {
  display: none;
}
#vrtx-structured-article .image-slide figure.zoomed {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  padding: 50px;
}
#vrtx-structured-article .image-slide figure.zoomed img {
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  max-height: 80vh;
  width: auto;
  margin: 0 auto;
}
#vrtx-structured-article .image-slide figure.zoomed figcaption {
  max-width: var(--width-soft-max);
  margin: 5px auto;
  text-align: center;
  text-wrap: balance;
}
#vrtx-structured-article .image-slide figure.zoomed .zoom-in-button {
  display: none;
}
#vrtx-structured-article .image-slide figure.zoomed:not(.image-loaded)::before {
  content: "";
  position: fixed;
  right: 0;
  left: 0;
  top: 200px;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border: 5px solid var(--color-neutral-tint-opaque-90);
  border-top-color: black;
  border-radius: 50%;
  animation: loadingspinner 1s linear infinite;
}
@keyframes loadingspinner {
  to {
    rotate: 360deg;
  }
}
#vrtx-structured-article:has(figure.zoomed) {
  overflow: hidden;
}
#vrtx-structured-article.vrtx-mode-preview .image-slide .zoom-in-button {
  display: none;
}
/*
Styles for:
- Frontpage row with full-width image or background video.
- Frontpage row pulled to page-top, behind header.

Needs x-media-wide.js
*/
.grid-container.media-wide {
  margin-bottom: calc(2*var(--space));
  background: none;
  padding: 0;
}
.grid-container.media-wide .row {
  position: relative;
  padding: 0;
  max-width: none;
}
@media (min-width: 1101px) {
  .grid-container.media-wide img,
  .grid-container.media-wide video,
  .grid-container.media-wide .vrtx-frontpage-box {
    min-height: 500px;
  }
}
.grid-container.media-wide img,
.grid-container.media-wide video {
  margin: 0;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1101px) {
  .grid-container.media-wide img,
  .grid-container.media-wide video {
    height: 70vh;
  }
}
@media (max-width: 1100px) {
  .grid-container.media-wide img,
  .grid-container.media-wide video {
    aspect-ratio: 3/2;
  }
}
@media (min-width: 1101px) {
  .grid-container.media-wide .vrtx-frontpage-box {
    background-color: #eee;
  }
}
@media (min-width: 1101px) {
  .grid-container.media-wide .vrtx-box-content {
    background-color: white;
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 500px;
    padding: 30px;
  }
}
@media (max-width: 1100px) and (min-width: 751px) {
  .grid-container.media-wide .vrtx-box-content {
    padding: 30px 50px 0;
  }
}
@media (max-width: 750px) {
  .grid-container.media-wide .vrtx-box-content {
    padding: 30px 15px 0;
  }
}
.grid-container.media-wide .vrtx-box-content h2,
.grid-container.media-wide .vrtx-box-content p {
  margin-bottom: 15px;
}
.grid-container.media-wide .vrtx-box-content h2 {
  font-size: var(--font-size-large-20);
}
.grid-container.background-video {
  background: none;
  padding: 0;
}
.grid-container.background-video .row {
  position: relative;
  padding: 0;
  max-width: none;
}
@media (min-width: 1101px) {
  .grid-container.background-video video,
  .grid-container.background-video .vrtx-frontpage-box {
    min-height: 500px;
  }
}
.grid-container.background-video video {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1101px) {
  .grid-container.background-video video {
    height: 70vh;
  }
}
@media (min-width: 1101px) {
  .grid-container.background-video .vrtx-frontpage-box {
    background-color: #eee;
  }
}
.grid-container.background-video .vrtx-box-content > *:not(div, vrtx-component-block) {
  display: none;
}
.grid-container.background-video .text-box {
  background-color: white;
}
@media (min-width: 1101px) {
  .grid-container.background-video .text-box {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 500px;
    padding: 30px;
  }
}
@media (max-width: 1100px) and (min-width: 751px) {
  .grid-container.background-video .text-box {
    padding: 30px 50px 0;
  }
}
@media (max-width: 750px) {
  .grid-container.background-video .text-box {
    padding: 20px 15px 0;
  }
}
.grid-container.background-video .text-box h2,
.grid-container.background-video .text-box p {
  margin-bottom: 15px;
}
.grid-container.background-video .text-box h2 {
  font-size: var(--font-size-large-20);
}
.vrtx-background-video {
  position: relative;
}
.vrtx-background-video::before {
  content: "Background-video not locally enabled.";
  position: absolute;
  background-color: yellow;
  padding: 10px;
}
.vrtx-background-video video {
  opacity: 0.2;
}
.vrtx-background-video .pause-video {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  background: white url("../images/pause.svg") no-repeat center;
  background-size: 30px;
  padding: 0;
  border: none;
  border-radius: 0;
  opacity: 0;
  transition: opacity 1s;
}
.vrtx-background-video .pause-video.paused {
  background-image: url("/vrtx/dist/resources/x1/images/play.svg");
}
.vrtx-background-video:hover .pause-video,
.vrtx-background-video .pause-video:focus-visible {
  opacity: 1;
}
body.vrtx-mode-edit .grid-container.media-wide img,
body.vrtx-mode-preview .grid-container.media-wide img,
body.vrtx-mode-edit .grid-container.background-video img,
body.vrtx-mode-preview .grid-container.background-video img,
body.vrtx-mode-edit .grid-container.media-wide video,
body.vrtx-mode-preview .grid-container.media-wide video,
body.vrtx-mode-edit .grid-container.background-video video,
body.vrtx-mode-preview .grid-container.background-video video {
  height: auto;
}
.grid-container.page-top {
  margin-top: -130px;
}
@media (max-width: 750px) {
  .grid-container.page-top {
    margin-top: -80px;
  }
}
body.header-search-visible .grid-container.page-top,
body.sidebar-menu-wrapper-visible .grid-container.page-top {
  margin-top: 0;
}
body.has-page-top-row #breadcrumbs,
body.has-page-top-row h1 {
  position: absolute;
  left: -100000px;
}
@media (max-width: 750px) {
  body.has-page-top-row #header-tools {
    column-gap: 10px;
  }
}
body.has-page-top-row #header-tools #header-language,
body.has-page-top-row #header-tools .header-search-expand,
body.has-page-top-row #header-tools .sidebar-menu-toggle {
  background-color: white;
  border-radius: 0;
  min-height: 36px;
  padding: 0 5px;
}
body.vrtx-mode-edit .grid-container.page-top {
  margin-top: 0;
}
body.vrtx-mode-edit.has-page-top-row h1 {
  position: static;
}
.vrtx-image-gallery-include-outer-wrapper {
  clear: both;
  width: 1000px;
  margin-left: -150px;
}
#vrtx-frontpage .vrtx-image-gallery-include-outer-wrapper {
  width: auto;
  margin-left: 0;
}
.main .vrtx-image-gallery-include {
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
  clear: both;
  text-align: left;
}
.main .vrtx-image-gallery-include:only-child {
  max-width: 700px;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-title {
  display: none;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-pure-css {
  height: 476px;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav {
  width: 100%;
  height: 425px;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .prev,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-prev,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-prev,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-next {
  height: 45px;
  width: 26px;
  display: block;
  z-index: 10;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .prev.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .next.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-prev.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-prev.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-next.hidden-thumbs-direction,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-next.hidden-thumbs-direction {
  visibility: hidden;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .prev,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-prev,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-prev {
  background: url("/vrtx/dist/resources/x1/images/gallery/prev.svg") no-repeat 0 0;
  background-size: auto 100%;
  margin-right: auto;
}
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next,
.main .vrtx-image-gallery-include .thumbs-prev-next-wrapper .thumbs-next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .thumbs-next {
  background: url("/vrtx/dist/resources/x1/images/gallery/next.svg") no-repeat 0 0;
  background-size: auto 100%;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-progress {
  padding: 5px 18px;
  border-radius: 8px;
  position: absolute;
  left: calc(50% - 28px);
  top: calc(100% - 40px);
  background: rgba(0, 0, 0, 0.6);
  font-size: 1.5rem;
  line-height: 2.1rem;
  text-align: center;
  color: #fff;
  z-index: 5;
}
.main .vrtx-image-gallery-include.animation-off .vrtx-image-gallery-image {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image {
  margin: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  opacity: 1;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image:not(.active) {
  opacity: 0.5;
  z-index: 0;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image:not(.active) figcaption {
  visibility: hidden;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active {
  z-index: 4;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active img {
  cursor: pointer;
  -webkit-transition: transform 0.4s ease-in-out;
  -moz-transition: transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active img:hover {
  transform: scale(1.1);
  will-change: transform;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active-prev-prev,
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active-next-next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active-next,
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.active-prev {
  z-index: 3;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image.loop-around:not(.active-prev):not(.active-next):not(.active) {
  z-index: 0;
  opacity: 0;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image .vrtx-image-gallery-image-container {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image .vrtx-image-gallery-image-container img {
  max-height: 100%;
  width: 100%;
  vertical-align: middle;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image figcaption {
  display: block;
  margin: 20px auto 0 auto;
  max-width: 600px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image figcaption p {
  margin: 10px 0 0 0;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-image .vrtx-image-gallery-image-title {
  font-size: 1.8rem;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFF;
  z-index: 10;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg svg {
  margin-left: 50%;
  margin-top: 180px;
  height: 100px;
  width: 100px;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg .loading-circle-bg,
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg .loading-indicator {
  fill: none;
  stroke-linecap: bevel;
  stroke-linejoin: round;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg .loading-circle-bg {
  stroke-width: 2px;
}
.main .vrtx-image-gallery-include .vrtx-image-gallery-loading-bg .loading-indicator {
  fill: none;
  stroke: #888;
  stroke-width: 4px;
}
/*
 * Toggle modes links
 *
 */
.vrtx-image-gallery-toggle-modes-wrapper {
  text-align: right;
  max-width: 1000px;
  margin-bottom: -20px;
  margin-top: 20px;
}
.vrtx-image-gallery-show-fullscreen,
.vrtx-image-gallery-toggle-thumbnail-view {
  text-decoration: none;
}
.vrtx-image-gallery-show-fullscreen:hover,
.vrtx-image-gallery-toggle-thumbnail-view:hover,
.vrtx-image-gallery-show-fullscreen:focus,
.vrtx-image-gallery-toggle-thumbnail-view:focus {
  text-decoration: underline;
}
.vrtx-image-gallery-toggle-thumbnail-view:before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/gallery/thumbnail-view-open.svg") no-repeat 0 0;
  background-size: 100% auto;
  height: 15px;
  width: 15px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  top: 2px;
}
.vrtx-image-gallery-toggle-thumbnail-view.thumbnail-view-close:before {
  height: 10px;
  background-image: url("/vrtx/dist/resources/x1/images/gallery/thumbnail-view-close.svg");
  top: 0;
}
.vrtx-image-gallery-close-fullscreen,
.vrtx-image-gallery-toggle-thumbnail-view {
  font-size: 1.6rem;
  line-height: 2.1rem;
}
.vrtx-image-gallery-show-fullscreen-wrapper {
  margin-top: 20px;
}
.vrtx-image-gallery-show-fullscreen-wrapper a:before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/gallery/fullscreen-open.svg") no-repeat 0 0;
  background-size: auto 100%;
  height: 24px;
  width: 24px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
  top: 5px;
}
.vrtx-image-gallery-close-fullscreen {
  display: none;
  background: url("/vrtx/dist/resources/x1/images/gallery/fullscreen-close.svg") no-repeat 0 0;
  background-size: auto 100%;
  padding-left: 30px;
}
/*
 * Thumbnail view
 *
 */
.vrtx-image-gallery-include-thumbs-scroll-wrapper {
  display: none;
  position: relative;
}
.vrtx-image-gallery-include-thumbs-scroll-wrapper.activate > ul {
  position: absolute;
  top: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  transform-origin: center;
  will-change: transform;
  width: 100%;
  height: 100%;
}
.vrtx-image-gallery-include-thumbs-scroll-wrapper:not(.activate) .thumbs-prev-next-wrapper {
  display: none;
}
.vrtx-image-gallery-include-thumbs-scroll-wrapper > ul.active-thumbs-in-scroll {
  transform: translate3d(0, 0, 0);
}
main ul.vrtx-image-gallery-include-thumbs {
  display: none;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  grid-template-rows: repeat(auto-fill, 138px);
  margin: 0;
  z-index: 1;
  padding-left: 0;
}
main ul.vrtx-image-gallery-include-thumbs li {
  list-style: none;
  margin: 0;
}
main ul.vrtx-image-gallery-include-thumbs li:before {
  display: none;
}
main ul.vrtx-image-gallery-include-thumbs li a,
main ul.vrtx-image-gallery-include-thumbs li img {
  display: block;
}
main ul.vrtx-image-gallery-include-thumbs li a {
  width: auto;
  height: 138px;
  overflow: hidden;
}
main ul.vrtx-image-gallery-include-thumbs li img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  margin: 0;
}
main ul.vrtx-image-gallery-include-thumbs .vrtx-full-image {
  display: none;
}
main .vrtx-image-gallery-thumbnail-view .vrtx-image-gallery-include-thumbs-scroll-wrapper {
  display: block;
}
main .vrtx-image-gallery-thumbnail-view .vrtx-image-gallery-include-thumbs-scroll-wrapper.activate ul.vrtx-image-gallery-include-thumbs {
  grid-auto-flow: column;
}
main .vrtx-image-gallery-thumbnail-view ul.vrtx-image-gallery-include-thumbs {
  display: grid;
}
main .vrtx-image-gallery-thumbnail-view .vrtx-image-gallery-include-container {
  display: none;
}
main .vrtx-image-gallery-include-title + ul.vrtx-image-gallery-include-thumbs {
  display: grid;
}
/*
 * Fullscreen mode
 *
 */
html.vrtx-image-gallery-fullscreen {
  overflow: hidden;
}
html.vrtx-image-gallery-fullscreen.special-page-config .grid-container,
html.vrtx-image-gallery-fullscreen.special-page-config-header-minimal .grid-container {
  transform: none !important;
  transition: none !important;
}
html.vrtx-image-gallery-fullscreen #main .grid-container .vrtx-frontpage-box {
  z-index: auto;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-modes-wrapper {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 1;
}
html.vrtx-image-gallery-fullscreen #vrtx-frontpage .vrtx-image-gallery-toggle-modes-wrapper {
  margin-top: 20px;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-include-thumbs-scroll-wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-top: 90px;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view,
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-close-fullscreen {
  color: #fff;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view:focus,
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-close-fullscreen:focus,
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view:hover,
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-close-fullscreen:hover {
  color: #fff;
  text-decoration-color: #fff;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view {
  margin-right: 20px;
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view:before {
  background-image: url("/vrtx/dist/resources/x1/images/gallery/thumbnail-view-open-white.svg");
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-toggle-thumbnail-view.thumbnail-view-close:before {
  background-image: url("/vrtx/dist/resources/x1/images/gallery/thumbnail-view-close-white.svg");
}
html.vrtx-image-gallery-fullscreen .vrtx-image-gallery-close-fullscreen {
  display: inline-block;
  max-width: none;
}
html.vrtx-image-gallery-fullscreen,
html.vrtx-image-gallery-fullscreen body {
  background: #000;
}
html.vrtx-image-gallery-fullscreen #main .vrtx-image-gallery-include-container figure.vrtx-image-gallery-image .vrtx-image-gallery-image-description,
html.vrtx-image-gallery-fullscreen #main .vrtx-image-gallery-include-container figure.vrtx-image-gallery-image .vrtx-image-gallery-image-description a {
  color: #fff;
}
html.vrtx-image-gallery-fullscreen #main .vrtx-image-gallery-include-container figure.vrtx-image-gallery-image .vrtx-image-gallery-image-description a {
  text-decoration-color: #fff;
}
html.vrtx-image-gallery-fullscreen #vrtx-frontpage .main .vrtx-image-gallery-selected-fullscreen {
  width: 100% !important;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen {
  overflow-y: scroll;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%;
  z-index: 11;
  margin: 0;
  margin-left: 0 !important;
  background: #000;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include {
  max-width: none;
  margin: 0;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image.active img {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image.active img:hover {
  transform: none;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image .vrtx-image-gallery-image-container {
  height: auto;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image figcaption {
  max-width: 1000px;
  margin-bottom: 20px;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image figcaption .vrtx-image-gallery-show-fullscreen-wrapper {
  display: none;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-image:not(.active) {
  opacity: 0;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav {
  height: 100vh;
  width: calc(80% + calc(calc(43px * 2) + 20px));
  left: calc(calc(20vw - calc(calc(43px * 2) + 20px)) / 2);
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev,
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next {
  width: 43px;
  background-size: contain;
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev {
  background-image: url("/vrtx/dist/resources/x1/images/arrow-white.svg");
  transform: rotate(180deg);
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next {
  background-image: url("/vrtx/dist/resources/x1/images/arrow-white.svg");
}
html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .vrtx-image-gallery-progress {
  top: 27px;
}
@media (max-width: 1100px) {
  .vrtx-image-gallery-include-outer-wrapper {
    margin-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  #main .vrtx-image-gallery-include .vrtx-image-gallery-image:not(.active) {
    opacity: 0;
  }
  .main .vrtx-image-gallery-include .vrtx-image-gallery-image.active img:hover {
    transform: scale(1);
  }
  .vrtx-image-gallery-show-fullscreen-wrapper {
    display: none;
  }
  html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav {
    width: calc(80% + calc(calc(33px * 2) + 15px));
    left: calc(calc(20vw - calc(calc(33px * 2) + 15px)) / 2);
  }
  html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .prev,
  html.vrtx-image-gallery-fullscreen .main .vrtx-image-gallery-selected-fullscreen .vrtx-image-gallery-include .vrtx-image-gallery-include-container-nav .next {
    height: 20px;
    width: 33px;
  }
}
/*
Contains both CK4 and CK5 versions.
CK5 version is built in editor.
CK4 version is built in client side JS when this accordion class is used.
*/
.vrtx-details summary h2,
.vrtx-details summary h3,
.vrtx-details summary h4,
h2.accordion,
h3.accordion,
h4.accordion {
  position: relative;
  padding: 0 0 15px 25px;
  margin: 0;
  cursor: pointer;
}
.vrtx-details summary h2::before,
.vrtx-details summary h3::before,
.vrtx-details summary h4::before,
h2.accordion::before,
h3.accordion::before,
h4.accordion::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/chevron.svg") no-repeat center;
  background-size: 10px auto;
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.3em;
  transition: all 0.3s;
}
.vrtx-details summary h2:hover,
.vrtx-details summary h3:hover,
.vrtx-details summary h4:hover,
h2.accordion:hover,
h3.accordion:hover,
h4.accordion:hover {
  text-decoration: underline;
}
.vrtx-details summary,
details.accordion-wrapper summary {
  list-style: none;
  width: fit-content;
}
.vrtx-details summary::marker,
details.accordion-wrapper summary::marker,
.vrtx-details summary::-webkit-details-marker,
details.accordion-wrapper summary::-webkit-details-marker {
  display: none;
}
.vrtx-details summary:focus,
details.accordion-wrapper summary:focus {
  outline-offset: -4px;
}
.vrtx-details[open] summary h2::before,
.vrtx-details[open] summary h3::before,
.vrtx-details[open] summary h4::before {
  transform: rotate(90deg);
}
details.accordion-wrapper {
  height: var(--collapsed);
}
details.accordion-wrapper.animatable {
  transition: height 0.3s ease-in;
}
details.accordion-wrapper,
details.accordion-wrapper summary,
details.accordion-wrapper .accordion-content {
  overflow: hidden;
}
details.accordion-wrapper[open] {
  height: var(--expanded);
}
details.accordion-wrapper[open] .accordion::before {
  transform: rotate(90deg);
}
.accordion-end {
  margin-top: 15px;
}
/**********************************************************************
CK5
***********************************************************************/
.vrtx-details {
  /*
  Transition to auto height for non-blink browsers.
  Variables added with JS used for transition.
  Can be replaced by modern version when browser support is sufficient.
  */
  overflow: hidden;
  transition: height 0.5s;
  --open: var(--closed);
  height: var(--closed);
}
.vrtx-details vrtx-details-content {
  display: block;
  padding-bottom: 25px;
}
.vrtx-details vrtx-details-content details {
  display: none;
}
.vrtx-details vrtx-details-content > *:last-child {
  margin-bottom: 0;
}
.vrtx-details[open] {
  height: var(--open);
}
/*
Modern CK5 version using auto height and no JS.
Blink engine only, not supported in Safari and FF as of August 2025.
Note that height transition is on the content here, not the outer container.
*/
@supports (interpolate-size: allow-keywords) and (transition-behavior: allow-discrete) and (selector(::details-content)) {
  .vrtx-details {
    interpolate-size: allow-keywords;
  }
  .vrtx-details,
  .vrtx-details[open] {
    height: auto;
  }
  .vrtx-details::details-content {
    overflow: hidden;
    height: 0;
    transition: height 0.5s, content-visibility 0.5s;
    transition-behavior: allow-discrete;
  }
  .vrtx-details[open]::details-content {
    height: auto;
  }
}
/*
Note that there are different templates for regular and uh-version
There is also a hiof-person
*/
table.vrtx-person-listing {
  width: 100%;
}
table.vrtx-person-listing th,
table.vrtx-person-listing td {
  vertical-align: top;
  border: none;
}
table.vrtx-person-listing th {
  font-weight: normal;
  white-space: nowrap;
}
table.vrtx-person-listing thead {
  background: none;
}
table.vrtx-person-listing tbody tr:nth-child(odd) {
  background-color: var(--color-neutral-tint-95);
}
@media (min-width: 1101px) {
  table.vrtx-person-listing tbody td {
    padding: 20px 10px;
  }
}
@media (min-width: 1101px) {
  table.vrtx-person-listing tbody .vrtx-person-listing-name {
    position: relative;
    padding-left: 150px;
    height: 190px;
  }
}
table.vrtx-person-listing tbody .vrtx-person-listing-name .vrtx-image {
  position: absolute;
  border: 1px solid var(--color-neutral-tint-90);
  width: 100px;
  height: 150px;
  left: 10px;
}
@media (min-width: 1101px) {
  table.vrtx-person-listing tbody .vrtx-person-listing-name .vrtx-image {
    left: 20px;
  }
}
table.vrtx-person-listing tbody .vrtx-person-listing-name img {
  aspect-ratio: auto;
  height: 100%;
  margin: 0;
}
table.vrtx-person-listing tbody .vrtx-person-listing-name a:not(.vrtx-image) {
  font-weight: bold;
}
@media (min-width: 751px) {
  table.vrtx-person-listing tbody .vrtx-person-listing-name a:not(.vrtx-image) {
    font-size: var(--font-size-large-10);
  }
}
table.vrtx-person-listing tbody .vrtx-person-listing-name span {
  display: block;
}
@media (max-width: 1100px) {
  table.vrtx-person-listing,
  table.vrtx-person-listing caption,
  table.vrtx-person-listing tbody,
  table.vrtx-person-listing tr,
  table.vrtx-person-listing th,
  table.vrtx-person-listing td {
    display: block;
  }
  table.vrtx-person-listing thead {
    display: none;
  }
  table.vrtx-person-listing th,
  table.vrtx-person-listing td {
    padding: 0;
  }
  table.vrtx-person-listing tbody tr {
    position: relative;
    padding: 20px 10px 20px 130px;
    min-height: 190px;
  }
}
#vrtx-person .vrtx-article-body {
  border: none;
  padding: 0;
  margin-bottom: 50px;
}
.vrtx-person-contactinfo .vrtx-label {
  display: block;
  font-weight: bold;
}
.vrtx-person-contact-info-line {
  margin-bottom: 15px;
}
#vrtx-uh-person-listing .vrtx-person-listing-counter {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
#vrtx-uh-person #vrtx-person-top-area {
  display: grid;
  margin-bottom: 50px;
}
#vrtx-uh-person #vrtx-person-top-area img {
  width: 250px;
}
#vrtx-uh-person #vrtx-person-top-area .vrtx-position-unit {
  margin-bottom: 20px;
}
#vrtx-uh-person #vrtx-person-top-area .vrtx-position-unit span {
  display: block;
}
#vrtx-uh-person #vrtx-person-top-area .vrtx-person-contact-info-list dd {
  margin-bottom: 20px;
}
#vrtx-uh-person #vrtx-person-top-area #vrtx-person-contact-info-press-photo-vcard {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 751px) {
  #vrtx-uh-person #vrtx-person-top-area {
    grid-template-columns: auto 1fr;
    column-gap: 40px;
  }
  #vrtx-uh-person #vrtx-person-top-area h1 {
    grid-column: 1/3;
  }
  #vrtx-uh-person #vrtx-person-top-area img {
    grid-row: 2/5;
    margin: 0;
  }
  #vrtx-uh-person #vrtx-person-top-area .vrtx-position-unit {
    grid-column: 2;
  }
}
#vrtx-uh-person #vrtx-person-top-area:not(:has(img)) {
  display: block;
}
#vrtx-uh-exchange-listing #filters-form,
#vrtx-uh-person-listing #filters-form,
#vrtx-filter-event-listing #filters-form {
  margin-bottom: 25px;
}
#vrtx-uh-exchange-listing #filters-form fieldset ul,
#vrtx-uh-person-listing #filters-form fieldset ul,
#vrtx-filter-event-listing #filters-form fieldset ul {
  list-style: none;
  padding: 0;
}
#vrtx-uh-exchange-listing #filters-form fieldset li,
#vrtx-uh-person-listing #filters-form fieldset li,
#vrtx-filter-event-listing #filters-form fieldset li {
  display: flex;
  align-items: baseline;
  width: fit-content;
  gap: 5px;
}
#vrtx-uh-exchange-listing #filters-form fieldset li input,
#vrtx-uh-person-listing #filters-form fieldset li input,
#vrtx-filter-event-listing #filters-form fieldset li input {
  flex-shrink: 0;
}
#vrtx-uh-exchange-listing #filters-form fieldset li label,
#vrtx-uh-person-listing #filters-form fieldset li label,
#vrtx-filter-event-listing #filters-form fieldset li label {
  flex-grow: 1;
  cursor: pointer;
}
#vrtx-uh-exchange-listing #filters-form fieldset li label:hover,
#vrtx-uh-person-listing #filters-form fieldset li label:hover,
#vrtx-filter-event-listing #filters-form fieldset li label:hover {
  text-decoration: underline;
}
#vrtx-uh-exchange-listing #filters-form #vrtx-filter-query,
#vrtx-uh-person-listing #filters-form #vrtx-filter-query,
#vrtx-filter-event-listing #filters-form #vrtx-filter-query {
  display: flex;
  gap: 10px;
  max-width: var(--width-text-max);
  margin-bottom: 25px;
}
#vrtx-uh-exchange-listing #filters-form #vrtx-filter-query input,
#vrtx-uh-person-listing #filters-form #vrtx-filter-query input,
#vrtx-filter-event-listing #filters-form #vrtx-filter-query input {
  width: 100%;
}
#vrtx-uh-exchange-listing #filters-form #vrtx-filter-query button,
#vrtx-uh-person-listing #filters-form #vrtx-filter-query button,
#vrtx-filter-event-listing #filters-form #vrtx-filter-query button {
  flex-shrink: 0;
}
#vrtx-uh-exchange-listing #vrtx-main-content:not(:has(ul.active-filters)) span.active-filters,
#vrtx-uh-person-listing #vrtx-main-content:not(:has(ul.active-filters)) span.active-filters,
#vrtx-filter-event-listing #vrtx-main-content:not(:has(ul.active-filters)) span.active-filters {
  display: none;
}
#vrtx-uh-exchange-listing span.active-filters,
#vrtx-uh-person-listing span.active-filters,
#vrtx-filter-event-listing span.active-filters {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
#vrtx-uh-exchange-listing ul.active-filters,
#vrtx-uh-person-listing ul.active-filters,
#vrtx-filter-event-listing ul.active-filters {
  list-style: none;
  padding: 0;
  margin: 0 5px 0 0;
}
#vrtx-uh-exchange-listing ul.active-filters,
#vrtx-uh-person-listing ul.active-filters,
#vrtx-filter-event-listing ul.active-filters,
#vrtx-uh-exchange-listing ul.active-filters li,
#vrtx-uh-person-listing ul.active-filters li,
#vrtx-filter-event-listing ul.active-filters li {
  display: inline-block;
}
#vrtx-uh-exchange-listing ul.active-filters li,
#vrtx-uh-person-listing ul.active-filters li,
#vrtx-filter-event-listing ul.active-filters li {
  margin: 0 5px 10px 0;
}
#vrtx-uh-exchange-listing ul.active-filters a,
#vrtx-uh-person-listing ul.active-filters a,
#vrtx-filter-event-listing ul.active-filters a {
  display: flex;
  gap: 10px;
  font-size: var(--font-size-small);
  line-height: 1.3;
  text-decoration: none;
  padding: 5px 15px;
  background-color: var(--color-neutral-tint-95);
  border-radius: var(--radius);
}
#vrtx-uh-exchange-listing ul.active-filters a::after,
#vrtx-uh-person-listing ul.active-filters a::after,
#vrtx-filter-event-listing ul.active-filters a::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  background: url("/vrtx/dist/resources/x1/images/x-small.svg") no-repeat center;
  background-size: contain;
}
#vrtx-uh-exchange-listing ul.active-filters a:hover,
#vrtx-uh-person-listing ul.active-filters a:hover,
#vrtx-filter-event-listing ul.active-filters a:hover {
  text-decoration: underline;
}
#vrtx-uh-exchange-listing .clear-filters,
#vrtx-uh-person-listing .clear-filters,
#vrtx-filter-event-listing .clear-filters {
  display: inline-block;
  margin-bottom: 20px;
}
.vrtx-listing-filter-custom {
  list-style: none;
  padding: 0;
}
.vrtx-listing-filter-custom li {
  margin-bottom: 10px;
}
.vrtx-listing-filter-custom li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vrtx-listing-filter-custom li a::before {
  content: "";
  flex-shrink: 0;
  border: 1px solid;
  width: 18px;
  height: 18px;
}
.vrtx-listing-filter-custom li a:hover {
  text-decoration: underline;
}
.vrtx-listing-filter-custom li a[aria-checked="true"]::before {
  background: black url("../images/check-white.svg") no-repeat center;
}
.vrtx-listing-filter-custom.vrtx-listing-filter-custom-horizontal li {
  display: inline-block;
  margin-right: 20px;
}
.grid-container.inactive-row {
  display: none;
}
#vrtx-publications-wrapper {
  max-width: var(--width-soft-max);
}
#vrtx-publications-wrapper h2 {
  margin: 0;
}
#vrtx-publication-tabs ul {
  list-style: none;
  padding: 0;
}
#vrtx-publication-tabs > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  margin-bottom: 10px;
}
@media (min-width: 1101px) {
  #vrtx-publication-tabs > ul {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 1;
  }
}
#vrtx-publication-tabs > ul a {
  display: block;
  border: 1px solid;
  border-radius: var(--radius);
  padding: 5px 15px;
  text-decoration: none;
}
#vrtx-publication-tabs > ul a:focus {
  outline-offset: 4px;
}
#vrtx-publication-tabs > ul a:hover {
  background-color: var(--color-neutral-tint-95);
}
#vrtx-publication-tabs > ul a[aria-expanded=true] {
  background-color: black;
  border-color: transparent;
  color: white;
}
div[id*=vrtx-publication-tab-] {
  outline: none;
  display: none;
}
div[id*=vrtx-publication-tab-].selected {
  display: block;
}
@media (min-width: 1101px) {
  div[id*=vrtx-publication-tab-] {
    margin-top: -80px;
    padding-top: 80px;
  }
}
ul.vrtx-external-publications li {
  margin-bottom: 25px;
}
ul.vrtx-external-publications .vrtx-title {
  display: block;
  font-weight: bold;
}
.vrtx-publication-summary {
  display: block;
}
.vrtx-publication-summary a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 5px;
  border: 1px solid;
  border-radius: var(--radius);
  padding: 5px 15px;
  text-decoration: none;
}
.vrtx-publication-summary a::before {
  content: "";
  flex-shrink: 0;
  background: url("/vrtx/dist/resources/x1/images/chevron.svg") no-repeat center;
  background-size: contain;
  height: 1em;
  width: 8px;
  transition: all 0.3s;
}
.vrtx-publication-summary a[aria-expanded=true]::before {
  transform: rotate(90deg);
}
.vrtx-publication-summary a:focus {
  outline-offset: 4px;
}
.vrtx-publication-summary p {
  margin: 10px 0 0 0;
  display: none;
}
.vrtx-publication-summary p.open {
  display: block;
}
#vrtx-uh-project #vrtx-content,
#vrtx-uh-research-group #vrtx-content {
  max-width: var(--width-soft-max);
  margin: 0 auto;
}
#vrtx-uh-project .vrtx-article-body,
#vrtx-uh-research-group .vrtx-article-body {
  border: none;
  padding: 0;
}
#vrtx-uh-research-group .vrtx-article-body,
#vrtx-uh-research-group .vrtx-comp-person-list,
#vrtx-uh-research-group .vrtx-projects {
  margin-bottom: 50px;
}
#vrtx-uh-project h1 .vrtx-short-title {
  font-weight: bold;
}
#vrtx-uh-project .vrtx-fullsize-image-title,
#vrtx-uh-project .vrtx-middle-image {
  margin-bottom: 50px;
}
#vrtx-uh-project .vrtx-fullsize-image-title img,
#vrtx-uh-project .vrtx-middle-image img {
  margin: 0;
}
#vrtx-uh-project .vrtx-introduction {
  margin-bottom: 80px;
}
#vrtx-uh-project #vrtx-uh-project-content > div {
  margin-bottom: 100px;
}
#vrtx-uh-project .vrtx-contact-persons ul,
#vrtx-uh-project .vrtx-participants ul {
  display: grid;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 1101px) {
  #vrtx-uh-project .vrtx-contact-persons ul,
  #vrtx-uh-project .vrtx-participants ul {
    grid-template-columns: 1fr 1fr;
  }
}
#vrtx-uh-project .vrtx-contact-persons li,
#vrtx-uh-project .vrtx-participants li {
  position: relative;
  display: grid;
  grid-template-columns: 100px auto;
  align-items: center;
  gap: 30px;
  padding: 0;
}
#vrtx-uh-project .vrtx-contact-persons li img,
#vrtx-uh-project .vrtx-participants li img,
#vrtx-uh-project .vrtx-contact-persons li:not(:has(img))::before,
#vrtx-uh-project .vrtx-participants li:not(:has(img))::before {
  object-fit: cover;
  aspect-ratio: 3/4;
}
#vrtx-uh-project .vrtx-contact-persons li img,
#vrtx-uh-project .vrtx-participants li img {
  margin: 0;
}
#vrtx-uh-project .vrtx-contact-persons li:not(:has(img))::before,
#vrtx-uh-project .vrtx-participants li:not(:has(img))::before {
  content: "";
  background: var(--color-neutral-tint-90);
}
#vrtx-uh-project .vrtx-contact-persons .vrtx-project-participant-info,
#vrtx-uh-project .vrtx-participants .vrtx-project-participant-info {
  display: grid;
}
#vrtx-uh-project .vrtx-contact-persons .vrtx-project-participant-info > *,
#vrtx-uh-project .vrtx-participants .vrtx-project-participant-info > * {
  font-size: var(--font-size-small);
}
#vrtx-uh-project .vrtx-contact-persons .vrtx-project-participant-info > *:first-child,
#vrtx-uh-project .vrtx-participants .vrtx-project-participant-info > *:first-child {
  font-size: inherit;
  font-weight: bold;
}
#vrtx-uh-project .vrtx-contact-persons .vrtx-project-participant-info a::before,
#vrtx-uh-project .vrtx-participants .vrtx-project-participant-info a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#vrtx-uh-project .vrtx-contact-persons.no-images li,
#vrtx-uh-project .vrtx-participants.no-images li {
  grid-template-columns: auto;
}
#vrtx-uh-project .vrtx-contact-persons.no-images li::before,
#vrtx-uh-project .vrtx-participants.no-images li::before {
  display: none;
}
#vrtx-uh-project .financing {
  max-width: var(--width-text-max);
}
#vrtx-uh-project .vrtx-grey-lower-banner {
  background-color: var(--color-neutral-tint-95);
  width: 100vw;
  margin-bottom: var(--space);
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-top: calc(2 * var(--space));
  padding-bottom: calc(2 * var(--space));
  padding-right: 50px;
}
@media (max-width: 750px) {
  #vrtx-uh-project .vrtx-grey-lower-banner {
    padding-right: 15px;
  }
}
#vrtx-uh-project .vrtx-grey-lower-banner > * {
  max-width: var(--width-text-max);
}
#vrtx-uh-project .vrtx-grey-lower-banner > *:not(:last-child) {
  margin-bottom: 50px;
}
#vrtx-uh-project .vrtx-grey-lower-banner h2:not(.accordion) {
  margin-bottom: 20px;
}
/*
Enables horizontal scroll for frontpage feeds and events. Needs script of same name.
If max items in feed matches number of columns, scroll functionality will only be present on small screen.

Classes:
- scroll-column-feed: Three column default
- scroll-column-feed-four
- scroll-column-feed-wide: Three column. Goes outside content-width. Only for special cases.
*/
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-box-content {
  overflow: auto;
  scrollbar-width: none;
}
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-box-content::-webkit-scrollbar {
  display: none;
}
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items,
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component {
  display: flex;
}
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items > *,
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component > * {
  flex-shrink: 0;
}
@media (min-width: 1101px) {
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items > *,
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component > * {
    flex-basis: calc(30% - var(--space));
  }
}
@media (max-width: 1100px) {
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items > *,
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component > * {
    flex-basis: calc(45% - var(--space));
  }
}
@media (max-width: 750px) {
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items > *,
  .vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component > * {
    flex-basis: calc(90% - var(--space));
  }
}
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-feed .items.limited > *,
.vrtx-frontpage-box[class*="scroll-column-feed"] .vrtx-event-component.limited > * {
  flex-grow: 1;
  max-width: var(--width-text-max);
}
@media (min-width: 1101px) {
  .vrtx-frontpage-box.scroll-column-feed-four .vrtx-feed .items > *,
  .vrtx-frontpage-box.scroll-column-feed-four .vrtx-event-component > * {
    flex-basis: calc(23% - var(--space));
  }
}
.vrtx-frontpage-box.scroll-column-feed-wide .vrtx-feed .items,
.vrtx-frontpage-box.scroll-column-feed-wide .vrtx-event-component,
.vrtx-frontpage-box.scroll-column-feed-wide .vrtx-more {
  padding-left: calc((100vw - (var(--width-total-max) - 100px)) / 2);
}
@media (max-width: 1500px) {
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-feed .items,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-event-component,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-more {
    padding-left: 50px;
  }
}
@media (max-width: 750px) {
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-feed .items,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-event-component,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-more {
    padding-left: 15px;
  }
}
@media (min-width: 1501px) {
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-feed .items > *,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-event-component > *,
  .vrtx-frontpage-box.scroll-column-feed-wide .vrtx-more > * {
    flex-basis: 420px;
  }
}
.row:has([class*="scroll-column-feed"]) .heading-prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.row:has([class*="scroll-column-feed"]) h2 {
  margin: 0;
}
.row:has([class*="scroll-column-feed"]) .buttons {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.row:has([class*="scroll-column-feed"]) .prev {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  transform: rotate(180deg);
}
.row:has([class*="scroll-column-feed"]) .next {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}
.row:has([class*="scroll-column-feed"]):has(.limited) .buttons {
  display: none;
}
.row:has(.scroll-column-feed-wide) {
  padding: 0;
  margin: 0;
  max-width: none;
}
.row:has(.scroll-column-feed-wide) .heading-prev-next {
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  max-width: var(--width-total-max);
}
@media (max-width: 750px) {
  .row:has(.scroll-column-feed-wide) .heading-prev-next {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*
Adds motion to frontpage rows. Needs JS of same name.

NOTE: THIS IS TO BE CONSIDERED AS EXPERIMENTAL
As of december 2024 there has not been a viable case for good use of this.
Mostly it's a gimmick that should be avoided. So consider carefully.

- Note the use of prefers-reduced-motion
- Not recommended for rows that are above fold on load
- Some motion types may need reduced duration on small screen or they will be slow
- Can use transition-delay to adjust when motion starts

Two classes added to row (not box). "scroll-motion" + [motion-type], example:
"scroll-motion reveal-to-center"
"scroll-motion slide-from-right"

Motion-types:
- slide-from-right
- reveal-to-center
- image-reveal
*/
@media (prefers-reduced-motion: no-preference) {
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion {
    overflow: hidden;
    /*************************************************************
      Motion type: Slide-from-right

      Best for feeds and other low, horizontally oriented content
      **************************************************************/
    /**************************************************************
      Motion-type: Reveal-to-center

      Note that before-element background must match local colors
      Best for img/box/link-special
      ***************************************************************/
    /**************************************************************
      Motion-type: Image-reveal

      Note that before-element background must match local colors
      Best for img-special
      **************************************************************/
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.slide-from-right .vrtx-frontpage-box {
    transform: translateX(90vw);
    transition: transform 0.75s ease-in-out;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.slide-from-right.entered-view .vrtx-frontpage-box {
    transform: translateX(0);
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.reveal-to-center {
    position: relative;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.reveal-to-center::before {
    content: "";
    background-color: white;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: width 0.75s ease-in-out;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.reveal-to-center.row-all-colored::before {
    background-color: var(--color-neutral-tint-opaque-95);
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.reveal-to-center.entered-view::before {
    width: 0;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal .vrtx-frontpage-box .vrtx-frontpage-box-picture {
    position: relative;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal .vrtx-frontpage-box .vrtx-frontpage-box-picture::before {
    content: "";
    background-color: white;
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: width 0.75s ease-in-out;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal .vrtx-frontpage-box.img-special-right .vrtx-frontpage-box-picture::before {
    left: auto;
    right: 0;
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal.row-all-colored .vrtx-frontpage-box .vrtx-frontpage-box-picture::before {
    background-color: var(--color-neutral-tint-opaque-95);
  }
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal.entered-view .vrtx-frontpage-box .vrtx-frontpage-box-picture::before {
    width: 0;
  }
}
@media (prefers-reduced-motion: no-preference) and (max-width: 750px) {
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.reveal-to-center::before {
    transition-duration: 0.5s;
  }
}
@media (prefers-reduced-motion: no-preference) and (max-width: 750px) {
  body:not(.vrtx-mode-edit) .grid-container.scroll-motion.image-reveal .vrtx-frontpage-box .vrtx-frontpage-box-picture::before {
    transition-duration: 0.5s;
  }
}
body#vrtx-fs-studieprogram-finder #main {
  margin: 0;
  padding: 0;
  max-width: none;
}
body#vrtx-fs-studieprogram-finder #vrtx-breadcrumb-wrapper,
body#vrtx-fs-studieprogram-finder h1,
body#vrtx-fs-studieprogram-finder #study-program-finder {
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  max-width: var(--width-total-max);
}
@media (max-width: 750px) {
  body#vrtx-fs-studieprogram-finder #vrtx-breadcrumb-wrapper,
  body#vrtx-fs-studieprogram-finder h1,
  body#vrtx-fs-studieprogram-finder #study-program-finder {
    padding-right: 15px;
    padding-left: 15px;
  }
}
body#vrtx-fs-studieprogram-finder #vrtx-main-content {
  background-color: var(--color-neutral-tint-95);
  padding: 20px 0;
}
body#vrtx-fs-studieprogram-finder #global-sub-menu {
  display: none;
}
@media (min-width: 1101px) {
  #study-program-finder {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
  }
}
#study-program-finder ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#study-program-finder .studies-filter {
  font-size: var(--font-size-small);
  margin-bottom: 20px;
}
#study-program-finder .studies-filter .inner {
  background-color: white;
  padding: 20px;
}
@media (min-width: 1101px) {
  #study-program-finder .studies-filter .inner {
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow: auto;
  }
}
#study-program-finder .studies-filter h2 {
  font-size: var(--font-size-base);
  font-weight: normal;
  color: var(--color-neutral-tint-25);
  margin: 0 0 5px 0;
}
#study-program-finder .studies-filter input,
#study-program-finder .studies-filter select {
  outline-color: currentColor;
}
#study-program-finder .studies-filter .text-filter {
  background-color: white;
  padding: 20px 20px 25px;
  margin-bottom: 20px;
}
#study-program-finder .studies-filter .text-filter form {
  position: relative;
}
#study-program-finder .studies-filter .text-filter input {
  width: 100%;
  padding-right: 50px;
  font-size: var(--font-size-large-05);
}
#study-program-finder .studies-filter .text-filter input::placeholder {
  font-size: var(--font-size-small);
}
#study-program-finder .studies-filter .text-filter button {
  background: url("/vrtx/dist/resources/x1/images/search.svg") no-repeat center;
  background-size: 18px;
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  border: none;
}
#study-program-finder .studies-filter .checkbox-filter {
  margin-bottom: 20px;
  font-size: var(--font-size-base);
}
#study-program-finder .studies-filter .checkbox-filter:not(.facet-in-use) {
  display: none;
}
#study-program-finder .studies-filter .checkbox-filter label {
  cursor: pointer;
}
#study-program-finder .studies-filter .checkbox-filter label:hover {
  text-decoration: underline;
}
#study-program-finder .studies-filter .checkbox-filter label strong {
  font-weight: normal;
  text-transform: lowercase;
}
#study-program-finder .studies-filter .button-filter li {
  display: inline-block;
  margin: 0 5px 10px 0;
}
#study-program-finder .studies-filter .button-filter label {
  position: relative;
  display: block;
  border: 1px solid;
  border-radius: var(--radius);
  padding: 5px 10px;
  cursor: pointer;
}
#study-program-finder .studies-filter .button-filter label:focus-within {
  box-shadow: 0 0 0 2px white, 0 0 0 4px black;
}
#study-program-finder .studies-filter .button-filter label:hover {
  background-color: var(--color-neutral-tint-95);
}
#study-program-finder .studies-filter .button-filter label.selected {
  background-color: black;
  border-color: transparent;
  color: white;
}
#study-program-finder .studies-filter .button-filter input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
#study-program-finder .studies-filter .dropdown-filter select {
  width: 100%;
}
#study-program-finder .studies-filter .topics-filter-group {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  #study-program-finder .studies-filter .topics-filter-group .button-filter label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80vw;
  }
}
#study-program-finder .studies-filter .secondary-filter-group {
  display: grid;
  gap: 20px;
}
@media (min-width: 751px) {
  #study-program-finder .studies-filter .secondary-filter-group {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 750px) {
  #study-program-finder .studies-filter .secondary-filter-group {
    margin-top: 20px;
  }
  #study-program-finder .studies-filter .secondary-filter-group:not(.expanded) {
    display: none;
  }
}
#study-program-finder .studies-filter .expand-filters {
  display: flex;
  background: none;
  padding: 0;
  border: none;
  font-size: var(--font-size-base);
}
#study-program-finder .studies-filter .expand-filters::before {
  content: "";
  background: url("/vrtx/dist/resources/x1/images/chevron.svg") no-repeat center;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  align-self: center;
  margin-right: 3px;
  transition: all 0.3s;
}
#study-program-finder .studies-filter .expand-filters.expanded::before {
  transform: rotate(90deg);
}
@media (min-width: 751px) {
  #study-program-finder .studies-filter .expand-filters {
    display: none;
  }
}
#study-program-finder .studies-feedback {
  background-color: #0001;
  padding: 15px 20px;
  margin-bottom: 20px;
}
#study-program-finder .studies-feedback .studies-message h2 {
  font-size: var(--font-size-large-10);
  font-weight: normal;
  margin: 0;
}
#study-program-finder .studies-feedback .selected-facets-output:not(:empty) {
  margin-top: 10px;
}
#study-program-finder .studies-feedback .selected-facets-output span:not(:last-child)::after {
  content: "?";
  margin: 0 5px;
  opacity: 0.5;
}
#study-program-finder .studies-feedback .clear-facets {
  margin: 15px 0 5px;
}
#study-program-finder .studies-feedback.no-selected-facets .clear-facets {
  display: none;
}
#study-program-finder .studies-list li {
  margin-bottom: 20px;
}
#study-program-finder .studies-list li.inactive {
  display: none;
}
#study-program-finder .studies-list li:has(.no-applicants) .facet:not(.no-applicants) {
  display: none;
}
#study-program-finder .studies-list li:has(.no-applicants) a {
  background: none;
  border: 1px dashed var(--color-neutral-tint-30);
}
#study-program-finder .studies-list li:has(.no-applicants) img {
  display: none;
}
#study-program-finder .studies-list a {
  display: flex;
  justify-content: space-between;
  background-color: white;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
#study-program-finder .studies-list a:hover {
  transform: scale(1.03);
}
#study-program-finder .studies-list a > div {
  padding: 20px 20px 25px;
}
@media (max-width: 750px) {
  #study-program-finder .studies-list a > div {
    font-size: var(--font-size-small);
  }
}
#study-program-finder .studies-list img {
  order: 2;
  margin: 0;
  object-fit: cover;
}
@media (min-width: 751px) {
  #study-program-finder .studies-list img {
    width: 120px;
    align-self: stretch;
  }
}
@media (max-width: 750px) {
  #study-program-finder .studies-list img {
    width: 60px;
    height: 60px;
    align-self: center;
  }
}
#study-program-finder .studies-list h3 {
  margin-bottom: 5px;
}
@media (max-width: 750px) {
  #study-program-finder .studies-list h3 {
    font-size: var(--font-size-large-05);
  }
}
#study-program-finder .studies-list span:not(:last-child)::after {
  content: "?";
  margin-left: 5px;
  opacity: 0.5;
}
#study-program-finder .studies-list .topic {
  display: none;
}
.vrtx-fs-study-model form[id*="direction-form-"] {
  margin: 10px 0 40px;
}
.vrtx-fs-study-model form[id*="direction-form-"] p {
  margin-bottom: 10px;
}
.vrtx-fs-study-model form[id*="direction-form-"] input,
.vrtx-fs-study-model form[id*="direction-form-"] label {
  cursor: pointer;
}
.vrtx-fs-study-model form[id*="direction-form-"] input {
  position: absolute;
  opacity: 0;
}
.vrtx-fs-study-model form[id*="direction-form-"] label {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-neutral-tint-95);
  width: fit-content;
  padding: 10px 15px;
  line-height: 1.3;
}
@media (max-width: 750px) {
  .vrtx-fs-study-model form[id*="direction-form-"] label {
    font-size: var(--font-size-small);
  }
}
.vrtx-fs-study-model form[id*="direction-form-"] label::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border: 4px solid white;
  border-radius: 100%;
  box-shadow: 0 0 0 2px black;
  background-color: white;
}
.vrtx-fs-study-model form[id*="direction-form-"] label:hover {
  background-color: var(--color-neutral-tint-90);
}
.vrtx-fs-study-model form[id*="direction-form-"] input:focus + label {
  outline: 2px solid black;
  outline-offset: 2px;
}
.vrtx-fs-study-model form[id*="direction-form-"] input:checked + label {
  background-color: black;
  color: white;
}
.vrtx-fs-study-model form[id*="direction-form-"] input:checked + label::before {
  background-color: black;
}
.vrtx-fs-study-model form[id*="direction-form-"].js-handled button[type=submit] {
  display: none;
}
.vrtx-fs-study-model h3 .heading-message {
  display: none;
  font-size: var(--font-size-base);
  font-weight: normal;
}
.vrtx-fs-study-model h3.no-siblings-after .heading-message {
  display: block;
}
/*
Needs x-timeline.js

NOTE:
May need override of width and position if local differences from X
See section: Width and position
*/
.timeline-heading-prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.timeline-heading-prev-next h2 {
  margin: 0;
}
.timeline-heading-prev-next .buttons {
  margin-left: auto;
  display: flex;
  gap: 10px;
}
.timeline-heading-prev-next .prev {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  transform: rotate(180deg);
}
.timeline-heading-prev-next .next {
  background-image: url("/vrtx/dist/resources/x1/images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}
.timeline-heading-prev-next.no-overflow .buttons {
  display: none;
}
#vrtx-structured-article .timeline,
#vrtx-frontpage .timeline .vrtx-box-content {
  display: flex;
  overflow: auto;
  scrollbar-width: none;
}
#vrtx-structured-article .timeline::-webkit-scrollbar,
#vrtx-frontpage .timeline .vrtx-box-content::-webkit-scrollbar {
  display: none;
}
#vrtx-structured-article .timeline > div,
#vrtx-frontpage .timeline .vrtx-box-content > div {
  position: relative;
  z-index: 1;
  background-color: var(--color-neutral-tint-opaque-95);
  border-radius: var(--radius);
  border-top-left-radius: 0;
  padding: 25px;
  margin-top: 70px;
  flex-shrink: 0;
  margin-right: 3%;
  flex-basis: 29%;
}
@media (max-width: 1100px) {
  #vrtx-structured-article .timeline > div,
  #vrtx-frontpage .timeline .vrtx-box-content > div {
    flex-basis: 45%;
  }
}
@media (max-width: 750px) {
  #vrtx-structured-article .timeline > div,
  #vrtx-frontpage .timeline .vrtx-box-content > div {
    flex-basis: 90%;
  }
}
#vrtx-structured-article .timeline > div::before,
#vrtx-frontpage .timeline .vrtx-box-content > div::before,
#vrtx-structured-article .timeline > div::after,
#vrtx-frontpage .timeline .vrtx-box-content > div::after,
#vrtx-structured-article .timeline > div > *:first-child::before,
#vrtx-frontpage .timeline .vrtx-box-content > div > *:first-child::before {
  content: "";
  position: absolute;
}
#vrtx-structured-article .timeline > div::before,
#vrtx-frontpage .timeline .vrtx-box-content > div::before,
#vrtx-structured-article .timeline > div::after,
#vrtx-frontpage .timeline .vrtx-box-content > div::after {
  top: -70px;
}
#vrtx-structured-article .timeline > div::before,
#vrtx-frontpage .timeline .vrtx-box-content > div::before {
  content: "";
  position: absolute;
  width: 104%;
  height: 13px;
  border-bottom: 2px dashed;
}
#vrtx-structured-article .timeline > div:last-of-type::before,
#vrtx-frontpage .timeline .vrtx-box-content > div:last-of-type::before {
  display: none;
}
#vrtx-structured-article .timeline > div::after,
#vrtx-frontpage .timeline .vrtx-box-content > div::after {
  width: 24px;
  height: 24px;
  background-color: inherit;
  border: 2px solid;
  border-radius: 100%;
  left: 0;
}
#vrtx-structured-article .timeline > div > *:first-child,
#vrtx-frontpage .timeline .vrtx-box-content > div > *:first-child,
#vrtx-structured-article .timeline > div > *:first-child::before,
#vrtx-frontpage .timeline .vrtx-box-content > div > *:first-child::before {
  background-color: inherit;
}
#vrtx-structured-article .timeline > div > *:first-child::before,
#vrtx-frontpage .timeline .vrtx-box-content > div > *:first-child::before {
  transform: skew(0deg, 45deg);
  width: 40px;
  height: 40px;
  left: 0;
  top: -10px;
  z-index: -1;
}
#vrtx-structured-article .timeline > div h2,
#vrtx-frontpage .timeline .vrtx-box-content > div h2 {
  font-size: var(--font-size-large-20);
  margin: 0 0 15px 0;
}
#vrtx-structured-article .timeline > div p,
#vrtx-frontpage .timeline .vrtx-box-content > div p {
  margin-bottom: 15px;
}
#vrtx-structured-article .timeline > div figure,
#vrtx-frontpage .timeline .vrtx-box-content > div figure {
  margin: 0 0 20px 0;
}
#vrtx-frontpage .row-all-colored .timeline .vrtx-box-content > div {
  background-color: white;
}
@media (min-width: 751px) {
  #vrtx-structured-article .timeline-heading-prev-next,
  #vrtx-structured-article .timeline {
    width: calc(100vw - 100px);
  }
}
@media (min-width: 1101px) {
  #vrtx-structured-article .timeline-heading-prev-next,
  #vrtx-structured-article .timeline {
    margin-left: calc(0px - var(--indent));
  }
}
@media (min-width: 1501px) {
  #vrtx-structured-article .timeline-heading-prev-next,
  #vrtx-structured-article .timeline {
    width: calc(var(--width-total-max) - 100px);
  }
}
#vrtx-structured-article .timeline-heading-prev-next {
  margin-top: 50px;
}
#vrtx-structured-article .timeline {
  margin-bottom: 80px;
}
/*
CK5 only
Needs script of same name

- Fullscreen media (images and video) on article pages.
- Sticky effect if figcaption present.
- Transition effect if placed in fullscreen-group.
*/
#vrtx-structured-article {
  overflow-x: hidden;
}
#vrtx-structured-article figure:has(img.fullscreen),
#vrtx-structured-article figure.background-video {
  /*
    Viewport largest height is default 100vh
    Recalculated for touch-screen with JS, since vh
    varies in iOS with toolbars appearing on scroll
    */
  --viewport-largest-height: 100vh;
  /*
    Figcaption
    Due to a bug in Chrome iOS where it can sometimes underlap image, it's important that
    it doesn't go outside view until the image in non-sticky / moves normally with scroll,
    so top pos and min height are set to ensure this. Flex to center text inside.
    */
  --center: calc(var(--width-total-max) / 2 - 50px - var(--indent));
}
#vrtx-structured-article figure:has(img.fullscreen),
#vrtx-structured-article figure.background-video,
#vrtx-structured-article figure:has(img.fullscreen) img,
#vrtx-structured-article figure.background-video img,
#vrtx-structured-article figure:has(img.fullscreen) video,
#vrtx-structured-article figure.background-video video {
  transition: height 0.3s;
}
#vrtx-structured-article figure:has(img.fullscreen) img,
#vrtx-structured-article figure.background-video img,
#vrtx-structured-article figure:has(img.fullscreen) video,
#vrtx-structured-article figure.background-video video {
  object-fit: cover;
  width: 100vw;
  max-width: none;
  height: var(--viewport-largest-height);
}
#vrtx-structured-article figure:has(img.fullscreen) vrtx-component-block,
#vrtx-structured-article figure.background-video vrtx-component-block {
  line-height: 0;
}
#vrtx-structured-article figure:has(img.fullscreen):has(figcaption),
#vrtx-structured-article figure.background-video:has(figcaption) {
  position: relative;
  height: calc(2 * var(--viewport-largest-height));
}
#vrtx-structured-article figure:has(img.fullscreen):has(figcaption) img,
#vrtx-structured-article figure.background-video:has(figcaption) img,
#vrtx-structured-article figure:has(img.fullscreen):has(figcaption) vrtx-component-block,
#vrtx-structured-article figure.background-video:has(figcaption) vrtx-component-block {
  position: sticky;
  top: 0;
}
#vrtx-structured-article figure:has(img.fullscreen) figcaption,
#vrtx-structured-article figure.background-video figcaption {
  position: absolute;
  top: 45%;
  min-height: 100px;
  align-content: center;
  padding: 20px;
  background-color: white;
  font-size: inherit;
  color: inherit;
}
#vrtx-structured-article figure:has(img.fullscreen).focus-right img,
#vrtx-structured-article figure.background-video.focus-right img,
#vrtx-structured-article figure:has(img.fullscreen):has(.focus-right) img,
#vrtx-structured-article figure.background-video:has(.focus-right) img,
#vrtx-structured-article figure:has(img.fullscreen).focus-right video,
#vrtx-structured-article figure.background-video.focus-right video,
#vrtx-structured-article figure:has(img.fullscreen):has(.focus-right) video,
#vrtx-structured-article figure.background-video:has(.focus-right) video {
  object-position: 70% center;
}
#vrtx-structured-article figure:has(img.fullscreen).focus-left img,
#vrtx-structured-article figure.background-video.focus-left img,
#vrtx-structured-article figure:has(img.fullscreen):has(.focus-left) img,
#vrtx-structured-article figure.background-video:has(.focus-left) img,
#vrtx-structured-article figure:has(img.fullscreen).focus-left video,
#vrtx-structured-article figure.background-video.focus-left video,
#vrtx-structured-article figure:has(img.fullscreen):has(.focus-left) video,
#vrtx-structured-article figure.background-video:has(.focus-left) video {
  object-position: 30% center;
}
@media (max-width: 750px) {
  #vrtx-structured-article figure:has(img.fullscreen) img,
  #vrtx-structured-article figure.background-video img,
  #vrtx-structured-article figure:has(img.fullscreen) video,
  #vrtx-structured-article figure.background-video video {
    margin-left: -15px;
  }
  #vrtx-structured-article figure:has(img.fullscreen) figcaption,
  #vrtx-structured-article figure.background-video figcaption {
    font-size: var(--font-size-small);
    max-width: 400px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
@media (min-width: 751px) and (max-width: 1100px) {
  #vrtx-structured-article figure:has(img.fullscreen) img,
  #vrtx-structured-article figure.background-video img,
  #vrtx-structured-article figure:has(img.fullscreen) video,
  #vrtx-structured-article figure.background-video video {
    margin-left: -50px;
  }
  #vrtx-structured-article figure:has(img.fullscreen) figcaption,
  #vrtx-structured-article figure.background-video figcaption {
    width: 400px;
    left: calc(50vw - 15%);
  }
  #vrtx-structured-article figure:has(img.fullscreen).text-left figcaption,
  #vrtx-structured-article figure.background-video.text-left figcaption,
  #vrtx-structured-article figure:has(img.fullscreen):has(.text-left) figcaption,
  #vrtx-structured-article figure.background-video:has(.text-left) figcaption {
    left: 0;
  }
}
@media (min-width: 1101px) {
  #vrtx-structured-article figure:has(img.fullscreen) img,
  #vrtx-structured-article figure.background-video img,
  #vrtx-structured-article figure:has(img.fullscreen) video,
  #vrtx-structured-article figure.background-video video {
    margin-left: calc(-50px - var(--indent));
  }
  #vrtx-structured-article figure:has(img.fullscreen) figcaption,
  #vrtx-structured-article figure.background-video figcaption {
    width: 500px;
    padding: 40px;
    left: calc(50vw - 30%);
  }
  #vrtx-structured-article figure:has(img.fullscreen).text-left figcaption,
  #vrtx-structured-article figure.background-video.text-left figcaption,
  #vrtx-structured-article figure:has(img.fullscreen):has(.text-left) figcaption,
  #vrtx-structured-article figure.background-video:has(.text-left) figcaption {
    left: -150px;
  }
}
@media (min-width: 1501px) {
  #vrtx-structured-article figure:has(img.fullscreen) img,
  #vrtx-structured-article figure.background-video img,
  #vrtx-structured-article figure:has(img.fullscreen) video,
  #vrtx-structured-article figure.background-video video {
    margin-left: calc(var(--center) - 50vw);
  }
}
#vrtx-structured-article figure:has(img.fullscreen) + figure:has(img.fullscreen),
#vrtx-structured-article figure.background-video + figure:has(img.fullscreen),
#vrtx-structured-article figure:has(img.fullscreen) + .background-video,
#vrtx-structured-article figure.background-video + .background-video {
  margin-top: -40px;
}
#vrtx-structured-article #main .fullscreen-group {
  margin: 40px 0;
}
#vrtx-structured-article #main .fullscreen-group > *:not(figure) {
  display: none;
}
#vrtx-structured-article #main .fullscreen-group img,
#vrtx-structured-article #main .fullscreen-group vrtx-component-block {
  transition: height 0.3s, opacity 1s;
}
#vrtx-structured-article #main .fullscreen-group.active img,
#vrtx-structured-article #main .fullscreen-group.active vrtx-component-block {
  position: fixed;
  z-index: 0;
  opacity: 0;
}
#vrtx-structured-article #main .fullscreen-group figure {
  margin-bottom: 0;
}
#vrtx-structured-article #main .fullscreen-group figure.active img,
#vrtx-structured-article #main .fullscreen-group figure.active vrtx-component-block {
  z-index: 1;
  opacity: 1;
}
#vrtx-structured-article #main .fullscreen-group figure + figure {
  margin-top: calc(-1 * var(--viewport-largest-height));
}
#vrtx-structured-article #main .fullscreen-group figcaption {
  z-index: 2;
}
#vrtx-structured-article.vrtx-mode-preview figure:has(img.fullscreen),
#vrtx-structured-article.vrtx-mode-preview figure.background-video,
#vrtx-structured-article.vrtx-mode-preview figure:has(img.fullscreen) img,
#vrtx-structured-article.vrtx-mode-preview figure.background-video img,
#vrtx-structured-article.vrtx-mode-preview figure:has(img.fullscreen) video,
#vrtx-structured-article.vrtx-mode-preview figure.background-video video {
  height: 700px;
  transition: none;
}
#vrtx-structured-article.vrtx-mode-preview #main .fullscreen-group figure + figure {
  margin-top: -40px;
}

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