.open-modal, #open-modal, .close {
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
    text-align: center;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    position: relative;
    animation: animatetop 0.5s ease;
    overflow-y: auto;
}
.modal .modal-content.modal-fullscreen {
    margin: 0;
    padding: 0;
    background-color: #fefefe;
    border: none;
    width: 100%;
    height: 100%;
}
.modal .modal-content .modal-body {
    margin: 5% 0 2% 0;
}
.modal .modal-content .modal-body .close-btn {
    background: #de302e;
    color: white;
    border: none;
    padding: 1% 5%;
    cursor: pointer;
}
.modal .modal-content .modal-body .help-button {
    background: #aaa;
    color: white;
    border: none;
    padding: 1% 5%;
    cursor: pointer;
}
.modal .modal-content .modal-close.default {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -7px;
    margin-right: -5px;
}
.modal .modal-content .modal-close.default:hover, .modal .modal-content .modal-close.default:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}


/* COVID CUSTOM */
.highlight-covid.modal {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.7);
}
.highlight-covid.modal .modal-content {
    margin: 30px auto;
    max-height: 85vh;
    padding: 0;
    width: 50%;
    top: 50px;
}
.highlight-covid.modal .modal-content .modal-close.default {
    position: fixed;
    top: 70px;
    right: 19%;
}
.highlight-covid.modal .modal-content img {
    max-width: 100%;
}
@media (max-width: 768px) {
    .highlight-covid.modal .modal-content {
        width: 95%;
    }
    .highlight-covid.modal .modal-content .modal-close.default {
        right: 7%;
    }

}

.highlight-covid.modal {
    background : rgba(0, 0, 0, 0.7);
}
.highlight-covid.modal .modal-content {
    width: 70%;
    margin: auto;
}
.highlight-covid.modal .modal-content img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.modal-close.default {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 32px;
}

@media(max-width:768px) {
    .highlight-covid.modal .modal-content {
        width: 95%;
    }
}


.highlight-covid.modal {
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .highlight-covid.modal .modal-content {
    margin: 100px auto;
    max-height: 85vh;
    padding: 0;
    border: none;
    background-color: transparent;
    max-width: 600px;
  }
  .highlight-covid.modal .modal-content .modal-close.default {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .highlight-covid.modal .modal-content .modal-close.default img {
    width: auto;
  }
  .highlight-covid.modal .modal-content img {
    width: 100%;
    max-width: 600px;
  }
  @media (max-width: 768px) {
    .highlight-covid.modal .modal-content {
      width: 90%;
    }
  }

