/* Suche Top-Navigation */


/* Suche */

.search .input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 35px;
    border: none;
    background: none;
    height: 25px;
    width: 100%;
    color: #FFF;
    font-size: 95%;
    border-bottom: 1px solid #FFF;
}

.search .button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background: none;
    height: 25px;
    width: 35px;
    color: #FFF;
    font-family: var(--main-font-fontawesome);
    position: absolute;
    right: 0;
    top: 12px;
    cursor: pointer;
    padding: 0;
}


/* Suchresultate */

.search .content-head {
    padding: 25px 0;
}

.search .content-head .content-title {
    font-weight: 300;
    font-size: 1.2rem;
}

.search-form {
    position: relative;
    margin-bottom: 15px;
}

.search-form-input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background: none;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-right: none;
    padding: 10px 15px;
}

.search-form-button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    width: 50px;
    border: none;
    background: none;
    background-color: var(--main-color);
    color: #FFFFFF;
    font-family: var(--main-font-fontawesome);
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
}

.search-form-button:hover {
    opacity: 0.6;
    transition: all 0.5s ease-out;
}

.search-action {
    overflow: hidden;
    margin: 20px 0;
    border-bottom: 1px solid var(--main-color);
    display: table-row;
    width: 100%;
}

.search-action-item {
    width: 25%;
    display: table-cell;
    vertical-align: bottom;
}

.search-action-link {
    display: block;
    padding: 5px 10px;
    line-height: 30px;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    background: rgba(110, 153, 177, 0.5);
    border-radius: 5px 5px 0 0;
}

.search-action-link:hover,
.search-action-link:focus,
.search-action-link:active,
.search-action-link.active {
    color: #FFFFFF;
    background: rgba(110, 153, 177, 1);
    padding-bottom: 25px;
    transition: all 0.5s ease-out;
}

.search-action-link:hover::after,
.search-action-link:focus::after,
.search-action-link.active::after {
    content: '\f0d7';
    float: right;
    font-family: var(--main-font-fontawesome);
}

.search-list-item {
    display: block;
    background-color: #EFEFEF;
    margin-bottom: 5px;
    padding: 5px 10px 5px 30px;
    font-size: 80%;
    color: #333333;
    text-decoration: none;
}

.search-list-item:before {
    display: inline-block;
    width: 20px;
    margin-left: -20px;
    content: '\f138';
    font-family: var(--main-font-fontawesome);
}

.search-list-item:hover,
.search-list-item:focus,
.search-list-item:active {
    background-color: #333333;
    color: #FFFFFF;
}

.list.article-group .item {
    width: 33.33%;
    float: left;
    position: relative;
}

.list.article-group .item .image a img {
    width: 100%;
}

.list.article-group .item .title {
    height: 30px;
    line-height: 30px;
    position: absolute;
    bottom: 0;
    display: block;
    background: rgba(47, 47, 47, 0.9);
}