/* BRAILLE PAGE STYLES */

/* ACCORDION */

*, *::after, *::before{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
div.c{
  position: relative;
  margin-bottom: -1px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
input{
	display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  visibility: 0;
}
h1.c{
  line-height: 14vh;
  font-size: 1.4em;
  color: #121212;
  padding-left: 1em;
  position: relative;
}
h1.c:hover {
	background: #fff6f0;
}
label{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
div.p {
  max-height:0px;
  overflow: hidden;
  transition:max-height 1s ease-in-out;
  background-color: white;
}
div.p p {
  padding: 1em;
}
input:checked ~ h1 ~ div.p{
  max-height:1200px;
}
input:checked ~ h1 {
  background: #fff6f0; /* background stays peach while panel is open */
}
.accordion-menu {
	margin-bottom: 3em;
}




/* BRAILLE TITLE */

.braille-title {
  position: relative;
  display: block;
  font-size: 2rem;
  cursor: pointer;
}
.braille-text,
.print-text {
  transition: opacity 0.3s ease;
  display: block;
}
.print-text {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.braille-title:hover .braille-text {
  opacity: 0;
}
.braille-title:hover .print-text {
  opacity: 1;
}



/* DIVIDER */
.divider {
	max-width: 300px;
	margin: 4em auto;
	opacity: .2;
  box-shadow: 0 10px 12px rgba(0,0,0,0.2);
}
.dividerbrl {
	font-size: 32px;
	font-weight: bold;
	color: #ddd;
	margin: 1.8em 0;
}