﻿#ira-kommentar-liste-header {
  padding: 10px;
  border-bottom: 2px solid gray;
}
#ira-kommentar-liste-header .ira-like {
  margin-left: 10px;
}
.ira-like {
  display: inline-block;
  color: #3F5697;
}
.ira-like-liked {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}
.ira-like-clickable {
  cursor: pointer;
}
.ira-like > * {
  vertical-align: middle;
}
.ira-kommentar-box {
  padding: 10px;
}
.ira-kommentar-box:not(:last-of-type) {
  border-bottom-style: dashed;
  border-bottom-color: gray;
  border-bottom-width: thin;
}
.ira-kommentar-antwort {
  margin-top: 5px;
  margin-left: 75px;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-panel {
  background-image: none;
}
.loading-panel:after {
  display: inline-block;
  position: absolute;
  content: "\e031";
  font-size: 2em;
  font-family: "Glyphicons Halflings";
  left: 50%;
  top: 50%;
  animation-name: rotation;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.max-length-warning-label {
  font-size: 80%;
  color: #888;
}