/*Footer Modal */
html body .modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .5);
  font-family: 'Assistant';
}

html body .modal-content .header {
  display: flex;
  justify-content: space-between;
  padding: 0 0 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #ccc;
  float: unset;
  width: unset;
  height: unset;
  top: unset;
  position: unset;
}

html body .modal-content h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: bold;
}

html body .modal-content h4 {
  font-weight: bold;
}

html body .modal-content a {
  color: #0d6efd;
  text-decoration: underline;
}

html body .modal-content .header button {
  border: 0;
  font-size: 30px;
  position: fixed;
  cursor: pointer;
  right: 20px;
  background: rgb(255 255 255 / 50%);
  border-radius: 50px;
  padding: 0px 15px;
  top: 20px;
}

html body .modal-content p {
  margin-bottom: 17px;
}

html body .modal-content {
  background-color: #fefefe;
  margin: 50px auto 0;
  padding: 10px 20px;
  border: 1px solid #888;
  width: 80%;
  max-height: 700px;
  overflow-y: auto;
  text-align: left !important;
}

@media only screen and (max-width: 768px) {
  html body .modal .modal-content {
    margin: 5% auto 0;
    width: 90%;
    max-height: 90%;
  }
}


@media only screen and (max-width: 576px) {
  html body .modal .modal-content {
    margin: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    right: 20px !important;
    top: 18px !important;
  }
}

/*Footer Modal*/