*{
  box-sizing: border-box;
}
body{
  background-color: #000;
  color: #fff;
  font-family: Roboto;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

body.white {
  background-color: #FFF;
}

body.overlay-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*      HEADER     */

header{
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
}

.logo{
  width: 185px;
}
.logo a{
  display: block;
  width: 100%;
}
.logo img{
  display: block;
  width: 100%;
  height: auto;
}
.logo img.withoutdate{
  display: none;
}
.home .logo img.withdate{
  display: none;
}
.home .logo img.withoutdate{
  display: block;
}

@media screen and (min-width:1140px){
  header{
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 40px;
  }
  .logo{
    width: 220px;
  }
  .logo a{
    background-color: #fff;
    padding: 20px;
  }
}
@media screen and (min-width:1400px){
  .logo{
    width: 300px;
  }
  .logo a{
    padding: 35px 42px;
  }
}

/*     MENU      */


header nav{
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 185px);
}

.menuLang{
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.menuLang ul{
  list-style: none;
  display: block;
  margin: 0;
  padding-left: 15px;
}
.menuLang li{
  list-style: none;
  display: inline-block;
}
.menuLang a{
  background-color: rgba(255,255,255,.5);
  transition: background-color .2s ease;
  display: block;
  text-decoration: none;
  color: #000;
  padding: 3px 6px;
  font-size: 14px;
  cursor: pointer;
}
.menuLang a.active,
.menuLang a:hover{
  color: #d85194;
}

@media screen and (min-width:600px){
  header nav{
    justify-content: space-between;
    width: 300px;
  }
  .menuLang{
    position: static;
  }
  .menuLang a {
    font-size: 16px;
  }
}

@media screen and (min-width:1140px){
  .menuLang a.active,
  .menuLang a:hover{
    background-color: #fff;
  }
}


.menuBtn{
  padding: 20px;
  margin-right: -20px;
  margin-top: -20px;
  cursor: pointer;
}
.menuBtn span{
  display: block;
  width: 35px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 7px;
  background-color: #000;
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.open .menuBtn{
  position: relative;
  z-index: 21;
}
.open .menuBtn span{
  background-color: #fff;
}
.open .menuBtn span:nth-child(1){
  transform: rotate(45deg) translateX(7px) translateY(7px);
}
.open .menuBtn span:nth-child(2) {
  transform: scale(0);
}
.open .menuBtn span:nth-child(3) {
  transform: rotate(-45deg) translateX(7px) translateY(-7px);
}

@media screen and (min-width:1140px){
  .menuBtn{
    transform: scale(1.25);
    transform-origin: top;
  }
  .menuBtn span{
    background-color: #fff;
  }
}

.menuMain{
  display: none;
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 8em;
  text-align: center;
}
.menuMain ul,
.menuMain li{
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.menuMain a{
  display: inline-block;
  font-family:'Poppins';
  font-weight: 700;
  font-size: 28px;
  line-height: 1em;
  margin-top: .2em;
  padding-bottom: .3em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.menuMain a:hover,
.menuMain a:active,
.menuMain a.active {
  padding-bottom: .1em;
  border-bottom: .2em solid #fff;
}
.open,
.open body{
  overflow: hidden;
  height: 100vh;
}
.open .menuMain{
  display: block;
  animation: slidein .3s forwards cubic-bezier(0.190, 1.000, 0.220, 1.000);
  position: absolute;
  z-index: 20;
  background-color: #000;
  color: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
@keyframes slidein{
  from{
    transform: translateX(200px);
  }
  to{
    transform: translateX(0)
  }
}
@media screen and (min-width:660px){
  .menuMain a{
    font-size: 34px;
  }
}
@media screen and (min-width:1140px){
  .menuMain a{
    font-size: 42px;
  }
}


/*    SECTIONS    */



main{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
}
section{
  position: relative;
  width: 100%;
  background-color: #fff;
  color: #000;
  order: 1;
}
section.purple{
  background-color: #d85194;
  color: #fff;
}

section.green{
  background-color: #00ffc5;
  color: #fff;
}

section.blue{
  background-color: #00d2e3;
  color: #eee;
}

section.gray{
  background-color: #eee;
}
section.black{
  background-color: #000;
  color: #fff;
}
section.center{
  text-align: center;
}
section.quotes h2.quote{
  color: #d85194;
}
section.hideMobile{
  display: none;
}
section .inner{
  padding: 20px;
}
section.ticket .inner{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
section .inner.justify{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.ticket .inner>div:last-child{
  padding-right: 20px;
}
section.ticket img{
  display: inline-block;
  width: 135px;
  height: auto;
}
section.download{
  width: 300px;
  padding-right: 20px;
  margin-top: 20px;
}
section.download {
  background-color: transparent;
}
section.download .inner-wrap {
  height: 100%;
  background-color: #FFF;
}
section.download.black .inner-wrap {
  background-color: #000;
}
section.download img {
  width: 100%;
}
div.boxes{
  width: 340px;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
  flex-flow: row wrap;
  order: 1;
}
@media screen and (min-width:660px){
  div.boxes{
    width: 660px;
  }
}
@media screen and (min-width:1060px){
  div.boxes{
    width: 100%;
  }
  section.download{
    width: 33.33%;
  }
}
@media screen and (min-width:1400px){
  section.download{
    width: 25%;
  }
}
@media screen and (min-width:1700px){
  section.download{
    width: 20%;
  }
}
/*@media screen and (min-width:660px){
  div.boxes{
    width: 660px;
  }
}
@media screen and (min-width:1060px){
  div.boxes{
    width: 1060px;
  }
}
@media screen and (min-width:1400px){
  div.boxes{
    width: 1400px;
  }
}*/


@media screen and (max-width:599px){
  .home main section:nth-child(0){
    order: 0;
  }
  .home main section:nth-child(1){
    order: 1;
  }
  .home main section:nth-child(2){
    order: 2;
  }
  .home main section:nth-child(3){
    order: 3;
  }
  .home main section:nth-child(4){
    order: 4;
  }
  .home main section:nth-child(5){
    order: 5;
  }
  .home main section:nth-child(6){
    order: 6;
  }
  .home main section:nth-child(7){
    order: 7;
  }
  .home main section:nth-child(8){
    order: 8;
  }
  .home main section:nth-child(9){
    order: 6;
  }
  .home main section:nth-child(10){
    order: 10;
  }
  .home main section:nth-child(11){
    order: 11;
  }
  .home main section:nth-child(12){
    order: 12;
  }
  .home main section:nth-child(13){
    order: 13;
  }
  .home main section:nth-child(14){
    order: 14;
  }
  .home main section:nth-child(15){
    order: 15;
  }
}
@media screen and (min-width:600px){
  section.S{
    width: 50%;
  }
  section.hideMobile{
    display: block;
  }
  section.hideTablet,
  section.onlyMobile{
    display: none;
  }
  section.ticket{
    text-align: center;
  }
  section.ticket img{
    width: 200px;
    margin-bottom: 2em;
  }
  section.ticket .inner{
    flex-direction: column;
  }
  section.ticket .inner>div:last-child{
    padding-right: 0px;
  }
  section.bg-img {
    overflow: hidden;
  }
  section.bg-img::before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 66.66%;
  }
}
@media screen and (min-width:1140px){
  section.hideTablet{
    display: block;
  }
  section.hideDesktop{
    display: none;
  }
  section.XL{
    width: 100%;
  }
  section.L{
    width: 75%;
  }
  section.M,
  section.S.M{
    width: 50%;
  }
  section.S{
    width: 25%;
  }
  div.boxes{
    padding-left: 40px;
    padding-bottom: 40px;
  }
  section.download{
    padding-right: 40px;
    margin-top: 40px;
  }
  section:not(.download) .inner{
    padding: 40px;
  }
}
@media screen and (min-width:600px) and (max-width: 1139px){
  .home section:nth-child(5) {
    order: 2;
  }
  .home section:nth-child(1n+8) {
    order: 3;
  }
  .aussteller section:nth-child(5) {
    order: 2;
  }
  .aussteller section:nth-child(1n+7) {
    order: 3;
  }
  .besucher section:nth-child(4) {
    order: 2;
  }
  .besucher section:nth-child(1n+7) {
    order: 3;
  }
}
@media screen and (min-width:1400px){

}


/*    TYPOGRAPHY    */

section h1,
section h2{
  font-family:'Poppins';
  font-weight: 700;
  font-size: 28px;
  line-height: 1em;
  text-transform: uppercase;
  border-bottom: solid 9px #000;
  padding-bottom: 5px;
  display: inline-block;
  margin-bottom: .2em;
  margin-top: .2em;
}
section h3 {
  font-weight: 500;
  font-size: 24px;
}
section .card h1{
  border-bottom: none;
  padding-bottom: 0;
}
section.download h1,
section.download h2{
  font-size: 28px;
  border-bottom-width: 7px;
}
section h1:first-child,
section h2:first-child{
  margin-top:0;
}
section.purple h1,
section.black h1,
section.purple h2,
section.black h2 {
  border-bottom-color: #fff;
}
section h2.quote{
  font-family:'Playfair Display';
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  line-height: 36px;
  margin-top: .2em;
  margin-bottom: .8em;
  text-transform: none;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}
section h2.quote+p{
  font-size: 16px;
  line-height: 24px;
  margin-bottom: .8em;
}
section.X h2.quote{
  font-size: 48px;
  line-height: 1em;
  margin-bottom: .4em;
}
section a{
  color: inherit;
  text-decoration: none;
}
section a.block{
  text-decoration: none;
  color: inherit;
}
section p{
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: .4em;
  margin-top: .4em;
  font-weight: 300;
}
section p.medium{
  font-weight: 500;
}
main section p a {
  border-bottom: 2px dotted;
  transition: border 250ms ease;
}
main section p a:hover,
main section p a:active {
  border-bottom-style: solid;
}
section dl{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  line-height: 1.35em;
}
section dl dt{
  width: 23%;
  margin: 0;
}
section dl.shorts dt{
  width: 40%;
  text-align: right;
  padding-right: 1em;
}
section dl dd{
  font-weight: 300;
  width: 77%;
  margin: 0;
  margin-bottom: .5em;
}
section dl.shorts dd{
  width: 60%;
  text-align: left;
}
section a.btn{
  background-color: #d85194;
  color: #fff;
  display: inline-block;
  vertical-align: bottom;
  padding: 9px 22px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: .8em;
  margin-bottom: .2em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .2s;
}
section a.btn:hover{
  padding-left: 12px;
  padding-right: 32px;
}
section a.btn::after{
  content: '';
  position: absolute;
  height: 1.2em;
  width: 30px;
  top:50%;
  margin-top: -.6em;
  right: -30px;
  transition-property: right;
  transition-duration: .2s;
  transition-timing-function:  ease-out;
  background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2028.8%2065.3%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.8%2064.2%2021.9-31.5-21.9-31.6%22%20fill%3D%22none%22%20stroke%3D%22%23FFFFFF%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%227%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
}
section a.btn:hover::after{
  right: 2px;
}
section.purple a.btn{
  background-color: #fff;
  color: #d85194;
}
section.purple a.btn::after,
section.black a.btn::after{
  background-image: url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2028.8%2065.3%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.8%2064.2%2021.9-31.5-21.9-31.6%22%20fill%3D%22none%22%20stroke%3D%22%23d85194%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%227%22%2F%3E%3C%2Fsvg%3E');
}

section.black a.btn{
  background-color: #fff;
  color: #d85194;
}
section ul.biglinks,
section ul.biglinks li{
  margin: 0;
  padding: 0;
  list-style: none;
}
section ul.biglinks li{
  display: block;
  width: 80%;
  text-align: right;
  margin-bottom: 1em;
}
section ul.biglinks li:last-of-type{
  margin-bottom: 0;
}
section a.big{
  font-family:'Poppins';
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1em;
  text-transform: uppercase;
  display: inline-block;
  color: #000;
  text-decoration: none;
}
section a.big svg{
  width: 48px;
  height: 27px;
  fill: currentcolor;
  margin-left: .5em;
}
section a.big:hover,
section.black a.big:hover{
  color: #d85194;
}
section.black a.big{
  color: #fff;
}
@media screen and (min-width:600px){
  section h1,
  section h2{
    font-size: 30px;
  }
  section .card h1{
    font-size: 50px;
  }
}
@media screen and (min-width:1140px){
  section p.large{
    font-size: 22px;
  }
  section h1,
  section h2{
    font-size: 32px;
  }
  section h2.quote{
    font-size: 39px;
    line-height: 49px;
  }
  section .card h1{
    font-size: 80px;
  }
  section.X h2.quote{
    font-size: 60px;
  }
  section.X p{
    font-size: 30px;
  }
  section.X p.small{
    font-size: 24px;
  }
  section dl{
    font-size: 18px;
  }
}
@media screen and (min-width:1400px){
  section p{
    font-size: 24px;
  }
  section p.large{
    font-size: 32px;
  }
  section h1,
  section h2{
    font-size: 42px;
  }
  section h3 {
    font-size: 30px;
  }
  section h2.quote{
    font-size: 48px;
    line-height: 58px;
  }
  section .card h1{
    font-size: 100px;
  }
  section.X h2.quote{
    font-size: 80px;
  }
  section.X p{
    font-size: 40px;
  }
  section.X p.small{
    font-size: 32px;
  }
  section dl{
    font-size: 22px;
  }
}

/* SLIDER */

section div.slider{
  margin-top: 2em;
}
section img.bg,
section picture.bg img {
  display: block;
  width: 100%;
  height: auto;
}

section .slide,
section .card{
  position: relative;
  outline: none;
}
section .top{
  top: 50%;
  position: absolute;
  width: 100%;
  padding: 0 5%;
  text-align: center;
  transform: translateY(-50%);
  color: #fff;
}

section .slick-next,
section .slick-prev{
  width: 35px;
  height: 55px;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  right: 20px;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  background-color: #fff;
}
section .slick-next svg,
section .slick-prev svg{
  width: 100%;
  height: 100%;
}
section .inner .slick-slider {
  margin-top: 30px;
  max-height: 520px;
}
.slick-slider video {
  width: 100%;
}
.slick-slider .video {
  display: none;
}
@media screen and (min-width:600px) {
  .slick-slider .video {
    display: block;
  }
}
section .slick-next:hover svg,
section .slick-prev:hover svg{
  fill: #d85194;
}
section .slick-prev{
  transform: rotate(180deg);
  right: auto;
  left: 20px;
}
.slick-slider.news-images img{
  margin: 0 auto;
}
section.sponsors{
  padding: 0 50px 0;
}
section.sponsors .slide{
  height: 180px;
  text-align: center;
}
section.sponsors .slide img{
  width: 280px;
  display: block;
  margin: 0 auto;
}
section.sponsors .sponsorship{
  display: inline-block;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #ccc;
  border-bottom: 3px solid #eee;
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  section .img-wrap {
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
  }
  section .img-wrap picture.bg img {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    margin: auto;
    width: 50%;
    min-width: 50%;
    min-height: 50%;
  }

}
.video-wrapper {
  position: relative;
  overflow-x: hidden;
}
.video-wrapper video {
  width: auto;
  height: calc(100vw / 1.777777777);
  filter: brightness(80%);
}
.video-wrapper .slick-slide {
  height: calc(100vw / 1.77777777);
}
.video-slider {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  background: transparent;
}
@media screen and (max-width: 599px) {
  .video-wrapper video {
    width: auto;
    height: 60vh;
  }
  .logo {
    width: 125px;
  }
  .video-wrapper .slick-slide {
    height: 60vh;
  }
}
@media screen and (min-width:600px) and (max-width: 840px){
  section.S .img-wrap picture.bg img {
    width: 90%;
  }
}
@media screen and (min-width:600px) and (max-width: 1140px) {
    section .img-wrap picture.bg-vertical img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 50%;
    width: auto !important;
    min-width: unset;
    min-height: unset;
  }
}
@media screen and (min-width:1140px){
  section .slick-next{
    right: 40px;
  }
  section .slick-prev{
    left: 40px;
  }
}
@media screen and (min-width:1400px){
  section .slick-next,
  section .slick-prev{
    width: 40px;
    height: 75px;
    margin-top: -37px;
  }
  section.sponsors .slide{
    height: 215px;
  }
  section.sponsors .slide img{
    width: 260px;
  }
}


/*   TABLE   */

table.ov-table,
table.ov-table table,
table.ov-table tbody,
table.ov-table tr,
table.ov-table td {
  display: block;
  max-width: 100%;
}
table.ov-table td {
  padding: 3px 0;
}
table.ov-table {
  margin: 0 0 12px 0;
  padding: 12px;
}
table.ov-table > tbody tr:first-child img {
  max-width: 80%;
}
table.ov-table td { 
  font-size: 14px; 
  color: #4d4949;
  margin-bottom: 4px;
}
table.ov-table td b {
  color: #4d4949;
  font-weight: bold;
}
table.ov-table .fname { 
  font-family: 'Roboto', sans-serif; 
  font-size: 14px; 
  color: #4d4949; 
  line-height: 20px;
}
table.ov-table .dont_print { 
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #4d4949;
  line-height: 18px 
}
table.ov-table .fbold { 
  font-family: 'Roboto', sans-serif; 
  font-size: 14px; 
  font-weight:normal; 
  color: #4d4949; 
  line-height: 20px; 
}
table.ov-table .formbackground {
  /*background-color: #e8e8e8;*/
  padding: 5px;
  border: 2px solid #f2f2f2;
}
table.ov-table .sectiontitle { 
  font-family: 'Roboto', sans-serif; 
  font-size: 14px; 
  color: #4d4949; 
  font-weight: normal; 
  margin-top: 15px; 
  margin-bottom: 5px; 
  text-transform: uppercase; 
}
table.ov-table .font_xsmall { 
  font-family: 'Roboto', sans-serif: 12px; 
  font-weight: normal;
}
table.ov-table .title_forms { 
  font-family: 'Roboto', sans-serif;
  color: #080808;
  font-size: 18px; 
  line-height: 24px;
  font-weight: normal; 
} 
/*table.ov-table .box_outlined {  
  background: #3c4954; 
  color: #fcfbfb; 
  text-transform: uppercase;
  cursor: pointer;
  width: auto;
}
table.ov-table .box_outlined a:link, 
table.ov-table .box_outlined a:visited { 
  display: block;
  padding: 4px;
  color:#FFFFFF;
  text-decoration: none;
}
table.ov-table .box_outlined a:hover, 
table.ov-table .box_outlined a:focus , 
table.ov-table .box_outlined a:active { 
  color:#eceaea; 
}*/
table.ov-table a:link, 
table.ov-table a:visited { 
  color: #4d4949;
  text-decoration: underline;
  -webkit-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -o-transition: all 400ms;
  transition: all 400ms;
}
table.ov-table a:hover, 
table.ov-table a:active, 
table.ov-table a:focus { 
  color: #e64690;
}
table.ov-table .ticket-detail a:link, 
table.ov-table .ticket-detail a:visited { 
  display: inline-block;
  color: #4d4949;
  background-color: #FFFFFF;
  padding: 6px 12px;
  margin: 0 5px 5px 0;
  text-decoration: none;
}
table.ov-table .ticket-detail a:hover, 
table.ov-table .ticket-detail a:active, 
table.ov-table .ticket-detail a:focus { 
  text-decoration: none;
  color: #e64690;
}
table.ov-table #send_button {
  text-align: center;
}
table.ov-table #send_button input {
  padding: 8px 16px;
  display: inline-block;
  background-color: #263541;
  color: #FFF;
  width: auto;
  height: auto;
  border: none;
}
table.ov-table #send_button input:hover,
table.ov-table #send_button input:active {
  background-color: #001220;
}
table.ov-table.confirmation .fname {
  font-weight: 300;
}

.form label {
  color: #333;
  float: none;
  padding: 0;
  width: 100%;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 5px;
  background-color: #f2f2f2;
  border: medium none;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  height: 30px;
  /*border: 1px solid #aaaaaa;*/
}
.form input[type="file"] {
  padding: 0;
}
.form table.prices input {
  width: auto;
}
.form select {
  width: 100%;
  max-width: 286px;
  padding: 0;
}
.form input[type="checkbox"] {
  width: auto;
  height: auto;
}
.form input[name="summary_counter"] {
  width: 20px;
}
.form input.error, 
.form textarea.error, 
.form select.error { 
  color: red;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  border: solid 1px;
}
.form .error { 
  color: #f45353; 
}
.form input[type="submit"] {
  padding: 8px 16px;
  display: inline-block;
  background-color: #263541;
  color: #FFF;
  text-transform: uppercase;
  width: auto;
  margin-top: 20px;
  font-size: 18px;
  line-height: 24px;
  height: auto;
  cursor: pointer;
}
.form input[type="submit"]:hover,
.form input[type="submit"]:active {
  background-color: #001220;
}


@media (min-width: 594px) {
  .box form dl dt {
    float: left;
    clear: both;
    width: 20%;
  }
  .box form dl dd {
    float: left;
    width: 80%;
  }
  table.ov-table,
  table.ov-table table,
  table.ov-table tbody {
    display: table;
    max-width: 100%;
    width: 100%;
    border-collapse: separate; 
  }
  .form table table tbody {
    border-spacing: 5px;
  }
  table.ov-table tr {
    display: table-row;
  }
  table.ov-table > tbody tr:first-child img {
    max-width: 100%;
  }
  table.ov-table td {
    display: table-cell;
    width: 33%;
    margin-bottom: 0;
  }
  .form table.ticket-detail td {
    width: 22%;
  }
  .form table.ticket-detail td:first-child{
    width: 20px;
  }
  .form table.ticket-detail td:first-child + td {
    width: 55px;
  }
  .form table.ticket-detail td.checkbox {
    display: block;
    width: auto;
    margin: 0 0 12px 112px;
  }
  table.confirmation table.formbackground td {
    width: 20%;
  }
  table.confirmation table.formbackground.five-cols td {
    width: 16.66%;
  }
}

/*   PROFILE   */

.boxes.logo-boxes .download {
  margin-top: 0;
  margin-bottom: 20px;
}
.boxes.logo-boxes .download .inner {
  position: relative;
  padding: 0;
}
.boxes.logo-boxes .download .inner a {
  display: block;
  padding: 40px;
}
.boxes.logo-boxes .download .inner a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.4);
  transition: background-color 250ms ease;
}
.boxes.logo-boxes .download .inner a:hover::before {
  background-color: rgba(0,0,0,0.7);
}
.boxes.logo-boxes .download .inner a::after {
  display: block;
  content: "jpg";
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  text-align: center;
  font-size: 30px;
  color: #FFF;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.boxes.logo-boxes .download .inner a[href*=".pdf"]::after {
  content: "pdf";
}
.boxes.logo-boxes .download .inner a[href*=".png"]::after {
  content: "png";
}
.boxes.logo-boxes .download .inner a[href*=".xlsx"]::after {
  content: "xlsx";
}
.profile .button {
  margin-top: 0.5em;
}
.profile-tab h3 {
  margin: 0;
  padding: 0.5em 0.2em;
  border-bottom: 2px solid #000;
  cursor: pointer;
  transition: background-color 250ms ease;
}
.profile-tab h3:hover {
  background-color: #e8e8e8;
}
@media (min-width: 1140px) {
  .profile .title {
    float: left;
  }
  .profile .button {
    float: right;
  }
}

/*   FORM   */

section.form{
  position: relative;
}
section.form input,
section.form textarea{
  width: 100%;
  font-size: 16px;
  height: 2.5em;
  background-color: #f2f2f2;
  font-family: Roboto;
  font-weight: 300;
  border: none;
  color: #000;
  margin-bottom: 10px;
  padding: .8em;
}
section.form textarea{
  height: 5.6em;
}
section.form select {
  display: block;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  line-height: 1em;
  font-weight: 300;
  border: none;
  border-radius: 0;
  margin: 0px 0px 10px 0px;
  padding: .8em 70px .8em 10px;
  width: 100%;
  height: auto;
  background: #f2f2f2 url('data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%20100%2070%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m2.3%2026.2%2031.5%2021.9%2031.6-21.9%22%20fill%3D%22none%22%20stroke%3D%22%231a171b%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E') right center no-repeat;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
section.form select::-ms-expand {
  display: none;
}
section.form select:disabled::-ms-expand {
  background: #f60;
}

/* checkboxes
   using [type="checkbox"] instead of input for IE fallback
*/
section.form label.check{
  margin: 00px 10px 10px 0px;
  display: block;
  position: relative;
  cursor: pointer;
}
section.form label.check input{
  width: auto;
  height: auto;
}
section.form label.check span{
  font-weight: 300;
  vertical-align: top;
  line-height: 26px;
  display: inline-block;
}
section.form [type="checkbox"] ~ span{
  padding-left: 40px;
}
section.form [type="checkbox"]:not(:checked),
section.form [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
section.form label.check [type="checkbox"] ~ .mark{
  position: absolute;
  top: 0px;
  left: 0;
  height: 26px;
  width: 26px;
  background: #f2f2f2;
}
section.form label.check:hover [type="checkbox"] ~ .mark,
section.form label.check [type="checkbox"]:focus ~ .mark {
  background: #ddd;
}
section.form label.check [type="checkbox"]:checked ~ .mark {
  background: #d85194;
}

section.form label.check:hover [type="checkbox"]:checked ~ .mark,
section.form label.check [type="checkbox"]:checked:focus ~ .mark {
  background: #922b5e;
}
section.form label.check .mark:after {
  position: absolute;
  display: none;
  content: '';
}
section.form label.check [type="checkbox"]:checked ~ .mark:after {
  display: block;
}
section.form label.check [type="checkbox"] ~ .mark:after {
  top: 7px;
  left: 11px;
  width: 3px;
  height: 8px;
  transform: rotate(45deg);
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* placeholder text colors */
section.form select:not(:focus):invalid{ /* fake select box placeholder  */
  color: #aaa;
}
section.form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #aaa;
}
section.form ::-moz-placeholder { /* Firefox 19+ */
  color: #aaa;
}
section.form :-ms-input-placeholder { /* IE 10+ */
  color: #aaa;
}
section.form :-moz-placeholder { /* Firefox 18- */
  color: #aaa;
}


@media screen and (min-width:1140px){
  section.form{
    margin-bottom: 30px;
  }
  section.form .input{
    float: left;
    width: 50%;
    padding-top: 8px;
    padding-right: 30px;
  }
  section.form .intro,
  section.form .submit{
    float: right;
    width: 50%;
    padding-left: 10px;
  }
  section.form .submit{
    position: absolute;
    left: 50%;
    bottom: 10px;
  }
}



@media screen and (min-width:1400px){
  section.form input,
  section.form textarea{
    font-size: 24px;
  }
}


/* EXHIBITOR NEWS */
section.inner {
  padding: 40px;
}
#exhibitor-news-search {
  margin-bottom: 5rem;
}
#exhibitor-news-search p a {
  border-bottom: none !important;
}

#exhibitor-news-search input, 
#exhibitor-news-search select {
  display: block;
  width: 80% !important;
  font-size: 16px;
  height: 2.5em;
  background-color: #f2f2f2;
  font-family: Roboto;
  font-weight: 300;
  border: none;
  color: #000;
  margin-bottom: 10px;
  padding: .8em;
  color: #aaa;
}
.exhibitor-news {
  margin-bottom: 25px;
}
.exhibitor-news .newsdatum {
  margin-bottom: 0;
  line-height: 16px;
}
#exhibitor-news-search select {
  border-radius: 0;
  border-style: hidden;
  padding: 10px;
}

.aussteller .highlight {
  margin-bottom: 5rem;
}
.news_none {
  text-align: center;
}
.news-images.header {
  display: none;
}

.sliderArrows.news-images a {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: block;
  margin-top: 30px;
}

@media screen and (min-width: 600px){
  #exhibitor-news-search input, 
  #exhibitor-news-search select {
    width: 40% !important;
  }
  #exhibitor-news-search .suche {
    float: right;
    width: 55%;
    padding-left: 10px;
    margin-top: -4rem;
  }
   .exhibitor-news .title {
    margin-top: -105px;
  }
  .newstitles {
    margin-left: 25%;
    float: right;
    position: relative;
    margin-bottom: 1.2em;
    width: 75%;
    margin-top: 1em!important;
  }
  .news-images.header {
    width: 20%;
    margin-top:20px;
    display: block;
    min-height: 135px;
  }
}
@media (min-width: 600px) and (max-width: 991px){
  .exhibitor-news .title {
    margin-top: -140px;
  }
}
@media screen and (min-width: 992px){
  .newstitles {
    margin-top: -0px !important;
    margin-bottom: 3em;
  }
  .sliderArrows.news-images a {
    width: 800px;
  }
}
@media screen and (min-width: 1140px){
  #exhibitor-news-search .form.btn {
    padding-top: 0;
    padding-bottom: 0;
  }
  .newstitles {
    margin-top: 0px !important;
    margin-bottom: 3em;
  }
  .exhibitor-news .newsdatum {
    font-size: 20px;
  }
}
@media screen and (min-width: 1400px){
  #exhibitor-news-search input, 
  #exhibitor-news-search select {
    font-size: 24px;
  }
  #exhibitor-news-search .suche {
    margin-top: -5.2rem;
  }

}

/* FOOTER */

footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
footer section h2{
  font-size: 28px;
}
footer section.social{
  background-color: #fff;
  color: #000;
  text-align: center;
}
footer section a:not(.btn):hover{
  text-decoration: underline;
}
footer section.social a{
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
footer section.social a svg{
  fill: currentColor;
}
footer section.social a:hover svg{
  fill: #d85194;
}


@media screen and (min-width:600px){
  footer section h2{
    font-size: 30px;
  }
  footer .address{
    display: flex;
    justify-content: space-between;
  }
  footer .address p{
    width: 50%;
  }
  footer .address p:nth-child(2){
    margin-left: 40px;
  }
  footer section:nth-child(1){
    width: 100%;
  }
  footer section:nth-child(2),
  footer section:nth-child(3){
    width: 50%;
  }
}

@media screen and (min-width:1140px){
  footer .address{
    justify-content: flex-start;
  }
  footer .address p{
    width: auto;
  }
  footer .address p:nth-child(2){
    margin-left: 20px;
  }
  footer section:nth-child(1){
    width: 40%;
  }
  footer section:nth-child(1) .inner{
    padding-right: 0px;
  }
  footer section:nth-child(2){
    width: 30%;
  }
  footer section:nth-child(2) .inner{
    padding-right: 0px;
  }
  footer section:nth-child(3){
    width: 30%;
  }
}
@media screen and (min-width:1400px){
  footer .address p:nth-child(2){
    margin-left: 40px;
  }
  footer section p{
    font-size: 24px;
    line-height: 32px;
  }
}

/* FOOTER NAVIGATION */

footer nav{
  text-align: center;
  padding: 25px 20px;
  width: 100%;
  order: 1;
}
footer nav ul,
footer nav li{
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
footer nav li{
  display: inline-block;
}
footer nav a{
  text-decoration:none;
  color: inherit;
  text-transform: uppercase;
  padding: 7px 9px 2px 5px;
  font-weight: 300;
  display: inline-block;
}
footer nav a:hover{
  color: #d85194;
}
footer nav li::after{
  content: '';
  height: .8em;
  width: 1px;
  background-color: #fff;
  display: inline-block;
  font-weight: 300;
}
footer nav li:last-of-type::after,
footer nav li.lastofrow::after{
  display: none;
}

/* FEATHERLIGHT */
.featherlight .featherlight-content {
  padding: 0;
  border-bottom: 0;
}
.featherlight-next, 
.featherlight-previous {
  display: block;
}
.featherlight-next:hover, 
.featherlight-previous:hover {
  background: transparent;
}
.featherlight-next span, 
.featherlight-previous span {
  display: block;
  width: 40px;
  height: 75px;
  margin-top: -37px;
  text-shadow: none;
  font-size: 40px;
  background: #FFF;
  padding: 10px;
}
.featherlight-previous span {
  transform: rotate(180deg);
}
.featherlight-next span svg,
.featherlight-previous span svg {
  width: 100%;
  height: 100%;
}
.featherlight-next:hover span svg, 
.featherlight-previous:hover span svg {
  fill: #d85194;
}
.featherlight .featherlight-close-icon {
  font-size: 30px;
  width: 80px;
  line-height: 62px;
}
.featherlight iframe.featherlight-inner {
  width: 90vw;
  max-width: 1200px;
  height: 90vh;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}