/****** WHATSAPP ****/

.contenedorWhatsapp, .buttonWhatsapp{
    position: fixed;
    z-index: 99999;
}

.contenedorWhatsapp{
    margin: auto;
    bottom: 450px;
    right: 15px;
    text-align: center;
}

#toggleWhatsapp{
    display: none;
}

.buttonWhatsapp{
    z-index: 999;
    cursor: pointer;
    right: 0;
}

.buttonWhatsapp:before{

content: "\f618";
font-family: 'bootstrap-icons', sans-serif;
color: #fff;
font-size: 30px;
padding-top: 4px;
right: 10px;
position: absolute;
width: 55px;
height: 55px;
background: #00BC33;
border-radius: 50%;
transition: all 0.5s ease-in-out;
box-shadow: 1px 3px 10px 0 rgba(0,0,0,0.3);
}

.inputWhatsapp{
    transform: translateY(-10%);
opacity: 0;
transition: all 0.5s ease-in-out;
background: #fff;
width: 280px;
border-radius: 5px;
transform: translateY(0%);
text-align: center;
margin-top: 50px;
right: 20px;
bottom: 20px;
position: fixed;
border: 1px solid #ededed;
display: none;
}

.inputWhatsapp a{
    text-align: center;
    display: block;
    margin: 50px 0;
    color: #FF6D31;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 300ms;
}

.inputWhatsapp a:hover{
    color: #5f5f5f;
}

#toggleWhatsapp:checked ~ .inputWhatsapp{
    opacity: 1;
    transform: translateY(-10%);
    display: inline;
}


#toggleWhatsapp:checked ~ .buttonWhatsapp:before{
  box-shadow: 0 0 0 0 transparent;
  content: '\58';
  font-size: 25px;
  padding-top: 0;
  right: 2px;
  width: 40px;
  height: 40px;
  background: #333;
}