@media screen and (max-width: 500px) {
    .prompt{
      width: 100%!important;
      height: 100%!important;
      transform: unset!important;
      top: 0!important;
      left: 0!important;
    }
    .prompt_close_button{
      top: 2px!important;
      right: 2px!important;
    }
  }
  .prompt {
    --wesbos: #cadcdc;
    --font-color: #fff;
    --item__cal: #fff;
    text-size-adjust: 100%;
    visibility: visible;
    box-sizing: border-box;
    display: inline-block;
    width: 400px;
    height: 400px;
    background-color: #fff;
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 1000;
    text-align: center;
    padding-top: 0;
    box-shadow: black 0px 0px 10px 0px;
    border: solid 1px #999;
    border-radius: 20px;
  

  }

  #add_email_phone_iframe{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
  }
  .prompt_close_button{
    position: absolute;
    top: 1px;
    vertical-align: center;
    font-weight: bolder;
    font-size: larger;
    text-align: center;
    box-sizing: content-box;
    right: 1px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
  }
.tsc-wait-prompt {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin-bottom: 20px;
  font-size: 20px;
  color: white;
  background-color: #11182722;
  z-index: 1000;
}


/* login popup */
.tsc-overlay {
  position: fixed;
  display: flex;
  flex-direction: column;
    justify-content: center;
    align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 500ms;
  z-index: 999;
}
.tsc-overlay:target {
  visibility: visible;
  opacity: 1;
}

.tsc-popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 550px;
  height: 450px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 5s ease-in-out;
}

.tsc-popup h2 {
  width: 100%;
  text-align: center;
  padding-top: 15px;
  height: auto;
  flex: fit-content;
  display: block;
  font-size: large;
  font-weight: bold;
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.tsc-popup .tsc-close {
  position: absolute;
  top: 0;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.tsc-popup .tsc-close:hover {
  color: #06D85F;
}
.tsc-popup .tsc-content {
  overflow: auto;
  height: 100%;
}

@media screen and (max-width: 500px){
  .tsc-popup{
    width: 90% !important;
  }
}