body{
    font-family: Cantarell, Roboto, San Francisco, Segoe UI, Helvetica Neue, Lucida Grande, Helvetica, Verdana, sans-serif;
}
tbody {
  page-break-inside: avoid;
}
.warning {
  color: red;
  font-weight: bold;
}

hr {
  margin: 2em 0;
}
h2 + table {
        margin-top: 2em;
}

.flash {
      padding: 1em;
      animation: flash ease-out 1s forwards;
}
@keyframes flash {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
}
h2 {
  font-size: 1.3em;
}

caption {
  color: #000;
  font-size: 1.1em;
}

.logo {
    display: inline-block;
    width: 3.28em;
    height: 2em;
    background: url(/static/logo1.svg) no-repeat top left;
    background-size: contain;
}

.navbar-brand.navbar-brand-logo {
    padding: 7px 15px;
}

#scanqr-ui {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

#scanqr-ui video {
    width: 75%;
    background-color: #888;
}

.unavailable {
    color: gray;
    opacity: 0.4;
    font-style: italic;
}

/* 

.glyphicon-refresh-animate with kind regards to https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d

*/ 
.glyphicon-refresh-animate {
    -animation: spin 2.0s infinite linear;
    -ms-animation: spin 2.0s infinite linear;
    -webkit-animation: spinw 2.0s infinite linear;
    -moz-animation: spinm 2.0s infinite linear;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
  
@-webkit-keyframes spinw {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@-moz-keyframes spinm {
    from { -moz-transform: rotate(0deg);}
    to { -moz-transform: rotate(360deg);}
}
