/*burger menu*/
#burger {
    display: none;
}

/*sticky footer*/
html,
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}
body > footer {
    margin-top: auto;
}

/*.is-tag {
    background-color: #bfb79e !important;
    color:white !important;
}*/

.img-rounded {
    border-radius: 5%;
}

hr.dots {
    border-top: 1px dashed;
    background-color: white;
}

.hline {
    border-bottom: 1px solid;
    border-bottom-color: rgb(219, 219, 219);
}

#cookiebarsb {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 20%;
    z-index: 2;  
}
#cookiebarsb {
    background: white;
    line-height: 2;
    text-align: center;
    /*font-size: 30px;*/
    /*font-family: sans-serif;*/
    /*font-weight: bold;*/
    /*box-shadow: 0 0 15px #00214B;*/
    border-top: 1px solid silver;
}
.center {
    width:100%;
  margin: 0;
  position: absolute;
  top: 50%;
  left:     50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.zbcode{font-family: Courier; font-size:1.2rem;}
.strike {text-decoration: line-through;}

.bar-container {
  width: 100%; /* Breedte van de tabelcel */
  height: 1rem; /* Hoogte van de balk */
  background-color: #f5f5f5; /* Achtergrondkleur */
  border-radius: 4px; /* Maak de hoeken afgerond */
  overflow: hidden; /* Zorg dat de inhoud binnen blijft */
  position: relative; /* Voor eventuele toekomstige aanpassingen */
}

.bar {
  height: 100%; /* Vul de hele hoogte van de container */
  background-color: #c5cbd1; /* Primaire kleur van Bulma (groen) */
  border-radius: 4px; /* Zorg dat de balk mooi afgerond is */
  transition: width 0.3s ease; /* Voeg animatie toe voor dynamische updates */
}