.elementor-248 .elementor-element.elementor-element-06ee899{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-8362e86 */.custom-contact-form legend {
  color: #6ec1e4;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}



/* Container */
.custom-contact-form {
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #1e1e1e;
  max-width: 900px;
  margin: 0 auto;
}

/* Fieldsets */
.custom-contact-form fieldset {
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.custom-contact-form legend {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.custom-contact-form .description {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 1rem;
}

/* Form Rows */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Column Styles */
.form-group.half {
  flex: 1 1 calc(50% - 0.5rem);
}

.form-group.third {
  flex: 1 1 calc(33.33% - 0.66rem);
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

/* Labels & Inputs */
.custom-contact-form label {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
  background-color: #1a1a1a;
  border: 3px solid #333;
  color: #fff;
  border-radius: 7px;
  padding: 0.75rem
  transition: border-color 0.2s;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #777;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
  border-color: #00c6ff;
  outline: none;
}

/* Checkboxes */
/* Überschrift */
.checkbox-title {
  color: #6ec1e4;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Grid für zwei Spalten */
.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

/* Jede Spalte bekommt 48% */
.checkbox-col {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


/* Checkbox-Label */
.checkbox-item {
  position: relative;
  padding-left: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* Eingabefeld verstecken */
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Sichtbare Box */
.checkbox-item .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 2px solid #6ec1e4;
  border-radius: 3px;
}

/* Checked-Zustand */
.checkbox-item input:checked ~ .checkmark {
  background-color: #6ec1e4;
}

.checkbox-item input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}






/* Button */
.custom-contact-form button[type="submit"] {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.custom-contact-form button:hover {
  background: linear-gradient(to right, #00b0e6, #005ad9);
}

.custom-contact-form textarea {
  min-height: 140px;
  padding: 1rem;
  font-size: 1rem;
}

/* Pfeile */
/* Globales Box-Modell */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Formular-Zeile (einzelne Feldreihe) */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Gruppierung pro Feld */
.form-group {
  width: 100%;
}

/* Select-Wrapper für Pfeilpositionierung */
.select-wrapper {
  position: relative;
  width: 100%;
}

/* Select-Feld selbst */
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #1a1a1a;
  color: #fff;
  border: 2px solid #444;
  border-radius: 6px;
  padding: 0.5rem 3rem 0.5rem 0.75rem; /* Platz rechts für Pfeil */
  font-size: 1rem;
  width: 100%;
  background-image: none !important;
  position: relative;
  z-index: 2;
  font-family: inherit;
}

/* Sichtbarer Pfeil */
.select-wrapper .custom-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  z-index: 3;
  pointer-events: none;
}

/* Dropdown-Optionen */
.select-wrapper select option {
  background-color: #1a1a1a;
  color: #fff;
}

/* Fokus-Styling (optional) */
.select-wrapper select:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.3);
}

/* Optional: Mobile Anpassung */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

















@media screen and (max-width: 600px) {
  .custom-contact-form label {
    font-size: 0.85rem;
  }

  .custom-contact-form input,
  .custom-contact-form select,
  .custom-contact-form textarea {
    font-size: 0.62rem;
    padding: 0.65em;
  }

  .checkbox-item {
    font-size: 0.8rem;
    padding-left: 22px;
  }

  .checkbox-item .checkmark {
    width: 12px;
    height: 12px;
  }

  .checkbox-title,
  .custom-contact-form legend {
    font-size: 1rem;
  }
}/* End custom CSS */