/**
    Base SCSS File
**/
.tableTbl {
  display: table;
  table-layout: fixed;
  border-collapse: separate;
}

.rowTbl {
  display: table-row;
}

.colTbl {
  display: table-cell;
  vertical-align: top;
}

.colTblLast {
  display: table-cell;
  vertical-align: top;
}

/*Grid layouts*/
.tableGrd {
  display: -ms-grid;
  display: grid;
}

@media (max-width: 1023px) {
  .tableGrd {
    -ms-grid-columns: 100% !important;
        grid-template-columns: 100% !important;
  }
}

/*Float layouts*/
/** @TODO needs hidden???? **/
.tableFlt {
  overflow: auto;
}

.rowFlt {
  float: left;
  width: 100%;
}

.rowFlt:after {
  clear: both;
  content: "";
  display: block;
}

.colFlt {
  float: left;
}

.invisibleComponent,
.emptyCellTable,
.emptyCellGrid {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}

.myGal .CMS_ViewRow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.myGal img {
  max-width: 100%;
}

.twitter_cnt {
  padding: 1rem;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
}

.bold {
  font-weight: bold;
}

body {
  font: 100% "Roboto", Arial, Verdana, serif, sans-serif;
  color: #333;
  padding: 0px;
  margin: 0px;
  /*background: linear-gradient( to bottom, #cccccc 0, #cccccc 400px, #ebebeb 400px, #ffffff 100%);*/
  line-height: 1.5rem;
}

body .site_wrapper {
  background: white;
  width: 90%;
  margin: 0px auto 0px auto;
  -webkit-box-shadow: -40px 0px 90px 0px rgba(0, 0, 0, 0.1), 40px 0px 90px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -40px 0px 90px 0px rgba(0, 0, 0, 0.1), 40px 0px 90px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023px) {
  body .site_wrapper {
    width: 100%;
    font-size: 1.1rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 1024px) {
  body .site_wrapper {
    font-size: 1rem;
  }
}

@media (min-width: mid-desktop-width) {
  body .site_wrapper {
    width: 80%;
  }
}

@media (min-width: 1440px) {
  body .site_wrapper {
    width: 1296px;
    font-size: 1.2rem;
  }
}

body .site_wrapper h1, body .site_wrapper h2, body .site_wrapper h3 {
  color: #024689;
  font-weight: 400;
  margin: 1em 0 0.5em 0;
}

body .site_wrapper h1 {
  line-height: 2.5rem;
}

@media (max-width: 600px) {
  body .site_wrapper h1 {
    font-size: 1.7em !important;
  }
}

body .site_wrapper .memberEntryText {
  margin-top: 0;
}

body .site_wrapper .mobile_contact {
  display: none;
  position: fixed;
  top: 35%;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: url("images/contact.svg") no-repeat center #f3f3f3;
  background-size: 75%;
  border-bottom: solid 2px #b3b3b3;
}

@media (max-width: 1023px) {
  body .site_wrapper .mobile_contact {
    display: block;
  }
}

body .site_header_mobile {
  display: none;
  position: fixed;
  height: 70px;
  width: 100%;
  background: white;
  z-index: 999;
}

@media (max-width: 1023px) {
  body .site_header_mobile {
    display: block;
  }
}

body .site_header_mobile img {
  border: 0px;
  padding: 0px;
  margin: 0px;
  height: 50px;
}

body .site_header_mobile .mobile_logo {
  padding: 10px 0px 0px 10px;
  float: left;
}

body .site_header_mobile .burger_icon:before {
  content: "";
  position: absolute;
  right: 10px;
  width: 1.25em;
  height: 0.15em;
  background-color: #333;
  -webkit-box-shadow: 0 0.4em 0 0 #333, 0 0.8em 0 0 #333;
          box-shadow: 0 0.4em 0 0 #333, 0 0.8em 0 0 #333;
}

body .site_header_mobile .burger_icon {
  float: right;
  padding: 20px;
  position: relative;
  margin: 5px 20px 10px 10px;
}

body .site_header_mobile .burger_menu {
  -webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.05);
}

body .site_header_mobile .burger_menu ul {
  position: relative;
  height: 100px;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  width: 100%;
  overflow: auto;
  opacity: 0;
  height: 0;
}

body .site_header_mobile .burger_menu ul.burgerMenuVisible {
  opacity: 1;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  -webkit-transition: all 0.20s ease-in-out 0s;
  transition: all 0.20s ease-in-out 0s;
}

body .site_header_mobile .burger_menu ul li {
  padding: 15px;
  background-color: #011b36;
  display: block;
  width: 100%;
  border-top: solid 1px white;
  color: white;
  text-decoration: none;
}

body .site_header_mobile .burger_menu ul li:first-child {
  border-top: solid 1px transparent;
}

body .site_header_mobile .burger_menu ul li a {
  color: white;
  text-decoration: none;
}

body .site_header_mobile .burger_menu ul .mobileSubClosed {
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.20s ease-in-out 0s;
  transition: all 0.20s ease-in-out 0s;
}

body .site_header_mobile .burger_menu ul .mobileSubOpen {
  opacity: 1;
  height: auto;
  -webkit-transition: all 0.20s ease-in-out 0s;
  transition: all 0.20s ease-in-out 0s;
}

body .site_header_mobile .burger_menu ul .langMobile a {
  padding-right: 10px;
}

body .site_header_mobile .burger_menu ul .langMobile a img {
  height: 22px !important;
}

body .site_header {
  font-size: 0.9em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25fr 35fr 40fr;
      grid-template-columns: 25fr 35fr 40fr;
}

@media (max-width: 1023px) {
  body .site_header {
    display: none;
  }
}

body .site_header .site_header_search {
  /*margin-right: $header-padding;*/
  display: -ms-grid;
  display: grid;
  -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 60px;
}

body .site_header .site_header_search form {
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: end;
}

body .site_header .site_header_search form input {
  padding: 5px;
  margin-right: 10px;
  display: table-cell;
  width: 75%;
}

body .site_header .site_header_search form button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: table-cell;
  vertical-align: middle;
  width: 38px;
}

body .site_header .site_header_search form button img {
  border: none;
}

body .site_header .site_header_search img {
  margin: 0;
}

body .site_header .site_header_menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

body .site_header .site_header_menu ul li {
  padding: 0px;
  margin: 0px;
  float: left;
}

body .site_header .site_header_menu ul li a {
  cursor: pointer;
  text-decoration: none;
  line-height: 110px;
  padding: 20px;
  color: #303030;
  font-weight: 400;
}

body .site_header .site_header_menu ul li a:hover {
  text-decoration: underline;
}

body .site_header .site_header_logo {
  height: 110px;
  width: 60px;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  background: url("images/hu_logo.gif") center no-repeat;
}

@media (min-width: 1024px) {
  body .site_header .site_header_logo {
    width: 320px;
    background: url("images/hu_logo.gif") center no-repeat;
  }
}

@media (max-width: 1023px) {
  body .site_header .site_header_logo {
    width: 320px;
    background: url("images/hu_logo2.png") no-repeat;
  }
}

body .site_slider {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.25fr 0.75fr;
      grid-template-columns: 0.25fr 0.75fr;
  height: 230px;
  background-image: url("images/header_bg.jpg");
  background-repeat: repeat-x;
  background-position: bottom left;
}

body .site_slider .site_logo {
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-position-x: left;
}

body .site_slider .site_logo a {
  display: inline-block;
  width: 100%;
  padding: 72px 16px;
}

body .site_slider .site_slider_wrapper {
  height: 230px !important;
}

body .site_slider .site_slider_wrapper img {
  border: 0;
  padding: 0;
  margin: 0;
}

body .site_slider .site_slider_wrapper .banner {
  height: 230px;
}

body .site_slider .site_slider_wrapper .banner li {
  height: 230px;
}

body .site_slider .site_slider_wrapper .banner li img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  right: 0px;
  bottom: 0px;
}

@media (max-width: 1023px) {
  body .site_slider {
    display: none;
  }
}

body .site_menu {
  background-color: #011b36;
  padding-left: 25%;
  position: relative;
  font-size: 0.98rem;
}

body .site_menu #languageSwitch {
  position: absolute;
  top: 10px;
  left: 15px;
}

body .site_menu #languageSwitch a {
  padding-left: 15px;
}

@media (max-width: 1023px) {
  body .site_menu {
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  body .site_menu {
    font-size: 0.98rem;
  }
}

body .site_menu .site_menu_items {
  margin-top: 0;
  margin-bottom: 0px;
  color: white;
  list-style-type: none;
  padding: 0;
}

body .site_menu .site_menu_items .site_menu_item {
  position: relative;
  display: list-item;
  float: left;
  background-color: #011b36;
  -webkit-transition: all 0.10s ease-in-out 0s;
  transition: all 0.10s ease-in-out 0s;
}

@media (min-width: 1024px) {
  body .site_menu .site_menu_items .site_menu_item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

body .site_menu .site_menu_items .site_menu_item:hover {
  cursor: pointer;
  background-color: #024181;
  -webkit-transition: all 0.20s ease-in-out 0s;
  transition: all 0.20s ease-in-out 0s;
}

body .site_menu .site_menu_items .site_menu_item:hover .site_menu_submenu {
  visibility: visible;
  opacity: 1;
  top: 100%;
  -webkit-transition: all 0.10s ease-in-out 0s;
  transition: all 0.10s ease-in-out 0s;
}

body .site_menu .site_menu_items .site_menu_item a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  display: inline-block;
}

body .site_menu .site_menu_items .menue_active {
  background: #024181;
}

body .site_menu .site_menu_items .site_menu_submenu {
  visibility: hidden;
  position: absolute;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  background-color: #024181;
  width: 250px;
  left: 0px;
  top: 120%;
  opacity: 0;
  z-index: 90;
  -webkit-transition: all 0.10s ease-in-out 0s;
  transition: all 0.10s ease-in-out 0s;
}

body .site_menu .site_menu_items .site_menu_submenu .site_menu_submenu_item {
  border-left: solid 7px transparent;
  overflow: hidden;
}

body .site_menu .site_menu_items .site_menu_submenu .site_menu_submenu_item:hover {
  -webkit-transition: all 0.10s ease-in-out 0s;
  transition: all 0.10s ease-in-out 0s;
  border-left: solid 7px #011b36;
}

body .site_menu .site_menu_items .site_menu_submenu .site_menu_submenu_item a {
  display: inline-block;
  padding: 10px 15px;
  width: 100%;
}

body .site_menu .site_menu_items:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

@media (max-width: 1023px) {
  body .site_menu {
    display: none;
  }
}

body .site_content {
  padding-top: 20px;
}

body .site_content .burger_spacer {
  height: 0;
}

@media (max-width: 1023px) {
  body .site_content .burger_spacer {
    height: 70px;
  }
}

body .site_content .side {
  float: left;
  font-size: 1.0em;
}

@media (max-width: 1023px) {
  body .site_content .side {
    display: none;
  }
}

@media (min-width: 1024px) {
  body .site_content .side {
    width: 25%;
  }
}

@media (min-width: 1440px) {
  body .site_content .side {
    width: 25%;
  }
}

body .site_content .side .infobox {
  background-color: #f3f3f3;
  padding: 20px 20px 20px 0;
  margin-bottom: 30px;
  border-bottom: solid 8px #a8a8a8;
}

body .site_content .side .infobox h1 {
  border-left: 10px solid #a8a8a8;
  color: #575757;
  padding: 10px 30px 0 20px;
  margin: 0;
  font-weight: 400;
}

body .site_content .side .infobox h2 {
  color: #646464;
  padding: 15px 30px 0 30px;
  font-size: 1.0em;
}

body .site_content .side .infobox p {
  color: #646464;
  line-height: 1.5em;
  padding: 0 30px;
}

body .site_content .side .infobox a {
  color: #024689;
}

body .site_content .side .infobox img {
  margin: 0;
}

body .site_content .side .headlineGreyContainer img {
  min-width: 100%;
  max-width: 100%;
  height: auto !important;
  width: auto !important;
}

body .site_content .headlineGreyContainer {
  background-color: #f3f3f3;
  border-bottom: solid 5px #a8a8a8;
  margin-bottom: 25px;
  margin-top: 3px;
}

body .site_content .headlineGreyContainer h1 {
  border-left: 5px solid #024689;
  padding: 15px 25px 0px 25px;
}

body .site_content .headlineGreyContainer .headlineGreyContainerText {
  font-size: 0.8em;
  padding: 10%;
  overflow: auto;
}

body .site_content .memberTable {
  min-width: 100px;
  min-height: 100px;
}

body .site_content .site_content_root {
  padding: 0 30px 20px 30px;
  background: white;
  min-height: 1300px;
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  body .site_content .site_content_root {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  body .site_content .site_content_root {
    margin-left: 25%;
  }
}

@media (min-width: 1440px) {
  body .site_content .site_content_root {
    margin-left: 25%;
  }
}

body .site_content .site_content_root ul {
  list-style: square;
}

body .site_content .site_content_root p {
  line-height: 1.5em;
  margin-bottom: 2em;
}

body .site_content .site_content_root .site_content_breadcrumps .breadcrumplabel {
  float: left;
  margin-right: 10px;
}

body .site_content .site_content_root .site_content_breadcrumps span.breadcrumpspacer::before {
  content: '> ';
  margin: 0px 5px 0px 8px;
  text-decoration: none;
  cursor: default;
}

body .site_content .site_content_root .site_content_breadcrumps span.breadcrumpspacer a {
  text-decoration: none;
}

body .site_content .site_content_root .site_content_breadcrumps span.breadcrumpspacer a:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  body .site_content .site_content_root .site_content_breadcrumps {
    display: none;
  }
}

body .site_content .site_content_root .content div {
  line-height: inherit;
}

@media (max-width: 1023px) {
  body .site_content .site_content_root img {
    max-width: 100% !important;
    height: auto !important;
  }
}

body .site_content .site_content_root a i.fa-at {
  text-decoration: underline;
}

body .site_content .site_content_root a:hover i.fa-at {
  text-decoration: none;
}

body .site_content .site_content_root .newsTopDateMonth {
  font-weight: 400;
  font-size: 1.0em;
  line-height: 1em !important;
  margin-top: 5px;
}

body .site_content .site_content_root .newsTopDateDay {
  font-weight: 500;
  font-size: 1.5em;
  line-height: 1.05em !important;
}

body .site_content .site_content_root .personImage {
  width: 150px;
}

body .site_content .site_content_root .unisyscat_logo {
  width: 150px;
  height: 54px;
  position: absolute;
  text-align: right;
  top: -100px;
  right: 10px;
  background: url("/projects/KneippLab/static/custom/image/unisyscat_logo.png");
  background-repeat: no-repeat;
  background-size: 125px;
  background-position-x: right;
  color: transparent;
  display: block;
}

@media (max-width: 600px) {
  body .site_content .site_content_root .unisyscat_logo {
    display: none;
  }
}

body .site_content .site_content_root .einstein_logo {
  width: 150px;
  height: 90px;
  position: absolute;
  text-align: right;
  top: -90px;
  right: 10px;
  background: url("/projects/KneippLab/static/custom/image/einstein_logo.png");
  background-repeat: no-repeat;
  background-size: 110px;
  background-position-x: right;
  color: transparent;
  display: block;
}

@media (max-width: 600px) {
  body .site_content .site_content_root .einstein_logo {
    display: none;
  }
}

body .site_content .site_content_root .salsa_proj_logo {
  color: transparent;
  background: url("/projects/KneippLab/static/custom/image/salsa_logo_small.jpg");
  background-position-x: 100%;
  background-position-y: 0%;
  background-repeat: no-repeat;
  background-size: 144px;
  height: 75px;
  width: 230px;
  position: absolute;
  top: 0px;
  right: 0px;
}

@media (max-width: 600px) {
  body .site_content .site_content_root .salsa_proj_logo {
    display: none;
    /**position: relative;
          width: 100%;**/
  }
}

body .site_content .site_content_root form[name=contactForm] input {
  width: 100%;
  padding: 10px;
  border: 1px solid #a8a8a8;
  font: 100% "Roboto", Arial, Verdana, serif, sans-serif;
}

body .site_content .site_content_root form[name=contactForm] button {
  background-color: #003c6c;
  border: none;
  padding: 10px 30px;
  color: #fff;
  font: 100% "Roboto", Arial, Verdana, serif, sans-serif;
  cursor: pointer;
}

body .site_content .site_content_root form[name=contactForm] textarea {
  width: 100%;
  height: 200px;
}

body .site_content .mAppointmentTeaserHome .mAppointmentDate {
  font-weight: bold;
  display: inline;
}

body .site_content .mAppointmentTeaserHome .mAppointmentTeaser {
  display: inline;
}

body .site_content form[name="searchFormPub"] .CMS_ViewRow {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

body .site_content form[name="searchFormPub"] select, body .site_content form[name="searchFormPub"] input {
  padding: 5px;
}

body .site_content div.searchResultTitle {
  font-weight: bold;
}

body .site_content span.searchResultScore {
  padding-left: 10px;
  color: #aaaaaa;
  font-size: 8pt;
}

body .site_content .searchResultTitle {
  text-align: left;
}

body .site_content .searchGroup {
  position: relative;
  padding: 20px 20px 20px 0px;
  margin: 0px 20px 0px 0px;
}

body .site_content .tabsactive {
  border-color: #8e8e8e #8e8e8e #fff #8e8e8e;
  border-width: 1px;
  border-style: solid;
  background-color: white;
}

body .site_content .tabsnormal {
  border-style: solid;
  border-width: 1px;
  border-color: #8e8e8e;
  background-color: #efefef;
  -moz-box-border: border-box;
}

body .site_content #tabcont {
  z-index: 20;
  border-bottom: solid 1px #8e8e8e;
  position: relative;
  height: 30px;
  margin-right: 20px;
  padding-left: 10px;
}

body .site_content #tabcont > a.tablink {
  display: block;
  float: left;
  font-weight: bold;
  color: #4a4d4a;
  margin: 0px 3px 0px 0px;
  text-decoration: none;
  padding: 0px 10px;
  height: 29px;
  line-height: 30px;
}

body .site_content ol.olResultSubGroup {
  padding: 0px;
}

body .site_footer {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  font-size: 0.9em;
  clear: both;
}

body .site_footer ul {
  list-style: none;
  margin: 10px;
  padding: 10px;
  clear: both;
}

body .site_footer ul li {
  display: inline-block;
  margin: 0px;
  padding: 10px;
}

body .site_footer ul li a {
  text-decoration: none;
}

body .site_footer ul li a:hover {
  text-decoration: underline;
}

body .site_footer a {
  font-weight: 500;
}

body .mobile_contact_overlay {
  padding: 3rem;
  background: #f3f3f3;
  width: 100%;
  position: fixed;
  top: 20px;
  left: 0px;
  height: 100vh;
}
/*# sourceMappingURL=style.css.map */