﻿:root {
  --blue-font-color: #001636;
  --border-color: #C0B8C5;
  --background-blue: #1B3150;
  --gray-background: #F9F7F6;
  --side-menu-width: 320px;
  --menu-bar-height: 58px;
  --menu-color-active: #ECE3DF;
  --blue-1: #005EFA;
  --blue-2: #C9DBFF;
  --blue-3: #E4EDFF;
  --green-1: #00D6B0;
  --target-width: 752px;
}

.wegwijzer-side-menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--side-menu-width);
  background-color: white;
  border-right: 1px solid var(--border-color);
  box-shadow: 4px 4px 16px 0 rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.wegwijzer-side-menu .menu-item:first-child {
  border-top: 1px solid var(--border-color);
}
.wegwijzer-side-menu .menu-item {
  padding: 0 24px;
  line-height: 48px;
  background-color: white;
  cursor: pointer;
  color: var(--blue-font-color);
  border-bottom: 1px solid var(--border-color);
  display: block;
  font-weight: 600;
}
.wegwijzer-side-menu .menu-item i {
  font-size: 22px;
  font-weight: bold;
}
.wegwijzer-side-menu .menu-item:hover {
  text-decoration: none;
}
.wegwijzer-side-menu .sub-menu-container {
  overflow: hidden;
}
.wegwijzer-side-menu .sub-menu {
  background-color: #F3EFED;
  font-weight: 400;
  border-top: none !important;
  line-height: 28px;
  padding: 10px 20px;
}
.wegwijzer-side-menu .sub-menu:hover {
  background-color: #EBE4E0;
}
.wegwijzer-side-menu .active-sub-menu {
  background-color: #F9F7F6;
}
.wegwijzer-side-menu .active-sub-menu:hover {
  background-color: #F9F7F6;
}
.wegwijzer-side-menu .active-chapter-menu {
  background-color: var(--blue-3);
}
.wegwijzer-side-menu .chapter-item {
  line-height: 28px;
  padding: 10px 20px;
}
.wegwijzer-side-menu .chapter-item:hover {
  background-color: var(--blue-2);
}
.wegwijzer-side-menu .logo-container {
  display: flex;
  justify-content: center;
}
.wegwijzer-side-menu .logo-container img {
  margin-top: 32px;
  display: flex;
}

.content-row {
  margin-top: 20px;
}

.wegwijzer-content {
  position: fixed;
  left: var(--side-menu-width);
  right: 0;
  bottom: 0;
  top: 0;
}

.wegwijzer-content-scroll-container {
  position: absolute;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  scroll-behavior: smooth;
}

.menu-bar {
  height: var(--menu-bar-height);
  color: white;
  background-color: var(--background-blue);
}

.chapter-header {
  background-color: var(--gray-background);
  position: sticky;
  top: 0;
  z-index: 10;
}
.chapter-header h2 {
  padding: 48px 0;
}

.onderwerp-container {
  padding: 64px 0;
  display: flex;
  justify-content: center;
  max-width: calc(100vw - var(--side-menu-width));
}
.onderwerp-container ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
}
.onderwerp-container ol > li {
  counter-increment: item;
  margin: 0.5em 0 0.5em 2.5em;
  position: relative;
  padding-bottom: 14px;
}
.onderwerp-container ol > li::before {
  content: counter(item);
  position: absolute;
  left: -2.5em;
  top: 0;
  width: 24px;
  height: 24px;
  line-height: 25px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  background: #007bff;
  color: white;
  font-weight: bold;
}

.one-block, .two-col {
  gap: 10px;
  width: 100%;
}

.one-block {
  max-width: var(--target-width);
  gap: 0;
}

.two-col {
  max-width: 1140px;
  display: flex;
  align-items: stretch;
  gap: 1rem;
  min-height: 200px;
}

.two-col > .text-col,
.two-col > .img-col {
  flex: 1 1 0; /* 50% / 50% */
}

.img-col { /* give the img a box to live in */
  display: flex; /* so max-height has a reference */
  position: relative;
  justify-content: center;
}

.img-col img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

.img-col video {
  max-width: 100%;
}

.flex-row .img-col img, .flex-row-reverse .img-col img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
}

.flex-column img {
  width: 100%;
}

.onderwerp-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.onderwerp-container:nth-child(even) {
  background-color: var(--gray-background);
}

@media (max-width: 767.98px) {
  .wegwijzer-content {
    left: 0;
  }
}
.blue-circle {
  color: white;
  width: 20px;
  height: 20px;
  line-height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--blue-1);
  text-align: center;
}

.alert-block {
  width: 752px;
  display: flex;
  padding: 24px;
  background: var(--blue-2);
  gap: 16px;
}

.link-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--target-width);
  background-color: var(--background-blue) !important;
  color: white !important;
  padding: 12px;
}
.link-block p, .link-block strong, .link-block a, .link-block em {
  color: white !important;
  margin: 0 !important;
}

.url-container {
  flex-shrink: 0;
}

.green-link-button {
  border-radius: 4px;
  color: black;
  background-color: var(--green-1);
  cursor: pointer;
  font-weight: 500;
  padding: 12px 20px;
  display: block;
}

.table-container {
  width: var(--target-width);
  overflow-x: auto;
}
.table-container table th, .table-container table td {
  padding: 8px;
  border: 1px solid var(--border-color);
}
.table-container table th {
  background-color: var(--blue-3);
  border-bottom: 1px solid var(--border-color);
}

.content-scroll-container {
  max-width: calc(100vw - var(--side-menu-width));
  overflow-x: auto;
}

.mobile-menu {
  display: none;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-background);
}

.btn-icon {
  background-color: none;
}

@media (max-width: 768px) {
  .wegwijzer-side-menu {
    display: none;
    background-color: var(--gray-background);
    top: 50px;
    z-index: 2;
    width: 100%;
  }
  .chapter-header h2 {
    padding: 12px 0;
  }
  .onderwerp-content {
    overflow: hidden;
  }
  .onderwerp-container, .flex-column img, .img-col img, .content-block, .content-scroll-container {
    max-width: 100vw !important;
  }
  .chapter-header {
    height: 80px;
  }
  .img-col img {
    width: 100%;
  }
  .onderwerp-container {
    padding: 10px;
  }
  .wegwijzer-content {
    top: 50px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu button {
    background-color: var(--gray-background);
  }
  .mobile-menu img {
    height: 50px;
  }
  .mobile-menu .fa-bar {
    font-size: 20px;
  }
  .col-12 {
    overflow-x: auto;
  }
  .col-12 img {
    max-width: 100%;
  }
}
@media (max-width: 1280px) {
  .two-col {
    max-width: 780px;
  }
  .two-col .text-col {
    padding-left: 10px;
  }
}
@media (max-width: 1100px) {
  .two-col {
    flex-direction: column !important;
  }
  .content-block {
    max-width: 600px;
  }
  .one-block, .two-col {
    width: auto;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/DEV/Patz/PATZweb/Areas/Public/Views/Wegwijzer/Wegwijzer.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAKR;EACI;EACA;;AAEA;EACI;EACA;;;AAKZ;EACG;;;AAGH;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AACA;EACI;;;AAIR;EAEI;EACA;EACA;EAEA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;;;AAEJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAKI;EACI;EACA;EACA;;;AAMR;EACI;;;AAKR;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;IACI;;;AAKR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAEI;EACA;;;AAIR;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;;AAQI;EACI;EACA;;AAGJ;EACI;EACA;;;AAKZ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;IACI;IACA;IACA;IACA;IACA;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAEA;IACI;;EAGJ;IACI;;EAGJ;IACI;;EAIR;IAEI;;EAEA;IAAI;;;AAIZ;EACI;IACI;;EAEA;IACI;;;AAKZ;EACI;IACI;;EAGJ;IACI;;EAGJ;IACI%22%7D */