/*
body {
    display: flex;
    background: #E7E8E3;
    font-family: 'Roboto', sans-serif;
}
*/
.accordion {
    margin: auto;
    width: auto;
}
.accordion input {
    display: none;
}
.box {
    position: relative;
    background: white;
    height: auto;
    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 2px rgba(0,0,0,.24);
}
header.box {
    background: #C60751;
    z-index: 100;
    cursor: initial;
}
header .box-title {
    font-size: 120%;
    color: white;
    cursor: initial;
}
.box-title {
    height: auto;
    line-height: auto;
    font-size: 140%;
    padding: 0 5px;
    display: inline-block;
    cursor: pointer;
}
.box-content {
    width: calc(100% - 40px);
    padding: 30px 20px;
    font-size: 11pt;
    color: rgba(0,0,0,.54);
    display: none;
}
.box-close {
    position: absolute;
    height: auto;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}
input:checked + .box {
    height: auto;
    margin: 16px 0;
}
input:checked + .box .box-title {
    border-bottom: 1px 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: 22px;
    width: calc(100% - 64px);
}
.arrows section .box-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.box .box-title:before {
    transform: rotate(90deg);
}