/* Media query for DESKTOP size devices: */
@media screen and (min-width: 769px) {
  .modalMask {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .myModalContainer {
    position: fixed;
    width: 450px;
    min-height: 200px;
    background-color: white;
    top: 150px;
    right: 32%;
  }
  .myModalContainerPleaseWaitOuter {
    position: fixed;
    width: 450px;
    background-color: white;
    top: 150px;
    right: 32%;
  }
  .myModalBody {
    max-height: 400px;
    overflow-y: auto;
  }
}

/* Media query for MOBILE size devices: */
@media screen and (max-width: 768px) {
  .modalMask {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .myModalContainer {
    position: fixed;
    width: 100%;
    min-height: 200px;
    background-color: white;
    top: 100px;
  }

  .myModalContainerPleaseWaitOuter {
    position: fixed;
    width: 100%;
    background-color: white;
    top: 100px;
  }
  .myModalBody {
    max-height: 400px;
    overflow-y: auto;
  }
}
