/*
Theme Name: Blue Note
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");
@import url("css/placeholder.css");

/*
COLOR DEFINITIONS - GOES BELOW:
*/

:root {
  --blue: #034883;
  --purple: #a38bc1;
  --green: #a9c6a9;
  --light-blue: #71b2d1;
  --red: #c1888f;
  --orange: #f49b5e;
  --yellow: #dabd72;
  --footer-blue: #f0f2f9;
}

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

/* ----- 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;
}

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 {
  margin-top: 10px;
  margin-bottom: 30px;
  background: #fff;
  color: #004077;
  border-radius: 5px;
  font-family: "Saira", sans-serif;
  text-transform: uppercase;
  border: 1px solid #81cef3;
}

.btn-secondary {
  border-radius: 0;
  border-width: 5px;
  border-color: #ddd;
  min-width: 200px;
  background: transparent;
  text-transform: uppercase;
  color: #df1c1c;
}

/* 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 */

/* WPForms */

.wpforms-container .wpforms-field-container label {
  color: #fff !important;
  font-family: "IBM Plex Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px !important;
}

.wpforms-container .wpforms-field-container label span {
  display: none !important;
}

.wpforms-container .wpforms-field-container input {
  background-color: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  color: #fff !important;
  padding: 12px 15px !important;
  height: max-content;
  min-height: 30px;
}

.wpforms-container ::-webkit-input-placeholder {
  /* Chrome and Safari */
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container ::placeholder {
  color: #fff !important;
  opacity: 1 !important;
}

.wpforms-container .wpforms-submit-container button {
  background-color: transparent !important;
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 25px !important;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  padding-top: 4px !important;
  gap: 15px;
  transition: background 250ms ease-in-out;
}

.wpforms-container .wpforms-submit-container button:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

.wpforms-container .wpforms-submit-container button::after,
.wpforms-container .wpforms-submit-container button:focus::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.01687 21.2757L6.95337 20.2122L15.1976 11.9679L6.95337 3.72366L8.01687 2.66016L17.3246 11.9679L8.01687 21.2757Z' fill='white'/%3E%3C/svg%3E%0A");
  position: relative !important;
  display: inline-block;
  height: 24px;
  width: 24px;
  top: -2.5px !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border: none !important;
  transition: transform 250ms ease-in-out;
}

.wpforms-container .wpforms-submit-container button:hover::after {
  transform: translateX(5px);
}

.wpforms-container .wpforms-submit-container .wpforms-submit-spinner {
  position: absolute !important;
  top: 7px;
}

.wpforms-confirmation-container-full {
  color: #fff !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

div.wpforms-container-full .wpforms-confirmation-container-full p {
  color: #fff !important;
}
