/* src/styles.css */
@font-face {
  font-family: "Hudson";
  src: url("./media/Hudson-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --button-bg: #4E43CA;
  --button-text: #FFFFFF;
  --button-inverted-bg: #FFFFFF;
  --button-inverted-text: #4E43CA;
}
.uitje {
  background: #f87171;
}
.uitje-shadow {
  box-shadow: 5px 5px 0 0 #d65c5c;
}
.sport {
  background: #3c82f6;
}
.sport-shadow {
  box-shadow: 5px 5px 0 0 #3169c2;
}
.feest {
  background: #a855f7;
}
.feest-shadow {
  box-shadow: 5px 5px 0 0 #8c44c2;
}
.vakantie {
  background: #14b8a6;
}
.vakantie-shadow {
  box-shadow: 5px 5px 0 0 #109386;
}
.doen {
  background: #21c55d;
}
.doen-shadow {
  box-shadow: 5px 5px 0 0 #1a9b48;
}
.overig {
  background: #e9b306;
}
.overig-shadow {
  box-shadow: 5px 5px 0 0 #b89004;
}
.ks-modal-gallery-backdrop {
  background: #000;
  opacity: 0.85 !important;
}
.ks-modal-gallery-panel {
  z-index: 90000;
}
.filter-sidebar {
  transition: transform 0.3s ease;
}
@media (max-width: 991.98px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    background: white;
    z-index: 1045;
    overflow-y: auto;
    transform: translateX(-100%);
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  }
  .filter-sidebar.filter-sidebar--open {
    transform: translateX(0);
  }
}
.filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.filter-backdrop.filter-backdrop--visible {
  display: block;
}
@media (min-width: 992px) {
  .filter-backdrop {
    display: none !important;
  }
}
dialog.app-dialog {
  border: none;
  border-radius: 20px;
  padding: 0;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
dialog.app-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
p {
  margin: 0 0 12px;
}
h1 {
  font: 400 24px / 32px Roboto, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
h2 {
  font: 500 20px / 32px Roboto, sans-serif;
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
h3 {
  font: 400 16px / 28px Roboto, sans-serif;
  letter-spacing: 0.009375em;
  margin: 0 0 16px;
}
h4 {
  font: 400 14px / 20px Roboto, sans-serif;
  letter-spacing: 0.0178571429em;
  margin: 0 0 16px;
}
h5 {
  font: 400 12px / 20px Roboto, sans-serif;
  letter-spacing: normal;
  margin: 0 0 12px;
}
h6 {
  font: 400 10px / 20px Roboto, sans-serif;
  letter-spacing: normal;
  margin: 0 0 12px;
}
.img-fluid {
  max-width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center center;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.0178571429em;
  background-color: #f9fafb;
}
button {
  background-color: var(--button-bg);
  border: 1px solid var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: filter 0.3s ease;
}
button:disabled {
  pointer-events: none;
  background-color: var(--button-bg);
  border-color: var(--button-bg);
  opacity: 0.65;
}
button:hover {
  filter: brightness(0.9);
}
.url {
  cursor: pointer;
  color: var(--button-bg);
}
.inverted {
  color: var(--button-inverted-text);
  background-color: var(--button-inverted-bg);
  border: 1px solid var(--button-inverted-text);
}
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
app-header {
  flex: 0 0 auto;
}
.router-container {
  flex: 1 1 auto;
  align-content: center;
}
app-footer {
  flex: 0 0 auto;
}
footer {
  width: 100%;
}
.img-container-overview {
  width: 300px;
  height: 200px;
  background-position: center center;
  background-size: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  padding: 10px;
  align-items: end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dynamic-form .subtitle {
  color: #00427C;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 28px;
}
.dynamic-form .required-input::before {
  color: red;
  content: "* ";
}
.dynamic-form .form-label {
  padding-left: 0;
  font-size: 18px;
  color: #312E2E;
  font-weight: 700;
}
.dynamic-form input,
.dynamic-form .btn-submit {
  border-radius: 10px;
  height: 50px;
}
.dynamic-form .btn-submit {
  width: 100%;
  font-size: 18px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.btn-social {
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #212529;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  width: 100%;
  border-radius: 10px;
}
.btn-social:hover {
  filter: none;
  background-color: #f8f9fa;
}
.btn-social:disabled {
  background-color: #fff;
  border-color: #dee2e6;
  color: #212529;
  opacity: 0.65;
}
.social-divider {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 13px;
}
.social-divider::before,
.social-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #dee2e6;
}
.social-divider::before {
  margin-right: 12px;
}
.social-divider::after {
  margin-left: 12px;
}
@media only screen and (max-width: 991px) {
  body:has(#steddie-navbar.show) {
    overflow: hidden;
  }
  body:has(.filter-sidebar--open) {
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
  .img-container-overview {
    width: 150px;
    height: 100px;
  }
}
@media only screen and (max-width: 576px) {
  .img-container-overview {
    width: 150px;
    height: 100px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
