/*
Theme Name: Affiliate Theme - Child
Theme URI: http://affiliatetheme.io
Description: Legen... wait for it... Dary!
Author: endcore Medienagentur
Author URI: http://endcore.com
Template: affiliatetheme
Version: 1.0
*/

/* Style the buttons that are used to open and close the accordion panel */
.wrap { max-width: 400px; margin: 1em auto;  }
/*--------Accordion 1 Blau -------*/

.accordion .panel {
  margin: 0 auto;
  height: 0;
  overflow:hidden;
  background-color: white;
  line-height: 1.4;
  padding: 0 20px;
  box-sizing: border-box;
  transition: all 0.5s;
}

.accordion input:checked~.panel {
  height: auto;
  color: #333;
  padding: 20px;
  transition: all 0.5s;
}

.accordion label {
  cursor: pointer;
  background-color: hsl(200,80%,80%);          /* Hellblau */
  border-bottom: 2px solid hsl(200,80%,80%);
  display: block;
  padding: 15px;
  width: 100%;
  color: #fff;
  font-weight: 400;
  box-sizing: border-box;
  z-index: 100;
}

.accordion input{
  display: none;
}

.accordion input:checked+label {
  background-color: hsl(200,80%,50%);            /* Dunkelblau */
}

.accordion input:checked+label:before {
  transition: 0.5s;
}