@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/Rajdhani-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  --main-color: #347bbf;
  --secondary-color: #4c9cea;
  --accent-peach: #ffbb6b;
  --accent-yellow: #ffc800;
  --accent-orange: #e38f2d;
  --text-color: #2e2e38;
  --text-accent-color: #4e4e4e;
  --light-grey: #757575;
  --background: #f6f6f6;
  --ad-background: #ebebeb;
  --ad-border: #64adf3;
  --grey-border: #d3d3d3;
  --font-size: 16px;
  --spacing: 1rem;
}

body {
  font-family: "Rajdhani", sans-serif;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .columns-4 > div {
    width: calc(50% - 0.75rem);
  }
  .columns-5 > div {
    width: calc(25% - 1.15rem);
  }
}
@media screen and (max-width: 768px) {
  .columns-5 > div {
    width: calc(50% - 0.75rem);
  }
}
@media screen and (max-width: 565px) {
  .columns-5 > div {
    width: calc(50% - 1.2rem);
  }
}
@media screen and (min-width: 992px) {
  .columns-2 > div {
    width: calc(50% - 0.75rem);
  }
  .columns-3 > div {
    width: calc(33.333% - 1rem);
  }
  .columns-4 > div {
    width: calc(25% - 1.15rem);
  }
  .columns-5 > div {
    width: calc(20% - 0.5rem);
  }
}

.container {
  width: calc(100% - 60px);
  max-width: 1530px;
}
/* Font sizes */
:root {
  --font-size-xs: 16px;
  --font-size-sm: 18px;
  --font-size-md: 20px;
  --font-size-lg: 26px;
  --font-size-xl: 30px;
  --font-size-xxl: 36px;
  --font-size-3xl: 44px;
  --font-size-4xl: 56px;
  --font-size-5xl: 66px;

  --line-height-24: 24px;
  --line-height-27: 27px;
  --line-height-30: 30px;
  --line-height-36: 36px;
  --line-height-45: 45px;
  --line-height-65: 65px;
}
@media (max-width: 768px) {
  :root {
    --font-size-xxl: 36px;
    --font-size-3xl: 36px;
    --font-size-4xl: 36px;
  }
}
h1 {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-65);
}
h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-65);
  font-weight: 400;
}
h2 b {
  font-weight: 600;
}
h3 {
  font-size: var(--font-size-xxl);
  line-height: var(--line-height-45);
}
a {
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-30);
  margin-bottom: 0;
}
.text-x-small {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-24);
}
.text-md {
  font-size: var(--font-size-md);
  line-height: var(--line-height-30);
}
.text-lg {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-36);
}
.text-xl {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-45);
}
.text-xxl {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-45);
}
.text-3xl {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-45);
}
.text-light {
  font-weight: 300;
}
.text-regular {
  font-weight: 400;
}
.text-medium {
  font-weight: 500;
}
.text-semibold {
  font-weight: 600;
}
.text-bold {
  font-weight: 700;
}
.text-blue {
  color: var(--main-color);
}
.text-light-blue {
  color: var(--secondary-color);
}
.text-light-grey {
  color: var(--light-grey);
}
.text-yellow {
  color: var(--accent-yellow);
}
.text-border {
  color: var(--grey-border);
}
.background-blue {
  background-color: var(--main-color);
}
.background-grey {
  background-color: var(--background);
}
.opacity-90 {
  opacity: 0.9;
}
.top-unset {
  top: unset !important;
}

@media (max-width: 768px) {
  p {
    font-weight: 500;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-24);
  }
  h1 {
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-45);
  }
  h2 {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-45);
  }
  h3 {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-30);
  }
  .text-lg {
    font-size: var(--font-size-md);
    line-height: var(--line-height-30);
  }
  #logo {
    max-width: 167px;
  }
  .news-stripe .news-tags,
  .news-stripe .news-date {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-24);
  }
  .footer-2 {
    text-align: center;
  }
  #slider-news,
  #weitere-artikel > .card {
    height: 500px;
  }
}
.p-60 {
  padding: 60px;
}
/* split long text in 2 columns*/
.two-columns {
  column-count: 2;
  column-gap: 1.5rem;
}

/* Buttons */
.btn {
  padding: 14px 20px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--main-color);
  color: white;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #2c6aa8;
}

.btn-secondary {
  background-color: var(--accent-orange);
  color: white;
}
.btn-secondary:hover,
.btn-secondary:active {
  background-color: #cc801a;
}

.right-col a {
  color: white;
  text-decoration: none;
}
.right-col a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* FONTS */
.main-nav {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
/* Header */
.navbar-nav div {
  cursor: pointer;
}
.container.navbar {
  border-bottom: 1px solid var(--ad-background);
}
.navbar.navbar-light {
  min-height: 95px;
  height: 95px;
}
.main-nav .nav-item,
.main-nav .nav-item a {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav .nav-item {
  transition: background-color 0.3s ease;
}
.main-nav .nav-item .nav-link {
  transition: color 0.3s ease;
}
.main-nav .nav-item:hover,
.main-nav .nav-item.active {
  background-color: var(--main-color);
}
.main-nav .nav-item:hover .nav-link,
.main-nav .nav-item.active .nav-link {
  color: white;
}
.sticky-header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
}
#chat {
  position: fixed;
  bottom: 200px;
  right: 40px;
  border: 1px solid white;
  border-radius: 50%;
}
/* Menu */
.menu-overlay,
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 30, 60, 0.85);
  z-index: 9999;
  display: none;
  color: white;
  overflow-y: scroll;
  padding-top: 140px;
}

.menu-content {
  background-color: white;
  min-width: 300px;
  padding: 10px 30px;
}

.menu-content ul {
  list-style: none;
  padding: 0;
}
.menu-content li {
  margin-bottom: 20px;
}
.menu-content li a,
.menu-content a {
  color: var(--text-color);
  text-decoration: none;
}
.menu-content li a:hover,
.menu-content a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.close-menu {
  font-size: 2rem;
  text-decoration: none;
  color: white;
}
#search-container input {
  border: 0;
}
#search-container img {
  width: 40px;
}
#search-container button {
  background-color: var(--main-color);
  border: 0;
  padding: 10px 15px 10px 10px;
}
#search-input-container {
  border-bottom: 1px solid #c1b2b2;
}
.close-search {
  margin-right: 15vw;
}
#searchToggle.opened {
  color: var(--main-color);
}

/* Hide search container initially */
#search-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}

/* Slide in */
#search-container.active {
  transform: translateY(95px);
  opacity: 1;
  pointer-events: auto;
}

/* Slide out */
#search-container.closing {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Footer */
#footer {
  margin-bottom: 90px;
  color: white;
  font-weight: 300;
}
#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .col-2 {
  margin-right: 75px;
  width: calc(20% - 75px);
}
.footer-nav-title {
  border-bottom: 1px solid #48a5fe;
}
.footer-nav-list li {
  margin-bottom: 10px;
}
.footer-nav-list a,
.sub-nav a {
  text-decoration: none;
  color: white;
}
.footer-nav-list a {
  text-decoration: none;
  color: white;
}

.footer-social-list li {
  margin-right: 20px;
  margin-bottom: 20px;
}
/* ADS */
.ad {
  background-color: var(--ad-background);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.ad-wrapper {
  border: 2px dashed var(--ad-border);
  padding: 20px;
  border-radius: 9px;
}
.ad-top,
.ad-bottom {
  height: 90px;
}
.ad-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
.ad-skyscraper {
  width: 200px;
  height: 600px;
}
.ad-skyscraper ad {
  width: 160px;
  height: 600px;
}

.ad-billboard {
  max-width: 1014px;
}
.ad-billboard .ad {
  max-width: 970px;
  height: 250px;
}
.ad-billboard-xl {
  max-width: 1570px;
  margin-left: -40px;
}
.ad-billboard-xl .ad {
  max-width: 1530px;
  height: 300px;
}
.ad-halfpage {
  max-width: 750px;
  height: 300px;
}
.ad-inread-banner {
  max-width: 375px;
  height: 670px;
}
.ad-medium {
  height: 250px;
}
.ad-medium p {
  margin-top: 0px !important;
  padding: 0px 15px;
}
.ad-superbanner {
  width: 728px;
  height: 90px;
}
/* Content */
.dashed-line {
  border: none;
  border-top: 3px dashed #9a9a9a;
  margin: 30px 0;
}
.solid-line {
  border-bottom: 1px solid #c4b3b3;
}
.blue-line {
  border: none;
  border-top: 3px solid #48a5fe;
}
.container-with-border {
  border: 7px solid #65a9ea;
  padding: 40px 30px;
}
.hero-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
.hero-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.blue-container {
  position: relative;
  top: 35%;
  left: 0px;
  z-index: 2;
  padding: 1rem;
  margin-left: 30px;
  margin-right: 30px;
  background-color: rgba(52, 123, 191, 0.9);

  max-width: 600px;
  max-height: fit-content;
  color: white;
}
.blue-container {
  text-decoration: none;
}
.peach-mark {
  border-left: 2px solid var(--accent-peach);
  padding-left: 15px;
}
.blue-container:hover p.arrow::after,
.extra .arrow:hover::after,
.news-plain .arrow:hover::after,
.person-card .arrow:hover::after,
button.arrow:hover::after,
.veran-website-link .arrow:hover::after {
  transform: translateX(8px);
}

.arrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  margin-top: 3px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  transition: transform 0.3s ease;
}
.arrow-white::after {
  background-image: url("../svg/arrow.svg");
}
.arrow-light-blue::after {
  background-image: url("../svg/arrow-light-blue.svg");
}
.arrow-blue::after {
  background-image: url("../svg/arrow-blue.svg");
}
.news-list-item {
  padding: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.image-wrapper {
  overflow: hidden;
}
.image-wrapper img {
  transition: transform 0.3s ease;
  max-height: 150px;
}
.news-list-item:hover .image-wrapper img {
  transform: scale(1.05);
}
.news-list-item:hover {
  background-color: var(--background);
}
.news-list-item:hover p {
  color: var(--main-color);
}
.news-list-item:hover .arrow::after {
  transform: translateX(8px);
}
.news-stripe,
.person-card {
  position: relative;
}

/* Sponsored */
.card {
  position: relative;
  overflow: hidden;
  min-height: calc(50% - 1.5rem);
}
.bookmark-icon::after {
  content: "";
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #347bbfe5;
  padding: 12px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 30px;
  background-image: url("../svg/bookmark-white.svg");
  transition: background-color 0.3s, color 0.3s;
}
.bookmark-icon.active::after {
  background-image: url("../svg/bookmark-yellow-filled.svg");
  background-color: white;
}
.news-stripe .bookmark-icon {
  background-color: white;
}
.news-stripe .bookmark-icon::after,
.person-card .bookmark-icon::after {
  background-color: white;
  background-image: url("../svg/bookmark-grey.svg");
}
.bookmark-icon.stripe-active::after {
  background-image: url("../svg/bookmark-blue-filled.svg");
}
.bookmark-icon:focus-within::after {
  border: 1px solid black;
}
.news-stripe a {
  text-decoration: none;
  color: var(--text-color);
}
.news-stripe .news-tags,
.news-stripe .news-date {
  color: var(--text-accent-color);
}
.news-stripe {
  border-left: 2px solid white;
}
.news-stripe:hover {
  border-left: 2px solid var(--main-color);
}
.news-stripe:hover a.text-lg {
  color: var(--main-color);
}
.news-item-wrapper .bookmark-icon::after {
  position: relative;
  top: 0;
  right: 0;
  background-color: transparent;
  display: flex;
  background-size: 35px 35px;
  background-image: url("../svg/bookmark-blue.svg");
}
.bookmark-icon.white-blue::after {
  background-color: white;
  background-image: url("../svg/bookmark-blue-filled.svg");
}
.news-item-wrapper .bookmark-icon.white-blue::after {
  background-image: url("../svg/bookmark-blue-filled.svg");
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(52, 123, 191, 0.9);
  color: white;
  padding: 20px;
  box-sizing: border-box;
}
.content {
  position: relative;
}
.extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}
.card:hover .extra,
.card:focus-within .extra {
  max-height: 300px;
  opacity: 1;
}
.star-rating {
  display: inline-flex;
  cursor: pointer;
}

.person-card {
  padding: 40px 30px 25px 30px;
}

/* background image with 3 columns at the front */
.experten-section {
  background-image: url("../images/experten.jpg");
  background-size: cover;
  background-position: center;
  min-height: 600px;
  height: 600px;
  display: flex;
  align-items: flex-end;
}
.columns {
  display: flex;
  width: 100%;
  height: 100%;
}
.column {
  flex: 1;
  position: relative;
  height: 100%;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.column:hover,
#slider-experten .card > div {
  background-color: rgba(0, 30, 59, 0.7);
  border-bottom: 6px solid var(--secondary-color);
}
.overlay-column {
  padding: 20px 30px;
  position: relative;
  width: 100%;
  transition: padding-bottom 0.4s ease;
  padding-bottom: 20px;
}
.column:hover .overlay {
  padding-bottom: 80px;
}
.title {
  margin: 0;
  position: relative;
  z-index: 2;
}
.extra-text {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-top: 10px;
}
.column:hover .extra-text {
  opacity: 1;
  max-height: 200px;
}

.newsletter-wrapper input {
  border: 4px solid white;
  padding: 15px;
}
.newsletter-wrapper button {
  background-color: var(--main-color);
  color: white;
  border: 1px solid white;
  padding: 15px 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: fit-content;
}
.newsletter-wrapper button:hover {
  background-color: white;
  color: var(--main-color);
}
.newsletter-wrapper-horizontal input {
  max-width: 75%;
}
.form-control:focus {
  border-color: var(--text-color);
}
.social-wrapper {
  border: 6px solid #2678c5;
  background: #fff;
}
.social-wrapper img {
  width: 100%;
}

/* Slider */
.slider-wrapper {
  overflow: hidden;
}

.slider {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding: 0 8px;
}

.slider .card {
  flex: 0 0 calc(100% - 80px);
  scroll-snap-align: start;
}

.slider .extra {
  max-height: 200px;
  opacity: 1;
}

/* Peek effect */
.carousel-inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
  pointer-events: none;
  z-index: 2;
}

#ausgaben .card {
  border-radius: 0px;
}
#ausgaben a {
  text-decoration: none;
  color: white;
}
#ausgaben a:hover,
footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
#slider-experten .card {
  background-color: transparent;
}

/* News detailed view */
.news-item-wrapper {
  font-weight: 500;
}
.news-item-wrapper .left-col {
  flex: 1;
}
.news-item-wrapper .right-col {
  flex: 0 0 300px;
}
.news-item-wrapper .card {
  min-height: 400px;
  margin-top: 3rem;
}
.news-item-wrapper p {
  margin-top: 3rem;
}
.news-item-wrapper .overlay p {
  margin-top: 0;
}

.detailed-news-page .right-col .card.rounded-0 {
  max-width: 300px;
}
.page-link {
  border: none;
  font-size: 20px;
  line-height: 20px;
  color: var(--main-color);
  padding: 20px 30px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  padding: 10px;
}
a.page-link:hover {
  color: white;
  background-color: var(--main-color);
}
.active > .page-link,
.page-link.active {
  background-color: var(--main-color);
  border: none;
}
.disabled > .page-link,
.page-link.disabled {
  border: none;
  background-color: transparent;
}
.share-btn {
  border-radius: 50%;
  border: 2px solid var(--main-color);
  padding: 10px 12px 5px 12px;
  transition: background-color 0.3s;
}
.share-btn:hover {
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}
.social-icon.share-btn:hover {
  background-color: var(--main-color);
}
.share-social:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#share-fb:after {
  background-image: url("../svg/fb-blue.svg");
}
#share-fb:hover:after {
  background-image: url("../svg/fb-filled-white.svg");
}
#share-mail:after {
  background-image: url("../svg/mail-blue.svg");
}
#share-mail:hover:after {
  background-image: url("../svg/mail-white.svg");
}
#share-linkedin:after {
  background-image: url("../svg/linkedin-blue.svg");
}
#share-linkedin:hover:after {
  background-image: url("../svg/linkedin-white.svg");
}
#share-wa:after {
  background-image: url("../svg/whatsapp-blue.svg");
}
#share-wa:hover:after {
  background-image: url("../svg/whatsapp-white.svg");
}

.author-wrapper a {
  color: var(--main-color);
  text-decoration: none;
}
.author-wrapper a:hover {
  text-decoration: underline;
}
.author-wrapper .author-img {
  border: 20px solid white;
  border-radius: 50%;
  width: 100%;
  height: auto;
}
.author-part-1,
.author-part-2 {
  border-bottom: 1px solid var(--grey-border);
}

.feedback {
  border-left: 4px solid var(--main-color);
}
.news-main h1 {
  margin-top: 80px;
}

.news-main .card h3 {
  font-size: 22px;
}
.news-4-col .card {
  min-height: 350px;
}
#searchContainer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  padding: 1rem;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideDown 0.3s ease-out;
}

.search-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#searchContainer input {
  width: 60%;
  padding: 0.5rem;
  font-size: 1rem;
}

#searchContainer button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#searchText.active {
  color: #007bff;
}
#experten-search {
  border-radius: 10px;
  min-width: 80%;
}
#experten-search input {
  border: 0;
}
#experten-search input::placeholder,
.experten .dropdown-toggle,
.experten .dropdown-toggle span,
.experten textarea::placeholder,
.experten .dropdown-toggle.show {
  color: #404040;
  font-size: 20px;
  font-weight: 500;
}
#experten-search input::placeholder {
  padding: 0px 18px;
}

.experten .dropdown-toggle {
  padding: 0px 30px;
}

.experten textarea::placeholder {
  padding: 15px;
}
.experten .person-card,
.experten .news-stripe {
  border: 1px solid #e1e1e1;
}
.experten .answer {
  border-radius: 40px;
  border: 2px solid var(--accent-yellow);
  padding: 5px 25px;
}
.experten .answer:hover {
  background-color: var(--accent-yellow);
  color: white;
}
.experten .hero-container {
  min-height: 65vh;
}
.experten .dropdown-toggle::after {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 0.5em;
  vertical-align: middle;
  content: "";
  background-image: url("../svg/arrow-down-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  transition: transform 0.3s ease;
}

.dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.close-ad-btn {
  position: absolute;
  top: 5px;
  right: 0;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.star {
  /*display: inline-block;*/
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  margin-left: -4px;
}

.star::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../svg/star-rate-blue-outline.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* When hovered or selected, switch to filled star */
.star.hover::after,
.star.selected::after {
  background-image: url("../svg/star-rate-yellow-full.svg");
}

.container.gap-4 > .col-6 {
  max-width: calc(50% - 0.75rem);
}

.social-icon {
  transition: background-color 0.3s ease;
  border-radius: 50%;
}

.social-icon:hover {
  background-color: white;
  border-radius: 50%;
}
.arrow-next {
  padding: 8px 10px !important;
}
.arrow-prev::after,
.arrow-next::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.2s ease;
}
.arrow-prev::after {
  background-image: url("../svg/prev-blue.svg");
}
.arrow-prev:hover::after {
  background-image: url("../svg/prev-white.svg");
}
.arrow-next::after {
  background-image: url("../svg/next-blue.svg");
}
.arrow-next:hover::after {
  background-image: url("../svg/next-white.svg");
}
#dropdownList {
  max-height: 300px;
  overflow-y: auto;
}

/* Responsive */

@media screen and (max-width: 1500px) {
  .newsletter-wrapper-horizontal input {
    max-width: 60%;
  }
}

@media screen and (max-width: 1199px) {
  #footer {
    margin-bottom: 0;
  }

  #ad-bottom-wrapper {
    display: none !important;
  }
  .container.gap-4 > .col-6 {
    max-width: 50%;
  }
}

@media screen and (max-width: 767px) {
  #footer {
    margin-bottom: 0;
  }
  .experten-section {
    min-height: 500px;
    height: 500px;
  }
  .experten .person-card img {
    max-width: 250px;
  }
}

@media screen and (max-width: 575px) {
  .navbar.navbar-light {
    height: 65px;
    min-height: 65px;
  }
  .burger-icon img {
    max-width: 65px;
  }
  .menu-overlay {
    padding-top: 15px;
  }
  .menu-overlay > .container > .menu-content {
    width: 100%;
  }
  #logo {
    max-width: 150px;
  }
  .hero-container {
    min-height: 500px;
  }
  #chat {
    bottom: 50px;
    padding: 20px !important;
    right: 20px;
  }
}

@media screen and (min-width: 768px) {
  .blue-container {
    left: 75px;
    padding: 2rem;
  }
  .news-list-item {
    padding: 40px;
  }
}
/* Accessibility - skip to content */

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

#newest-articles {
  max-height: 600px;
}

@media screen and (max-width: 767px) {
  #ad-top-wrapper,
  #ad-bottom-wrapper {
    display: none !important;
  }
}

.slider-arrow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--main-color);
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.slider-arrow-button.left {
  left: 10px;
}
.slider-arrow-button.left img {
  padding-left: 5px;
}
.slider-arrow-button.right {
  right: 10px;
}

@media screen and (min-width: 1200px) {
  .card-block-no-ad {
    height: 600px;
  }
}
.datenschutz p {
  font-weight: 400;
  margin-bottom: 15px;
}
.datenschutz p.text-bold {
  font-weight: 700;
}
#newsletter-search {
  max-width: 100%;
  margin: 0;
  left: 0;
}

.parallax-container {
  display: flex;
  min-height: 100vh;
  height: 670px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-image: url("../images/inread_banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
}

.scrollable {
  background-attachment: scroll;
}
.ad-300 {
  width: 300px;
  height: 600px;
}
.login-wrapper {
  background: rgba(0, 30, 60, 0.95);
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.person-details-share a,
.lexikon-list a {
  text-decoration: none;
}
.person-details-share a:hover,
.lexikon-list a:hover {
  text-decoration: underline;
}
.card-small img {
  width: 100%;
}
.border-grey,
.newsletter-wrapper .border-grey {
  border: 1px solid var(--grey-border);
}
.border-top-grey {
  border-top: 1px solid var(--grey-border);
}
.newsletter-wrapper .border-grey {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .newsletter-wrapper .border-grey {
    width: 100%;
  }
}
.additional-subscriptions label {
  font-weight: 400;
}
.form-check-input {
  border: 1px solid var(--grey-border) !important;
  padding: 8px !important;
}
.form-check-input:checked,
.btn:first-child:active {
  background-color: var(--main-color) !important;
  border: 1px solid var(--main-color) !important;
}
.lexikon-list {
  list-style: none;
  padding: 0;
}
.see-more-btn,
#more-letters {
  background-color: var(--main-color);
  color: white;
  border: 1px solid var(--main-color);
  padding: 10px 20px;
  cursor: pointer;
}
.see-more-btn:hover,
#more-letters:hover {
  background-color: white;
  color: var(--main-color);
}

.hidden,
.hidden-letter {
  display: none !important;
}
@media screen and (min-width: 992px) {
  #unternehmen-search-input-container input {
    width: 30%;
  }
}
#veranstaltungen-search {
  left: 0;
}

#eventTabs .nav-link {
  color: var(--text-color);
}
#eventTabs .nav-link.active {
  color: var(--main-color);
}

.events-table thead th {
  background-color: var(--main-color);
}
.events-table tr:nth-child(even) td {
  background-color: #f6f6f6;
}

.magazin-item-wrapper img {
  max-width: 300px;
}
#selectedItems,
#selectedItems2 {
  font-weight: 500;
}

.btn-white.dropdown-toggle:active {
  background-color: white !important;
}
/* selected items in dropdown */
.bg-primary {
  background-color: var(--main-color) !important;
}
ul.list-unstyled {
  margin-bottom: 0;
}
ul.list-unstyled li a {
  text-decoration: none;
}
ul.list-unstyled li a:hover {
  text-decoration: underline;
}
.home-news-with-ad .news-stripe {
  margin-bottom: 1.1rem;
}
