:root {
  /* =========================================================
     Design tokens
     - Houd kleuren/spacing/radius hier centraal.
     - Laat componenten zo veel mogelijk naar deze variabelen verwijzen.
     ========================================================= */

  /* Colors */
  --main-bg-color: #f1f1ed;
  --main-bg-color-dark: #E7E7E6;
  --main-color: #273A7A;
  --sec-color: #C9A12D;
  --txt-color: #2F3A40;
  --txt-color-alt: #C8D0EC;

  /* Typography */
  --font-sans: "Fira Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Spacing scale */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;

  /* Radius */
  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 6px 18px rgba(0,0,0,.12);

  /* Layout */
  --bottomnav-h: 4.75rem; /* pas aan als je bar hoger/lager is */
  --nav-sec-h: 44px;
  --footer-height: 130px;
}


*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; }

/* =========================================================
   Accessibility & UX helpers
   ========================================================= */

/* Laat toetsenbord-focus altijd zichtbaar zijn, zonder mouse "focus ring" */
:where(a, button, input, textarea, select, [tabindex]):focus-visible{
  outline: 3px solid color-mix(in srgb, var(--sec-color) 55%, white);
  outline-offset: 2px;
}

/* Respecteer user preference */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

html {
  height: 100%;
}


body {
  margin: 0;
  background-color: var(--main-bg-color);
  color: var(--txt-color);
  font-size: 1rem;
  line-height: 1.6;
  font-family: var(--font-sans);
  height: 100%;
  min-height: 100%;
}

h1,
h2,
h3,
/* ASL: added strong */  
strong {
    color: var(--main-color);
    font-weight: 500;
}

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

/* ASL: added css hr class */
hr {
  margin-left: .25rem;
  border-top: 1px solid rgba(0,0,0,.1);
}

/* ASL: added css ugbo_div_hr class */
.ugbo_div_hr {
  padding-top: .4rem;
  padding-bottom: .1rem;
}


.ugbo_container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; flex: 1; }

/* ---------------- Header ---------------- */

.ugbo_header {
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    left: 0;
    padding: 0 1rem;
}

@media (min-width: 768px){

    body {
      padding-bottom: 0;
    }

    body.wishes {
        background-color: var(--main-bg-color) !important;
    }
    .ugbo_container {
        max-width: 100%;
        padding: 0 1rem;
    }
    body .ugbo_header {
        background-size: cover;
        padding: 0 1rem;
        background-position: 0 100px; /* pas aan als je wilt */
        height: 120px;
    }


    body.home .ugbo_content_title {
        display: none;
    }
    body.home .ugbo_header {
        background-position: 0 100px;
        top: 0;
        background-size: contain;
        

    }
    body.home .ugbo_content {
        z-index: 13;
    }
    .ugbo_content {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    body.home .ugbo_header_nav {
        position: relative !important;
    }

    .ugbo_header_top {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }


    .ugbo_content_main {
        z-index: 10;
    }
    .ugbo_content {
        margin-top: 3rem;
    }
    .ugbo_content_wrapper {
        z-index: 0;
    }
    .ugbo_content_title {
        position: relative !important;
        top: 0 !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.ugbo_header_top{
  position: relative;
  display:flex;
  flex-direction: column;
  align-items:flex-start;
    padding-top: .5rem;
    padding-bottom: .5rem;
  z-index: 10;
}

.ugbo_header_logo{
  background-image: url('../images/ugbo-logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    flex: 1 1 auto;
    min-width: 154px;
    height: 62px;
    align-self: flex-start;
    margin-top: .25rem;

  
}

@media (min-width: 768px){
    .ugbo_header_logo {
        background-image: url('../images/ugbo-logo.png');
        width: 450px;
        height: 80px;
        margin-top: .75rem;
    }
}

.ugbo_header_globalnav {
  position: absolute;
  top: 0;
  right: -1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: .5rem;
}

.ugbo_donate_btn,
.ugbo_mywishes_btn,
.ugbo_hamb_btn,
.ugbo_search_btn,
.ugbo_login_btn {
  border: 0;
  top: 0;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 600;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ugbo_donate_btn,
  .ugbo_mywishes_btn {
    width: auto;
    height: 44px;
    padding: 0 .75rem;
    gap: .3rem;
    overflow: visible;
  }
}

.ugbo_hamb_btn,
.ugbo_search_btn,
.ugbo_login_btn {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  color: var(--main-color);
}

.ugbo_mywishes_btn {
  background-color: var(--sec-color);
  color: var(--txt-color);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media (min-width: 768px) {
  .ugbo_donate_btn,
  .ugbo_mywishes_btn,
  .ugbo_hamb_btn,
  .ugbo_search_btn,
  .ugbo_login_btn {
      box-shadow: 0 2px 2px rgb(0, 0, 0, .05);
  }
}

@media (min-width: 1024px) {
  .ugbo_hamb_btn,
  .ugbo_search_btn,
  .ugbo_login_btn {
    border-bottom-right-radius: 1rem;
  }
}

.ugbo_hamb_btn,
.ugbo_search_btn,
.ugbo_login_btn {
  background-color: #fff;
}



.ugbo_donate_btn,
/* ASL added ugbo_popup_btn for buttons within popup */
.ugbo_popup_btn {
  background-color: var(--main-color);
  color: #fff;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  text-decoration: none;
  font-weight: 700;
  gap: .3rem;
}

/* ASL added ugbo_popup_btn for buttons within popup */
.ugbo_popup_btn {
  color: #000;
}


.ugbo_donate_btn:hover,
/* ASL added ugbo_popup_btn for buttons within popup */
.ugbo_popup_btn:hover {
  background: color-mix(in srgb, var(--main-color) 85%, black);
}

/* ASL added ugbo_popup_btn for buttons within popup */
.ugbo_popup_btn:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .ugbo_header_globalnav .ugbo_donate_btn .ugbo_btn_label,
  .ugbo_header_globalnav .ugbo_mywishes_btn .ugbo_btn_label {
    display: none;
  }
}

.ugbo_mywishes_btn:hover {
    background: color-mix(in srgb, var(--sec-color) 85%, white);
}

/* ---------------- Content layout ---------------- */
.ugbo_content{ 
  display:flex; 
  flex-direction:column; 
}

/* Titel + Inhoud-knop naast elkaar */
.ugbo_content_title{
  display:flex;
  gap: .75rem;
  padding: 1rem 0 .75rem;
  flex-direction: column;
  position: relative;
}

.ugbo_content_title h1{
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.25;
}

.ugbo_content_title_navitems {
    display: flex;
    justify-content: space-between;
}

/* Inhoud knop */
.ugbo_toc_btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .8rem;
  border-radius: .25rem;
  background:#fff;
  cursor:pointer;
  font-size: .875rem;
  white-space: nowrap;
  width: auto; 
  align-self: flex-start;
  margin-left: auto;
  color: var(--main-color);
  font-weight: 600;
  border: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}
.ugbo_toc_btn:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 2px;
}
.ugbo_toc_icon{ opacity:.75; }

.ugbo_nav-secondary {
    position: fixed;
    bottom: calc(1.5rem + var(--bottomnav-h));
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px){
    .ugbo_nav-secondary {
        bottom: 2rem;
    }
}

@media (min-width: 1024px){
    .ugbo_nav-secondary {
        left: calc(50% + 450px);
    }
}

/* ASL: added media element to show ugbo_nav-secondary element when needed */ 
@media (max-width: 1024px){
    .ugbo_toc_nav {
    	display: block !important;
    }
}

.ugbo_toc_nav {
    margin-left: auto;
/* ASL: default hide element, otherwise it will block some footer links */
	display: none;
}





@media (min-width: 1024px){
    .ugbo_mywishes_btn_main {
        position: fixed;
        right: 0;
        top: 19rem;
        border-top-left-radius: .5rem !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: .5rem !important;
        border-bottom-right-radius: 0 !important;
        left: auto;
        transform: unset;
        font-size: .875rem !important;
    }
}

.ugbo_toc_prev {
    display: inline-block;
    padding-top: .45rem;
    padding-bottom: .45rem;
    
}

.ugbo_toc_next {
    display: inline-block;
    padding-top: .45rem;
    padding-bottom: .45rem;
}

/* Wrapper: mobile first */
.ugbo_content_wrapper{ display:block; }

/* ---------------- TOC (aside) mobile drawer ---------------- */
.ugbo_toc_overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1900;
}

/* aside als drawer */
.ugbo_content_menu{
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: min(86vw, 22rem);
  background: #fff;
  z-index: 2000;

  transform: translateX(-105%);
  transition: transform .2s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  padding: .75rem;
  display:flex;
  flex-direction: column;
}

/* open state */
.ugbo_content_menu.is-open{
  transform: translateX(0);
}

/* kopje + sluitknop */
.ugbo_menu_head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  padding: .25rem .25rem .75rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.ugbo_menu_title{ font-weight: 700; }
.ugbo_menu_close{
  border:0;
  background: transparent;
  cursor:pointer;
  padding:.35rem .55rem;
  border-radius:.6rem;
}
.ugbo_menu_close:hover{ background: rgba(0,0,0,.06); }

/* lijst */
.ugbo_toc_list{
  list-style:none;
  margin: .75rem 0 0;
  padding:0;
  overflow:auto; /* belangrijk: blijft in viewport scrollen */
  -webkit-overflow-scrolling: touch;
}
.ugbo_toc_list a{
  display:block;
  padding:.65rem .75rem;
  border-radius:.75rem;
  text-decoration:none;
  color:inherit;
  line-height:1.25;
}
.ugbo_toc_list a.is-active {
    font-weight: 600;
    color: var(--main-color);
}
.ugbo_toc_list a:hover,
.ugbo_toc_list a:focus-visible{
  background: rgba(0,0,0,.06);
  outline:none;
}

/* main content */
.ugbo_content_main{ padding-bottom: 1rem; }
.ugbo_content_main h1{ margin-top: 0; }

/* ---------------- Desktop: aside altijd zichtbaar links ---------------- */
@media (min-width: 1024px){

  .ugbo_content_wrapper{
    display:grid;

    gap: 1.5rem;
    align-items:start;
  }

  /* knop weg op desktop */
  .ugbo_toc_btn{ display:none; }

  /* overlay niet nodig */
  .ugbo_toc_overlay{ display:none !important; }

  /* aside terug naar normale flow + sticky */
  .ugbo_content_menu{
    position: sticky;
    top: 1rem;
    height: auto;
    width: auto;
    transform: none;
    transition: none;
    box-shadow: none;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(6px);
    border-radius: .5rem;
    box-shadow: 0 5px 5px rgb(0, 0, 0, .1);
  }

  /* sluitknop weg op desktop */
  .ugbo_menu_close{ display:none; }
}

/* ---------------- Meer: fixed knop rechtsonder, menu klapt omhoog ---------------- */
.ugbo_nav-sec{
  font-size: .875rem;
  color: var(--main-color);
  display: inline-block;
  margin-left: auto;
  font-weight: 600;
}

/* anker */
.ugbo_more{ position: relative; }

/* knop */
.ugbo_nav-sec summary{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  cursor:pointer;
  list-style:none;
  user-select:none;

  padding:.55rem .8rem;
  border-radius: .25rem;
  background:#fff;
}
.ugbo_nav-sec summary:hover {
    background: #f1f1f1;
}
.ugbo_nav-sec summary::-webkit-details-marker{ display:none; }

.ugbo_icon{
  transition: transform .2s ease;
}
.ugbo_more[open] .ugbo_icon{
  transform: rotate(180deg);
}

/* menu omhoog + scrollbaar binnen viewport */
.ugbo_nav-sec ul{

    position: absolute;
    right: 0;
  margin:0;
  padding:.5rem;
  list-style:none;

  min-width: 14rem;
  max-height: min(60vh, 22rem);
  overflow:auto;

  background:#fff;
  border-radius: .25rem;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  z-index: 10;
}

.ugbo_nav-sec a{
  display:block;
  padding:.65rem .75rem;
  border-radius: .75rem;
  text-decoration:none;
  color:inherit;
}
.ugbo_nav-sec a:hover,
.ugbo_nav-sec a:focus-visible{
  background: rgba(0,0,0,.06);
  outline:none;
}

.page { display: none; }
.page.is-active { display: block; }

.chapter { display: none; }
.chapter.is-active { display: block; }

/* =========================
   Mijn wensen modal (overlay)
   ========================= */

.ugbo_wishes_overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 2600; /* boven content, onder modal */
}

/* modal */
.ugbo_wishes_modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: min(42rem, calc(100vw - 2rem));
  max-height: min(78dvh, 42rem);

  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 16px 50px rgba(0,0,0,.25);

  z-index: 2700; /* boven overlay */
  overflow: auto;

  padding: 0.75rem;
}

/* header */
.ugbo_wishes_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;

  padding: .25rem .25rem .75rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: .75rem;
}

.ugbo_wishes_title{
  margin: 0;
  font-size: 1.25rem;
  color: var(--main-color);
}

.ugbo_wishes_close{
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: .35rem .55rem;
  border-radius: .6rem;
}

.ugbo_wishes_close:hover{
  background: rgba(0,0,0,.06);
}

/* form */
.ugbo_wishes_form{
  display: grid;
  gap: 1rem;
}

.ugbo_wishes_fieldset{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 1rem;
  padding: 0.85rem;
}

@media (min-width: 768px){
    .ugbo_wishes_fieldset {
        max-width: 800px;
    }
}

.ugbo_wishes_legend{
  font-weight: 600;
  padding: 0 .35rem;
  color: var(--main-color);
}

.ugbo_wishes_label{
  display: block;
  margin: .5rem 0 .35rem;
  font-weight: 500;
}

.ugbo_wishes_textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .75rem;
  padding: .75rem;
  font: inherit;
  line-height: 1.4;
  resize: vertical;
}

.ugbo_wishes_check{
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: .6rem;
  align-items: start;
  margin-top: .5rem;
}

.ugbo_wishes_check input{
  margin-top: .2rem;
}

.ugbo_wishes_actions{
  display: flex;
  gap: .75rem;
  justify-content: flex-end;
}

.ugbo_wishes_save,
.ugbo_wishes_cancel{
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .75rem;
  padding: .55rem .85rem;
  cursor: pointer;
  font: inherit;
  background: #fff;
}

.ugbo_wishes_save{
  background: var(--main-color);
  color: var(--txt-color-alt);
  border-color: transparent;
/* ASL: don't show save, because automatic save */  
  display: none !important;
}

.ugbo_wishes_save:focus-visible,
.ugbo_wishes_cancel:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 2px;
}

/* op mobiel liever “sheet” gevoel */
@media (max-width: 768px){
  .ugbo_wishes_modal{
    /* fullscreen */
    inset: 0;
    transform: none;

    width: 100%;
    height: 100dvh;
    max-height: none;

    border-radius: 0;
    padding: 0.75rem;

    /* zorg dat bottomnav zichtbaar blijft */
    padding-bottom: calc(var(--bottomnav-h) + 1rem);
  }

  /* header blijft zichtbaar */
  .ugbo_wishes_head{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }

  /* formulier mag scrollen */
  .ugbo_wishes_form{
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 768px) {
    .ugbo_wishes_form {
        max-width: 800px;
    }
}

/* container */
#ugbo_content_wishes_wishes{
  background: rgba(255,255,255,.6);
  border-radius: 1rem;
  padding: 1rem;
}

/* headers */
.ugbo_wishes_header_h1{
  margin: 1.25rem 0 .75rem;
  color: var(--main-color);
}
.ugbo_wishes_header_h2{
  display: inline-block;
  margin: 1rem 0 .5rem;
  color: var(--main-color);
}

/* table layout */
#ugbo_content_wishes_wishes table{
  width: 100%;
  border-collapse: collapse;
}
#ugbo_content_wishes_wishes td{
  padding: .35rem .25rem;
  vertical-align: top;
}
.ugbo_wishes_column1{
  width: 11rem;
  font-weight: 600;
  color: var(--txt-color);
}

/* inputs */
.ugbo_input_text_wishes,
.ugbo_textarea_wishes{
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .75rem;
  padding: .65rem .75rem;
  font: inherit;
  background: #fff;
}
.ugbo_textarea_wishes{ resize: vertical; min-height: 4.5rem; }

.ugbo_input_text_wishes:focus-visible,
.ugbo_textarea_wishes:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 2px;
}

/* lijstjes iets rustiger */
.ugbo_ul_wishes{
  list-style: none;
  padding-left: 0;
  margin: .5rem 0 1rem;
}
.ugbo_ul_wishes > li{
  margin: .25rem 0;
}

/* mobiel: tabel onder elkaar */
@media (max-width: 640px){
  .ugbo_wishes_column1{ width: auto; display: block; padding-bottom: .2rem; }
  #ugbo_content_wishes_wishes td{ display: block; }
}

/* Hoofdstukken (bottomnav) */
.ugbo_chapter { display: none; }
.ugbo_chapter.is-active { display: block; }

.ugbo_toc_prev.is-disabled,
.ugbo_toc_next.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  box-shadow: none;
}

body.is-wishes-chapter .ugbo_bottomnav,
body.is-wishes-chapter .ugbo_nav-secondary {
  display: none;
}

/* zodat je geen lege ruimte onderin houdt */
body.is-wishes-chapter {
  padding-bottom: 1.25rem;
}

.ugbo_header_nav{
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;

}

/* INNER: inhoud begrensd */
.ugbo_header_nav_inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem 0;

  display: flex;
  gap: .5rem;
  align-items: center;
}

.ugbo_header_navlink{
  display:inline-flex;
  padding:.5rem .8rem;
  border-radius: .25rem;
  background:#fff;
  text-decoration:none;
  color: var(--main-color);
  font-weight: 600;
  font-size: .9rem;
  align-items: center;
}

.ugbo_header_navlink:hover {
    background: #f1f1f1;
}

.ugbo_header_navlink span {
    margin-left: .5rem;
}

.ugbo_header_navlink.is-active{
  background: var(--main-color);
  color: var(--txt-color-alt);
}

/* ---------------- FORM CSS ----------------- */

/* Tablist */
.wishes-tabs__list{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.wishes-tab{
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  border-radius: 999px;
  padding: .5rem .8rem;
  cursor: pointer;
  font: inherit;
}

.wishes-tab.is-active{
  background: var(--main-color);
  color: var(--txt-color-alt);
  border-color: transparent;
}

.wishes-tab:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 2px;
}

/* Panels */
.wishes-panel{ display: none; }
.wishes-panel.is-active{ display: block; }

.ugbo_wishes_input{
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .75rem;
  padding: .75rem;
  font: inherit;
  line-height: 1.4;
  background: #fff;
}

.ugbo_wishes_input:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 2px;
}

/* Subgroepen binnen formulieren */
.ugbo_wishes_subgroup {
  margin-left: 1rem;
  margin-top: .5rem;
}

.ugbo_wishes_subgroup_fields,
/* ASL: add css class ugbo_wishes_subgroup_fields_left_less which has less margin-left */ 
.ugbo_wishes_subgroup_fields_left_less {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0,0,0,.1);
}

.ugbo_wishes_subgroup_fields {
  margin-left: 1.5rem;
}

.ugbo_wishes_subgroup_fields_left_less {
  margin-left: .5rem;
}

.ugbo_wishes_subsubgroup {
  margin-left: 0;
  margin-top: .5rem;
}

@media (min-width: 1024px) {

  body.home .chapter.is-active {
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Alleen niet-home: chapter wordt layout-container */
  body .chapter.is-active {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* TOC in linkerkolom (desktop) */
  body:not(.home) .chapter.is-active .ugbo_content_menu {
    position: sticky;
    top: 4.75rem !important;

    /* reset "drawer" gedrag */
    transform: none !important;
    width: auto;
    max-width: none;
    height: auto;
    inset: auto;
    z-index: auto;
  }

  /* Pagina's: alleen de actieve tonen */
  body:not(.home) .chapter.is-active .page {
    display: none;
  }

  body:not(.home) .chapter.is-active .page.is-active {
    display: block;
    max-width: 70ch;
  }

  /* Overlay en knop niet nodig op desktop */
  .ugbo_toc_overlay { display: none !important; }
  .ugbo_toc_btn { display: none; }
}

.ugbo_wishes_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
}

/* ========== Buttons (UGBO) ========== */
.ugbo_btn_container {
    margin-top: 2rem;
}
.ugbo_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;

  padding: .65rem 1rem;
  border: 0;
  border-radius: 999px; /* volledig afgerond */
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-weight: 400;
  line-height: 1;

  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.ugbo_btn:hover{ filter: brightness(0.98); }
.ugbo_btn:active{ transform: translateY(1px); }
.ugbo_btn:focus-visible{
  outline: 2px solid rgba(39,58,122,.6);
  outline-offset: 3px;
}

/* Variants */
.ugbo_btn--primary{
  background: var(--main-color);
  color: var(--txt-color-alt);
}

.ugbo_btn--primary:hover {
  background: color-mix(in srgb, var(--main-color) 85%, white);
}

.ugbo_btn--secondary{
  background: var(--sec-color);
  color: var(--txt-color);
  font-weight: 500;
}

.ugbo_btn--secondary:hover {
  background: color-mix(in srgb, var(--sec-color) 85%, white);
}

/* Full width variant */
.ugbo_btn--block{
  width: 100%;
}

/* Inner content wrapper */
.ugbo_btn__content{
  display: inline-flex;
  align-items: center;
  justify-content: center; /* alles exact in het midden */
  gap: .6rem;
}

/* Zorg dat icons geen extra ruimte trekken */
.ugbo_btn__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ugbo_btn__icon .material-symbols-rounded{
  display: block;
  line-height: 1;
}

/* Outline / ghost button */
.ugbo_btn--outline{
  background: #fff;
  color: var(--txt-color);

  box-shadow: none;
  border: 1.5px solid rgba(0,0,0,.25);
}

.ugbo_btn--outline:hover{
  background: #f7f7f7;
}

.ugbo_btn--outline:active{
  background: #efefef;
}

.ugbo_btn--outline:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,.25);
}

/* ALTIJD icon-only (alle schermen) */
.ugbo_btn--icon{
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Alleen mobiel icon-only */
@media (max-width: 640px){
  .ugbo_btn--icon-mobile{
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* label verbergen op mobiel als icon-mobile */
  .ugbo_btn--icon-mobile .ugbo_btn__label{
    display: none;
  }
}

/* Op >640px: icon-mobile moet NIET geforceerd rond zijn */
@media (min-width: 641px){
  .ugbo_btn--icon-mobile{
    width: auto;
    height: auto;
    padding: .65rem 1rem;      /* match je .ugbo_btn */
    border-radius: 999px;     /* pill (normale knopvorm) */
  }

  .ugbo_btn--icon-mobile .ugbo_btn__label{
    display: inline;
  }
}

/* Sticky zoom */
/* wrapper creëert de start-offset */


.text-zoom {
  position: sticky;
  right: 1rem;
  height: 0;
  display: flex;
  justify-content: flex-end;
  background-color: var(--main-bg-color);
/* ASL: adjusted z-index, was 24 */
  z-index: 30;
  top: var(--nav-height, 57px);
}



body.home .text-zoom  {
    bottom: 2rem;
}

@media (min-width: 768px) {
    .text-zoom {
        top: 52px;
        position: fixed !important;
    }
    body.has_donate_bar.is_scrolled .text-zoom {
      top: calc(57px + 48px);
    }
}


.text-zoom button {
    font-size: 1rem;
    border: 0;
    border-radius: .5rem;
    cursor: pointer;
    color: white;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.text-zoom button span {
    font-size: 2rem;
    color: var(--main-color);
}

.ugbo_main_video,
.ugbo_chap_video {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .ugbo_main_video {
        width: 90%;
        margin-bottom: 0;
    }
    .ugbo_chap_video {
        width: 200%;
        margin-bottom: 0;
    }
}

.ugbo_home_c2a, {
    background-color: white; 
    border-radius: 1rem; 
    box-shadow: 0 5px 5px rgb(0, 0, 0, .1);
    padding: 1rem 1rem 2rem 1rem;
    position: relative;
}

.ugbo_home_c2a .u-icon-badge {
  font-size: 2rem;
}

/* ASL: added style element ugbo_chap_c2a */
.ugbo_chap_c2a {
	visibility: hidden;
	display: none;
}

@media (min-width: 1024px) {
    .ugbo_home_c2a {
        padding: 2rem 2rem 3rem 2rem;
    }
    .ugbo_chap_c2a {
		display: block;
    }
}

body.wishes {
    background-color: #fff;
}
/* =========================
   Wishes: desktop = sidebar rechts
   ========================= */
@media (min-width: 1024px) {

  /* Als de wishes open staan: maak ruimte rechts voor de sidebar */
  body.wishes-open .ugbo_container {
    padding-right: 24rem; /* = sidebar breedte */
  }

  body.wishes-open .ugbo_header,
  body.wishes-open .ugbo_header_nav {
    width: calc(100% - 24rem);
  }

  body.wishes-open .text-zoom {
    right: 25rem;
  }

  body.wishes-open .ugbo_bottomnav {
    right: 24rem;
  }

  /* Sidebar stijl */
  .ugbo_wishes_modal {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;

    transform: none;

    width: 24rem;
    height: 100dvh;
    max-height: none;

    border-radius: 0;
    padding: 0.75rem;

    /* boven content, onder niets anders */
    z-index: 2700;
  }

  /* Overlay op desktop altijd uit */
  .ugbo_wishes_overlay {
    display: none !important;
  }
}

.ugbo_home_img {
    display: flex;
    justify-content: center;
}

.ugbo_home_img img {
    width: 80%;
}

@media (min-width: 1024px) {
    .ugbo_home_img {
        margin-top: -7rem;
    }
}

/* ASL: added css class */
@media (min-width: 1024px) {
	.chapter.chapter--without-aside {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 1024px) {
    .chapter.chapter--wishes {
        grid-template-columns: 1fr !important;
        background-color: #fff;
        padding: 2rem;
        border-radius: 1rem;
        max-width: 800px;
    }
    .wishes-tabs__list {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    body.wishes .ugbo_content {
        margin-top: 1rem;
        align-items: center;
    }
}

.ugbo_content {
  margin-top: 1rem;
}

/* TOC: parent met uitklap */
.ugbo_toc_list .toc-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: .65rem .75rem;
  border-radius: .75rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: inherit;
  text-align: left;
}

.ugbo_toc_list .toc-toggle:hover,
.ugbo_toc_list .toc-toggle:focus-visible{
  background: rgba(0,0,0,.06);
  outline: none;
}

.ugbo_toc_list .toc-arrow{
  display: inline-block;
  transition: transform .18s ease;
  opacity: .75;
}

/* Submenu standaard dicht */
.toc-sublist {
  display: none;
  margin-left: 1rem;
  margin-top: .25rem;
}

/* Parent met children */
.toc-item.has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Pijltje */
.toc-arrow {
  transition: transform .2s ease;
  opacity: .6;
  font-size: .85em;
}

/* Open toestand */
.toc-item.is-open > .toc-sublist {
  display: block;
}

.toc-item.is-open > a .toc-arrow {
  transform: rotate(90deg);
}

/* geneste lijst */
.ugbo_toc_list .toc-sublist{
  list-style: none;
  margin: 0 0 .5rem 0;
  padding: 0 0 0 .75rem; /* inspringen */
}

.ugbo_toc_list .toc-sublist a{
  padding: .55rem .75rem;
  border-radius: .75rem;
}

/* open state */
.ugbo_toc_list .toc-parent.is-open .toc-arrow{
  transform: rotate(180deg);
}

.material-symbols-rounded {
  font-variation-settings:
    'FILL' 0,   /* 0 = outline, 1 = filled */
    'wght' 400, /* thickness */
    'GRAD' 0,
    'opsz' 24;  /* optical size */
  font-size: 24px;
}

.ugbo_mywishes_btn_main_txt {
    display: none;
}

@media (min-width: 1024px) {
    .ugbo_mywishes_btn_main_txt {
        display: inline;
    }
}

.material-symbols-rounded {
  vertical-align: middle;
}

.ugbo_info {
    color: var(--sec-color);
}

body.home .ugbo_nav-sec {
    display: none;
}

/* Tooltips */
.ugbo_tooltip {
  position: relative;
  display: inline-flex;
  cursor: help;
}

/* icon netjes centreren */
.ugbo_tooltip .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1;
}

/* tooltip bubble */
.ugbo_tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  max-width: 260px;
  padding: 0.5rem 0.75rem;

  background: #222;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3;
  border-radius: 4px;

  white-space: normal;
  word-wrap: break-word;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;

  min-width: 200px;
  max-width: 280px;

  /* default: boven */
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
}

/* pijltje */
.ugbo_tooltip::before {
  content: "";
  position: absolute;
  opacity: 0;
  z-index: 19;
  transition: opacity 0.15s ease, transform 0.15s ease;

  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #222;
}

/* tonen */
.ugbo_tooltip:hover::after,
.ugbo_tooltip:hover::before,
.ugbo_tooltip:focus::after,
.ugbo_tooltip:focus::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- POSITIES --- */

/* rechts */
.ugbo_tooltip.right::after {
  top: 50%;
  left: 125%;
  bottom: auto;
  transform: translateY(-50%) translateX(-4px);
}

.ugbo_tooltip.right::before {
  top: 50%;
  left: 115%;
  bottom: auto;
  transform: translateY(-50%);
  border-top-color: transparent;
  border-right-color: #222;
}

/* links */
.ugbo_tooltip.left::after {
  top: 50%;
  right: 125%;
  left: auto;
  bottom: auto;
  transform: translateY(-50%) translateX(4px);
}

.ugbo_tooltip.left::before {
  top: 50%;
  right: 115%;
  bottom: auto;
  transform: translateY(-50%);
  border-top-color: transparent;
  border-left-color: #222;
}

/* onder */
.ugbo_tooltip.bottom::after {
  top: 125%;
  bottom: auto;
}

.ugbo_tooltip.bottom::before {
  top: 115%;
  bottom: auto;
  border-top-color: transparent;
  border-bottom-color: #222;
}


/* =========================================================
   Utilities (klein, herbruikbaar)
   - Gebruik dit om inline styles uit HTML te vermijden.
   ========================================================= */
.u-mt-0{ margin-top: 0 !important; }
.u-opacity-50{ opacity: .5 !important; }
.u-rounded-lg{ border-radius: var(--radius-lg) !important; }
.u-icon-badge{
  font-size: 2.25rem;
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: var(--sec-color);
}

/* ========== STRUCTUREEL: full-bleed header + nav ========== */

/* Header: full-bleed achtergrond */
.ugbo_header{
  width: 100%;
  background-image: url('../images/header-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 76px;
  /* geen sticky hier, laat 'm gewoon in flow */
  z-index: 25;
}

@media (min-width: 768px) {
  .ugbo_header {
    background-image: none;
  }
}

/* Header nav: sticky, full-bleed */
.ugbo_header_nav{
  position: sticky;
  top: 0;
  z-index: 23;
  background-color: #fff;
  border-bottom: 1px solid #ddd;

  /* BELANGRIJK: geen negatieve margins meer */
  margin: 0;
  padding: 0 .25rem; /* padding gaat naar inner container */
}

@media (min-width: 768px) {
  .ugbo_header_nav {
    width: 100%;
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 1rem;
  }
}

/* nav inhoud in container */
.ugbo_header_nav .ugbo_container{
  display: flex;
  gap: .5rem;
  align-items: center;
}

/* Zorg dat je "Meer informatie" rechts kan blijven staan */
.ugbo_header_nav .ugbo_nav-sec{
  margin-left: auto;
}

.ugbo_wishes_modal {
  z-index: 3000;
}

.ugbo_hamb_btn,
.ugbo_search_btn,
.ugbo_login_btn {
  background-color: #fff;
  margin-left: auto;
}

/* ASL: always show search button */  
//.ugbo_search_btn,
.ugbo_login_btn {
  display: none;
}

@media (min-width: 768px) {
  .ugbo_hamb_btn {
/* ASL: don't hide menu button, search and person button are not used */  
//    display: none;
  }
  .ugbo_search_btn,
  .ugbo_login_btn {
    display: block;
  }
}



/* ========== Sidenav overlay + drawer ========== */
.ugbo_sidenav_overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1900; /* vergelijkbaar met .ugbo_toc_overlay */
}

.ugbo_sidenav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(86vw, 22rem);
  background: #fff;
  z-index: 2000; /* vergelijkbaar met .ugbo_content_menu */

  transform: translateX(105%);
  transition: transform .2s ease;

  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  padding: .75rem;

  display: flex;
  flex-direction: column;
}

.ugbo_sidenav.is-open{
  transform: translateX(0);
}

.ugbo_sidenav_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .25rem .25rem .75rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.ugbo_sidenav_title{ font-weight: 700; }

.ugbo_sidenav_close{
  border:0;
  background: transparent;
  cursor:pointer;
  padding:.35rem .55rem;
  border-radius:.6rem;
}
.ugbo_sidenav_close:hover{ background: rgba(0,0,0,.06); }

/* Zoek */
.ugbo_sidenav_search{
  padding: .75rem .25rem .25rem;
}
.ugbo_sidenav_label{
  display:block;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: .35rem;
}
.ugbo_sidenav_input{
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: .75rem;
  padding: .75rem;
  font: inherit;
}

/* Links lijst */
.ugbo_sidenav_nav{
  margin-top: .5rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: .25rem;
}

.ugbo_sidenav_list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.ugbo_sidenav_list a{
  display: block;
  padding: .65rem .75rem;
  border-radius: .75rem;
  text-decoration: none;
  color: inherit;
  line-height: 1.25;
}
.ugbo_sidenav_list a:hover,
.ugbo_sidenav_list a:focus-visible{
  background: rgba(0,0,0,.06);
  outline: none;
}

.ugbo_sidenav_sep{
  height: 1px;
  margin: .5rem 0;
  background: rgba(0,0,0,.10);
}

/* Inloggen onderin */
.ugbo_sidenav_actions{
  margin-top: auto;
  padding: .75rem .25rem .25rem;
}



/* optioneel: body ruimte */
body {
  padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom));
}

.ugbo_page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================
   Footer
   ========================= */


.ugbo_footer {
  background: var(--main-bg-color-dark);
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  clear: both;
  position: relative;
    
}

@media (min-width: 768px) {
  .ugbo_footer {
    margin-bottom: 0;
    padding-bottom: 0;
    height: 100px;
  }
}

.ugbo_footer_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex: 1;
  font-size: .875rem;
  color: var(--txt-color);
  flex-direction: column;
}

@media (min-width: 768px) {
  .ugbo_footer_inner {
    flex-direction: row;
    align-items: center;
  }
}

.ugbo_footer_copy {
  font-weight: 500;
  display: block;
}

.ugbo_footer_nav {
  display: flex;
  gap: 0rem 1rem;
  flex-wrap: wrap;
}

.ugbo_footer_link {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
}

.ugbo_footer_logo {
  display: block;
  height: 64px;
}

@media (max-width: 1023px) {
  body.has-bottomnav .ugbo_footer {
    margin-bottom: 6rem;
  }
}

@media (max-width: 767px) { 
  body.has-bottomnav .ugbo_footer {
    margin-bottom: 10rem;
  }
}

/* ---------------- Bottom nav ---------------- */

.ugbo_bottomnav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  --progress: 25%;
  will-change: transform;
}

@media (min-width: 768px) {
    .ugbo_bottomnav {
      position: sticky !important;
      top: 62px !important;
      left: 0 !important;
      height: 75px;
      max-width: 1200px;
      margin: 0 auto;
      z-index: 20 !important;
      background-color: var(--main-bg-color);
      padding-top: 24px;
      margin-bottom: 3rem;
    }
    body.has_donate_bar .ugbo_bottomnav {
      top: calc(58px + 48px) !important;
    }
    .ugbo_bottomnav_inner {
        border-radius: .5rem;
        border-top: 0 !important;
        box-shadow: 0 5px 5px rgb(0, 0, 0, .05);
    }
    .ugbo_bottomnav .bn_item {
        flex-direction: row;
    }
}

.ugbo_bottomnav_inner {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  align-items:center;
    background:#fff;
  border-top: 1px solid rgba(0,0,0,.12);
    padding: .4rem .6rem calc(.4rem + env(safe-area-inset-bottom));
}

.bn_item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:.4rem .25rem;
  border-radius: .5rem;
  text-decoration:none;
  color: var(--txt-color);
  font-size: .875rem;
}

.bn_item:hover {
    background: #f1f1f1;
}

.bn_num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(39,58,122,.10);
  color: var(--main-color);
  font-weight: 700;
}

.bn_label{
  line-height: 1.1;
  text-align:center;
  font-weight: 500;
  font-size: .78rem;
}

.bn_item.is-active .bn_num{
  background: var(--main-color);
  color: var(--txt-color-alt);
}
.bn_item.is-active .bn_label{
  color: var(--main-color);
  font-weight: 700;
}

@media (min-width: 1024px){
    .bn_label {
        font-size: .875rem !important;
    }
}

.bn_progress{
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  margin-top: .35rem;
  background: rgba(0,0,0,.10);
  overflow:hidden;
  position:relative;
}
.bn_progress::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: var(--progress);
  background: var(--sec-color);
}

/*
@media (min-width: 1024px) {
  .ugbo_footer {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

body.has-bottomnav .ugbo_footer {
  margin-bottom: calc(var(--bottomnav-h) + var(--nav-sec-h) + 2rem);
}

.ugbo_footer_link:hover,
.ugbo_footer_link:focus-visible {
  text-decoration: underline;
}

*/


/* ASL: added style elements */

/* general */
.ugbo_hidden {
  display:none;
}

/* internal link */
.ugbo_internal_link {
  text-decoration: underline;
  cursor: pointer;
}

/* internal link popup */
.ugbo_popup_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  visibility: hidden;
}

.ugbo_popup {
  background-color: var(--main-bg-color);
  width: 90vw;
  height: 80vh;
  border-radius: 12px;
  margin-right: 16px;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
  overflow: auto;
}

.ugbo_popup_close_icon,
.ugbo_popup_back_icon {
  position: absolute;
  font-size: 2rem;
  color: #3d59b0;
  cursor: pointer;
  background: transparent;
  border: none;
}

.ugbo_popup_close_icon {
  top: 0.5rem;
  right: 1rem;
}

.ugbo_popup_back_icon {
  top: 0.7rem;
  right: 3rem;
  display: none;
}

.ugbo_popup_close_icon:hover,
.ugbo_popup_back_icon:hover {
  color: #04398a;
}

.ugbo_popup_content {
  position: relative;
  top: 1.5em;
  height: 66vh;
  overflow: auto;
}

.ugbo_save_wishes_child {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 1rem;
  padding: 0.85rem;
}

.ugbo_content_image_right,
.ugbo_content_image_left {
  border-radius: 3px;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}
.ugbo_content_image_right {
  float: right;
  margin: 8px 0 15px 15px;
}

.ugbo_content_image_left {
  float: left;
  margin: 25px 15px 15px 2px;
}


@media print {

  .page-break {
    break-after: page;        /* modern browsers */
    page-break-after: always; /* fallback for older browsers */
  }

}


.ugbo_donate_h3 {
  width: 100%;
  text-align: center;
}

.ugbo_donate_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 8px;
  margin-bottom: 8px;
  width: 100%;
  text-align: center;
}

.ugbo_donate_btn.wishes-tab {
  width: 100%;
  height: 4em;
  max-width: 10em;
  cursor: pointer;
}

/* Donate bar */
.ugbo_donate_bar[hidden] {
  display: none;
}

.ugbo_donate_bar {
  background-color: var(--main-color);
  color: #fff;
  margin-left: -.25rem;
  margin-right: -.25rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  padding: 0 1rem;
}

.ugbo_donate_text {
  font-size: .85rem;
  opacity: .9;
  text-align: right;
  display: none;
}

@media (min-width: 768px) {
  .ugbo_donate_text {
    display: block;
    flex: 1;
  }
}

.ugbo_donate_bar button:not(.ugbo_donate_close) {
  background: #fff;
  color: var(--main-color);
  border: none;
  border-radius: 999px;
  padding: .3rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}

.ugbo_donate_close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  font-size: 1.1rem;
  padding: .25rem;
  opacity: .8;
}

.ugbo_donate_close:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .ugbo_donate_bar {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
