
/* Grid Layout voor Main Content */
.header-grid {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 20px;
  padding: 20px;
}

header::after {
  content: "";
  clear: both;
  display: table; 
}

.titel-grid {
  display: grid;
  grid-template-columns: 1fr 11fr;
  gap: 20px;
  padding: 20px;
}

.header1-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  padding: 20px; }

.header2-grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  padding: 20px; }


.tekst-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  padding: 20px; }

.item-grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px; }

@media (min-width: 48em) {
    .item-grid {
    grid-template-columns: 1fr 8fr 1fr; } }

.rij-1deel {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px; }

.rij-3delen {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
  padding: 20px; }

header {
  background: url("../opmaak/bg_page_header_small.png") no-repeat center center;
  min-height: 6.4375em;
  background-size: cover; }
  @media (min-width: 30em) {
    header {
      background: url("../opmaak/bg_page_header@1x.png") no-repeat center center;
      min-height: 13.6875em;
      background-size: cover; } }
  @media (min-width: 56em) {
    header {
      background: url("../opmaak/bg_page_header@2x.png") no-repeat center center;
      min-height: 17.125em;
      background-size: cover; } }

footer {
  position: relative;
  background-size: cover; 
}

footer::after {
    content: "";
    clear: both;
    display: table; 
}

.footer-rij-3delen {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  padding: 20px; }

section {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 0px;
  padding-right: 0px;
}

@media (min-width: 48em) {
    section {
      margin-bottom: 2em; } 
}

@media (min-width: 75em) {
    section {
      margin-bottom: 3em; } 
}

section::after {
    content: "";
    clear: both;
    display: table; 
}

.logo img {
  position: relative;
  max-width: 189px; 
}

nav {
  top: 1em;
  left: 1em;
  z-index: 99;
  position: fixed; 
}


/*========================================================================
Menu - icoon (hamburger) 
========================================================================== */
.menu__dropdown__icoon__bar1,
.menu__dropdown__icoon__bar2,
.menu__dropdown__icoon__bar3 {
  width: 35px;
  height: 5px;
  background-color: AntiqueWhite;
  margin: 6px 0;
  transition: 0.2s;
  border-radius: 6px; }

.change .menu__dropdown__icoon__bar1 {
    -webkit-transform: rotate(-45deg) translate(-10px, 5px);
    transform: rotate(-45deg) translate(-10px, 5px); }
.change .menu__dropdown__icoon__bar2 {
    opacity: 0; }
.change .menu__dropdown__icoon__bar3 {
    -webkit-transform: rotate(45deg) translate(-10px, -5px);
    transform: rotate(45deg) translate(-10px, -5px); }

/*========================================================================
Dropdown menu en inhoud
========================================================================== */
.menu__dropdown {
  display: inline-block;
  cursor: pointer;
  width: 90px; }

.menu__dropdown__icoon {
  float: left; }

.menu__inhoud {
  display: none;
  position: absolute;
  background-color: rgba(176, 196, 222, 0.9);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 6px;
  padding: 24px; }

.menu__inhoud a {
    color: Navy;
    transition: background 0.25s ease;
    padding: 12px 16px;
    text-decoration: none;
    display: block; }

.menu__inhoud a:hover {
      background: #f1f1f1; }

.menu__tekst {
  color: antiquewhite;
  float: right; }

.menu-inhoud-aan {
  display: block; }
  
/*========================================================================
Dropdown menu en inhoud
========================================================================== */
/* The sidebar menu */
.sidebar {
    height: 100%;
    /* 100% Full-height */
    width: 0;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: 0;
    left: 0;
    background-color: #111;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 60px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidebar */ 
}
  
  /* The sidebar links */
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s; 
}
  
/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
    color: #f1f1f1; 
}
  
.sidebar-aan {
    width: 250px; 
}
  
section {
  color: Navy;
  position: relative;
  margin-bottom: 20px; }
  section::after {
    content: "";
    clear: both;
    display: table; }

.section-top {
  margin-bottom: 0px; }

footer {
  position: relative;
  color: #fff;
  background: url("../opmaak/bg_footer_small.png") no-repeat center center;
  min-height: 6.25em;
  background-size: cover; }
  footer::after {
    content: "";
    clear: both;
    display: table; }
  @media (min-width: 30em) {
    footer {
      background: url("../opmaak/bg_footer@1x.png") no-repeat center center;
      min-height: 12.5em;
      background-size: cover; } }
  @media (min-width: 56em) {
    footer {
      background: url("../opmaak/bg_footer@2x.png") no-repeat center center;
      min-height: 13.125em;
      background-size: cover; } }

.footer-rij-3delen {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  padding: 20px; }


.footer__menu__item {
  font-size: 1em;
  color: Navy;
  text-align: center; }

.footer__menu__item--icon {
  display: inline-block;
  padding-right: 0.5em; }

.footer__menu__item--text {
  display: inline-block; }

.footer__teller {
  display: inline; }

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidebar {
      padding-top: 15px; }
    .sidebar a {
      font-size: 18px; } 
    }
  
/* Style the button that is used to open and close the collapsible content */
.menu-collapsible {
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px; 
}
  
/* Style the collapsible content. Note: hidden by default */
.menu-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out; 
}

/*# sourceMappingURL=C:/Data/WEBSERVER/Astro/app/public/maps/structuur.css.map */

/*# sourceMappingURL=C:/Data/WEBSERVER/kampen/app/public/maps/structuur.css.map */
