:root {
  --bv-green: #18CB96;
  --bv-purple: #5E2E8A;
  --bv-blue: #006AFF;
  --bv-bg: #000;
  --bv-card-bg: #181818;
  --bv-border: #18CB96;
  --bv-text: #fff;
  --bv-grey: #aaa;
  --company-branding: #18CB96;
  --product-branding: #5E2E8A;
  --personal-branding: #2196F3;
}

#brandevate-plugin {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bv-bg);
  color: var(--bv-text);
  min-height: 100vh;
}

/* FILTERLEISTE */
.bv-sticky-filters {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.bv-filter-row {
  display: flex;
  width: 100%;
  gap: 24px;
}

.bv-filter-row-50 .bv-filter-group {
  flex: 1 1 50%;
  min-width: 180px;
}

.bv-filter-row-33 .bv-filter-group {
  flex: 1 1 33%;
  min-width: 140px;
}

.bv-filter-group {
  background: var(--bv-bg);
  border: 2px solid var(--bv-green);
  border-radius: 18px;
  padding: 18px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px 0 rgba(24,203,150,0.07);
  margin-bottom: 20px;
}

.bv-filter-label {
  font-size: 1em;
  color: var(--bv-green);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bv-filter-select,
.bv-sticky-filters select,
.bv-sticky-filters input[type="text"] {
  background: #181818;
  color: var(--bv-text);
  border: 1.5px solid var(--bv-green);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.05em;
  outline: none;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
  box-shadow: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.bv-filter-select.scrollCheck {
  height: 130px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.bv-filter-select:focus,
.bv-sticky-filters select:focus,
.bv-sticky-filters input[type="text"]:focus {
  border: 2px solid var(--bv-purple);
}

.bv-filter-select::placeholder,
.bv-sticky-filters input[type="text"]::placeholder {
  color: var(--bv-grey);
  opacity: 1;
}
.checkbox-item {
	display: block;
	padding: 2px 0;
}
#bv-result-header h2 {
	width: 100%;
	text-align: center;
	font-size: 3em;
  font-family: var(--headlinefont);
  font-weight: 700;
  margin-bottom: 50px;
}
#bv-result-header h2 i {
	font-style: normal;
	font-weight: 900;
	color: #18cb96;
}
#bv-result-header h2 span {
  font-size: 23px !important;
  font-weight: 400;
  display: block;
}
.bv-partner-list > div.onStage {
	opacity: 1;
}
.bv-partner-match-quality {
	width: 30px !important;
	height: 200px;
	background-color: red;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#57cc1c+0,fb9d23+77,ea7070+100 */
	background: linear-gradient(to bottom, #57cc1c 0%,#fb9d23 77%,#ea7070 100%);
	position: absolute;
	border-radius: 5px;
	overflow: hidden;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
}
.bv-partner-match-quality .matchMask {
	width: 100%;
	height: 100%;
	background-color: #000000eb;
	transition: .5s 1s cubic-bezier(.43,1.69,.48,.8) height;
}
.bv-partner-match-quality.auto {
	display: none;
}
.bv-partner-map {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-position: center;
}
/* PARTNERKARTE */
#allServices {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
}
#allServices .service {
	background-color: white;
	color: black;
	padding: 15px 20px;
	border-radius: 10px;
	font-family: var(--contentfont);
	font-size: 20px;
  flex: 0 0 calc((100% - (16px * 2)) / 3);
  text-align: center;
}
.v-center {
	justify-content: center;
	align-content: center;
}
.v-center > * {
  margin: 0 !important;
}
#contactDetails h3 {
  font-family: var(--headlinefont);
  font-size: 23px !important;
}
#contactDetails p {
  font-family: var(--contentfont);
  font-size: 20px !important;
  font-weight: 500;
}
.brandingPill {
	text-align: center;
	padding: 3px;
	border-radius: 15px;
	margin: 6px 0;
	font-size: 24px;
	font-family: var(--headlinefont);
}

.bv-partner-card {
  background: var(--bv-card-bg);
  border-radius: 18px;
  border: 2px solid var(--bv-green);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px 0 rgba(24,203,150,0.08);
  position: relative;
  transition: box-shadow 0.18s, transform 0.3s ease-in-out,  opacity .5s 0s ease-in-out;
  overflow: hidden;
  cursor: pointer;  
  /*padding-right: 50px;*/
}

.bv-partner-card:hover {
  box-shadow: 0 4px 32px 0 rgb(24, 203, 150);
  transform: translateY(-4px) scale(1.012);
}

.bv-partner-card-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0px;
  position: relative;
}
.bv-partner-meta {
  padding: 4% 4% 0 4%;
}
.upper {
	display: flex;
	flex-direction: column;
}
/*
  padding: 28px 32px 28px 32px;*/
.bv-partner-card-badges {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
    position: absolute;
    top: 10px;
    right: 0px;
}
.bv-services {
	padding: 0 30px 10px 30px;
}
.detailMap {
	width: 100%;
	aspect-ratio: 3;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
}
/*
@media (max-width: 900px) {
  .bv-partner-card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 18px 8px 0 8px;
  }
  .bv-partner-card-badges {
    margin-left: 0;
    justify-content: center;
    gap: 12px;
  }
}*/

.bv-branding-labels span {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}
.bv-branding-label {
	font-size: 0.8em;
	font-weight: 600;
	padding: 6px 18px;
	border-radius: 12px;
	letter-spacing: 0.02em;
	display: inline-block;
	white-space: nowrap;
}

.bv-branding-label.bv-product {
  background: var(--bv-purple);
  color: #fff;
}

.bv-branding-label.bv-personal {
  background: var(--bv-blue);
  color: #fff;
}

.bv-partner-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--bv-green);
  margin-right: 18px;
  float: left;
  margin-bottom: 20px;
}

.bv-partner-maininfo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bv-partner-name {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--bv-text);
}

.map .bv-partner-location {
	font-size: 1.1em;
	color: white;
	margin-bottom: 8px;
	position: absolute;
	background-color: #090909c2;
	padding: 5px 15px;
	border-radius: 13px;
	left: 50%;
	transform: translateX(-50%);
	top: 5px;
  text-align: center;
}
.bv-services strong {
	color: #18cb96;
}
.bv-services i {
	color: #ab8f8f;
	text-decoration: line-through;
	opacity: .5;
}
.bv-partner-slogan {
  font-size: 1.1em;
  color: var(--bv-green);
  font-weight: 500;
  margin-bottom: 8px;
}

.bv-partner-desc {
  font-size: 1.05em;
  color: #eaeaea;
  display: block;
  width: 100%;
  word-break: break-word;
  padding: 25px 30px 25px 30px;
  box-sizing: border-box;
}

.bv-premium-badge {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: inline-block;
}
.bv-award-badge {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: inline-block;
}

.bv-partner-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 32px 24px 32px;
}

#map {
  height: 100%;
}
.branding-box {
	float: left;
	margin-right: 10px;
	padding: 10px;
	border-radius: 5px;
}
.branding-personal {
  background-color: var(--personal-branding);
}
.branding-company {
  background-color: var(--company-branding);
}
.branding-product {
  background-color: var(--product-branding);
}
.bv-detail-logo {
	float: left;
	max-width: 30vw;
	margin-right: 50px;
	max-height: 190px;
}
.bv-detail-company-name {
	padding: 10px 32px;
	border-bottom: 3px solid #129870;
	background-color: #12987022;
	border-radius: 8px;
  margin-bottom: 25px;
}
.bv-detail-btn {
	margin: auto;
	left: 0;
	right: 0;
	display: block;
  background: var(--bv-green);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 38px;
  font-size: 1.15em;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(24,203,150,0.10);
}
.bv-detail-services li {
	float: left;
	list-style: none;
	margin-right: 10px;
}
.bv-detail-services li::after {
	content: ", ";
}
.bv-detail-services li:last-of-type::after {
	content: "";
}
.bv-detail-btn:hover {
  background: var(--bv-purple);
  color: #fff;
}

.bv-partner-card.open,
.bv-partner-card.open + .bv-detail-view {
  border-color: var(--bv-green);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(24,203,150,0.10);
  z-index: 2;
}
.bv-partner-card.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
.bv-partner-card.open + .bv-detail-view {
  border: 2px solid var(--bv-green);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  margin-top: 0;
}

/* DETAILANSICHT */
.bv-detail-view {
  width: 100%;
  background: #191919;
  margin-top: -8px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px 0 rgba(24,203,150,0.10);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  animation: bv-slide-down 0.35s cubic-bezier(.4,2,.6,1);
}

@keyframes bv-slide-down {
  from { opacity: 0; transform: translateY(-16px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Langbeschreibung: immer volle Breite */
.bv-detail-desc-full {
  width: 100%;
  font-size: 1.15em;
  color: #eaeaea;
  margin-bottom: 24px;
  padding: 0px 32px 0 32px;
  box-sizing: border-box;
}

/* Zwei Spalten darunter */
.bv-detail-content {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
}

.bv-detail-left {
  flex: 6;
  padding: 0px 24px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bv-detail-right {
  flex: 4;
  padding: 32px 32px 32px 24px;
  background: #151515;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 1.5px solid var(--bv-green);
}

.bv-leistungen-title {
  font-weight: 700;
  color: var(--bv-green);
  margin-bottom: 10px;
  font-size: 1.1em;
}

.bv-detail-links-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 32px 32px 0 0;
  justify-content: flex-start;
  padding-bottom: 32px;
  flex-wrap: wrap;
}

.bv-detail-link-btn {
  background: #111;
  color: var(--bv-green);
  border: 2px solid var(--bv-green);
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 1.08em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 0;
  min-width: 160px;
  display: inline-block;
}

.bv-detail-link-btn:hover {
  background: var(--bv-green);
  color: #fff;
}

.bv-detail-meta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--bv-grey);
  font-size: 1em;
}

.bv-detail-meta strong {
  color: var(--bv-text);
  font-weight: 600;
}

.bv-detail-references {
  margin-top: 8px;
  color: var(--bv-grey);
  font-size: 0.98em;
}

.bv-contact-card {
	background: #111;
	border-radius: 12px;
	padding: 18px 18px 18px 18px;
	display: flex;
	align-items: stretch;
	gap: 18px;
	margin-bottom: 18px;
	border: 2px solid var(--bv-green);
	box-shadow: 0 2px 12px 0 rgba(24,203,150,0.07);
	flex-direction: column;
	justify-content: unsafe;
}
.bv-contact-card h2 {
	margin: 0;
	font-size: 18px;
}
.bv-contact-card > div {
	display: flex;
	gap: 18px;
}
.bv-contact-photo {
	width: 150px;
	height: 150px;
	border-radius: 10%;
	object-fit: cover;
	border: 2px solid var(--bv-green);
	background: #fff;
}

.bv-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bv-contact-name {
  font-weight: 700;
  color: var(--bv-text);
  font-size: 1.08em;
}

.bv-contact-position {
  color: var(--bv-grey);
  font-size: 0.98em;
}

.bv-contact-phone,
.bv-contact-email {
  color: var(--bv-green);
  font-size: 0.98em;
  text-decoration: none;
}

.bv-detail-services {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--bv-text);
  font-size: 1.05em;
  list-style: disc inside;
  padding-left: 0;
}

.bv-detail-services li {
  margin-bottom: 4px;
}

.bv-no-results {
  margin: 48px 0 0 0;
  color: var(--bv-grey);
  font-size: 1.18em;
  text-align: center;
  background: #181818;
  border-radius: 12px;
  padding: 32px 18px;
  border: 2px solid var(--bv-green);
}
.companyLogo {
  aspect-ratio: 1 !important;
}
.companyBanner {
	aspect-ratio: 2 !important;
	width: 70% !important;
	height: auto !important;
	border-radius: 10px;
	box-shadow: none !important;
}
.fadeMeIn {
  opacity: 0;
  transition: opacity .2s 0s;
}
.fadeMeIn.onStage {
  opacity: 1;
}
.socialIcon {
	background-image: url(socials.webp);
	height: 30px;
	width: 29px;
	display: block;
	background-size: cover;
}
.si_insta {background-position-x: -204px;}
.si_tiktok {background-position-x: -175px;}
.si_facebook {background-position-x: -146px;}
.si_linkedin {background-position-x: -88px;}
.si_whatsapp {background-position-x: -58px;}
.si_youtube {background-position-x: 0px;}

.relative {
  position: relative;
}

@media (max-width: 699px) {
  .bv-branding-labels::before {
    content: " ";
    display: table;
    clear: both;
  }
}
/* MOBILE: alles untereinander */
@media (max-width: 900px) {
  .bv-detail-desc-full {
    padding: 18px 8px 0 8px;
    font-size: 1.08em;
    text-align: left;
    margin-bottom: 0;
  }
  .bv-detail-content {
    flex-direction: column;
    gap: 0;
  }
  .bv-detail-right, .bv-detail-left {
    width: 100%;
    padding: 18px 8px 0 8px;
    border-left: none;
  }
  .bv-leistungen-title {
    margin-top: 12px;
    margin-bottom: 8px;
    text-align: left;
  }
  .bv-detail-links-row {
    flex-direction: column;
    align-items: stretch;
    margin: 18px 8px 0 8px;
    gap: 10px;
    justify-content: flex-start;
    padding-bottom: 18px;
  }
  .bv-detail-link-btn {
    width: 100%;
    min-width: unset;
  }
}

/* TABLET: optional, falls du möchtest */
@media (max-width: 1200px) and (min-width: 901px) {
  .bv-detail-content {
    flex-direction: column;
  }
  .bv-detail-left, .bv-detail-right {
    padding: 24px 24px 0 24px;
    border-left: none;
    width: 100%;
  }
  .bv-detail-links-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin: 24px 24px 0 24px;
    justify-content: flex-start;
    padding-bottom: 24px;
  }
}

/* BADGES: Desktop/Web immer rechts */
@media (min-width: 991px) {
  .bv-partner-card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 24px !important;
    position: relative;
  }
  .bv-partner-card-badges {
    margin-left: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 18px !important;
    justify-content: flex-end !important;
    position: absolute;
    top: 10px;
    right: 0px;
  }
}
