:root {
    --item-height: 100%;
	--item-shift: 0px;
}

.accordion {
	margin-top: 5px;
	height: calc(100% - 55px);
	overflow: scroll;
}

ul {
	/*scrollbar-color: rgba(0, 0, 0, 0%) rgba(0, 0, 0, 0%);*/
}

li {
	margin: 0px 5px 5px 5px;
}

.accordion input {
	display: none;
}
.box {
	position: relative;
	background: white;
    height: var(--item-height);
    transition: all .15s ease-in-out;
}
.box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: 0 -1px 0 #e5e5e5,0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);
}
header.box {
	background: #00BCD4;
	z-index: 100;
	cursor: initial;
	box-shadow: 0 -1px 0 #e5e5e5,0 0 2px -2px rgba(0,0,0,.12),0 2px 4px -4px rgba(0,0,0,.24);
}

.box-title {
	margin-top: 15px;
	width: calc(100% - var(--item-shift));
	height: var(--item-height);
	padding: 0 20px;
	display: inline-block;
	cursor: pointer;
	-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;

	text-overflow: ellipsis;
	white-space: normal;
	overflow: hidden;
}

.span-title {
	width: calc(100% - var(--item-shift));
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.box-content {
	border-top: 1px solid black;
	width: calc(100% - var(--item-shift));
	padding: 5px 5px;
	font-size: 11pt;
	color: rgba(0,0,0,.54);
	display: none;
}
.box-close {
	position: absolute;
	height: 70px;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}
input:checked + .box {
	height: auto;
	margin: 0 0;
    box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
}
input:checked + .box .box-title {
	border-bottom: 0px solid rgba(0,0,0,.18);
}
input:checked + .box .box-content,
input:checked + .box .box-close {
	display: inline-block;
}
.arrows section .box-title {
	padding-left: 44px;
	width: calc(100%);
}
.arrows section .box-title:before {
	position: absolute;
	display: block;
	content: '\203a';
	font-size: 18pt;
	left: 20px;
	top: 15px;
	transition: transform .15s ease-in-out;
	color: rgba(0,0,0,.54);
}
input:checked + section.box .box-title:before {
	transform: rotate(90deg);
}
