#agenda {
    width: calc(100% + 60px);
    margin: 80px -30px;  
}

#epg {
  position: relative;
  width: 100%;
  color: #222;
  height: 72px;
  overflow: hidden;
  margin-bottom: 30px;
}

#epg #timeline {
  position: absolute;
  top: 0px;
}

#epg #timeline span {
  display: block;
  position: absolute;
  width: 50px;
  color: #999;
  font-weight: 400;
  z-index: 3;
  line-height: 1;
}

#epg > #program > #currentpos {
  position: absolute;
  height: calc(100% - 55px);
  width: 2px;
  top: 25px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.1);
  z-index: 9;
}

#epg > #rooms {
  display: none;
  float: left;
  width: calc(12.1% + 72px);
  padding-left: 30px;
  box-sizing: border-box;
  color: #000;
  font-weight: normal;
  text-align: left;
}
#epg > #rooms > div {
  position: relative;
  height: 37px;
  padding: 8px 30px 0px 0px;
  box-sizing: border-box;
  cursor: pointer;
}
#epg > #program {
  position: relative;
  top: 0px;
  left: 0px;
  overflow-y: hidden;
  overflow-x: auto;
  width: calc(100% - 55px);
  float: right;
  margin-right: 25px;
  padding-bottom: 30px;
}

#epg > #program i.fas {
  font-size: 0.8em;
  margin-right: 10px;
  vertical-align: 0.1em;
}

#epg > #program i.fas:hover {
  color: #d61317;
}

#epg > #rooms > div:first-child,
#epg > #program > div:not(.moving-helpers):nth-child(3) {
  margin-top: 30px;
}
#epg > #program > div:not(.moving-helpers) {
  position: relative;
  left: 0px;
  height: 37px;
  cursor: pointer;
  margin: auto;
}
#epg .hover,
#epg .active {
  background: #fff0b2;
}

#epg > #program > div > div {
  position: absolute;
  top: 2px;
  background: #d40057;
  color: #ffffff;
  border-radius: 3px;
  padding: 6px 11px;
  box-sizing: border-box;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

#epg > #program > div > div.now {
  color: #ffffff;
  background: #1f8bcc;
  font-weight: 400;
  z-index: 3;
}

#epg > #program > div.active > div.now {
  background: #e30717;
}

#prev,
#next {
  position: absolute;
  top: 30px;
  z-index: 9;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
#prev:hover *,
#next:hover * {
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
}
#prev:hover .arrow,
#next:hover .arrow {
  border-color: #e30717;
}
#prev .arrow,
#next .arrow {
  border-color: #707070;
}

#prev {
  left: 0;
  padding: 3px 9px;
  box-sizing: border-box;
}
#next {
  right: 0px;
  padding: 3px 6px;
  box-sizing: border-box;
  margin-right: -6px;
}
#mobile-closer {
  display: none;
}

i.arrow {
  border: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  border-radius: 0px;
}

i.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

i.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

i.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

i.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

#program-info {
  position: absolute;
  background: #2FA8DF;
  width: 400px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 15px 20px 15px;
  box-sizing: border-box;
  text-align: left;
  z-index: 9;
}
#program-info:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #2FA8DF;
  border-width: 15px;
  margin-left: -15px;
}

#program-info .title {
  display: block;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 7px;
}

#daynav {
  padding-left: 30px;
  width: 100%;
  margin-bottom: 20px;
}

#daynav span {
  cursor: pointer;
}
#daynav span.active {
  font-weight: 600;
}


#program-info.orange,
#epg > #program > div > div.orange {
  background: #FAB131;
}
#program-info.orange:after {
  border-bottom-color: #FAB131;
}

#program-info.blau,
#epg > #program > div > div.blau {
  background: #2FA8DF;
}
#program-info.blau:after {
  border-bottom-color: #2FA8DF;
}

#program-info.gruen,
#epg > #program > div > div.gruen {
  background: #0AA39E;
}
#program-info.gruen:after {
  border-bottom-color: #0AA39E;
}

#program-info.grau,
#epg > #program > div > div.grau {
  background: #cfcfd0;
  color: #000;
}
#program-info.grau:after {
  border-bottom-color: #cfcfd0;
}

