<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
#gw-whatsapp .gw-whatsapp-button {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    border-radius: 100%;
    font-size: 24px;
    color: white;
    text-align: center;
    line-height: 48px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 489;
    opacity: 0;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
#gw-whatsapp .gw-whatsapp-button i {
    margin-right: 0 !important;
}
#gw-whatsapp .gw-whatsapp-button .gw-whatsapp-new {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background-color: #e82c0c;
    border-radius: 100%;
    line-height: 20px;
    font-size: 12px;
    color: white;
    -webkit-animation: cssAnimation 0s 3s forwards;
    animation: cssAnimation 0s 3s forwards;
    visibility: hidden;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
@-webkit-keyframes cssAnimation {
    to {
        visibility: visible;
   }
}
@keyframes cssAnimation {
    to {
        visibility: visible;
   }
}
#gw-whatsapp .gw-whatsapp-button.button-open {
    bottom: 40px;
    left: 40px;
    opacity: 1;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#gw-whatsapp .gw-whatsapp-button.button-open svg { max-width: 70%;}

#gw-whatsapp .gw-whatsapp-window {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 400px;
    background: #ece5dd;
    background-size: 80%;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header {
    position: relative;
    height: 70px;
    background-color: #060707;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-logo {
    display: inline-block;
    margin: 0 0 0 20px;
    line-height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-logo img {
    max-width: 35%;
    height: auto;
    opacity: 0.75;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-header-closebtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 100%;
    cursor: pointer;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-header-closebtn svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-header-closebtn:hover svg, #gw-whatsapp .gw-whatsapp-window .gw-whatsapp-header .gw-whatsapp-header-closebtn:focus svg {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-chat {
    margin: 40px 20px;
    padding: 20px;
    background-color: white;
    border-radius: 30px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #939598;
}
#gw-whatsapp .gw-whatsapp-window .gw-whatsapp-sendbtn {
    display: block;
    margin: 0 20px 20px 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
    color: white;
    text-align: center;
    padding-right: 5px;
    line-height: 55px;
    background-color: #020202;
    border-radius: 100%;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#gw-whatsapp .gw-whatsapp-window.window-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}</pre></body></html>