.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
/* Accordion styles */
.tabs {
  overflow: hidden;
}
.tab {
  border-radius: 5px;
  width: 100%;
  color: #8a036d;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.2);
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #ffff;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #e6e6e6;
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
font-weight: 400efter din adresse;
  max-height: 0;
  padding: 0 1em;
  color: #000;
  background: white;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #ffff;
  cursor: pointer;
}
.tab-close:hover {
  background: #e6e6e6;
}
input:checked + .tab-label {
  background: #ffff;
}
input:checked + .tab-label::after {
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}