@charset "UTF-8";
@import "font.css";
@import "fa.css";
@import "default_vars.css";
/*@import "vars.css";*/
html {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  margin: 0 auto;
  transition: all 5s linear;
  padding: 0;
  height: 100%;
  background-color: var(--main-bg-color);
  color: var(--main-text-general-color);
  font-size: var(--main-text-general-font-size);
}

body.event_index_index {
  background-color: var(--main-bg-color-start);
}

p {
  color: var(--main-text-p-color);
  font-size: var(--main-text-p-font-size);
}

h1 {
  color: var(--main-text-h1-color);
  font-size: var(--main-text-h1-font-size);
  line-height: calc(var(--main-text-h1-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

h2 {
  color: var(--main-text-h2-color);
  font-size: var(--main-text-h2-font-size);
  line-height: calc(var(--main-text-h2-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

h3 {
  color: var(--main-text-h3-color);
  font-size: var(--main-text-h3-font-size);
  line-height: calc(var(--main-text-h3-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

h4 {
  color: var(--main-text-h4-color);
  font-size: var(--main-text-h4-font-size);
  line-height: calc(var(--main-text-h4-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

h5 {
  color: var(--main-text-h5-color);
  font-size: var(--main-text-h5-font-size);
  line-height: calc(var(--main-text-h5-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

h6 {
  color: var(--main-text-h6-color);
  font-size: var(--main-text-h6-font-size);
  line-height: calc(var(--main-text-h6-font-size) * 1.2);
  margin: 0;
  font-weight: 700;
}

b, strong {
  font-weight: 700;
}

.topBar {
  background-color: var(--header-thin-bar-bg-color);
  height: 42px;
  width: 100%;
}

.dateBar {
  display: flex;
  justify-content: space-around;
}

.dateBar .begin,
.dateBar .end {
  width: 40px;
  background-color: var(--header-thin-bar-bg-color);
  display: none;
}

.dateBar .begin {
  margin-left: auto;
  position: relative;
}

.dateBar .begin .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-top-right-radius: 8px;
  background-color: var(--header-active-bg-color);
}

.dateBar .end {
  margin-right: auto;
  position: relative;
}

.dateBar .end .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-top-left-radius: 8px;
  background-color: var(--header-active-bg-color);
}

.isScrolling .dateBar .begin,
.isScrolling  .dateBar .end,
#header.active .dateBar .begin,
#header.active  .dateBar .end {
  display: block;
}

.dateBar .text {
  background-color: var(--header-thin-bar-bg-color);
  padding: 0 47px;
  line-height: 34px;
  height: 34px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  font-size: 14px;
  font-weight: 800;
  color: var(--header-date-text-color);
}

#portallogo_body_link3 {
  pointer-events: none;
}

.event_index_index.noLogin #portallogo_body3.loaded {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
}

* {
  box-sizing: border-box;
  font-family: var(--main-font-family), "sans-serif", "Arial", "Helvetica";
  font-weight: 500;
}

#header_content {
  background: var(--header-bg-color);
}

#header_content,
#left_content,
#middle_content,
#footer_content {
  max-width: calc(1240px + 6%);
  margin: 0 auto;
  padding-right: 3%;
  padding-left: 3%;
}

#header_lang {
  display: inline-block;
  position: absolute;
  top: 49px;
  right: 4.5%;
  padding: 19px 0 19px 10px;
  z-index: 1;
}
#header_lang a {
  width: auto;
  height: auto;
  line-height: 13px;
  font-size: 13px;
  font-weight: 400;
  color: var(--header-menu-text-color);
  background: none;
  border-bottom: unset;
  margin-bottom: 25px;
  margin-left: 10px;
}

#header_lang a:hover {
  padding-bottom: 22px;
  border-bottom: 3px solid var(--header-menu-text-active-color);
  color: var(--header-menu-text-active-color);
  margin-bottom: 0;
}

#header_lang a.activeLang {
  display: none;
}

#header_content {
  height: 100%;
  position: relative;
  max-width: unset;
  padding: 0;
  z-index: 1;
}

#header_content > a {
  border-bottom: none;
}

#middle_content {
  padding-bottom: 1.25rem;
}

#page_margins {
  box-sizing: border-box;
  min-height: 100%;
  position: relative;
}

#footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 20px;
  padding-bottom: 5px;
  min-height: 115px;
  display: flex;
  align-items: center;
  background-color: var(--footer-bg-color);
}

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

a {
  color: var(--main-text-link-color);
}

a:hover {
  color: var(--main-text-link-active-color);
}

#navigation_3 {
  display: block;
  padding-top: 10px;
  position: relative;
}

#header.active #navigation_3 {
  background-color: var(--header-active-bg-color);
}



.headerBorder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  display: none;
  background-color: var(--header-menu-item-underline-color);
  opacity: 0.2;
  transition: all 0.3s linear;
  z-index: 0;
  pointer-events: none;
}

#header.active .headerBorder,
#header:hover .headerBorder {
  display: block;
  z-index: 1;
}

#navigation_1 >  ul,
#navigation_2 > ul,
#navigation_3 > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
#navigation_1 ul li a,
#navigation_2 ul li a,
#navigation_3 ul li a {
  line-height: 1.5rem;
  padding: 0 0.5em;
  border-bottom: none;
  display: block;
}
#navigation_1 ul li a:hover,
#navigation_2 ul li a:hover,
#navigation_3 ul li a:hover {
  text-decoration: underline;
}

#navigation_3 > ul {
  justify-content: center;
}

#navigation_3 ul li {
  position: static;
  margin: 0;
}

#navigation_3 ul li a {
  padding: 19px 21px;
  color: var(--header-menu-text-color);
  font-size: 18px;
  font-weight: 800;
  line-height: 22px;
  text-transform: uppercase;
  position: relative;
  border: none !important;
  text-decoration: none !important;
}

#navigation_3 > ul > li > a::after {
  background-color: transparent;
  left: 21px;
  right: 21px;
  bottom: -2px;
  content: "";
  position: absolute;
  transition: opacity .25s ease-out;
  display: inline-block;
  height: 3px;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

#navigation_3 ul li:hover > a::after {
  opacity: 1;
  background-color: var(--header-menu-text-color);
}

#navigation_3 ul li > a:hover {
  color: var(--header-menu-text-active-color);
}

#navigation_3 ul li > a:hover::after {
  background-color: var(--header-menu-item-underline-color);
}

#navigation_3 > ul >  li {
  position: relative;
}

#navigation_3 ul ul {
  position: absolute;
  left: 0;
  top: 60px;
  padding: 30px 20px;
  display: none;
  background-color: var(--header-active-bg-color);
  list-style-type: none;
  z-index: 1;
}

#navigation_3 ul ul.active {
  display: block;
}

#navigation_3 ul ul:before,
#navigation_3 ul ul:after {
  /*width: 100%;
  height: 40px;
  content: " ";
  display: block;*/
}


#navigation_3 ul ul li {

}

#navigation_3 ul ul li a {
  padding: 10px 24px 10px 12px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: none;
  border-radius: 5px;
  min-width: 250px;
  color: var(--header-menu-submenu-text-color);

}

#navigation_3 ul ul li a:hover {
  color: var(--header-menu-submenu-text-active-color);
  background: var(--header-menu-submenu-text-active-bg-color)
}

#navigation_3 ul li a:hover ~ ul,
#navigation_3 ul li ul:hover,
#navigation_3 ul li:hover ul {
  display: block;
  height: auto;
}

#footer_content {
  max-width: unset;
  width: 100%;
  justify-content: space-between;
  display: flex;
}

#navigation_2 {
  order: 1;
  flex-grow: 0;
  /*margin-right: auto;*/
  display: flex;
  align-items: center;
}

#navigation_2 li:not(:last-child) {
  margin-right: 15px;
}

#navigation_2 a {
  font-size: 16px;
  font-size: 18px;
  line-height: 19px;
  line-height: 35px;
  padding: 0;
  font-weight: 400;
  font-weight: 800;
  color: var(--footer-menu-text-color);
  text-decoration: none;
}

#navigation_2 a:hover {
  color: var(--footer-menu-text-active-color);
  text-decoration: none;
}

#portallogo_footer_link4 {
  display: block;
  order: 2;
  padding-left: 17px;
  padding-right: 17px;
  flex-grow: 0;
  margin-right: auto;
  margin-left: auto;
  text-decoration: none !important;
  border: none !important;
}

#portallogo_footer4.loaded {
  display: flex;
  align-items: center;
  /* max-width: 360px; */
  /* width: 100%; */
  position: absolute;
  height: 100%;
  max-height: 90px;
  width: auto;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

/*#footer_content::after {
  display: flex;
  align-items: center;
  content: "© 2024 Messe Berlin";
  order: 3;
  flex-grow: 0;
  margin-left: auto;
  min-width: 162px;
}*/


#left {
  display: none;
  left: unset;
  width: 100%;
  float: none;
}

.flag_label {
  display: none;
}

#middle {
  margin: 0;
}

#header {
  background: var(--header-bg-color);
  height: 105px;
  z-index: 1;
}

.isScrolling #header {
  background: var(--header-active-bg-color);
  position: fixed;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}

.isScrolling #main {
  margin-top: 105px;
}


#header:hover #header_content,
#header.active  #header_content {
  background: var(--header-active-bg-color);
}

#logo {
  display: none;
}

#portallogo_header {
  display: none;,
}

#portallogo_header.loaded {
  display: inline-block;
  height: 88px;
  padding: 0 0;
  position: absolute;
  left: 3%;
  top: 12px;
  z-index: 1;
}

#portallogo_body2.loaded {
  display: inline-block;
  height: 15px;
  width: auto;
  position: absolute;
  right: 3%;
  top: 14px;
  z-index: 1;
}

input[type=password],
input[type=text],
textarea,
select,
input[type=submit] {
  width: 100%;
  box-sizing: border-box;
  color: var(--form-input-text-color);
  border: 1px solid;
  background-color: var(--form-input-bg-color);
  border-color: var(--form-input-border-color);
  font-size: 1.1rem;
  line-height: 1.28571;
  padding: 0.2rem 0.3rem;
  background-clip: padding-box;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  -webkit-transform-style: preserve-3d;
  background-image: linear-gradient(to left, var(--form-input-bg-color) 50%, var(--form-input-active-bg-color) 50%);
}

input[type=password]:focus,
input[type=text]:focus,
textarea:focus,
select:focus,
input[type=submit]:focus
{
  outline: 0;
  background-position: bottom left;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.8s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-delay: 0s;
  -moz-transition-property: all;
  -moz-transition-duration: 0.8s;
  -moz-transition-timing-function: ease;
  -moz-transition-delay: 0s;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

input[type=submit] {
  padding: 14px 22px 10px 22px;
  cursor: pointer;
  font-size: 16px;
  line-height: 19px;
  color: var(--button-text-color);
  min-width: 140px;
  background-color: var(--button-bg-color);
  border: 1px solid var(--button-border-color);
  transition: border-color, box-shadow, background-color  0.3s;
  background-image: none;
  box-shadow: -5px 10px 20px var(--button-shadow-color-rgba);
  border-radius: 70px;
  font-weight: bold;
  /* rgb 239, 124, 0 => hex #ef7c00 */
}

input[type=submit]:hover {
  background-color: var(--button-active-bg-color);
  border-color: var(--button-active-border-color);
  color: var(--button-active-text-color);
  box-shadow: -5px 10px 20px var(--button-active-shadow-color-rgba);
  /* rgb 239, 124, 0 => hex #ef7c00 */
}

input[type=submit]:focus {
  /*outline: 5px auto -webkit-focus-ring-color;*/
  /*outline-offset: -2px;*/
}


.regField.type12 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
.regField.type12 select.day,
.regField.type12 span.day {
  flex-basis: 5rem;
  flex-shrink: 0;
  margin-right: 0.625rem;
  margin-bottom: 1rem;
}
.regField.type12 select.month,
.regField.type12 span.month {
  margin-right: 0.625rem;
  flex-basis: 12rem;
  margin-bottom: 1rem;
}
.regField.type12 select.year,
.regField.type12 span.year {
  flex-basis: 5rem;
  flex-shrink: 0;
  margin-right: 0.625rem;
  margin-bottom: 1rem;
}

.regField.type12 span.year,
.regField.type12 span.month,
.regField.type12 span.day {
  flex-basis: auto;
  background-color: var(--form-input-bg-color);
  padding: 0.2rem 0.3rem;
  font-size: 1.1rem;
  line-height: 30px;
}

.regField.type12 input.datePicker {
  flex-basis: 1.5rem;
  margin-bottom: 1.25rem;
}
.regField.type12 .regPostLabel {
  flex-basis: 100%;
  order: 5;
  margin-bottom: 1.25rem;
}
.regField.type12 .regSubText {
  flex-basis: 100%;
  order: 6;
  margin-bottom: 1.25rem;
}

.regField.type15 {
  align-items: center;
}
.regField.type15 select {
  order: 1;
  flex-basis: 5rem;
  flex-shrink: 0;
}
.regField.type15 span.phoneCountryCodeZero {
  order: 2;
  flex-basis: 1.875rem;
  flex-shrink: 0;
  text-align: center;
}
.regField.type15 input[type=text] {
  order: 3;
  flex-grow: 1;
}

.regField.type2 {
  display: block;
}
.regField.type2 input[type=text] {
  order: 1;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--form-checkbox-radio-sign-color);
  border: 1px solid var(--form-checkbox-radio-bg-color);
  padding: 6px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  float: left;
  margin: 4px 4px 0 0;
  transition: all 0.25s ease-out;
}

input[type=checkbox]:checked {
  background-color: var(--form-checkbox-radio-active-bg-color);
  border-color: var(--form-checkbox-radio-active-bg-color);
}

input[type=checkbox]:checked:after {
  content: "✔";
  font-size: 12px;
  position: absolute;
  top: -3px;
  left: 1px;
  color: #ffffff;
}
input[type=checkbox]:disabled {
  color: var(--form-disabled-text-color);
}
input[type=checkbox]:disabled + span input[type=radio]:disabled {
  color: var(--form-disabled-text-color);
}

input[type=radio] {
  margin: 4px 4px 0 0;
  -webkit-appearance: none;
  background-color: var(--form-checkbox-radio-sign-color);
  border: 1px solid var(--form-checkbox-radio-bg-color);
  padding: 6px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  float: left;
  transition: all 0.25s ease-out;
  color: var(--form-checkbox-radio-bg-color);
}
input[type=radio]:checked {
  background-color: var(--form-checkbox-radio-active-sign-color);
  color: var(--form-checkbox-radio-active-bg-color);
  border: 1px solid var(--form-checkbox-radio-active-bg-color);
}
input[type=radio]:checked:after {
  content: " ";
  width: 8px;
  height: 8px;
  border-radius: 50px;
  position: absolute;
  top: 2px;
  background: var(--form-checkbox-radio-active-bg-color);
  text-shadow: none;
  left: 2px;
  font-size: 32px;
}
input[type=radio]:disabled + span {
  color: var(--form-disabled-text-color);
}

input[type=radio]:not(:disabled).clicked,
input[type=checkbox]:not(:disabled).clicked {
  transform: scale(1.5) translateX(3px);
}

.regField.type5 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.regField.type5 br {
  display: none;
}

.regField.type6 label br {
  display: none;
}

.regItem.type5,
.regItem.type6 {
  flex-wrap: wrap;
}
.regItem.type5 > .regText,
.regItem.type6 > .regText {
  flex: 0 0 100%;
}
.regItem.type5 > .regField.type5,
.regItem.type5 > .regField.type6,
.regItem.type6 > .regField.type5,
.regItem.type6 > .regField.type6 {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.regItem.type5 > .regField.type5 > label,
.regItem.type5 > .regField.type6 > label,
.regItem.type6 > .regField.type5 > label,
.regItem.type6 > .regField.type6 > label {
  display: block;
  cursor: pointer;
}

.regItem.type6.multiItemsBlock {
  display: block;
}
.regItem.type6.multiItemsBlock .regLabel {
  width: 9.375rem;
  float: left;
}
.regItem.type6.multiItemsBlock .regField.type6 > label {
  margin-bottom: 0;
}
.regItem.type6.multiItemsBlock label label {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
}
.regItem.type6.multiItemsBlock label label input[type=checkbox] {
  position: absolute;
  top: 2px;
  left: 0;
}

.regField.type6 label .regPostLabel {
  margin-bottom: 0;
}

.regItem.type5.multiItemsBlock {
  display: block;
}
.regItem.type5.multiItemsBlock .regLabel {
  width: 9.375rem;
  float: left;
}
.regItem.type5.multiItemsBlock label label {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: pointer;
}

.regPostLabel {
  margin-bottom: 10px;
}

a.infoIconContainer {
  border-bottom: none;
}
a.infoIconContainer:hover {
  border-bottom: none;
}
a.infoIconContainer:link {
  border-bottom: none;
}
a.infoIconContainer:visited {
  border-bottom: none;
}

.infoIconContainer .infoIcon {
  display: none;
}

.regRow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.regRow .regItem.type18 {
  display: block;
}
.regRow .regItem.type18 .regLabel.type18 {
  width: 100%;
}
.regRow .regItem.type18 .regText.type18 {
  width: 100%;
}
.regRow .regItem.type18 .regField.type18 {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.regField.type13 {
  align-items: center;
}
.regField.type13 .hour {
  order: 1;
  margin-right: 0.3125rem;
}
.regField.type13 .minute {
  order: 2;
  margin-left: 0.3125rem;
}

.regButtons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-top: 12px;
  padding-bottom: 30px;
}
.regButtons .regBtnBack {
  width: 50%;
  box-sizing: border-box;
  float: none;
  order: 1;
}
.regButtons .regBtnBack input[type=submit] {
  float: right;
  padding: 14px 22px 10px 22px;
  display: inline-block;
  width: auto;
  font-size: 16px;
  line-height: 19px;
  color: var(--button-text-color);
  min-width: 140px;
  margin-left: 16px;
  margin-right: 16px;
}
.regButtons .regBtnNext {
  width: 50%;
  box-sizing: border-box;
  float: none;
  order: 2;
}
.regButtons .regBtnNext input[type=submit] {
  padding: 14px 22px 10px 22px;
  display: inline-block;
  width: auto;
  float: left;
}
.regButtons > div:only-child {
  padding-left: 0;
  padding-right: 1.125rem;
}
.regButtons > div:only-child input[type=submit] {
  float: right;
}
.regButtons .regBtnSave input[type=submit] {
  padding: 14px 22px 10px 22px;
  display: inline-block;
  width: auto;
  min-width: 140px;
  font-size: 1rem;
  float: left;
  margin-left: 16px;
  margin-right: 16px;
}

.regBtnSave {
  width: 50%;
  box-sizing: border-box;
  float: none;
  order: 2;
}

.loginContainer {
  width: 31.25rem;
  margin: 0 auto;
}

#loginError,
#voucherError {
  width: 31.25rem;
  margin: 0 auto;
  color: var(--form-error-text-color);
  padding-bottom: 1.5rem;
}

.regError .item,
.regItem.itemError *
{
  color: var(--form-error-text-color);
}

.loginRow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.loginLabel {
  order: 1;
  flex-basis: 9.375rem;
  flex-shrink: 0;
  font-size: 1em;
  line-height: 20px;
  color: var(--form-label-text-color);
  margin-bottom: 1.25rem;
}

.loginField {
  order: 2;
  flex-grow: 1;
  padding-bottom: 10px;
  margin-bottom: 2.25rem;
}

.loginDelimiter {
  display: none;
}

#passwordForgotten_form {
  width: 31.25rem;
  margin: 0 auto;
}
#passwordForgotten_form table {
  width: 100%;
}


.vouchercode,
#passwordForgotten_form {
  width: 100%;
  max-width: 31.25rem;
  margin: 30px auto 0 auto;
}

.vouchercode form,
#passwordForgotten_form,
#passwordForgotten_form tbody,
#passwordForgotten_form tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.vouchercode form .label,
#passwordForgotten_form tbody,
#passwordForgotten_form td.label {
  flex-shrink: 0;
  font-size: 1em;
  line-height: 20px;
  color: var(--form-label-text-color);
  margin-bottom: 1.25rem;
  order: 1;
}

.vouchercode form .codeField,
#passwordForgotten_form td.field {
  order: 2;
  flex-grow: 1;
  padding-bottom: 10px;
  margin-bottom: 2.25rem;
}

.vouchercode form .submitButton {
  order: 3;
  margin-bottom: 30px;
}

.event_index_index.noLogin #loginDivContainer {
  width: 100%;
  max-width: calc(31.25rem + 60px);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 30px;
  background: var(--start-container-bg-color-rgba);
  border-radius: 30px;
}

#loginDivContainer  {
  border-width: var(--start-container-border-width);
  border-color: var(--start-container-border-color);
  border-style: var(--start-container-border-style);
  color: var(--start-container-text-general-color);
  font-size: var(--start-container-text-general-font-size);
}

#loginDivContainer a {
  color: var(--start-container-text-link-color);
}

#loginDivContainer a:hover {
  color: var(--start-container-text-link-color);
}

#loginDivContainer p {
  color: var(--start-container-text-p-color);
  font-size: var(--start-container-text-p-font-size);
}

#loginDivContainer h1 {
  color: var(--start-container-text-h1-color);
  font-size: var(--start-container-text-h1-font-size);
  line-height: calc(var(--start-container-text-h1-font-size) * 1.2);
  font-weight: 700;
}

#loginDivContainer h2 {
  color: var(--start-container-text-h2-color);
  font-size: var(--start-container-text-h2-font-size);
  line-height: calc(var(--start-container-text-h2-font-size) * 1.2);
  font-weight: 700;
}

#loginDivContainer h3 {
  color: var(--start-container-text-h3-color);
  font-size: var(--start-container-text-h3-font-size);
  line-height: calc(var(--start-container-text-h3-font-size) * 1.2);
  font-weight: 700;
}

#loginDivContainer h4 {
  color: var(--start-container-text-h4-color);
  font-size: var(--start-container-text-h4-font-size);
  line-height: calc(var(--start-container-text-h4-font-size) * 1.2);
  font-weight: 700;
}

#loginDivContainer h5 {
  color: var(--start-container-text-h5-color);
  font-size: var(--start-container-text-h5-font-size);
  line-height: calc(var(--start-container-text-h5-font-size) * 1.2);
  font-weight: 700;
}

#loginDivContainer h6 {
  color: var(--start-container-text-h6-color);
  font-size: var(--start-container-text-h6-font-size);
  line-height: calc(var(--start-container-text-h6-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer {
  display: block !important;
  background: none;
}

.event_index_index.login #loginDivContainer  {
  color: var(--main-text-general-color);
  font-size: var(--main-text-general-font-size);
  border: none !important;
}

.event_index_index.login #loginDivContainer a {
  color: var(--main-text-link-color);
}

.event_index_index.login #loginDivContainer a:hover {
  color: var(--main-text-link-color);
}

.event_index_index.login #loginDivContainer p {
  color: var(--main-text-p-color);
  font-size: var(--main-text-p-font-size);
}

.event_index_index.login #loginDivContainer h1 {
  color: var(--main-text-h1-color);
  font-size: var(--main-text-h1-font-size);
  line-height: calc(var(--main-text-h1-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer h2 {
  color: var(--main-text-h2-color);
  font-size: var(--main-text-h2-font-size);
  line-height: calc(var(--main-text-h2-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer h3 {
  color: var(--main-text-h3-color);
  font-size: var(--main-text-h3-font-size);
  line-height: calc(var(--main-text-h3-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer h4 {
  color: var(--main-text-h4-color);
  font-size: var(--main-text-h4-font-size);
  line-height: calc(var(--main-text-h4-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer h5 {
  color: var(--main-text-h5-color);
  font-size: var(--main-text-h5-font-size);
  line-height: calc(var(--main-text-h5-font-size) * 1.2);
  font-weight: 700;
}

.event_index_index.login #loginDivContainer h6 {
  color: var(--main-text-h6-color);
  font-size: var(--main-text-h6-font-size);
  line-height: calc(var(--main-text-h6-font-size) * 1.2);
  font-weight: 700;
}

.regItem {
  /*display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;*/
  box-sizing: border-box;
  display: block;
}

.regField {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: auto;
  float: none;
  margin: 0;
  order: 2;
  flex-grow: 1;
  padding-bottom: 10px;
  margin-bottom: 1rem;
}

.regField.type3,
.regField.type4 {
  display: block;
}

.regItemEmpty {
  box-sizing: border-box;
}

.regItem.regColumnWidth1,
.regItemEmpty.regColumnWidth1 {
  width: 50%;
}

.regItem.leftCol,
.regItemEmpty.leftCol {
  padding-right: 1.25rem;
}

.regItem.rightCol,
.regItemEmpty.rightCol {
  padding-left: 1.25rem;
}

.regLabel,
.regText {
  width: auto;
  float: none;
  margin: 0;
  margin-bottom: 1.25rem;
}

.regLabel {
  order: 1;
  flex-basis: 9.375rem;
  flex-shrink: 0;
  font-size: 1em;
  line-height: 20px;
  color: var(--form-label-text-color);
}

.regItem > .regLabel {
  flex-basis: 100%;
}

.regItem.regColumnWidth2,
.regItemEmpty.regColumnWidth2 {
  width: 100%;
  padding: 0;
}

.regDelimiter {
  display: none;
}

#stepWizard .step {
  padding: 0 10px;
}

#stepWizardDiv {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

#stepWizardDiv a {
  border-color: transparent;
  text-transform: uppercase;
}
#stepWizardDiv table {
  margin: 0;
  border-collapse: separate;
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
}
#stepWizardDiv table td {
  padding: 0;
  background-image: none;
  vertical-align: middle;
  text-transform: uppercase;
}
#stepWizardDiv table td br {
  display: none;
}
#stepWizardDiv table td.activeStep {
  background: var(--step-wizard-active-bg-color);
  color: var(--step-wizard-active-text-color);
}
#stepWizardDiv table td.activeStep a {
  color: var(--step-wizard-active-text-color);
  text-decoration: none;
}
#stepWizardDiv table td.nextStep {
  background: var(--step-wizard-bg-color);
  color: var(--step-wizard-text-color);
}
#stepWizardDiv table td.nextStep a {
  color: var(--step-wizard-text-color);
}
#stepWizardDiv table td.prevStep {
  background: var(--step-wizard-completed-bg-color);
  color: var(--step-wizard-completed-text-color);
}
#stepWizardDiv table td.prevStep a {
  color: var(--step-wizard-completed-text-color);
  border: none;
  text-decoration: none;
}
#stepWizardDiv table td.arrow {
  border: solid var(--step-wizard-bg-color);
  border-width: 18px 0 18px 18px;
  position: relative;
}
#stepWizardDiv table td.arrow::after {
  content: " ";
  display: block;
  position: absolute;
  background: transparent;
  transform: rotate(45deg);
  box-sizing: border-box;
  border-right: 2px solid white;
  width: 2px;
  height: 28px;
  left: -11px;
  top: -5px;
}
#stepWizardDiv table td.arrow::before {
  content: " ";
  display: block;
  width: 28px;
  height: 2px;
  position: absolute;
  top: -11px;
  left: -24px;
  background: transparent;
  transform: rotate(45deg);
  box-sizing: border-box;
  border-top: 2px solid white;
}
#stepWizardDiv table td.arrow.activeNext {
  border-left: 18px solid var(--step-wizard-active-bg-color);
}
#stepWizardDiv table td.arrow.prevActive {
  border-color: var(--step-wizard-active-bg-color) var(--step-wizard-active-bg-color) var(--step-wizard-active-bg-color) var(--step-wizard-completed-bg-color);
}
#stepWizardDiv table td.arrow.prevPrev {
  border-color: var(--step-wizard-completed-bg-color) var(--step-wizard-completed-bg-color) var(--step-wizard-completed-bg-color) var(--step-wizard-completed-bg-color);
}

#stepWizardDiv.double td.arrow {
  border-top-width: 36px;
  border-bottom-width: 36px;
}
#stepWizardDiv.double td.arrow::before {
  border-top: 2px solid white;
  transform: rotate(63.5deg);
  width: 42px;
  top: -20px;
  left: -31px;
}
#stepWizardDiv.double td.arrow::after {
  height: 42px;
  transform: rotate(26.5deg);
  left: -11px;
  top: -3px;
}
#stepWizardDiv.double td.arrow.activeNext::before {
  border-top: 2px solid white;
  transform: rotate(63.5deg);
  width: 42px;
  top: -20px;
  left: -31px;
}
#stepWizardDiv.double td.arrow.activeNext::after {
  height: 42px;
  transform: rotate(26.5deg);
  left: -11px;
  top: -3px;
}

#stepWizardDiv.triple td.arrow {
  border-top-width: 54px;
  border-bottom-width: 54px;
}
#stepWizardDiv.triple td.arrow::before {
  border-top: 2px solid white;
  transform: rotate(71.5deg);
  width: 60px;
  top: -29px;
  left: -40px;
}
#stepWizardDiv.triple td.arrow::after {
  height: 60px;
  transform: rotate(18.5deg);
  left: -11px;
  top: -3px;
}
#stepWizardDiv.triple td.arrow.activeNext::before {
  border-top: 2px solid white;
  transform: rotate(71.5deg);
  width: 60px;
  top: -29px;
  left: -40px;
}
#stepWizardDiv.triple td.arrow.activeNext::after {
  height: 60px;
  transform: rotate(18.5deg);
  left: -11px;
  top: -3px;
}

.expandText {
  height: 0;
  visibility: hidden;
}

.expandHeadline {
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #000000;
  padding-bottom: 0;
  margin-bottom: 28px;
}
.expandHeadline::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "\f107";
}

.expandHeadline.au-expanded::after {
  content: "\f106";
}

.regMandatoryInfo {
  font-size: 0.75rem;
}

.regError,
.errorText {
  margin-bottom: 1.5rem;
  color: var(--form-error-text-color);
}
.regError .headline {
  color: var(--form-error-text-color);
}
.regError .item {
  color: var(--form-error-text-color);
}

.regItem.itemError .regLabel {
  color: var(--form-error-text-color);
}
.regItem.itemError input[type=text] {
  border-color: var(--form-error-text-color);
  color: var(--form-error-text-color);
}
.regItem.itemError input[type=password] {
  border-color: var(--form-error-text-color);
  color: var(--form-error-text-color);
}
.regItem.itemError textarea {
  border-color: var(--form-error-text-color);
  color: var(--form-error-text-color);
}
.regItem.itemError select {
  border-color: var(--form-error-text-color);
  color: var(--form-error-text-color);
}

.hideElement {
  display: none !important;
}

.mobileTable .groupRow {
  border: 1px solid #000000;
  margin-bottom: 30px;
}
.mobileTable .groupRow .row:first-child .label {
  border-top: none;
}
.mobileTable .row > div {
  padding: 5px;
}
.mobileTable .label {
  font-weight: bold;
  border-top: 1px solid black;
}
.mobileTable .value {
  border-top: 1px solid black;
}

table.noWrapFirstTd td:first-child,
table.noWrapFirstTd th:first-child,
table.noWrapSecondTd td:nth-of-type(2),
table.noWrapSecondTd th:nth-of-type(2),
table.noWrapThirdTd td:nth-of-type(3),
table.noWrapThirdTd th:nth-of-type(3),
table.noWrapLastTd td:last-child,
table.noWrapLastTd th:last-child {
  white-space: nowrap;
}

input[type=button].datePicker {
  background: none;
  z-index: 1;
}
input[type=button].datePicker + .fa-calendar-alt {
  order: 4;
  margin-left: -14px;
  margin-bottom: 18px;
}

.HideElement {
  display: none !important;
}

#footerNav {
  display: none;
}

.loginRow {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.loginButton {
  margin-bottom: 30px;
}

.loginLabel {
  flex-basis: unset;
  margin-bottom: 1.25rem;
}
#passwordForgotten_form table tr {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
#passwordForgotten_form td.label {
  order: 1;
  display: block;
}
#passwordForgotten_form td.field {
  order: 2;
  display: block;
}
#passwordForgotten_form td.form_elem {
  order: 2;
  display: block;
  margin-left: auto;
}
.regItem,
.regItemEmpty {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.regLabel {
  flex-basis: auto;
  flex-grow: 0;
  margin-bottom: 18px;
}
.regItem.type6.multiItemsBlock .regLabel,
.regItem.type6.multiItemsBlock .regField,
.regItem.type5.multiItemsBlock .regLabel,
.regItem.type5.multiItemsBlock .regField {
  display: block;
  width: 100%;
  float: none;
}

.regItem.type5.multiItemsBlock .regField label {
  margin-bottom: 10px;
}

.regItem.programPoint .regText {
  flex-basis: auto;
}

span.readOnly {
  font-size: 1.1rem;
  line-height: 1.28571;
  padding: 0.2rem 0.3rem;
  width: 100%;
  display: block;
  background-clip: padding-box;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  -webkit-transform-style: preserve-3d;
  background-image: linear-gradient(to left, var(--form-input-bg-color) 50%, var(--form-input-active-bg-color) 50%);
}


/* begin key visuaL */
#left #navigation_1 {
  display: none;
}
body.login #left,
body.login #left_content {
  display: block;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: unset;
}

body.login #left {
  transform: translateY(-105px);
}

#portallogo_navi_top5.loaded {
  display: block;
  width: 100%;
  height: auto;
  max-height: 40vh;
  object-fit: cover;
}
/* end key visuaL */

@media (max-width: 1280px) {
  #portallogo_footer4.loaded {
    position: static;
    transform: translateX(0);
  }
}

@media (max-width: 1249px) {

  #portallogo_header.loaded {
    height: 50px;
    padding: 0;
    top: 10px;
  }

  #navigation_3 {
    padding-left: 1.25%;
    padding-top: 28px;
  }

  #navigation_3 >  ul {
    justify-content: left;
  }

  #navigation_3 ul li a {
    padding: 10px;
  }

  #navigation_3 ul ul {
    top: 42px;
  }

}

@media (max-width: 999px) {
  body.login #left {
    transform: translateY(0);
  }

  .event_index_index.noLogin #loginDivContainer {
    margin-top: 165px;
  }

  .isScrolling .dateBar .begin,
  .isScrolling  .dateBar .end,
  #header.active .dateBar .begin,
  #header.active  .dateBar .end {
    display: none;
  }

  #navigation_3 {
    padding-top: 129px;
    padding-left: 3%;
    padding-right: 3%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--header-active-bg-color);
    width: 100%;
    transition: height 0.25s ease;
    height: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
  }
  #navigation_3 ul {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #navigation_3 ul li {
    margin-bottom: 24px;
  }

  #navigation_3 ul li a {
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
    padding: 0;
  }

  #navigation_3 ul li > a:hover {
    color: var(--header-menu-text-color);
  }

  #navigation_3 ul li > a:hover::after {
    display: none;
  }

  #navigation_3 ul li ul {
    position: initial;
    padding-bottom: 0;
    padding-left: 20px;
    padding-top: 0;
  }

  #navigation_3 ul li ul.submenuOpen {
    display: block;
  }

  #navigation_3 ul li ul li {
    padding-top: 15px;
    margin: 0;
  }

  #navigation_3 ul li ul li a {
    font-size: 16px;
    line-height: 18px;
    padding: 0;
  }

  #navigation_3 ul ul li a:hover {
    color: var(--header-menu-text-color);
    background: transparent;
  }

  #navigation_3 > ul > li > a::after {
    display: none !important;
  }

  #navigation_3.open {
    padding-top: 129px;
    height: 100vh;
    opacity: 1;
  }

  .headerBorder {
    display: none !important;
  }

  #sandwichHead {
    display: flex;
    position: absolute;
    top: 22.5px;
    left: calc(3% - 4px);
    background-position: -10px -10px;
    cursor: pointer;
    z-index: 10;
    -webkit-user-select: none;
    /* Chrome/Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+ */
    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  #sandwichHead div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 38px;
    height: 35px;
    padding: 4px;
    border-radius: 2px;
  }

  #sandwichHead div:hover {
    outline: 2px solid var(--header-menu-item-underline-color);
  }
  #sandwichHead div span {
    display: block;
    margin-bottom: 6px;
    width: 30px;
    height: 4px;
    border-radius: 2px;
    position: relative;
    background: var(--header-menu-item-underline-color);
    z-index: 1;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out; }
  #sandwichHead div span:first-child {
    margin-top: 2px; }
  #sandwichHead div span:last-child {
    margin-bottom: 0; }
  #sandwichHead div.active span:nth-child(1) {
    -webkit-ttransform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg); }
  #sandwichHead div.active span:nth-child(2) {
    opacity: 0; }
  #sandwichHead div.active span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotateZ(-45deg);
    -ms-transform: translateY(-10px) rotateZ(-45deg);
    transform: translateY(-10px) rotateZ(-45deg); }

  #sandwichHead {
    display: block; }

  .topBar {
    height: 0;
  }

  #portallogo_header.loaded {
    height: 28px;
    top: 28px;
    left: calc(3% + 86px);
  }

  .dateBar {
    position: absolute;
    width: 100%;
    background-color: var(--header-thin-bar-bg-color);
    bottom: 0;
    justify-content: flex-start;
  }

  #header_lang {
    padding: 0;
    top: 78px;
  }

  #header_lang a,
  #header_lang a:hover {
    color: var(--header-date-text-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  #portallogo_body2.loaded {
    display: none;
    top: 32px;
  }

  #header {
    background-color: var(--header-active-bg-color);
    position: fixed;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out;
  }

  #main {
    margin-top: 105px;
  }

  #navigation_3.open #footerNav {
    display: block;
    border: 0;
    max-width: 400px;
  }

  #navigation_3.open #footerNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
  }

  #navigation_3.open #footerNav ul li {
    padding: 4px 0 4px 0;
    margin-right: 20px;
    margin-bottom: 0;
  }

  #navigation_3.open #footerNav ul li a {
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
  }

  #navigation_3.open #footerNav ul li:last-child {
    margin-right: 0
  }

  #footer_content {
    flex-direction: column;
  }

  #navigation_2 {
    margin-right: 0;
    margin-top: 15px;
    justify-content: center;
  }

  #navigation_2 ul {
    display: flex;
    justify-content: center;
  }

  #navigation_2 ul li {
    margin-bottom: 15px;
  }

  #portallogo_footer_link4,
  #footer_content::after {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  #footer_content::after {
    margin-left: unset;
    text-align: center;
    justify-content: center;
  }


}

@media (max-width: 920px) {
  #left_content,
  #middle_content,
  #footer_content {
    padding-right: 3%;
    padding-left: 3%;
  }


}
@media (max-width: 768px) {
  .loginContainer,
  #loginError,
  #passwordForgotten_form {
    width: 100%;
  }
  #header_content {
    position: relative;
  }

  #stepWizardDiv {
    display: none;
  }
  .regRow {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .regItem.regColumnWidth1,
  .regItem.regColumnWidth2 {
    width: 100%;
  }
  .regItem.leftCol,
  .regItemEmpty.leftCol {
    padding-right: 0;
  }
  .regItem.rightCol,
  .regItemEmpty.rightCol {
    padding-left: 0;
  }
  .regButtons .regBtnBack,
  .regButtons .regBtnNext,
  .regButtons .regBtnSave {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.75rem;
  }
  #navigation_2 ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (min-width: 921px) {
  .regItem {
    flex-wrap: wrap;
  }
  .regItem .regText {
    flex-basis: 100%;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  #loginDivContainer h1 {
    font-size: calc(var(--start-container-text-h1-font-size) / 5 * 4);
    line-height: calc((var(--start-container-text-h1-font-size) / 5 * 4 ) * 1.2);
    font-weight: 700;
  }

  #loginDivContainer h2 {
    font-size: calc(var(--start-container-text-h2-font-size) / 5 * 4);
    line-height: calc((var(--start-container-text-h2-font-size)  / 5 * 4 ) * 1.2);
    font-weight: 700;
  }
}

@media (max-width: 425px) {

  .regButtons {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .regButtons .regBtnBack,
  .regButtons .regBtnNext,
  .regButtons .regBtnSave {
    width: calc(100% - 32px);
  }
  .regButtons .regBtnBack input.button,
  .regButtons .regBtnNext input.button,
  .regButtons .regBtnSave input.button {
    width: calc(100% - 32px);
  }
}
@media (max-width: 374px) {
  input[type=button].datePicker {
    flex-basis: 3rem;
    display: none;
  }
  input[type=button].datePicker + .fa-calendar-alt {
    display: none;
  }
}

.event_index_index.noLogin #loginDivContainer.activeForLayout2023,
.topBar.activeForLayout2023 {
  display: block !important;
}

.dateBar.activeForLayout2023 {
  display: flex !important;
}

.event_weihnachtsfeier-2023 #loginDivContainer {
  display: block !important;
}

.regItem.regItemReadOnly .regLabel {
  color: #003a59;
}

.regItem.regItemReadOnly .regField span.readOnly {
  opacity: 0.8;
}

/* mb-card hide reg link on startpage after login */
.event_mb-card.event_index_index.login #middle_content .registerLink {
  pointer-events: none;
  display: none !important;
}
/* mb-card hide back button on send_wallet page  */
.event_index_registration.event_mb-card.send_wallet #regFormOverview .regBtnBack #back {
  display: none;
}

.regItemReadOnly .regField .readOnly,
#regFormOverview .regField .readOnly {
  background: rgb(169, 223, 224);
}

.event_cms .registerLink {
  display: none;
}
