*{
    font-family: 'Quicksand',
    sans-serif;
    scroll-behavior: smooth;
}
body {
    background: rgb(255, 255, 255);
}

.loader {
    width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    border: 4px solid transparent;
    position: relative;
    padding: 1px;
}

.loader:before {
    content: '';
    border: 1px solid #fff;
    border-radius: 10px;
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
}

.loader .loaderBar {
    position: absolute;
    border-radius: 10px;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: #8D65F8;
    width: 0;
    animation: borealisBar 2s linear infinite;
}

@keyframes borealisBar {
    0% {
        left: 0%;
        right: 100%;
        width: 0%;
    }

    10% {
        left: 0%;
        right: 75%;
        width: 25%;
    }

    90% {
        right: 0%;
        left: 75%;
        width: 25%;
    }

    100% {
        left: 100%;
        right: 0%;
        width: 0%;
    }
}
.logo{
   font-weight: bold;
   font-size: 40px;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 1;
   background-color: white;
   border-bottom-right-radius: 10px;
  box-shadow: 0px 0px 20px -6px rgb(0 0 0 / 75%);
  padding-right: 10px;
}
.curve_chart{
    height: 500px;
    width: 90%;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 30%;
  border-radius: 5px;
  border: solid #000000 .5px;
}
#curve_chart{
height: 480px;
width: 100%;

}
#hovered{
    color: #855CF8;
    position: absolute;
    right: 5%;
    top: 10%;
    z-index: 1;
}
.realtime{
  position: absolute;
  top:10%;
  right:5%;
  transform: translate(-50%, -50%);
}
.level{
    display: block;
    font-size: 40px;
    font-weight: bold;
    text-align: right;
}
.live{
    font-size: 10px;
  transition: opacity 0.5s ease-in-out;
        animation: fade infinite ease-in-out 1.5s alternate-reverse ;
}
@keyframes fade {
    from {
        opacity: 0;
    }

    to {
                opacity: 1;

    }
}

.made{
position: fixed;
bottom: 0;
left:50%;
transform: translateX(-50%);
font-weight: bold;
}
#summary{
visibility: hidden;
height:500px;
width: 90%;
border-radius: 5px;
  border: solid #000000 .5px;
  position: relative;
  left:50%;
  transform: translateX(-50%);
  margin-bottom: 50px;
  background-color: white;
}
@media only screen and (max-width: 930px) {
    .logo{
            position: fixed;
            bottom: 0;
            top: 95%;
    }
    .curve_chart{
        margin-top: 490px;
    }
}
.selectedlevel{
   position: absolute;
   top:50%;
   left:50%;
   transform: translate(-50%, -50%);
   font-size: 100px;
}
#piechart{
    position: absolute;
    left: 0;
    height: 100%;
    width: 45%;
}