
.wrapper {
  color:black;
  margin: 10% auto;
  width: 90%; border-radius: 10px;
  border: 3px rgba(20,20,20,0.1) solid;
  xbackground:rgba(100,200,200,0.2)
}

.wrapper ul{
  list-style: none;
  margin: 0; font-size: 12pt; font-family: arial;
  padding: 0; color:black;
  backxground:rgba(100,200,100,0.5)
}

.wrapper label{
  display: block;
  cursor: pointer;
  padding: 10px;
  border: 0px solid red;
  height:50px;
  border-bottom: none;
  font-size: 120%; xcolor:rgba(50,50,155,0.8);
  color:#555
}
.wrapper label.first{
  border-bottom: 5px solid rgb(200,200,0);
  margin-top:10px;
}

.wrapper label.last{
  border-bottom: 5px solid rgb(200,200,0);
  height:40px;
}

.wrapper label:hover{
  xbackground: rgba(200,200,0,1);
  font-weight: bold;
  color: blue; xbackground: yellow;
}

.wrapper label.first:hover {
  xborder-radius: 15px 15px 0 0;
}
.wrapper label.last:hover {
  bxorder-radius: 0 0 15px 15px;
}


.wrapper ul ul li{
  padding: 0pt 0 19pt 9pt; margin-left:5pt;
  background: transparent;
  font-size: 90%; height: 5pt;
}
.wrapper ul ul li:last-child{
  padding-bottom: 20pt;
}


.wrapper input[type="checkbox"]{
  position: absolute;
  left: -9999px;
}

.wrapper input[type="checkbox"] ~ ul{
  height: 0pt;
  transform: scaleY(0);
}

.wrapper input[type="checkbox"]:checked ~ ul{
  height: auto;
  transform-origin: top;
  transition: transform .2s ease-out;
  transform: scaleY(1); 
}

.wrapper input[type="checkbox"] + label.last {
  xbackground: #26C281;
  border-bottom: 0px solid rgb(55,55,255,0.1);
}

.wrapper input[type="checkbox"] + label{
  xbackground: #26C281;
  border-bottom: 5px solid rgb(55,55,255,0.1);
}

.wrapper input[type="checkbox"]:checked + label{
  xbackground: #26C281;
  xborder-bottom: 5px solid rgb(55,55,255,0.7);
}

