    @import url("css2.css");
    * {
        margin: 0;
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    body {
        font-family: "Gudea", sans-serif, Arial, Helvetica, sans-serif;
        font-size: 18px;
        background: #f8f8f8;
    }
    
    main {
        max-width: 1920px;
        margin: auto;
        background-color: #fff;
    }
    
    p {
        line-height: 1.5;
    }
    
    p.normal {
        font-family: "Gudea", sans-serif, Arial, Helvetica, sans-serif;
        margin-bottom: 55px;
        font-size: 19px;
        line-height: 1.5;
        color: #000000;
    }
    
    p.handbunch {
        font-family: "Gudea", sans-serif, Arial, Helvetica, sans-serif;
        margin-bottom: 55px;
        font-size: 17px;
        line-height: 1.5;
        color: #000000;
    }
    
    ul {
        margin: 0;
        padding: 0;
        margin-bottom: 55px;
    }
    
    ul li {
        list-style-type: none;
        padding-left: 16px;
        margin-left: 0;
        position: relative;
        line-height: 1.5;
    }
    
    ul li::before {
        /* content: '';
  width: 7px;
  height: 7px;
  display: block;
  position: absolute;
  left: 0;
  top: 1.3ex;
  background-color: #e2001a; */
    }
    
    ul.normal li {
        font-size: 19px;
    }
    
    ul.handbunch li {
        font-size: 17px;
    }
    
    h1,
    h2 {
        line-height: 1.4;
        margin-bottom: 35px;
        color: #56575e;
    }
    
    h1.normal,
    h2.normal {
        font-size: 38px;
    }
    
    h1.handbunch,
    h2.handbunch {
        font-size: 32px;
    }
    
    h3 {
        line-height: 1.5;
        margin-bottom: 10px;
        color: #56575e;
        font-weight: bold;
    }
    
    h3.normal {
        font-size: 22px;
    }
    
    h3.handbunch {
        font-size: 19px;
    }
    
    h4 {
        line-height: 1.5;
        margin-bottom: 0px;
        color: #56575e;
        font-weight: bold;
    }
    
    h4.normal {
        font-size: 19px;
    }
    
    h4.handbunch {
        font-size: 17px;
    }
    
    a {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
        font-weight: bold;
        -webkit-transition: color .5s;
        transition: color .5s;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    a:hover {
        color: #b40a1a;
        -webkit-transition: color .5s, opacity .5s;
        transition: color .5s, opacity .5s;
    }
    
    a.call_to_action {
        color: #fff;
        background: #e2001a;
        font-weight: normal;
        display: inline-block;
        padding: 2px 10px;
        -webkit-transition: background .5s;
        transition: background .5s;
        border: 1px solid #fff;
        border-radius: 2px;
    }
    
    a.call_to_action:hover {
        color: unset;
        opacity: .75;
        background: #b40a1a;
        -webkit-transition: opacity .5s;
        transition: opacity .5s;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="password"] {
        color: #76787f;
        padding: 12px 15px;
        font-size: 18px;
        font-family: "Gudea", sans-serif, Arial, Helvetica, sans-serif;
        border: 0;
        border-radius: 0;
        line-height: 1;
    }
    
    input[type="text"]:focus,
    input[type="email"]:focus {
        outline: 0;
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
    }
    
    textarea {
        width: 100%;
        color: #76787f;
        padding: 12px 15px;
        font-size: 19px;
        font-family: "Gudea", sans-serif, Arial, Helvetica, sans-serif;
        border: 0;
        border-radius: 0;
        line-height: normal;
        height: 110px;
    }
    
    textarea:focus {
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        outline: none;
    }
    
    .radio_box {
        position: relative;
    }
    
    .radio_box input[type="radio"] {
        position: absolute;
        overflow: hidden;
        clip: rect(0 0 0 0);
        height: 1px;
        width: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
    }
    
    .radio_box input[type="radio"]+label {
        padding-left: 35px;
        padding-top: 2px;
        margin-right: 10px;
        position: relative;
        cursor: pointer;
        display: inline-block;
    }
    
    .radio_box input[type="radio"]+label::before {
        position: absolute;
        content: '';
        height: 23px;
        width: 23px;
        background: #fff;
        border-radius: 50%;
        left: 0;
        top: 4px;
    }
    
    .radio_box input[type="radio"]+label::after {
        position: absolute;
        content: '';
        display: none;
        height: 7px;
        width: 7px;
        background: #fff;
        border-radius: 50%;
        left: 8px;
        top: 12px;
        z-index: 1;
        background-color: #54575b;
        -webkit-transition: .5s;
        transition: .5s;
    }
    
    .radio_box input[type="radio"]:checked+label::after {
        display: block;
    }
    
    input[type="submit"] {
        background: #e2001a;
        padding: 2px 10px;
        font-weight: normal;
        line-height: 1.5;
        cursor: pointer;
        border: 1px solid #fff;
        border-radius: 2px;
        color: #fff;
        display: inline-block;
        -webkit-transition: background .5s;
        transition: background .5s;
    }
    
    input[type="button"] {
        background: #e2001a;
        padding: 2px 10px;
        font-weight: normal;
        line-height: 1.5;
        cursor: pointer;
        border: 1px solid #fff;
        border-radius: 2px;
        color: #fff;
        display: inline-block;
        -webkit-transition: background .5s;
        transition: background .5s;
    }
    
    input[type="submit"]:hover {
        background: #b40a1a;
    }
    
    input[type="button"]:hover {
        background: #b40a1a;
    }
    
    .hr_white {
        opacity: 1;
        border: none;
        height: 1px;
        background-color: white;
    }
    
    .hr_silver {
        opacity: 1;
        border: none;
        height: 1px;
        background-color: silver;
    }
    
    .submit_button {
        background: #e2001a;
        padding: 2px 10px;
        font-weight: normal;
        line-height: 1.5;
        cursor: pointer;
        border: 1px solid #fff;
        border-radius: 2px;
        color: #fff;
        display: inline-block;
        -webkit-transition: background .5s;
        transition: background .5s;
    }
    
    .submit_button:hover {
        background: #b40a1a;
    }
    
    header .navbar-brand {
        width: 150px;
    }
    
    header.navigation_main {
        box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    }
    
    .nav-item-active a {
        color: #E2001A!important;
    }
    
    .submenu {
        width: 300px;
        position: fixed;
        top: 148px;
        background: rgba(56, 57, 66, 0.97);
        z-index: 9999;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-left: -40px;
        display: none;
    }
    
    .submenu li a {
        color: #fff!important;
        display: block;
        padding: 8px 40px!important;
        font-size: 1.8rem;
        transition: color 0.5s;
        background: rgba(56, 57, 66, 0.97);
    }
    
    .submenu li a:hover {
        background: rgba(81, 81, 87, 0.9);
    }
    
    .submenu li {
        display: block;
        margin-right: 0;
        padding-left: 0px!important;
    }
    
    .meb_services {
        font-size: 15px;
        color: #7e7e84;
    }
    
    .sticky-top {
        z-index: 5;
    }
    
    header .navbar-brand img {
        width: auto;
        height: 30px;
    }
    
    nav {
        overflow: hidden;
    }
    
    .nav_container {
        padding: 30px 60px 30px 60px;
    }
    
    header .nav {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        opacity: 1;
        gap: 30px!important;
    }
    
    .navigation_container {
        padding: 0 60px;
    }
    
    header .nav-item {
        padding: 0 !important;
        position: relative;
        white-space: nowrap;
    }
    
    header .nav-item::before {
        display: none;
    }
    
    header .nav-item a {
        color: #3B3740;
        -webkit-transition: color .5s;
        transition: color .5s;
        font-weight: normal !important;
        font-size: 19px;
        padding: 0;
        word-break: none;
        display: block;
        padding-bottom: 30px;
    }
    
    header .nav-item a.active {
        color: #b40a1a;
    }
    
    header .nav-item a:hover {
        color: #b40a1a;
    }
    
    .toggle_btn_icon {
        border: 0;
        padding: 0 8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .toggle_btn_icon img {
        width: 22px;
    }
    
    .toggle_btn_icon img:last-child {
        width: 0;
    }
    
    .toggle_btn_icon.opened img:first-child {
        width: 0;
    }
    
    .toggle_btn_icon.opened img:last-child {
        width: 22px;
    }
    
    .toggle_btn_icon img.toggle {
        display: none;
    }
    
    .toggle_btn_icon.block {
        display: none !important;
    }
    
    #close_han {
        display: none;
    }
    
    #close_han.block {
        display: block !important;
    }
    
    #close_forget {
        display: none;
    }
    
    #close_forget.block {
        display: block !important;
    }
    
    .sliders {
        position: relative;
    }
    /* .notifyjs-bootstrap-error {
        max-width: 300px!important;
    } */
    
    .search_box {
        position: fixed;
        width: calc(100% / 3);
        padding: 2.5rem;
        background-color: #3B3740;
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 9;
        -webkit-transition: .3s;
        transition: .3s;
        top: 150px;
    }
    
    .search_input_page {
        background: #EFEFF0;
        border: 1px solid #ccc!important;
        margin-bottom: 15px;
        width: 150px;
        padding: 12px 15px;
        color: #76787f !important;
        height: auto;
        font-weight: normal;
        border-radius: 0;
    }
    
    .search_page_button {
        border: 1.9px solid #e3e3e3;
        border-bottom-style: outset;
        border-right-style: outset;
        margin-bottom: 15px;
        width: 150px;
        color: #000 !important;
        padding: 2px 10px;
        background-color: #fff;
        font-size: 16px;
        font-weight: 400;
        width: 100px;
        min-width: 100px;
        border-radius: 0
    }
    
    .result-title::before {
        content: "■";
        padding-right: 5px;
        color: #6a6b71;
        font-size: 160%;
    }
    
    .result-title-favourite::before {
        content: "■";
        padding-right: 10px;
        color: #ffffff;
        font-size: 160%;
    }
    
    .textlink_f {
        color: #e2001a;
        text-decoration: none;
        cursor: pointer;
        font-weight: bold;
        transition: color 0.5s;
        max-width: 100%;
        font-size: 18px;
    }
    
    .textlink {
        color: #e2001a;
        text-decoration: none;
        cursor: pointer;
        font-weight: bold;
        transition: color 0.5s;
        max-width: 100%;
        font-size: 18px;
    }
    
    .textlink_white {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        font-weight: bold;
        transition: color 0.5s;
        max-width: 100%;
        font-size: 18px;
    }
    
    .textlink_white:hover {
        color: #ffffff;
    }
    
    .textlink:before {
        content: ">\00a0";
    }
    
    .result-item {
        clear: both;
        margin: 20px 0 30px 0;
        padding: 0;
    }
    
    .result-teaser {
        color: #707070;
        font-size: 14px
    }
    
    .result_last {
        font-size: 14px;
        margin-bottom: 55px;
    }
    
    .divider {
        height: 1px;
        background: #888888;
    }
    
    .divider_white {
        height: 1px;
        background: #ffffff;
    }
    
    .result_last .textlink {
        font-size: 14px
    }
    
    .result-item-favourite {
        clear: both;
        margin: 20px 0 30px 0;
        padding: 0;
    }
    
    .result-teaser-favourite {
        color: #ffffff;
        font-size: 14px
    }
    
    .result_last-favourite {
        font-size: 14px;
        margin-bottom: 30px;
        text-align: right;
    }
    
    .result_last-favourite .textlink {
        font-size: 14px
    }
    
    .halber_unterer_Abstand {
        margin-bottom: 28px;
    }
    
    .search_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .search_box form {
        position: relative;
    }
    
    .search_box form input {
        border-radius: 0;
        padding-right: 40px;
    }
    
    .italic_placeholder::-webkit-input-placeholder {
        font-style: italic;
        color: #ccc;
    }
    
    .italic_placeholder:-moz-placeholder {
        font-style: italic;
        color: #ccc;
    }
    
    .italic_placeholder::-moz-placeholder {
        font-style: italic;
        color: #ccc;
    }
    
    .italic_placeholder:-ms-input-placeholder {
        font-style: italic;
        color: #ccc;
    }
    
    .search_box form input:focus {
        border-color: #E2001A;
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
    }
    
    .search_box form .search_button {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
    }
    
    .search_box form .search_button img {
        width: 22px;
    }
    
    .login_box {
        position: fixed;
        width: calc(100% / 3);
        padding: 2.5rem;
        background-color: #3B3740;
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 9;
        -webkit-transition: .3s;
        transition: .3s;
        top: 150px;
        height: 560px;
        overflow: auto;
    }
    
    .login_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .login_box form {
        position: relative;
    }
    
    .login_box form input {
        border-radius: 0;
    }
    
    .login_box form input:focus {
        border-color: #E2001A;
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
    }
    
    .login_box form p {
        color: #fff;
    }
    
    .login_box form a {
        color: #fff;
        text-decoration: none;
    }
    
    .login_box form .btn_submit_red {
        background: #e2001a;
        border: 1px solid #fff;
        border-radius: 0;
        color: #fff;
        padding: 4px 8px;
    }
    
    .login_box form hr {
        border-top-width: 2px;
        color: #9e9fa3;
        margin: 2rem 0;
    }
    
    .dark_nav {
        overflow: hidden;
        top: 0;
        position: fixed;
        width: 490px;
        min-height: 150px;
        height: 150px;
        padding: 2.5rem;
        padding-left: 3rem;
        background-color: #3B3740;
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 99999;
        -webkit-transition: .3s;
        transition: .3s;
    }
    
    .nav_box {
        overflow: auto;
        top: 150px;
        position: fixed;
        width: 490px;
        min-height: 600px;
        height: 900px;
        /* padding: 2.5rem;
        padding-left: 3rem; */
        /* background-color: #3B3740; */
        background: rgba(56, 57, 66, 0.97);
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 99999;
        -webkit-transition: .3s;
        transition: .3s;
    }
    
    .nav_box::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    
    .nav_box {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    
    .nav_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .dark_nav.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .nav_box .side_navs {
        width: 100%;
        height: 800px;
        overflow: auto;
    }
    
    .nav_box .side_navs ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav_box .side_navs ul li {
        /* padding: 8px 0; */
        color: #fff;
    }
    
    .nav_box .side_navs ul li:hover {
        background: rgba(81, 81, 87, 0.9);
        transition: color 0.5s;
    }
    
    .nav_box .side_navs ul li::before {
        display: none;
    }
    
    .nav_box .side_navs ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 19px;
        font-weight: normal;
        padding: 11px 60px;
        display: block;
    }
    
    .nav_box .side_navs ul li a i {
        margin-left: 1rem;
    }
    
    .nav_box .side_navs .side_nav_top {
        padding-bottom: 8px;
        border-bottom: 1px solid #fff;
        margin-bottom: 16px;
    }
    
    .nav_box .side_navs .side_nav_middle {
        margin-bottom: 2rem;
    }
    
    .nav_box .side_navs .side_nav_middle {
        margin-bottom: 2rem;
    }
    
    .nav_box .side_navs .side_nav_middle ul li {
        padding: 11px 70px;
    }
    
    .nav_box .side_navs .side_nav_middle ul li a {
        padding: 0px 0px;
        display: inline-block;
    }
    
    .side_icons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        right: 0;
        top: 300px;
        z-index: 8;
    }
    
    .side_icons button {
        background: #e3051b;
        border: 0;
        padding: 0px;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .side_icons button img {
        width: 100%;
        line-height: 0;
        padding: 0;
    }
    
    .side_icons button#open_chat {
        background-color: #E2001A;
    }
    
    .contace_box {
        position: fixed;
        max-height: calc(100vh - 117px);
        height: 100%;
        padding: 3rem;
        padding-top: 1rem;
        background-color: #3B3740;
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 9;
        -webkit-transition: .3s;
        transition: .3s;
        overflow-y: scroll;
    }
    
    .login_box,
    .search_box,
    .contace_box,
    .favorite_box {
        width: 490px;
    }
    
    .contace_box .close_contace {
        margin-bottom: 30px;
    }
    
    .contace_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .contace_box form {
        position: relative;
        color: #fff;
    }
    
    .registration_box form {
        position: relative;
        color: #fff;
    }
    
    .contace_box form input {
        border-radius: 0;
        padding: 12px 15px;
    }
    
    .contace_box form input:focus {
        border-color: #E2001A;
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
    }
    
    .contace_box form .contact_heading {
        color: #fff;
        font-weight: normal;
        font-size: 38px;
        margin-bottom: 30px;
    }
    
    .contace_box form .contace_text {
        padding-bottom: 40px;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 30px;
    }
    
    .contace_box form .for_label {
        margin-bottom: 0px;
        margin-top: 8px;
    }
    
    .contace_box form .contact_method_mode {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 30px;
        padding-bottom: 40px;
        gap: 5px;
    }
    
    .registration_box form .contact_method_mode {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        border-bottom: 1px solid #ffffff;
        margin-bottom: 30px;
        padding-bottom: 40px;
        gap: 5px;
    }
    
    .contace_box form .gender_mode {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 30px;
        border-bottom: 2px solid #A5A5A9;
        margin-bottom: 16px;
        gap: 5px;
    }
    
    .contace_box form .gender_mode .form-group {
        /* -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; */
    }
    
    .favorite_box {
        position: fixed;
        width: 490px;
        overflow: auto;
        height: 700px;
        min-height: calc(100vh - 117px);
        padding: 2.5rem;
        padding-top: 1rem;
        background-color: #3B3740;
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 9;
        -webkit-transition: .3s;
        transition: .3s;
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    
    .favorite_box .close_contace {
        margin-bottom: 30px;
    }
    /* .favorite_box::-webkit-scrollbar {
        display: none;
    } */
    /* Hide scrollbar for IE, Edge and Firefox */
    
    .favorite_box {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    
    .favorite_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .favorite_box .favorite_heading {
        color: #fff;
        margin-bottom: 16px;
        font-weight: normal;
    }
    
    .favorite_box .favorite_text {
        color: #fff;
        border-bottom: 2px solid #ffffff;
        padding-bottom: 16px;
    }
    
    .tooltipster-sidetip .tooltipster-box {
        background: transparent;
        border: none;
    }
    
    .tooltipster-sidetip .tooltipster-content {
        color: #9c9ca0;
        font-size: 16px;
    }
    
    .registration_box {
        /* position: fixed;
  width: 100%;
  max-height: calc(100vh - 117px);
  height: 100%;
  right: 0;
  -webkit-transform: translateX(calc(100%));
          transform: translateX(calc(100%));
  z-index: 9;
  -webkit-transition: .3s;
  transition: .3s;
  overflow-y: scroll; */
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Hide scrollbar for IE, Edge and Firefox */
        /* -ms-overflow-style: none; */
        /* IE and Edge */
        /* scrollbar-width: none; */
    }
    
    .registration_box::-webkit-scrollbar {
        display: none;
    }
    
    .registration_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .registration_box .registration_content {
        background-color: #535F6A;
        padding: 40px 0;
    }
    
    .registration_box .registration_content .registration_heading {
        color: #fff;
        font-weight: normal;
        margin-bottom: 30px;
    }
    
    .registration_box .registration_content p {
        color: #fff;
        font-size: 18px;
        line-height: 1.5;
    }
    
    .registration_box .registration_content .for_label {
        margin-bottom: 10px;
    }
    
    .registration_box .registration_content .gender_mode {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-bottom: 16px;
    }
    
    .registration_box .registration_content .gender_mode .form-group {
        width: 120px;
    }
    
    .registration_box .registration_content .gender_mode .form-group label {
        color: #fff;
    }
    
    .registration_box .registration_content form {
        margin-bottom: 60px;
    }
    
    .registration_box .registration_content .adress_r {
        font-size: 18px;
    }
    
    .registration_box .footer_copyright {
        background: #fff;
    }
    
    .forget_password_box {
        /* position: fixed;
  width: 100%;
  max-height: calc(100vh - 117px);
  height: 100%;
  right: 0;
  -webkit-transform: translateX(calc(100%));
          transform: translateX(calc(100%));
  z-index: 9;
  -webkit-transition: .3s;
  transition: .3s;
  overflow-y: scroll; */
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Hide scrollbar for IE, Edge and Firefox */
        /* -ms-overflow-style: none; */
        /* IE and Edge */
        /* scrollbar-width: none; */
    }
    
    .forget_password_box::-webkit-scrollbar {
        display: none;
    }
    
    .forget_password_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .forget_password_box .forget_password_content {
        background-color: #535F6A;
        padding: 40px 0;
    }
    
    .forget_password_box .forget_password_content .registration_heading {
        color: #fff;
        font-weight: normal;
        margin-bottom: 16px;
    }
    
    .forget_password_box .forget_password_content p {
        color: #fff;
        font-size: 18px;
        line-height: 1.5;
    }
    
    .forget_password_box .forget_password_content .forget_password_alart {
        background: rgba(226, 0, 26, 0.7);
        padding: 8px 6px;
    }
    
    .forget_password_box .forget_password_content .forget_password_alart_success {
        background: #4BB95C;
        padding: 8px 6px;
    }
    
    .forget_password_box .forget_password_content form {
        margin-bottom: 60px;
    }
    
    .forget_password_box .forget_password_content .adress_r {
        font-size: 18px;
    }
    
    .forget_password_box .footer_copyright {
        background: #fff;
    }
    
    .handbuch_box {
        position: fixed;
        width: 100%;
        min-height: calc(100vh - 117px);
        padding: 2.5rem 0 0;
        background-color: rgba(59, 55, 64, 0.95);
        right: 0;
        -webkit-transform: translateX(calc(100%));
        transform: translateX(calc(100%));
        z-index: 9;
        -webkit-transition: .3s;
        transition: .3s;
    }
    
    .handbuch_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .handbuch_box button {
        margin-left: 1rem;
        margin-bottom: 8px;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 12px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .handbuch_box .side_navs {
        width: 50%;
    }
    
    .handbuch_box .side_navs p {
        color: #fff;
        margin-bottom: 0;
    }
    
    .handbuch_box .side_navs ul {
        list-style: none;
        padding-left: 2rem;
    }
    
    .handbuch_box .side_navs ul li {
        padding: 8px 0;
        color: #fff;
    }
    
    .handbuch_box .side_navs ul li::before {
        display: none;
    }
    
    .handbuch_box .side_navs ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: normal;
    }
    
    .handbuch_box .side_navs .side_nav_top {
        padding-top: 8px;
        padding-left: 1rem;
        border-top: 1px solid #fff;
    }
    
    .handbuch_content_box {
        /* position: fixed; */
        width: 100%;
        /* max-height: calc(100vh - 117px); */
        /* height: 100%; */
        right: 0;
        -webkit-transform: translateX(calc(0%));
        transform: translateX(calc(0%));
        z-index: 5;
        -webkit-transition: .3s;
        transition: .3s;
        /* overflow-y: scroll; */
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
    }
    
    .handbuch_content_box::-webkit-scrollbar {
        display: none;
    }
    
    .handbuch_content_box.show_search_box {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    .default_iframe {
        width: 100%;
        border: none;
    }
    /* Hide scrollbar for Chrome, Safari and Opera */
    
    .default_iframe::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    
    .default_iframe {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    
    .accordion-body::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    
    .accordion-body {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    
    .accordion-collapse::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    
    .accordion-collapse {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
        background-image: url("/fileadmin/Images/MEB-SVG-Dateien/icon_close_red.svg");
    }
    
    .handbuch_content_box .steps_progress_content {
        background-image: linear-gradient(to bottom, #515356, #55575B) !important;
        padding: 6px 0 12px;
        overflow: auto;
        z-index: 9!important;
    }
    /* .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1360px !important;
        padding: 0px;
    } */
    
    .handbuch_content_box .steps_progress_content .steps_progress {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 24px;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step {
        cursor: pointer;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step .tr_step_num {
        font-size: 24px;
        color: #9CA1A8;
        text-decoration: underline;
        text-underline-offset: 2px;
        -webkit-transition: .5s;
        transition: .5s;
        line-height: 1;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step .tr_step_num a {
        font-size: 24px;
        color: #9CA1A8;
        text-decoration: underline;
        text-underline-offset: 2px;
        -webkit-transition: .5s;
        transition: .5s;
        line-height: 1;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step img {
        width: 25px;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step.cu_tr_step .tr_step_num {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }
    
    .handbuch_content_box .steps_progress_content .steps_progress .tr_step:hover .tr_step_num {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }
    
    .handbuch_content_box .headingsteps_content {
        background-image: linear-gradient(to bottom, #8D9197, #727982) !important;
        padding: 20px 0;
        position: relative;
    }
    
    .headingsteps_content_page {
        background: #717881;
        padding: 20px 0;
        position: relative;
    }
    
    .headingsteps_content_page .headingsteps_page .heading_page .title_page {
        color: #fff;
        margin: 0;
        font-size: 22px;
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps .heading {
        position: relative;
        /* display: none; */
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps .heading.active {
        display: block;
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps .heading .title {
        color: #fff;
        margin: 0;
        font-weight: normal;
        font-size: 32px !important;
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps_count {
        position: absolute;
        bottom: 10px !important;
        z-index: 1;
        right: 0;
        width: 160px;
        height: 110px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps_count .num_img {
        font-weight: bold !important;
        font-size: 158px !important;
        color: rgba(255, 255, 255, 0.2) !important;
        line-height: 1;
        margin-bottom: 0;
    }
    
    .handbuch_content_box .headingsteps_content .headingsteps_count .num_img img {
        width: 100px;
        margin-bottom: 20px;
    }
    
    .handbuch_content_box .steps {
        background: #fff;
        /* height: 590px;
  overflow-y: scroll; */
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* Hide scrollbar for IE, Edge and Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
    }
    
    .handbuch_content_box .steps::-webkit-scrollbar {
        display: none;
    }
    
    .handbuch_content_box .steps .step {
        /* display: none; */
    }
    
    .handbuch_content_box .steps .step.active {
        display: block;
    }
    
    .handbuch_content_box .steps .stepwrap {
        padding: 55px 0;
    }
    
    .handbuch_content_box .steps .stepwrap .accordion .accordion-item {
        border: 0;
        margin-bottom: 16px;
    }
    
    .accordion-body {
        padding-left: 0px!important;
        padding-right: 0px!important;
    }
    
    .handbuch_content_box .steps .stepwrap .accordion .accordion-item .accordion-header {
        border: 0;
        border-radius: 0 !important;
    }
    
    .handbuch_content_box .accordion-button {
        font-size: 17px;
        line-height: 27px;
        padding-bottom: 16px;
        padding-top: 16px;
    }
    
    .accordion_title_icon {
        width: 22px;
        margin-right: 10px;
    }
    
    .handbuch_content_box .steps .stepwrap .accordion .accordion-item .accordion-header .accordion-button {
        background-color: #717881;
        border: 0;
        border-radius: 0 !important;
        outline: 0;
        color: #fff;
    }
    
    .accordion-button-sub {
        background-color: #D8DBE0!important;
        color: #56575E!important;
    }
    
    .handbuch_content_box .steps .stepwrap tr_step_num.accordion .accordion-item .accordion-header .accordion-button:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #fff;
    }
    
    .accordion-button:focus {
        box-shadow: none!important;
    }
    
    .handbuch_content_box .steps .stepwrap .accordion .accordion-item .accordion-header .accordion-button::after {
        background-image: url("/fileadmin/Images/MEB-SVG-Dateien/icon_accordion_right_white.svg");
    }
    
    .handbuch_content_box .steps .stepwrap .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    
    .handbuch_content_box .steps_footer {
        background-color: #EEEEEE;
    }
    
    .handbuch_content_box .steps_footer .buttons {
        padding-top: 6px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 6px;
    }
    
    .handbuch_content_box .steps_footer .buttons a {
        color: #E2001A;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        line-height: 1;
        gap: 6px;
        border: 0;
        padding-right: 2px;
        padding-left: 2px;
    }
    
    .handbuch_content_box .steps_footer .buttons a img {
        width: 15px;
    }
    
    .handbuch_content_box .steps_footer .steps_footer_links p {
        margin-bottom: 0;
        text-align: center;
        color: #b4b8be;
        padding: 10px 0 16px;
    }
    
    .banner_container {
        /* background-image: url("/fileadmin/Images/new_homepage/MEB_Headimage_Startseite.svg"); */
        /* padding: 144px 0 200px; */
        /* background-position: center top; */
        /* background-size: cover; */
        /* height: 700px; */
    }
    
    .banner_container img {
        width: 100%;
        height: auto;
    }
    
    .banner_container .banner_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 60px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        overflow-x: auto;
        position: relative;
        -ms-overflow-style: none;
    }
    
    .banner_container .banner_content::-webkit-scrollbar {
        height: 5px;
    }
    
    .banner_container .banner_content::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
    }
    
    .banner_container .banner_content::-webkit-scrollbar-thumb {
        height: 5px;
        background-color: #000;
    }
    
    .banner_container .banner_content::-webkit-scrollbar-thumb:hover {
        background-color: #000;
    }
    
    .banner_container .banner_content::-webkit-scrollbar:vertical {
        display: none;
    }
    
    .banner_container .banner_content .banner_content_card {
        color: #fff;
        min-width: 260px;
        height: 260px;
        border: 1px solid #fff;
        padding: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .banner_container .banner_content .banner_content_card .card_heading {
        color: #fff;
        font-size: 19px;
        line-height: 1.2;
    }
    
    .banner_container .banner_content .banner_content_card .card_body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .banner_container .banner_content .banner_content_card .card_footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    
    .banner_container .banner_content .banner_content_card .card_footer .card_footer_text {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .banner_container .banner_content .banner_content_card .card_footer .card_footer_icon img {
        width: 30px;
    }
    
    .information_container .information_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 40px;
        position: relative;
    }
    
    .information_container .information_content .information_content_text h4 {
        margin-bottom: 50px;
        font-size: 19px;
        font-weight: normal;
        color: #9ca1a8;
    }
    
    .information_container .information_content .information_content_img img {
        width: 260px;
    }
    
    .latest_container {
        background-color: #A3CFE4;
    }
    
    .latest_container .latest_content .latest_heading {
        color: #fff;
        font-size: 17px;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: left;
        -ms-flex-pack: left;
        justify-content: left;
    }
    
    .latest_container .latest_content .latest_content_slider .latest_content_card {
        background-color: #fff;
        max-width: 260px;
        width: 260px;
        height: 260px;
        border: 1px solid #fff;
        padding: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    
    .latest_container .latest_content .latest_content_slider .latest_content_card .date {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .latest_container .latest_content .latest_content_slider .latest_content_card .card_heading {
        font-size: 17px;
        line-height: 1.2;
    }
    
    .latest_container .latest_content .latest_content_slider .latest_content_card .card_heading a {
        color: #56575e;
    }
    
    .latest_container .latest_content .latest_content_slider .latest_content_card .card_footer_text {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-dots {
        display: none;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-nav {
        margin-top: 0 !important;
        position: absolute;
        top: calc( 50% - 25px);
        width: 92%;
        margin-left: 20px;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-nav button {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.75);
        border-radius: 50%;
        font-size: 36px;
        color: #E2001A;
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: .5s;
        transition: .5s;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-nav button.owl-prev {
        left: -80px;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-nav button.owl-next {
        right: -80px;
    }
    
    .latest_container .latest_content .latest_content_slider .owl-nav button:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .recent_post_container {
        background-color: #F8F8F8;
        padding-top: 40px;
    }
    
    .recent_post_container .recent_post {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 90px;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 8px;
        padding-bottom: 16px;
        overflow-x: auto;
        position: relative;
        -ms-overflow-style: none;
    }
    
    .recent_post_container .recent_post::-webkit-scrollbar {
        height: 2px;
    }
    
    .recent_post_container .recent_post::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
    }
    
    .recent_post_container .recent_post::-webkit-scrollbar-thumb {
        height: 5px;
        background-color: #000;
    }
    
    .recent_post_container .recent_post::-webkit-scrollbar-thumb:hover {
        background-color: #000;
    }
    
    .recent_post_container .recent_post::-webkit-scrollbar:vertical {
        display: none;
    }
    
    .recent_post_container .recent_post .banner_content_card {
        min-width: 190px;
        max-width: 260px;
        height: 260px;
        border: 1px solid #fff;
        padding: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.25);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center left;
    }
    
    .recent_post_container .recent_post .banner_content_card .card_heading {
        font-size: 19px;
        line-height: 1.2;
    }
    
    .recent_post_container .recent_post .banner_content_card .card_body {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .recent_post_container .recent_post .banner_content_card .card_footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    
    .recent_post_container .recent_post .banner_content_card .card_footer .card_footer_text {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .recent_post_container .recent_post .banner_content_card .card_footer .card_footer_icon img {
        width: 30px;
    }
    
    .recent_post_container .recent_post .rp_1 {
        background-image: url("/fileadmin/Images/meb_home-teaser_ersatzbaustoffverordnung_hg.jpg");
        max-width: 580px !important;
    }
    
    .recent_post_container .recent_post .rp_1 .card_heading {
        color: #fff;
    }
    
    .recent_post_container .recent_post .rp_1 .card_footer .card_footer_text {
        color: #fff;
    }
    
    .recent_post_container .recent_post .rp_2 {
        background-image: url("/fileadmin/Images/meb_home-teaser_einbaumoeglichkeiten_hg.svg");
    }
    
    .recent_post_container .recent_post .rp_3 {
        background-image: url("/fileadmin/Images/meb_home-teaser_hersteller_hg.svg");
    }
    
    .recent_post_container .search_term {
        border-bottom: 1px solid #E6E6E6;
    }
    
    .recent_post_container .search_term .search_term_container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 2rem 0;
        gap: 20px;
    }
    
    .recent_post_container .search_term .search_term_container .advance_search_box {
        position: relative;
        width: 40%;
    }
    
    .recent_post_container .search_term .search_term_container .advance_search_box input {
        border-radius: 0;
        padding-right: 40px;
        border: 1px solid #000;
    }
    
    .recent_post_container .search_term .search_term_container .advance_search_box input:focus {
        border-color: #E2001A;
        -webkit-box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
        box-shadow: 0 0 0 0.25rem rgba(226, 0, 26, 0.25);
    }
    
    .recent_post_container .search_term .search_term_container .advance_search_box .search_button {
        position: absolute;
        top: 0;
        right: 0;
        border: 0;
    }
    
    .recent_post_container .search_term .search_term_container .advance_search_box .search_button img {
        width: 22px;
    }
    
    .recent_post_container .search_term .search_term_container a {
        color: #E2001A;
    }
    
    .recent_post_container .search_result {
        padding-bottom: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 40px;
    }
    
    .recent_post_container .search_result .card {
        border-radius: 0;
    }
    
    .recent_post_container .search_result .card img.card-img {
        height: 260px;
        border-radius: 0;
    }
    
    .recent_post_container .search_result .card .search_resultcard_content {
        padding: 16px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .recent_post_container .search_result .card .search_resultcard_content img {
        width: 45px;
        margin: 0 auto;
    }
    
    .recent_post_container .search_result .card .search_resultcard_content h4 {
        color: #fff;
        font-size: 18px;
    }
    
    .recent_post_container .search_result .card .search_resultcard_content p {
        font-size: 14px;
        margin: 0;
    }
    
    .service_container {
        background: #fff;
        padding: 16px 0;
    }
    
    .service_container h4 {
        /* padding: 8px 0; */
        font-size: 15px;
        font-weight: bold;
    }
    
    footer .footer_content {
        background: -webkit-gradient(linear, left top, left bottom, from(#696A70), to(#393A42));
        background: linear-gradient(#696A70, #393A42);
        padding-bottom: 38px;
    }
    
    footer .footer_content .usefull_link {
        border-bottom: 1px solid #ffffff;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    
    footer .footer_content .usefull_link a {
        color: #fff;
        margin-right: 15px;
        font-size: 16px;
    }
    
    footer .footer_content .footer_card .image_container {
        text-align: center;
        padding: 55px 0 17px 0;
        border-bottom: 2px solid #88888e;
    }
    
    footer .footer_content .footer_card .image_container img {
        height: 80px;
    }
    
    footer .footer_content .footer_card input {
        padding: 6px 15px;
    }
    
    footer .footer_content .footer_card textarea {
        height: 125px;
        margin-bottom: 9px;
    }
    
    footer .footer_content .footer_card h4 {
        font-weight: normal;
        color: #fff;
        font-size: 22px;
        margin: 20px 0;
    }
    
    footer .footer_content .footer_card p {
        color: #fff;
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 24px!important;
    }
    
    footer .footer_copyright {
        position: relative;
        padding: 5px 0;
    }
    
    footer .footer_copyright p {
        margin: 0;
        font-size: 14px;
        padding: 5px 0;
        color: #56575E;
    }
    
    footer .footer_copyright .scroll_top {
        width: 40px;
        height: 40px;
        position: fixed;
        bottom: 0;
        background-color: rgba(56, 57, 66, 0.7);
        z-index: 100;
        cursor: pointer;
        right: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    footer .footer_copyright .scroll_top img {
        width: 100%;
    }
    /*# sourceMappingURL=main.css.map */
    /* Maps Page */
    
    .title_bar {
        background: url('/fileadmin/Images/meb_headimage_vertriebspartner.svg');
        /* height:750px; */
        /* background-size:100% 750px; */
        background-position: bottom;
    }
    
    .title_bar_calculator {
        background: url('/fileadmin/Images/calculator/rx_meb_headimage_nachhaltigkeitsrechner.jpg');
        height: 750px;
        background-size: cover;
        background-position: bottom;
    }
    
    .nach_ul li:before {
        content: "";
        width: 7px;
        height: 7px;
        display: block;
        position: absolute;
        background: #e2001a;
        left: 0;
        top: 1.3ex;
    }
    
    .header_big {
        font-size: 72px;
        margin-top: 112px;
    }
    
    .map_page_footer {
        background: url('/fileadmin/Images/maps/rx_meb_ansprechpartner_teaser.svg');
        height: 500px;
        background-size: 100% 500px;
    }
    
    .map_page_brands {
        background-color: #B41412;
        padding-top: 66px;
        padding-bottom: 66px;
    }
    
    .brands_list {
        list-style-type: none;
        margin-bottom: 0px
    }
    
    .brands_list li {
        width: 140px;
        display: inline-block;
        margin-right: 40px;
        padding-left: 0px;
    }
    
    .nord {
        position: absolute;
        top: 20%;
        left: 56%;
        width: 120px;
        /* background: red; */
        height: 60px;
        cursor: pointer;
    }
    
    .ost {
        position: absolute;
        top: 38%;
        left: 77%;
        width: 120px;
        /* background: red; */
        height: 60px;
        cursor: pointer;
    }
    
    .west {
        position: absolute;
        top: 49%;
        left: 42%;
        width: 120px;
        /* background: red; */
        height: 60px;
        cursor: pointer;
    }
    
    .sud {
        position: absolute;
        bottom: 17%;
        left: 61%;
        width: 120px;
        /* background: red; */
        height: 60px;
        cursor: pointer;
    }
    
    .calculator_container {
        margin-bottom: 70px;
    }
    
    .calculator_container .calculator_content h2 {
        font-size: 38px;
        font-weight: 400;
        color: #56575e;
    }
    
    .calculator_container .calculator_content p {
        color: #000;
        font-size: 19px;
        width: 85%;
    }
    
    .calculator_container .calculator_form {
        background: #56575e;
        padding: 34px 44px;
        margin-top: 40px;
    }
    
    .calculator_container .calculator_form .calculator_form_heading {
        color: #fff;
        font-size: 38px;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 30px;
    }
    
    .calculator_container .calculator_form .calculate_text {
        color: #fff;
        font-size: 19px;
        margin-bottom: 8px;
    }
    
    .calculator_container .calculator_form .btn_submit_red {
        background: #e2001a;
        border: 1px solid #fff;
        border-radius: 1px;
        color: #fff;
        padding: 4px 8px;
    }
    
    .submit_for_results,
    .download_pdf {
        margin-top: 35px;
        margin-bottom: 55px;
    }
    
    .btn_submit_red {
        background: #e2001a;
        border: 1px solid #fff;
        border-radius: 1px;
        color: #fff;
        padding: 2px 10px;
    }
    
    .btn_submit_red:hover {
        background: #b40a1a;
        color: #fff;
        border-color: #fff;
    }
    
    .btn_submit_red.active {
        background: #D8DBE0;
        border-color: #D8DBE0;
        color: #56575e;
    }
    
    .do_inquiry_footer:active {
        background: #b40a1a;
        color: #fff;
    }
    
    .do_inquiry_footer:focus {
        background: #b40a1a;
        color: #fff;
    }
    
    .calculator_container .calculator_form .btn_submit_red.active {
        background: #D8DBE0;
        border-color: #D8DBE0;
        color: #56575e;
    }
    
    .calculator_container .calculator_form #asdern {
        display: none;
    }
    
    .calculator_container .calculator_form #asdern.show {
        display: block;
    }
    
    .calculator_container .calculator_form #volumen {
        display: block;
    }
    
    .calculator_container .calculator_form #volumen.show {
        display: none;
    }
    
    .calculator_container .calculator_form #gewich {
        display: block;
    }
    
    .calculator_container .calculator_form #gewich.show {
        display: none;
    }
    
    .calculator_container .calculator_form .calc_type {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .calculator_container .policy {
        margin: 20px 0;
        margin-bottom: 55px;
    }
    
    .calculator_container .policy p {
        color: #fff;
        max-width: 833px;
    }
    
    .calculator_container .calc_form {
        display: none;
    }
    
    .calc_form input {
        padding: 6px 15px;
        min-height: 45px;
        border-radius: 0!important;
    }
    
    .calculator_container .calc_form.active {
        display: block;
    }
    
    .calculator_container .calc_form .calc_type_head {
        color: #9ca1a8;
        background-color: #FFFFFF;
        border: 1px solid #D8DBE0;
        padding: 10px 20px;
        font-size: 19px;
        font-weight: 400;
        border-radius: 2px;
        margin: 0;
    }
    
    .calculator_container .calc_form hr {
        color: #FFFFFF;
    }
    
    .calculator_container .calc_form .calc_row .select_icon {
        position: relative;
    }
    
    .calculator_container .calc_form .calc_row .select_icon::after {
        /* position: absolute;
  content: '';
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #000;
  top: 18px;
  right: 12px;
  pointer-events: none;
  font-size: 19px; */
    }
    
    .calculator_container .calc_form .calc_row .select_icon select {
        min-height: 45px;
        border-radius: 2px;
    }
    
    .calculator_container .calc_form .calc_row .select_icon option {
        padding: 4px;
    }
    
    .calculator_container .calc_form .calc_row .select_icon option:hover {
        background-color: #131212 !important;
    }
    
    .calculator_container .calc_form .calc_row .text_prepend {
        padding: 0 20px;
        background-color: #D8DBE0;
        min-height: 45px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        font-size: 19px;
        color: #56575e;
        border-radius: 2px;
        border: 1px solid #D8DBE0;
        word-break: keep-all;
    }
    
    .calculator_container .calc_form .calc_row .append_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    
    .calculator_container .calc_form .calc_row .append_content_2 {
        flex-grow: 1;
    }
    
    .calculator_container .calc_form .calc_row .append_content input {
        border-radius: 2px;
        font-size: 19px;
        min-height: 45px;
    }
    
    .calculator_container .calc_form .calc_row .append_content.append_content_2 .text_prepend {
        padding: 0 20px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    .calculator_container .calc_form .calc_row .append_content.append_content_2 input {
        width: 90px !important;
    }
    
    .calculator_container .calc_form .calc_row .append_content.append_content_2 .trash {
        background: transparent;
        border: 1px solid #D8DBE0;
        border-radius: 1px;
        color: #fff;
        padding: 0 20px;
        height: 45px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 2px;
        cursor: pointer;
    }
    
    .calculator_container .calc_form .calc_row .append_content.append_content_2 .trash img {
        width: 25px;
    }
    
    .calculator_container .calc_form .calc_row .append_content.append_content_2 .trash.active {
        background: #D8DBE0;
        border-color: #D8DBE0;
        color: #56575e;
    }
    
    .calculator_container .calc_form .add_new_row {
        background-color: #ffffff;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        font-size: 20px;
        color: #56575e;
        border-radius: 2px;
        border: 1px solid #D8DBE0;
        margin-bottom: 30px;
    }
    
    .calculator_container .calc_result {
        display: none;
    }
    
    .calculator_container .calc_result.active {
        display: block;
    }
    
    .calculator_container .calc_result .total_result {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 55px;
    }
    
    .calculator_container .calc_result .total_result .total_result_div:first-child {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .calculator_container .calc_result .total_result .total_result_div.resource {
        width: 250px;
    }
    
    .calculator_container .calc_result .total_result .total_result_div.relief {
        width: 250px;
    }
    
    .calculator_container .calc_result .total_result .total_result_div.climate {
        width: 250px;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res_title_1 {
        color: #fff;
        font-size: 19px;
        font-weight: bold;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res_title {
        color: #fff;
        font-size: 19px;
        font-weight: bold;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 2px;
        text-align: center;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res_title.green {
        background-color: #A9C214;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res_title.orange {
        background-color: #EAAB00;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res_title.info {
        background-color: #31B7BC;
    }
    
    .calculator_container .calc_result .total_result .total_result_div .res {
        font-size: 38px;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    
    .calculator_container .calc_result p {
        color: #fff;
        font-size: 19px;
        font-weight: 400;
    }
    
    .quellenangaben_container {
        background: #EFEFF0;
        padding: 80px 0;
    }
    
    .quellenangaben_container .quellenangaben_content .Quellenangaben_heading {
        color: #56575e;
        font-size: 38px;
        font-weight: 500;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian {
        border-radius: 0;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item {
        border: 0;
        border-bottom: 1px solid #BEBFC1;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item:first-child {
        border-top: 1px solid #BEBFC1;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header {
        border: 0;
        border-radius: 0 !important;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header .accordion-button {
        background-color: #EFEFF0;
        border: 0;
        border-radius: 0 !important;
        outline: 0;
        color: #56575e;
        font-size: 18px;
        padding-left: 0;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header .accordion-button:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
        color: #56575e;
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header .accordion-button::after {
        background-image: url("../..//fileadmin/Images/MEB-SVG-Dateien/icon_arrow_red_next-chapter.svg");
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }
    
    .quellenangaben_container .quellenangaben_content #quellenangaben_accordian .accordion-item .accordion-collapse {
        background: #EFEFF0;
    }
    
    .more_info_container {
        background-color: #012d5a;
        /* background-image: url("/fileadmin/Images/calculator/rx_meb_nachhaltigkeitsrechner_teaser_hg.jpg"); */
        /* background-size: 950px; */
        /* background-position: center right; */
        /* background-repeat: no-repeat; */
        padding: 50px 0;
    }
    
    .more_info_container .more_info__text {
        max-width: 1095px;
        /* width: 80%; */
        color: #fff;
        margin: 0;
        font-size: 25px;
    }
    
    .more_info_container .more_info_link {
        color: #fff;
        margin: 0;
        font-size: 26px;
        font-weight: bold;
    }
    /* New Homepage */
    
    .third_section .container {
        margin-bottom: 48px;
    }
    
    .third_section .container .row {
        background-color: #EFEFF0;
    }
    
    .section_icon {
        display: block;
        width: 48px;
        height: 48px;
        background-image: url("/fileadmin/Images/randicons_48px_absprunglink.svg");
        background-repeat: no-repeat;
        background-position: left top;
        background-size: contain;
        background-color: #e2001a;
        border-radius: 50%;
        border: 1px solid #fff;
        transition: background-color 0.5s;
        cursor: pointer;
        position: absolute;
        bottom: 30px;
        right: 30px;
    }
    
    .section_icon_less {
        display: block;
        width: 48px;
        height: 48px;
        background-image: url("/fileadmin/Images//randicons_48px_absprunglink.svg");
        background-repeat: no-repeat;
        background-position: left top;
        background-size: contain;
        background-color: #e2001a;
        border-radius: 50%;
        border: 1px solid #fff;
        transition: background-color 0.5s;
        cursor: pointer;
        position: absolute;
        bottom: 30px;
        right: 30px;
    }
    
    .fourth_section {
        background-color: #002d5a;
        margin-bottom: 48px;
        padding: 48px 0;
    }
    
    .inside_fourth {
        padding: 36px;
    }
    
    .fifth_section .container {
        margin-bottom: 48px;
    }
    
    .fifth_section .container .row {
        background-color: #EFEFF0;
    }
    
    .p-48 {
        padding: 48px;
    }
    
    .p-36 {
        padding-bottom: 36px;
        padding-right: 22px;
        padding-top: 22px;
        padding-left: 22px;
    }
    
    .sixth_section {
        margin-bottom: 48px;
    }
    
    .eighth_section {
        margin-bottom: 48px;
    }
    
    .eighth_section .granova {
        background-image: url("/fileadmin/Images/meb_startseite_teaser_hg_granova.svg");
        background-size: 60%;
        background-position: 50% 80%;
        background-color: #b40b1a;
        background-repeat: no-repeat;
        border-radius: 2px;
        flex-shrink: 0;
        flex-grow: 0;
        overflow-wrap: break-word;
        overflow: hidden;
        position: relative;
        z-index: 1;
        color: white;
        border-radius: 2px;
    }
    
    .eighth_section .remexit {
        background-image: url("/fileadmin/Images/meb_startseite_teaser_hg_remexit.svg");
        background-size: 60%;
        background-position: 50% 80%;
        background-color: #b40b1a;
        background-repeat: no-repeat;
        border-radius: 2px;
        flex-shrink: 0;
        flex-grow: 0;
        overflow-wrap: break-word;
        overflow: hidden;
        position: relative;
        z-index: 1;
        color: white;
        border-radius: 2px;
    }
    
    .sixth_section .praxis {
        background-image: url("/fileadmin/Images/meb_startseite_teaser_hg_praxis.svg");
        background-size: 170px;
        background-position: 90% 50%;
        background-color: #002147;
        background-repeat: no-repeat;
        border-radius: 2px;
        flex-shrink: 0;
        flex-grow: 0;
        overflow-wrap: break-word;
        overflow: hidden;
        position: relative;
        z-index: 1;
        color: white;
        border-radius: 2px;
    }
    
    .sixth_section .vetri {
        background-image: url("/fileadmin/Images/meb_startseite_teaser_hg_vertriebspartner.svg");
        background-size: 200px;
        background-position: 90% 50%;
        background-color: #002147;
        background-repeat: no-repeat;
        border-radius: 2px;
        flex-shrink: 0;
        flex-grow: 0;
        overflow-wrap: break-word;
        overflow: hidden;
        position: relative;
        z-index: 1;
        color: white;
        border-radius: 2px;
    }
    
    .seventh_section {
        margin-bottom: 48px;
    }
    
    .seventh_section .container .row {
        background-color: #EFEFF0;
    }
    /* New Homepage */
    
    .container {
        width: 100%;
    }
    /* Media Queries  */
    
    @media (min-width: 1440px) {
        .teaser_spacing_right {
            padding-right: 16px!important;
        }
        .teaser_spacing_left {
            padding-right: 16px!important;
        }
        .teaser_container_top_margin {
            margin-top: 48px!important;
        }
        .teaser_container_top_padding {
            padding-top: 48px!important;
        }
        .teaser_container_bottom_padding {
            padding-bottom: 48px!important;
        }
        .teaser_paragraph {
            font-size: 19px;
            line-height: 28.5px
        }
        .teaser_title {
            margin-bottom: 35px!important;
            font-size: 38px!important;
            line-height: 53.2px!important;
        }
        .teaser_container {
            margin-bottom: 48px!important;
        }
        .teaser_1 {
            padding-left: 36px;
            padding-right: 36px;
            padding-top: 36px;
            padding-bottom: 72px;
        }
        .teaser_2 {
            padding-left: 36px;
            padding-right: 36px;
            padding-top: 36px;
        }
        .handbuch_content_box .steps {
            padding-left: 60px!important;
            padding-right: 60px!important;
        }
        .content_box_width {
            max-width: 1360px!important;
            /* padding-left: 60px!important;
            padding-right: 60px!important; */
            margin-left: auto;
            margin-right: auto;
        }
        .custom_page_1920 {
            max-width: 1920px!important;
            padding-left: 0px!important;
            padding-right: 0px!important;
        }
        .container {
            max-width: 100%;
            padding-right: 0px;
            padding-left: 0px;
        }
        .homepage_content_wrap {
            max-width: 1596px;
            /* padding: 48px 60px 0 60px; */
            padding: 0 60px 0 60px;
            margin: auto;
        }
        .container p {
            width: auto;
            max-width: 1128px !important;
        }
        .container,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl {
            max-width: 1596px;
        }
        footer .footer_content .container {
            max-width: 1596px;
        }
        .footer_content {
            max-width: 1920px;
        }
        .service_container {
            max-width: 1920px;
        }
        .hide_on_desktop {
            display: none;
        }
    }
    
    @media (max-width: 1440px) {
        .teaser_spacing_right {
            padding-right: 15px!important;
        }
        .teaser_spacing_left {
            padding-right: 15px!important;
        }
        .teaser_container_top_margin {
            margin-top: 32px!important;
        }
        .teaser_container_top_padding {
            padding-top: 32px!important;
        }
        .teaser_container_bottom_padding {
            padding-bottom: 32px!important;
        }
        header .nav-item a {
            padding-bottom: 20px;
        }
        .teaser_paragraph {
            font-size: 18px;
            line-height: 27px
        }
        .teaser_title {
            margin-bottom: 30px!important;
            font-size: 32px!important;
            line-height: 44.8px!important;
        }
        .teaser_container {
            margin-bottom: 32px!important;
        }
        .teaser_1 {
            padding-left: 36px;
            padding-right: 36px;
            padding-top: 36px;
            padding-bottom: 66px;
        }
        .teaser_2 {
            padding-left: 36px;
            padding-right: 36px;
            padding-top: 36px;
        }
        footer .footer_copyright p {
            padding: 5px 30px;
        }
        .container {
            max-width: 100%;
            padding-right: 0px;
            padding-left: 0px;
        }
        .submenu {
            top: 140px;
        }
        .homepage_content_wrap {
            max-width: 1596px;
            /* padding: 32px 40px 2px 40px; */
            padding: 0 40px 2px 40px;
            margin: auto;
        }
        /* For subpages */
        .subpage .container {
            max-width: 798px;
            padding: 60px 60px 20px 60px;
        }
        .content_box_width {
            max-width: 798px!important;
            padding-left: 60px;
            padding-right: 60px;
            margin-left: auto;
            margin-right: auto;
        }
        .custom_page_1920 {
            max-width: 1920px!important;
            padding-left: 0px!important;
            padding-right: 0px!important;
        }
        /* For subpages */
        .side_icons button {
            width: 30px;
            height: 30px;
        }
        p.normal {
            margin-bottom: 40px;
            font-size: 18px;
        }
        p.handbunch {
            margin-bottom: 40px;
            font-size: 16px;
        }
        ul {
            margin-bottom: 40px;
        }
        ul li::before {
            width: 6px;
            height: 6px;
        }
        ul.normal li {
            font-size: 18px;
        }
        ul.handbunch li {
            font-size: 16px;
        }
        h1,
        h2 {
            margin-bottom: 30px;
        }
        h1.normal,
        h2.normal {
            font-size: 32px;
        }
        h1.handbunch,
        h2.handbunch {
            font-size: 27px;
        }
        h3.normal {
            font-size: 21px;
        }
        h3.handbunch {
            font-size: 18px;
        }
        h4.normal {
            font-size: 18px;
        }
        h4.handbunch {
            font-size: 16px;
        }
    }
    
    @media (max-width: 1024px) {
        .teaser_paragraph {
            font-size: 18px;
            line-height: 27px
        }
        .teaser_title {
            margin-bottom: 35px!important;
            font-size: 32px!important;
            line-height: 44.8px!important;
        }
        .teaser_1 {
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 30px;
            padding-bottom: 66px;
        }
        .teaser_2 {
            padding-left: 30px;
            padding-right: 30px;
            padding-top: 30px;
        }
        .close_favorite,
        .close_contace {
            margin-right: 22px;
            margin-top: 22px;
        }
        .nav_container {
            padding: 22px;
        }
        .nav_box .side_navs ul li a {
            padding: 11px 22px;
        }
        .nav_box .side_navs .side_nav_middle ul li {
            padding: 11px 30px;
        }
        .container {
            max-width: 100%;
            padding-right: 0px;
            padding-left: 0px;
        }
        .submenu {
            top: 128px;
        }
        .homepage_content_wrap {
            max-width: 1596px;
            /* padding: 30px 30px 0 30px; */
            padding: 0 30px 0 30px;
            margin: auto;
        }
        .nav_container_top {
            padding: 22px 0 0 22px;
        }
        /* For subpages */
        .subpage .container {
            max-width: 798px;
            padding: 60px 30px 20px 30px;
        }
        .content_box_width {
            max-width: 798px!important;
            padding-left: 30px;
            padding-right: 30px;
            margin-left: auto;
            margin-right: auto;
        }
        .custom_page_1920 {
            max-width: 1920px!important;
            padding-left: 0px!important;
            padding-right: 0px!important;
        }
        /* For subpages */
        .banner_container {
            height: auto;
        }
        .dark_nav {
            width: 360px;
            display: none;
        }
        .nav_box {
            width: 360px;
            top: 120px;
        }
        .login_box,
        .search_box,
        .contace_box,
        .favorite_box {
            top: 120px;
            width: 360px;
        }
        header .navbar-brand {
            padding-left: 0px;
        }
        header nav {
            padding-left: 20px;
        }
        .navigation_container {
            padding-left: 0px;
        }
        .search_term .search_term_container {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start !important;
            -ms-flex-align: start !important;
            align-items: flex-start !important;
        }
        .search_term .search_term_container .advance_search_box {
            width: 100% !important;
        }
        .recent_post_container .search_result {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }
        .recent_post_container .search_result .card {
            width: calc(50% - 20px);
        }
        .latest_content_slider .owl-nav {
            margin-top: 0 !important;
            position: absolute;
            top: -70px !important;
            width: 100%;
        }
        .latest_content_slider .owl-nav button.owl-prev {
            left: calc( 100% - 120px) !important;
        }
        .latest_content_slider .owl-nav button.owl-next {
            right: 0px !important;
        }
        .latest_content_slider .owl-nav button:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        .hide_on_tablet {
            display: none;
        }
        .nord {
            position: absolute;
            top: 15%;
            left: 70%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .ost {
            position: absolute;
            top: 38%;
            left: 80%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .west {
            position: absolute;
            top: 45%;
            left: 62%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .sud {
            position: absolute;
            bottom: 12%;
            left: 72%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
    }
    
    @media (max-width: 768px) {
        .handbuch_content_box .headingsteps_content .headingsteps_count .num_img {
            font-size: 100px!important;
        }
        .handbuch_content_box .headingsteps_content .headingsteps_count {
            bottom: -30px!important;
            width: auto;
        }
        .teaser_spacing_right {
            padding-right: 0!important;
        }
        .teaser_spacing_left {
            padding-right: 0!important;
        }
        .teaser_paragraph {
            font-size: 17px;
            line-height: 27.2px
        }
        .teaser_title {
            margin-bottom: 23px!important;
            font-size: 26px!important;
            line-height: 36.4px!important;
        }
        .teaser_1 {
            padding-left: 22px;
            padding-right: 22px;
            padding-top: 22px;
            padding-bottom: 72px;
        }
        .teaser_2 {
            padding-left: 22px;
            padding-right: 22px;
            padding-top: 22px;
        }
        .service_container h4 {
            padding-left: 10px;
        }
        .row {
            margin-right: 0px;
            margin-left: 0px;
        }
        .latest_container .latest_content .latest_content_slider .latest_content_card {
            width: 100%;
            max-width: 100%;
        }
        .more_info_container .more_info__text {
            font-size: 26px;
            width: 100%;
        }
        .more_info_container .more_info_link {
            font-size: 26px;
        }
        .nav_box .side_navs {
            height: 1200px;
            overflow: auto;
        }
        .calculator_container .calculator_form {
            padding: 34px 22px;
        }
        .calculator_container .calc_form .calc_row .append_content_3 {
            align-items: flex-end;
            justify-content: flex-end;
            margin-top: 10px;
        }
        .calculator_container .calc_form .calc_row .append_content.append_content_2 .trash {
            padding: 0 8px;
        }
        .calculator_container .calculator_form .calculator_form_heading {
            font-size: 26px;
        }
        #accordionSub .accordion-item {
            margin-bottom: 0px;
        }
        .handbuch_content_box .steps .stepwrap .accordion .accordion-item .accordion-header .accordion-button {
            padding-left: 12px;
            padding-right: 12px;
            border: 1px solid #fff;
        }
        .handbuch_content_box .steps .stepwrap .accordion .accordion-item {
            margin-bottom: 5px;
        }
        .nav_box .side_navs ul li {
            padding-left: 0;
        }
        .search_box.show_search_box {
            padding: 30px 22px 30px 22px;
        }
        .contace_box.show_search_box {
            padding: 30px 22px 30px 22px;
        }
        .favorite_box.show_search_box {
            padding: 30px 22px 30px 22px;
        }
        .login_box.show_search_box {
            padding: 30px 22px 30px 22px;
        }
        .mobile_icons_container button {
            margin-left: 34px;
        }
        .plr_0_mobile {
            padding-left: 0;
            padding-right: 0;
        }
        .nav_container {
            padding: 22px;
        }
        .nav_container_top {
            padding: 22px 0 0 22px;
        }
        header .navbar-brand img {
            width: auto;
            height: 23px;
        }
        /* .second_section .container {
            padding: 45px 22px 0 22px;
        } */
        .notifyjs-bootstrap-error {
            max-width: 300px;
            width: auto;
            white-space: normal!important;
        }
        .footer_content {
            display: none;
        }
        .container {
            max-width: 100%;
            padding-right: 0px;
            padding-left: 0px;
        }
        .homepage_content_wrap {
            max-width: 1596px;
            /* padding: 30px 20px 0 20px; */
            padding: 0 20px 0 20px;
            margin: auto;
        }
        /* .second_section {
            padding-top: 0px;
        } */
        /* For subpages */
        .subpage .container {
            max-width: 568px;
            padding: 45px 44px 15px 44px;
        }
        .content_box_width {
            max-width: 568px!important;
            padding-left: 44px;
            padding-right: 44px;
            margin-left: auto;
            margin-right: auto;
        }
        .custom_page_1920 {
            max-width: 1920px!important;
            padding-left: 0px!important;
            padding-right: 0px!important;
        }
        /* For subpages */
        .banner_container {
            height: auto;
        }
        .dark_nav {
            display: none;
        }
        /* .praxis {
            margin: 0 22px;
        }
        .vetri {
            margin: 0 22px;
        } */
        /* .granova {
            margin: 0 22px;
        }
        .remexit {
            margin: 0 22px;
        } */
        /* .container {
            padding: 0 36px;
        } */
        .mobile_parent {
            margin-bottom: 36px;
        }
        /* .inside_fourth {
            margin: 0 22px;
        } */
        .gx-5 {
            --bs-gutter-x: 0!important;
        }
        p.normal {
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 1.6;
        }
        p.handbunch {
            margin-bottom: 30px;
            font-size: 15px;
            line-height: 1.6;
        }
        ul {
            margin-bottom: 30px;
        }
        ul.normal li {
            font-size: 17px;
        }
        ul.handbunch li {
            font-size: 16px;
        }
        h1,
        h2 {
            margin-bottom: 23px;
        }
        h1.normal,
        h2.normal {
            font-size: 26px;
        }
        h1.handbunch,
        h2.handbunch {
            font-size: 25px;
        }
        h3.normal {
            font-size: 20px;
        }
        h3.handbunch {
            font-size: 17px;
        }
        h4.normal {
            font-size: 17px;
        }
        h4.handbunch {
            font-size: 15px;
        }
        header nav {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        header .navbar-brand {
            padding-left: 0px;
            width: auto !important;
        }
        .information_container .information_content {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }
        .information_container .information_content h4,
        .information_container .information_content p {
            text-align: center;
        }
        .search_box,
        .login_box,
        .nav_box,
        .contace_box,
        .favorite_box {
            width: 100% !important;
            top: 115px;
        }
        .recent_post_container .recent_post {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            gap: 60px;
            overflow: hidden;
        }
        .recent_post_container .recent_post .banner_content_card {
            max-width: 100% !important;
            width: 100% !important;
        }
        .information_content .information_content_img {
            position: absolute;
            padding: 0 40px 40px;
            bottom: 0;
        }
        .information_content .information_content_img img {
            width: 260px;
        }
        .hide_on_mobile {
            display: none;
        }
        .show_on_mobile {
            display: block;
        }
        .owl-nav {
            display: none!important;
        }
        .handbuch_content_box .steps .stepwrap {
            padding: 45px 0;
        }
        .title_bar {
            background: url('/fileadmin/Images/meb_headimage_vertriebspartner.svg')!important;
            height: 180px!important;
            background-size: 120%!important;
            background-position: center!important;
        }
        .title_bar_calculator {
            background: url(/fileadmin/Images/calculator/rx_meb_headimage_nachhaltigkeitsrechner.jpg)!important;
            height: 180px!important;
            background-size: 120%!important;
            background-position: center!important;
        }
        .calculator_image {
            width: auto;
            max-height: 180px;
        }
        .map_page_footer {
            background: url(/fileadmin/Images/maps/rx_meb_ansprechpartner_teaser.svg)!important;
            /* height: 100px!important; */
            background-size: cover;
            margin-top: 20px!important;
        }
        .map_wrapper {
            /* height: 0px!important; */
        }
        .mobile_page_header {
            background-color: #56575E;
            padding: 30px 22px;
        }
        .mobile_page_header h1 {
            font-size: 26px;
        }
        .content_start_mobile h1 {
            margin-top: 40px!important;
        }
        .nord {
            position: absolute;
            top: 15%;
            left: 70%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .ost {
            position: absolute;
            top: 38%;
            left: 80%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .west {
            position: absolute;
            top: 45%;
            left: 62%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
        .sud {
            position: absolute;
            bottom: 12%;
            left: 72%;
            width: 60px;
            /* background: red; */
            height: 30px;
            cursor: pointer;
        }
    }
    
    @media (max-width: 567px) {
        .content_box_width {
            padding-left: 22px!important;
            padding-right: 22px!important;
            margin-left: auto;
            margin-right: auto;
        }
        .custom_page_1920 {
            max-width: 1920px!important;
            padding-left: 0px!important;
            padding-right: 0px!important;
        }
        .row {
            margin-right: 0px;
            margin-left: 0px;
        }
        .nav-up {
            display: none;
        }
        .search_box,
        .login_box,
        .nav_box,
        .contace_box,
        .favorite_box {
            top: 115px;
        }
        .container {
            max-width: 100%;
            padding-right: 0px;
            padding-left: 0px;
        }
        .homepage_content_wrap {
            max-width: 1596px;
            /* padding: 30px 20px 0 20px; */
            padding: 0 20px 0 20px;
            margin: auto;
        }
        /* For subpages */
        .subpage .container {
            padding: 45px 22px 15px 22px;
        }
        /* For subpages */
        .banner_container img {
            min-height: 100%;
            object-fit: cover;
        }
        h1.handbunch,
        h2.handbunch {
            font-size: 22px;
        }
        .recent_post_container .search_result {
            gap: 20px;
        }
    }

.show_search_box div#c100 .container {
    display: none;
}

