/*
 * dit is een soort van mijn eigen versie van Tailwind;
 * standaard classes die ik op veel plaatsen gebruik.
 */
.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}
.small-padding {
  padding: 2px !important;
}
.width100P {
  width: 100%;
}
.height100P {
  height: 100%;
}
.full100P {
  width: 100%;
  height: 100%;
}
.divCenter {
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.divCenterFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.marginAuto {
  margin: auto;
}
.no-border {
  border: none !important;
}
.visibilityHidden {
  visibility: hidden;
}
