#float-cta {
    position: fixed;
    bottom: 85px;
    left: 95.5%;
    z-index: 9999999999
}
#float-cta a {
    display: inline-block;
    background-color: #25D366;
    -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:focus {
    text-decoration: none;
    background-color: #075E54;
    color: #fff;
}
#float-cta a:hover {
    text-decoration: none;
    background-color: #fff;
    color: #455a64;
}
/*
#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: 150px;
    top: -70px;
    background-color: #999;
    color: #fff;
    padding: 8px 8px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    border-radius: 15px;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    left: -95px;
    position: absolute;
    font-size: 13px;
    line-height: 18px;
}
#float-cta .whatsapp-msg-container {
    visibility: hidden;
    position: absolute;
    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: 10px;
    background-color: #fff;
    transition: 0.3s;
    left: -245px;
}
#float-cta .whatsapp-msg-container.open {
    visibility: visible;
    bottom: 0;
    opacity: 1
}
#float-cta .whatsapp-msg-header {
    text-align: center;
    background-color: #25D366;
    color: #fff;
    padding: 10px
}
#float-cta .whatsapp-msg-header h6 {
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
    color: #fff;
}
#float-cta .whatsapp-msg-body {
    padding: 5px;
}
#float-cta .whatsapp-msg-body textarea {
    width: 100%;
    height: 200px;
    border: none;
    padding: 15px;
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}
#float-cta .whatsapp-msg-body textarea.placeholder,
#float-cta .whatsapp-msg-body textarea::placeholder {
    color: lightgray;
    font-size: 14px;
}
#float-cta .whatsapp-msg-footer {
    text-align: center;
    background-color: #fff;
    border-top: 1px solid lightgray;
    padding: 5px;
}
#float-cta .btn-whatsapp-send {
    display: block;
    width: 100%;
    border: none;
    font-weight: 700;
    color: #fff;
    background-color: #075E54;
    padding: 7px 15px;
    transition: 0.3s;
}
#float-cta .btn-whatsapp-send:hover {
    background-color: #455a64;
    color: #fff;
    border: none;
}
#float-cta:hover span {
    opacity: 1;
    left: -95px;
    visibility: visible;
}
#float-cta.open span {
    display: none;
}

.g-recaptcha {
    width: 304px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
    #float-cta {
        left: 83.5%;
    }
}