@charset "UTF-8";
/* CSS Document */

.accordion {
margin: 20px auto;
max-width: 300px;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
}
.more,
.cd {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.more {
border: solid 2px orange;
padding: 1em;
display: block;
color: orange;
font-weight: bold;
border-radius: 10px;
}

.more::after,
.more::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: orange;
transition: all 0.3s;
}
.more::after {
transform: rotate(90deg);
}

.cd {
max-height: 0;
overflow: hidden;
}
.cd p {
margin: 0;
padding: 0.5em 1em 1em;
font-size: 0.9em;
line-height: 1.5;
}
.toggle:checked + .more + .cd {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .more::before {
transform: rotate(90deg) !important;
}