/* -------------------------------------------------- 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>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Exitpopup */
.exitpopup__container {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  display: none;
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.exitpopup__content {
  background-color: #fff;
  z-index: 11;
  padding: 4rem 2rem;
  max-width: 80rem;
  width: 100%;
}
.exitpopup__content__link {
  width: 100%;
}
.exitpopup__content____wrapper {
  position: relative;
}
.exitpopup__title {
  color: var(--secondary);
  font-family: var(--karma);
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 1024px) {
  .exitpopup__title {
    font-size: 3.2rem;
  }
}
.exitpopup__text {
  padding: 1rem 3rem 2rem 3rem;
  text-align: center;
  font-size: 1.6rem;
}
.exitpopup__buttons {
  display: grid;
  gap: 2rem;
  max-width: 40rem;
  margin: 0 auto;
  justify-items: center;
}
@media (min-width: 768px) {
  .exitpopup__buttons {
    grid-template-columns: 1fr 1fr;
  }
}
.exitpopup__buttons a {
  height: 4.5rem;
  width: 20rem;
}
.exitpopup__buttons a.outlined {
  color: var(--text);
  box-shadow: none;
  font-size: 1.2rem;
}
.exitpopup__close {
  position: absolute;
  right: -1.5rem;
  top: -2.5rem;
  font-size: 2rem;
  background: var(--white);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding-top: 0.6rem;
  padding-left: 1.4rem;
}
.exitpopup__close:hover {
  cursor: pointer;
}
/*# sourceMappingURL=exitpopup.css.map */
