/*
Theme Name: tagungsplaner
Author: Debüser & Bee Werbeagentur GmbH
Author URI: http://www.dplusb.de
Version: 1.0
*/

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9em;
    color: #4a4a4a;
    -webkit-text-size-adjust: none;
}

body {}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3em;
}

h1 {
    display: inline-block;
    padding: 1em;
    background-color: rgba(12,66,129,.8);
    font-size: 1.2em;
    color: #fff;
    line-height: 1.4em;
    font-weight: 400;
}

h2 {
    font-size: 1.1em;
    text-transform: uppercase;
    margin-bottom: 1em;
    display: block;
}

body.home h2 {
    text-align: center;
}

h2:after {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    border-bottom: 1px solid #4a4a4a;
    margin-top: 20px;
    margin-bottom: 30px;
}

body.home h2:after {
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

h2.no_after:after {
    display: none;
}

h3 {
    color: #0c4281;
    font-size: 1em;
    margin-bottom: .8em;
    line-height: 1.4em;
}

h4 {
    font-size: 1em;
    font-weight: 400;
    font-style: italic;
    margin-bottom: .5em;
    line-height: 1.4em;
}

h5 {
    font-size: .9em;
    margin-bottom: .5em;
}

h6 {
    font-size: .9em;
    color: #0c4281;
    font-weight: 400;
    margin-bottom: .5em;
    line-height: 1.4em;
}

ul,
p,
table,
div {
    line-height: 1.6em;
}

a {
    color: #6a6a6a;
    text-decoration: none;
}

a:visited {}

a:hover,
a:active {
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

strong {
    font-weight: 600;
}

em {
    font-style: italic;
    font-weight: 100;
}

img {
    max-width: 100%;
}


/* ############################################################ Universal Elements ############################################################ */

.contentwidth {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1em;
    position: relative;
}

.contentwidth_half {}

.contentwidth_half_content {
    width: 100%;
    max-width: 640px;
    padding: 0 1em;
    position: relative;
}

.content_section,
.contentwidth_half {
    padding: 2em 0;
}

.darkblue {
    background-color: #0c4281;
    color: #fff;
}

.darkblue h2:after {
    border-bottom: 1px solid #fff;
}

.midblue {
    background-color: #5587c1;
    color: #fff;
}

.lightblue {
    background-color: #f1f2f8;
}

.orange {
    background-color: #fbb547;
}

div.hr_small {
    width: 40%;
    height: 1px;
    border-bottom: 1px solid #4a4a4a;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

#maincontent .back_button {
    display: inline-block;
    padding: .3em .9em;
    font-weight: 100;
    background-color: #5587c1;
    color: #fff;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

#maincontent .back_button:hover {
    background-color: transparent;
    color: #5587c1;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

#maincontent .back_button.top {
    margin-bottom: 2.5em;
}

#maincontent .back_button.bottom {
    margin-top: 2.5em;
}

.clear {
    clear: both;
}


/* ############################################################ Main Elements ############################################################ */

#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#menu_close {
    position: absolute;
    z-index: 999999999;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #002c5f;
    opacity: 0;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

#menu_close.active {
    display: block;
    left: 80%;
    opacity: .8;
    -webkit-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}


/* -------------- header --------------- */

header {
    position: absolute;
    left: -80%;
    width: 80%;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

header.active {
    left: 0;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#logo_div {
    width: 100%;
    margin: 1em 0;
}

#logo_img {
    width: 50%;
}

.logo_sublinks_container {
    margin-top: 1em;
}

.logo_sublinks {
    max-width: 80%;
}


/* ..... head-nav ..... */

#head_nav {
    margin: 2em 0;
}

#head_nav_ul {}

#head_nav_ul li {
    margin-bottom: .6em;
}

#head_nav_ul li a {
    cursor: pointer;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li.menu-item-has-children a:before {
    content: '';
    display: inline-block;
    height: 12px;
    width: 8px;
    margin-right: 8px;
    background-image: url('img/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li.menu-item-has-children.active a:before {
    -webkit-transform: rotate(-0deg);
    -ms-transform: rotate(-0deg);
    transform: rotate(-0deg);
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li a:active,
#head_nav_ul li a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li.current-menu-ancestor a {
    color: #5587c1;
    font-weight: 400;
}

#head_nav_ul li ul {
    display: none;
    margin: .4em 0 0 1.5em;
}

#head_nav_ul li ul li {
    margin-bottom: 0.3em;
}

#head_nav_ul li ul li a {
    display: block;
    padding: .2em 0;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li.menu-item-has-children ul li a:before {
    display: none;
}

#head_nav_ul li ul li a:active,
#head_nav_ul li ul li a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li.current-menu-item ul li a,
#head_nav_ul li.current-menu-ancestor ul li a {
    color: #6a6a6a;
    pointer-events: all;
    font-weight: 100;
}

#head_nav_ul li.current-menu-item ul li a:active,
#head_nav_ul li.current-menu-item ul li a:hover,
#head_nav_ul li.current-menu-ancestor ul li a:active,
#head_nav_ul li.current-menu-ancestor ul li a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#head_nav_ul li ul li.current-menu-item a {
    color: #5587c1;
    pointer-events: none;
    font-weight: 400;
}

#login_div {}

#lang_select {
    /* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ein-/ausblenden ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
    display: none;
    margin-bottom: 2em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#lang_select a:nth-of-type(1):after {
    content: '/';
    font-weight: 100;
    display: inline-block;
    margin: 0 .15em;
}

#lang_select a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#lang_select a.current_language {
    font-weight: bold;
}

.login_button {
    display: inline-block;
    width: 100%;
    padding: .7em;
    color: #fff;
    font-size: .9em;
    letter-spacing: .08em;
    text-transform: uppercase;
}

#login_bucher {
    background-color: #99b7da;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#login_anbieter {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#login_bucher:hover,
#login_anbieter:hover {
    background-color: #fbb547;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* --------------- main --------------- */

main {
    position: relative;
    left: 0;
    width: 100%;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

main.inactive {
    left: 80%;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

main p,
main ul,
main table,
main div {
    font-size: 14.4px;
}


/* ..... responsive header ..... */

#responsive_header {}

#burgernav {
    position: absolute;
    top: 1em;
    left: 1em;
    width: 25px;
    height: 25px;
    background-image: url('img/burgernav.png');
    background-size: 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

#burgernav.close {
    background-image: url('img/burgernav_close.png');
    z-index: 9999999999;
}

#logo_responsive_div {
    width: 100%;
    text-align: center;
}

#logo_responsive_img {
    width: 85px;
    margin: 1em 0;
}


/* ..... banner ..... */

#banner,
#banner_home {
    position: relative;
    background-color: #5587c1;
    background-image: url('https://www.tagungsplaner.de/wp-content/themes/tagungsplaner/img/banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 125px;
    padding: 1em 0;
    transition: 0s margin-top ease;
}


/* ..... searchbar ..... */

#searchbar,
#searchbar_home {
    padding: 1em 0;
}

#searchbar h2,
#searchbar_home h2 {
    font-size: .9em;
    display: block;
    text-align: center;
    margin-bottom: .5em;
}


/*

#searchbar input,
#searchbar_home input {
    width: calc(50% - .3em);
    margin-right: .6em;
    margin-bottom: .6em;
    padding: .5em;
    float: left;
    -webkit-appearance: none;
    background-color: #fff;
    min-height: 2em;
    border-radius: 0;
    border: .5px solid #0c4281;
    font-family: 'Open Sans', sans-serif;
}

#searchbar input:nth-of-type(2n + 2),
#searchbar_home input:nth-of-type(2n + 2) {
    margin-right: 0;
}

#searchbar input.input-text,
#searchbar_home input.input-text {
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-left: 2.5em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#input_searchbar_was {
    background-image: url('img/searchbar_was.png');
}

#input_searchbar_wo {
    background-image: url('img/searchbar_wo.png');
}

#input_searchbar_wann {
    background-image: url('img/searchbar_wann.png');
}

#searchbar input.input-text:hover,
#searchbar input.input-text:focus,
#searchbar_home input.input-text:hover,
#searchbar_home input.input-text:focus {
    opacity: .95;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#searchbar input.input-submit,
#searchbar_home input.input-submit {
    background-color: #0c4281;
    color: #fff;
    background-image: url('img/arrow_white.png');
    background-position: center;
    background-size: auto 60%;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#searchbar input.input-submit:hover,
#searchbar_home input.input-submit:hover {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

*/

#searchbar_home .konvenator-language-switcher,
#searchbar .konvenator-language-switcher {
    display: none;
}

#searchbar_home .konvenator-search-bar,
#searchbar .konvenator-search-bar {
    height: auto;
    padding: 0;
    background-color: transparent;
}

#searchbar_home .holder::after,
#searchbar_home .breabcrumbs::after,
#searchbar .holder::after,
#searchbar .breabcrumbs::after {
    content: '';
    display: block;
    clear: both;
}

#searchbar_home .breabcrumbs,
#searchbar .breabcrumbs {
    font-size: 12px;
    margin-bottom: .6em !important;
}

#searchbar_home .breabcrumbs li,
#searchbar .breabcrumbs li {
    height: auto;
    width: calc(50% - .3em);
    font-size: 12px;
    min-width: 0px;
    max-width: none;
    margin-right: .6em;
    border-radius: 0;
    background-color: transparent;
}

#searchbar_home .breabcrumbs li input[type=text]:hover,
#searchbar .breabcrumbs li input[type=text]:hover,
#searchbar_home .breabcrumbs li input[type=text]:focus,
#searchbar .breabcrumbs li input[type=text]:focus {
    background-color: rgba(255, 255, 255, .85);
}

#searchbar_home .breabcrumbs li#search_query_location,
#searchbar .breabcrumbs li#search_query_location {
    margin-right: 0;
}

#searchbar_home .breabcrumbs li div.ms-ctn,
#searchbar .breabcrumbs li div.ms-ctn {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

#searchbar_home .breabcrumbs li div.ms-ctn div.ms-sel-ctn,
#searchbar .breabcrumbs li div.ms-ctn div.ms-sel-ctn {
    position: relative;
    padding: 0;
    line-height: normal;
    overflow-x: hidden;
    background-color: #fff;
}

#searchbar_home .breabcrumbs li div.ms-ctn div.ms-sel-ctn div.ms-sel-item,
#searchbar .breabcrumbs li div.ms-ctn div.ms-sel-ctn div.ms-sel-item {
    position: absolute;
    margin-top: 0;
    padding: 0 .5em;
    top: .25em;
    left: 2.3em;
}

#searchbar_home .breabcrumbs li div.ms-ctn div.ms-sel-ctn div.ms-sel-item span.ms-close-btn,
#searchbar .breabcrumbs li div.ms-ctn div.ms-sel-ctn div.ms-sel-item span.ms-close-btn {
    background-image: url('img/sprite.png') !important;
}

span.ms-helper {
    display: none !important;
}

#searchbar_home .breabcrumbs li div.ms-ctn div.ms-sel-ctn input,
#searchbar .breabcrumbs li div.ms-ctn div.ms-sel-ctn input {
    width: 100% !important;
    margin: 0;
    font-size: 12px;
    line-height: normal;
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-left: 2.7em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    border-radius: 0;
}

#searchbar_home .breabcrumbs li#search_query div.ms-ctn div.ms-sel-ctn input,
#searchbar .breabcrumbs li#search_query div.ms-ctn div.ms-sel-ctn input {
    background-image: url('img/searchbar_was.png');
}

#searchbar_home .breabcrumbs li#search_query_location div.ms-ctn div.ms-sel-ctn input,
#searchbar .breabcrumbs li#search_query_location div.ms-ctn div.ms-sel-ctn input {
    background-image: url('img/searchbar_wo.png');
}

#searchbar_home .breabcrumbs li div.ms-ctn div.ms-res-ctn.dropdown-menu,
#searchbar .breabcrumbs li div.ms-ctn div.ms-res-ctn.dropdown-menu {
    border-radius: 0;
    border: 0;
    min-width: 0px;
}

#searchbar_home .right-side-holder,
#searchbar .right-side-holder {
    float: none;
}

#searchbar_home .right-side-holder .calendar-holder,
#searchbar .right-side-holder .calendar-holder {
    float: left;
    width: calc(50% - .3em);
    margin-right: .6em;
    font-size: 12px;
}

#searchbar_home .right-side-holder .calendar-holder #search_start_date,
#searchbar .right-side-holder .calendar-holder #search_start_date {
    float: none;
    width: 100%;
    height: auto;
    min-height: 30px;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 12px;
    line-height: normal;
    background-image: url('img/searchbar_wann.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-left: 2.7em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#searchbar_home .right-side-holder .calendar-holder #search_start_date:hover,
#searchbar_home .right-side-holder .calendar-holder #search_start_date:focus,
#searchbar .right-side-holder .calendar-holder #search_start_date:hover,
#searchbar .right-side-holder .calendar-holder #search_start_date:focus {
    background-color: rgba(255, 255, 255, .85);
}

#searchbar_home .right-side-holder .calendar-holder span.calendar-icon,
#searchbar .right-side-holder .calendar-holder span.calendar-icon {
    top: 8px;
    right: 6px;
    cursor: pointer;
}

#searchbar_home .right-side-holder .calendar-holder span.calendar-icon img,
#searchbar .right-side-holder .calendar-holder span.calendar-icon img {
    width: 1.35em !important;
    height: 1.35em !important;
}

#ui-datepicker-div {
    position: relative;
    display: none;
    background-color: #fff;
    padding: 1em;
    background-clip: padding-box;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    float: left;
    left: 0;
    margin: 2px 0 0;
    position: absolute;
    top: 125%;
    z-index: 1000;
}

#ui-datepicker-div .ui-datepicker-header {
    margin-bottom: 1em;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    display: inline-block;
    width: 50%;
    font-size: .7em;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next:hover {
    color: #5587c1;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
    text-align: right;
}

#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
    margin-top: .5em;
    color: #0c4281;
}

#ui-datepicker-div .ui-datepicker-header::after {
    content: '';
    display: block;
    border-bottom: 2px solid #5587c1;
    margin-top: 1em;
}

#ui-datepicker-div .ui-datepicker-calendar thead tr th {
    padding: 0 .5em;
}

#ui-datepicker-div .ui-datepicker-calendar thead tr th {
    padding-bottom: .5em;
    font-weight: 600;
}

#ui-datepicker-div .ui-datepicker-calendar tbody tr td {
    text-align: right;
}

#ui-datepicker-div .ui-datepicker-calendar tbody tr td a {
    display: block;
    padding: .15em .5em;
}

#ui-datepicker-div .ui-datepicker-calendar tbody tr td a:hover {
    background-color: #5587c1;
    color: #fff;
}

#ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-week-end,
#ui-datepicker-div .ui-datepicker-calendar .ui-datepicker-week-end a {
    color: #0c4281;
}

#searchbar_home .right-side-holder input[type=submit],
#searchbar .right-side-holder input[type=submit] {
    width: calc(50% - .3em);
    margin-right: 0;
    height: auto;
    font-size: 12px;
    line-height: normal;
    min-height: 30px;
    padding: 0;
    border-radius: 0;
    background-color: #0c4281;
    color: #fff;
    background-image: url('img/arrow_white.png');
    background-position: center;
    background-size: auto 60%;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#searchbar_home .right-side-holder input[type=submit]:hover,
#searchbar .right-side-holder input[type=submit]:hover {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* -------------- maincontent --------------- */

.breadcrumb {
    font-size: .75em;
    margin-bottom: 1.5em;
}

#maincontent a {
    font-weight: 600;
    color: #5587c1;
}

#maincontent p,
#maincontent ul {
    margin-bottom: 1em;
}

.content_container ul {
    margin-bottom: .5em;
}

.content_container ul li {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: .4em;
}

.content_container {
    margin-bottom: 2em;
}

.content_container:after {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    border-bottom: 1px solid #4a4a4a;
    margin-top: 50px;
    margin-bottom: 0px;
}

body.home .content_container:after {
    display: none;
}

.sidebar h2 {
    font-size: 1em;
}

.sidebar h2:after {
    display: none;
}

.sidebar ul li {
    position: relative;
    list-style-type: disc;
    margin-left: 1.5em;
}

.sidebar_skyscraper_div {
    display: inline-block;
    background-color: #f1f2f8;
    padding: 1em;
    margin-top: 2em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.sidebar_skyscraper_div:hover {
    opacity: .8;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* --------------- footer --------------- */

footer .contentwidth:before {
    content: '';
    display: block;
    width: 40%;
    height: 1px;
    border-bottom: 1px solid #4a4a4a;
    margin-top: 20px;
    margin-bottom: 30px;
}

body.home .contentwidth:before {
    display: none;
}

footer h3 {
    padding-left: 1em;
}

.menu-angebotsuebersicht-container {
    float: left;
}

#footer_sitemap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer_sitemap li {
    margin-bottom: 1em;
    margin-right: 2em;
    float: left;
    width: 150px;
}

#footer_sitemap li a {
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_sitemap li a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_sitemap li.current-menu-ancestor a {
    color: #5587c1;
}

#footer_sitemap li.current-menu-item a {
    color: #5587c1;
    pointer-events: none;
}

#footer_sitemap li ul li {
    margin-bottom: 0;
    float: none;
}

#footer_sitemap li ul li a {
    font-weight: 300;
    text-transform: none;
}

#footer_sitemap li.current-menu-item ul li a,
#footer_sitemap li.current-menu-ancestor ul li a {
    color: #4a4a4a;
    pointer-events: all;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_sitemap li.current-menu-ancestor ul li a:hover,
#footer_sitemap li.current-menu-item ul li a:hover {
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_sitemap li ul li.current-menu-item a {
    color: #5587c1;
    pointer-events: none;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.powered_logo {
    max-width: 100%;
}


/* ..... subfooter ..... */

#subfooter_section {
    background-color: #2e2d30;
    color: #fff;
    padding: 2em 0;
    text-align: center;
}

.subfooter_left {
    margin-bottom: 1.5em;
}

.subfooter_center {
    margin-bottom: 1.5em;
}

.subfooter_center a {
    display: inline-block;
}

.footer_social_media_icon {
    margin: 0 1em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.footer_social_media_icon:hover {
    opacity: .6;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_nav {}

#footer_nav_ul {}

#footer_nav_ul li {
    display: inline-block;
    padding: 0 .5em;
}

#footer_nav_ul li a {
    color: #fff;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_nav_ul li a:hover,
#footer_nav_ul li.current-menu-item a {
    color: #999;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#footer_nav_ul li:after {
    content: '/';
    display: inline-block;
    margin-left: 1em;
}

#footer_nav_ul li:last-child {
    padding-right: .5em;
}

#footer_nav_ul li:last-child:after {
    display: none;
}

.powered_by_ul {
    float: left;
}

.powered_by_ul li {
    font-weight: 600;
    text-transform: uppercase;
    cursor: default;
}

.powered_by_ul li ul {
    margin-top: .7em;
}

.powered_by_ul li ul li a img {
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.powered_by_ul li ul li a img:hover {
    opacity: .8;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* ############################################################ Front-Page ############################################################ */


/* ..... Ablauf ..... */

#ablauf_section {
    transition: 0s margin-top ease;
}

#ablauf_section h2 {
    margin-bottom: 2em;
}

#ablauf_container {
    text-align: center;
    transition: 0s margin-top ease;
}

.ablauf_element {
    margin-bottom: 0;
}

.ablauf_element:after {
    content: '';
    display: block;
    height: 3.5em;
    width: 3em;
    margin: 1em 0;
    margin: 0 auto;
    background-image: url('img/ablauf_trennung.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 10%;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.ablauf_element.no_after:after {
    display: none;
}

.ablauf_icon {
    width: 55px;
    height: 55px;
    margin: 0 auto;
    background-color: #5587c1;
    border-radius: 50%;
    margin-bottom: .8em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.ablauf_element:hover .ablauf_icon {
    background-color: #0c4281;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#ablauf_icon_finden {
    background-image: url('img/search.png');
}

#ablauf_icon_planen {
    background-image: url('img/plan.png');
}

#ablauf_icon_einholen {
    background-image: url('img/stat.png');
}

#ablauf_icon_buchen {
    background-image: url('img/check.png');
    background-color: #fbb547;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.ablauf_element:hover #ablauf_icon_buchen {
    background-color: #97bf0d;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.ablauf_titel {
    text-transform: uppercase;
}

.ablauf_hervorhebung {
    font-weight: 600;
}

.ablauf_trennung {}


/* ..... Kundenstimmen ..... */

.kundenstimmen_container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.kundenstimme {
    background-color: #fff;
    color: #0c4281;
    padding: 1em;
    margin-bottom: 1em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.kundenstimme:hover {
    opacity: .95;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.kundenstimme h3 {
    margin-bottom: .7em;
    font-size: 1em;
}

.kunden_name {
    font-weight: 600;
    font-style: italic;
    margin-top: .7em;
}


/* ..... Highlight-Gallery ..... */

.highlight_gallery *,
.highlight_gallery *:before,
.highlight_gallery *:after {
    box-sizing: content-box;
    -webkit-transition: 0s all ease-in-out;
    transition: 0s all ease-in-out;
}

.ms-slide {
    -webkit-transition: 0s all ease;
    transition: 0s all ease;
}

.highlight_gallery_slide {
    width: 100%;
}

.advertising_banner {
    text-align: center;
}

.banner_small {
    max-width: 80%;
    margin-bottom: 1%;
    border: .5px solid #0c4281;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.banner_small:hover {
    opacity: .9;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* ..... Recommendations ..... */

.recommendations_sameheight {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.recommendation_container {
    position: relative;
    text-align: center;
    margin-bottom: 4.5em;
    background-color: #0c4281;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
    padding-bottom: 2em;
}

.recommendation_container h3 {
    position: relative;
    top: -1em;
    display: inline-block;
    background-color: #0c4281;
    color: #fff;
    padding: .5em 1em;
    z-index: 40;
    font-size: 1em;
    margin-bottom: auto;
}

.recommendation_content,
.recommendation_overlay {
    text-align: left;
    color: #fff;
}

.recommendation_content {
    margin-top: -2.5em;
}

.recommendation_img {
    z-index: -10;
    height: 150px;
}

#erfolgreich_tagen .recommendation_content .recommendation_img {
    background-size: cover;
    background-position: center;
}

#csr_aktivitaet .recommendation_content .recommendation_img {
    background-size: cover;
    background-position: center;
}

#der_perfekte_rahmen .recommendation_content .recommendation_img {
    background-size: cover;
    background-position: center;
}

.recommendation_overlay {
    padding: 1em;
    text-align: center;
    height: 100%;
}

.recommendation_overlay h4 {
    margin-bottom: .7em;
    text-align: left;
}

.recommendation_overlay p {
    text-align: left;
}

.recommendation_place {
    font-size: .7em;
    margin-bottom: .7em;
}

.recommendation_overlay .button_more {
    padding: .5em 1em;
    background-color: #fbb547;
    color: #fff;
    font-weight: 400;
    display: block;
    position: absolute;
    bottom: -1em;
    left: 2.5em;
    right: 2.5em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.recommendation_overlay .button_more:hover {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* ..... Video ..... */

#video_section {
    margin-bottom: 1em;
}

#video_section h3 {
    margin-bottom: .7em;
    color: #fff;
    font-size: 1.2em;
}

#video_container {}

#video {
    position: relative;
    margin: 0 auto;
}

#video:after {
    padding-top: 65.625%;
    display: block;
    content: '';
}

.video_player {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#video_description_div {
    text-align: center;
    position: relative;
    padding: 1em;
}

#video_description_div h3,
#video_description_div #video_description {
    text-align: left;
}

#video_description {
    margin-bottom: 1.5em;
}

#video_description_div .button_more {
    padding: .5em 1em;
    background-color: #fbb547;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    position: absolute;
    bottom: -1em;
    margin-left: -5em;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#video_description_div .button_more:hover {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* ..... news section ..... */


/* newssystem */

#newssystem_div {
    float: right;
}

#newssystem_div h2 {
    text-transform: none;
    text-align: left;
    color: #0c4281;
}

#newssystem_div .subtitle {
    margin-bottom: 2em;
    color: #0c4281;
}

.news_entry {
    border-bottom: 2px solid #0c4281;
    padding: 1.5em 0;
}

.news_entry:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.news_cat_icon_div {
    width: 70px;
    float: left;
}

.news_cat_icon {
    width: 55px;
    height: 55px;
    background-color: #fbb547;
    border-radius: 50%;
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.news_entry:hover .news_cat_icon {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.news_entry_details h3 a:hover {
    color: #5587c1;
}

.cat_one {
    background-image: url('img/cat_icon_one.png');
    background-size: auto 60%;
}

.news_cat_icon.cat_two {
    background-image: url('img/cat_icon_two.png');
    background-size: 60% auto;
}

.cat_three {
    background-image: url('img/cat_icon_three.png');
}

.cat_four {
    background-image: url('img/cat_icon_four.png');
}

.rss-feed a {
    font-weight: 600;
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.rss-feed a:hover {
    color: #0c4281;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.nav-links {
    display: none;
}

.news_entry_details {
    width: calc(100% - 70px);
    float: left;
}

.news_entry_details h3 {
    margin-bottom: .3em;
    color: #0c4281;
    font-size: 1em;
}

.news_entry_link {
    display: inline-block;
    float: right;
    padding: .8em 1em;
    margin-top: 1em;
    font-size: .8em;
    font-weight: 600;
    text-transform: uppercase;
    color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.news_entry_link:hover {
    color: #fff;
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}


/* newsfeeds */

#newsfeeds_div h2 {
    text-transform: none;
    text-align: left;
}

#newsfeeds_div .subtitle {
    margin-bottom: 2em;
}

.newsfeed {
    background-color: #fff;
    padding: 1em;
    color: #4a4a4a;
    margin-bottom: 1em;
}

.newsfeed h3 {
    margin-bottom: .3em;
    text-transform: uppercase;
    color: #5587c1;
}

.newsletter_intro {
    margin-bottom: 1em;
}

#newsletter-email {
    width: calc(100% - 45px);
    height: 40px;
    margin-right: 5px;
    float: left;
    background-color: #99b7da;
    border: 0;
    color: #fff;
    padding: 1em;
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: .75em;
    padding-left: 4em;
    background-image: url('img/input-newsletter-bg.jpg');
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#newsletter-email:hover,
#newsletter-email:focus {
    background-color: #0c4281;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#newsletter-email::-webkit-input-placeholder {
    /* Safari, Chrome and Opera */
    color: white;
}

#newsletter-email:-moz-placeholder {
    /* Firefox 18- */
    color: white;
}

#newsletter-email::-moz-placeholder {
    /* Firefox 19+ */
    color: white;
}

#newsletter-email:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
}

#newsletter-email::-ms-input-placeholder {
    /* Edge */
    color: white;
}

#newsletter-email:placeholder-shown {
    /* Standard one last! */
    color: white;
}

#newsletter-submit {
    display: block;
    width: 40px;
    height: 40px;
    float: left;
    -webkit-appearance: none;
    background-color: #fbb547;
    border: 0;
    border-radius: 0;
    background-image: url('img/arrow_white.png');
    background-size: auto 50%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#newsletter-submit:hover {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.social_media_intro {
    margin-bottom: 1em;
}

.social_media_button {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    float: right;
    margin-left: 5px;
    background-color: #0c4281;
    padding: .5em;
    border-radius: 50%;
    background-size: auto 42%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.social_media_button:hover {
    background-color: #fbb547;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

#facebook_button {
    background-image: url('img/facebook_icon.png');
}

#twitter_button {
    background-image: url('img/twitter_icon.png');
}

#xing_button {
    background-image: url('img/xing_icon.png');
}

.social_media_icon {}


/* ..... USP-Section ..... */

#usp_section h2 {
    text-transform: none;
    text-align: left;
}

#usp_section h3 {
    font-weight: 100;
    font-size: 1.2em;
    color: #fff;
    margin-bottom: auto;
}

.usp_container {
    background-color: #fff;
    color: #4a4a4a;
    margin-top: 2.5em;
    margin-bottom: 1em;
    padding: 1em;
    padding-top: 1.3em;
    position: relative;
}

.usp_container:before {
    content: '';
    position: absolute;
    top: -1.5em;
    left: .5em;
    width: 40px;
    height: 40px;
    background-color: #fbb547;
    background-image: url('img/check.png');
    background-size: 50% auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.usp_container:hover:before {
    background-color: #5587c1;
    -webkit-transition: .2s all ease-in-out;
    transition: .2s all ease-in-out;
}

.usp_bucher {
    margin-bottom: 2em;
}


/* ##### 00_zweispaltig ##### */

.template_zweispaltig {
    margin: 2em 0;
}

.template_zweispaltig_links {
    margin-bottom: 1em;
}


/* ##### Kontaktseite ##### */

.kontaktseite_abteilungen {}

.kontaktseite_abteilung {
    margin: 2em 0;
}

.kontaktseite_abteilung h3 {}

.kontaktseite_abteilung_description {}

.kontaktseite_kontaktpersonen {}

.kontaktseite_kontaktperson {
    margin-bottom: 2em;
}

.kontaktseite_kontaktperson::after {
    content: '';
    display: block;
    width: 30%;
    border-bottom: 1px solid #4a4a4a;
}

.kontaktseite_kontaktperson_img {
    margin-bottom: 1em;
}

.kontaktseite_kontaktperson_name {
    margin-bottom: 0;
}

#maincontent .kontaktseite_kontaktperson_position {
    margin-bottom: 0;
}

.kontaktseite_kontaktperson_bereich {}

#maincontent .kontaktseite_kontaktperson_tel {
    margin-bottom: 0;
}

#maincontent .kontaktseite_kontaktperson_fax {
    margin-bottom: 0;
}

.kontaktseite_kontaktperson_mail {}


/* ##### Kodexzertifiziert ##### */

.content_container .kodexzertifiziert_pt2 {}

.content_container .kodexzertifiziert_pt2 div {}


/* ##### Formulare ##### */

div.form-cover {
    width: 100%;
    max-width: 600px;
    margin-top: 4em;
    background-color: #5587c1;
    color: #fff;
}

div.form-cover input,
div.form-cover button {
    font-family: 'Open Sans', sans-serif;
}

div.form-cover .fc-form {
    width: 100% !important;
    margin-left: 0 !important;
    background-color: transparent !important;
    color: #fff !important;
}

html .formcraft-css .fc-form .field-cover>span {
    width: 100%;
    text-align: left;
    width: 100%;
    top: 0;
    font-size: .9em;
    margin-bottom: .5em;
}

html .formcraft-css .fc-form .field-cover .sub-label-false {
    top: 0;
}

html .formcraft-css .fc-form .form-element.is-required-true .field-cover>span>span:first-child>span::after {
    right: -10px;
    color: #fff;
}

html .formcraft-css .fc-form .field-cover>div {
    width: 100%;
}

html .formcraft-css .fc-form .form-element .field-cover i {
    color: #4a4a4a !important;
}

#maincontent div.form-page a {
    color: #fff;
}

div.form-page .fc-form {
    width: 100% !important;
    background-color: #5587c1;
    color: #fff;
}

div.form-page .fc-form span.ng-scope {
    color: #fff;
}

div.form-page input[type="checkbox"] {
    border-color: #fff;
}

div.form-page input[type="checkbox"]:checked {
    border-color: #fff;
    background-color: transparent;
}

.form-page label:hover>input[type="checkbox"] {
    border-color: #fff;
}

div.form-page .fcb_form .field-cover>div {
    width: 100%;
}

#maincontent .error {
    line-height: normal;
    padding: .5em;
    background-color: #fafafa;
    right: 10px;
    border: 1px solid #f69a9a;
}

#maincontent .submit-response {
    background-color: #fff;
    margin-top: 2em;
    padding: 1em;
    display: none;
}

#maincontent .has-error {
    padding-top: 0;
}

#maincontent .form-page .fcb_form .final-success span,
#maincontent .form-page .fcb_form .final-success .icon-ok-circle {
    color: #fff;
}

#maincontent button.button.submit-button {
    background-color: #fff;
    color: #4a4a4a;
}

#maincontent button.button.submit-button .text,
#maincontent button.button.submit-button {
    text-shadow: 0px 0px 0px #fff;
}

#newsletter div.form-cover {
    width: 100%;
    max-width: none;
    margin-top: 0;
    background-color: transparent;
    color: #4a4a4a;
}

#newsletter .fc-form {
    box-shadow: none;
    color: #4a4a4a !important;
}

#newsletter button.button.submit-button {
    background-color: #5587c1;
    color: #fff;
}

#newsletter button.button.submit-button .text,
#newsletter button.button.submit-button {
    text-shadow: 0px 0px 0px #5587c1;
}

#newsletter .formcraft-css .fc-form .form-element-type-submit .form-element-html {
    padding-bottom: 0;
}


/* ##### Eintrag erstellen ##### */


/* ##### Eventregistrierung ##### */

.eintrag_erstellen {
    max-width: 600px;
    margin-top: 3em;
    padding: 1em;
    background-color: #5587c1;
    color: #fff;
}

.eintrag_erstellen h3 {
    color: #fff;
    text-transform: uppercase;
}

.eintrag_erstellen .input_container {
    margin-bottom: 1em;
}

.eintrag_erstellen .half {
    width: calc(50% - .5em);
    margin-right: 1em;
    float: left;
}

.eintrag_erstellen .half:nth-of-type(2n + 2) {
    margin-right: 0;
}

.eintrag_erstellen label {
    font-size: .9em;
    display: inline-block;
    margin-bottom: .6em;
}

.eintrag_erstellen input,
.eintrag_erstellen textarea {
    width: 100%;
    border: 0;
    padding: .7em;
    border-radius: 0;
    font-size: .8em;
    font-family: 'Open Sans', sans-serif;
}

#maincontent .content_container .eintrag_erstellen select {
    width: 100%;
}

#maincontent .content_container .eintrag_erstellen a {
    color: #fff;
}

.eintrag_erstellen .eintrag_erstellen_datenschutz_div {
    margin-top: 2em;
}

.eintrag_erstellen .eintrag_erstellen_div .wpcf7-list-item {
    margin-left: 0;
}

.eintrag_erstellen .eintrag_erstellen input,
.eintrag_erstellen .wpcf7-list-item-label {
    width: auto;
    display: inline-block;
}

.eintrag_erstellen input[type=submit] {
    background-color: #fff;
    width: auto;
}

.eintrag_details,
.eintrag_erstellen_entfernung {
    margin-bottom: 2em;
}

/* ##### Event Programm ##### */

.programm_entry:after {
    content: '';
    display: block;
    clear: both;
    margin-bottom: 1em;
}

#maincontent .programm_entry a {
    color: #fff;
}

.programm_entry_date {
    display: inline-block;
    min-width: 50%;
    padding: 1em;
    background-color: #0c4281;
    color: #fff;
    font-weight: 400;
}

.programm_entry_content {
    padding: 1em;
    background-color: #5587c1;
    color: #fff;
}


/* ##### Beratung Bucher ##### */

.content_container .beratung_bucher_kontakt {
    margin-bottom: 2em;
}

.content_container .beratung_bucher_kontakt .beratung_bucher_kontakt_img {
    margin-bottom: 1em;
}

.content_container .beratung_bucher_kontakt h3 {
    font-size: 1em;
    margin-bottom: 0;
}

#maincontent .content_container .beratung_bucher_kontakt_position {
    margin-bottom: .2em;
}

#maincontent .content_container .beratung_bucher_kontakt_tel {
    margin-bottom: 0;
}


/* ##### Checklisten ##### */

.pdf-download {}

.checkliste_entry div.hr_small {
    margin-left: 0;
}


/* ##### Branchennews ##### */

.news_entry {
    margin-bottom: 2em;
}

.content_container .news_entry h3 {
    margin-bottom: 0;
}

/* ##### tw news ##### */

.tw_news_feed ul li {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 2em;
}

.tw_news_feed ul li small {
    display: block;
    font-size: .8em;
    text-transform: uppercase;
    font-weight: 600;
}


/* ##### Eventregistrierung ##### */

.eventregistrierung {
    max-width: 600px;
    margin-top: 3em;
    padding: 1em;
    background-color: #5587c1;
    color: #fff;
}

.eventregistrierung h3 {
    color: #fff;
    text-transform: uppercase;
}

.eventregistrierung .input_container {
    margin-bottom: 1em;
}

.eventregistrierung .half {
    width: calc(50% - .5em);
    margin-right: 1em;
    float: left;
}

.eventregistrierung .half:nth-of-type(2n + 2) {
    margin-right: 0;
}

.eventregistrierung label {
    font-size: .9em;
    display: inline-block;
    margin-bottom: .6em;
}

.eventregistrierung input,
.eventregistrierung textarea {
    width: 100%;
    border: 0;
    padding: .7em;
    border-radius: 0;
    font-size: .8em;
    font-family: 'Open Sans', sans-serif;
}

#maincontent .content_container .eventregistrierung select {
    width: 100%;
}

#maincontent .content_container .eventregistrierung a {
    color: #fff;
}

.eventregistrierung .eventregistrierung_datenschutz_div {
    margin-top: 2em;
}

.eventregistrierung .eventregistrierung_datenschutz_div .wpcf7-list-item {
    margin-left: 0;
}

.eventregistrierung .eventregistrierung_datenschutz input,
.eventregistrierung .wpcf7-list-item-label {
    width: auto;
    display: inline-block;
}

.eventregistrierung input[type=submit] {
    background-color: #fff;
    width: auto;
}

.eventregistrierung_kundendaten {
    margin-bottom: 2em;
}


/* ##### Facebook Feed ##### */

.facebook_feed {
    background-color: #f1f2f8;
    padding: 1em;
    max-width: 550px;
}

#maincontent .facebook_feed h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.cff-likebox {
    margin-bottom: 20px;
}

#cff .cff-item {
    background-color: #fff;
    padding: 1em;
    margin-bottom: 1em;
}




/* ###################################################################################### Ergänzungen ###################################################################################### */


/* ---------- Flexible Inhalte ---------- */

#maincontent div.flexible_inhalte {
    margin-top: 4em;
}

#maincontent div.flexible_inhalte_post {
    background-color: #eaeaea;
    padding: 1em;
}

#maincontent ul.flexible_inhalte_list li {
    margin-left: 0;
    list-style-type: none;
    background-color: #5587c1;
    padding: 1em;
    color: #fff;
    margin-bottom: 1em;
}

#maincontent ul.flexible_inhalte_list li a {
    color: #fff;
}