
:root {
  --gold: #D4AF37;
}

body {
  font-family: 'Epilogue', sans-serif;
}

.text-gold {
  color: var(--gold);
}

.bg-gold {
  background-color: var(--gold);
}

.border-gold {
  border-color: var(--gold);
}


.cookie-checkbox {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
  background-color: #ccc;
  border-radius: 1rem;
  transition: .4s;
  cursor: pointer;
}

.cookie-toggle:before {
  position: absolute;
  content: "";
  height: 1.1rem;
  width: 1.1rem;
  left: 0.2rem;
  bottom: 0.2rem;
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

.cookie-checkbox:checked + .cookie-toggle {
  background-color: var(--gold);
}

.cookie-checkbox:checked + .cookie-toggle:before {
  transform: translateX(1.5rem);
}

.cookie-checkbox:disabled + .cookie-toggle {
  opacity: 0.5;
  cursor: not-allowed;
}


.iti {
  width: 100%;
}


.aspect-w-16 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.aspect-w-16 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media print {
  header, footer, #cookie-consent-banner, #back-to-top, button {
    display: none !important;
  }
  
  body {
    padding: 0;
    margin: 0;
  }
  
  main {
    padding-top: 0 !important;
  }
  
  .container {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .bg-gray-100 {
    background-color: white !important;
  }
  
  .shadow-md, .shadow-lg {
    box-shadow: none !important;
  }
  
  a {
    text-decoration: none !important;
    color: black !important;
  }
}