.contenedor_mensaje_emergente {
  position: absolute;
  top: 50px;
  left: -80%;
  padding-bottom: 20px;
  background: var(--bg-sol-ligth);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: solid 4px var(--bg-wave);
  border-right: solid 10px var(--bg-wave);
  border-bottom: solid 5px var(--bg-wave);
  box-sizing: border-box;
  z-index: 999999;
}

@media (max-width:519px) {
  .contenedor_mensaje_emergente{
    top:55px;
    width: 99% !important;
    height: 400px !important;
    left: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: solid 2px var(--bg-wave);
    border-right: solid 2px var(--bg-wave);
    border-bottom: solid 2px var(--bg-wave);
  }
}

@media (min-width:520px) and (max-width:619px) {
  .contenedor_mensaje_emergente{
    width: 500px !important;
    height: 500px !important;
  }
}

@media (min-width:620px) and (max-width:719px) {
  .contenedor_mensaje_emergente{
    width: 600px !important;
    height: 600px !important;
  }
}

@media (min-width:720px) and (max-width:819px) {
  .contenedor_mensaje_emergente{
    width: 700px !important;
    height: 700px !important;
  }
}

@media (min-width:820px) and (max-width:919px) {
  .contenedor_mensaje_emergente{
    width: 800px !important;
    height: 800px !important;
  }
}

@media (min-width :920px)  {
  .contenedor_mensaje_emergente{
    width: 860px !important;
    height: 860px !important;
  }
}







.show_mensaje_emergente {
  animation: showMensajeEmergente 0.5s 0.5s 1 normal both;
}

.show_mensaje_emergente2 {
  animation: showMensajeEmergente 0.2s 3s 1 normal both;
}

.hide_mensaje_emergente {
  animation: hideMensajeEmergente 1s 1 normal both;
}

@keyframes showMensajeEmergente {
  0% {
    left: -100%;
  }

  100% {
    left: 0%;
  }
}

@keyframes hideMensajeEmergente {
  0% {
    left: 0%;
  }

  100% {
    left: -100%;
  }
}

.contenedor_mensaje_emergente .mensaje_cerrar {
  background: #fff;
  position: absolute;
  right: 15px;
  top: 5px;
  font-size: 20px;
  color: var(--blue);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.contenedor_mensaje_emergente .mensaje_reabrir {
  position: fixed;
  left: 0px;
}

.btn_mensaje_reabrir {
  color: var(--text-principal);
}

.contenedor_mensaje_emergente .mensaje_titulo {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mensaje_titulo span {
  font-size: 24px;
  color: var(--dark-Blue);
  text-transform: uppercase;
  margin-top: 10px;
}

.contenedor_mensaje_emergente .mensaje_cuerpo {
  height: 90%;
  width: calc(100% - 18px);
  padding: 30px;
  box-sizing: border-box;
  overflow: auto;
}

.ocultar_reabrir {
  display: none;
}