.modal-whatsapp{
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.212);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 70;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: none;
}

.modal-whatsapp.active{
    display: flex;
}

.modal-whatsapp-container{
    background-color: rgb(255, 255, 255);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    width: 100%;
   max-width: 320px;
   position: relative;
}

.modal-whatsapp-container .close{
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #999999;
    color: #292929;
    font-size: 25px;
    border-radius: 100%;
    padding: 4px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-whatsapp-container h1{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 17px;
}

.modal-whatsapp-container span{
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #00bb2d;
    padding: 10px 20px;
    border-radius: 5px;
}

.modal-whatsapp-container span:hover{
    background-color: #00bb2d;
    color: #ffffff;
}

.modal-whatsapp-container span:hover i{
    color: #ffffff;
}

.modal-whatsapp-container span:hover a{
    color: #ffffff;
}

.modal-whatsapp-container span i{
    font-size: 30px;
    color: #00bb2d;
}

.modal-whatsapp-container span a{
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #292929;
    font-size: 20px;
}

.whatsapp{
     cursor: pointer;
}

@media screen and (max-width: 650px) {
    .modal-whatsapp-container span a{
        font-size: 17px;
    }   
    .modal-whatsapp-container span{
        gap: 5px;
        padding: 10px;
    } 
}