div   {
  display: flex;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fill 	{ flex-grow: 1; }
.hfill 	{ width: 100% !important; }
.vfill 	{ height: 100%; }
.ct		  { text-align: center; }
.hc     { margin-left: auto; margin-right: auto; }
.cc 	  { justify-content: center; align-items: center; align-self: center; }
.vc     { justify-content: left; align-items: center; align-self: center;  }
.end  	{ justify-content: flex-end; align-items: center;  }
.start 	{ justify-content: flex-start; }
.rows 	{ flex-direction: column; }
.circle	{ border-radius: 100%; }
.wrap 	{ flex-wrap: wrap; }
.right	{ align-items: right; }
.left	  { align-items: left; }
.debug  { border: 1px solid #000; }
.between { justify-content: space-between; }

/* Colors */
:root {
  --col_00:  #ca0058;
  --col_00_hover:  #990042;
  --col_01:  #d66d9a;
  --col_02:  #7B418A;
  --col_02_hover: #B173C0;
  --col_03:  #35c2f2;
  --col_03_hover:  #0089BD;
  --col_04: #F4F5F7;
  --col_04_hover: #565F6E;
  --col_05:  #007E66;
  --col_05_hover: #056654;
  --col_error_border: #dc3545;
  --col_error_background: #f8d7da;
  --col_success_border: #28a745;
  --col_success_background: #d4edda;
}

body {
    margin: 0px;
    font-family: 'Open Sans';
    font-size: 16px;
    overflow-x: hidden;
    cursor: default;
}

h1 {
  font-size: 3em;
  font-family: Montserrat;
  color: #000;
  font-weight: 400;
  margin-top: 0px;
}

h2 {
    font-family: Montserrat;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 12px;
}

h3 {
    font-family: Montserrat;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 8px;
    font-size: 1.4em;
}

.contact_panel h4 {
  font-family: Montserrat;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.2em;
}

form {
  margin-bottom: 0px;
}

a {
  text-decoration: none;
  text-decoration: none;
  color: var(--col_03_hover);
}

li a {
  width: default;
}

a:hover {
  text-decoration: underline;
}

.nodeco:hover {
  text-decoration: none;
}

.paragraph {
  padding-bottom: 1.5em;
  font-size: 12pt;
  line-height: 1.8em;
}

a.subscribe {
  padding: 12px;
  padding-left: 16px;
  padding-right: 16px;
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  background: rgb(244,125,35);
  background: linear-gradient(33deg, rgba(244,125,35,1) 0%, rgba(236,17,106,1) 100%);
}

a.subscribe:hover{
  background: rgba(236,17,106,1);
  text-decoration: none;
}

.text {
  display: inline;
}

.page {
    width: 100vw;
    max-width: 950px;
}

.header {
    width: 100vw;
    font-family: Montserrat;
    font-size: 15pt;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 20px;
    background: -webkit-linear-gradient(#EF703B, #ca0058);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header .content {
    width: 100vw;
    max-width: 950px;
    padding-left: 10px;
    padding-right: 10px;
}

.header .content .logo {
    height: 80px;
    margin-right: 5px;
}

.site_title {
  margin-left: -5px;
}

.main_panel {
  width: 100vw;
  overflow: hidden;
}

.main_panel .content {
  width: 100vw;
  max-width: 950px;
  padding: 30px;
  padding-top: 50px;
  overflow: hidden;
  box-sizing: border-box;
}

.desktop_cc {
  justify-content: flex-start;
}

.workgroup_grid {
  display: grid;
  grid-template-columns: 70px 300px;
  gap: 6px;
}

.workgroup_grid.small {
  display: grid;
  grid-template-columns: 36px 300px;
  gap: 6px;
}

.workgroup_grid .name {
  font-weight: 600;
  align-items: center;
}

.function {
  font-weight: 500;
  margin-left: 6px;
}

.description {
    display: inline;
    padding-bottom: 36px;
}

.page_menu {
  padding-bottom: 24px;
  row-gap: 6px;
}

.home_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 48px;
  margin-bottom:48px;
}

.home_grid .paragraph {
  padding-bottom: 0px;
}

.home_grid.hover:hover {
  border: 3px solid var(--col_03);
  cursor: pointer;
}

.home_grid_2 {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 48px;
  margin-bottom: 24px;
}

.symposium-banner {
  width: 100%;
  padding: 0px;
  background-color: var(--col_03);
  margin-bottom: 16px;
  position: relative;
}

.symposium-banner a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.symposium-banner .card {
  margin-bottom: 0px;
}

.symposium-banner h2 {
    margin-top: 6px;
    margin-bottom: 0px;
}

.symposium-banner .label {
  width: 40px;
  line-height: 38px;
  color: #FFF;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-align: center;
  justify-self: center;
  align-self: center;
}

.symposium-banner:hover {
  background-color: var(--col_03_hover);
}

.symposium-image {
  border-radius: 100%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  margin-left: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  align-self: center;
  display: flex;
}

.symposium-card {
  padding: 12px;
  background-color: var(--col_04);
  text-align: center;
  width: 100%;
}

.symposium-card div {
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/************************************** NOTIFICATIONS *********************************************/

.notification {
    padding: 24px;
    font-size: 15px;
    align-items: center;
    margin-bottom: 12px;
}

.notification.short {
    width: fit-content;
    padding: 6px;
}

.notification.fat {
  padding: 12px 18px 12px 12px;
  font-size: 15px;
  margin-bottom: 24px;
}

.notification.warn {
  color: #856404;
  background-color: #fff3cd;
}

.notification.warn:before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23856404' d='M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z' /%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-right: 12px;
}

.notification.alert {
  color: #721c24;
  background-color: #f8d7da;
}

.notification.alert:before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23721c24' d='M13 14H11V9H13M13 18H11V16H13M1 21H23L12 2L1 21Z' /%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-right: 12px;
}

.notification.success {
  border-left-color: #155724;
  background-color: #d4edda;
}

.notification.success:before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' style='width:24px;height:24px' viewBox='0 0 24 24'%3E%3Cpath fill='%23155724' d='M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z' /%3E%3C/svg%3E");
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-right: 6px;
}



/***************************************** BUTTONS ************************************************/

.button {
  padding: 6px;
  padding-left: 12px;
  padding-right: 12px;
  background-color: var(--col_04);
  color: #333;
  height: 35px;
  font-size: 16px;
  font-weight: 500;
  align-content: center;
  align-items: center;
  cursor: pointer;
  width: fit-content;
  white-space: nowrap;
  margin-right: 6px;
  position: relative;
  -webkit-touch-callout: none; /* Safari */
         -webkit-user-select: none; /* Chrome */
            -moz-user-select: none; /* Firefox */
             -ms-user-select: none; /* Internet Explorer/Edge */
                 user-select: none;
}

.button.clear {
    background-color: rgba(0,0,0,0) !important;
}

.button.clear:hover {
  background-color: var(--col_04_hover) !important;
  color: #FFF !important;
}

.button:last-child {
    margin-right: 0px;
}

.button.green.active {
  background-color: var(--col_05);
  color: #FFF;
}

.button.green:hover {
  background-color: var(--col_05);
  color: #FFF;
}

.button.green.active:hover{
    background-color: var(--col_05_hover);
}

.button.grey {
  background-color: var(--col_04);
  color: #333;
}

.button.grey:hover{
    background-color: var(--col_04_hover) !important;
    color: #FFF !important;
}

.button.purple {
  background-color: var(--col_02);
  color: #FFF;
}

.button.purple:hover{
    background-color: var(--col_02_hover);
    color: #FFF;
}

.button.brightblue:hover {
  background-color: #16BFF6;
  color: #ffffff;
}

.button.blue {
  background-color: #16BFF6;
  color: #ffffff;
}

.button.blue:hover {
  background-color: #0089BD !important;
  color: #fff;
}

.button.red:hover, .button.red.hover {
  background-color: var(--col_00) !important;
  color: #fff;
}

.button:hover {
  background-color: var(--col_00_hover);
  color: #fff;
}

.button.disabled svg path{
    cursor: default;
    fill: #999;
}

.button.disabled {
  pointer-events: none;
    cursor: default;
    color: #999;
}

.button.disabled:hover {
  cursor: default;
  background-color: var(--col_04);
  color: #999;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button div:first-child {
    margin-left: 0px;
}
.button div {
    margin-left: 6px;
}

.button.large {
    padding: 24px;
    padding-left: 18px;
}

.button.large .name {
    margin-left: 10px;
}

.logoutbutton {
  background-image: url('/src/img/logout.svg');
  background-repeat: no-repeat;
  background-position: center;

  -webkit-touch-callout: none; /* Safari */
         -webkit-user-select: none; /* Chrome */
            -moz-user-select: none; /* Firefox */
             -ms-user-select: none; /* Internet Explorer/Edge */
                 user-select: none;

}

.button a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

/***************************************** GALLERY ************************************************/

.gallery_grid {
  position: relative;
  display: grid;
  gap: 1px;
  padding-bottom: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image_container {
  width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  padding: 2px;
}

.image_container>img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
    transition: 0.2s all;
    transform: scale(1);
}

.image_container:hover img {
  transition: 0.2s all;
  transform: scale(1.02);
  transform-origin: center;
  cursor: pointer;
}

.gallery_cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  overflow: hidden;
}

#cover_image {
  z-index: 3;
  max-width:100vw;
  max-height:100vh;
  height:auto;
  object-fit: none;
}

.card {
  background-color: var(--col_04);
  padding: 12px;
  margin-bottom: 6px;
  border-left: 3px solid var(--col_04);
}

.card .title {
  font-size: 15px;
  font-weight: 500;
}

.card .date {
  font-size: 12px;
  color: #999;
  opacity: 1;
  transition: 0.1s all;
  white-space: nowrap;
}

.card:hover{
    cursor: pointer;
    background-color: #ECEEF2;
    border-left: 3px solid var(--col_04_hover);
}

.card:hover .date {
  opacity: 1;
}

/***************************************** ARTIKELEN PANEL ************************************************/

.articles_grid {
  width: 100%;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   grid-auto-flow: row;
   gap: 12px 12px;
   margin-top:12px;
}

.articles_grid .card {
  width: 100%;
  height: 200px;
  padding: 24px;
  border: 2px solid #fff;
  background-color: #DBF6FF;
}

.articles_grid .card.disabled {
  background-color: rgba(219, 246, 255, 0.5);
  color: rgba(0,0,0,0.5) !important;
  cursor: default;
}

.articles_grid .card.hover:hover {
  border: 2px solid #003764;
  cursor: pointer;
    background-color: #DBF6FF;
}

.articles_grid .card .month {
  width: 100%;
  justify-content: center;
  font-size: 13px;
}

.articles_grid .card .description {
  font-size: 14px;
  justify-content: center;
  text-align: center;
  height: 75px;
  width: 100%;
  padding-bottom: 0px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-box-pack: end;
  text-overflow: ellipsis;
  line-height: 1.7;
}

.articles_grid .articles_grid .card .title {
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  text-align: center;
}

@media screen and (max-width: 949px) {
    /* Tablet */
    .articles_grid {
     grid-template-columns: 1fr 1fr;
   }
}

@media screen and (max-width: 479px) {
    /* Telefoon */
   .articles_grid {
      grid-template-columns: 1fr;
   }
}

/***************************************** CALENDAR ************************************************/

.calendar {
    display: flex;
    flex-flow: column;
}
.calendar .header .month-year {
    font-size: 20px;
    font-weight: bold;
    color: #636e73;
    padding: 20px 0;
}
.calendar .days {
    display: flex;
    flex-flow: wrap;
}
.calendar .days .day_name {
    width: calc(100% / 7);
    border-right: 1px solid #541C64;
    padding: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #818589;
    color: #fff;
    background-color: var(--col_02);
}
.calendar .days .day_name:nth-child(7) {
    border: none;
}

.calendar .days .day_num {
    display: flex;
    border-right: 1px solid #e6e9ea;
    border-bottom: 1px solid #e6e9ea;
    padding: 7px;
    font-weight: bold;
    color: #7c878d;
    cursor: pointer;
    width: calc(100%/7);
    height: 0;
    padding-top: calc(100%/8);
    position: relative;
}

.day_num:hover{
  box-shadow: inset 0 0 0px 2px #7B418A;
}

.day_content {
  position: absolute;
  top: 5;
  width: 100%;
}

.calendar .days .day_num span {
    display: inline-flex;
    width: 30px;
    font-size: 14px;
}

.calendar .days .day_num .event {
    margin: 6px;
    margin-left: 0px;
    border-radius: 100%;
    background-color: #000000;
    color: #fff;
    word-wrap: break-word;
    width: 8px;
    height: 8px;
}

.calendar .days .day_num .event.private {
    background-color: var(--col_03);
}

.calendar .days .day_num .event.green {
    background-color: #51ce57;
}
.calendar .days .day_num .event.blue {
    background-color: #518fce;
}
.calendar .days .day_num .event.red {
    background-color: #ce5151;
}
.calendar .days .day_num:nth-child(7n+1) {
    border-left: 1px solid #e6e9ea;
}
.calendar .days .day_num:hover {
    background-color: #fdfdfd;
}
.calendar .days .day_num.ignore {
    background-color: #fdfdfd;
    color: #ced2d4;
    cursor: inherit;
}
.calendar .days .day_num.selected {
    cursor: inherit;
    box-shadow: inset 0 0 0px 2px #7B418A;
}

.square {
  position: absolute;
  top: 0px;
}

.calendar_container {
  width: 100%;
  display: inline-block;
  margin-bottom: 24px;
}

.events_container {
  width: 100%;
  padding-left: 12px;
  height: 100%;
  overflow-y: auto;
}

.event_card {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 15px;
  padding: 12px;
  color: #000;
  word-wrap: break-word;
  overflow: hidden;
  height: fit-content;
  background-color: var(--col_04);
  border-left: 3px solid var(--col_04);
  position: relative;
}

.event_card:hover {
  background-color: #ECEEF2;
  border-left: 3px solid var(--col_04_hover);
}

.event_card a {
  color: #000;
  text-decoration: none;
}

.event_card.private a {
  color: #003764;
  text-decoration: none;
}

.event_card a:hover {
  text-decoration: underline;
}

.download_ics {
  position: absolute;
  right: 0px;
  top: 5px;
}

.event_card .title {
  font-weight: 500;
  font-size: 15px;
}

.event_card .description {
  font-size: 13px;
  color: #000000;
  padding-top: 3px;
  padding-bottom: 6px;
}

.event_card.private .description {
  color: #00556F;
}

.event_card .subtext {
  padding-top: 3px;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
  max-width: 70vw;
}

.subtext a {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.event_card.private .subtext {
  color: #00556F;
}

.event_card .subtext svg {
  margin-right: 3px;
}

@media screen and (min-width: 650px) {
  .calendar_container{
    max-width: 60%;
  }
  .events_container {
    max-width: 40%;
  }
}

@media screen and (max-width: 649px) {
  .calendar_break {
    flex-direction: column;
  }

  .calendar_container{
    margin-bottom: 0px;
  }

  .events_container {
    margin-top: 24px;
    padding-left: 0px;
    margin-bottom: 24px;
  }
}

/***************************************** CONTACT PANEL ************************************************/

.contact_panel {
  font-family: "Open Sans";
  font-size: 15px;
  min-width: 50%;
  padding: 16px;
  background-color: #F5F5F5;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: fit-content(200px) 1fr;
  grid-gap: 12px;
    margin-bottom: 12px;
}

.contact_panel .label {
  line-height: 35px;
}

.contact_panel .label.small {
  line-height: 35px;
  font-size: 14px;
}

.contact_panel .label.missing {
  font-weight: 600;
  color: #721c24;
}

.contact_panel input {
  width: 100%;
  font-family: "Open Sans";
  font-size: 15px;
  padding: 6px;
  border: 1px solid #CCC;
  height: 35px;
}

.contact_panel textarea {
  width: 100%;
  min-height: 200px;
  border: 1px solid #CCC;
  font-family: "Open Sans";
  font-size: 15px;
  padding: 6px;
}

.contact_overlay {
  background:#fff;
  bottom:0;
  left:0;
  opacity:.5;
  position:absolute;
  right:0;
  top:0;
  display: none;
  z-index: 5;
}

/***************************************** PROFILE ************************************************/

.profile_large {
  clip-path: circle(50px at center);
  overflow: hidden;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  display: flex;
  justify-content: center; /* horizontal */
  position: relative;
}

.profile_editable {
    position: relative;
    cursor: pointer;
}

.profile_editable:hover{
    filter: brightness(90%);
}

.profile_large img {
  max-width: 150px;
  image-rendering: -moz-crisp-edges;         /* Firefox */
  image-rendering:   -o-crisp-edges;         /* Opera */
  image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
  transform: scale(1.3);
}

.profile_medium {
  clip-path: circle(29px at center);
  overflow: hidden;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  justify-content: center; /* horizontal */
  position: relative;
}

.profile_medium img {
  max-width: 80px;
  image-rendering: -moz-crisp-edges;         /* Firefox */
  image-rendering:   -o-crisp-edges;         /* Opera */
  image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
  transform: scale(1.3);
}

.profile_small {
  clip-path: circle(15px at center);
  overflow: hidden;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center; /* horizontal */
  position: relative;
}

.profile_small img {
  max-width: 50px;
  image-rendering: -moz-crisp-edges;         /* Firefox */
  image-rendering:   -o-crisp-edges;         /* Opera */
  image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
  transform: scale(1.3);
}



/***************************************** INPUT ************************************************/

input[type='text'] {
    height: 35px;
    border: 1px solid #CCC;
    padding: 6px;
    font-family: Open Sans;
    font-size: 16px;
}

input[type='number'] {
    height: 35px;
    border: 1px solid #CCC;
    padding: 6px;
    font-family: Open Sans;
    font-size: 16px;
}

textarea {
    height: 35px;
    border: 1px solid #CCC !important;
    padding: 6px;
    font-family: Open Sans;
    font-size: 16px;
}

input[type='password'] {
    height: 35px;
    border: 1px solid #CCC;
    padding: 6px;
    font-family: Open Sans;
    font-size: 16px;
}

input[type=checkbox] {
  width: 35px;
  height: 35px;
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  outline: 0;
  flex-grow: 0;
  background-color: #FFFFFF;
  cursor: pointer;
  margin: 0px;
  position: relative;
}

[type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  margin: 0px;
  background-color: transparent;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* Checked */
[type=checkbox]:checked {
  background-color: #4A4A4A;
}

[type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}

select {
    height: 35px;
    border: 1px solid #888;
    padding: 6px;
    font-family: Open Sans;
    font-size: 16px;
}

select option {
  font-family: Open Sans;
  font-size: 16px;
}

/***************************************** MEDIA QUERIES ************************************************/

@media screen and (min-width: 950px) {
    /* Desktop */
    .desktop_cc 	  { justify-content: center; align-items: center; align-self: center; }
}

@media screen and (max-width: 949px) {
    /* Tablet */
    .mobilewrap { flex-wrap: wrap; }
    .mobilerows { flex-direction: column; }
    .symposium-image {
      display: none;
    }
    h1 {
      font-size: 2.8em;
    }
}

@media screen and (max-width: 479px) {
    /* Telefoon */
    .mobilewrap { flex-wrap: wrap; }
    .mobilerows { flex-direction: column; }
    .header { font-size: 4vw; }
    .header .content .logo {
        height: 60px;
        margin-left: 3px;
    }
    h1 {
      font-size: 2.5em;
    }
}


/***************************************** NAVIGATION ************************************************/

    .navigation {
        width: 100vw;
        border-top: 6px solid rgba(236,17,106,1);
    }

    .navigation .content {
        width: 100vw;
        max-width: 950px;
        justify-content: center;
    }

    .toggle,
    [id^=drop] {
    	display: none;
    }

    /* Giving a background-color to the nav container. */
    nav {
      width: 100%;
      background-color: var(--col_00);
      font-size: 12pt;
      justify-content: center;
      cursor: default;
    }

    nav .menu {
      margin-left: 12px;
      width: fit-content;
    }

    nav ul li a {
      color: #fff !important;
    }

    nav ul ul li a {
      color: #000 !important;
    }

    nav ul ul li a:hover {
      color: #fff !important;
    }

    /* Since we'll have the "ul li" "float:left"
     * we need to add a clear after the container. */

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

    /* Removing padding, margin and "list-style" from the "ul",
     * and adding "position:reltive" */
    nav ul {
    	list-style: none;
    	position: relative;
    }

    /* Positioning the navigation items inline */
    nav ul li {
    	margin: 0px;
    	display:inline-block;
    	background-color: var(--col_00);
    }

    /* Styling the links */
    nav a {
    	display:block;
      padding: 14px;
      padding-left: 22px;
      padding-right: 30px;
    	color:#000;
    	font-size:17px;
    	text-decoration:none;
    }

    nav .first {
      margin-left: 10px;
    }

    nav ul {
      margin: 0px;
      padding: 0px;
    }

    nav ul li ul li:hover { background: var(--col_00); }

    /* Background color change on Hover */
    nav a:hover {
    	background-color: var(--col_00_hover);
      text-decoration: none;
      font-weight: inherit;
    }

    /* Hide Dropdowns by Default
     * and giving it a position of absolute */
    nav ul ul {
    	display: none;
    	position: absolute;
      z-index: 2;
    	/* has to be the same number as the "line-height" of "nav a" */
    	top: 51px;
      box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    }

    /* Display Dropdowns on Hover */
    nav ul li:hover > ul {
    	display:inherit;
    }

    /* First Tier Dropdown */
    nav ul ul li {
    	float:none;
    	display:list-item;
    	position: relative;
      white-space: nowrap;
      background-color: #fff;
      color: #000;
    }

  /*------- Media Queries -------- */

    @media all and (max-width : 950px) {

    	nav {
    		margin: 0;
        border-radius: 0px;
    	}
    }

    @media all and (max-width : 768px) {

      .home_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 48px;
        max-width: 100vw;
        overflow: hidden;
      }

      .home_grid_2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 36px;
        max-width: 100vw;
        overflow: hidden;
      }

    	nav {
    		margin: 0;
        border-radius: 0px;
    	}

      nav .menu {
        margin-left: 0px;
        width: 100%;
      }

      nav ul ul li a {
    		color: #000 !important;
    		}

    	/* Hide the navigation menu by default */
    	/* Also hide the  */
    	.toggle + a,
    	.menu {
    		display: none;
    	}

    	/* Stylinf the toggle lable */
    	.toggle {
    		display: block;
    		background-color: var(--col_00);
    		padding: 14px 20px;
    		color:#FFF;
    		font-size:17px;
    		text-decoration:none;
    		border:none;
    	}

    	.toggle:hover {
    		background-color: #9D0043;
    	}

    	/* Display Dropdown when clicked on Parent Lable */
    	[id^=drop]:checked + ul {
    		display: block;
    	}

    	/* Change menu item's width to 100% */
    	nav ul li {
    		display: block;
    		width: 100%;
    		}

        nav ul ul .toggle {

      	}

    	nav ul ul .toggle,
    	nav ul ul a {
    		padding: 0 40px;
    	}

    	nav ul ul ul a {
    		padding: 0 80px;
    	}

    	nav a:hover,
     	nav ul ul ul a {
    		background-color: #9D0043;
        color: #fff;
    	}

    	nav ul li ul li .toggle,
    	nav ul ul a,
      nav ul ul ul a{
    		padding:14px 20px;
    		color:#FFF;
    		font-size:17px;
    	}


    	nav ul li ul li .toggle,
    	nav ul ul a {
    		background-color: #fff;
        color: #000;
    	}

    	/* Hide Dropdowns by Default */
    	nav ul ul {
    		float: none;
    		position:static;
    		color: #000;
    		/* has to be the same number as the "line-height" of "nav a" */
    	}

    	/* Hide menus on hover */
    	nav ul ul li:hover > ul,
    	nav ul li:hover > ul {
    		display: none;
    	}

    	/* Fisrt Tier Dropdown */
    	nav ul ul li {
    		display: block;
    		width: 100%;
    	}

    	nav ul ul ul li {
    		position: static;
    		/* has to be the same number as the "width" of "nav ul ul li" */
    	}

    }
