/*--DESIGN: Carlo Bongers ©2015 - remake in 2025 - by design agency studioanders.nl - custom theme build for Chill & Refill Massage */


/* --------------------- RESET --------------------- */


* {box-sizing: border-box; margin:0; padding:0;}

/* --------------------- VARIABELEN --------------------- */

:root {
    --bg: #f7f4f0;
    --menuItem: #caa988;
    --menuItemHover: #261c13;
    --menuItemHoverBg: #f1ece2;    
    --menuItemSelected: #261c13;
    --txt: #261c13;
    --link: #9c744c;
    --hover: #5e4530;
    --selected: #261c13;
    --h1: #261c13;
    --h2: #261c13;
    --h3: #261c13;
    --motto: #a0998e;
    --white: rgba(255, 255, 255, 1);
    --halfwhite: rgba(255, 255, 255, 0.5);
    --ol: #261c13;
    --cta: #9c744c;
    --ctaHover: #c69263;
    --btn: #9c744c;
    --btnHover:#caa988;
    --btnGhost: #ded5c4;
    --btnGhostHover:#f1ece2;
    --btnLable: #f1ece2;
    --btnLableHover:#f7f4f0;
    --btnBorderBottom: #caa988;
    --banner: #f1ece2;
    --bannerBorder: #caa988;
    --radius: 6px;
    --radiusLarge: 60px;
    --radiusLable:20px 0 0 8px;
    --radiusBtn: 6px 20px 6px 6px;
    --ctaMenu: red;
    --blockSpacePos: 30px; /* positieve marge tussen contentblokken */
    --blockSpaceNeg: -30px; /* negatieve marge tussen contentblokken */
    --divider: #ded5c4;

    --error: red;
    --succes: green;
}

/*  --------------------- BASIS ASSETS ---------------------  */

html {
  background-color: var(--bg);
	/*insteling voor pagina-scroll animatie bij klikken van een anker-tag*/
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
  font-size: 16px;
}

.createdby{
  min-height: 100%;
  max-width: 1600px;
  margin: auto;
  padding: -10px 30px 0 30px;
  text-align: center;
}

.createdby a{
  font-size: 0.7rem;
  color:var(--motto);
  padding-bottom:0px;
  margin-top:-10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;  
}

.createdby a:hover{
  font-size: 0.9rem;
  font-weight: 600;
  color:var(--selected); } 

.wrapper {
  min-height: 100%;
  max-width: 1600px;
  height: auto !important;
  position: relative;
  margin: auto;
  width: 100%;
}

#content {
  padding: 0 30px 0 30px;
  position: inhirit;
  width: auto;
  display: inline-block;
}

/*--Typo--*/

body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.45rem;
  letter-spacing: 0.05rem;
  font-weight: 300;
  text-align: left;
  color: var(--txt);
}

h1, h2, h3 {
  clear: right; /* duwt de right-floated button omhoog zodat deze niet door de titel loopt */
}

h1, h2, h3 {
  font-weight: 600;
  text-align: left;
}

h1 {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;    
  font-size: 2.25rem;
  line-height: 2.2rem;
  color: var(--h1);
  text-align: center;
}

.zoekkop {font-size: 1.5rem; text-align: left; margin-top:0; margin-bottom:0.75rem;}

h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.6rem;
  color: var(--h2);
}

h2 .topHeader, .subHeader{ font-size:1.25rem; }

h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--h3);
}

p { margin-bottom: 1.5rem; }

p bold, strong {
  font-weight: 700;
  font-style: bold;
}

p italic {
  font-weight: 400;
  font-style: italic;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:hover {
  color: var(--hover);
}

ul, ol { margin-bottom:40px;}

li {padding: 5px 0px 0px 5px;}

ol li{ color: var(--ol); }

ul li{color: var(--txt); list-style-type: circle; }

ul, ol li{font-weight: 300; margin-left: 20px;  
}

/*--LAYOUT ELEMENTS--*/

img {border-radius: var(--radius);}

clr {
  clear: both;
}

/* --------------------- HEADER BAR --------------------- */


.header {
  background: rgba(255, 255, 255, 0.9); /* halfwit */
    -webkit-backdrop-filter: blur(5px); /*For old safari versions*/
  backdrop-filter: blur(5px);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);  
  position: fixed;
  top: 0;
  left:0;
  right:0;
  width: 100%;
  height: 120px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  max-height: inherit;
}

.header .logo {
  position: absolute;
  top: 20px;
  left:10px;
  z-index: 102;
}

.header .logo-img {
  height: 75px;
  margin-left:20px;
}

/* --------------------- MENU CONTAINER --------------------- */


/* hamburger opened */

.menu-btn {
  display: none;
}

.menu-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon {
  width: 22px;
  height: 2px;
  background-color: #333;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-icon::before,
.nav-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #333;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.nav-icon::before {
  top: -6px;
}

.nav-icon::after {
  top: 6px;
}

/* hamburger closed */

.menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}
.menu-btn:checked ~ .menu-icon .nav-icon::before {
  transform: rotate(-45deg);
  top: 0;
}
.menu-btn:checked ~ .menu-icon .nav-icon::after {
  transform: rotate(45deg);
  top: 0;
}

/* tablet & phone menu layout */

.menu-container {
  display: none;
  background: rgba(255, 255, 255, 0.95); /* halfwit */
  backdrop-filter: blur(5px);
  box-shadow: 0px 4px 5px 1px rgba(0, 0, 0, 0.1);  
  flex-direction: column-reverse;
  align-items: flex-end;
  border-radius:0 0 var(--radius) var(--radiusLarge);
  margin: 0px 24px 0px 140px;
  padding-top:34px;
  padding-bottom:20px;
  width: auto;
  z-index: 99;  
}

.menu-container ul {
  margin:0;
  width: 100%;
  padding: 0 60px 30px 10px;
}

.menu-container li {
  list-style: none;
  border-bottom: 2px solid #eee;
  padding: 10px 5px 15px 0;
}

.menu-container a {
  display: block;
  text-decoration: none;
  text-align: right;
}

/* toggle on */

.menu-btn:checked ~ .menu-container {
  display: flex;
}

/* Desktop menu layout */

@media (min-width: 1080px) /*breakpoint when menu collapses to hamburger*/{

#content {padding-top: 180px;} 

  .header { height: 170px;}

  .header .logo-img { height: 120px;}

  .menu-icon {display: none;}

  .header .menu-container {
    background: none;
    backdrop-filter: none;
    box-shadow: none;    
    display: flex !important;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 20px 0 20px;
  }

  .menu-container ul {
    display: flex;
    width: auto;
    padding: 0;
  }

  .menu-container li {
    border: none;
    padding: 0px;
    margin:0;
  }

  .menu-container a {
    padding: 10px 20px 10px 20px;
  }

  .menu-container a:hover{  
    background: var(--menuItemHoverBg);
    border-radius: var(--radius);}
}

.top{padding-top: 0px; font-size: 0.95rem;}

.main{margin-top: 0px; font-size: 1.15rem;}


/* --------------------- INDICATED MENU-ITEM ON ACTIVE PAGE --------------------- */

body#home a#homenav,
body#ontspanning a#ontspanningnav,
body#klachtgericht a#klachtgerichtnav,
body#tarieven a#tarievennav,
body#contact a#contactnav,
body#over a#overnav,
body#covid a#covidnav,
body#afspraak a#afspraaknav,
body#reviews a#reviewsnav,
body#headspa a#headspanav,
body#cadeaubon a#cadeaubonnav {
  color: var(--menuItemSelected);
  font-weight: bold;
}


/* --------------------- BUTTONS & LINKS --------------------- */

.lable, .btn, .cta, .btn-ghost {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
}

.link{
  text-align: right;
}

.link a{
  text-decoration: none;
  &:after{
    content: " ›"; /*marker after link*/
      }
    }

.OwnerJoe {

    }

.btn, .cta, .btn-ghost{
  padding: 10px 15px 8px 15px;
    &:after{
    content: " ›"; /*marker after link*/
      }
}

.lable {
    z-index: 1;
    position: absolute;        
    right: 0px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    color: var(--txt);
    border-bottom: 2px solid var(--btnBorderBottom);
    bottom: 20px;
    padding: 10px 25px 8px 15px;
    border-radius: var(--radiusLable);
}

.btn-container{
  /*plaatst de buttons aan de rechter kant binnen de content. Deze class in de p zetten waarbinnen de btn staat*/
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap to the next line */
  justify-content: flex-end;
}

.btn-cta-container{
  /*plaatst de buttons aan de rechter kant binnen de content. Deze class in de p zetten waarbinnen de btn staat*/
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap to the next line */
  justify-content: center;
}

.btn, .cta, .btn-ghost {
    white-space: nowrap; /* Prevent text from wrapping */
    display: block; /* Each button occupies a full line when stacked */
    border-left:  none;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--btnBorderBottom);
    border-radius: var(--radiusBtn);    
    margin: 10px;
    flex-basis: -10px; /* Adjust the flex-basis to control button width */
}

.btn{
    background-color: var(--btn);
    color:var(--white);
}
.btn-ghost{
    background-color: var(--btnGhost); 
    color: var(--txt);
}

.cta{
    background-color: var(--cta);
    color: var(--white);
  }

.btn-ghost:hover{
    background-color: var(--btnGhostHover);
    cursor: pointer;
    color: var(--txt)
}

.btn:hover{
    background-color: var(--btnHover);
    cursor: pointer;
    color: var(--white)
}

.cta:hover{
    background-color: var(--btnHover);
    cursor: pointer;
        color: var(--white)
}

.ctaMenu{
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    padding: 4px;    
    border-left:  none;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid var(--cta);    
    display: inline-block;
    margin-bottom:inherit;
    margin: 0 auto;
    background-color: var(--ctaMenu);   
}

.btn, .lable, .cta, .btn-ghost{
    -webkit-transition: all 0.2s ease-in-out; 
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


/* --------------------- GENERIEKE ASSETS --------------------- */

.quote {
    display:inline-block;
    margin-top: 30px;
    font-weight: 400;
    font-style: italic;
    color: var(--motto);
}


#banner{
    color: var(--txt);
    display: block;
    padding: 0.75rem;
    text-align: center;
    border: solid 1px var(--bannerBorder);
    border-radius: var(--radiusLarge);
    background-color: var(--banner);
}

#banner a{color: var(--txt);}

#banner a:hover{color: var(--link);}

#pageTitle {
    /*container bevat de paginatitel en de banner*/
    width: 100%;
}

article {
  background-color: var(--white);
  display: block;
  position: relative;
/**--position laten staan voor articleTitle--**/
  border-radius: var(--radius);
  overflow-wrap: break-word;  
  word-wrap: break-word;
  word-break: break-word;
  /**--break-word om lange woorden te delen--**/
}

main, section {
  float: left;
  /* containers voor content links en rechts */
}

/*--HOME & LANDINGPAGE TEMPLATE--*/

.mozaikContainer{
    /* bepaal de weergave van de container van het tile-vlak*/     
    margin: 0px; /* marge toevoegem op outer container */
    /*max-width: 1280px; */ /*maximale breedte aanpassen waar nodig*/
    width:100%;
}

.mozaikTiles{
  /*outer container for mozaik tiles*/
    display: flex;
    flex-wrap: wrap;
    margin-right: var(--blockSpaceNeg); /* Negative margin to offset the inner divs' margin */
    margin-bottom: var(--blockSpaceNeg); /* Negative margin to offset the inner divs' margin */
}

.genTile {
    /* bepaal de overeenkomstige voorwaarden van alle tiles */
    height: 420px;
    margin: 0 var(--blockSpacePos) var(--blockSpacePos) 0; /* marge tussen inner divs en bij bottom van elke rij */
    box-sizing: border-box; /* voeg padding en border toe in de totale hoogte en breedte */
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    width: 100%;
}

.genTile img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.smallTile{flex: 0 0 calc(33.33% - var(--blockSpacePos));}
.halfTile{flex: 0 0 calc(50% - var(--blockSpacePos));}
.largeTile{flex: 0 0 calc(66.66% - var(--blockSpacePos));}
.maxTile{flex: 0 0 calc(100% - var(--blockSpacePos)); height: 560px;}

.radiusTopLeft{border-radius: var(--radiusLarge) var(--radius) var(--radius) var(--radius);}

.radiusTopRight{border-radius: var(--radius) var(--radiusLarge) var(--radius) var(--radius);}

.radiusBottomRight{border-radius: var(--radius) var(--radius) var(--radiusLarge) var(--radius);}

.radiusBottomLeft{border-radius: var(--radius) var(--radius) var(--radius) var(--radiusLarge);}


.articleBlock{
  /*container weergave voor articleContent in meerdere kolommen*/
    display: flex;
    flex-wrap: wrap;
    margin-left: var(--blockSpacePos);
    margin-right: var(--blockSpaceNeg); /* Negative margin om inner divs' margin */
    margin-bottom: var(--blockSpaceNeg); /* Negative margin to offset the inner divs' margin */
}

/*articleSide geeft aantal artikelen aan die gestapeld zijn. De breakpoints delen deze op in kolommen*/
.article-side-1 { flex: 0 0 calc(100% - var(--blockSpacePos)); }
.article-side-2 { flex: 0 0 calc(100% - var(--blockSpacePos));}
.article-side { flex: 0 0 calc(100% - var(--blockSpacePos));}

/*afbeelding binnen Tiles*/
.coverImg {
  background-size: contain;
  position: absolute;
  top: 50%;
  -ms-transform: translate(-50%, 0);
  /* IE 9 */
  -webkit-transform: translate(-50%, 0);
  /* Chrome, Safari, Opera */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  transform: translateX(-50%) translateY(-50%);
}

/* tegel klikbaar gebied over afbeelding */
div.divLink a {}

div.divLink a:hover {}

a.divLink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-decoration: underline;
  z-index: 10;
  background-color: var(--white);
  /*workaround to make clickable in IE */
  opacity: 0;
  /*workaround to make clickable in IE */
  filter: alpha(opacity=0);
  /*workaround to make clickable in IE */
}

a.divLink:hover ~ .lable{
    background-color: var(--btnLableHover);
    color: var(--txt);
    cursor: pointer;
}


/* --------------------- CONTENT BLOCKS --------------------- */

.adres, .openingstijden{ display: inline-block; margin-right: 60px; margin-bottom: 40px; }

.imgbox{
  display: flex;
  flex-wrap: inherit;
  width: auto;
  gap: 30px;}

 .imgbox-item {
  width: 50%;
  height: auto;
} 

.contentTilesContainer{
    /* bepaal de weergave van de container van het tile-vlak*/     
    margin: 0 0 var(--blockSpacePos) 0; /* marge toevoegem op outer container */
    width:100%;
}

.contentTiles, .mozaikTiles{
  /*outer container for mozaik tiles*/
    display: flex;
    flex-wrap: wrap;
    margin-right: var(--blockSpaceNeg); /* Negative margin to offset the inner divs' margin */
    margin-bottom: var(--blockSpaceNeg); /* Negative margin to offset the inner divs' margin */   
}

/* generieke specs content blocks */

.genContentTile, .productTile  {
    /* bepaal de overeenkomstige voorwaarden van alle tiles */
    margin: 0 var(--blockSpacePos) var(--blockSpacePos) 0; /* marge tussen inner divs en bij bottom van elke rij */
    box-sizing: border-box; /* voeg padding en border toe in de totale hoogte en breedte */
}

.genContentTile, .introContentBlock{  padding: 30px 30px 30px 30px;}

/* product containers */

.productTile{
  height:auto;
  display: flex;
  flex-direction: column;
}

/* top div in product column */

.productTop {
  height:auto;
  display: flex; /*set height of container*/
  flex-direction: column; /*set height of container*/
  padding:6px;
}

.productTop a{  text-decoration: none;}


.productTop h2{
  font-size: 2.25rem; 
  text-align: center; 
  line-height: 2.5rem;
  min-height: 80px;
  padding: 0px;
  background: var(--btnGhost);
  padding: 20px 5px 30px 5px;
}

.productTopLink h2:hover{
  text-decoration: none;
  background: var(--btnGhostHover);
  cursor: pointer;
  transition: all 0.25s ease-in-out; 
}

.productThumb{ 
    width:100%; 
    height:320px;
    margin-top:-23px;
    margin-bottom:20px;
    padding: 6px;
  }

.productThumb img{ 
  height: 100%; 
  width: 100%; 
  object-fit: cover;
}

/* middle div in product column */

.productMiddle{ 
  margin-bottom: auto;
}

/* bottom div in product column */

.divider{border-top: 1px solid var(--divider); margin:0 30px 40px 30px;}

.productMiddle, .productBottom {padding: 0 30px 0 30px;}

.productBottom{ text-align: center; padding:0; margin:20px 0 20px 0;}

.productPriceTime{
  margin: 0; 
  display: inline-block;
  margin-bottom:20px;}

.productPrice, .productTime{
  font-size: 1.1rem;
  line-height: 2rem;
}

.productTime{
  font-weight: 300;
}

.productPrice{
  font-weight: 800;
  padding-left:0.25rem;
}


/* size and placement of content tiles */

.onethirdContentTile{flex: 0 0 calc(33.33% - var(--blockSpacePos));}
.onequarterContentTile{flex: 0 0 calc(25% - var(--blockSpacePos));}
.lastthirdContentTile{flex: 0 0 calc(33.33% - var(--blockSpacePos));} /* use as class for third tile */
.twothirdContentTile{flex: 0 0 calc(66.66% - var(--blockSpacePos));}
/* marge tussen inner divs en bij bottom van elke rij */
.halfContentTile{flex: 0 0 calc(50% - var(--blockSpacePos));}
.fullContentTile{flex: 0 0 calc(100% - var(--blockSpacePos));}

.introContentBlock {
    /* introtekst naast de featured image bovenaan elke pagina */
    margin: 0 0 var(--blockSpacePos) 0; /* marge tussen inner divs en bij bottom van elke rij */
    box-sizing: border-box; /* voeg padding en border toe in de totale hoogte en breedte */
    width: 100%;
    border-radius: var(--radius) var(--radiusLarge) var(--radius) var(--radius);
  }

.addMarginLeft {margin-left: var(--blockSpacePos);}
    /* voeg marge toe aan linker kant van section of main */


/* IMG SETTINGS */

.imgAlignMiddle{
        vertical-align: middle;
    }

.featuredImg {
  min-height: 330px;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

/* img gecentreerd van div */
.articleImg {
  height: 300px;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

/* img gecentreerd van div */
.featuredHeaderImg {
  display: none;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

/* img gecentreerd van div */
.featuredHeaderImg-page {
  min-height: 420px;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
  border-radius: var(--radiusLarge) var(--radius) var(--radius) var(--radius);
}

.featuredImg img, .articleImg img, .featuredHeaderImg img, .featuredHeaderImg-page img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


/*--CONTENT BLOCK BREEDTE > NIET VERPLAATSEN - BOVEN FOOTER-CSS<--*/

.blockWidth30{ width:30%;}
.blockWidth40{ width:40%;}
.blockWidth50{ width:50%;}
.blockWidth70{ width:70%;}
.blockWidth60{ width:60%;}
.blockWidth100{ width:100%;}


/* --------------------- FOOTER --------------------- */
.push {
  min-height: 10px;
}

#footer {
    display: inline-table;
    margin: 20px 30px 30px 30px;
    padding:30px;
    background-color: var(--halfwhite);
    border-radius: var(--radius) var(--radius) var(--radiusLarge) var(--radius) ;
}

#adres, #telefoon, #social, #links {
    display: inline-table;
    max-width: 70%;
    vertical-align: top;
    font-size: 0.90rem;
    line-height: 1.5rem;
    text-decoration: none;
    padding-right: 50px;
    margin-bottom: 30px;
}


/* --------------------- RESPONSIVE CONTENT BLOCKS --------------------- */

/* Tablet & Phone layout */

@media screen and (max-width:1080px ){

.introContentBlock {
    margin: 0 var(--blockSpacePos) var(--blockSpacePos) 0; /* marge tussen featured en intor tekst */}

/* algemeen  */
    .addMarginLeft{margin-left: 0px;}

    #content {padding-top: 120px;}     

    /* algemeen */
    .blockWidth30{ width: 100%; }
    .blockWidth40{ width: 100%;}
    .blockWidth60{ width: 100%; }
    .blockWidth50{ width: 100%; }
    .blockWidth70{ width: 100%; }
    .articleBlock{margin-left: 0px;}

/* algemeen  */
    .addMarginLeft{margin-left: 0px;}

/* home en categorie pagina's */
    .article-half{flex: 0 0 calc(100% - var(--blockSpacePos));}
    .contentBlock-half{ flex: 0 0 calc(50% - var(--blockSpacePos));}
    .genTile { flex: 0 0 calc(50% - var(--blockSpacePos)); height: 360px;}
    .maxTile { flex: 0 0 calc(100% - var(--blockSpacePos)); height: 460px;}
    .mozaikContainer{ margin-bottom: var(--blockSpacePos);}

/* pagina's */
    .featuredHeaderImg-page{ min-height: 350px; }
    .onequarterContentTile{flex: 0 0 calc(50% - var(--blockSpacePos));}
    .onethirdContentTile{flex: 0 0 calc(50% - var(--blockSpacePos));}
    .twothirdContentTile{flex: 0 0 calc(50% - var(--blockSpacePos));}
    .lastthirdContentTile{flex: 0 0 calc(100% - var(--blockSpacePos));}
}

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


/* home en categorie pagina's */
    .genTile { height: 260px;}
    .maxTile { height: 360px;}
    .productTile{ flex: 0 0 calc(100% - var(--blockSpacePos)); }

/* pages */
    .featuredHeaderImg-page{ margin-right: var(--blockSpacePos); }
    .halfContentTile{flex: 0 0 calc(100% - var(--blockSpacePos));}
    .featuredHeaderImg-page{ width: 100%; min-height: 320px;}
}

@media screen and (max-width:640px){

/* menu items */

    .top{font-size: 1.15rem;}
    .main{font-size: 1.15rem;}

/* home en categorie pagina's */

/*pages*/
    .featuredHeaderImg-page{ width: 100%; min-height: 250px;}
    .onethirdContentTile{flex: 0 0 calc(100% - var(--blockSpacePos));}
    .twothirdContentTile{flex: 0 0 calc(100% - var(--blockSpacePos));}
 } 

@media screen and (max-width:480px){

  h1 {font-size: 1.5rem; line-height: 1.6rem;}

/* home en categorie pagina's */
    .smallTile, .halfTile, .largeTile, .maxTile{ flex: 0 0 calc(100% - var(--blockSpacePos)); }
    .genTile{ height: 250px;}

/*pages*/   
    .featuredHeaderImg-page{ width: 100%; min-height: 220px;} 
}

