/* WhatsApp Contact Form */

#wcf-popup {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.wcf-popup-content {
    width: 50%;
    min-width: 692px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ddd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ccc;
}

@media only screen and (max-width: 767px) {
    .wcf-popup-content {
        width: 90%;
        min-width: 0px;
    }
}

.wcf-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wcf-popup-header h3 {
    color: #0f1249;
    margin: 0;
    padding: 0;
}

.wcf-label {
    font-weight: bold;
}

.wcf-popup-footer {
    display: flex;
    justify-content: flex-end;
}

.wcf-send {
    font-weight: bold;
    background-color: #128c7e !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
}

#wcf-close {
    color: #0f1249;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

#wcf-name {
    color: #0f1249;
    background-color: #eee;
}

#wcf-topic {
    color: #0f1249;
    background-color: #eee;
}

#wcf-message {
    color: #0f1249;
    background-color: #eee;
}
