/* Estilos del contenedor principal */
.whatsapp_container {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    position: fixed !important;
    bottom: 15px;
    padding: 10px;
    overflow: hidden;
    pointer-events: none;
    z-index: 999999 !important;
}

.whatsapp_container.wac-ald-left {
    left: 15px;
}

.whatsapp_container.wac-ald-right {
    right: 15px;
}

/* Estilos del chat */
.whatsapp_chat {
    width: 330px;
    height: auto;
    background-color: #faf7f4;
    border-radius: 0.8rem;
    border: 1px solid #ebebea;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 8px;
    transition: 300ms ease-in-out;
    pointer-events: auto;
}

.whatsapp_chat_close {
    transform: translateY(700px);
    pointer-events: none;
    opacity: 0;
}

/* Estilos del botón */
.whatsapp_button {
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 8px;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.whatsapp_button:hover {
    transform: scale(1.1);
}

/* Estilos del encabezado del chat */
.whatsapp_chat_header {
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
    border-bottom: 1px solid #ebebea;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp_chat_logo {
    background-color: #ffffff;
    border-radius: 2.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.whatsapp_chat_logo .wac-ald-svg-icon {
    width: 32px;
    height: 32px;
}

.title_form {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

/* Estilos del cuerpo del formulario */
.body_form {
    padding: 12px;
}

/* Estilos para el botón rectangular */
.whatsapp_button.estilo-rectangular {
    width: auto;
    height: auto;
    padding: 10px 20px;
    gap: 8px;
}

.whatsapp_button.estilo-rectangular .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.whatsapp_button.estilo-rectangular .wac-ald-text {
    font-size: 14px;
    font-weight: 500;
}

/* Estilos para el botón clásico */
.whatsapp_button.estilo-clasico .wac-ald-svg-icon {
    width: 45px;
    height: 45px;
}


.button_send_whatsapp_message::after {
    content: "";
    display: inline-block;
    width: 16px; /* Tamaño del icono */
    height: 16px;
    margin-left: 2px; /* Espacio entre el texto y el icono */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M2 21l20-9-20-9v7l13 2-13 2z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}