@font-face {
  font-family: Fontspring;
  src: url("Fontspring.f071e9f2.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: RobotoLight;
  src: url("Roboto-Light.baa5d02b.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --cream: #eae7e0;
  --olive: #72816d;
  --dark-green: #444f47;
  --fixed-bottom-offset: 20px;
}

html, body {
  height: auto;
  overflow: visible;
}

body {
  background: var(--cream);
  color: #333;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: RobotoLight, Arial, sans-serif;
  line-height: 1.5;
}

header {
  background: var(--dark-green);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 16px;
  display: flex;
}

.logo {
  opacity: 0;
  width: clamp(220px, 22vw, 400px);
  margin: 60px auto 0;
  animation: 8s cubic-bezier(.23, 1, .32, 1) forwards logo-fade-in, 8s cubic-bezier(.23, 1, .32, 1) forwards logo-scale-in;
  display: block;
  transform: scale(.95);
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logo-scale-in {
  from {
    transform: scale(.95);
  }

  to {
    transform: scale(1);
  }
}

h1, h2, h3 {
  letter-spacing: .5px;
  margin: 0 0 1rem;
  font-family: Fontspring, Georgia, Times New Roman, serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.main-nav {
  justify-content: center;
  width: 100%;
  margin-top: 60px;
  display: flex;
}

.main-nav ul {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-nav li {
  display: inline-block;
}

.main-nav a {
  color: var(--cream);
  border-radius: 18px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, transform .1s;
  display: inline-block;
}

.main-nav a:hover {
  background: var(--olive);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
  background: var(--olive);
}

.wave {
  --seam: 8px;
  background-color: var(--wave-top, var(--dark-green));
  background-image: linear-gradient(to bottom, transparent calc(100% - var(--seam)), var(--wave-bottom, var(--cream)) 100%);
  background-repeat: no-repeat;
  width: 100%;
  height: clamp(64px, 8vw, 140px);
  margin: 0;
  line-height: 0;
  display: block;
}

.wave path {
  fill: var(--wave-bottom, var(--cream));
}

.wave--swap {
  --seam: 8px;
  background-color: var(--wave-bottom, var(--cream));
  background-image: linear-gradient(to top, transparent calc(100% - var(--seam)), var(--wave-top, var(--dark-green)) 100%);
}

.wave--swap path {
  fill: var(--wave-top, var(--dark-green));
}

.wave + * {
  margin-top: 0;
  padding-top: 0;
}

section {
  padding: 20px;
}

ul {
  padding: 0;
  list-style: none;
}

ul li {
  margin: 5px 0;
  font-size: 18px;
}

.button {
  letter-spacing: .01em;
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
  display: inline-flex;
}

.button:focus-visible {
  outline: 2px solid var(--dark-green);
  outline-offset: 3px;
}

.button--primary {
  background: var(--olive);
  color: var(--cream);
  box-shadow: 0 12px 30px #444f4740;
}

.button--primary:hover, .button--primary:focus-visible {
  color: var(--cream);
  background: #5f6e5a;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px #444f4747;
}

.button--ghost {
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  background: none;
}

.button--ghost:hover, .button--ghost:focus-visible {
  background: var(--dark-green);
  color: var(--cream);
}

.hero {
  background: var(--cream);
  color: var(--dark-green);
  padding: clamp(3rem, 8vw, 5rem) 24px;
  scroll-margin-top: clamp(80px, 12vw, 140px);
}

.hero__inner {
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
}

.hero__content {
  text-align: center;
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--olive);
  margin: 0 0 12px;
  font-size: .85rem;
  font-weight: 600;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero__description {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 32px 0 24px;
  display: flex;
}

.hero__highlights {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.hero__highlights li {
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  display: flex;
}

.hero__highlights i {
  color: var(--olive);
  font-size: 1.1em;
}

.hero__aside {
  justify-content: center;
  display: flex;
}

.hero__badge {
  background: var(--dark-green);
  color: var(--cream);
  text-align: center;
  border-radius: 24px;
  min-width: 220px;
  padding: 32px 38px;
  box-shadow: 0 16px 40px #444f4747;
}

.hero__badge-title {
  letter-spacing: .04em;
  font-family: Fontspring, Georgia, Times New Roman, serif;
  font-size: 1.65rem;
  font-weight: 600;
  display: block;
}

.hero__badge-subtitle {
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-size: .95rem;
  display: block;
}

@media (width >= 860px) {
  .hero__inner {
    grid-template-columns: minmax(320px, 1fr) minmax(200px, 300px);
  }

  .hero__content {
    text-align: left;
  }

  .hero__description {
    margin: 0;
  }

  .hero__actions, .hero__highlights li {
    justify-content: flex-start;
  }
}

.intro {
  background: var(--dark-green);
  color: var(--cream);
  text-align: center;
  padding: 20px 0 50px;
  font-size: 1em;
}

.intro-text {
  text-align: center;
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 20px;
}

.intro-paragraph {
  margin: 0 0 .8rem;
}

.intro-more {
  margin-top: .4rem;
}

.intro-toggle {
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: 1px solid #eae7e066;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin: .8rem auto 0;
  transition: background-color .2s, border-color .2s;
  display: inline-flex;
}

.intro-toggle:hover {
  background-color: #eae7e01a;
  border-color: #eae7e099;
}

.intro-toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform .25s;
}

.intro.intro--open .intro-toggle-icon {
  transform: rotate(180deg);
}

.intro p {
  white-space: pre-line;
  margin: 0;
  font-size: .9em;
  line-height: 1.45;
}

.intro .img-lisa {
  width: 200px;
  height: auto;
  margin: 40px 0 30px;
}

@media (width <= 768px) {
  .intro-paragraph--fade {
    max-height: 9em;
    position: relative;
    overflow: hidden;
  }

  .intro-paragraph--fade:after {
    content: "";
    pointer-events: none;
    background: linear-gradient(#444f4700, #444f4766, #444f47cc, #444f47);
    height: 6em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .intro-more {
    display: none;
  }

  .intro.intro--open .intro-paragraph--fade {
    max-height: none;
  }

  .intro.intro--open .intro-paragraph--fade:after {
    display: none;
  }

  .intro.intro--open .intro-more {
    display: block;
  }

  .intro-toggle {
    display: inline-flex;
  }
}

@media (width >= 769px) {
  .intro-toggle {
    display: none !important;
  }

  .intro-paragraph--fade {
    max-height: none;
  }

  .intro-paragraph--fade:after {
    display: none;
  }

  .intro-more {
    display: block;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.brand--zenz .brand-heading-image, .brand--asp .brand-heading-image {
  max-width: 180px;
  height: auto;
  margin: 0 auto .25rem;
  display: block;
}

.brand-divider {
  background-color: #000;
  width: 50%;
  max-width: 220px;
  height: 2px;
  margin: .15rem auto 1.5rem;
  position: relative;
}

.productimg {
  border: 1px solid #eae7e0;
  width: 200px;
  height: auto;
  margin-top: 0;
  margin-bottom: 30px;
}

.brands {
  background: var(--dark-green);
  color: var(--cream);
  grid-template-columns: minmax(280px, 680px);
  justify-content: center;
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
  margin-inline: auto;
  padding: 80px clamp(1.25rem, 6vw, 4rem) 30px;
  display: grid;
}

@media (width <= 768px) {
  .main-nav ul {
    flex-wrap: wrap;
    gap: 6px;
  }
}

.brand {
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
  padding-inline: clamp(.75rem, 2vw, 1.25rem);
}

.brand h2 {
  letter-spacing: .5px;
  text-align: center;
  margin: 0 0 40px;
  font-family: Fontspring, Georgia, Times New Roman, serif;
  font-weight: 600;
}

.brand img {
  margin-inline: auto;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-bottom: 12px;
  display: block;
}

.brand > p {
  text-align: left;
  background: var(--cream);
  width: auto;
  max-width: 520px;
  color: var(--dark-green);
  letter-spacing: .01em;
  border-radius: 18px;
  margin: 40px auto 0;
  padding: 36px 32px;
  font-family: RobotoLight, Arial, sans-serif;
  font-size: .9em;
  line-height: 1.45;
}

@media (width >= 900px) {
  .brands {
    grid-template-columns: repeat(2, minmax(320px, 560px));
    gap: clamp(3rem, 8vw, 6rem);
  }

  .brand > p {
    max-width: 500px;
  }
}

.prijslijst {
  margin: 0;
  padding: 20px 0 0;
}

.prijslijst > h2 {
  margin-bottom: 0;
}

.price-embed {
  vertical-align: top;
  border: 0;
  width: 100%;
  max-width: 800px;
  height: 5300px;
  margin: 0 auto;
  display: block;
}

.prijslijst > :last-child {
  margin-bottom: 0;
}

.openingsuren {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  padding: 20px 0;
}

.openingsuren-wrapper {
  max-width: 300px;
  margin: 0 auto;
  padding: 0 20px;
}

.openingsuren ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.openingsuren li {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.openingsuren .dag {
  text-align: left;
}

.openingsuren .uur {
  text-align: right;
  min-width: 120px;
}

.openingsuren h2 {
  margin: 60px 0;
}

.openingsuren li, .openingsuren p, .openingsuren .dag, .openingsuren .uur {
  font-size: 1em;
}

.contact address {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  font-style: normal;
}

.contact {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact h2 {
  margin: 0 0 30px;
}

.contact a {
  color: var(--cream);
  text-decoration: none;
}

.contact p {
  margin: 8px 0;
}

.contact i {
  margin-right: 8px;
}

.contact a:hover, .contact a:focus-visible {
  text-decoration: underline;
}

#afspraken {
  text-align: center;
}

#afspraken p {
  white-space: pre-line;
  text-align: center;
  max-width: 65ch;
  margin: 0 auto;
  padding: 0;
  font-size: .9em;
  line-height: 1.45;
}

#afspraken a {
  color: var(--cream);
  text-decoration: underline;
}

.contact h2, #afspraken > h2, .openingsuren h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

#afspraken, .openingsuren {
  padding-top: 28px;
}

.contact address p:first-child, #afspraken p:first-child {
  margin-top: 0;
}

.social-link {
  color: var(--cream);
  align-items: center;
  gap: 8px;
  text-decoration: none;
  display: inline-flex;
}

.social-link:hover, .social-link:focus-visible {
  color: var(--olive);
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.instagram .icon rect, .instagram .icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}

.instagram .icon .dot {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

#faq {
  background: var(--cream);
  padding: 20px 0;
  scroll-margin-top: 80px;
}

#faq h2 {
  text-align: center;
  margin: 40px 0 45px;
}

#faq .faq-list {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: .95em;
}

#faq .faq-list > li {
  margin-bottom: 18px;
  font-size: 1.15em;
  font-weight: 600;
  list-style: none;
}

#faq .faq-list > li > ul {
  margin: 10px 0;
  padding: 0;
  font-size: .95em;
  font-weight: 400;
  list-style: none;
}

#faq .faq-list > li > ul > li {
  margin: 0 0 6px;
  font-size: .9em;
}

#faq .faq-list > li + li {
  border-top: 1px solid #0000000d;
  padding-top: 12px;
}

.voorwaarden {
  background: var(--olive);
  color: var(--cream);
  padding: 20px 0;
}

.voorwaarden h2 {
  text-align: center;
  margin: 40px 0 45px;
}

.voorwaarden-list {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: .95em;
}

.voorwaarden-list > li {
  margin-bottom: 18px;
  font-size: 1.15em;
  font-weight: 600;
  list-style: none;
}

.voorwaarden-list > li > ul {
  margin: 10px 0;
  padding: 0;
  font-size: .95em;
  font-weight: 400;
  list-style: none;
}

.voorwaarden-list > li > ul > li {
  margin: 0 0 6px;
  font-size: .9em;
}

.voorwaarden-list > li + li {
  border-top: 1px solid #ffffff14;
  padding-top: 12px;
}

footer {
  background: var(--dark-green);
  color: var(--cream);
  text-align: left;
  padding: 24px 20px;
  font-size: .7rem;
  position: relative;
}

.footer-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.footer-columns {
  grid-template-columns: auto auto auto;
  justify-content: start;
  column-gap: 40px;
  display: grid;
}

.footer-columns .footer-col:nth-child(3) {
  margin-left: 100px;
}

.footer-col {
  text-align: left;
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.footer-nav, .footer-contact {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.footer-nav a, .footer-contact a {
  color: var(--cream);
  text-decoration: none;
  transition: opacity .2s;
}

.footer-nav a:hover, .footer-nav a:focus-visible, .footer-contact a:hover, .footer-contact a:focus-visible {
  text-decoration: underline;
}

.footer-contact span {
  text-align: left;
}

.footer-copyright {
  text-align: right;
  position: absolute;
  bottom: 3px;
  right: 16px;
}

.footer-copyright small {
  opacity: .85;
  font-size: .6rem;
}

section.swimlane, .swimlane {
  z-index: 10;
  padding-top: 20px;
  position: relative;
  overflow: visible;
}

.image-container {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  height: auto;
  display: flex;
  overflow: auto visible;
}

.image-container::-webkit-scrollbar {
  display: none;
}

.image-container img {
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 10px;
  flex: none;
  width: 200px;
  height: 300px;
  margin: 10px;
  transition: transform .3s;
}

.arrow {
  z-index: 1000;
  color: #fff;
  cursor: pointer;
  background: #000000b3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.scroll-to-top {
  left: 24px;
  bottom: var(--fixed-bottom-offset);
  background: var(--dark-green);
  width: 38px;
  height: 38px;
  color: var(--cream);
  cursor: pointer;
  z-index: 1000;
  opacity: .9;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: transform .15s, opacity .15s, background .2s;
  display: flex;
  position: fixed;
  box-shadow: 0 2px 8px #0000001a;
}

.scroll-to-top:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

.social-fixed {
  right: 18px;
  bottom: var(--fixed-bottom-offset);
  z-index: 1100;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  display: flex;
  position: fixed;
}

@keyframes social-shake {
  0% {
    transform: translate3d(0, 0, 0)rotate(0)scale(1);
  }

  1.875% {
    transform: translate3d(-3px, -3px, 0)rotate(-6deg)scale(1.06);
  }

  3.75% {
    transform: translate3d(4px, 0, 0)rotate(6deg)scale(1.06);
  }

  5.625% {
    transform: translate3d(-3px, 3px, 0)rotate(-5deg)scale(1.06);
  }

  7.5% {
    transform: translate3d(3px, -2px, 0)rotate(5deg)scale(1.05);
  }

  9.375% {
    transform: translate3d(-2px, 2px, 0)rotate(-3deg)scale(1.03);
  }

  11.25% {
    transform: translate3d(0, 0, 0)rotate(0)scale(1.01);
  }

  15% {
    transform: scale(1.12);
  }

  18.75% {
    transform: scale(1);
  }

  100% {
    transform: translate3d(0, 0, 0)rotate(0)scale(1);
  }
}

.social-btn {
  will-change: transform;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  animation: 8s ease-in-out infinite social-shake;
  display: inline-flex;
  transform: translateZ(0);
  box-shadow: 0 4px 12px #00000029;
}

.social-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #0003;
}

.social-btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.social-btn.ig {
  background: #e4405f;
}

.social-btn.tt {
  background: #000;
  animation-delay: 4s;
}

@keyframes booking-pulse {
  0%, 80%, 100% {
    transform: scale(1);
    box-shadow: 0 0 #fff0;
  }

  83% {
    transform: scale(1.02);
    box-shadow: 0 0 8px #ffffff26;
  }

  85% {
    transform: scale(1);
  }

  87% {
    transform: scale(1.02);
    box-shadow: 0 0 8px #ffffff26;
  }

  89% {
    transform: scale(1);
  }

  91% {
    transform: scale(1.02);
    box-shadow: 0 0 8px #ffffff26;
  }

  93% {
    transform: scale(1);
  }
}

.booking-wrapper {
  transition: transform .25s;
  display: inline-block;
}

.booking-wrapper:hover {
  transform: scale(1.05)translateY(-2px);
}

.booking-btn {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  transform-origin: center;
  will-change: transform, box-shadow;
  background: #c44536;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: RobotoLight, Georgia, Times New Roman, serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  animation: 8s ease-in-out infinite booking-pulse;
  display: inline-flex;
  box-shadow: 0 4px 12px #00000029;
}

.booking-btn i {
  color: #fff;
  opacity: .7;
  font-size: 1.2rem;
  line-height: 1;
}

.booking-wrapper:hover .booking-btn {
  background: #a63b2d;
  box-shadow: 0 6px 18px #00000040;
}

.booking-btn:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .booking-btn {
    animation: none;
  }
}

:root {
  --hero-wave-h: clamp(64px, 8vw, 140px);
}

.hero-parallax {
  background-image: url("interior.df7d29cd.webp");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  background-color: var(--dark-green);
  will-change: background-position;
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.hero-wave-top, .hero-wave-bottom {
  width: 100%;
  height: var(--hero-wave-h);
  pointer-events: none;
  line-height: 0;
  display: block;
  position: absolute;
  left: 0;
}

.hero-wave-top {
  top: 0;
  transform: translateY(-1px);
}

.hero-wave-top path {
  fill: var(--dark-green);
}

.hero-wave-bottom {
  bottom: 0;
  transform: translateY(1px);
}

.hero-wave-bottom path {
  fill: var(--dark-green);
}

.status-popup-overlay {
  z-index: 1199;
  background: #00000073;
  display: none;
  position: fixed;
  inset: 0;
}

.status-popup {
  z-index: 1200;
  background: var(--cream);
  width: calc(100% - 32px);
  max-width: 340px;
  color: var(--dark-green);
  text-align: left;
  box-sizing: border-box;
  border-radius: 14px;
  padding: 16px 16px 14px;
  position: fixed;
  top: 16px;
  right: 16px;
  box-shadow: 0 10px 30px #00000040;
}

.status-popup__title {
  letter-spacing: .03em;
  color: var(--dark-green);
  margin: 0 0 8px;
  font-family: Fontspring, Georgia, Times New Roman, serif;
  font-size: 1rem;
}

.status-popup__text {
  color: var(--dark-green);
  margin: 0 0 12px;
  font-family: RobotoLight, Arial, sans-serif;
  font-size: .85rem;
  line-height: 1.4;
}

.status-popup__text a {
  color: var(--dark-green);
  text-decoration: underline;
}

.status-popup__close {
  color: var(--dark-green);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 10px;
}

.status-popup__button {
  border: 1px solid var(--dark-green);
  color: var(--dark-green);
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border-radius: 999px;
  margin-left: auto;
  padding: 6px 14px;
  font-family: RobotoLight, Arial, sans-serif;
  font-size: .8rem;
  display: block;
}

.status-popup__button:hover, .status-popup__button:focus-visible {
  background: #444f471a;
  outline: none;
}

.status-popup--hidden {
  display: none;
}
/*# sourceMappingURL=repo.50643cef.css.map */
