/* Tudetic WhatsApp floating button — mirrors legacy alcawhatsapp visual */

.tudeticwa_aux {
    display: none;
    position: fixed;
    text-decoration: none;
    z-index: 9999;
    bottom: 10px;
}
.tudeticwa_aux.derecha { right: 5px; }
.tudeticwa_aux.izquierda { left: 5px; }

.tudeticwa_aux.all,
.tudeticwa_aux.onlydesktop { display: block; }

.tudeticwa_content {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 0;
    position: relative;
}

.tudeticwa_content .sonar:before {
    background: transparent;
    border: 4px solid #4fc862;
    content: "";
    height: 91px;
    left: -15px;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    top: -18px;
    width: 91px;
    z-index: 1;
    border-radius: 50%;
    -webkit-animation: tudwa_sonar 1s ease-out infinite;
    -moz-animation: tudwa_sonar 1s ease-out infinite;
    animation: tudwa_sonar 1s ease-out infinite;
}

@-webkit-keyframes tudwa_sonar {
    from { -webkit-transform: scale(0); opacity: 1; }
    to { -webkit-transform: scale(1); opacity: 0; }
}
@-moz-keyframes tudwa_sonar {
    from { -moz-transform: scale(0); opacity: 1; }
    to { -moz-transform: scale(1); opacity: 0; }
}
@keyframes tudwa_sonar {
    from { transform: scale(0); opacity: 1; }
    to { transform: scale(1); opacity: 0; }
}

@media screen and (max-width: 768px) {
    .tudeticwa_aux.all,
    .tudeticwa_aux.onlymobile { display: block; }
    .tudeticwa_aux.onlydesktop { display: none; }
}

@media screen and (min-width: 769px) {
    .tudeticwa_aux.onlymobile { display: none; }
}
