#float-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

#float-cta a {
    display: inline-block;
    background: -webkit-linear-gradient(21deg, rgb(0, 197, 251) 0%, rgb(0, 92, 234) 100%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    color: #fff;
    -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: 0.3s
}

#float-cta a:hover,
#float-cta a:focus {
    text-decoration: none;
    background: -webkit-linear-gradient(21deg, rgb(0, 197, 251) 0%, rgb(0, 92, 234) 100%);
}

#float-cta a .fa-times,
#float-cta a .fa-whatsapp {
    transition: 0.3s
}

#float-cta a .fa-times {
    visibility: hidden;
    opacity: 0;
    display: none
}

#float-cta a.open .fa-times {
    visibility: visible;
    opacity: 1;
    display: block
}

#float-cta a.open .fa-whatsapp {
    visibility: hidden;
    opacity: 0;
    display: none
}

#float-cta span {
    position: absolute;
    left: -150px;
    width: 190px;
    top: 16px;
    color: #fff;
    padding: 5px 3px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    text-align: center;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    background: gray;
    opacity: 0.6 !important;
}

#float-cta .whatsapp-msg-container {
    visibility: hidden;
    position: absolute;
    right: 0;
    bottom: -20px;
    opacity: 0;
    transform: translateY(-70px);
    width: 300px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 1px;
    background-color: #ece5dd;
    transition: 0.3s
}

#float-cta .whatsapp-msg-container.open {
    visibility: visible;
    bottom: 0;
    opacity: 1
}

#float-cta .whatsapp-msg-header {
    /* text-align: center;*/
    background: -webkit-linear-gradient(21deg, rgb(0, 197, 251) 0%, rgb(0, 92, 234) 100%);
    color: #fff;
    padding: 10px
}

#float-cta .whatsapp-msg-header h6 {
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
    font-family: "Montserrat", sans-serif;;
    margin-left: 15px;
    color: #fff;
}

#float-cta .whatsapp-msg-body {
    padding: 10px;
    background: white;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#float-cta .whatsapp-msg-textarea {
    background: transparent;
    resize: none;
    width: 90%;
    height: 110px;
    border: none;
    padding: 10px;
    border: none;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-family:  "Montserrat", sans-serif;;
}

#float-cta .whatsapp-msg-textarea::selection {
    border: none;
}

#float-cta .whatsapp-msg-body textarea.placeholder,
#float-cta .whatsapp-msg-body textarea::placeholder {
    color: #2c3741;
    font-size: 14px
}

#float-cta .whatsapp-msg-footer {
    text-align: center;
    background-color: #ffff;
    padding: 5px;
}

#float-cta .btn-whatsapp-send {
    display: block;
    width: 100%;
    border: 2px solid;
    font-weight: 700;
    color: #fff;
    padding: 7px 15px;
    border: 0;
    margin-bottom: 0;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
    cursor: pointer;
    background-image: -webkit-linear-gradient(21deg, #00c5fb 0%, #005cea 100%);
}

#float-cta .btn-whatsapp-send:hover {
  
  background-image: -webkit-linear-gradient(21deg, #005cea 0%, #00c5fb 100%);

}

#float-cta .btn-whatsapp-send:focus {
  outline:0;
}


#float-cta:hover span {
    opacity: 1;
    left: -200px;
    visibility: visible
}

#float-cta.open span {
    display: none
}