/*
TOGGLE BLOCK
*/
h2.jscomp-toggle-block {
    position: relative;
}

h2.jscomp-toggle-block span:after {
    position: absolute;
    display: block;
    content: "+";
    width: .7em;
    height: 1em;
    top: 0;
    right: 0;
    font-size: 120%;
    line-height: 1;
    font-weight: 100;
    font-family: Tahoma;
    text-align: center;
    vertical-align: text-top;
}

h2.jscomp-toggle-block-is-open span:after {
  content: "–";
}

.jscomp-toggle-block-content {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.jscomp-toggle-block-visible-setup {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.jscomp-toggle-block-visible {
    opacity: 1;
    max-height: 20000px;
    overflow: auto;
}

.jscomp-toggle-block-hidden-setup {
    opacity: 1;
    max-height: 20000px;
    overflow: auto;
}

.jscomp-toggle-block-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

/*
TOGGLE LIST
*/
ol.jscomp-toggle-list > li,
ul.jscomp-toggle-list > li {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

li.jscomp-toggle-list-visible-setup {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

li.jscomp-toggle-list-visible {
    opacity: 1;
    max-height: 50px;
}

li.jscomp-toggle-list-hidden-setup {
    opacity: 1;
    max-height: 50px;
}

li.jscomp-toggle-list-hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

/*
FILTERED LIST
*/
.jscomp-filtered-list > li {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.jscomp-filtered-list > li.jscomp-filtered-list-enter-active {
    -webkit-transition: all .8s ease-out;
    -moz-transition: all .8s ease-out;
    -ms-transition: all .8s ease-out;
    -o-transition: all .8s ease-out;
    transition: all .8s ease-out;
}

li.jscomp-filtered-list-enter {
    max-height: 0;
    overflow: hidden;
}

li.jscomp-filtered-list-enter-active {
    max-height: 50px;
}

li.jscomp-filtered-list-leave {
    max-height: 50px;
}

li.jscomp-filtered-list-leave-active {
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid #fff;
    opacity: 0.8;
}
