html * {
  font-family: 'Roboto';
}

.spin-left {
  animation: spinleft 2s infinite linear;
}

.spin-right {
  animation: spinright 2s infinite linear;
}

@keyframes spinleft {
  from {
    transform: scale(1) rotate(360deg);
  }

  to {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes spinright {
  from {
    transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

/* The element to apply the animation to */
.pulse {
  animation: pulse 0.5s;
}

.showafter1s {
  animation: show 1s;
}

@keyframes show {
  0% {
    opacity: 0;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.margin-left {
  margin-left: 0.2em;
}

.margin-right {
  margin-right: 0.2em;
}

.margin-right-1 {
  margin-right: 1rem;
}

.paginationstyle {
  margin: 0 !important;
  float: right;
}

.initiallyHidden {
  display: none;
}

.floatRight {
  float: right;
}

.rotateLeft {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.floatLeft {
  float: left;
}

.watchDownloadField {
  min-width: 4.2em;
}

.filesizeCell {
  min-width: 6em;
}

.movie-icon {
  line-height: 0 !important;
}

.material-icons {
  vertical-align: middle;
  transition: all 0.25s ease-in-out;
}

td {
  vertical-align: middle !important;
  line-height: 1.5rem !important;
  padding: 0px 8px !important;
  height: 40px !important;
}

label {
  vertical-align: middle;
  top: 50%;
  line-height: 0;
}

#queryInputGroup {
  width: 100%;
}

#queryInputClearButton {
  position: absolute;
  font-size: 18px;
  right: 1.3em;
  top: 50%;
  line-height: 0;
  opacity: 0;
  height: auto;
  cursor: pointer;
  z-index: 3;
}

#mediathek {
  width: 100% !important;
}

.smallMarginTop {
  margin-top: 0.7em;
}

.icon-big {
  font-size: 2em !important;
  transition: all 0.25s ease-in-out;
}

.icon-small {
  font-size: 1.3em !important;
  transition: all 0.25s ease-in-out;
}

.noPadding {
  padding: 0 !important;
}

.blur {
  -webkit-filter: blur(3px) !important;
  filter: blur(3px) !important;
  transition: all 0.4s ease-in-out;
}

.no-filter {
  -webkit-filter: none;
  filter: none;
  transition: all 0.4s ease-in-out;
}

.overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 100000;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.85);
  overflow-x: hidden;
}

.overlay-content {
  position: absolute;
  top: 20%;
  width: 100%;
  margin: 0;
  text-align: center;
}

.overlay .closeButton {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
}

.about {
  cursor: pointer;
}

.table {
  margin-bottom: 0;
}

th[data-onclick-sort] {
  cursor: pointer;
}

.dataTables_scrollHead tr[data-sort="channel-asc"] > th[data-onclick-sort="channel"]::after,
.dataTables_scrollHead tr[data-sort="topic-asc"] > th[data-onclick-sort="topic"]::after,
.dataTables_scrollHead tr[data-sort="timestamp-asc"] > th[data-onclick-sort="timestamp"]::after,
.dataTables_scrollHead tr[data-sort="duration-asc"] > th[data-onclick-sort="duration"]::after {
  content: "▲";
  margin-left: 0.25em;
}

.dataTables_scrollHead tr[data-sort="channel-desc"] > th[data-onclick-sort="channel"]::after,
.dataTables_scrollHead tr[data-sort="topic-desc"] > th[data-onclick-sort="topic"]::after,
.dataTables_scrollHead tr[data-sort="timestamp-desc"] > th[data-onclick-sort="timestamp"]::after,
.dataTables_scrollHead tr[data-sort="duration-desc"] > th[data-onclick-sort="duration"]::after {
  content: "▼";
  margin-left: 0.25em;
}
