/** {
  z-index: 999;
}*/

.frame {
  position:relative;
  top:-20px;
  
  display: flex;
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: white;
  border: none;
  border-radius: 7px;
  
  z-index:999;
}

.modal {
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in;
  
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px) brightness(30%);
  /* CAN REMOVE BLUR HERE IF YOU ONLY WANT TO DARKEN LIKE IN HOSTGATOR */
}

.myBtn {
  background-color: transparent; /* Green */
  border: none;
  color: white;
  padding: 8.9px 0px;
  height: 100%;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13pt;
  font-family: inherit;
}

.modalContainer {
  display: flex;
  height: 800px;
  width: 1100px;
  margin:0px -50px 0px 20px;
}

.closeButton {
  position: relative;
  top: -50px;
  left: -40px;
  background: transparent;
  background: #ccc;
  border: 2px solid #1f2042;
  border-radius: 50%;
  color: #1f2042;
  font-size: 30pt;
  align-self: flex-start;
  margin: 0 20px;
  padding: 0 12px;
  cursor: pointer;

  z-index:1000;
}
.closeButton:hover {
  color: white;
  background-color: #1f2042;
}

.infoBtn {
  cursor: pointer;
  display: inline-flex;
  height: 19px;
  width: 19px;
  border: none;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  vertical-align: sub;
  background-image: url("./images/info.svg");
}
.infoBtn:hover {
  background-image: url("./images/infoFilled.svg");
}
