@font-face { font-family: roboto-regular; src: url('https://kmf.uz.ua/fonts/Roboto-Regular.ttf'); }
body {
  font-family: roboto-regular;
}

html, body {
    height: 100%;
    margin: 0;
  }

main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: 100px 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100%;
    position: relative;
}
@media (min-height: 680px), screen and (orientation: portrait) {
  /* … */
}
#chartdiv {
    width: 100%;
    height: 100%;
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
#info {
  position: absolute;
  width: 25rem;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.85);
  grid-row: 1 / span 2;
  grid-column: 1;
  padding: 0 15px;
  overflow-y: scroll;
}


#title {
    grid-row: 1;
    grid-column: 1 / 3;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 15px;
    justify-content: center;
    display: none;
}

li.kiemelt {
  font-weight: bold;
}
