/*
Theme Name: Divi Child
Template: Divi
*/
.dw-footer-buttons {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    gap: 1rem;
    z-index: 9999;
}

.dw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    border-radius: 100%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dw-btn-whatsapp {
    color: #25D366;
    background-color: currentColor;
    transition: background-color 0.2s ease-in-out;
}

.dw-btn-whatsapp:hover {
    background-color: color-mix(in oklab, currentColor, #000000 15% );
}

.dw-btn-call {
    color: #25D366;
    background-color: currentColor;
    transition: background-color 0.2s ease-in-out;
}

.dw-btn-call:hover {
    background-color: color-mix(in oklab, currentColor, #000000 15% );
}

/* Alleen tonen op mobiel */
.dw-btn-mobile {
    display: none;
}
@media (max-width: 767px) {
    .dw-btn-mobile {
        display: flex;
    }
}

/* MOBILE MENU */

.menu-item-has-children {
    position: relative;
}

ul.et_mobile_menu li.menu-item-has-children.dt-open > .mobile-toggle::after {
    content: '32';
}