/* MFW Accordion Shortcode
================================================== */
.mfw-accordion + .mfw-accordion {
    margin-top: 1rem;
}

.mfw-accordion > input[type="checkbox"] {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}

.mfw-accordion > input[type="checkbox"] + label {
    display: block;
    margin: 0;
}

.mfw-accordion > label {
    position: relative;
    display: block;
    padding: 10px 30px 10px 10px;
    cursor: pointer;
    line-height: 1;
    border: 1px solid;
    z-index: 11;
    background: #efefef;
    border-color: #ccc;
}
.mfw-accordion > input[type="checkbox"]:focus ~ label,
.mfw-accordion > label:hover {
    background: rgba( 153, 153, 153, 0.4 );
}

.mfw-accordion > label:after {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -.5em;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mfw-accordion > input[type="checkbox"]:checked + label:after {
    content: "\f068";
}

.mfw-accordion > .mfw-accordion-content-wrap {
    position: relative;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
}
.mfw-accordion > .mfw-accordion-content-wrap.transition {
    transition: max-height 0.3s ease-in-out;
}
.mfw-accordion > .mfw-accordion-content-wrap > .mfw-accordion-content {
    padding: 1em;
}

.mfw-accordion > input[type="checkbox"]:checked ~ .mfw-accordion-content-wrap {
    max-height: 999999px;
    transition: max-height 0.5s ease-in-out;
}

@media print {
    .mfw-accordion .mfw-accordion-content-wrap {
        max-height: inherit;
    }
}
