/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Travelreports */
.travelreport {
  margin-top: 2rem;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .travelreport {
    margin-top: 6rem;
    padding: 0;
  }
}
.travelreport .wkTravelreports {
  margin: 0;
  padding: 0;
}
.travelreport__overview {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  justify-items: center;
  margin: 0 auto;
  max-width: 111rem;
}
.travelreport__overview.onlyOne {
  grid-template-columns: repeat(auto-fill, minmax(32rem, 1fr));
}
.travelreport__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 111rem;
}
.travelreport__content {
  max-width: 73rem;
  order: 1;
  width: 100%;
}
.travelreport > h2 {
  font-size: 2.4rem;
  margin: 0 auto 3rem auto;
  max-width: 111rem;
}
@media (min-width: 768px) {
  .travelreport > h2 {
    font-size: 3.2rem;
  }
}
.travelreport__header {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .travelreport__header {
    margin-bottom: 3rem;
  }
}
.travelreport__header h1 {
  font-family: var(--thomasheadline);
  font-size: 2.4rem;
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .travelreport__header h1 {
    font-size: 3.2rem;
  }
}
.travelreport__header p {
  font-size: 1.6rem;
  font-weight: 800;
}
.travelreport__header span {
  font-size: 1.6rem;
}
.travelreport__image {
  border-radius: 0.7rem;
  margin-bottom: 3rem;
  overflow: hidden;
  width: 100%;
}
.travelreport__image picture {
  display: block;
  height: 100%;
  width: 100%;
}
.travelreport__image picture img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.travelreport__text h4 {
  font-family: var(--roboto);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
}
.travelreport__text p {
  font-size: 1.6rem;
}
.travelreport__video {
  margin: 3rem 0;
}
.travelreport__video iframe {
  aspect-ratio: 16/9;
}
.travelreport__sidebar {
  flex-grow: 1;
  max-width: 73rem;
  order: 3;
  width: 100%;
}
@media (min-width: 1140px) {
  .travelreport__sidebar {
    align-self: flex-start;
    height: 100vh;
    margin-top: 4rem;
    max-width: 35rem;
    order: 2;
    overflow-y: auto;
    position: sticky;
    top: 2rem;
  }
}
.travelreport__stations {
  margin-bottom: 3rem;
}
.travelreport__stations h4,
.travelreport__stations h5,
.travelreport__stations h6 {
  font-size: 2rem;
  margin: 0 0 1rem 0;
}
.travelreport__rating {
  margin-bottom: 1rem;
}
.travelreport__rating i {
  color: var(--hl-primary);
  font-size: 2rem;
  margin-right: 0.5rem;
}
.travelreport__office {
  background: var(--hl-icelight);
  border-radius: 0.7rem;
  font-size: 1.6rem;
  padding: 2rem;
}
.travelreport__office > a {
  color: var(--hl-black);
  text-decoration: underline;
}
.travelreport__office .button {
  margin-top: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.travelreport__employee {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.travelreport__employee span {
  font-size: 1.6rem;
  font-weight: bold;
}
.travelreport__profilePic {
  border: 0.3rem solid var(--hl-white);
  border-radius: 50%;
  height: 7.5rem;
  overflow: hidden;
  width: 7.5rem;
}
.travelreport__profilePic picture {
  height: 100%;
  width: 100%;
}
.travelreport__profilePic picture img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.travelreport__contact__item {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.travelreport__contact__item a {
  color: var(--hl-black);
  text-decoration: none;
}
.travelreport__contact__item i {
  font-size: 2rem;
  margin-right: 1rem;
}
.travelreport__createDate {
  border-bottom: 0.1rem solid var(--hl-border);
  font-size: 1.6rem;
  padding: 3rem 0 1.5rem 0;
}
.travelreport__highlights {
  border-bottom: 0.1rem solid var(--hl-border);
  padding: 3rem 0;
}
.travelreport__highlights h2 {
  font-size: 2rem;
  margin: 0 0 2rem 0;
}
.travelreport__highlight {
  align-items: flex-start;
  display: flex;
  margin-bottom: 1.5rem;
}
.travelreport__highlight i {
  color: var(--hl-primary);
  font-size: 2rem;
  margin-right: 1rem;
  position: relative;
  top: 0.2rem;
}
.travelreport__highlight span {
  font-size: 1.6rem;
}
.travelreport__share {
  border-bottom: 0.1rem solid var(--hl-border);
  display: flex;
  flex-direction: column;
  font-family: var(--roboto);
  font-size: 1.6rem;
  gap: 1rem;
  padding: 3rem 0;
  position: relative;
}
.travelreport__share > div {
  align-items: center;
  cursor: pointer;
  display: flex;
}
.travelreport__share > div > i {
  margin: 0 0 0 1rem;
}
.travelreport__share > button {
  align-items: center;
  background: transparent;
  color: var(--hl-black);
  cursor: pointer;
  display: flex;
  font-weight: 400;
  height: auto;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.travelreport__share > button > i {
  margin: 0 0 0 1rem;
}
.travelreport__share .share__menu {
  align-items: flex-start;
  background: #fff;
  border: 0.1rem solid var(--hl-berlin);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  display: none;
  flex-direction: column;
  left: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 45%;
  z-index: 1000;
}
.travelreport__share .share__menu.open {
  display: flex;
}
.travelreport__share .share__menu a {
  color: var(--hl-black);
  padding: 0.5rem 2rem;
  text-decoration: none;
  width: 100%;
}
.travelreport__share .share__menu a:hover {
  background: var(--hl-icelight);
}
.travelreport__share .share__menu a i {
  margin: 0 0.5rem 0 0;
}
.travelreport__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 3rem 0;
}
.travelreport__keywords .keyword-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.travelreport__keywords .keyword-form .travelreport__keyword {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  display: block;
  font-family: var(--roboto);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  max-width: 15rem;
  padding: 0 1rem;
}
.travelreport__keyword {
  align-items: center;
  background: var(--hl-caribean);
  border-radius: 0.5rem;
  color: var(--hl-white);
  display: flex;
  font-size: 1.6rem;
  min-height: 3.5rem;
  padding: 0 1rem;
}
.travelreport__footer {
  margin: 0 auto;
  max-width: 111rem;
  width: 100%;
}
.travelreport__footer.top {
  display: block;
  order: 2;
}
@media (min-width: 1140px) {
  .travelreport__footer.top {
    display: none;
  }
}
.travelreport__footer.bottom {
  display: none;
}
@media (min-width: 1140px) {
  .travelreport__footer.bottom {
    display: block;
  }
}
.travelreport__footerReports {
  margin-bottom: 5rem;
}
.travelreport__footerReports > h3 {
  font-family: var(--thomasheadline);
  font-size: 2rem;
  margin: 0 0 3rem 0;
  width: 100%;
}
@media (min-width: 768px) {
  .travelreport__footerReports > h3 {
    font-size: 3.2rem;
  }
}
.travelreport__footerReports > a {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.travelreport__reports {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  justify-items: center;
  margin-bottom: 3rem;
}
.travelreport__map {
  border-radius: 0.7rem;
  margin: 0 auto;
  max-width: 111rem;
  overflow: hidden;
}
.travelreport__map .wkMapbox {
  margin: 0;
  padding: 0;
}
.travelreport .wkGallery {
  margin: 0;
  padding: 0;
}
.travelreport .wkGallery__header {
  display: none;
}
.travelreport .wkMapbox {
  margin: 6rem 0;
  width: 100%;
}
.travelreport .wkMapbox h2 {
  font-family: var(--thomasheadline);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .travelreport .wkMapbox h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}
.travelreport .wkMapbox .map {
  border-radius: 0.7rem;
  height: 50rem;
  overflow: hidden;
  width: 100%;
}
.travelreport .wkContent.contentType_2 {
  grid-column: 1/-1;
  margin: 0;
  padding: 0;
}
.travelreport .wkTravelreports h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .travelreport .wkTravelreports h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

.regions {
  margin: 0 auto;
  max-width: 111rem;
  padding: 0 1.5rem;
}
@media (min-width: 1110px) {
  .regions {
    padding: 0;
  }
}
.regions__wrapper {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
@media (min-width: 768px) {
  .regions__wrapper {
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  }
}
.regions__item picture {
  aspect-ratio: 255/200;
  border-radius: 0.7rem;
  overflow: hidden;
}
.regions__item picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  width: 100%;
}
.regions__item picture img:hover, .regions__item picture img:focus, .regions__item picture img:active {
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}
.regions__name {
  color: var(--hl-black);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1rem 0 0 0;
  text-align: center;
  width: 100%;
}

#paginator {
  margin-top: 3rem;
}

.paginatior {
  display: flex;
  justify-content: center;
}
.paginatior .pagination {
  padding: 1rem;
}
.paginatior .pagination > li a {
  border: 0;
  border-radius: 0.5rem;
  color: var(--hl-black);
  font-size: 1.4rem;
  overflow: hidden;
  padding: 1rem;
  text-decoration: none;
}
.paginatior .pagination > li a.active {
  background-color: var(--hl-primary);
  color: var(--hl-white);
}
.paginatior .pagination > li a:hover, .paginatior .pagination > li a:focus, .paginatior .pagination > li a:active {
  background-color: var(--hl-primary);
  color: var(--hl-white);
}

[data-page-name=reiseberichte] header {
  flex-grow: 0;
}
/*# sourceMappingURL=travelreports.css.map */
