@import url("https://fonts.googleapis.com/css?family=Roboto");
/* offset-x > | offset-y ^| blur-radius | spread-radius | color */
@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.nav-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-content: flex-end;
  width: auto;
  height: auto;
  position: fixed;
  z-index: 8;
  bottom: 0px;
  right: 0px;
  padding: 5px;
  margin: 0px;
 
  
}
@media (max-width: 360px) {
  .nav-bottom {
    width: 320px;
  }
}

.whatsapp-button {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 80px;
  height: 80px;
  z-index: 8;
  transition: .3s;
  margin: 10px;
  padding: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 6px 0px rgba(68, 68, 68, 0.705);
}

.circle-anime {
  display: flex;
  position: absolute;
  justify-content: center;
  align-content: center;
  width: 80px;
  height: 80px;
  top: 15px;
  right: 15px;
  border-radius: 50%;
  transition: .3s;
  background-color: #00f238;
  animation: pulse 0.5s 1s ease 7;
}

.popup-whatsapp {
  display: none;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 415px;
  height: auto;
 
  bottom: 85px;
 
  transition: .5s;
  border-radius: 10px;
  background-color: white;
  /* offset-x > | offset-y ^| blur-radius | spread-radius | color */
  -webkit-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 2px 1px 6px 0px rgba(68, 68, 68, 0.705);
  animation: slideInRight .6s 0.0s both;
}
.popup-whatsapp > div {
  margin: 5px;

}
@media (max-width: 680px) {
  .popup-whatsapp p {
    font-size: 0.9em;
  }
}
.popup-whatsapp > .content-whatsapp.-top {
  display: flex;
  flex-direction: column;
}
.popup-whatsapp > .content-whatsapp.-top p {
  color: #5820BE;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  

}
.popup-whatsapp > .content-whatsapp.-bottom {
  display: flex;
  flex-direction: row;
}


.closePopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  margin: 30px 0px 13px 365px;
 position: relative;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: red;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  transition: all 0.3s;
}
.closePopup:hover {
  background-color: rgb(110, 6, 6);
  
}




.send-msPopup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F57E67;
  margin: 0px 0px 0px 5px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  -moz-box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  box-shadow: 1px 1px 2px 0px rgba(68, 68, 68, 0.705);
  transition: all 0.3s;
}
.send-msPopup:hover {
  background-color: #ebebeb;
  
  animation: vibracion 0.3s linear infinite;
  
}
@keyframes vibracion {
  0% {
    transform: translateX(0);
  }
    25% {
      transform: translateX(-1px); /* Mueve hacia la izquierda */
    }
    50% {
      transform: translateX(1px); /* Mueve hacia la derecha */
    }
    75% {
      transform: translateX(-1px); /* Mueve hacia la izquierda */
    }
    100% {
      transform: translateX(0);
    }
}

.is-active-whatsapp-popup {
  display: flex;
  animation: slideInRight .6s 0.0s both;
  background-color: #eeeeee;
}

input.whats-input[type=text] {
  width: 340px;
  height: 40px;
  box-sizing: border-box;
  border: 0px solid #ffffff;
  border-radius: 9px;
  font-size: 13px;
  background-color: #ffffff;
  padding: 0px 0px 0px 10px;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  outline: none;
  transition: .3s;
}
@media (max-width: 420px) {
  input.whats-input[type=text] {
    width: 225px;
  }
}
input.whats-input::placeholder {
  /* Most modern browsers support this now. */
  color: rgba(68, 68, 68, 0.705);
  opacity: 1;
}
input.whats-input[type=text]:focus {
  background-color: #f8f8f8;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  transition: .3s;
}

.icon-whatsapp-small {
  width: 24px;
  height: 24px;
}

.icon-whatsapp {
  width: 45px;
  height: 45px;
}

.icon-font-color {
  color: #ffffff;
  
}
.icon-font-color:hover {
  color: #5a5a5a;
}

.icon-font-color--black {
  color: #ffffff;
}
.icon-font-color--black:hover {
  color: #5a5a5a;
}


.typing-animation {
  display: flex;
  align-items: center;
  color: #e7e7e7;
  
}

.ellipsis {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.ellipsis-2 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}
.dot {

  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ffffff;
  margin: 0 2px;
  transform: scale(0); /* Comienza con un tamaño de punto pequeño */
  animation: typing-animation 1.5s infinite;
}


@keyframes typing-animation {
  0%, 100% {
    transform: scale(0); /* Escala inicial */
  }
  33.3% {
    transform: scale(1); /* Escala al primer punto */
  }
  66.6% {
    transform: scale(1); /* Escala al segundo punto */
  }
}

.message-bubble {
  position: relative;
  background-color: #C2EEED;
  padding: 10px 15px;
  border-radius: 15px;
  width: fit-content;
  max-width: 80%;
  margin-bottom: 10px;
  top: 15px;
  margin-left: 10px; /* Agrega un margen a la izquierda para dar espacio al triángulo */
}

.message-bubble::before {
  content: '';
  position: absolute;
  top: 3px; /* Ajusta la posición vertical de la punta */
  left: -10px; /* Ajusta la posición lateral de la punta */
  border-style: solid;
  border-width: 10px 10px 0 0; /* Crea la forma triangular */
  border-color: #C2EEED transparent transparent transparent; /* Colorea el triángulo */
}


.typing-text {
  
  display: none;
  font-size: 14px; /* Tamaño del texto del mensaje */
  color: #000; /* Color del texto del mensaje */
}

.typing-text-2{
  
  display: none;
  font-size: 14px; /* Tamaño del texto del mensaje */
  color: #000; /* Color del texto del mensaje */
}
