/* alinea opmaak */

.blokje {
  position: relative;
  padding-left: 60px; /* 20px blokje + 40px ruimte */
}

.blokje::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em; /* zorgt dat het blokje ongeveer uitgelijnd is met de tekst */
  width: 20px;
  height: 40px;
  background-color: #eb130d;
}

.blokje.rechts {
  position: relative;
  padding-right: 60px; /* ruimte voor het blokje aan de rechterkant */
  text-align: right;   /* optioneel, als de tekst rechts uitgelijnd moet */
}

.blokje.rechts::before {
  content: "";
  position: absolute;
  right: 0;           /* blokje aan de rechterkant */
  top: 0.25em;        /* uitlijning met tekst */
  width: 20px;
  height: 40px;
  background-color: #eb130d;
}

.blokje2 {
  position: relative;
  padding-left: 60px; /* 20px blokje + 40px ruimte */
}

.blokje2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em; /* zorgt dat het blokje ongeveer uitgelijnd is met de tekst */
  width: 12px;
  height: 20px;
  background-color: #eb130d;
}

/* icon  in text*/

i.icon-normal {
    border-radius: unset;
    font-size: 27px;
    width: 32px;
    height: 32px;
    padding: 19px;
    margin-right: 27px;
    line-height: 32px;
    margin-bottom: 15px;
}

