.modal {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3137254902);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.modal.active {
  display: flex;
}
.modal .modalContent {
  background-color: #fff;
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 50%;
  width: 80%;
}
.modal .modalContent .modalHeader {
  width: 100%;
  background-color: #3B7197;
  color: #fff;
  padding: 5px;
  text-align: center;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 8%;
}
.modal .modalContent .modalHeader .closeModal {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e00000;
  color: #fff;
  height: 100%;
  width: 50px;
  font-size: 20px;
  border: none;
  border-top-right-radius: 5px;
  cursor: pointer;
}
.modal .modalContent .modalHeader .closeModal:hover {
  background-color: #b80000;
}
.modal .modalContent .modalBody {
  height: 84%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex-direction: column;
  padding: 20px 5px;
}
.modal .modalContent .modalBody img {
  width: 80%;
  max-width: -moz-max-content;
  max-width: max-content;
}
.modal .modalContent .modalBody .shareDiv {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modalContent .modalBody button,
.modal .modalContent .modalBody a {
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
  color: #fff;
  border: none;
  padding: 10px 30px;
  text-decoration: none;
  margin-right: 3px;
  width: 82%;
  text-align: center;
}
.modal .modalContent .modalBody button.copy,
.modal .modalContent .modalBody a.copy {
  background: #973b3b;
}
.modal .modalContent .modalBody button.WhatsApp,
.modal .modalContent .modalBody a.WhatsApp {
  background: #25D366;
}
.modal .modalContent .modalBody button.Telegram,
.modal .modalContent .modalBody a.Telegram {
  background: #0088cc;
}
.modal .modalContent .modalBody button.sms,
.modal .modalContent .modalBody a.sms {
  background: #ff9800;
}
.modal .modalContent .modalFooter {
  bottom: 0;
  position: absolute;
  width: 100%;
  background-color: #3B7197;
  color: #fff;
  padding: 5px;
  text-align: center;
  position: relative;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 8%;
}/*# sourceMappingURL=modal.css.map */