.whatsapp_modal_iframe {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
}

.iframeOpen {
  opacity: 1;
  visibility: visible;
  background-color: transparent;
}

#whatsapp_modal {
  display: flex;
  position: fixed;
  background-color: #485c66ab;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0px;
  left: 0px;
  justify-content: center;
  align-items: center;
}

.fakeModalWhatsApp {
  position: absolute;
  z-index: -1;
  opacity: 1;
  visibility: visible;
  width: 586px;
  height: 516px;
  background-color: #fff;
  border-radius: 24px;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fakeModalWhatsApp.fakeModalClose {
  opacity: 0;
  visibility: hidden;
}
