.open-popup.show{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0) scale(1);
} 

.open-popup{
  /*width: 50%;*/
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              opacity 0.4s ease-in-out;
  opacity: 0;  
  transform: translateY(50px) ;
  z-index: 1000;
}
.open-popup:hover .textomensaje{
   transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),  
              opacity 0.4s ease-in-out;
  opacity: 1;  
  transform: translateX(0px) ;
} 

.container-mensaje{
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  /*margin-left: 80%;
  width: 20%;*/
}


.container-mensaje img{
  width: 70px;
}

.textomensaje{
  align-content: center;
  padding: 5px;
  margin: 5px;
  background-color: #BDEB88;
  color: #009ee2;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}
@media (max-width:880px) {
  .textomensaje{
    display: none;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: auto;
  max-height: 90vh;
}
.popup-close {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  position: absolute;
  top: 7px;
  right: 7px;
}
.popup-close:focus{
  outline: none;
}
.menu-item a.activo{
  text-decoration: underline;
  text-underline-offset: 20px;
  text-decoration-color: #BDEB88;
}
body.no-scroll {
  overflow: hidden;
}


@media(max-width:1024px){
  .popup-content{
    width: 75%;
  }
}