.behandelingen-container {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
}
.behandeling-groep {
  margin-top: 0;
  margin-bottom: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
}
.behandelingen-groep-kop {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 2rem;
}
.behandelingen-groep-titel {
  font-size: 3rem;
  text-align: center;
  margin: 1rem;
}
.behandelingen-groep-subtitel {
  text-align: center;
  margin: .5rem;
}
.behandeling-menu-item {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  display: block;
  padding: 1rem;
}
.behandeling-menu-item:hover {
  text-decoration: none;
}
.behandeling-menu-item::before {
  content: "▾";
}
.behandelingen-onderdeel a:active, .behandelingen-onderdeel a:focus {
  color: #A627E2;
}
.behandelingen-onderdeel a:active::before, .behandelingen-onderdeel a:focus::before {
  content: "▴";
}
.behandelingen-onderdeel {
  background-color: #fff;
  margin: 4px 12rem;
  padding: 4px 5rem;
}
.behandelingen-onderdeel-kop {
  display: flex;
  justify-content: space-between;
}
.behandelingen-prijs {
  display: flex;
}
.prijs-label {
  color: #fff;
  width: 200px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  margin: 1rem 2px;
  padding: 12px 1rem;
  border-radius: 4px;
}
.prijs-member {
  background: rgb(162,44,216);
  background: linear-gradient(90deg, rgba(162,44,216,1) 0%, rgba(76,145,221,1) 100%);
}
.prijs-inloop {
  background-color: #4DAFE4;
}
.behandelingen-onderdeel-tekst {
  margin-left: 2.2rem;
  color: #555;
}



/* MEDIAQUERIES */

@media (max-width: 1400px) {
    .behandelingen-onderdelen {
      margin: 1rem 6rem;
    }
    .behandelingen-onderdeel {
      margin: 4px 3rem;
      padding: .5rem 3rem;
    }
}

@media (max-width: 1024px) {
  .behandelingen-prijs {
    justify-content: center;
  }
  .behandelingen-onderdeel-kop {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .behandelingen-groep-titel {
    font-size: 2rem;
    margin: .5rem;
  }
  .behandelingen-header {
    padding-bottom: 6rem;
  }
  .behandeling-groep {
   margin: 0; 
  }
  .behandelingen-groep-kop {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .behandelingen-onderdelen {
    margin: .5rem 0;
  }
  .behandelingen-onderdeel {
    margin: 4px 0;
    padding: .5rem 2rem;
  }
  .behandelingen-container {
    padding: 4rem 1rem;
  }
  .behandeling-menu-item {
    padding: 0;
    font-size: 1.2rem;
  }
  .prijs-label {
    width: 180px;
    height: 3rem;
    margin: .6rem 2px;
    padding: .8rem 1rem;
  }
}
@media (max-width: 480px) {
  .prijs-label {
    height: 4rem;
  }
}