@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.preview-chart {
  filter: blur(3.5px);
  margin-top: 100px;
  width: 65%;
  height: 65%;
}

.loadingScreen.wholePage {
  opacity: 0.4;
}
.loadingScreen.diagram {
  filter: grayscale(100%);
  opacity: 0.3;
  max-width: 100%;
  height: 100%;
}

iframe {
  overflow: hidden;
  border: none;
}
iframe.diagram {
  display: none;
}

.message {
  background-color: #fbb904;
  width: 100%;
  align-items: center;
  font-weight: 700;
  position: relative;
  z-index: -999;
  animation: fallInFromAbove 0.5s ease forwards;
  margin-bottom: 5px;
}
.message.mobile-version {
  height: unset;
  padding: unset;
}
.message p {
  margin: 10px 0;
}
.message a {
  color: #243f52;
  text-decoration: underline;
}
.message a:hover {
  color: #307da7;
}
@keyframes fallInFromAbove {
  0% {
    transform: translateY(-50%);
    opacity: 0;
    z-index: -999;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
  }
}

.text-block {
  padding: 0 10px;
  border: 1px solid #243f52;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 15px;
  margin-left: 25px;
}
.text-block.extra-height {
  height: 350px;
}

.data-block {
  padding: 25px 75px;
  border: 1px solid #243f52;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
  margin-bottom: 25px;
  margin-left: 25px;
  height: 250px;
  width: 50%;
}
.data-block.extra-height {
  height: 350px;
}

.sidebar-left {
  background-color: white;
  min-width: 15%;
  padding: 25px;
  max-height: 750px;
  margin-left: 5px;
  border: 1px solid #243f52;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
}

.buttons .button {
  margin: 5px 0;
}

.main-content {
  width: 80%;
  padding: 0 25px 50px 25px;
}

.info-bar {
  padding: 15px 7% 15px 23%;
  font-weight: bold;
  font-size: 16px;
}

.circle-chart.loading {
  max-width: 75%;
}

.dayStats-example {
  padding: 10px;
  border: 1px solid #307da7;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1607843137);
}
.dayStats-example .color-1 {
  color: red;
}
.dayStats-example .color-2 {
  color: orange;
}
.dayStats-example .color-3 {
  color: lightgreen;
}
.dayStats-example .color-4 {
  color: green;
}

/* Small desktop / laptop */
@media (min-width: 700px) and (max-width: 1600px) {
  .content-container {
    margin: 0 !important;
    font-size: 16px;
  }
  .content-container .main-content {
    padding: 0 5px 0 5px;
    width: 80%;
    max-width: 85%;
  }
  .content-container .data-block {
    padding: 25px 25px;
    margin-bottom: 5px;
    margin-left: 5px;
    height: 250px;
  }
  .content-container .data-block.extra-height {
    height: 350px;
  }
  .content-container .text-block {
    margin-left: 5px;
  }
  .content-container .sidebar-left {
    width: 20%;
    padding: 5px;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  main {
    margin-bottom: 25px;
  }
  .message {
    margin-right: 5px;
  }
  .message.mobile-version {
    padding: 0 5px;
    width: unset;
  }
  .content-container {
    margin: 0 !important;
    font-size: 16px;
  }
  .content-container .loadingScreen.diagram {
    min-height: 400px;
  }
  .content-container .main-content {
    padding: 0 0 0 5px;
    width: 99%;
    max-width: unset;
  }
  .content-container .data-block {
    padding: 5px;
    margin-bottom: 5px;
    margin-left: unset;
    min-height: 400px;
    width: 95%;
  }
  .content-container .data-block iframe {
    min-height: 400px;
  }
  .content-container .data-block.extra-height {
    min-height: 400px;
    height: 400px;
    width: 95%;
  }
  .content-container .data-block.extra-height iframe {
    height: 400px;
    min-height: 400px;
  }
  .content-container .text-block {
    margin-left: 0;
    margin-right: 5px;
  }
}