.cal-entries label{
  font-weight: bold;
  font-size: 1.25em;
  cursor: pointer;
}

.cal-entries span{
  font-style: italic;
  font-size: 0.75em;
  cursor: pointer;
}

.cal-entries p{
  font-size: 0.75em;
  cursor: pointer;
}

.cal-entry{
  padding: 1em;
  box-shadow: 0 0 1px black;
  margin-bottom: 1em;
  cursor: pointer;
}
.select-cal{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.5em;
}

.cal-selector:not(:first-child){
  /* margin-left: 0.5em; */
}
.cal-selector{
  padding: 0 0.5em 0 0.5em;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
  margin-left: 0.5em;
  margin-bottom: 0.5em;
  color: #999999;
}

.cna-context .cal-selector{
  border: 1px solid #ce0027;
}
.cna-context .cal-selector.active,
.cna-context .cal-selector:hover{
  transition: all 0.5s;
  color: white;
  background: #ce0027;
}
.bahntechnik-context .cal-selector{
  border: 1px solid #004d91;
}
.bahntechnik-context .cal-selector.active,
.bahntechnik-context .cal-selector:hover{
  transition: all 0.5s;
  color: white;
  background: #004d91;
}
.lib-context .cal-selector{
  border: 1px solid #566ba4;
}
.lib-context .cal-selector.active,
.lib-context .cal-selector:hover{
  transition: all 0.5s;
  color: white;
  background: #566ba4;
}

.detail-entry .back-button{
  cursor: pointer;
  margin: 1em 0em 0.5em 0em;
  min-width: 150px;
  font-size: 1em;
  background-color: white;
  color: #999999;
  transition-timing-function: cubic-bezier(0.400,0.000,0.200,1.000);
  padding: 0.25em 0.85em 0.25em 0.85em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.detail-entry .back-button i{
  margin-right: 0.5em;
}
.detail-entry .cal-img-caption{
  float: right;
  font-size: 0.5em;
}
.detail-entry .detail-entry-content .detail-entry-content-left{
  max-width: 33%;
  margin-right: 0.5em;
  margin-top: 45px;
}
.detail-entry .detail-entry-content .detail-entry-content-right{
  width: 100%;
  margin-left: 0.5em;
  margin-top: 45px;
}
.detail-entry .detail-entry-content{
  display: flex;
}
.cna-context .detail-entry .back-button{
  border: 1px solid #ce0027;
}
.cna-context .detail-entry .back-button:hover{
  transition: all 0.5s;
  color: white;
  background: #ce0027;
}
.bahntechnik-context .detail-entry .back-button{
  border: 1px solid #004d91;
}
.bahntechnik-context .detail-entry .back-button:hover{
  transition: all 0.5s;
  color: white;
  background: #004d91;
}
.lib-context .detail-entry .back-button{
  border: 1px solid #566ba4;
}
.lib-context .detail-entry .back-button:hover{
  transition: all 0.5s;
  color: white;
  background: #566ba4;
}
.detail-entry .date{
  font-style: italic;
  font-size: 0.75em;
}

.detail-entry .header{
  font-size: 2em;
}
.cna-context .detail-entry .header{
  color: #ce0027;
}
.bahntechnik-context .detail-entry .header{
  color: #004d91;
}
.lib-context .detail-entry .header{
  color: #566ba4;
}

.detail-entry .cal-organizer-data:not(:first-child){
  margin-top: 0.5em;
}

.detail-entry .cal-date-content,
.detail-entry .cal-organizer-content,
.detail-entry .cal-location-content{
  padding: 0.5em;
  font-size: 0.9em;
}

.cal-organizer,
.cal-location,
.cal-website{
  margin-top: 1em;
}
.loadersmall{
  border: 5px solid #f3f3f3;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 600px) {
  .detail-entry .detail-entry-content .detail-entry-content-left{
    max-width: none;
    margin-right: 0;
  }
  .detail-entry .detail-entry-content .detail-entry-content-right{
    margin-left: 0;
  }
  .detail-entry .detail-entry-content{
    flex-direction: column;
  }
}
