/**
 * Theme Name:   Divi | Udidämmsysteme | PR Jäger GmbH
 * Template:     Divi
 * Description:  Custom Divi child theme developed for Udidämmsysteme.
 *               Includes custom functionality for converting Contact Form 7
 *               submissions to JSON and sending them via email.
 *
 * Author:       PR-Jäger GmbH, Benedikt Gass
 * Author URI:   https://www.pr-jaeger.de
 * Version:      1.0.5
 *
 * License:      GNU General Public License v2 or later
 * License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 *
 * Copyright:
 * The PHP code contained in this theme is licensed under the GPL v2 or later.
 *
 * All non-PHP assets including, but not limited to, CSS, JavaScript, images,
 * design elements, and branding are © 2026 PR-Jäger GmbH.
 * All rights reserved.
 *
 * This theme is intended for exclusive use by PR-Jäger GmbH and its clients.
 * Unauthorized redistribution is not permitted.
 *
 * Modifications are allowed under the GPL; however, any modification of the
 * theme code voids warranty and support by PR-Jäger GmbH.
 */

.cf7-loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.cf7-loading::after {
  content: "…";
  margin-left: 8px;
  animation: dots 1s infinite;
}

@keyframes dots {
  0% {
    content: ".";
  }
  33% {
    content: "..";
  }
  66% {
    content: "...";
  }
}
