/* ===== base palette ===== */
:root {
  --bg: #f3f2ec;
  --bd: #ccc;
  --ink: #000;
}

/* ===== layout bits ===== */
.steps-form {
  margin-bottom: 50px;
}

.uacf7-step fieldset {
  border: 1px solid var(--bd);
  border-radius: 15px;
  padding: 20px 30px 30px;
}

.wpcf7-spinner {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateY(-35%);
}

.consult-time {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* ===== pills / labels ===== */
.wpcf7-form label {
  display: block;
  padding: 10px 20px;
  background: var(--bg);
  border-radius: 15px;
}

label {
  display: inline-block;
  width: 100%;
  text-align: center;
  word-break: break-word;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition:
    background 150ms,
    color 150ms,
    border-color 150ms;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

label > input[type="radio"],
label > input[type="checkbox"],
.choice-pill > input[type="radio"],
.choice-pill > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

label:has(> input[type="radio"]:checked),
.wpcf7-form label:has(> input[type="checkbox"]:checked),
.choice-pill:has(input:checked) {
  background: #e22d36;
  color: var(--bg);
  border-color: var(--ink);
}

label:hover,
.choice-pill:hover,
.wpcf7-form label:has(> input[type="checkbox"]):hover {
  border-color: var(--bd);
}

label:has(> input[type="radio"]:focus-visible),
.wpcf7-form label:has(> input[type="checkbox"]:focus-visible),
.choice-pill:has(input:focus-visible) {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* reusable pill with border */
.choice-pill {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition:
    background 150ms,
    color 150ms,
    border-color 150ms,
    box-shadow 150ms;
}

/* groups */
.wpcf7-checkbox,
.wpcf7-radio {
  display: flex;
  flex-direction: row;
}

span.wpcf7-list-item {
  width: 100%;
}

.wpcf7-form-control-wrap[data-name="gdpr"] .wpcf7-list-item {
  margin: 0 !important;
}

span.wpcf7-list-item.first {
  margin: 0;
}

.wpcf7-list-item a {
  color: #ffbe0b;
}

/* ===== text inputs / textarea ===== */
input#your-name,
input#your-location,
input#phone-number,
input#your-email {
  margin: 10px 0 30px;
  border-radius: 15px;
  border: 1px solid var(--bd);
}

.wpcf7-textarea {
  margin: 30px 0;
  border-radius: 15px !important;
  border: 1px solid var(--bd);
}

/* ===== file input ===== */
.wpcf7-form-control-wrap[data-name="file"] {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.wpcf7-form-control.wpcf7-file {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--bd);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 160ms,
    box-shadow 160ms,
    background 160ms;
}

.wpcf7-form-control.wpcf7-file:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.wpcf7-form-control.wpcf7-file.wpcf7-not-valid {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}

/* file button */
.wpcf7-form-control.wpcf7-file::file-selector-button,
.wpcf7-form-control.wpcf7-file::-webkit-file-upload-button,
.wpcf7-form-control.wpcf7-file::-ms-browse {
  margin-right: 12px;
  padding: 10px 14px;
  border: none;
  border-radius: 15px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  cursor: pointer;
  transition:
    transform 120ms ease,
    opacity 120ms ease,
    background 160ms;
}

.wpcf7-form-control.wpcf7-file:hover::file-selector-button {
  opacity: 0.9;
}

.wpcf7-form-control.wpcf7-file:active::file-selector-button {
  transform: translateY(1px);
}

/* ===== date input ===== */
.wpcf7-form-control-wrap[data-name="consulting-date"] {
  display: block;
  width: 100%;
  position: relative;
}

.wpcf7-form-control.wpcf7-date {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 48px 10px 14px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  appearance: auto;
  transition:
    border-color 160ms,
    box-shadow 160ms,
    background 160ms;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wpcf7-form-control.wpcf7-date:hover {
  border-color: var(--bd);
}

.wpcf7-form-control.wpcf7-date:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.wpcf7-form-control.wpcf7-date::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-date.wpcf7-not-valid {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}

.wpcf7-form-control.wpcf7-date:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type="date"] {
  margin: 0;
}

.wpcf7-form-control.wpcf7-file::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: none;
  border-radius: 15px;
  background: #f3f2ec;
  color: black;
  font-weight: 400;
  cursor: pointer;
  transition:
    transform 120ms ease,
    opacity 120ms ease,
    background 160ms;
}

.wpcf7-form-control.wpcf7-file:hover::file-selector-button {
  opacity: 0.9;
}

.wpcf7-form-control.wpcf7-file:active::file-selector-button {
  transform: translateY(1px);
}

.user-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.user-info label {
  text-align: left;
}

.uacf7-btn-default {
  color: var(--ink);
}

button.uacf7-next,
button.uacf7-prev {
  border-radius: 15px;
  color: white;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border-radius: 10px;
  background-color: black;
  color: white;
}

.wpcf7-date {
  margin: 0 !important;
}

.container:has(.main-title-section) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-title-section {
  width: 70% !important;
}

.breadcrumb {
  display: none !important;
}

div#tab-ueberzeugende-werte {
  overflow-x: hidden;
}

@media (max-width: 1440px) {
  .main-title-section {
    width: 100% !important;
  }
}

@media (max-width: 980px) {
  .wpcf7-checkbox,
  .wpcf7-radio {
    gap: 15px;
    flex-wrap: wrap;
  }

  .wpcf7-list-item {
    margin: 0;
  }

  .user-info {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  div#tab-ueberzeugende-werte {
    overflow-x: scroll;
  }
}

@media (max-width: 700px) {
  .consult-time {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .wpcf7-form-control.wpcf7-file {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .wpcf7-form-control.wpcf7-file::file-selector-button {
    padding: 8px 12px;
    border-radius: 8px;
  }

  button.uacf7-next,
  button.uacf7-prev {
    width: 100%;
  }
}

/* -------------------- NICE SELECT -------------------- */

.wpcf7-form-control-wrap[data-name="select-time"] .nice-select {
  width: 100%;
  min-height: 51px;
  height: auto;
  line-height: 32px;
  padding: 8px 44px 8px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #f3f2ec;
  color: #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wpcf7-form-control-wrap[data-name="select-time"] .nice-select .current {
  display: block;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.wpcf7-form-control-wrap[data-name="select-time"] .nice-select:after {
  right: 14px;
  top: 50%;
  margin-top: 0;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  width: 8px;
  height: 8px;
}

.wpcf7-form-control-wrap[data-name="select-time"] .nice-select .list {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-top: 6px;
  max-height: 240px;
  overflow-y: auto;
  padding: 10px;
}
.wpcf7-form-control-wrap[data-name="select-time"] .nice-select .option {
  line-height: 1.35;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  color: #000;
}
.wpcf7-form-control-wrap[data-name="select-time"] .nice-select .option:hover,
.wpcf7-form-control-wrap[data-name="select-time"] .nice-select .option.focus {
  background: #f3f2ec;
  color: #000;
}
.wpcf7-form-control-wrap[data-name="select-time"]
  .nice-select
  .option.selected {
  background: #f3f2ec;
  color: #000;
}

@media (max-width: 480px) {
  .wpcf7-form-control-wrap[data-name="select-time"] .nice-select {
    line-height: 18px;
  }

  .wpcf7-form-control-wrap[data-name="select-time"] .nice-select,
  .wpcf7-form-control-wrap[data-name="select-time"] .nice-select .option {
    font-size: 13px;
  }
}

/* -------------------- AIR DATEPICKER -------------------- */

.wpcf7-not-valid-tip {
  margin-top: 10px !important;
}

.wpcf7-form.sent .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #eafac0;
  border: 1px solid #b1cf67;
  color: #7ba411;
  position: unset !important;
  width: 100%;
}

/* Air Datepicker theming (global) */
.air-datepicker {
  --adp-font-family: inherit;
  --adp-day-name-color: #000;
  --adp-background-color: #f3f2ec;
  --adp-background-color-hover: #ccc;
  --adp-background-color-active: #000;
  --adp-text-color: #000;
  --adp-accent-color: #000;
  --adp-border-color: #ccc;

  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Header / nav */
.air-datepicker--navigation {
  border-bottom: 1px solid #ccc;
}
.air-datepicker-nav--title,
.air-datepicker-nav--action {
  color: #000;
}
.air-datepicker-nav--action svg {
  stroke: #000;
}

/* Day cells */
.air-datepicker-cell.-day- {
  border-radius: 8px;
  color: #000;
}
.air-datepicker-cell.-day-.-current- {
  box-shadow: inset 0 0 0 2px #000;
}
.air-datepicker-cell.-day-:hover {
  background: #ccc;
  color: #000;
}
.air-datepicker-cell.-day-.-selected-,
.air-datepicker-cell.-day-.-in-range-.-selected- {
  background: #000;
  color: #f3f2ec;
}

/* Month/Year view cells */
.air-datepicker-cell.-month-,
.air-datepicker-cell.-year- {
  border-radius: 8px;
  color: #000;
}
.air-datepicker-cell.-month-:hover,
.air-datepicker-cell.-year-:hover {
  background: #ccc;
}

/* Footer buttons */
.air-datepicker-buttons {
  border-top: 1px solid #ccc;
}
.air-datepicker-button {
  color: #000;
}
.air-datepicker-button:hover {
  background: #ccc;
  border-radius: 8px;
}

/* Input field (to match your form pill) */
.wpcf7-form-control-wrap[data-name="consulting-date"] .wpcf7-date {
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #f3f2ec;
  color: #000;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpcf7-form-control-wrap[data-name="consulting-date"] .wpcf7-date:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-page {
  background: white !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce
  div.product
  .wdt-product-tabs
  .woocommerce-tabs
  ul.tabs
  li.active
  a,
.woocommerce
  div.product
  .wdt-product-tabs
  .woocommerce-tabs
  ul.tabs
  li:hover
  a {
  background-image: linear-gradient(179deg, #e4242c00, #e4242c) !important;
}

/* Hide native datepicker icon (works in Chrome, Edge, Safari) */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
  -webkit-appearance: none;
}

/* Optional – remove extra space where the icon was */
input[type="date"] {
  position: relative;
  z-index: 1;
}

.woocommerce
  ul.products:not(.product-thumb-bg-image)
  li.product
  .product-thumb
  a.image
  > div[class*="image"],
.woocommerce
  ul.products:not(.product-thumb-bg-image)
  li.product
  .product-thumb
  a.image
  > div[class*="image"]
  img {
  background-color: transparent !important;
}

div#tab-ueberzeugende-werte {
  overflow-x: scroll;
}

input[type="date"].stichtag::before {
  content: attr(placeholder);
  color: #888;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

input[type="date"].stichtag::-webkit-datetime-edit {
  color: transparent;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}
input[type="date"] {
  position: relative;
}
.produktart-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Stack icon above the text in the built-in CF7 label */
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === HELP OPTIONS (radio) === */

/* Stack icon above text */
[data-name="help-options"] .wpcf7-list-item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Default icon placeholder */
[data-name="help-options"] input + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin-top: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

/* Make icon white when selected */
[data-name="help-options"] input:checked + .wpcf7-list-item-label::before {
  filter: brightness(0) invert(1);
}

/* === Individual icons === */
[data-name="help-options"]
  input[value="Erstmontage"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/erstmontage.svg");
}

[data-name="help-options"]
  input[value="Austausch/Renovierung"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/austausch.svg");
}

[data-name="help-options"]
  input[value="Wartung/Service"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/wartung.svg");
}

[data-name="help-options"]
  input[value="Reparatur"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/reparatur.svg");
}

/* === GENERAL ICON STYLE === */
[data-name="objektart"] .wpcf7-list-item-label,
[data-name="produktart"] .wpcf7-list-item-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* default icon placeholder */
[data-name="objektart"] input + .wpcf7-list-item-label::before,
[data-name="produktart"] input + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin-top: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

/* when selected → make icon white */
[data-name="objektart"] input:checked + .wpcf7-list-item-label::before,
[data-name="produktart"] input:checked + .wpcf7-list-item-label::before {
  filter: brightness(0) invert(1);
}

/* === INDIVIDUAL ICONS === */

/* objektart */
[data-name="objektart"] input[value="Haus"] + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/haus.svg");
}
[data-name="objektart"]
  input[value="Wohnung"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/wohnung.svg");
}
[data-name="objektart"]
  input[value="Gewerbe"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/gewerbe.svg");
}

/* produktart */
[data-name="produktart"]
  input[value="Fenster"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/fenster.svg");
}
[data-name="produktart"] input[value="Türen"] + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/tueren.svg");
}
[data-name="produktart"]
  input[value="Schiebetüren"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/schiebetueren.svg");
}
[data-name="produktart"]
  input[value="Zubehör"]
  + .wpcf7-list-item-label::before {
  background-image: url("/wp-content/uploads/2025/10/zubehoer.svg");
}

/* === Exclude GDPR checkbox from pill styling === */
.wpcf7-form-control-wrap[data-name="gdpr"] label {
  all: unset; /* remove all inherited styles */
  display: flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto;
}
/* === Exclude GDPR checkbox from pill styling === */
.wpcf7-form-control-wrap[data-name="gdpr"] {
  border-radius: 13px;
  padding: 20px 20px 15px 20px;
  background: #f3f2ec;
}

/* normal checkbox */
.wpcf7-form-control-wrap[data-name="gdpr"] input[type="checkbox"] {
  all: unset;
  appearance: checkbox;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}

/* link color */
.wpcf7-form-control-wrap[data-name="gdpr"] a {
  color: #000;
  text-decoration: underline;
}

.wpcf7-form-control-wrap[data-name="gdpr"] span.wpcf7-list-item-label {
  color: #000;
}

.wpcf7-acceptance label {
  margin-top: 20px;
}

.uacf7-step.step-content button.uacf7-next {
  float: right !important;
}

/* ===== RESTORE NORMAL NEUTRAL STYLING FOR Schnellanfrage (Form 5218) ===== */
.uacf7-form-5218,
.uacf7-form-5218 * {
  all: unset !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}

/* basic structure */
.uacf7-form-5218 .contact-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  max-width: 500px !important;
}

.uacf7-form-5218 h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  color: #000 !important;
}

.uacf7-form-5218 input::placeholder,
.uacf7-form-5218 textarea::placeholder {
  color: black !important;
}

.uacf7-form-5218 .wpcf7-not-valid-tip {
  color: #e22d36 !important;
}

/* inputs */
.uacf7-form-5218 input[type="text"],
.uacf7-form-5218 input[type="email"],
.uacf7-form-5218 input[type="tel"],
.uacf7-form-5218 textarea {
  width: 100% !important;
  padding: 10px 14px !important;
  background-color: #fdf5ec !important ;
  color: #000 !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important;
  font-size: 15px !important;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

.uacf7-form-5218 input:focus,
.uacf7-form-5218 textarea:focus {
  border-color: #000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
  outline: none !important;
}

/* checkbox area */
.uacf7-form-5218 .label-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  font-size: 15px !important;
}

.uacf7-form-5218 input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #000 !important;
  border-radius: 4px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #fff !important;
  cursor: pointer !important;
  position: relative !important;
}

.uacf7-form-5218 input[type="checkbox"]:checked {
  background-color: #000 !important;
}

.uacf7-form-5218 input[type="checkbox"]:checked::after {
  content: "✔" !important;
  color: #fff !important;
  font-size: 13px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.uacf7-form-5218 a {
  color: #000 !important;
  text-decoration: underline !important;
}

.uacf7-form-5218 a:hover {
  color: #444 !important;
}

/* submit button */
.uacf7-form-5218 input[type="submit"] {
  background: #000 !important ;
  color: #fff !important;
  border: none !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  font-size: 15px !important;
}

.uacf7-form-5218 input[type="submit"]:hover {
  background: #222 !important;
}

/* ======================= CUSTOMIZER CSS ======================= */
/* ======================= CUSTOMIZER CSS ======================= */

p {
  margin-bottom: 0 !important;
}

.marquee-banner {
  font-size: 16px;
  color: #fff;
}

#text-banner div p {
  white-space: nowrap !important;
  animation: slide 18s linear infinite !important;
  width: 85vw;
  color: #fff;
  text-align: center;
}

#text-banner div p a {
  color: #fff;
}

@media (max-width: 768px) {
  #text-banner div p {
    width: 175vw !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #text-banner div p {
    width: 100vw !important;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  #text-banner div p {
    width: 90vw !important;
  }
}

@keyframes slide {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.elementor-227 .elementor-element.elementor-element-126f3be {
  margin-top: 0;
}
.elementor-227 .elementor-element.elementor-element-0169f2e {
  margin-top: -100px;
}

.banner-cart-page {
  background-color: #e4242c;
  padding: 20px;
  margin: -100px 0 100px 0;
}

.main-cart {
  display: flex !important;
  flex-direction: column-reverse !important;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.entry-title h4 a:hover {
  color: #0060ff;
}

#primary
  [data-elementor-type="wp-page"]:has(
    .elementor-element-3a13a70,
    .elementor-element-b2886f2
  ) {
  width: 100% !important;
}

.bp-featured-img img {
  height: 500px !important;
  object-fit: cover;
}

.bp-post-date {
  margin: 35px 0 20px 0 !important;
  font-size: 14px;
  font-weight: 500;
}

.bp-post-title {
  font-size: 50px;
  font-weight: 400px;
  letter-spacing: 5px;
  line-height: 55px;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.bp-post-content p:has(strong) {
  margin: 20px 0 !important;
}

@media (max-width: 479px) {
  .elementor-7461 .elementor-element.elementor-element-3a13a70 {
    width: 100% !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
  .bp-post-content p strong {
    font-size: 18px;
    font-weight: 600;
  }
  .bp-post-title {
    font-weight: 400px;
    font-size: 30px;
  }
}

@media (max-width: 1540px) {
  .container {
    width: 100%;
  }
}

.wdt-popup-box-window.wdt-fade-zoom.mfp-ready.mfp-close-btn-in
  .mfp-close:hover {
  color: #0060ff !important;
}

.widget_media_image img {
  min-width: 100%;
}

.menu-item-8176 .item-has-icon img {
  height: 30px !important;
}

.menu-item-8176 .item-has-icon span:not(.badge) {
  display: none;
}

#primary.content-full-width {
  min-height: 0;
}

.wdt-listings-item-wrapper.type1
  .wdt-listings-item-top-section
  .wdt-listings-item-title
  a:hover,
.wdt-listings-item-wrapper.type1
  .wdt-listings-item-top-section
  .wdt-listings-item-title
  a:hover {
  color: var(--e-global-color-f086036) !important;
}

div[class*="-output-data-container"]:not(.wdt-content-scroll)
  .wdt-ajax-load-image
  .wdt-loader-inner {
  border: 5px dashed var(--e-global-color-f086036) !important;
}

.wdt-listings-item-wrapper {
  background: transparent !important;
}

.wdt-listings-item-wrapper.type1 .wdt-listings-item-top-section a {
  color: white !important;
}

.page-id-7279 .container,
.postid-7285 .container,
.postid-7313 .container,
.postid-7315 .container {
  width: 1440px;
}

@media (max-width: 1440px) {
  .page-id-7279 .container,
  .postid-7285 .container,
  .postid-7313 .container,
  .postid-7315 .container {
    width: 100%;
  }
}

.recent-posts-widget .entry-title a:hover {
  color: #e22d36 !important;
}
