@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,700,700i,900,900i&display=swap');

.corona-virus-block {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 900;
  padding: 20px;
  color: #fff;
  min-width: 200px;
  text-align: left;
  max-width: calc(100% - 40px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background-color: rgba(45,45,63,.95);
  background-image: url("../images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, .35);
}

.corona-virus-block .title {
  color: #da717e;
  font-size: 22px;
  font-weight: 900;
  margin-top: 0;
}

.corona-virus-block .message {
  justify-content: justify;
  text-align: left;
  margin-bottom: 0;
  font-size: 16px;
  display: none;
  max-width: 840px;
  overflow-y: scroll;
  max-height: 50vh;
}
/* Scroll bar */
.corona-virus-block .message::-webkit-scrollbar {
  width: 6px;
}
.corona-virus-block .message::-webkit-scrollbar-track {
  background: rgb(45,45,63);
  border-radius: 3px;
}
.corona-virus-block .message::-webkit-scrollbar-thumb {
  background: #888;
  opacity: 0.8;
  border-radius: 3px;
}
.corona-virus-block .message::-webkit-scrollbar-thumb:hover {
  opacity: 0.9;
}

.corona-virus-block label.link {
  font-size: 16px;
  font-weight: 300;
}
.corona-virus-block label.link svg {
  fill: #fff;
  width: 10px;
}
.corona-virus-block #corona-message {
  display: none;
}
.corona-virus-block #corona-message:checked + .message {
  display: block;
}

.corona-virus-block strong {
  color: #da717e;
  font-weight: 700;
}
