.openinghours {
  color: var(--dz-white);
  font-size: var(--dz-fs-highlight-sm);
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
}

.openinghours__line {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 0px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.openinghours__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: 0 0 10px;
  display: inline-block;
}

.openinghours__dot--open {
  background-color: #39b54a;
}

.openinghours__dot--closed {
  background-color: #ff3b30;
}

.openinghours__text {
  color: inherit;
}

/* openingsuren geel */
.openinghours__text,
.openinghours__text--white,
.openinghours__text--mixed {
    color: var(--dz-white);
}

.openinghours__hours {
    color: var(--dz-yellow) !important;
}

@media (max-width: 767px) {
  .openinghours__line {
    justify-content: center;
    text-align: center;
  }
}