/*--------------------------------------------------------------------------*\
    Accordion content
\*--------------------------------------------------------------------------*/

.accordion__content{
    /*box*/
    width:100%;
    overflow:hidden;

    /*transition*/
    -webkit-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease;
}

/*--------------------------------------------------------------------------*\
        Opened
\*--------------------------------------------------------------------------*/

.accordion__menu-checkbox:checked+.accordion__menu-label+.accordion__content{
    /*box*/
    max-height:10000px;
}

/*--------------------------------------------------------------------------*\
        Closed
\*--------------------------------------------------------------------------*/

.accordion__menu-checkbox:not(:checked)+.accordion__menu-label+.accordion__content{
    /*box*/
    max-height:0px;
}