/*Círculo para abrir chat Whatsapp*/
#whatsappbtn {
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}
/*Ícono en el círculo para abrir chat Whatsapp*/
.whatsapp-icon {
  margin-top:17.5px;
}
/*Botón de Contactar al abrir chat*/
.gotowhats {
  position:fixed;
  width: 275px;
  height: 40px;
  bottom: 50px;
  right: 70px;
  background-color:#25d366;
  color:#FFF;
  border-radius:15px;
  text-align:center;
  font-size:30px;
  z-index:100;
  text-decoration: none;
}
/*Ícono del botón de Contactar*/
.gotowhats-icon {
  margin: 8px 20px 0 -80px;
}
/*El círculo de Whatsapp cambia de color al colocar el mouse sobre él*/
#whatsappbtn:hover {background-color: #1fad53;} 

/*Área del chat con el título y foto de perfil Whatsapp*/
.titleContact {
  border-radius: 20px;
  background: #008060;
  padding: 20px; 
  position:fixed;
  width:300px;
  height:250px;
  bottom:40px;
  right:40px;
  color:#FFF;
  text-align:center;
  font-size:30px;
  z-index:100;
  box-shadow: 5px 10px 18px rgba(0,0,0,0.7);
} 
/*Área del chat con el texto de "¿Cómo podemos ayudarle?"*/
.chat {
  background-image:url("../img/Whatsapp/Whatsapp Background.jpeg");
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px; 
  position:fixed;
  width:300px;
  height:100px;
  bottom:100px;
  right:40px;
  color:#FFF;
  text-align:center;
  font-size:30px;
  z-index:100;
}
/*Área del botón del chat que envía al usuario a Whatsapp*/
.chatBtn {
  border-radius: 0 0 20px 20px;
  background: #ffffff;
  padding: 20px; 
  position:fixed;
  width:300px;
  height:20px;
  bottom:40px;
  right:40px;
  text-align:center;
  font-size:30px;
  z-index:100;
  box-shadow: 0px 0px 18px rgba(0,0,0,0.3);
}
/*Burbuja con texto en el chat*/
#speech-bubble {
  border-radius: 10px;
  width: 200px;
  height: 70px;
  background: #ffffff;
  padding: 10px 10px 10px 15px;
  text-align: left;
  font-size:15px;
  color: #999999;
  font-family: arial;
  position: fixed;
  box-shadow: 5px 10px 18px #cccccc;
}
/*Triángulo en el lado superior derecho que hace la burbuja en el chat*/
#speech-bubble:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 10px solid transparent;
  border-right: 10px solid #ffffff;
  border-top: 10px solid #ffffff;;
  border-bottom: 10px solid transparent;
  left: -13px;
  top: 10px;
} 
/*Burbuja con texto en el chat*/
.chat-text {
  color: #595959;
  margin: 6px 0 0 0;
  padding: 0;
  font-weight:lighter;
  text-align: left;
}
/*Hora mostrada en el texto del chat*/
#hourStamp {
  font-size:13px;
  color: #999999;
  margin: 0;
  padding: 0;
  font-weight: lighter;
  text-align: right;
} 
/*Nombre de la persona que habla en negrita en el título*/
.title-bold {
  color: #999999;
  margin: 0;
  padding: 0;
  font-weight:bold;
}  
/*Botón para cerrar el chat*/
#closeChat {
  right: 50px;
  position: fixed;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
/*Botón de cerrar el chat cuando el mouse está encima*/
#closeChat:hover {
  opacity: 1;
}
#closeChat:before, #closeChat:after {
  position: fixed;
  content: ' ';
  height: 15px;
  width: 2px;
  background-color: #ffffff;
}
#closeChat:before {
  transform: rotate(45deg);
}
#closeChat:after {
  transform: rotate(-45deg);
}
/*Nombre de la persona que habla en negrita en el chat*/
.text-title-bold{
  position: fixed;
  margin: 0;
  padding: 8px 0 0 75px;
  text-align: left;
  font-size:18px;
  color: #FFF;
  font-family: arial;
  font-weight: bold;
}
/*Texto de "¿Cómo puedo ayudarle?" en el chat*/
.text-title{
  margin: 0;
  padding: 30px 0 0 75px;
  text-align: left;
  font-size:15px;
  color: #FFF;
  font-family: arial;
  font-weight: lighter;
  position: fixed;
}
/*Foto de perfil de la persona que habla en el chat en negrita*/
.profilepicture{
  position:fixed;
  width:60px;
  height:60px;
  bottom:255px;
  right:300px;
  border-radius: 50%;
}
/*Texto en botón de Contactar*/
.gotowhats span{
  margin: 0;
  padding: 12px 0px 12px 0px;
  font-size: 16px;
  color: #FFF;
  font-family: arial;
  font-weight: 600;
  position: fixed;
}
/*El botón de Contactar cambia de color al colocar el mouse sobre él*/
.gotowhats:hover{
  background-color: #1fad53;
}
.toggleChat {
  display: none;
}
.show {display: block;}