/* SIPA Search Style */
form.sipa-search-light {
    margin: 0;
}
form.sipa-search-light + .sipa-search-results {
    margin: 0;
}
form.sipa-search-light > p {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    margin: 0;
}
form.sipa-search-light > p > * {
    flex:1;
}
form.sipa-search-light > p > button {
    flex:auto;
    max-width: max-content;
}
form.sipa-search-light > p > button[type="submit"] {
    padding: .75rem 1rem;
    border: none;
    background: none;
    border-radius: unset;
    font-size: 0;
}
form.sipa-search-light > p > button[type="submit"] > i {
    font-size: 1.2rem;
    font-style: normal;
    line-height: 1;
}
.sipa-search-results {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sipa-search-results:not(.empty) > * {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 1rem 0;
}
.sipa-search-results > * + * {
    border-top: 1px solid rgba(0,0,0,.15);
}
.sipa-search-results > *:hover {
    z-index: 2;
}
.sipa-search-results > * > a.stick {
    position: absolute;
    z-index: 2;
    inset: 0;
    margin: 0 !important;
    font-size: 0;
}
.sipa-search-results > * > .text > * {
    margin: 0;
}
.sipa-search-results > * > .text > * + * {
    margin-top:.5rem;
}
.sipa-search-results > * > .text > :is(h1,h2,h3,h4,h5,h6) {
    font-size: 1.2rem;
}
.sipa-search-results > * > .text > .result-cat {
    font-size: .7rem;
    opacity: .7;
    display: none;
}
.sipa-search-results > * > picture {
    max-width: 7.5rem;
}
.sipa-search-results > * > picture img {
    width: 100%;
    display: block;
    margin: 0;
}
.sipa-search-results:not(.fill) + ._go {
    display: none;
}
.sipa-search-results + ._go {
    margin: 0;
    padding: .5rem;
    text-align: right;
    background-color: rgba(0,0,0,.05);
}
.sipa-search-results .no-results {
    padding: 1rem;
    margin: 0;
}
.sipa-search[data-position="absolute"] {
    position: relative;
    z-index: 1;
}
.sipa-search[data-position="absolute"] > .sipa-search-results:is(.fill,.empty) {
    position: absolute;
    z-index: 2;
    inset: 100% 0 auto 0;
    max-height: 80vh;
    overflow: auto;
    background-color: #ffffff;
    padding: 1rem;
}
.sipa-search[data-position="absolute"] ._go {
    position: absolute;
    z-index: 9;
    inset: 100% 0 auto auto;
}
[data-theme="dark"] .sipa-search[data-position="absolute"] > .sipa-search-results:is(.fill,.empty) {
    background-color: rgba(0,0,0,.85);
}
[data-theme="dark"] .sipa-search-results > * + * {
    border-top-color:rgba(255,255,255,.35);
}
[data-theme="dark"] form.sipa-search-light > p > button[type="submit"] {
    color: #ffffff;
}