@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.topbar {
  height: 50px;
  background: #00f;
  color: #fff;
  width: 100%;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}
.topbar .start {
  font-size: 24px;
  font-weight: bold;
  flex-basis: auto;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  order: 1;
  line-height: 30px;
}
.topbar .cours_plus_bas {
  padding: 0 4px;
}
.topbar .cours_plus_bas:before {
  content: " ";
  position: relative;
  height: 0;
  top: 16px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #f00;
}
.topbar .cours_plus_haut {
  padding: 0 4px;
}
.topbar .cours_plus_haut:before {
  content: " ";
  position: relative;
  height: 0;
  top: -15px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid #0f0;
}
.topbar .middle {
  padding: 0px 10px;
  order: 2;
  flex: 1;
  line-height: 30px;
}
.topbar .date {
  text-align: right;
  order: 3;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 30px;
}
.topbar .last {
  order: 4;
  padding-left: 10px;
  text-align: right;
}
.topbar .last .refresh {
  display: inline-block;
  line-height: 0;
}
.topbar .last .refresh:hover {
  cursor: pointer;
}
.topbar .last .refresh.on {
  animation: rotation 0.5s infinite linear;
}

.freezer {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.freezer.unfreezing {
  opacity: 0;
}

.chart {
  height: calc(100vh - 50px);
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
