/** Add this to elements that you want to enable spin for **/
.spin::before {
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

/** Toggle this when you want to make the element spin **/
.spinning::before {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.table tbody tr:hover td,
.table tbody tr:hover th {
  background-color: lightblue;
}

.logo {
  width: 55px;
  height: 55px;
}

.logo-link {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #3f3f3f;
}

.slogan {
  font-size: 13px;
  line-height: 1.3;
  color: #3f3f3f;
  padding: 0;
  font-weight: 700;
}

.table-scrollable {
  /* set the height to enable overflow of the table */
  max-height: 100vh;

  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: thin;
}

.table-scrollable thead th {
  border: none;
}

.table-scrollable thead th {
  /* Set header to stick to the top of the container. */
  position: sticky;
  top: 0px;

  /* This is needed otherwise the sticky header will be transparent
    */
  background-color: white;

  /* Because bootstrap adds `border-collapse: collapse` to the
     * table, the header boarders aren't sticky.
     * So, we need to make some adjustments to cover up the actual
     * header borders and created fake borders instead
     */
  margin-top: -1px;
  margin-bottom: -1px;

  /* This is our fake border (see above comment) */
  box-shadow: inset 0 1px 0 #dee2e6, inset 0 -1px 0 #dee2e6;
}

.form-group {
    margin-bottom: 0.8rem;
}