/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- 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>
*/
/* --------------------------------------------------------------------- */
/* -------------------------------------------------- Text */
.wkText {
  margin: 3rem 0;
  padding: 0 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .wkText {
    margin: 6rem 0;
  }
}
@media (min-width: 1140px) {
  .wkText {
    padding: 0;
  }
}
.wkText__content {
  margin: 0 auto;
  max-width: 111rem;
}
.wkText__content h2 {
  font-family: var(--thomasheadline);
  font-size: 2rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .wkText__content h2 {
    font-size: 3.2rem;
  }
}
.wkText__content > p {
  font-size: 1.6rem;
}
.wkText__text {
  flex: 0;
  font-size: 1.6rem;
  max-height: 30rem;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.wkText__text[data-readmore=false] {
  max-height: none;
}
.wkText__text.showReadMore {
  padding-bottom: 3rem;
}
.wkText__text.showReadMore .readMore {
  display: flex;
}
.wkText__text.open {
  flex: 1;
  max-height: 100rem;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.wkText__text .readMore {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4976365546) 0%, rgb(255, 255, 255) 66%, rgb(255, 255, 255) 100%);
  bottom: 0;
  cursor: pointer;
  display: none;
  height: 3rem;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}
.wkText__text .readMore .circle {
  align-items: center;
  border: 0.1rem solid var(--hl-primary);
  border-radius: 50%;
  display: flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}
.wkText__text .readMore .circle i {
  color: var(--hl-primary);
}
/*# sourceMappingURL=wkText.css.map */
