/****************************************************************************
 * Item
 ****************************************************************************/
.section_accordion_item {
    margin-bottom: 2rem;
    -webkit-transition: height .5s ease;
    -moz-transition: height .5s ease;
    -ms-transition: height .5s ease;
    -o-transition: height .5s ease;
    transition: height .5s ease;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width:40em){
    .section_accordion_item {
        margin-bottom: 3rem;
    }
}
@media screen and (min-width:64em){
    .section_accordion_item {
        margin-bottom: 4rem;
    }
}

/****************************************************************************
 * Accordion Content
 ****************************************************************************/
.section_accordion_item .section_accordion_title {
    cursor: pointer;
    position: relative;
}
.section_accordion_item .section_accordion_title > *:last-child {
    margin-bottom: 0;
}

.section_accordion_item .section_accordion_title:before {
    content: ''; position: absolute;
    left: -2.75em; top: 50%;
    font-size: 1rem; line-height: 1;
    width: 2.25em; height: 2.25em;
    /*width: 1.75em; height: 1.75em;*/
    background: url(../img/winterfest-icon-accordion-minus.png) no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    opacity: 0;
    -webkit-transform: translate(0,-50%) rotate(90deg);
    -moz-transform: translate(0,-50%) rotate(90deg);
    -ms-transform: translate(0,-50%) rotate(90deg);
    -o-transform: translate(0,-50%) rotate(90deg);
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
/*.section_accordion_item .section_accordion_title:after {
    content: ''; position: absolute;
    left: -2em; top: 50%;
    font-size: 1rem; line-height: 1;
    width: 1.25em; height: 0.25em;
    background-color: #FFFFFF;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
} */
.section_accordion_item .section_accordion_title:after {
    content: ''; position: absolute;
    left: -2.75em; top: 50%;
    font-size: 1rem; line-height: 1;
    width: 2.25em; height: 2.25em;
    background: url(../img/winterfest-icon-accordion-plus.svg) no-repeat;
    background-size: contain; z-index: 20;
    background-position: 50% 50%; opacity: 1;
    -webkit-transform: translate(0,-50%) rotate(90deg);
    -moz-transform: translate(0,-50%) rotate(90deg);
    -ms-transform: translate(0,-50%) rotate(90deg);
    -o-transform: translate(0,-50%) rotate(90deg);
    transform: translate(0,-50%) rotate(90deg);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.section_accordion_item.active .section_accordion_title:before {
    opacity: 1;
    -webkit-transform: translate(0,-50%) rotate(0deg);
    -moz-transform: translate(0,-50%) rotate(0deg);
    -ms-transform: translate(0,-50%) rotate(0deg);
    -o-transform: translate(0,-50%) rotate(0deg);
    transform: translate(0,-50%) rotate(0deg);
}
.section_accordion_item.active .section_accordion_title:after {
    opacity: 0;
    -webkit-transform: translate(0,-50%) rotate(0deg);
    -moz-transform: translate(0,-50%) rotate(0deg);
    -ms-transform: translate(0,-50%) rotate(0deg);
    -o-transform: translate(0,-50%) rotate(0deg);
    transform: translate(0,-50%) rotate(0deg);
}
/*.section_accordion_item.active .section_accordion_title:after {
    width: 0;
    -webkit-transform: translate(-50%,-50%) rotate(-90deg);
    -moz-transform: translate(-50%,-50%) rotate(-90deg);
    -ms-transform: translate(-50%,-50%) rotate(-90deg);
    -o-transform: translate(-50%,-50%) rotate(-90deg);
    transform: translate(-50%,-50%) rotate(-90deg);
}*/

@media screen and (max-width:39.9375em){
    .section_accordion_item .section_accordion_title {
        padding-left: 3em;
    }
    .section_accordion_item .section_accordion_title:before,
    .section_accordion_item .section_accordion_title:after {
        left: 0;
    }
    /*.section_accordion_item .section_accordion_title:after {
        left: 1.125em;
    }*/
}

@media screen and (min-width: 40em){
    .section_accordion_item .section_accordion_title:after,
    .section_accordion_item .section_accordion_title:before{
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 64em){
    .section_accordion_item .section_accordion_title:after,
    .section_accordion_item .section_accordion_title:before {
        font-size: 1.25rem;
    }
}


/****************************************************************************
 * Accordion Content
 ****************************************************************************/
.section_accordion_item .section_accordion_content{
    position: absolute; left: 0; right: 0;
}
.section_accordion_item.active .section_accordion_content {
    display: block;
}