<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.modal-wave-wrap .modal-content{
    border: 0;
    border-radius: 16px;
    box-shadow: 34px 30px 30px 0 rgba(148, 168, 247, 0.5);
}

.modal-wave-wrap .modal-dialog{
  max-width: 600px;
}
/* Contenedor principal del popup */
.modal-wave .popup-card {
  display: flex;
  flex-direction: row;
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 200px;
}

/* Lado izquierdo (mancha naranja e icono) */
.modal-wave .popup-left {
  position: relative;
  width: 180px;
  height: 180px;
}

.modal-wave .mancha-naranja {
  width: 290px;
  position: relative;
  top: -60px;
  right: 100px;
}

.modal-wave .mancha-naranja img {
  width: 100%;

  object-fit: contain;
}

.modal-wave .icono-wave {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 230px;
}

.modal-wave .icono-wave img {
  width: 100%;
  height: auto;
}

/* Lado derecho (textos y botÃ³n) */
.modal-wave .popup-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-wave .popup-right h2 {
  font-size: 2rem;
  color: #3E4A60;
  font-weight: 500;

}

/* InformaciÃ³n de dispositivo */
.modal-wave .info-row {
  display: flex;
  gap: 0.9rem;
  font-size: 1rem;
  color: #5169B7;
  flex-wrap: wrap;
}

.modal-wave .info-row span {
  font-size: 12px
}

.modal-wave .info-value {
  color: #3E4A60;
  font-weight: 600;
}

/* BotÃ³n */
.modal-wave .btn-continuar {

  background-color: #536BB9;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
  top: 26px;
  position: relative;


}

.modal-wave .btn-continuar:hover {
  background-color: #445bd4;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-wave .popup-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    height: 300px;
    width: 100%;
  }

  .modal-wave .popup-left {
    margin-bottom: 1rem;
  }

  .modal-wave .btn-continuar {
    align-self: center;
    top: 14px;
  }

  .modal-wave .mancha-naranja {
    top: -108px;
    margin: 0 auto;
    position: relative;
    left: -41px;

  }

  .modal-wave .popup-right {
    margin-top: -36px;
  }

  .modal-wave .icono-wave {
    top: 28px;
    left: 59%;
  }
}

@media (max-width: 450px) {
  .popup-right h2 {
    font-size: 1.5rem;

  }

  .info-row {
    display: block
  }

  .mancha-naranja {
    top: -75px;
    left: -30px;
    width: 250px;
  }

  .icono-wave {
    width: 195px;
  }

  .btn-continuar {
    top: 0;
  }

}</pre></body></html>