/*---------------------------------------------------------------------------------

  Theme Name: Cibedo 2025
  Text Domain: cibedo2025
  Version: 0.5.0
  Description: Theme für Cibedo e.V.
  Tags: 
  Author: Visualtech
  Author URI: https://visualtech.de
  License: 
  License URI: 
  Theme URI: 

---------------------------------------------------------------------------------*/



/* FONTS */

@font-face {
  font-family: "Asap Condensed";
  src: url("assets/fonts/AsapCondensed-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Asap Condensed";
  src: url("assets/fonts/AsapCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Variable.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
}



/* VARIABLES */

:root {
  /* colors */
  --green-hex: #2d9741;
  --green-rgb: 45, 151, 65;
  --green-scrollbar-hex: #cbe7d0;
  --gray-light-hex: #808080;
  --gray-light-rgb: 128, 128, 128;
  --gray-medium-hex: #494949;
  --gray-medium-rgb: 73, 73, 73;
  --gray-dark-hex: #202020;
  --gray-dark-rgb: 32, 32, 32;
  --red-hex: #e63541;
  --red-rgb: 230,53,65;

  /* browser appearance */
  --scrollbar-width: 8px;
  --scrollbar-track-background-color: var(--green-scrollbar-hex);
  --scrollbar-thumb-background-color: var(--green-hex);

  /* font */
  --asap: "Asap Condensed", sans-serif;
  --roboto: "Roboto", sans-serif;

  --font-family: var(--roboto);
  --font-size-factor: 1;
  --line-height: 1.2;
  --color: var(--gray-medium-hex);

  --heading-font-family: var(--asap);
  --h1-font-size: 2.7rem;
  --h2-font-size: 2.1rem;
  --h3-font-size: 1.8rem;
  --h4-font-size: 1.5rem;

  /* border-radiuses */
  --border-radius-xs: 6px;
  --border-radius-s: 12px;
  --border-radius-m: 18px;
  --border-radius-l: 24px;
  --border-radius-xl: 30px;

  /* buttons */
  --button-padding: .6em 1.5em;
  --button-font-family: var(--asap);
  --button-font-weight: 700;
  --button-font-size: 1.35rem;
  --button-border-radius: calc(var(--button-font-size) * .75);
  --button-color: #fff;
  --button-background-color: var(--green-hex);

  /* body */
  --body-background-color: #fff;

  /* header */
  --header-height: 150px;
  --header-padding-top-bottom: 15px;
  --header-padding-right-left: 60px;

  --header-background-color: #fff;
  --header-shadow: 0px 0px 12px rgba(0, 0, 0, .15);

  --header-logo-width: 145px;
  --header-logo-height: calc(var(--header-height) - var(--header-padding-top-bottom) * 2);

  --main-menu-height: var(--header-height);
  --main-menu-primary-background-color: #fff;
  --main-menu-secondary-background-color: #fff;
  --main-menu-color: var(--gray-medium-hex);
  --main-menu-font-family: var(--asap);
  --main-menu-font-weight: 500;
  --main-menu-font-size: 1.5625rem;
  --main-menu-toggle-width: 2rem;
  --main-menu-toggle-font-size: 2.5rem;

  /* archive */
  --archive-post-font-size: 1.125rem;

  /* main */
  --main-min-height: calc(100vh - var(--main-menu-height) - var(--footer-height));
  --main-font-size: 1.125rem;

  --content-width: 1080px;

  --section-padding-top-bottom: 60px;
  --section-padding-right-left: 150px;
  --section-padding-right-left-dynamic: max(calc((100vw - var(--content-width)) / 2), var(--section-padding-right-left));

  --section-atf-height: calc(100vh - var(--main-menu-height) - 20vh);
  --section-atf-height: 600px;

  --section-home-padding-right-left: 150px;

  --slide-margin-bottom: 10px;
  --slider-shadow: 0;
  --slider-arrow-width: 15px;
  --slider-arrow-height: var(--slider-arrow-width);
  --slider-arrow-background-width: calc(var(--slider-arrow-width) * 2);
  --slider-arrow-background-height: var(--slider-arrow-background-width);
  --slider-dots-width: 15px;
  --slider-dots-height: var(--slider-dots-width);
  --slider-dots-gap: var(--slider-dots-width);

  --post-preview-gap: 75px;
  --post-preview-width-home: min(calc((100vw - var(--section-home-padding-right-left) * 2 - var(--post-preview-gap) * 2) / 3), 400px);
  --post-preview-width-page: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--post-preview-gap) * 2) / 3), 310px);
  --post-preview-width-single: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--post-preview-gap) * 2) / 3), 310px);
  --post-preview-width-archive: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--post-preview-gap) * 2) / 3), 310px);

  --appointment-preview-gap: 75px;
  --appointment-preview-width-home: min(calc((100vw - var(--section-home-padding-right-left) * 2 - var(--appointment-preview-gap) * 2) / 3), 400px);
  --appointment-preview-width-page: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-gap) * 2) / 3), 310px);
  --appointment-preview-width-single: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-gap) * 2) / 3), 310px);
  --appointment-preview-width-archive: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-gap) * 2) / 3), 310px);

  --page-header-height: 450px;

  --single-header-max-height: 350px;
  --single-featured-image-width: min(calc(100vw - var(--section-padding-right-left) * 2), 450px);
  --single-featured-image-height: calc(var(--single-featured-image-width) / 3 * 2);

  --single-person-gap: 2em;
  --single-person-text-width-factor: .6;
  --single-person-ifcs-width-factor: .35;
  --single-person-ifcs-solo-width-factor: .5;
  --single-person-image-width-factor: 1;
  --single-person-image-width: calc(var(--content-width) * var(--single-person-ifcs-width-factor) * var(--single-person-image-width-factor));
  --single-person-image-height: var(--single-person-image-width);
  --single-person-image-solo-width: calc(var(--content-width) * var(--single-person-ifcs-solo-width-factor) * var(--single-person-image-width-factor));
  --single-person-image-solo-height: var(--single-person-image-solo-width);

  /* shortcode - person */
  --scp-image-width: 225px;
  --scp-image-height: calc(var(--scp-image-width) / 3 * 4);

  --scp-general-font-size: 16px;
  --scp-name-function-font-size: 18px;
  --scp-contact-icon-font-size: var(--scp-name-function-font-size);

  --scp-social-icon-width: 25px;
  --scp-social-icon-height: var(--scp-social-icon-width);

  /* footer */
  --footer-padding-top-bottom: 30px;
  --footer-padding-right-left: 60px;

  --footer-row-width: min(calc(100vw - var(--footer-padding-right-left) * 2), var(--content-width));

  --footer-background-color: #fff;

  --footer-font-family: var(--asap);
  --footer-font-size: .9rem;
  --footer-font-weight: 500;
  --footer-color: var(--color);

  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: var(--line-height);
  color: var(--color);
}



/* GENERAL SETTINGS & STYLES */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-background-color) var(--scrollbar-track-background-color);
}

*::-webkit-scrollbar {
  width: var(--scrollbar-width);
}

*::-webkit-scrollbar-track {
  background: var(--scrollbar-track-background-color);
}

*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-background-color);
}

body {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--body-background-color);
  font-family: var(--font-family);
}

body.home {
  --post-preview-width: var(--post-preview-width-home);
  --post-preview-height: calc(var(--post-preview-width) / 2 * 3);
  --appointment-preview-width: var(--appointment-preview-width-home);
  --appointment-preview-height: calc(var(--appointment-preview-width) / 4 * 3);
}

body.page {
  --post-preview-width: var(--post-preview-width-page);
  --post-preview-height: calc(var(--post-preview-width) / 2 * 3);
  --appointment-preview-width: var(--appointment-preview-width-page);
  --appointment-preview-height: calc(var(--appointment-preview-width) / 4 * 3);
}

body.single {
  --post-preview-width: var(--post-preview-width-single);
  --post-preview-height: calc(var(--post-preview-width) / 2 * 3);
  --appointment-preview-width: var(--appointment-preview-width-single);
  --appointment-preview-height: calc(var(--appointment-preview-width) / 4 * 3);
}

body.archive {
  --post-preview-width: var(--post-preview-width-archive);
  --post-preview-height: calc(var(--post-preview-width) / 2 * 3);
  --appointment-preview-width: var(--appointment-preview-width-archive);
  --appointment-preview-height: calc(var(--appointment-preview-width) / 4 * 3);
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.25em 0 .75em;
  font-family: var(--heading-font-family);
  font-weight: 700;
  text-align: left;
  color: var(--green-hex);
}

h1 {
  font-size: var(--h1-font-size);
  text-align: center;
}

h1:nth-of-type(1) {
  margin-top: 0;
}

h2 {
  font-size: var(--h2-font-size);
  text-align: center;
}

body:not(.home) h2 {
  text-align: left;
}

body:not(.home) h2.has-text-align-right {
  text-align: right;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

a {
  color: var(--green-hex);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  transform: all .3s ease-out;
}

*:is(h1, h2, h3, h4, h5, h6)>a:hover {
  text-decoration: none;
}

.button {
  display: flex;
  padding: var(--button-padding);
  border-radius: var(--button-border-radius);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--button-color);
  cursor: pointer;
}

.button:hover {
  text-decoration: none;
}

.button-fill {
  background: var(--button-background-color);
  border-color: var(--button-background-color);
}



/* HEADER */

header {
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  position: fixed;
  top: 0;
  background: var(--header-background-color);
  -webkit-box-shadow: var(--header-shadow);
  -moz-box-shadow: var(--header-shadow);
  box-shadow: var(--header-shadow);
  z-index: 9999;
}

body.admin-bar header {
  margin-top: 32px;
}

header a {
  text-decoration: none;
  color: var(--color);
}

header a:hover {
  text-decoration: none;
}



/* MAIN */

main {
  grid-row: 2 / 3;
  width: 100%;
  min-height: var(--main-min-height);
  margin-top: var(--header-height);
  overflow: hidden;
  font-size: var(--main-font-size);
}

main ul:not(.slick-dots, .files) {
  padding-left: 1.125em;
}

main ul:not(.slick-dots, .files) li {
  position: relative;
  margin: .25em 0 .25em 1em;
  list-style: none;
  break-inside: avoid;
}

main ul:not(.slick-dots) li:nth-of-type(1) {
  margin-top: 0;
}

main ul:not(.slick-dots, .files) li::before {
  content: '';
  width: 1em;
  height: 1.25em;
  display: inline-block;
  position: absolute;
  left: -1em;
  background-image: url("assets/images/bullet-points/bullet-point-green.png");
  -webkit-background-size: 50%;
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: 0 60%;
}

html.theme-main-color-blue-light main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-blue-light.png");
}

html.theme-main-color-blue-dark main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-blue-dark.png");
}

html.theme-main-color-purple main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-purple.png");
}

html.theme-main-color-pink main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-pink.png");
}

html.theme-main-color-red main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-red.png");
}

html.theme-main-color-orange main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-orange.png");
}

html.theme-main-color-yellow main ul:not(.slick-dots, .files) li::before {
  background-image: url("assets/images/bullet-points/bullet-point-yellow.png");
}

main ol li {
  margin: .25em 0;
}

main ol li::marker {
  color: var(--green-hex);
}

section {
  width: 100%;
  /* 	min-height: 100%; */
  display: flex;
  flex-direction: column;
  padding: var(--section-padding-top-bottom) var(--section-padding-right-left-dynamic);
}


/* front page */

body.home main ul:not(.slick-dots) {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  column-gap: 1.75em;
  padding: 0;
}

body.home section {
  --content-width: 1350px;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding-top-bottom) var(--section-home-padding-right-left);
}

body.home section:not(#above-the-fold)>* {
  width: 100%;
  max-width: var(--content-width);
}

body.home section:not(#above-the-fold) *:is(h2, h3, h4, h5, h6) {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 0 1.5em;
}

body.home section:not(#above-the-fold) h2 {
  font-size: 2.5rem;
}

section#above-the-fold {
  height: var(--section-atf-height);
  position: relative;
  padding: 0;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-image-source-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-source {
  position: absolute;
  color: #fff;
  right: 15px;
  bottom: 2px;
  font-size: .75em;
  text-shadow: 0 0 5px #000;
}

.slide-source a,
.image-source a {
  color: #fff;
}

.slide-text {
  width: fit-content;
  max-width: min(1000px, 80%);
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 10%;
  left: 10%;
  padding: .5em 1em .75em;
  border-radius: var(--border-radius-l);
  background: #fff;
  color: var(--color);
}

.slide-text a:hover {
  text-decoration-thickness: 0.25rem;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
}

.slide-text h1.slide-heading {
  margin-bottom: 0;
  text-align: left;
  font-size: var(--h1-font-size);
}

.slide-text h2.slide-subheading {
  margin: 0;
  font-weight: 500;
  font-size: calc(var(--h2-font-size) * .75);
  text-align: left;
  color: var(--color);
}

.slide-text h1+h2 {
  margin-top: .2em;
}

.slide-text .slide-link-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25em;
}

body.home section:nth-of-type(4n+1) {
  background-color: #fff;
}

body.home section:nth-of-type(4n+2) {
  background-color: rgba(var(--gray-dark-rgb), .1);
}

body.home section:nth-of-type(4n+3) {
  background-color: #fff;
}

body.home section:nth-of-type(4n+4) {
  background-color: rgba(var(--green-rgb), .1);
}

.view-all-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 3.75rem;
}

body.home section#appointments>.slick-slider {
  max-width: calc(var(--content-width) + var(--appointment-preview-gap));
}

body.home section#news>.slick-slider {
  max-width: calc(var(--content-width) + var(--post-preview-gap));
}

.appointments-container {
  display: flex;
  gap: var(--appointment-preview-gap);
}

.appointments-container .slick-slide {
  margin: 0 calc(var(--appointment-preview-gap) * .5);
}

.news-container .slick-slide {
  margin: 0 calc(var(--post-preview-gap) * .5);
}

.appointments-container .slick-prev,
.news-container .slick-prev {
  left: calc(var(--slider-arrow-width) * -1);
}

.appointments-container .slick-next,
.news-container .slick-next {
  right: calc(var(--slider-arrow-width) * -1);
}

section#appointments {
  padding: var(--section-padding-top-bottom) calc(var(--section-home-padding-right-left) - var(--appointment-preview-gap) * .5);
}

.appointment.post-preview {
  width: var(--appointment-preview-width);
  height: var(--appointment-preview-height);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  font-size: var(--archive-post-font-size);
}

.appointment.post-body {
  height: 100%;
  gap: calc(var(--appointment-preview-width) / 2 * 3 * .02);
  padding: calc(var(--appointment-preview-width) * .065) calc(var(--appointment-preview-width) * .085);
}

h3.appointment.post-heading,
body.home section#appointments h3.appointment.post-heading {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: calc(var(--appointment-preview-height) * .1);
  text-align: left;
}

.appointment.post-info-container {
  display: flex;
  flex-direction: column;
  gap: .5em;
  margin-bottom: .5em;
  font-size: calc(var(--appointment-preview-height) * .075);
}

.appointment.post-info {
  display: flex;
}

.appointment.post-icon {
  padding-top: .75px;
  margin-top: -2px;
  margin-right: .5em;
}

.appointment.post-read-more-container {
  position: absolute;
  right: 8.5%;
  bottom: 8.5%;
}

.appointment.post-read-more {
  font-family: var(--asap);
  font-size: calc(var(--appointment-preview-height) * .1);
}

section#news {
  padding: var(--section-padding-top-bottom) calc(var(--section-home-padding-right-left) - var(--post-preview-gap) * .5);
}

.news-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--post-preview-gap);
}

.post-preview {
  width: var(--post-preview-width);
  height: var(--post-preview-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  border-radius: var(--border-radius-l);
  color: var(--color);
  transition: all .3s ease-out;
}

.post-preview a {
  color: var(--color);
}

.post-preview a:hover {
  text-decoration: none;
  color: var(--green-hex);
  transition: all .3s ease-out;
}

.post-image-container {
  width: 100%;
  height: 44.5%;
}

.post-preview .isc-source {
  width: 100%;
  height: 100%;
}

.post-preview .isc-source a,
.post-preview .isc-source picture {
  width: 100%;
  height: 100%;
  display: block;
}

.post-preview .isc-source-text {
  display: none !important;
}

img.post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.post-body {
  width: 100%;
  height: 55.5%;
  display: flex;
  flex-direction: column;
  gap: calc(var(--post-preview-height) * .0125);
  position: relative;
  padding: 6.5% 8.5%;
  padding: calc(var(--post-preview-width) * .065) calc(var(--post-preview-width) * .085);
  overflow: hidden;
  font-size: calc(var(--post-preview-height) * .03);
}

.post-date {
  font-size: calc(var(--post-preview-width) * 0.045);
}

body.home section#news h3.post-heading {
  margin: 0;
  font-size: calc(var(--post-preview-height) * 0.04444445);
  text-align: left;
}

section#news h3.post-heading a {}

.post-excerpt {
  max-height: calc(1.2em * 5);
  overflow: hidden;
}

.post-excerpt p {
  margin: 0;
}

.post-read-more-container {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 8.5%;
  bottom: 8.5%;
}

a.post-read-more {
  font-family: var(--asap);
  font-size: calc(var(--post-preview-height) * 0.04444445);
  color: var(--color);
}

/* 
section#news .view-all {
  background: var(--gray-dark-hex);
} */

.links-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--post-preview-gap);
}

section:is(#functions, #further) .link {
  width: var(--post-preview-width);
  height: var(--post-preview-width);
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-l);
  overflow: hidden;
  background-color: rgba(var(--green-rgb), .1);
}

section#further .link {
  background-color: #fff;
}

.link-image {
  flex-shrink: 0;
  width: 100%;
  height: calc(var(--post-preview-width) / 4 * 3);
}

.link-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.home section:is(#functions, #further) .link-title h3 {
  width: unset;
  margin: 0;
  color: var(--color);
}

body.home section:is(#functions, #further) a.link:hover,
body.home section:is(#functions, #further) a.link:hover h3 {
  color: var(--green-hex);
  text-decoration: none;
  transition: all .3s ease-out;
}

.publications-container {
  display: flex;
  gap: var(--post-preview-gap);
}

.publication {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto 1fr;
  grid-column-gap: 30px;
}

.publication-cover {
  grid-row: 1/3;
  height: 300px;
}

.publication-cover img {
  height: 100%;
  box-shadow: 3px 3px 9px rgba(var(--gray-medium-rgb), .3);
}

body.home section#publications .publication-title h3 {
  margin-bottom: .3em;
}

section#newsletter {
  --content-width: 900px;
}

.newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

/* .newsletter-container>*:not(style) {
  width: 50%;
  max-width: 700px;
  height: 100%;
} */

#rmOrganism {
  width: 100%;
}

#rmOrganism .rmSubscription .rmBase__container {
  padding: 30px;
  border-radius: var(--border-radius-l);
  background-color: rgba(var(--green-rgb), .1);
}

#rmOrganism .rmBase__section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

#rmOrganism .rmBase__el {
  display: flex;
  gap: .75em;
  font-family: var(--asap);
  font-weight: 500;
  font-size: 1.25rem;
}

#rmOrganism .rmBase__compLabel {
  min-width: 7.5em;
  height: 36px;
  display: flex;
  align-items: center;
}

#rmOrganism .rmBase__compContainer {
  width: 100%;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#rmOrganism .rmBase__comp--radio {
  display: flex;
}

#rmOrganism .rmBase__comp--radio .vFormRadio__group--inline,#rmOrganism .rmBase__comp--radio .vFormRadio__group--stacked {
  display: flex;
  align-items: center;
}

#rmOrganism .rmBase__comp--radio .vFormRadio__group--stacked {
  gap: 45px;
}

#rmOrganism .rmBase__comp--radio .vFormRadio--stacked {
  display: flex;
  align-items: center;
  gap: 15px;
}

#rmOrganism .rmBase__comp--radio .vFormRadio .vFormRadio__input {
  appearance: none;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  position: relative;
  margin: 0;
  border-radius: 100%;
  background: #fff;
  cursor: pointer;
}

#rmOrganism .rmBase__comp--radio .vFormRadio .vFormRadio__input:checked:after {
  content: '';
  display: block;
  width: .6em;
  height: .6em;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.3em 0 0 -.3em;
  border-radius: 100%;
  background-color: var(--green-hex);
}

#rmOrganism .rmBase__el .comp__input,
#rmOrganism .rmBase__el .comp__select {
  width: 100%;
  margin: 0;
  padding: .45em .6em;
  border: none;
  border-radius: var(--border-radius-xs);
  outline: none;
  background-color: #fff;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: var(--main-font-size);
  color: var(--color);
}

#rmOrganism .rmSubscription .rmBase__el.rmBase__el--cta {
  justify-content: center;
  margin-top: calc(30px - var(--main-font-size));
}

#rmOrganism .rmBase__comp--cta {
  display: inline-block;
  padding: var(--button-padding);
  border: none;
  border-radius: var(--button-border-radius);
  background-color: var(--button-background-color);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--button-color);
  cursor: pointer;
}

#rmOrganism .rmBase__compError {
  display: none;
  margin-top: 3px;
  padding: 0 .9em;
  font-size: .75rem;
  line-height: 1.5;
  color: var(--red-hex);
}

#rmOrganism .rmBase__el.rmBase__el--has-error .rmBase__compError {
  display: inline-block;
}





.rmBody.rmBody--embed {
  background: #F7F9FA;
}

#rmOrganism .rmBase__comp--textlink {
  color: #1CCC71;
}

#rmOrganism .rmBase__comp--link {
  color: #1CCC71;
}

#rmOrganism .rmSubscription .rmBase__el--logo {
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__el--heading {
  margin-bottom: 0px;
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__el--text {
  margin-bottom: 28px;
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__el--link {
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__el--captcha {
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__el--legal-notice {
  text-align: center;
}

#rmOrganism .rmSubscription .rmBase__comp--heading {
  color: #021C1E;
  font-size: 36px;
  line-height: 45px;
}

#rmOrganism .rmSubscription .rmBase__comp--text {
  font-size: 16px;
  line-height: 24px;
}

#rmOrganism .rmPopup__close {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

#rmOrganism .rmPopup__backdrop {
  background: #303233;
  opacity: 0.6;
}

#rmOrganism .rmPage {
  background: #F7F9FA;
  color: #66686B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

#rmOrganism .rmPage .rmBase__comp--heading {
  color: #021C1E;
}

#rmOrganism .rmPage .rmBase__compLabel {
  color: #66686B;
}

.rmBody {
  margin: 0;
  padding: 0
}

#rmOrganism button::-moz-focus-inner,
#rmOrganism input::-moz-focus-inner {
  border: 0;
  padding: 0
}

#rmOrganism input[type=email],
#rmOrganism input[type=password],
#rmOrganism input[type=text],
#rmOrganism textarea {
  -webkit-appearance: none
}

#rmOrganism .hidden {
  display: none !important
}

#rmOrganism .rmPopup__container {
  bottom: 0;
  display: none;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000
}

#rmOrganism .rmPopup__container.rmPopup--show {
  display: flex
}

#rmOrganism .rmPopup__container .rmPopup__backdrop {
  display: block;
  height: 100%;
  left: 0;
  pointer-events: auto;
  position: absolute;
  top: 0;
  width: 100%
}

#rmOrganism .rmPopup__container .rmPopup {
  overflow: hidden;
  pointer-events: auto
}

#rmOrganism .rmPopup__container .rmPopup .rmPopup__close {
  align-items: center;
  appearance: none;
  background: rgba(0, 0, 0, .6);
  border-radius: 100%;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  height: 1.6em;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 2px;
  width: 1.6em;
  z-index: 100
}

#rmOrganism .rmPopup__container .rmPopup .rmPopup__close:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmPopup__container .rmPopup.rmPopup--modal {
  border-radius: 1em 1em 0 0;
  max-height: 90%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 98%
}

@media screen and (min-width:768px) {
  #rmOrganism .rmPopup__container .rmPopup.rmPopup--modal {
    border-radius: 1em;
    box-shadow: 0 0 1em rgba(0, 0, 0, .25);
    bottom: auto;
    top: 5%;
    width: calc(100% - 2em)
  }
}

#rmOrganism .rmPopup__container .rmPopup.rmPopup--sidebar {
  border-radius: 1em 0 0 0;
  box-shadow: 0 0 1em rgba(0, 0, 0, .25);
  max-height: calc(100% - 1em);
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 1em)
}

#rmOrganism .rmPopup__container .rmPopup.rmPopup--banner {
  box-shadow: 0 0 1em rgba(0, 0, 0, .15);
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100%
}

#rmOrganism .rmPopup__container .rmPopup.rmPopup--banner.rmLayout--banner-top {
  top: 0
}

#rmOrganism .rmPopup__container .rmPopup.rmPopup--banner.rmLayout--banner-bottom {
  bottom: 0
}

#rmOrganism .rmBase__el--title .rmBase__comp--titleInput {
  margin-top: 1em
}

#rmOrganism .rmBase__el--image {
  margin: 0 !important
}

#rmOrganism .rmBase__compLabel--required:after {
  content: "*";
  font-weight: 700;
  margin-left: .5ch;
  pointer-events: none;
  user-select: none
}

#rmOrganism .rmBase__comp--image {
  background: no-repeat 50%;
  height: 100%;
  position: relative;
  width: 100%
}

#rmOrganism .rmBase__comp--image.image--fit {
  background-size: cover
}

#rmOrganism .rmBase__comp--image .image__link {
  display: block;
  height: 100%;
  width: 100%
}

#rmOrganism .rmBase__comp--logo {
  border: none;
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: top
}

#rmOrganism .rmBase__comp--logolink {
  display: inline-block
}

#rmOrganism .rmBase__comp--cta:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--button,
#rmOrganism .rmBase__comp--link {
  cursor: pointer;
  display: inline-block;
  line-height: 1.5;
  text-decoration: none
}

#rmOrganism .rmBase__comp--button:focus-visible,
#rmOrganism .rmBase__comp--link:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--link {
  font-weight: 400;
  padding: .5em 0
}

#rmOrganism .rmBase__comp--link:hover {
  text-decoration: underline
}

#rmOrganism .rmBase__comp--button {
  font-weight: 700;
  padding: .5em 1em
}

#rmOrganism .rmBase__comp--textlink {
  cursor: pointer;
  font-weight: 400;
  text-decoration: none
}

#rmOrganism .rmBase__comp--textlink:hover {
  text-decoration: underline
}

#rmOrganism .rmBase__comp--textlink:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--captcha {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  vertical-align: top
}

#rmOrganism .rmBase__comp--coupon {
  border: 2px dashed;
  display: inline-block;
  line-height: 1.5;
  padding: .75em 2.25em
}

#rmOrganism .rmBase__comp--birthday {
  display: flex
}

#rmOrganism .rmBase__comp--birthday .comp__select {
  flex-grow: 1;
  min-width: 1%
}

#rmOrganism .rmBase__comp--birthday .comp__select:not(:first-child) {
  margin-left: 1em
}

#rmOrganism .rmBase__comp--privacy {
  align-items: center;
  display: flex
}

#rmOrganism .rmBase__comp--privacy .privacy__visual {
  flex-shrink: 0;
  font-size: 16px;
  height: 4em;
  margin-right: 1em;
  width: 4em
}

#rmOrganism .rmBase__comp--privacy .privacy__text {
  font-size: 11px;
  line-height: 1.4;
  text-align: left
}

#rmOrganism .rmBase__comp--privacy .privacy__text a {
  color: currentColor;
  text-decoration: underline
}

#rmOrganism .rmBase__comp--privacy .privacy__text a:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox,
#rmOrganism .rmBase__comp--radio .vFormCheckbox {
  align-items: flex-start;
  display: inline-flex
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__input,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__input {
  appearance: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .45);
  border-radius: .25em;
  color: #333;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  height: 1.25em;
  line-height: 0;
  position: relative;
  vertical-align: top;
  width: 1.25em
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__input:checked:after,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__input:checked:after {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' width='10' height='10'%3E%3Cpath fill='%23333' d='M19.4 2.6c-.8-.8-2-.8-2.8 0L6.4 12.8l-3-3.1c-.8-.8-2-.8-2.8 0-.8.8-.8 2 0 2.8L5.1 17c.8.8 2 .8 2.8 0l1.4-1.4L19.4 5.4c.8-.8.8-2 0-2.8z'/%3E%3C/svg%3E") no-repeat 50%;
  content: "";
  display: block;
  height: .75em;
  left: 50%;
  margin: -.375em 0 0 -.375em;
  position: absolute;
  top: 50%;
  width: .75em
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__input:focus-visible,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__input:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__label,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__label {
  font-size: 1em;
  line-height: 1.25;
  margin: 0
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__label--required:after,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__label--required:after {
  content: "*";
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox .vFormCheckbox__input~.vFormCheckbox__label,
#rmOrganism .rmBase__comp--radio .vFormCheckbox .vFormCheckbox__input~.vFormCheckbox__label {
  margin: 0 0 0 .75em
}

#rmOrganism .rmBase__comp--checkbox .vFormCheckbox:hover .vFormCheckbox__input,
#rmOrganism .rmBase__comp--radio .vFormCheckbox:hover .vFormCheckbox__input {
  border-color: rgba(0, 0, 0, .85)
}

#rmOrganism .rmBase__comp--checkbox {
  font-size: 1em;
  line-height: 1.25
}

#rmOrganism .rmBase__comp--radio .vFormRadio .vFormRadio__input:focus-visible {
  outline: 2px solid rgba(0, 0, 0, .85);
  outline-offset: 2px
}

#rmOrganism .rmBase__comp--radio .vFormRadio:hover .vFormRadio__input {
  border-color: rgba(0, 0, 0, .85)
}

#rmOrganism .rmBase__compError--radio {
  margin-top: .5em
}

#rmOrganism .rmBase__comp--legal-noticeDivider {
  background: currentColor;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: 1em;
  height: 2px;
  line-height: 0;
  margin-bottom: 1em;
  opacity: .25;
  overflow: hidden;
  width: 10em
}

#rmOrganism .rmBase__comp--legal-notice {
  font-size: 11px;
  line-height: 1.4
}

@media screen and (min-width:480px) {
  #rmOrganism .rmSubscription .rmBase__el.rmBase__el--label-pos-left {
    display: flex
  }

  #rmOrganism .rmSubscription .rmBase__el.rmBase__el--label-pos-left .rmBase__compLabel {
    flex-basis: 30%;
    flex-shrink: 0;
    hyphens: auto;
    margin: 0;
    max-width: 30%;
    padding: .625em .5em 0 0
  }

  #rmOrganism .rmSubscription .rmBase__el.rmBase__el--label-pos-left .rmBase__compContainer {
    flex-grow: 1
  }
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-top .rmBase__el--image {
  flex-shrink: 0;
  height: 100px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-top .rmBase__el--image {
    height: 140px
  }
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-right {
  max-width: 640px
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-right .rmBase__el--image {
  flex-shrink: 0;
  height: 100px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-right .rmBase__body {
    flex-direction: row
  }

  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-right .rmBase__el--image {
    flex-basis: 0px;
    flex-grow: 1;
    height: auto;
    order: 10
  }

  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-right .rmBase__content {
    flex-basis: 80%;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 400px
  }
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-bottom .rmBase__el--image {
  flex-shrink: 0;
  height: 100px;
  order: 10
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-bottom .rmBase__el--image {
    height: 140px
  }
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-left {
  max-width: 640px
}

#rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-left .rmBase__el--image {
  flex-shrink: 0;
  height: 100px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-left .rmBase__body {
    flex-direction: row
  }

  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-left .rmBase__el--image {
    flex-basis: 0px;
    flex-grow: 1;
    height: auto
  }

  #rmOrganism .rmLayout--vertical.rmBase.rmLayout--vertical-image-left .rmBase__content {
    flex-basis: 80%;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 400px
  }
}

#rmOrganism .rmLayout--horizontal.rmBase {
  display: flex;
  flex-direction: column;
  max-width: 640px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__container {
    padding: 2em
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section {
    display: flex;
    flex-direction: row
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el {
    flex-basis: 0px;
    flex-grow: 1;
    margin-right: 1em
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el:last-child {
    margin-right: 0
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el--cta:not(:only-child),
  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el--link:not(:only-child) {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el--label-pos-top~.rmBase__el--cta:not(:only-child),
  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section .rmBase__el--label-pos-top~.rmBase__el--link:not(:only-child) {
    align-self: flex-end
  }

  #rmOrganism .rmLayout--horizontal.rmBase .rmBase__section:last-child .rmBase__el {
    margin-bottom: 0
  }
}

#rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-right {
  max-width: 800px
}

#rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-right .rmBase__el--image {
  flex-shrink: 0;
  height: 100px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-right .rmBase__body {
    flex-direction: row
  }

  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-right .rmBase__el--image {
    flex-basis: 0px;
    flex-grow: 1;
    height: auto;
    order: 10
  }

  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-right .rmBase__content {
    flex-basis: 90%;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 640px
  }
}

#rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-left {
  max-width: 800px
}

#rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-left .rmBase__el--image {
  flex-shrink: 0;
  height: 100px
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-left .rmBase__body {
    flex-direction: row
  }

  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-left .rmBase__el--image {
    flex-basis: 0px;
    flex-grow: 1;
    height: auto
  }

  #rmOrganism .rmLayout--horizontal.rmBase.rmLayout--horizontal-image-left .rmBase__content {
    flex-basis: 90%;
    flex-grow: 1;
    flex-shrink: 0;
    max-width: 640px
  }
}

@media screen and (min-width:768px) {
  #rmOrganism .rmLayout--banner.rmBase {
    display: flex;
    flex-direction: column
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__content {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section {
    display: flex;
    flex-direction: row;
    min-width: 480px
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el {
    flex-basis: 0px;
    flex-grow: 1;
    margin-right: 1em
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el:last-child {
    margin-right: 0
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el--cta:not(:only-child),
  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el--link:not(:only-child) {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el--label-pos-top~.rmBase__el--cta:not(:only-child),
  #rmOrganism .rmLayout--banner.rmBase .rmBase__section .rmBase__el--label-pos-top~.rmBase__el--link:not(:only-child) {
    align-self: flex-end
  }

  #rmOrganism .rmLayout--banner.rmBase .rmBase__section:last-child .rmBase__el {
    margin-bottom: 0
  }
}

#rmOrganism .rmSubscription .rmBase__el.rmBase__el--label-pos-none .rmBase__compLabel.rmBase__compLabel--hideable {
  display: none
}

.rmBody.rmBody--subscription.rmBody--popup {
  background: #e9edf2
}

.rmBody.rmBody--subscription.rmBody--embed #rmOrganism .rmBase {
  margin: 0 auto
}

#rmOrganism .rmPage {
  font-size: 16px
}

#rmOrganism .rmPage .rmBase__container {
  margin: 0 auto;
  max-width: 44em;
  padding: 2em 1em
}

@media screen and (min-width:768px) {
  #rmOrganism .rmPage .rmBase__container {
    padding: 2em
  }
}

#rmOrganism .rmPage .rmBase__comp--heading {
  font-size: 2em;
  line-height: 1.25
}

#rmOrganism .rmPage .rmBase__compLabel {
  display: block;
  line-height: 1.25;
  margin: 0 0 .25em;
  max-width: 99%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap
}

#rmOrganism .rmPage .rmBase__el {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1em
}

#rmOrganism .rmPage .rmBase__el--logo {
  margin: 0 0 3em
}

#rmOrganism .rmPage .rmBase__el--coupon,
#rmOrganism .rmPage .rmBase__el--cta,
#rmOrganism .rmPage .rmBase__el--unsubscribe-reason {
  margin: 3em 0
}

#rmOrganism .rmPage .rmBase__el--coupon .rmBase__compLabel,
#rmOrganism .rmPage .rmBase__el--unsubscribe-reason .rmBase__compLabel {
  margin: 0 0 .5em;
  max-width: 100%;
  overflow: visible;
  text-overflow: unset;
  white-space: normal
}

#rmOrganism .rmPage .rmBase__el--unsubscribe-reason {
  text-align: left
}

#rmOrganism .rmPage .rmBase__el--legal-notice {
  margin-top: 3rem;
  text-align: left
}

#rmOrganism .rmPage .rmBase__section:last-child .rmBase__el:last-child {
  margin-bottom: 0
}

#rmOrganism .rmLayout--page-centered .rmPage .rmBase__container,
#rmOrganism .rmLayout--page-centered .rmPage .rmBase__container .rmBase__el--legal-notice {
  text-align: center
}

#rmOrganism .rmLayout--legacy .rmBase__el .comp__input,
#rmOrganism .rmLayout--legacy .rmBase__el .comp__select {
  border-radius: 0;
  height: 2em;
  padding: .25em .5em
}

@media screen and (min-width:360px) {
  #rmOrganism .rmLayout--legacy .rmSubscription .rmBase__el.rmBase__el--label-pos-left {
    display: flex
  }

  #rmOrganism .rmLayout--legacy .rmSubscription .rmBase__el.rmBase__el--label-pos-left .rmBase__compLabel {
    flex-basis: 140px;
    flex-shrink: 0;
    hyphens: auto;
    margin: 0;
    max-width: 140px;
    padding: .375em .5em 0 0
  }

  #rmOrganism .rmLayout--legacy .rmSubscription .rmBase__el.rmBase__el--label-pos-left .rmBase__compContainer {
    flex-grow: 1
  }
}

#rmOrganism .rmLayout--legacy.rmBase {
  display: flex;
  flex-direction: column;
  max-width: 400px
}

#rmOrganism .rmLayout--legacy.rmBase .rmBase__container {
  padding: 10px
}

.rmBody.rmBody--subscription.rmBody--legacy {
  background: transparent
}

.rmBody.rmBody--subscription.rmBody--legacy.rmBody--embed #rmOrganism .rmBase {
  margin: 0 auto 0 0
}


/* MAIN - PAGE */

section.page.header {
  height: var(--page-header-height);
  padding: 0 var(--section-padding-right-left-dynamic);
}

section.page.header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.page.main {
  min-height: var(--main-min-height);
}

.page.image-container {
  width: 250px;
  height: 100%;
  display: flex;
}

.page.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 15%;
}

.page.content>*:last-child {
  margin-bottom: 0;
}


/* appointments - multiple */

section.page .appointments-container.slick-slider,
section.single .appointments-container.slick-slider {
  width: calc(100vw - var(--section-padding-right-left-dynamic) * 2 + var(--appointment-preview-gap));
  margin-left: calc(var(--appointment-preview-gap) / -2);
}

/* body.page-termine-praevention section.page.main {
  padding: var(--section-padding-top-bottom) 0;
}

body.page-termine-praevention .page.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 calc(var(--section-home-padding-right-left) - var(--appointment-preview-gap) * .5);
}

body.page-termine-praevention .page.content > * {
  max-width: var(--content-width);
}

body.page-termine-praevention .page.content > .appointments-container {
  --content-width: 1350px;
  width: 100%;
  max-width: calc(var(--content-width) + var(--appointment-preview-gap));
  margin-bottom: 2em;
}

body.page-termine-praevention .appointments-container .slick-slide {
  margin: 0 calc(var(--appointment-preview-gap) * .5);
}

body.page-termine-praevention .slick-prev {
  left: calc(var(--slider-arrow-width) * -1);
}

body.page-termine-praevention .slick-next {
  right: calc(var(--slider-arrow-width) * -1);
} */


/* 404 page */
.viernullvier-image {
  float: left;
  max-width: 90%;
  max-height: 250px;
}


/* gutenberg */

.has-green-color {
  color: var(--green-hex);
}

.has-green-background-color {
  background-color: var(--green-hex);
}

.has-blue-light-color {
  color: var(--blue-light-hex);
}

.has-blue-light-background-color {
  background-color: var(--blue-light-hex);
}

.has-blue-dark-color {
  color: var(--blue-dark-hex);
}

.has-blue-dark-background-color {
  background-color: var(--blue-dark-hex);
}

.has-purple-color {
  color: var(--purple-hex);
}

.has-purple-background-color {
  background-color: var(--purple-hex);
}

.has-pink-color {
  color: var(--pink-hex);
}

.has-pink-background-color {
  background-color: var(--pink-hex);
}

.has-red-color {
  color: var(--red-hex);
}

.has-red-background-color {
  background-color: var(--red-hex);
}

.has-orange-color {
  color: var(--orange-hex);
}

.has-orange-background-color {
  background-color: var(--orange-hex);
}

.has-yellow-color {
  color: var(--yellow-hex);
}

.has-yellow-background-color {
  background-color: var(--yellow-hex);
}

.has-gray-light-color {
  color: var(--gray-light-hex);
}

.has-gray-light-background-color {
  background-color: var(--gray-light-hex);
}

.has-gray-medium-color {
  color: var(--gray-medium-hex);
}

.has-gray-medium-background-color {
  background-color: var(--gray-medium-hex);
}

.has-gray-dark-color {
  color: var(--gray-dark-hex);
}

.has-gray-dark-background-color {
  background-color: var(--gray-dark-hex);
}

.has-black-color {
  color: #000000;
}

.has-black-background-color {
  background-color: #000000;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

html body main ul:not(.slick-dots, .files).has-background li::before {
  background-image: url("assets/images/bullet-points/bullet-point-white.png");
}

p.has-background {
  padding: 1.25em 1.75em;
}

.wp-block-columns:last-child {
  margin-bottom: 0;
}

section.page.main .wp-block-columns p:only-child {
  margin: 0;
}

section.page.main .wp-block-column ul {
  margin: 0;
}

.wp-block-column>*:is(h2, h3, h4, h5, h6, p):first-child {
  margin-top: 0;
}

.wp-block-file {
  display: flex;
  align-items: center;
  gap: 1em;
}

.wp-block-file:last-of-type {
  margin-bottom: 0;
}

.wp-block-file>a {
  width: calc(50% - .5em);
  min-height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  padding: .75em calc(60px + .75em * 2) .75em calc(80px + .75em);
  background: rgba(var(--gray-light-rgb), .2);
  font-family: var(--asap);
  font-size: var(--main-font-size);
  font-weight: 500;
  text-align: left;
}

.wp-block-file>a:hover {
  opacity: 1;
  text-decoration: none;
}

.wp-block-file>a:not(.wp-element-button)::before {
  content: '';
  width: 80px;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  background-color: var(--green-hex);
  background-size: calc(100% - 10px);
  background-repeat: no-repeat;
  background-position: center;
}

.wp-block-file>a[href*=".ai"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/ai-icon-w.svg);
}

.wp-block-file>a[href*=".avi"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/avi-icon-w.svg);
}

.wp-block-file>a[href*=".doc"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/doc-icon-w.svg);
}

.wp-block-file>a[href*=".docx"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/docx-icon-w.svg);
}

.wp-block-file>a[href*=".eps"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/eps-icon-w.svg);
}

.wp-block-file>a[href*=".exe"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/exe-icon-w.svg);
}

.wp-block-file>a[href*=".gif"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/gif-icon-w.svg);
}

.wp-block-file>a[href*=".indd"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/indd-icon-w.svg);
}

.wp-block-file>a[href*=".jpeg"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/jpeg-icon-w.svg);
}

.wp-block-file>a[href*=".jpg"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/jpg-icon-w.svg);
}

.wp-block-file>a[href*=".mov"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/mov-icon-w.svg);
}

.wp-block-file>a[href*=".mp3"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/mp3-icon-w.svg);
}

.wp-block-file>a[href*=".mp4"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/mp4-icon-w.svg);
}

.wp-block-file>a[href*=".pdf"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/pdf-icon-w.svg);
}

.wp-block-file>a[href*=".png"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/png-icon-w.svg);
}

.wp-block-file>a[href*=".ppt"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/ppt-icon-w.svg);
}

.wp-block-file>a[href*=".pptx"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/pptx-icon-w.svg);
}

.wp-block-file>a[href*=".psd"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/psd-icon-w.svg);
}

.wp-block-file>a[href*=".svg"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/svg-icon-w.svg);
}

.wp-block-file>a[href*=".txt"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/txt-icon-w.svg);
}

.wp-block-file>a[href*=".xls"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/xls-icon-w.svg);
}

.wp-block-file>a[href*=".xlsx"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/xlsx-icon-w.svg);
}

.wp-block-file>a[href*=".zip"]:not(.wp-element-button)::before {
  background-image: url(assets/images/file-icons/zip-icon-w.svg);
}

.wp-block-file>a:not(.wp-element-button)::after {
  content: '\ec53';
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: calc(var(--main-font-size) * .75);
  background: #fff;
  border-radius: 100%;
  font-family: 'remixicon' !important;
  font-size: calc(var(--main-font-size) * 1.5);
  font-style: normal;
}

.wp-block-buttons a.wp-block-button__link,
.wp-block-file a.wp-block-file__button,
.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited {
  width: fit-content;
  min-height: unset;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: var(--button-padding);
  border: 0;
  border-radius: var(--button-border-radius);
  background: var(--button-background-color);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--button-color);
  text-decoration: none;
}

.wp-block-column .wp-block-buttons {
  margin-top: .75em;
}

.wp-block-buttons .wp-block-button {
  margin-bottom: 0;
}

.wp-block-media-text {
  grid-template-columns: 30% 1fr;
}

.wp-block-media-text .wp-block-media-text__media {
  height: 200px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .25);
}

.wp-block-media-text .wp-block-media-text__media img {
  max-height: 100%;
  object-fit: contain;
}

.wp-block-columns .wp-block-image {
  margin-bottom: 2em;
}

.wp-block-columns .is-vertically-aligned-center>.wp-block-image {
  margin-bottom: 0;
}

hr.wp-block-separator {
  margin: 50px 0;
  border-bottom: 0;
  border-color: rgba(0, 0, 0, .25);
}

figure.wp-block-embed.is-type-video iframe {
  border-radius: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, .25);
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  padding: .25em;
  background: rgba(var(--gray-dark-rgb), .5);
  font-size: calc(var(--main-font-size) * .9);
}

cite {
  line-height: 1.5;
}



/* MAIN - SINGLE */

section.single.header {
  width: 100vw;
  max-height: var(--single-header-max-height);
  padding: 0;
}

section.single.header picture {
  max-height: var(--single-header-max-height);
}

section.single.header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

section.single.main :is(h2, h3, h4, h5, h6) {
  text-align: left;
}

section.single.main :is(h2, h3, h4, h5, h6):first-child,
section.single.main .featured-image-container+ :is(h2, h3, h4, h5, h6) {
  margin-top: 0;
}

.single.post-info-container {
  display: flex;
  margin-bottom: 2em;
  font-size: var(--main-font-size);
  text-align: left;
}

.single.post-info {
  display: flex;
}

.single.post-icon {
  color: var(--green-hex);
  padding-top: .75px;
  margin-top: -1px;
  margin-right: .5em;
}

.single.post-date {
  font-size: inherit;
  color: var(--color);
}

.single.post-category a {
  color: var(--color);
  text-decoration: none;
}

.single.post-category a:hover {
  text-decoration: underline;
}

.single.post-date {
  margin-right: 1.5em;
}

.single.featured-image-container {
  width: var(--single-featured-image-width);
  /* 	height: var(--single-featured-image-height); */
  height: 100%;
  position: relative;
  float: right;
  margin: .2em 0 1.25em 1.5em;
}

img.single.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.single.image-source {
  font-size: .75em;
  color: var(--gray-medium-hex);
}

p.isc-source-text {
  margin: 0;
}

.single.content>h2:first-of-type,
.single.content>p:first-of-type {
  margin-top: 0;
}


/* MAIN - SINGLE-APPOINTMENT */

.single.appointment.date,
.single.appointment.location {
  margin-right: 1.5em;
}

a.single.appointment {
  text-decoration: none;
}

.appointment.former-appointments {
  display: none;
  /* Vorrübergehend keine zurückliegenden Veranstaltungen ausgeben */
}

h2.contact-heading,
h2.sign-in-heading {
  clear: both;
}

.single.appointment.content .contact-person {
  display: flex;
  gap: var(--single-person-gap);
}


/* MAIN - SINGLE-PERSON */

.single.person.container {
  display: flex;
  justify-content: space-between;
}

.single.person.content {
  width: calc(var(--content-width) * var(--single-person-text-width-factor));
}

.single.person.content>p:first-child {
  margin-top: 0;
}

.single.person.image-functions-contact-social {
  width: calc(var(--content-width) * var(--single-person-ifcs-width-factor));
  display: flex;
  flex-direction: column;
}

.single.person.image-functions-contact-social:only-child {
  width: calc(var(--content-width) * var(--single-person-ifcs-solo-width-factor));
  align-items: center;
  margin: 0 auto;
}

.single.person.image {
  width: var(--single-person-image-width);
  height: var(--single-person-image-height);
}

.single.person.functions-contact-social {
  width: var(--single-person-image-width);
}

.single.person.functions {
  padding-top: 1em;
  font: var(--bold-font);
  color: var(--secondary-color);
}

.single.person.function {
  font-size: var(--h3-font-size);
  text-transform: uppercase;
}

.single.person.additional-function {
  padding-top: 5px;
  font-size: var(--h4-font-size);
}

.single.person.contact-item {
  display: flex;
  margin: 15px 0;
}

.single.person.contact-icon {
  width: 1.5em;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.single.person.contact-text {
  text-decoration: none;
}

.single.person.social {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

.single.person.social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--content-width) * var(--single-person-ifcs-width-factor) * var(--single-person-image-width-factor) * 1/5);
  height: calc(var(--content-width) * var(--single-person-ifcs-width-factor) * var(--single-person-image-width-factor) * 1/5);
  background-color: var(--primary-color);
  font-size: calc(var(--content-width) * var(--single-person-ifcs-width-factor) * var(--single-person-image-width-factor) * 1/5 * .5);
  color: #fff;
  text-decoration: none;
}

.single.person.press-image {
  display: flex;
  margin-top: 25px;
}

.single.person.image-functions-contact-social:only-child .single.person.social-item {
  width: calc(var(--content-width) * var(--single-person-ifcs-solo-width-factor) * var(--single-person-image-width-factor) * 1/5);
  height: calc(var(--content-width) * var(--single-person-ifcs-solo-width-factor) * var(--single-person-image-width-factor) * 1/5);
  font-size: calc(var(--content-width) * var(--single-person-ifcs-solo-width-factor) * var(--single-person-image-width-factor) * 1/5 * .5);
}

.single.person.social-item:nth-of-type(even) {
  background-color: var(--secondary-color);
}

.single.person.social-item:hover {
  color: var(--tertiary-color);
  transition: all .3s ease-out;
}


/* MAIN - SHORTCODES */

/* person */

.person-shortcode {
  width: min(700px, 100%);
  display: flex;
  align-items: center;
  border-radius: var(--border-radius-l);
  overflow: hidden;
  text-align: left;
}

:not(.contact-person)>.person-shortcode+.person-shortcode {
  margin: 2em 0;
}

h2+.person-shortcode,
h3+.person-shortcode,
h4+.person-shortcode,
h5+.person-shortcode,
h6+.person-shortcode {
  margin-top: .5em;
}

section.page.main .person-shortcode+h2 {
  margin-top: 2.5em;
}

.person-shortcode a {
  display: flex;
  color: inherit;
  text-decoration: none;
  transition: all .3s ease-out;
}

.person-shortcode a:hover {
  color: var(--green-hex);
  text-decoration: none;
  transition: all .3s ease-out;
}

.person-shortcode picture {
  flex-shrink: 0;
  width: var(--scp-image-width);
  height: var(--scp-image-height);
  line-height: 1;
}

img.person-shortcode-image {
  flex-shrink: 0;
  width: var(--scp-image-width);
  height: var(--scp-image-height);
  object-fit: cover;
}

img.person-shortcode-image.has-border {
  border: 2px solid rgba(var(--gray-light-rgb), .2);
}

.person-shortcode-body {
  width: 100%;
  height: var(--scp-image-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5em;
  background: rgba(var(--gray-light-rgb), .2);
  font-size: var(--scp-general-font-size);
}

.person-shortcode-name {
  margin-bottom: .25em;
  font-family: var(--heading-font-family);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-hex);
}

.person-shortcode-function,
.person-shortcode-additional-function {
  font-family: var(--asap);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gray-medium-hex);
}

.person-shortcode-contacts {
  margin-top: .8em;
}

.person-shortcode-contact {
  display: flex;
  gap: .5em;
  margin-top: .25em;
}

.person-shortcode-contact-icon {
  font-size: var(--scp-contact-icon-font-size);
  color: var(--green-hex);
}

.person-shortcode-contact-text {
  display: flex;
  align-items: center;
}

.person-shortcode-social {
  display: flex;
}

.person-shortcode-social-icon {
  width: var(--scp-social-icon-width);
  height: var(--scp-social-icon-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: #fff;
}

.person-shortcode-social .person-shortcode-social-icon:nth-of-type(even) {
  background-color: var(--secondary-color);
}

.person-shortcode-social-icon:hover {
  color: var(--tertiary-color);
  transition: all .3s ease-out;
}

/* appointment - single */

.shortcode.appointments-container {
  --appointment-preview-width: min(calc(100vw - var(--section-padding-right-left) * 2), var(--content-width));
  --appointment-preview-height: calc(var(--appointment-preview-width) / 6 * 2);
}

.shortcode.appointment.post-preview {
  flex-direction: row;
}

.shortcode.appointment.post-image-container {
  width: 50%;
  height: 100%;
}

.shortcode.appointment.post-body {
  width: 50%;
  height: 100%;
  gap: calc(var(--appointment-preview-width) / 4 * 3 * .02);
  padding: calc(var(--appointment-preview-width) / 2 * .065) calc(var(--appointment-preview-width) / 2 * .085);
}

h3.shortcode.appointment.post-heading,
.shortcode.appointment.post-read-more {
  font-size: calc(var(--appointment-preview-height) * .1);
}

.shortcode.appointment.post-info-container {
  font-size: calc(var(--appointment-preview-height) * .075);
}


/* MAIN - ARCHIVE */

/* post */

section.archive {
  --content-width: 1350px;
  /* 	--section-padding-right-left: max(calc((100vw - var(--content-width)) / 2), 150px); */
  min-height: var(--main-min-height);
}

body:not(.home) .archive :is(h2, h3, h4, h5, h6) {
  width: 100%;
  text-align: left;
}

.archive.categories-container a,
.archive.posts-container a {
  text-decoration: none;
}

h2.archive.categories-heading {
  margin-top: 0;
}

.archive.categories {
  display: flex;
  gap: .25em;
  flex-wrap: wrap;
  margin-bottom: var(--post-preview-gap);
}

.archive.category-button {
  padding: .3em .6em;
  border-radius: var(--border-radius-xs);
  background: var(--gray-light-hex);
  font-family: var(--asap);
  font-weight: 500;
  color: #fff;
}

.archive.category-button.active,
.archive.category-button:hover {
  background: var(--green-hex);
  transition: all .3s ease-out;
}

.archive.post.posts-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--post-preview-gap);
  flex-wrap: wrap;
}

.archive.post.post-preview {
  background-color: rgba(var(--gray-dark-rgb), .1);
}

h2.archive.post.post-heading {
  margin: 0;
  font-size: calc(var(--post-preview-height) * 0.04444445);
  text-align: left;
}

.archive.post span.isc-source-text {
  font-size: 0.6em !important;
  top: unset !important;
  left: 8px !important;
  bottom: 8px;
  /* Keine Quellen auf Titelbild-Vorschau ausgeben */
  display: none !important;
}

/* appointment */

.archive.appointment.categories {
  margin-bottom: var(--appointment-preview-gap);
}

.archive.appointment.category-button.active,
.archive.appointment.category-button:hover {
  background: var(--green-hex);
}

.archive.appointment.posts-container {
  display: flex;
  justify-content: center;
  gap: var(--appointment-preview-gap);
  flex-wrap: wrap;
}

h2.archive.appointment.post-heading {
  margin-top: 0;
  margin-bottom: .5em;
  font-size: calc(var(--appointment-preview-height) * .1);
  text-align: left;
}

/* search */

section.search.header {
  width: 100vw;
  max-height: var(--single-header-max-height);
  padding: 0;
}

section.search.header picture {
  max-height: var(--single-header-max-height);
}

section.search.header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.search.posts-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.search.post {
  display: flex;
  flex-direction: column;
  gap: .75em;
  padding: 1.5em;
  border-radius: var(--border-radius-l);
  background-color: rgba(var(--gray-dark-rgb), .1);
}

.search.post-heading {
  margin: 0;
}

.search-term.heading {
  padding: 0 .075em;
  background-color: var(--green-hex);
  color: #fff;
}

.search.post-info {
  display: flex;
  gap: .25em;
  font-family: var(--asap);
  font-size: calc(var(--main-font-size) * 1.125);
  font-weight: 300;
  color: var(--green-hex);
}

.search-term.excerpt {
  font-weight: 700;
  color: var(--green-hex);
}

.search.read-more {
  width: fit-content;
  align-self: flex-end;
}

/* pagination */

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--appointment-preview-gap);
  font-family: var(--asap);
  font-weight: 500;
  font-size: 1.25rem;
}

.posts-container+.pagination {
  margin-top: var(--appointment-preview-gap);
  margin-bottom: 0;
}

.pagination>* {
  display: flex;
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: none;
}

.page-numbers:not(.prev, .next) {
  min-width: 1.4em;
  height: 1.4em;
  justify-content: center;
  align-items: center;
  margin: 0 .125em;
  padding: 0 .3em;
  border-radius: 6px;
  background-color: var(--gray-light-hex);
  color: #fff;
}

.page-numbers.prev,
.page-numbers.next {
  margin: 0 10px;
  padding-top: 2px;
  color: inherit;
}

.post.pagination .page-numbers.current,
.post.pagination .page-numbers:not(.prev, .next):hover {
  background-color: var(--green-hex);
  transition: all .3s ease-out;
}

.appointment.pagination .page-numbers.current,
.search.pagination .page-numbers.current,
.appointment.pagination .page-numbers:not(.prev, .next):hover,
.search.pagination .page-numbers:not(.prev, .next):hover {
  background-color: var(--green-hex);
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  color: var(--green-hex);
  transition: all .3s ease-out;
}


/* FOOTER */

footer {
  --content-width: 1350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--footer-padding-top-bottom) var(--footer-padding-right-left);
  border-top: 1px solid var(--color);
  background-color: var(--footer-background-color);
  font-family: var(--footer-font-family);
  font-size: var(--footer-font-size);
  font-weight: var(--footer-font-weight);
  color: var(--footer-color);
}

.footer-row {
  display: flex;
  justify-content: center;
}

.footer-row.top {
  /* 	--content-width: 1770px; */
  align-items: center;
  text-align: center;
}

footer .footer-row a {
  color: inherit;
  text-decoration: none;
}

footer .footer-row a:hover {
  text-decoration: none;
}

.footer-logo {
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-row .social-media-container {
  display: flex;
  gap: 24px;
}

.footer-row .social-media-link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gray-light-hex);
  border-radius: 100%;
  font-size: 24px;
  color: #fff;
  transition: all .3s ease-out;
}

.footer-row .social-media-link:hover {
  background-color: var(--gray-medium-hex);
}

nav#footer-menu ul {
  display: flex;
  gap: 2.4em;
}

nav#footer-menu ul>li {
  display: flex;
  align-items: center;
  position: relative;
}

nav#footer-menu ul>li:not(:nth-of-type(1))::before {
  content: '|';
  width: 2.4em;
  height: .9em;
  position: absolute;
  top: -.05em;
  left: -1.3em;
}

nav#footer-menu ul>li>ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: .75em;
}

.copyright {
  padding-top: var(--footer-padding-top-bottom);
  font-size: .85em;
}


/* IFRAMES */

/* places of assingment */

iframe#places-of-assignment {
  width: 100%;
  height: 935px;
  border: 0;
}


/* PLUGINS */

/* Contact Form 7 */

form.wpcf7-form {
  width: 100%;
  max-width: 700px;
  padding: 2em;
  background: var(--gray-dark-hex);
  color: #fff;
}

form.wpcf7-form>p,
form.wpcf7-form>p>label {
  display: flex;
  flex-direction: column;
  gap: .1em;
  text-align: initial;
}

form.wpcf7-form>p:nth-of-type(1) {
  margin-top: 0;
}

form.wpcf7-form>p:last-of-type {
  position: relative;
  margin-bottom: 0;
}

form.wpcf7-form :is(input, textarea, select).wpcf7-form-control {
  width: 100%;
  height: 2.5em;
  padding: .5em;
  border: 0;
  background: var(--gray-light-hex);
  font-family: var(--font-family);
  font-size: 1.125rem;
  color: var(--color);
}

form.wpcf7-form textarea.wpcf7-form-control {
  height: 7.5em;
}

form.wpcf7-form option {
  font-family: var(--font-family);
}

span.wpcf7-radio,
span.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: .1em;
  margin-top: .25em;
}

span.wpcf7-radio span.wpcf7-list-item,
span.wpcf7-checkbox span.wpcf7-list-item {
  display: flex;
  margin: 0;
}

span.wpcf7-radio label,
span.wpcf7-checkbox label {
  display: flex;
  gap: .3em;
}

form.wpcf7-form input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  place-content: center;
  margin: .1em 0 0;
  font: inherit;
  color: currentColor;
  border: .15em solid #fff;
  border-radius: 45%;
  cursor: pointer;
  transition: .15s all ease-out;
}

form.wpcf7-form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  display: grid;
  place-content: center;
  margin: .1em 0 0;
  font: inherit;
  color: currentColor;
  border: .15em solid #fff;
  border-radius: 6%;
  cursor: pointer;
  transition: .15s all ease-out;
}

form.wpcf7-form input[type=checkbox]:checked,
form.wpcf7-form input[type=radio]:checked {
  background-color: var(--green-hex);
  border-color: var(--green-hex);
}

form.wpcf7-form input[type=checkbox]::before {
  content: '';
  width: .6em;
  height: .6em;
  transform: scale(0);
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  box-shadow: inset 1em 1em #fff;
  transition: .15s transform ease-out;
}

form.wpcf7-form input[type=checkbox]:checked::before {
  transform: scale(1);
}

span.wpcf7-acceptance span.wpcf7-list-item {
  margin: 0;
  font-size: .75em;
}

span.wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
}

span.wpcf7-acceptance span.wpcf7-list-item-label {
  margin-left: .5em;
}

form.wpcf7-form input[type=submit] {
  height: unset;
  padding: var(--button-padding);
  border: 0;
  border-radius: var(--button-border-radius);
  background: var(--green-hex);
  font-family: var(--button-font-family) !important;
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  color: var(--button-color);
  cursor: pointer;
  transition: .3s opacity ease-out;
}

form.wpcf7-form input[type=submit]:disabled {
  opacity: .5;
}

.wpcf7-spinner {
  display: flex;
  background-color: var(--green-hex);
  opacity: 1;
  position: absolute;
  top: calc(50% - 12px);
}

.wpcf7-spinner::before {
  background-color: #fff;
}

form.wpcf7-form .wpcf7-response-output {
  margin: 1em 0;
  padding: .5em 1em;
}

form.wpcf7-form .wpcf7-response-output:first-of-type {
  margin-top: 1.5em;
}

form.wpcf7-form .wpcf7-response-output:last-of-type {
  margin-bottom: 0;
}

/* RRZE Download */

ul.files {
  list-style: none;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  padding: 0;
}

ul.files+ul.files {
  margin-top: 3em;
}

ul.files li {
  width: calc(50% - .5em);
}

ul.files a {
  min-height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  padding: .75em calc(60px + .75em * 2) .75em calc(80px + .75em);
  background: rgba(var(--gray-light-rgb), .2);
  font-family: var(--asap);
  font-weight: 500;
  text-align: left;
}

ul.files a:hover {
  text-decoration: none;
}

ul.files a::after {
  content: '\ec53';
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: calc(var(--main-font-size) * .75);
  background: #fff;
  border-radius: 100%;
  font-family: 'remixicon' !important;
  font-size: calc(var(--main-font-size) * 1.5);
  font-style: normal;
}

ul.files object {
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  background: var(--green-hex);
  pointer-events: none;
}

ul.files object svg {
  width: 45px;
  height: 45px;
}

/* Simple Lightbox */

#slb_viewer_wrap .slb_theme_slb_black .slb_container {
  border-radius: 0 !important;
  background-color: var(--gray-dark-hex) !important;
  box-shadow: var(--slider-shadow) !important;
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag,
#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag {
  background-image: none !important;
  opacity: 1 !important;
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag::before,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag::before {
  content: '';
  width: var(--slider-arrow-background-width);
  height: var(--slider-arrow-background-height);
  position: absolute;
  top: 39%;
  left: 12px;
  background: rgba(var(--gray-dark-rgb), .5);
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag::after,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag::after {
  content: '\ea64';
  height: var(--slider-arrow-background-height);
  display: flex;
  align-items: center;
  position: absolute;
  top: 39%;
  left: -26px;
  font-family: 'remixicon' !important;
  font-style: normal;
  font-size: calc(var(--slider-arrow-height) * 1.9);
  color: rgba(255, 255, 255, .75);
  text-shadow: var(--slider-shadow);
  transition: all .3s ease-out
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag::before,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag::before {
  content: '';
  width: var(--slider-arrow-background-width);
  height: var(--slider-arrow-background-height);
  position: absolute;
  top: 39%;
  right: 12px;
  background: rgba(var(--gray-dark-rgb), .5);
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag::after,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag::after {
  content: '\ea6e';
  height: var(--slider-arrow-background-height);
  display: flex;
  align-items: center;
  position: absolute;
  top: 39%;
  right: 50px;
  font-family: 'remixicon' !important;
  font-style: normal;
  font-size: calc(var(--slider-arrow-height) * 1.9);
  color: rgba(255, 255, 255, .75);
  text-shadow: var(--slider-shadow);
  transition: all .3s ease-out;
}

#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag:hover::after,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag:hover::after,
#slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_next .slb_template_tag:hover::after,
[dir="rtl"] #slb_viewer_wrap .slb_theme_slb_black .slb_content .slb_prev .slb_template_tag:hover::after {
  color: #fff;
  transition: all .3s ease-out;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_controls .slb_template_tag_ui {
  opacity: 1 !important;
}

#slb_viewer_wrap .slb_theme_slb_default .slb_controls .slb_close .slb_template_tag,
#slb_viewer_wrap .slb_theme_slb_default .slb_controls .slb_slideshow .slb_template_tag {
  position: relative;
  background: rgba(var(--gray-dark-rgb), .5) !important;
}

.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_close::before,
.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control::before,
.slb_theme_slb_default.slideshow_active .slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control::before {
  content: '';
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: -58%;
  color: rgba(255, 255, 255, .75);
  font-family: 'remixicon' !important;
  font-size: 18px;
  transition: all .3s ease-out;
}

.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_close::before {
  content: '\eb98';
}

.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control::before {
  content: '\f00a';
}

.slb_theme_slb_default.slideshow_active .slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control::before {
  content: '\efd7';
  font-weight: bold;
}

.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_close:hover::before,
.slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control:hover::before,
.slb_theme_slb_default.slideshow_active .slb_template_tag.slb_template_tag_ui.slb_template_tag_ui_slideshow_control:hover::before {
  color: #fff;
  transition: all .3s ease-out;
}

/* WP Booking Calendar */

.wp-block-booking-booking .wpbc_container_booking_form {
  width: 100%;
  margin: 0;
}

.wp-block-booking-booking .wpbc_container_booking_form .wpbc__row {
  gap: 2em;
}

.wp-block-booking-booking .wpbc_container_booking_form .wpbc__field:not(.wpbc__cal) {
  display: flex;
  flex-direction: column;
  gap: .1em;
  margin: 0;
  padding: 0;
}

.wp-block-booking-booking .wpbc__field .bk_calendar_frame {
  max-width: unset;
  margin: 0;
}

.wp-block-booking-booking .datepick-inline .date_available,
.wp-block-booking-booking .block_hints .block_free,
.wp-block-booking-booking .block_hints .block_time,
.wp-block-booking-booking .block_hints .block_check_in_out div.check-in-div,
.wp-block-booking-booking .block_hints .block_check_in_out div.check-out-div,
.wp-block-booking-booking .datepick-inline .date_available,
.wp-block-booking-booking .datepick-inline .timespartly.check_in_time div.check-in-div,
.wp-block-booking-booking .datepick-inline .timespartly.check_out_time div.check-out-div {
  background-color: var(--green-hex);
}

.wp-block-booking-booking .datepick-inline .date2approve,
.wp-block-booking-booking .block_hints .date2approve.block_check_in_out,
.wp-block-booking-booking .block_hints .block_pending,
.wp-block-booking-booking .datepick-inline .date2approve,
.wp-block-booking-booking td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div,
.wp-block-booking-booking td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div {
  background-color: var(--yellow-hex);
}

.wp-block-booking-booking .datepick-inline .date_approved,
.wp-block-booking-booking .block_hints .date_approved.block_check_in_out,
.wp-block-booking-booking .block_hints .block_booked,
.wp-block-booking-booking .datepick-inline .date_approved,
.wp-block-booking-booking td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved div.check-in-div,
.wp-block-booking-booking td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {
  background-color: var(--red-hex);
}

.wp-block-booking-booking .datepick-inline {
  border-color: var(--gray-dark-hex);
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.wp-block-booking-booking .datepick-inline .datepick-header {
  background-color: var(--gray-dark-hex);
}

.wp-block-booking-booking .datepick-inline .datepick-title-row th {
  color: var(--gray-dark-hex);
}

.wpbc_cal_container~div:last-of-type {
  display: none;
}

.wp-block-booking-booking .wpbc_container_booking_form .block_hints,
.wp-block-booking-booking .wpbc_booking_form_simple .wpbc__form__div {
  display: flex;
  background: var(--gray-dark-hex);
  color: #fff;
}

.wp-block-booking-booking .datepick-inline {
  border: 0;
}

.wp-block-booking-booking .block_hints.datepick {
  padding-top: .5em;
}

.wp-block-booking-booking .booking_form_div .wpbc_booking_form_simple>.wpbc__form__div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  grid-column-gap: 2em;
  flex-direction: column;
  padding: 2em;
}

.wp-block-booking-booking .wpbc_r_calendar.wpbc__row {
  grid-row: span 8;
}

.wp-block-booking-booking .wpbc__row:not(.wpbc_r_calendar) {
  grid-column: 2/3;
}

.wp-block-booking-booking .wpbc_container_booking_form .wpbc_booking_form_simple .wpbc__field label {
  line-height: var(--line-height);
  font-weight: 400;
}

.wp-block-booking-booking .wpbc_container_booking_form p {
  width: 100%;
  margin: 0;
  padding: 0;
}

.wp-block-booking-booking .wpbc_container.wpbc_form input.wpbc_button_light,
.wp-block-booking-booking .wpbc_container.wpbc_form input.wpbc_button_light:focus,
.wp-block-booking-booking .wpbc_container.wpbc_form input.wpbc_button_light:hover,
.wp-block-booking-booking .wpbc_container .wpbc_button_light,
.wp-block-booking-booking .wpbc_container .wpbc_button_light:focus,
.wp-block-booking-booking .wpbc_container .wpbc_button_light:hover,
.wp-block-booking-booking .wpbc_container.wpbc_container_booking_form .wpbc_button_light,
.wp-block-booking-booking .wpbc_container.wpbc_container_booking_form .wpbc_button_light:focus,
.wp-block-booking-booking .wpbc_container.wpbc_container_booking_form .wpbc_button_light:hover {
  width: 100%;
  height: unset;
  padding: var(--button-padding);
  border: 0;
  border-radius: var(--button-border-radius);
  box-shadow: none;
  background-color: var(--green-hex);
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  font-size: var(--button-font-size);
  line-height: normal;
  color: #fff;
}

.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="date"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="datetime-local"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="datetime"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="email"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="month"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="number"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="password"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="range"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="search"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="tel"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="text"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="time"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="url"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="week"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form select,
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form textarea,
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="date"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="datetime-local"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="datetime"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="email"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="month"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="number"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="password"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="range"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="search"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="tel"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="text"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="time"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="url"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="week"],
.wp-block-booking-booking div.wpbc_container.wpbc_form select,
.wp-block-booking-booking div.wpbc_container.wpbc_form textarea {
  padding: .5em;
  border-radius: 0;
  background-color: var(--gray-light-hex);
  font-family: var(--font-family);
  font-size: 1.125rem;
  color: var(--color);
}

.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="date"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="datetime-local"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="datetime"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="email"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="month"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="number"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="password"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="range"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="search"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="tel"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="text"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="time"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="url"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form input[type="week"],
.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form select,
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="date"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="datetime-local"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="datetime"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="email"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="month"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="number"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="password"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="range"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="search"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="tel"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="text"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="time"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="url"],
.wp-block-booking-booking div.wpbc_container.wpbc_form input[type="week"],
.wp-block-booking-booking div.wpbc_container.wpbc_form select {
  height: 2.5em;
}

.wp-block-booking-booking .wp-core-ui div.wpbc_container.wpbc_form textarea,
.wp-block-booking-booking div.wpbc_container.wpbc_form textarea {
  height: 7.5em;
}

.wpbc_container .wpbc_after_booking_thank_you_section {
  max-width: unset;
}


/* OTHER */

#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}

#overlay.open {
  visibility: visible;
  opacity: 1;
}



/* MEDIA QUERIES */

/* interaction */

@media (hover: none) {}

/* screen width */

@media screen and (max-width: 1740px) {
  #prevention-container {
    right: -125px;
    transition: all .3s ease-out;
  }

  #prevention-container:hover {
    right: 0;
    transition: all .3s ease-out;
  }

  .prevention-icon {
    display: flex;
  }
}

@media screen and (max-width: 1600px) {
  :root {
    --main-menu-font-size: 1.25rem;
  }

  nav#header-main-menu>#home-icon>img {
    scale: .8;
  }
}

@media screen and (max-width: 1440px) {
  :root {
    --section-padding-right-left: 150px;
    --appointment-preview-gap: 50px;
    --post-preview-gap: 50px;
  }

  #post {
    font-size: 1.2rem;
  }

  #post-excerpt {
    font-size: 1.5rem;
  }

  #post-thumbnail {
    height: 50vh;
  }

  #post-body>* {
    margin-left: 15px;
    margin-right: 15px;
  }

  #post-body>figure.wp-block-image {
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
  }
}

@media screen and (max-width: 1380px) {
  :root {
    --header-padding-right-left: 25px;
  }

  header {
    max-height: var(--mobile-vh);
  }
}

@media screen and (max-width: 1240px) {
  :root {
    --section-padding-right-left: 75px;
    --section-home-padding-right-left: 75px;
  }

  .wp-block-columns>.wp-block-column>.wp-block-columns {
    flex-direction: column;
  }

  .wp-block-columns>.wp-block-column>.wp-block-columns:empty {
    display: none;
  }
}

@media screen and (max-width: 1140px) {

  section.page.main .wp-block-columns.is-layout-flex,
  .contact-person {
    flex-direction: column;
  }
}

@media screen and (max-width: 1040px) {
  :root {
    --post-preview-width-home: min(calc((100vw - var(--section-home-padding-right-left) * 2 - var(--post-preview-gap)) / 2), 400px);
    --post-preview-width-page: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--post-preview-gap)) / 2), 420px);
    --post-preview-width-archive: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--post-preview-gap)) / 2), 420px);
    --appointment-preview-width-home: min(calc((100vw - var(--section-home-padding-right-left) * 2 - var(--appointment-preview-gap)) / 2), 400px);
    --appointment-preview-width-page: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-gap)) / 2), 420px);
    --appointment-preview-width-archive: min(calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-gap)) / 2), 420px);
  }

  body.home section#appointments>.slick-slider {
    max-width: calc(var(--appointment-preview-width) * 2 + var(--appointment-preview-gap) * 2);
  }

  body.home section#news>.slick-slider {
    max-width: calc(var(--post-preview-width) * 2 + var(--post-preview-gap) * 2);
  }

  .publications-container {
    flex-direction: column;
  }

  .newsletter-container {
    flex-direction: column;
  }

  .newsletter-container>*:not(style) {
    width: 100%;
  }

  .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: unset;
  }

  section.page.main .wp-block-columns.is-layout-flex {
    flex-direction: column;
  }
}

@media screen and (max-width: 940px) {
  :root {
    --header-height: 120px;
    --section-padding-right-left: 50px;
    --section-home-padding-right-left: 50px;
    --footer-padding-right-left: 50px;
  }

  #prevention-container {
    right: -135px;
  }

  .prevention-icon {
    left: 3%;
  }

  #prevention-container:hover .prevention-icon {
    left: 6%;
  }

  .slide-text h1 {
    font-size: 2.5rem;
  }

  .slide-text p {
    font-size: 1.25rem;
  }

  .slide-text p a {
    font-size: 1.25rem;
  }

  .news-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-row {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
  }

  .footer-column.right-bottom {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 840px) {

  .wp-block-file,
  ul.files {
    flex-direction: column;
  }

  .wp-block-file>a,
  ul.files>li {
    width: 100%;
  }

  .wp-block-booking-booking .booking_form_div .wpbc_booking_form_simple>.wpbc__form__div {
    display: flex;
  }
}

@media screen and (max-width: 782px) {
  #wpadminbar+header {
    margin-top: 46px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --post-preview-width-home: min(calc(100vw - var(--section-home-padding-right-left) * 2), 400px);
    --post-preview-width-page: min(calc(100vw - var(--section-home-padding-right-left) * 2), 400px);
    --post-preview-width-archive: min(calc(100vw - var(--section-home-padding-right-left) * 2), 400px);
    --appointment-preview-width-home: min(calc(100vw - var(--section-home-padding-right-left) * 2), 400px);
    --appointment-preview-width-page: min(calc(100vw - var(--section-padding-right-left) * 2), 400px);
    --appointment-preview-width-archive: min(calc(100vw - var(--section-padding-right-left) * 2), 400px);
  }

  section#appointments,
  section#news {
    padding: var(--section-padding-top-bottom) var(--section-home-padding-right-left);
  }

  .appointments-container .slick-dots,
  .news-container .slick-dots {
    height: calc(var(--slider-dots-height) * 2.5);
    align-items: flex-end;
    position: static;
  }

  .appointments-container .slick-dots li,
  .news-container .slick-dots li {
    height: var(--slider-dots-height);
    background: transparent;
  }

  .appointments-container .slick-dots li button {
    background: var(--gray-dark-hex);
  }

  .news-container .slick-dots li button {
    background: var(--green-hex);
  }

  .appointments-container .slick-dots li.slick-active button {
    background: var(--green-hex);
  }

  .news-container .slick-dots li.slick-active button {
    background: var(--gray-dark-hex);
  }

  .appointments-container .slick-slide,
  .news-container .slick-slide {
    margin: 0 calc((100vw - var(--section-home-padding-right-left) * 2 - var(--appointment-preview-width)) * .5);
  }

  section.page .appointments-container.slick-slider {
    width: 100%;
    margin-left: 0;
  }

  section.page .appointments-container .slick-slide {
    margin: 0 calc((100vw - var(--section-padding-right-left) * 2 - var(--appointment-preview-width)) * .5);
  }

  #rmOrganism .rmBase__el {
    font-size: 1.1rem;
  }

  #rmOrganism .rmBase__compLabel {
    min-width: 6.6em;
  }

  #rmOrganism .rmBase__comp--radio .vFormRadio__group--stacked {
    gap: 30px;
  }

  .single.featured-image-container {
    float: unset;
    margin: 0 0 1.5em;
  }

  .shortcode.appointments-container {
    --appointment-preview-width: min(calc(100vw - var(--section-padding-right-left) * 2), 400px);
    --appointment-preview-height: calc(var(--appointment-preview-width) / 3 * 4);
  }

  .shortcode.appointment.post-preview {
    flex-direction: column;
  }

  .shortcode.appointment.post-image-container {
    width: 100%;
    height: 50%;
  }

  .shortcode.appointment.post-body {
    width: 100%;
    height: 50%;
    gap: calc(var(--appointment-preview-width) / 2 * 3 * .02);
    padding: calc(var(--appointment-preview-width) * .065) calc(var(--appointment-preview-width) * .085);
  }

  h3.shortcode.appointment.post-heading,
  .shortcode.appointment.post-read-more {
    font-size: calc(var(--appointment-preview-height) * .1);
  }

  .shortcode.appointment.post-info-container {
    font-size: calc(var(--appointment-preview-height) * .075);
  }
  footer {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-padding-right-left: 15px;
    --scp-image-width: min(calc(100vw - var(--section-padding-right-left) * 2), 300px);
  }

  #wpadminbar {
    position: fixed;
  }

  body.home main ul:not(.slick-dots) {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  body.home section h2 {
    font-size: 2rem;
  }

  .slide-source a {
    font-size: .875rem;
  }

  #rmOrganism .rmBase__el {
    flex-direction: column;
    gap: .6em;
  }

  .person-shortcode {
    min-width: unset;
    flex-direction: column;
  }

  .person-shortcode-body {
    width: var(--scp-image-width);
    height: unset;
  }

  .archive.appointment.posts-container {
    justify-content: center;
  }

  .archive.post-info-container {
    flex-direction: column;
    gap: .5em;
  }

  .footer-column.right-bottom {
    justify-content: space-around;
    gap: 0;
  }

  form.wpcf7-form {
    padding: 1.5em;
  }
}

@media screen and (max-width: 540px) {
  :root {
    --main-font-size: 1rem;
    --h1-font-size: 2.1rem;
    --h2-font-size: 1.8rem;
    --h3-font-size: 1.5rem;
    --h4-font-size: 1rem;
    --section-padding-right-left: 24px;
    --section-home-padding-right-left: 30px;
    --footer-padding-right-left: 24px;
    --footer-font-size: .75rem;
  }

  .publication {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    grid-row-gap: 15px;
  }

  .publication-cover {
    grid-row: 2;
    height: 240px;
  }

  body.home section#publications .publication-title h3 {
    margin-bottom: 0;
  }

  .sib_signup_box_inside_1>label,
  .sib_signup_box_inside_1>input {
    grid-column: 1/3;
  }

  .sib_signup_box_inside_1>input {
    margin-top: -.75em;
  }

  form.wpcf7-form {
    min-width: unset;
  }

  footer {
    background-size: 400%;
  }

  .footer-row {
    justify-content: center;
  }

  .organization-logos {
    flex-direction: column;
    gap: 40px;
  }

  .sub-organization-logos {
    padding-top: 0;
  }

  .footer-row .social-media {
    width: 45px;
    height: 45px;
    font-size: calc(45px * .5);
  }

  nav#footer-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }

  nav#footer-menu ul>li:not(:nth-of-type(1))::before {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  :root {
    --h1-font-size: 1.8rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.2rem;
    --h4-font-size: .9rem;
    --section-home-padding-right-left: 25px;
    --button-font-size: 1.25rem;
    --footer-font-size: .9rem;
  }

  .slide-text h1 {
    font-size: 1.75rem;
  }

  .slide-text p {
    font-size: 1.125rem;
  }

  .slide-text p a {
    font-size: 1.125rem;
  }

  #rmOrganism .rmSubscription .rmBase__container {
    padding: 18px;
  }

   #rmOrganism .rmBase__el {
    font-size: 1rem;
  }

  #rmOrganism .rmBase__comp--radio .vFormRadio__group--stacked {
    gap: 18px;
  }

  #rmOrganism .rmBase__comp--radio .vFormRadio--stacked {
    gap: 9px;
  }

  .wp-block-file>a,
  ul.files a {
    min-height: 80px;
    padding: .75em calc(45px + .75em * 2) .75em calc(70px + .75em);
  }

  .wp-block-file>a:not(.wp-element-button)::before,
  ul.files object {
    width: 70px;
    /* 		height: 80px; */
  }

  ul.files a::after,
  .wp-block-file>a:not(.wp-element-button)::after {
    width: 45px;
    height: 45px;
  }

  ul#menu-fussmenue,
  .footer-column.right-bottom {
    justify-content: space-between;
  }
}

@media screen and (max-width: 380px) {
  :root {
    --header-height: 90px;
  }
}