@keyframes marquee {
  0% {
    left: 110%; }
  100% {
    left: -10%; } }

@keyframes rotor {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

body, html {
  margin: 0;
  padding: 0;
  background-color: #003A5A;
  height: 100%;
  font-family: "Open Sans", sans-serif; }

.top {
  position: relative;
  background-color: #0288BE;
  height: 260px;
  width: 100%;
  text-align: center; }

.top .upper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: #00C8FF; }
  .top .upper h1 {
    position: absolute;
    width: 100%;
    color: #143A58;
    font-weight: 700;
    padding-top: 20px; }
  .top .upper .clouds {
    position: absolute;
    width: 100%;
    height: 100%; }
    .top .upper .clouds img {
      position: absolute; }
      .top .upper .clouds img.flipped {
        transform: scaleX(-1); }

.middle {
  width: 40%;
  height: 80%;
  float: left;
  background-color: #143A58;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
  .middle .padding {
    padding-top: 100px; }

.right {
  width: 38%;
  height: 80%;
  float: right; }

.padding {
  padding: 0px;
  padding-top: 40px; }

.right .padding {
  padding-top: 10px; }

.container {
  padding: 0 40px; }

.left h1, .middle h1, .right h1 {
  font-size: 14pt;
  font-weight: 400;
  color: #6C8D5D;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 20px; }

.right h2 {
  font-size: 10pt;
  font-weight: 400;
  color: #6C8D5D;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  margin-bottom: 20px; }

.gauge-container {
  margin: 0 auto;
  width: 300px;
  height: 300px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px; }
  .gauge-container #gauge-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); }
  .gauge-container #gauge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    transition: all 500ms; }
  .gauge-container .windapp-current {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -50px;
    text-align: center;
    width: 100%;
    font-size: 50pt;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9); }
    .gauge-container .windapp-current div {
      margin-top: -10px;
      font-size: 18pt;
      font-weight: 100; }

.circles {
  text-align: center;
  display: flex;
  flex-wrap: wrap; }

.circle-container {
  width: 24%;
  overflow: hidden; }
  .circle-container .label {
    font-size: 8pt;
    color: #00C8FF;
    margin-bottom: 10px; }
  .circle-container .circle {
    position: relative;
    margin: 0 auto;
    display: flex;
    width: 60px;
    height: 60px; }
    .circle-container .circle .background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .circle-container .circle img {
      width: 100%;
      transition: transform 500ms; }
  .circle-container .value {
    color: #fff;
    margin-top: 10px;
    font-size: 10pt; }

.graphs-container .column {
  width: 49%;
  float: left; }

.graphs-container .chart-container {
  margin: 20px;
  height: 320px; }
  .graphs-container .chart-container .circle-container {
    margin-top: 10px; }
    .graphs-container .chart-container .circle-container .label {
      height: 26px; }
    .graphs-container .chart-container .circle-container .circle {
      width: 40px;
      height: 40px; }

.status {
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  font-size: 9pt;
  font-weight: 100; }
