@font-face {
  font-family: 'ws_regular';
  src: url('../fonts/ws_regular.woff2') format('woff2'), url('../fonts/ws_regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ws_semibold';
  src: url('../fonts/ws_semibold.woff2') format('woff2'), url('../fonts/ws_semibold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'ws_semibold', 'Tahoma', 'Verdana', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  margin: 0;
  background-color: #fff;
  position: relative;
}
body.admin-bar .header {
  top: 32px;
}
h1 {
  font-size: 42px;
  margin-bottom: 30px;
  margin-top: 20px;
}
p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}
p a {
  text-decoration: underline;
}
a,
a:visited {
  color: #404040;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
#overlay {
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms;
}
#overlay.open {
  opacity: 1;
  pointer-events: all;
}
#overlay .overlay_content {
  padding: 10px;
  position: relative;
}
#overlay #close_overlay {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  border-bottom: 1px solid #fcc7e3;
  background-color: #fbe7e8;
}
.header .header_infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.header .header_infos .logo {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.header .header_infos .logo .irhi_logo {
  height: 100px;
  float: left;
  width: auto;
  margin-right: 20px;
  transition: all 300ms;
}
.header .header_infos .logo h1 {
  font-size: 24px;
  margin: 0;
  line-height: 28px;
}
.header .header_infos .lang_switch {
  font-size: 20px;
  line-height: 24px;
}
.header .header_infos .lang_switch a {
  margin-right: 10px;
  text-decoration: none;
}
.header .header_infos .lang_switch a.support_link {
  background-color: #fff;
  border-radius: 4px;
  padding: 7px 12px 4px 12px;
  margin-top: -4px;
  box-shadow: 0 0 4px pink;
}
.header .header_infos .lang_switch .lang_link {
  background: transparent url('../images/irhi-icon-lang-bubble.svg') no-repeat center -2px;
  padding: 16px;
  color: #fff;
}
.header .cat_switch {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  margin-top: -40px;
  height: calc(100vh - 200px);
  align-items: center;
}
.header .cat_switch li {
  display: inline-block;
  transition: all 300ms;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  line-height: 24px;
  padding: 0 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.header .cat_switch li a {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-decoration: none;
}
.header .cat_switch li img {
  height: 220px;
  width: auto;
  transition: all 300ms;
}
.header .cat_switch li:hover img {
  transform: scale(1.2);
}
.header .cat_switch li:first-of-type:before {
  height: 1px;
  width: 80%;
  position: absolute;
  background-color: red;
  left: 10%;
  bottom: 0;
}
.header .cat_switch li:last-of-type:before {
  height: 1px;
  width: 80%;
  position: absolute;
  background-color: red;
  left: 10%;
  top: 0;
}
.header a {
  text-decoration: underline;
}
.container {
  margin: 0 auto;
  max-width: 750px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.categories {
  font-size: 16px;
  z-index: 50;
  background-color: #fff;
  opacity: 0;
  transition: all 300ms;
  display: none;
}
.categories:after {
  content: '';
  clear: both;
  display: block;
}
.category {
  opacity: 0;
  pointer-events: none;
  transition: all 300ms;
  position: absolute;
}
.category.visible {
  opacity: 1;
  pointer-events: all;
}
.category .cat_title {
  font-size: 22px;
  padding: 10px 0;
  display: block;
}
.category .addon {
  padding: 10px 5px;
}
.category .addon a {
  text-decoration: underline;
}
#linklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
#linklist > li {
  opacity: 0;
  pointer-events: none;
  height: 0;
  transition: all 300ms;
  margin-bottom: 0;
}
#linklist > li.visible {
  opacity: 1;
  pointer-events: all;
  height: auto;
  margin-bottom: 30px;
}
#linklist > li.zwischenheadline {
  font-size: 44px;
  line-height: 42px;
  display: block;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #efa7cd;
}
#linklist > li.zwischenheadline.visible {
  margin-top: 0;
  padding-top: 40px;
}
#linklist > li .link_header {
  margin-bottom: 5px;
}
#linklist > li .link_header a {
  font-size: 34px;
  line-height: 30px;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
  word-break: break-all;
}
#linklist > li .infotext {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  font-family: 'ws_regular';
}
#linklist .wp-video {
  display: none;
}
#linklist.filme .wp-video {
  display: block;
  width: 100%;
  max-width: 500px;
}
.mejs-overlay.mejs-layer.mejs-overlay-play,
.mejs-controls,
.mejs-iframe-overlay {
  display: none !important;
}
.langs {
  list-style: none;
  padding: 0;
}
.langs li {
  display: inline-block;
  margin: 0 3px;
}
.langs li img {
  height: 18px;
  width: auto;
}
.langs li a {
  line-height: unset !important;
}
body.filtered .header {
  bottom: unset;
}
body.filtered .header .header_infos .logo .irhi_logo {
  height: 64px;
}
body.filtered .cat_switch {
  height: auto;
}
body.filtered .cat_switch li {
  opacity: 0.5;
  width: auto;
  height: auto;
}
body.filtered .cat_switch li img {
  height: 100px;
}
body.filtered .cat_switch li:before,
body.filtered .cat_switch li:after {
  display: none;
}
body.filtered .cat_switch li.active {
  opacity: 1;
}
body.filtered .categories {
  opacity: 1;
  display: block;
}
#footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-top: 1px solid #fcc7e3;
  background-color: #fbe7e8;
  padding: 10px;
}
#footer .donation_info {
  line-height: 25px;
  display: flex;
}
#footer .donation_info strong {
  margin: 0 10px;
}
#footer .donation_info img {
  height: 25px;
  margin: 0 10px;
}
@media (max-width: 720px) {
  body {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header .header_infos {
    flex-flow: column;
    padding: 30px 10px;
  }
  .header .header_infos .logo .irhi_logo {
    height: 50px;
    margin-right: 10px;
  }
  .header .header_infos .lang_switch {
    width: 100%;
    text-align: right;
    margin-top: 20px;
  }
  .header .header_infos .lang_switch,
  .header .header_infos .logo h1 {
    font-size: 16px;
    line-height: 22px;
  }
  .header .cat_switch li {
    font-size: 16px;
    line-height: 20px;
  }
  .container {
    padding-top: 60px !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .admin-bar.container {
    padding-top: 32px !important;
  }
  body.filtered .header {
    position: relative;
  }
  body.filtered .header .cat_switch {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #footer {
    position: relative;
  }
  #footer .donation_info {
    flex-flow: column;
  }
}
