/* Main container */

.tx-solr {
    max-width: 940px;
    margin: 0 auto;
}

/* Main Solr Header */
.tx-solr-header {
    margin: 1rem 0 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* Form result */
.tx-solr-search-form .input-group .s12 {
    display: flex;
}

#tx-solr-search-form-pi-results .input-group{
    margin-bottom: 0;
}

input[type=text].tx-solr-q {
    flex: 1;
    height: 28px;
    padding: 12px;
    font-size: 16px;
    border-color: var(--base-color);
    box-sizing: content-box;
}

input[type=text].tx-solr-q {
    width: 410px;
}

.template-3Spalten input[type=text].tx-solr-q {
    width: 410px;
}

.tx-solr-submit {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    outline: none;
    /*color: var(--extra-font-color);*/
    color: #ffffff;
    background-color: var(--base-color);
    transition: all .2s ease-in-out;
}

.tx-solr-submit button {
    height: 100%;
}

.tx-solr-submit:hover {
    background-color: #bb7baa;
    border-color: #bb7baa;
}

/* Form result per page */
#tx-solr-pagination-results-per-page {
    display: none;
}

#tx-solr-pagination {
    margin: 2rem 0 0;
}

/* Pagination list */
.tx-pagebrowse {
    list-style: none;
    margin: 1rem 0 2rem;
    padding: 0;
    text-align: center;
}

.tx-pagebrowse ol {
    padding: 0;
}

.tx-pagebrowse li {
    display: inline-block;
    margin: 0 .25rem;
}

.tx-pagebrowse a {
    color: var(--base-color);
    text-decoration: none;
}

.tx-pagebrowse a:hover {
    text-decoration: underline;
}

.tx-pagebrowse-current,
.tx-pagebrowse-page a {
    display: block;
    padding: .3rem 0.7rem;
    border: 1px solid var(--base-color);
    transition: all .2s ease-in-out;
}

.tx-pagebrowse-page a:hover {
    color: var(--extra-font-color);
    background-color: #bb7baa;
    border-color: #bb7baa;
    text-decoration: none;
}

.tx-pagebrowse-current {
    color: var(--extra-font-color);
    background-color: var(--base-color);
}

.tx-pagebrowse li:first-child {
    margin-left: 0;
}

.tx-pagebrowse li:last-child {
    margin-right: 0;
}

.tx-pagebrowse li.tx-pagebrowse-pages.pages {
    border: none;
}

/* Results list */

ol.results-list {
    padding: 0;
    list-style: none;
}

.results-entry {
    margin: 0 0 1rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--base-color);
}

.results-topic {
    margin: 16px 0 -10px 0;
    line-height: 1.4;
}

.results-topic a {
    display: block;
    margin: 0 0 0 0;
    color: var(--base-color);
    font-size: 16px;
    font-weight: 700;
}

.results-list .results-topic > a {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.results-topic a:hover {
    text-decoration: underline;
}

p.result-content {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.results-highlight {
    background-color: #e5cee0;
}

/* hidden elements */
.relevance,
#tx-solr-search-functions {
    display: none !important;
}

/* responsive mobile */
@media only screen and (max-width: 767px) {
    .tx-pagebrowse li {
        margin: .5rem 1rem;
    }
    .tx-pagebrowse li.tx-pagebrowse-pages.pages {
        display: block;
    }

    input[type=text].tx-solr-q {
        width: 93%;
    }

    .tx-solr-submit button {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }

    .template-3Spalten input[type=text].tx-solr-q {
        width: 92%;
    }

    .template-3Spalten .tx-solr-submit button {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }

    .mobile-hidden {
        display: none !important;
    }
}