/* WHATSAPP ICON */
.whats-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 63px;
    bottom: 11px;
    right: 14px;
    background: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    transition: all 300ms ease;
}

.wha-message {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 50px;
    right: 80px;
    background-color: #48ed84;
    border-radius: 227px 227px 0px 227px / 121px 121px 60px 121px;
    padding: 5px 16px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 3;
}

.whats-icon:hover+.wha-message {
    opacity: 1;
    visibility: visible;
}

.whats-icon:hover {
    background: #1fac53;
    color: #fff;
}

.whats-icon:focus {
    color: #fff;
}

.whats-mobile {
    display: hidden;
}

.whats-desktop {
    display: block;
}

@media (max-width: 768px) {
    .whats-mobile {
        display: block;
    }

    .whats-desktop {
        display: hidden;
    }
}