body {
    background-color: skyblue;
}

h2 {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.upload-progress.container-xl, .reports.container {
  margin-top: 15px;
}

.upload-progress .date-col {
  width: 170px;
}

.download .progress {
  margin-bottom: 10px;
}

td.download {
  line-height: 16px;
}

td a {
  margin-right: 5px;
}

.statistic-controls {
  margin-bottom: 10px;
}

table.statistic td {
  color: darkgrey;
}

table.statistic td.has-value {
  /*background-color: #ece1be;*/
  color: white;
}

table.statistic td.heat-map-1 {
  background-color: #577590;
}

table.statistic td.heat-map-2 {
  background-color: #43AA8B;
}

table.statistic td.heat-map-3 {
  background-color: #90BE6D;
}

table.statistic td.heat-map-4 {
  background-color: #F9C74F;
}

table.statistic td.heat-map-5 {
  background-color: #F8961E;
}

table.statistic td.heat-map-6 {
  background-color: #F3722C;
}

table.statistic td.heat-map-7 {
  background-color: #F94144;
}

tr.no-user > * {
  font-weight: normal;
  font-style: italic;
}

.progress {
  position: relative;
}

.progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
}

.progress .progress-bar {
  z-index: 2;
}

.refresh-progress {
  font-size: 70%;
  padding: 5px;
  background-color: white;
  border-radius: 4px;
}

.refresh-errors {
  padding: 15px;
  background-color: white;
  border: 1px solid black;
  border-radius: 5px;
  font-family: monospace;
}

.refresh-errors .error {
  border-bottom: 1px solid #dddddd;
}

.service-name {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-around;
  font-size: 74px;
  top: 0;
  height: 230px;
  align-items: center;
  margin: auto;
  color: azure;
}

/*Camera styles*/
.camera {
  position: relative;
  width: 210px;
  height: 140px;
  top: 50px;
  left: 47%;
  transform: translate(-50%, 0);
  margin-bottom: 70px;
}

.camera *:before, .camera *:after {
  content: "";
  position: absolute;
}

.camera * {
  position: absolute;
}

.camera .camera-body {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 5px 5px #a7d6e9;
}

.camera .button {
  width: 10%;
  height: 5%;
  top: -2%;
  left: 16%;
  background-color: #cb214a;
  border-radius: 16px;
  animation: button 5s linear infinite;
}

.camera .flash {
  width: 24%;
  height: 15%;
  top: -12%;
  left: 38%;
  background-color: #34495e;
  border-radius: 8px;
}

.camera .flash:after {
  width: 36%;
  height: 60%;
  background-color: #7796b4;
  border-radius: 5px;
  top: 10%;
  left: 32%;
}

.camera .blinker {
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: #212f3d;
  top: 15%;
  left: 15%;
  animation: blinker 5s linear infinite;
}

.camera .zoom {
  width: 50%;
  height: 75%;
  left: 25%;
  top: 12.5%;
  background: #212f3d;
  border-radius: 50%;
  border: 5px solid #34495e;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: zoom 5s linear infinite;
}

.camera .zoom:before {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: #2c3e50;
  border: 10px solid #34495e;
}

.camera .zoom:after {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-radius: 50%;
  background: #212f3d;
}

.camera .reflections {
  background-color: #fff;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  left: -35%;
  top: -35%;
  z-index: 99;
  transform: rotate(-45deg);
}

.camera .reflections:after {
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 50%;
  top: 105%;
  opacity: 0.5;
}

.camera .flashlight {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  transition: all ease 0.2s;
  opacity: 0;
  animation: flashlight 5s linear infinite;
}

.camera .stripes {
  height: 7px;
  width: 50%;
  right: 0;
  top: 31%;
  box-shadow: 0px 7px #d60079, 0px 14px #e68d15, 0px 21px #fec803, 0px 28px #dde56b, 0px 35px #3ea230, 0px 42px #0188c2;
}

/* ANIMATION SEQUENCES*/
@keyframes button {
  5%, 15% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(10px);
  }
}

@keyframes zoom {
  20%, 32% {
    transform: rotate(0deg);
  }
  26% {
    transform: rotate(20deg);
  }
}

@keyframes blinker {
  33%, 37%, 39%, 43%, 45%, 50% {
    background-color: #212f3d;
  }
  34%, 36%, 40%, 42%, 46%, 48% {
    background-color: #e22605;
  }
}

@keyframes flashlight {
  55%, 65% {
    opacity: 0;
  }
  56% {
    opacity: 1;
  }
}
