.flip-tegel {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .flip-tegel {
    max-width: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .flip-tegel {
    max-width: 325px;
    width: 325px;
  }
}
@media (max-width: 420px) {
  .flip-tegel {
    max-width: 300px;
    width: 300px;
  }
}
.flip-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-tegel:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
}

.flip-back {
  transform: rotateY(180deg);
}

.flip-tegel-overons {
	width: 200px !important;
}

.nummers_bold ol > li::marker {
  font-weight: bold;
}

.default-button a {
  min-width: 220px;
}

.upload-file-empty-text {
  display: none;
}