@charset "UTF-8";
/*
Theme Name: Theme Name: KFZ Service Knote
Theme URI: https://jannick-reymann.de/
Author: Jannick Reymann
Author URI: https://jannick-reymann.de/
Description: Aviate is a basic theme that learns to fly with the Aviate Blocks Plugin
Version: 2.0.1
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "info" "hours" "form" "map";
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "info hours" "form form" "map map";
  }
}
@media screen and (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "info hours form" "map map form";
  }
}
.contact-grid > * {
  margin-block-start: 0;
  width: 100%;
}
.contact-grid .contact-info {
  grid-area: info;
}
.contact-grid .contact-open-hours {
  grid-area: hours;
}
.contact-grid .contact-form {
  grid-area: form;
}
.contact-grid .contact-map {
  grid-area: map;
}

strong {
  font-weight: 400;
}

.h-overflow-hidden {
  overflow: hidden;
}

.h-width-100 {
  width: 100%;
}

.h-text-shadow {
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.5);
}

.wp-block-image.aligncenter {
  display: block;
}

.wp-block-image .components-resizable-box__container {
  display: inline-block !important;
}

.wp-block-list {
  padding-left: 20px;
}

ul.wp-block-list {
  list-style-type: none;
  padding-left: 0;
}
ul.wp-block-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}
ul.wp-block-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 11px;
}

.splide__pagination__page {
  border: 1px solid var(--wp--preset--color--ocher);
  background-color: transparent;
}
.splide__pagination__page.is-active {
  background-color: var(--wp--preset--color--ocher);
}

.wp-block-navigation__responsive-container-open {
  align-items: center;
}
.wp-block-navigation__responsive-container-open::before {
  content: "Menü";
  padding-right: 8px;
}

.wp-block-button .wp-block-button__link {
  transition: all 0.2s ease-in-out;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f2edea;
}

main {
  margin-top: 0 !important;
}

footer.wp-block-template-part {
  margin-block-start: 0;
}

:root {
  --wp--preset--font-size--normal: clamp(
    16px,
    1rem + ((1vw - 3.2px) * 0.179),
    18px
  );
}

.wpcf7-form * {
  box-sizing: border-box;
}
.wpcf7-form .wpcf7-list-item {
  margin-left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.wpcf7-form ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.wpcf7-form ul li:first-child p {
  margin-top: 0;
}
.wpcf7-form input:not(input[type=submit], input[type=checkbox]),
.wpcf7-form textarea {
  width: 100%;
  padding: 8px 12px;
  transition: all 0.2s ease-in-out;
}
.wpcf7-form input:not(input[type=submit], input[type=checkbox]):focus, .wpcf7-form input:not(input[type=submit], input[type=checkbox]):focus-within, .wpcf7-form input:not(input[type=submit], input[type=checkbox]):focus-visible,
.wpcf7-form textarea:focus,
.wpcf7-form textarea:focus-within,
.wpcf7-form textarea:focus-visible {
  outline: var(--wp--preset--color--green) auto 2px;
}
.wpcf7-form input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.wpcf7-form input[type=submit] {
  padding: 0.667em 1.33em;
  color: var(--wp--preset--color--green);
  border: 2px solid currentColor;
  font-family: var(--wp--preset--font-family--lato);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 300;
  background: transparent;
  border-radius: 9999px;
  cursor: pointer;
}