/* body {
	height: calc(100% - 20px);
	width: calc(100% - 20px); 
	margin: 0;
	padding: 10px;
	display: flex;
	background: #f2f2f2;
	color: rgba(0,0,0,.87);
	font-family: 'Roboto', sans-serif;
} */
.CSSaccordion {
	margin: auto;
	width: 100%;
}
.CSSaccordion input {
	display: none;
}
.CSSbox {
	position: relative;
	background: rgba(255,255,255,.3);
    height: 45px;
    transition: all .15s ease-in-out;
}
.CSSbox::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.CSSbox {
	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);
}
header .CSSbox-title {
	margin: 0;
	font-weight: normal;
	font-size: 15pt;
	color: white;
	cursor: initial;
}
.CSSbox-title {
	width: calc(100% - 20px);
	height: 44px;
	line-height: 44px;
	padding: 0 20px;
	display: inline-block;
	cursor: pointer;
    color:#4c87c4;
	-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;
}
.CSSbox-content {
	width: calc(100% - 40px);
	padding: 10px 20px;
	color: rgba(0,0,0,1);
	display: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
}
.CSSbox-close {
	position: absolute;
	height: 64px;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}
input:checked + .CSSbox {
	height: auto;
	margin: 10px 0;
    box-shadow: 0 0 6px rgba(0,0,0,.16),0 6px 12px rgba(0,0,0,.32);
}
input:checked + .CSSbox .CSSbox-title {
	border-bottom: 1px solid rgba(0,0,0,.18);
}
input:checked + .CSSbox .CSSbox-content,
input:checked + .CSSbox .CSSbox-close {
	display: inline-block;
}
.CSSarrows section .CSSbox-title {
	padding-left: 34px;
	width: calc(100% - 64px);
}
.CSSarrows section .CSSbox-title:before {
	position: absolute;
	display: block;
	content: '\203a';
	font-size: 18pt;
	left: 20px;
	top: -2px;
	transition: transform .15s ease-in-out;
	color: rgba(0,0,0,.54);
}
input:checked + section.CSSbox .CSSbox-title:before {
	transform: rotate(90deg);
}