html {
    font-family: 'Source Sans Pro', sans-serif;
    color: #048!important;
    width: 100%;
}
body {
    margin: 8px;
    width: calc(100% - 16px);
}
div.container {
    width: 100%;
}
button#anzeigeBtn {
    margin-top: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1em;
    color: #048;
    background: #BEC3C6;
    border: 1px solid #1ca6e9;
    padding: 8px 12px;
}
#timestamp {
    font-size: .75em;
    color: #048;
    font-weight: 400;
}
/* Acordeon styles - based on Codepen https://codepen.io/raubaca/pen/PZzpVe */
.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  overflow: hidden;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  position: relative;
  display: block;
  padding: 0 1em;
  background: #e4e4e4 !important;
  font-size: 1em;
  line-height: 2.5;
  cursor: pointer;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #f2f2f2;
  color: #048!important;
  line-height: 1.2em;
  font-size: .875em;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}
.tab-content p {
  margin: 1em;
}
.tab-content select {
    color: #048!important;
    padding: 1em;
    width: 100%;
    background-color: transparent;
    border: 0;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 10em;
}
input:checked ~ label {
  font-weight: bold;
}
/* Icon */
label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 2em;
  /* height: 3em; */
  /* line-height: 1.2em; */
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: "+";
}
input[type=radio] + label::after {
    font-family: "fontello";
    font-style: normal;
    content: '\e801';
}
input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}

/* EasyAutocomplete */
.search-container .tab {
    margin-bottom: 0;
}
.search-container .tab label {
    cursor: default!important;
}
.easy-autocomplete input {
    position: unset;
    opacity: 1;
    z-index: 0;
    background-color: rgb(242, 242, 242);
    width: calc(100% - 24px);
    border: 0;
    border-radius: 0;
    color: #048;
    margin-bottom: 1px;
    height: 30px;
    font-size: 1em;
    line-height: 2.5;
    /* Search Icon */
    background-image: url(http://easyautocomplete.com/images/icon_search.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.easy-autocomplete-container ul {
    background-color: rgb(242, 242, 242);
}
