@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto.ttf");
}
:root {
  --f-r: "Roboto";
  --c-grey: #D9D9D9;
  --c-lightgrey: #E3E3E3;
  --c-darkgrey: #767676;
  --c-white: #FFFFFF;
  --c-black: #000000;
  --c-green: green;
  --c-light-green: #00cb00;
  --c-dark-green: #006700;
  --c-yellow: #ffdd00;
  --c-light-yellow: #ffe059;
  --c-dark-yellow: #d0b401;
  --c-red: red;
  --c-light-red: #fc4444;
  --c-dark-red: #c50000;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
}

body main {
  min-height: 100vh;
  margin: 6rem 15vw 0 15vw;
}
body main #content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body main #frontpage-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body main #frontpage-content .wp-block-media-text__media {
  display: flex;
  align-items: flex-start;
}

a {
  color: black;
  transition: all 0.2s ease;
}
a:active {
  color: black;
  text-decoration: none;
}

.btn, .wp-block-button__link, .wp-block-file__button {
  font-size: 1rem;
  background-color: var(--c-primary);
  color: white;
  padding: 0.4rem 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}
.btn:hover, .wp-block-button__link:hover, .wp-block-file__button:hover {
  background-color: var(--c-secondary);
  cursor: pointer;
}

.iframe-googlemaps {
  width: 100%;
  height: 400px;
}

.wp-block-list {
  align-self: flex-end;
  width: calc(100% - 1rem);
}
.wp-block-list li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}
.wp-block-list li ul {
  margin-left: 1rem;
}
.wp-block-list li::marker {
  color: var(--c-primary);
}

img {
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}

.wp-block-table {
  width: 100%;
}
.wp-block-table table {
  width: 100%;
  border-spacing: 0;
}
.wp-block-table table tbody, .wp-block-table table thead, .wp-block-table table tfoot {
  width: 100%;
}
.wp-block-table table tbody tr, .wp-block-table table thead tr, .wp-block-table table tfoot tr {
  display: flex;
  flex-direction: row;
  max-width: 100%;
}
.wp-block-table table tbody tr td, .wp-block-table table tbody tr th, .wp-block-table table thead tr td, .wp-block-table table thead tr th, .wp-block-table table tfoot tr td, .wp-block-table table tfoot tr th {
  display: flex;
  flex: 1;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--c-grey);
}
.wp-block-table table tbody tr th, .wp-block-table table thead tr th, .wp-block-table table tfoot tr th {
  background-color: var(--c-secondary);
}
.wp-block-table table tfoot tr td {
  background-color: var(--c-secondary);
}

.is-style-stripes table tbody tr:nth-child(odd) {
  background-color: var(--c-lightgrey);
}
.wp-block-details {
  height: fit-content;
  width: fit-content;
  transition: all 0.2s ease;
  text-align: start;
}
.wp-block-details summary {
  background-color: var(--c-primary);
  color: white;
  padding: 0.4rem 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: start;
  border: none;
}
.wp-block-details p {
  padding: 0.4rem 1rem;
  text-align: start;
  border: 1px solid var(--c-primary);
  border-radius: 8px;
}

.wp-block-media-text {
  display: grid;
  grid-template-columns: 50% 50%;
  background-color: var(--c-lightgrey);
  width: 100vw;
  position: relative;
  left: 49%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 15vw 2rem 15vw;
}
.wp-block-media-text img {
  max-height: 300px;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}
.wp-block-media-text div, .wp-block-media-text figure {
  flex: 1;
}
.wp-block-media-text .wp-block-media-text__content {
  display: flex;
  padding: 2rem;
  flex-direction: column;
  text-align: start;
  gap: 2rem;
}
.wp-block-media-text .wp-block-media-text__media {
  display: flex;
  align-items: center;
}

.has-media-on-the-right {
  background: none;
}
.has-media-on-the-right .wp-block-media-text__content {
  align-items: flex-start;
  text-align: start;
}

.size-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.has-text-align-center {
  width: 100%;
  text-align: center;
}

.has-text-align-right {
  width: 100%;
  text-align: right;
}

.is-vertically-aligned-top {
  align-items: flex-start;
}

.is-vertically-aligned-bottom {
  align-items: flex-end;
}

.wp-block-social-links {
  marker: none;
}
.wp-block-social-links .wp-social-link {
  list-style: none;
}
.wp-block-social-links .wp-social-link .wp-block-social-link-anchor svg {
  transition: all 0.2s ease;
  opacity: 0.5;
}
.wp-block-social-links .wp-social-link .wp-block-social-link-anchor svg:hover {
  opacity: 1;
}
.wp-block-social-links .wp-social-link .wp-block-social-link-anchor .wp-block-social-link-label {
  display: none;
}

.wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 60vh;
}

.timeline-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 2rem 15vw 2rem 15vw;
  background-color: var(--c-lightgrey);
  width: 100vw;
  position: relative;
  left: 49%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.timeline-block .timeline-box {
  width: fit-content;
  min-width: 200px;
  max-width: 40%;
  height: fit-content;
  position: relative;
}
.timeline-block .timeline-box .timeline-year {
  text-align: center;
  background-color: var(--c-primary);
  color: white;
  padding: 1rem;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.timeline-block .timeline-box .timeline-content {
  padding: 0.5rem;
  background-color: whitesmoke;
}
.timeline-block .timeline-item {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.timeline-block .timeline-item:last-child .timeline-horizontal-line,
.timeline-block .timeline-item:last-child .timeline-vertical-line {
  display: none;
}
.timeline-block .timeline-item:nth-child(4n+1) {
  justify-content: flex-start;
}
.timeline-block .timeline-item:nth-child(4n+1) .timeline-horizontal-line {
  position: absolute;
  left: 10%;
  top: 50%;
  height: 2px;
  width: 40%;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n+1) .timeline-vertical-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 2px;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n+2) {
  justify-content: center;
}
.timeline-block .timeline-item:nth-child(4n+2) .timeline-horizontal-line {
  position: absolute;
  right: 10%;
  top: 50%;
  height: 2px;
  width: 40%;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n+2) .timeline-vertical-line {
  position: absolute;
  top: 50%;
  right: 10%;
  height: 130%;
  width: 2px;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n+3) {
  justify-content: flex-end;
}
.timeline-block .timeline-item:nth-child(4n+3) .timeline-horizontal-line {
  position: absolute;
  right: 10%;
  top: 50%;
  height: 2px;
  width: 40%;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n+3) .timeline-vertical-line {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 130%;
  width: 2px;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n) {
  justify-content: center;
}
.timeline-block .timeline-item:nth-child(4n) .timeline-horizontal-line {
  position: absolute;
  left: 10%;
  top: 50%;
  height: 2px;
  width: 40%;
  background-color: var(--c-primary);
}
.timeline-block .timeline-item:nth-child(4n) .timeline-vertical-line {
  position: absolute;
  top: 50%;
  left: 10%;
  height: 130%;
  width: 2px;
  background-color: var(--c-primary);
}

.job-boxes-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--c-lightgrey);
  width: 100vw;
  position: relative;
  left: 49%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 2rem 15vw 2rem 15vw;
  gap: 1rem;
}
.job-boxes-wrapper .wp-block-kuhhandel-job-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.job-boxes-wrapper .wp-block-kuhhandel-job-box .job-box-line {
  color: var(--c-white);
  background-color: var(--c-white);
  height: 2px;
  width: 300px;
}
.job-boxes-wrapper .wp-block-kuhhandel-job-box .job-box-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.job-boxes-wrapper .wp-block-kuhhandel-job-box .job-box-content .job-button {
  font-size: 1rem;
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 0.4rem 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}
.job-boxes-wrapper .wp-block-kuhhandel-job-box:first-child .job-box-line {
  display: none;
}

.wp-block-file {
  font-size: 1rem;
  background-color: var(--c-primary);
  color: white;
  padding: 0.4rem 1rem;
  margin: 0.4rem 0;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}
.wp-block-file a {
  color: white;
}
.wp-block-file .wp-block-file__button {
  display: none;
}

.wp-block-kuhhandel-link-block {
  font-size: 1rem;
  background-color: var(--c-primary);
  color: white;
  padding: 0.4rem 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
  text-decoration: none;
}
.wp-block-kuhhandel-link-block:hover {
  background-color: var(--c-secondary);
  cursor: pointer;
}

.link-left {
  align-self: start;
}

.link-center {
  align-self: center;
}

.link-right {
  align-self: end;
}

.input {
  font-size: 1rem;
  padding: 0.4rem;
  height: fit-content;
  width: fit-content;
  transition: all 0.2s ease;
  border-radius: 8px;
  border: 1px solid var(--c-grey);
  outline: none;
  user-select: none;
  -webkit-user-select: none;
}
.input:focus {
  border: 1px solid var(--c-darkgrey);
}

.text-area {
  font-size: 1rem;
  padding: 0.4rem;
  transition: all 0.2s ease;
  border-radius: 8px;
  border: 1px solid var(--c-grey);
}

.input-number::-webkit-outer-spin-button, .input-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number[type=number] {
  -moz-appearance: textfield;
}

.slider {
  margin: 10px 0;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background-color: var(--c-secondary);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--c-primary);
  width: 15px;
  height: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.slider::-moz-range-thumb {
  background-color: var(--c-primary);
  width: 15px;
  height: 15px;
  border-radius: 15px;
  cursor: pointer;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

.search-section {
  margin: 6rem 2rem 0 2rem;
  display: flex;
  flex-direction: row;
  min-height: 70vh;
}
.search-section .search-aside {
  position: sticky;
  min-width: 300px;
  width: 500px;
  padding: 0 50px;
  height: fit-content;
  top: 6rem;
}
.search-section .search-aside #search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.search-section .search-aside #search-form div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 200px;
}
.search-section .search-aside #search-form div input {
  width: inherit;
}
.search-section .search-aside #search-form input {
  width: 100%;
}
.search-section .search-aside #search-form button {
  width: 100%;
}
.wp-block-gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.wp-block-gallery .wp-block-image {
  box-sizing: border-box;
}
.wp-block-gallery .wp-block-image img {
  border-radius: 8px;
  height: 200px;
  width: initial;
  cursor: pointer; /* Indicate that images are clickable */
}
.wp-block-gallery .wp-block-image img:hover {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.75);
  transition: all 0.2s ease-in-out;
}

.frontpage-gallery-slider {
  position: relative;
  max-height: 60vh;
  width: 100%;
  margin: auto;
  overflow: hidden;
  clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}
.frontpage-gallery-slider .slider-prev {
  left: 10px;
}
.frontpage-gallery-slider .slider-next {
  right: 10px;
}
.frontpage-gallery-slider .slider-prev,
.frontpage-gallery-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}
.frontpage-gallery-slider .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}
.frontpage-gallery-slider .slider-wrapper .slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}
.frontpage-gallery-slider .slider-wrapper .slide img {
  max-width: 100%;
}
.frontpage-gallery-slider .slider-wrapper .active {
  opacity: 1;
  position: relative;
}

.slideshow-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.slideshow-overlay img {
  max-width: 90%;
  max-height: 90%;
}
.slideshow-overlay .close-btn, .slideshow-overlay .prev-btn, .slideshow-overlay .next-btn {
  position: absolute;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
.slideshow-overlay .close-btn {
  top: 20px;
  right: 20px;
}
.slideshow-overlay .prev-btn {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.slideshow-overlay .next-btn {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-pullquote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wp-block-pullquote blockquote p {
  font-size: 2rem;
}
.wp-block-pullquote blockquote cite {
  color: var(--c-darkgrey);
  font-size: 1.2rem;
  font-style: italic;
}

.wp-block-cover {
  min-height: 430px;
  padding: 1em;
  position: relative;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  overflow: clip;
  box-sizing: border-box;
}
.wp-block-cover .has-background-dim.has-background-gradient {
  background-color: transparent;
}
.wp-block-cover.has-background-dim::before {
  content: "";
  background-color: inherit;
}
.wp-block-cover.has-background-dim:not(.has-background-gradient)::before,
.wp-block-cover .wp-block-cover__background,
.wp-block-cover .wp-block-cover__gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.5;
}
.wp-block-cover.aligncenter, .wp-block-cover.alignleft, .wp-block-cover.alignright {
  display: flex;
}
.wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  width: 100%;
  color: inherit;
}
.wp-block-cover .wp-block-cover__inner-container p {
  color: var(--c-grey);
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.3);
}
.wp-block-cover .wp-block-cover__inner-container p.has-text-align-left {
  text-align: left;
}
.wp-block-cover .wp-block-cover__inner-container p.has-text-align-center {
  text-align: center;
}
.wp-block-cover .wp-block-cover__inner-container p.has-text-align-right {
  text-align: right;
}
.wp-block-cover.is-position-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}
.wp-block-cover.is-position-top-center {
  align-items: flex-start;
  justify-content: center;
}
.wp-block-cover.is-position-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}
.wp-block-cover.is-position-center-left {
  align-items: center;
  justify-content: flex-start;
}
.wp-block-cover.is-position-center-center {
  align-items: center;
  justify-content: center;
}
.wp-block-cover.is-position-center-right {
  align-items: center;
  justify-content: flex-end;
}
.wp-block-cover.is-position-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}
.wp-block-cover.is-position-bottom-center {
  align-items: flex-end;
  justify-content: center;
}
.wp-block-cover.is-position-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}
.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container {
  margin: 0;
}
.wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container, .wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container, .wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container, .wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container, .wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container, .wp-block-cover.has-custom-content-position.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container {
  margin: 0;
  width: auto;
}
.wp-block-cover .wp-block-cover__image-background,
.wp-block-cover video.wp-block-cover__video-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  outline: none;
  border: none;
  box-shadow: none;
}

section.wp-block-cover-image > h2,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text {
  font-size: 2em;
  line-height: 1.25;
  z-index: 1;
  margin-bottom: 0;
  padding: 0.44em;
  text-align: center;
}

.page-pagination {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.page-pagination .page-numbers {
  padding: 3px;
  text-align: center;
}
.page-pagination [aria-current=page] {
  border: 1px var(--c-darkgrey) solid;
  border-radius: 8px;
}

.form-half {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.form-half .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-half .form-group input {
  width: 100%;
}

#recent-products {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#recent-products .recent-products-title {
  font-size: 3rem;
}
#recent-products .recent-products-content {
  display: flex;
  width: 100%;
  border-top: 2px solid var(--c-lightgrey);
  border-bottom: 2px solid var(--c-lightgrey);
  margin: 0;
  padding: 1rem 0;
  gap: 1rem;
  flex: 1;
}
#recent-products .recent-products-content .c-box {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-grey);
  border-radius: 0 0 8px 8px;
  width: 200px;
  transition: all 0.2s;
  gap: 1rem;
  flex: 1;
  justify-content: space-between;
}
#recent-products .recent-products-content .c-box:hover {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
#recent-products .recent-products-content .c-box .post-thumbnail {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
#recent-products .recent-products-content .c-box div {
  margin: 1rem;
}

.wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  font-size: 1rem;
  background-color: var(--c-primary);
  color: white;
  padding: 0.4rem 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  border: none;
}

.is-layout-flex {
  align-items: flex-start;
  flex-wrap: nowrap;
}

.wp-block-columns-is-layout-flex .wp-block-column {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.wp-block-columns-is-layout-flex .wp-block-column .wp-block-image {
  width: fit-content;
}
.wp-block-columns-is-layout-flex .wp-block-column .wp-block-image img {
  width: 100%;
  height: auto;
}

#cookie-banner {
  display: flex;
  flex-direction: row;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--c-primary);
  color: var(--c-white);
  padding: 10px;
  justify-content: flex-end;
  z-index: 100;
}
#cookie-banner #cookie-banner-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#cookie-banner #cookie-banner-text p {
  width: fit-content;
}
#cookie-banner #cookie-banner-text a {
  width: fit-content;
  color: var(--c-lightgrey);
}
#cookie-banner #cookie-banner-text a:hover {
  color: white;
}
#cookie-banner button {
  align-self: center;
  color: var(--c-primary);
  background-color: var(--c-white);
  border: none;
  padding: 8px;
  transition: all ease-in-out 0.2s;
}
#cookie-banner button:hover {
  cursor: pointer;
  color: var(--c-secondary);
}

#template-footer-content p {
  margin-bottom: 1rem;
  line-height: 1.4rem;
}

.has-success {
  color: var(--c-light-green);
}
.has-success input {
  border-color: var(--c-light-green);
}
.has-success input:focus {
  border-color: var(--c-green);
}

.has-warning {
  color: var(--c-light-yellow);
}
.has-warning input {
  border-color: var(--c-light-yellow);
}
.has-warning input:focus {
  border: var(--c-yellow);
}
.has-warning .warning-msg {
  display: block;
}

.has-error {
  color: var(--c-light-red);
}
.has-error input {
  border-color: var(--c-light-red);
}
.has-error input:focus {
  border-color: var(--c-red);
}
.has-error textarea {
  border-color: var(--c-light-red);
}
.has-error textarea:focus {
  border-color: var(--c-red);
}
.has-error .warning-msg {
  display: block;
}

.js-form-error {
  color: var(--c-light-red);
}

.js-form-submission {
  color: cornflowerblue;
}

.js-form-success {
  color: var(--c-green);
}

.invis {
  display: none !important;
}

.warning-msg {
  display: none;
}

.show-msg {
  display: block;
}

.js-show-feedback {
  display: block;
}

.fit-parent {
  width: 100%;
}

.aligncenter {
  align-self: center;
}

.w-seventy {
  width: 70%;
}

.w-fifty {
  width: 50%;
}

.w-thirty {
  width: 30%;
}

.h-100 {
  height: 100px;
}

.h-300 {
  height: 300px;
}

.display-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.gap-1 {
  gap: 1rem;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.resize-none {
  resize: none;
}

.contact-card-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  flex: 1;
}
.contact-card-parent .contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  min-width: 300px;
  min-height: 300px;
  max-width: 400px;
  width: fit-content;
  height: fit-content;
  border: 1px solid var(--c-grey);
  flex: 1;
  transition: all 0.2s ease;
}
.contact-card-parent .contact-card:hover {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}
.contact-card-parent .contact-card .card-link {
  width: fit-content;
}
.contact-card-parent .contact-card .card-link:hover {
  color: var(--c-primary);
}

#kuhhandelContactSuccess {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 600px) {
  main {
    transition: all 0.2s ease;
  }
  #single-content #content-section {
    width: 100%;
  }
  img {
    max-width: 100%;
    object-fit: cover;
  }
  h1, h2, h3, h4, h5 {
    max-width: 100%;
    word-break: break-word;
    word-wrap: break-word;
  }
  .wp-block-columns {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .iframe-googlemaps {
    height: 600px;
  }
  #kuhhandelContactFormParent {
    display: flex;
    justify-content: center;
  }
  #kuhhandelContactFormParent #kuhhandelContactForm {
    width: 80%;
  }
  #recent-products .recent-products-content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    height: 300px;
  }
  #recent-products .recent-products-content .c-box {
    height: 100%;
  }
  #recent-products .recent-products-content .c-box .post-thumbnail {
    min-height: 200px;
    width: auto;
  }
  .contact-card-parent {
    width: 100%;
    flex-direction: column;
  }
  .contact-card-parent .contact-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
  }
  .wp-block-media-text {
    display: flex;
    flex-direction: column;
  }
  .wp-block-media-text div, .wp-block-media-text figure {
    flex: 1;
  }
  .wp-block-media-text .wp-block-media-text__content {
    width: 100%;
    padding: 1rem;
  }
  .wp-block-media-text .wp-block-media-text__media {
    width: 100%;
  }
  .wp-block-table {
    display: none;
    overflow-x: auto;
  }
  .wp-block-table table {
    display: block;
  }
  .wp-block-table table tbody {
    display: block;
  }
  .wp-block-table table tbody tr td {
    width: 100px;
  }
  .timeline-block .timeline-item {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .timeline-block .timeline-item:last-child .timeline-horizontal-line,
  .timeline-block .timeline-item:last-child .timeline-vertical-line {
    display: none;
  }
  .timeline-block .timeline-item:nth-child(4n+1) {
    justify-content: center;
  }
  .timeline-block .timeline-item:nth-child(4n+1) .timeline-horizontal-line {
    display: none;
  }
  .timeline-block .timeline-item:nth-child(4n+1) .timeline-vertical-line {
    left: 50%;
  }
  .timeline-block .timeline-item:nth-child(4n+2) {
    justify-content: center;
  }
  .timeline-block .timeline-item:nth-child(4n+2) .timeline-horizontal-line {
    display: none;
  }
  .timeline-block .timeline-item:nth-child(4n+2) .timeline-vertical-line {
    left: 50%;
  }
  .timeline-block .timeline-item:nth-child(4n+3) {
    justify-content: center;
  }
  .timeline-block .timeline-item:nth-child(4n+3) .timeline-horizontal-line {
    display: none;
  }
  .timeline-block .timeline-item:nth-child(4n+3) .timeline-vertical-line {
    left: 50%;
  }
  .timeline-block .timeline-item:nth-child(4n) {
    justify-content: center;
  }
  .timeline-block .timeline-item:nth-child(4n) .timeline-horizontal-line {
    display: none;
  }
  .timeline-block .timeline-item:nth-child(4n) .timeline-vertical-line {
    left: 50%;
  }
}

/*# sourceMappingURL=root.css.map */
