/* 
  Toggle box cascade style sheet (toggle-box.css)

  © Copyright 2022 by J. E. Purkyně University. All rights reserved
*/
:root{
  --a: 71.3125px;
}
/*toggle box*/
#l{
  height:var(--a);
  overflow:hidden;
  margin:2.1875em 0;
  border-top:1px solid black;
  border-bottom:1px solid black;
  transition-property:height;
  transition-duration:.5s;
  transition-timing-function:ease-out;
}
/*toggle box active (opened)*/
#l.b{
  height:var(--b);
}
/*toggle box styles for active state*/
#l:hover,#l.b{
  background-color:lightgray;
}
/*toggler*/
#l>h2{
  font-size:1.5em;
  margin:unset;
  cursor:pointer;
  padding-block-start:0.83em;
  padding-block-end:0.83em;
}
/*toggle content*/
#l>div{
  padding:0.3125em 0.625em;
}