
/* Container Styles */
.covid {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 20px;
  max-height: 192px;
  max-width: 364px;
  background: #fff;
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12);
  z-index: 99;
}

.covid .covid-inner {
  position: relative;
  padding: 30px 20px 20px 20px;
}

.covid .covid-inner .covid-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.covid .covid-inner .covid-btn a { color: #000; }

.covid .covid-img {
  margin-bottom: 10px;
}

.covid .covid-inner .covid-msg p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.covid .covid-inner .covid-msg a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  text-transform: uppercase;
}

@media only screen and (max-width: 600px) {

  .covid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }

}