#contact-wrapper {
    display: none;
}

#whatsApp-contact,
#call-contact {
    z-index: 100;
    position: fixed;
}


#whatsApp-contact i {
    position: fixed;
    right: 10px;
    bottom: 14px;
    font-size: 42px;
    background-color: white;
    color: green;
    width: 50px;
    height: 50px;

}


#call-contact i {
    position: fixed;
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: 14px;
    font-size: 28px;
    background-color: green;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.vibrate {
    animation: vibrate 0.4s ease-in-out infinite;
}

@keyframes vibrate {
    0% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(30deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}





@media (max-width: 540px) {

    #call-contact,
    #whatsApp-contact {
        display: none;
    }

    #contact-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0px;
        z-index: 100;
        height: 50px;
    }

    #contact-wrapper div {
        /* equal width */
        flex: 1;
    }

    #contact-wrapper div:nth-child(1) {
        background-color: rgb(226, 211, 0);
        color: rgb(3, 21, 22);
        font-size: 22px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #contact-wrapper div:nth-child(2) {
        background-color: rgb(65, 209, 8);
        color: white;
        font-size: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #contact-wrapper a {
        color: white;
        text-decoration: none;
    }
}