.search_module {
    position: relative;
}
#results {
    display: none;
    background: white;
    z-index: 999;
    width: 100%;
    border: 1px #ebebeb solid;
    padding: 20px;
}
.search_result_inner {
    background: white;
    border-bottom: 1px #cecece solid;
    padding: 20px;
}
.search_result_category {
    font-weight: bold;
    color: #5c5c5c;
}
.search_result_inner h3 {
    text-transform: lowercase;
    margin: 0;
    padding: 0;
}
.search_result_inner h3:first-letter {
    text-transform: uppercase;
}
.search_result_inner iframe {
    max-width: 100%;
}
.search_result_inner:last-child {
    border-bottom: none;
}
.is-hidden { 
    display: none; 
}
#accordion {
    margin-top: 1rem;
}
#accordion * {
    text-transform: unset;
}
details h2, details h3 {
    margin: 0 0 0 2rem;
}
details {
    background: white;
}
summary {
    cursor: pointer;
}
details.top-level {
    position: relative;
    background: white;
    margin-bottom: 1.5rem;
}
details.sub-level {
    position: relative;
    background: white;
}
details.sub-level .answer {
    background: #f3f3f3;
}
.answer {
    padding: 1rem;
}
.sub-level {
    margin-top: 1rem;
    margin-left: 1rem;
}
summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #000;
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    transition: .25s transform ease;
}
details[open] > summary:before {
    transform: rotate(90deg);
}