#whatsapp-chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn img {
    width: 136px;
}

#whatsapp-form {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    position: absolute;
    bottom: 70px;
    right: 20px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#whatsapp-form input:not([type="checkbox"]),
#whatsapp-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.send-button {
    background-color: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.send-button:hover {
    background-color: #1EBE57;
}

.acceptance-checkbox {
    font-size: 10px;
    line-height: 1;
    margin-bottom: 0.5rem;
    [type=checkbox], [type=radio] {
        margin: 0;
    }
    a {
        color: #000000;
        font-weight: bold;
        text-decoration: underline;
        svg.icon { fill: #000000; }
    }
   
}

.phone-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.phone-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.phone-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.phone-modal-content input, .phone-modal-content select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.call-button {
    background: #f02724;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.call-button svg {
    flex-shrink: 0;
}

.acceptance-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    font-size: 12px;
}

.acceptance-checkbox input {
    width: auto;
    margin-right: 10px;
}

.privacy-span{
    margin-left: 5px;
}