html, body {
  height: 100%;
  margin: 0;
}
a{
  font-size: 1vw !important;
}

.full-height {
  height: 100%;
  background: yellow;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


.header {
  overflow: hidden;
  /* background: linear-gradient(to right bottom, #cbdaf2, #a0b6db); */
  background: #333333; 
  padding: 10px;
}

.header a {
  float: left;
  color: black; 
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.header a:hover {
  background-color: #ddd;
  color: black;
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.header-right {
  float: right;
}

.header-left {
  float: left;
}

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  .header-left {
    float: none;
  }
}

mysection {
  display: -webkit-flex;
  display: flex;
}

mynav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #ccc;
  padding: 10px;
}

mynav ul {
  list-style-type: none;
  padding: 0;
}

myarticle {
  -webkit-flex: 5;
  -ms-flex: 5;
  flex: 5;
  background-color: #818180; 
  padding: 10px;
}

footer {
  flex-shrink: 0;
  background-color: rbg(255,255,255);
  padding: 10px;
  text-align: center;
  color: Gray;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {font-family: Arial, Helvetica, sans-serif;}

/* Set a style for all buttons */
mybutton {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

mybutton:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 12px 0 6px 0;
  position: relative;
}

img.avatar {
  width: 20%;
  border-radius: 10%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  myspan.psw {
     display: block;
     float: right;
  }
  .cancelbtn {
     width: 100%;
  }
}

.loginbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
       -ms-flex-align: center;
          align-items: center;
    -webkit-box-pack: center;
       -ms-flex-pack: center;
     justify-content: center;
}

.loginbox-content {
    background: rgba(192, 192, 192, 0.6);
    color: black;
    padding: 20px;
    width: 35%;
    border-radius: 5px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  background-color: #e6e6e6; 
  padding: 20px;
}

.grid-container > div {
  background-color: rgba(255,255,255, 1); 
  text-align: center;
  padding: 10px 0;
  font-size: 30px;
  border-radius: 5px;
}

.item1 {
  overflow: hidden;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 5;
}

.item2 {
  overflow: hidden;
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}

.item5:hover {
  box-shadow:0px 0px 10px grey;
}

.item6 {
  grid-column-start: 1;
  grid-column-end: 4;
}

.chart-container {
  position: relative;
  margin: auto;
  height: 70vh;
  width: 70vw;
}

.img_wrp {
  display: inline-block;
  position: relative;
}
.close {
  position: absolute;
  top: 0;
  right: 0;
}

.inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  grid-auto-rows: 0.25fr 1fr 1fr;
}

.inner-container > div {
  background-color: rgba(255,255,255,0.8); 
  /*border: 2px solid gray;*/
  text-align: center;
  padding: 1px 0;
  font-size: 15px;
  border-radius: 5px;
}

.innerzero {
  grid-column-start:1;
  grid-column-end:3;
  grid-row:1;
}

.innerone {  
  grid-column: 1 / 2;
  grid-row: 2;
}

.innertwo {  
  grid-column: 2 / 2;
  grid-row: 2;
}

.innerthree { 
  grid-column: 1 / 2;
  grid-row: 3;
}

.innerfour {
  grid-coulmn: 2 / 2;
  grid-row: 3;
}

.circle-icon {
    background: #ffc0c0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    padding: 30px;
}
