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

.accordion {
    margin: 0 auto;
width: 100%;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 1em;
    width:92%;
    margin: 0 auto;
    padding: 0.7em 0 0 0;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
display: block;
color: #000;
 font-family: 'Cormorant Infant', serif;
font-weight: bolder;
letter-spacing: 1.5px;
    font-size: 0.8em;
    position: relative;
    margin: 0 auto;
    text-align: center;
    font-weight: 300;
    text-align: right;
    width: 90%;
}

.title::after,
.title::before {
content: "";
position: absolute;
right: -3%;
top:  -0.3em;
width: 0.05em;
height: 0.6em;
background-color: #000000 !important;
transition: all 0.3s;
}


.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
    text-align: center;
overflow: hidden;
    margin: 0 auto;
 font-family: 'Cormorant Infant', serif;
      font-family: "Klee One", cursive;
 font-weight: 300;
    letter-spacing: 0;
    margin-top: 0.5em;
}
.content p {
margin:0;
padding: 0.3em 0.3em;
font-size: 0.65em;
line-height: 1.5em;
    color: #000;
     display: inline-block;
}


.toggle:checked + .title + .content {
max-height: 500px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}