.text-white
{
    color: white!important;
}
.text-black
{
      color: black!important;
}
.text-black:hover
{
      text-decoration: underline;
}
#modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

.modalBox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: #fff;
}

#modalIframe {
  width: 100%;
  height: 100%;
}

.closeModal {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}