/*
Theme Name: KMU2
Author: eloq GmbH
Author URI: https://eloq.swiss/
Description: Die eloq GmbH macht nicht einfach Internetseiten. Wir bieten Ihnen durchdachte Konzepte, mischen Designkompetenz mit technischem Können und streben so nach der perfekten Internet-Präsenz unseres Kunden. Das vorliegende Theme wurde von uns mit Passion und Freude handgefertigt. Wir hoffen, Ihnen gefällt unsere Arbeit!
Version: 1.5.7
*/

/* Imports */

@import url("css/typo.css");
@import url("css/utilities.css");
@import url("css/header.css");
@import url("css/footer.css");
/*
COLOR DEFINITIONS - GOES BELOW:
*/

:root {
  --weiss: #fff;
  --weiss-alt: #faf8f8;
  --schwarz: #000;
  --schwarz-alt: #0b0f0f;
  --rot: #bf360c;
  --blau: #0288d1;
  --gelb: #fbc02d;
  --grun: #689f38;
  --dunkel-grau: #333333;
  --font-hell: #f2f2f2;
  --scrollbar-width: 0px;
  --border-radius: 20px;
}

/* === Theme Specific === */

#wpadminbar {
  display: none;
}

/* ----- GENERAL ----- */

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100vh;
}

body > main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

body:not(.home) main {
  margin-top: 109px;
}

section,
a {
  position: relative;
}

/* END GENERAL */

/* ----- WP ADMIN BAR ----- */

/*#wpadminbar {
    display: none;
  }*/

/* END WP ADMIN BAR */

/* ----- BUTTONS ----- */

/* Button classes:
        - btn_xyz_primary
        - btn_xyz_secondary 
*/

/* Button Reset */

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

.btn-primary {
  background: transparent;
  color: var(--weiss);
  border: 1px solid var(--weiss);
  border-radius: var(--border-radius);
  padding: 6px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: background 300ms ease-in-out;
  width: max-content;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: var(--weiss) !important;
  border-color: var(--weiss) !important;
  box-shadow: none !important;
}

.btn-secondary {
  border: 1px solid var(--schwarz-alt);
  border-radius: var(--border-radius);
  padding: 6px 12px;
  background: transparent;
  color: var(--schwarz);
  transition: background 300ms ease-in-out;
  width: max-content;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-primary:focus-visible {
  background: rgba(2, 136, 209, 0.1);
  color: var(--schwarz);
  box-shadow: none !important;
}

/* END BUTTONS */

/* ----- LAZYLOAD EFFECT ----- */

img.bg_static_cover {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  transition: filter 500ms, -webkit-filter 500ms;
}

img.bg_static_cover.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* END LAZYLOAD EFFECT */
