body {
  overflow: hidden;
}

.covid-modal {
  width: 60%;
  height: 70%;
  position: fixed;
  display: flex;
  top: 15%;
  left: 20%;
  background-color: white;
  padding: 20px 10px 20px 10px;
  z-index: 1000;
  border: 1px solid #555;
  border-radius: 5px;
  line-height: 24px;
  font-size: 20px;
  box-shadow: 2px 5px 10px #CCC;
  -ms-flex-flow: column nowrap;
  transition: all 0.5s ease;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
}

.covid-modal-content {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.covid-modal-title, .covid-modal-footer {
  text-align: center;
  line-height: 28px;
}

.covid-modal-body, .covid-modal-header {
  text-align: justify;
}

.close-modal-button {
    position: absolute;
    background-color: white;
    text-align: center;
    width: 32px;
    height: 32px;
    z-index: 1001;
    top: calc(15% - 10px);
    right: calc(20% - 32px);
    font-size: 24px;
    line-height: 32px;
    border: 1px solid #222;
    border-radius: 50%;
    cursor:pointer;
}
