/* ########################################################################## */
/* # BOF default.css */
/* # StyleSheet für alle Webseiten */
/* ########################################################################## */

/*
  HTE Farben
  F01: BLAU:   #002659 rgb(0, 38, 89)
  F02: ORANGE: #ff6600 rgb(255, 102, 0)
  F03: GRAU:   #808080 rgb(128, 128, 128)
  F04: WEISS:  #ffffff rgb(255, 255, 255)
  
  ?F05: DGRAU:  #474747 rgb(71, 71, 71)
  ?F05: DGRAU:  #464646 rgb(70, 70, 70) NEU
  ?F06: HBLAU:  #d7def9 rgb(215, 222, 249)
  ?F07: HGRAU:  #deded0 rgb(222, 222, 224)
  
  F08: HGRAU:  #f5f5f5 rgb(245, 245, 245) Hintergrund-Farbe
  
  #STATUS-Farben
  F09: ROSA:   #ffdddd rgb(255, 221, 221) STATUS: Neu
  F10: GRAU:   #c0c0c0 rgb(192, 192, 192) STATUS: Durchgeführt, abgerechnet
  F11: HGRÜN:  #d0ead6 rgb(208, 234, 214) STATUS: In Bearbeitung
  F12: HBLAU:  #d1eaff rgb(209, 234, 255) STATUS: Buchung
  F13: HGRAU:  #eeeeee rgb(238, 238, 238) STATUS: Rückgabe (Absage durch Anbieter)
  F14: HGRAU:  #eeeeee rgb(238, 238, 238) STATUS: Storno
  F15: HGELB:  #ffffc5 rgb(255, 255, 197) STATUS: Absage durch Kunde
  
  F16: HBLAU:  #e4efff rgb(228, 239, 255) STATUS: Hintergrund-Farbe: Hellblau
  F17: HBLAU:  #e5f0ff rgb(229, 240, 255) Menü-Color

  
  HTE Schrift
  font-family: "Source Sans Pro", Calibri, Arial, Helvetica, Verdana, "Trebuchet MS", sans-serif;
  
  #EEF0F2
*/


/* Scrollbar immer auf webkit-browsern */
.filter-list-selection-inner::-webkit-scrollbar {
    -webkit-appearance: none;
}
.filter-list-selection-inner::-webkit-scrollbar:vertical {
    width: 10px;
}
.filter-list-selection-inner::-webkit-scrollbar:horizontal {
    height: 10px;
}
.filter-list-selection-inner::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .3);
    border-radius: 1px;
    border: 1px solid #ffffff;
    box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.filter-list-selection-inner::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #ffffff;
}



.h-bold {
    font-weight: bold;
}

.print-only {
    display: none;
}

.counter-clear {
    counter-reset: number;
}
.counter {
    position: relative;
    display: inline-block;
}
.counter:before {
    counter-increment: number;
    content: counter(number);
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    color: #fff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #cccccc;
    font-size: 0.75em;
    overflow: hidden;
}






.ppk-list {
    display: block;
    padding: 10px 0 0;
    list-style: none;
    margin: 0;
}
.ppk-list > li {
    margin-bottom: 10px;
}
.ppk-list > li > div {
    padding: 0 10px;
}

.gallery-list {
    display: block;
    padding: 0;
    list-style: none;
    margin: 0;
}

.gallery-list-item {
    display: block;
    column-break-inside: avoid;
}

.gallery-list-item a {
    display: block;
    margin: 0 10px 20px 10px;
    position: relative;
}

.gallery-list-item a img {
    width: 100%;
}

.gallery-list-item a .button-gallery {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0.5em;
    color: #fff;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
}
.gallery-list-item a:hover .button-gallery {
    color: #f60;
}

.gallery-list-item a .button-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 3em;
    color: #ff0000;
    opacity: 1;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
}

.gallery-list-item a:hover .button-video {
    opacity: 1;
}

.gallery-list-item a .button-video i {
    background: rgba(255,255,255,0.5);
    padding: 1rem;
    border-radius: 50%;
    width: 1em;
}
.gallery-list-item a .button-video i::before {
    margin-left: 10px;
}

.image-wrapper {
    position: relative;
}

.page-header-copyright,
.gallery-copyright {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 1rem rgba(0,0,0,0.75);
    text-decoration: none;
    font-size: 0.75rem;
    padding-left: 0.25rem;
    white-space: nowrap;
    max-width: 80%;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
}

.image-wrapper .gallery-copyright,
.page-header-copyright {
    left: auto;
    right: 0;
    padding-right: 0.25rem;
    padding-bottom: 0.25rem;
}

.page-header-copyright {
    z-index: 1;
    bottom: auto;
    top: 0.125rem;
    border-top-right-radius: 1rem;
    padding-right: 0.75rem;
}

img, audio, video, embed, object {
    height: auto;
    max-width: 100%;
    width: auto;
}

img {
    display: block;
    margin: 0 auto;
}

/* Formular-Elemente */
button,
input,
select,
textarea {
    color: var(--hte-txt-color, #464646);
}


input[type="search"] {
    -webkit-appearance: none;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="file"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea,
select {
    background-color: var(--hte-bg-color, #ffffff);
    border: 1px solid var(--hte-border-color, #dedede);
    border-radius: 0.5rem;
    padding: 0.5em;
}

[type="checkbox"],
[type="radio"] {
    vertical-align: middle;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="file"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select {
    height: 40px;
    line-height: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input:focus::-webkit-input-placeholder {
    color:transparent;
}
input:focus:-moz-placeholder {
    color:transparent;
} /* FF 4-18 */
input:focus::-moz-placeholder {
    color:transparent;
} /* FF 19+ */
input:focus:-ms-input-placeholder {
    color:transparent;
} /* IE 10+ */

textarea {
    resize: vertical;
}

textarea.readonly,
input.readonly,
select.readonly {
    color: #cccccc;
    border-color: #eeeeee;
}

textarea.large,
input.large,
select.large {
    width: 100%;
}

input.large,
select.large {
    height: 40px;
}

input[type="file"].large {
    height: auto;
}

input.large + input.large {
    margin-top: 0.5em;
}


label.large {
    line-height: 40px;
}

#price-variant-select:disabled,
label:disabled,
input:disabled,
textarea:disabled,
select:disabled {
    color: #bbbbbb;
}




.disable-scroll .wrapper-outer {
    margin-right: 17px;
}


.slider-wrapper {
    margin: 0 auto;
    max-width: 80rem;
}

.slider-wrapper,
.ce-menu {
    text-align: left;
}



#page-header .header-info {
    position: relative;
    z-index: 570;
    line-height: 1;
    padding: 0;
    display: none;
}

.header-info .header-info-toogle {
    border: 1px solid #002659;
    position: absolute;
    right: 0;
    height: 260px;
    width: 300px;
    background-color: #ffffff;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/../Images/Platzhalter/hirschfeld-telefon-display2.png);
    color: #464646;
    opacity: 0;
    transition: all 0.5s ease;
    visibility: hidden;
    margin-top: 9px;
    text-align: center;
}
.header-info:hover .header-info-toogle {
    opacity: 1;
    visibility: visible;
}

.header-info-toogle .hi-01 {
    font-size: 1.2em;
    margin: 0.5rem 0;
}
.header-info-toogle .hi-02 {
    font-size: 1em;
    margin: 0.5rem 0;
}
.header-info-toogle .hi-03 {
    color: #fff;
    font-size: 10px;
    text-shadow: 0 0 1px rgba(0,0,0,.75);
    position: absolute;
    bottom: 5px;
    text-align: center;
    right: 0;
    left: 0;
    display: none;
}

#page-header .header-info:hover > a,
#page-header .header-info > a:hover {
    color: #ff6600;
}


/* totop-Link */
#totop {
    bottom: 10px;
    position: fixed;
    right: 10px;
    z-index: 5000;
    display: none;
}

#totop a {
    background-color: #ff6600;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    display: block;
    opacity: 1;
    outline: none;
    text-decoration: none;
    transition: all 0.5s ease-out;
    min-width: 40px;
    line-height: 40px;
}

#totop a span {
    display: none;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.flex-container > div {
    flex: 1 1 300px;
}

.additional-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}



#page-header-inner {
    background-color: #deded0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    position: absolute;
    top:100px;
    left: 0;
    right: 0;
    bottom: 0;
}




#page-header .menu-toogle a{
    color: #002659;
    margin: 0 10px;
    font-weight: bold;
}

#page-header-top {
    background-color: #ffffff;
    color: #002659;
    height: 100px;
    position: relative;
    margin-bottom: 0.5rem;
}



#page-header-top.fixed-header,
#page-header-top.fixed {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 800;
    border-bottom: 1px solid var(--hte-border-color, #dedede);
}

#page-header-top.fixed-header {
    height: 85px;
}


.disable-scroll #page-header-top.fixed {
    right: 17px;
}

#page-header-content {
    position: relative;
}

#page-header-content .centered {
    max-height: 100%;
}

#page-header-content h1,
#page-header-content .h1-optic {
    margin: 0;
    font-size: 1.5em;
}

#page-header-content h2,
#page-header-content .h2-optic {
    margin: 0;
}

#page-header-content p {
    margin: 0.25em 0 0;
}

#page-header-content button {
    margin-top: 20px;
    max-width: 400px;
}

.ref-title {
    text-align: left;
}

#page-footer h3,
#page-footer .h3-optic,
#page-footer h4,
#page-footer .h4-optic {
    margin-top: 0;
}



#sec-helps {
    background-color: #d7def9;
    color: #002659;
    display: none;
    padding: 50px 0;
}

#helper-close {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
}

#sec-categories ul.csc-menu-def,
.ce-menu-106 {
    color: #808080;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

#sec-categories ul.csc-menu-def li,
.ce-menu-106 li {
    display: inline-block;
    line-height: 2;
}

#sec-categories ul.csc-menu-def li a,
.ce-menu-106 li a {
    color: #808080;
    margin: 0.5em;
    text-decoration: none;
}

#sec-categories ul.csc-menu-def li a:hover,
.ce-menu-106 li a:hover {
    color: #464646;
}

#sec-categories ul.csc-menu-def li::after,
.ce-menu-106 li::after {
    content: " | ";
    display: inline;
    font-size: 1em;
}

#sec-categories ul.csc-menu-def li:last-child::after,
.ce-menu-106 li:last-child::after {
    content: "";
}

.ce-menu-103 {
    display: flex;
    flex-wrap: wrap;
}



.ce-menu-107 img.m-overlay,
.ce-menu-107 a:hover img.m-previewicon {
    visibility: hidden;
    opacity: 0;
    top: 0;
    position: absolute;
}
.ce-menu-107 img.m-previewicon,
.ce-menu-107 a:hover img.m-overlay {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition:opacity 0.5s ease;
}

.ce-menu-102 {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.ce-menu-102 .lp-item:nth-of-type(10n+4) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}



#sec-specials {
    background-color: #dbdbdb;
    margin-top:10px;
}

.slider-special {
    padding-bottom: 1rem;
    max-height: 25rem;
    position: relative;
}










/* styles for '...' */
.block-with-text {
    /* hide text if it more than N lines  */
    overflow: hidden;
    /* for set '...' in absolute position */
    position: relative;
    /* use this value to count block height */
    line-height: 1.2em;
    /* max-height = line-height (1.2) * lines max number (3) */
    max-height: 3.6em;
    /* fix problem when last visible word doesn't adjoin right side  */
    text-align: justify;
    /* place for '...' */
    margin-right: -1em;
    padding-right: 1em;
}
/* create the ... */
.block-with-text:before {
    /* points in the end */
    content: '…';
    /* absolute position */
    position: absolute;
    /* set position to right bottom corner of block */
    right: 0;
    bottom: 0;
}
/* hide ... if we have text, which is less than or equal to max lines */
.block-with-text:after {
    /* points in the end */
    content: '';
    /* absolute position */
    position: absolute;
    /* set position to right bottom corner of text */
    right: 0;
    /* set width and height */
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    /* bg color = bg color under block */
    background: white;
}

.hte-exclusive .block-with-text:after {
    background-color: var(--hte-bg-special-color, #e3f3fa);
}
.hte-topidee .block-with-text:after {
    background-color: var(--hte-bg-special-color, #e3f3fa);
}

.centered {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.small {
    font-size: 0.75em;
}

.small-info {
    font-size: 0.875em;
}

nav.main-menu > ul > li > a > span.visuallyhidden,
.hidden {
    display: none;
}

.reason-container-disabled {
    visibility: hidden;
}

.nowrap {
    white-space: nowrap;
}

.kontakt-form > div {
    padding-bottom: 0;
}

.show-price {
    font-weight: bold;
}

.show-price .ib {
    display: inline-block;
    text-align: right;
}
.show-price .ic {
    display: inline-block;
    vertical-align: top;
}

.package-cell .subtitle-wrapper {
    min-height: 3.6em;
    line-height: 1.2em;
}

.ns-0 .package-cell h3,
.ns-0 .package-cell .h3-optic {
    min-height: 2.8em;
}

.ns-2 .package-cell .additionals {
    margin-bottom: 0.5rem;
}

.promolayout03 .additionals p {
    margin: 0.1em 0;
}

.promolayout03 .item-header {
    text-align:left;
}

.promolayout03 h2 {
    font-weight: bold;
}

.promolayout03 .gallery-slider .gallery-list-item figcaption {
    background-color: transparent;
}

.promolayout03 .price-bg {
    padding: 0.25rem 0;
    color: #464646;
}

.promolayout03 .button-sidebar {
    width: 100%;
    max-width: none;
    margin: 0.25em 0;
}

.promolayout03 .angebot-button {
    color: #fff;
    border-color: #fff;
}


.rel-edit-popup-inner .label-special {
    display: none;
}

.input {
    background-color: #ffffff;
    border: 1px solid #deded0;
    color: #808080;
    display: inline-block;
    padding: 0.5em 1em;
}



.button-icon.no-hover:hover {
    color: #ffffff;
}


.button-icon.button-medium {
    height: 32px;
    width: 32px;
    line-height: 32px;
}
.anfrage-bearbeiten .button-icon {
    margin-left: 4px;
}

.button-social {
    padding: 0;
    font-size: 1.2em;
    margin: 0.5em;
}

.button-filter {
    background-color: #ff6600;
    border: 1px solid #ff6600;
    color: #ffffff;
    margin-left: 0.25em;
    margin-right: 0.25em;
    position: relative;
    padding: 0.5em 1.5em 0.5em 1em;
}

.button-filter:hover {
    color: #ffffff;
}

.button-filter:after {
    display: block;
    position: absolute;
    content: "";
    top: 1em;
    right: 0.5em;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-top: 5px solid #ffffff;
    border-right: 5px solid transparent;
}

.button-search {
    background: none;
    border: 0;
    color: #ffffff;
    line-height: 1;
    padding: 4px;
    vertical-align: bottom;
    outline: 0;
}

.button-search:hover {
    background: none;
    border: 0;
    color: #002659;
}


.btn-container {
    text-align: center;
}
.btn-container button {
    min-width: 280px;
    width: 100%;
}

.button-ml.selected i {
    color: #ff6600;
}

#sec-sidebar .button-colored {
    margin: 0.25em 0;
    max-width: none;
    width: 100%;
}

#sec-sidebar .button-white {
    margin: 0.25em 0;
    max-width: none;
    width: 100%;
}

#sec-sidebar .button-white:hover {
    color: #ffffff;
    background-color: #ff6600;
    background: -webkit-gradient(linear, left top, left bottom, from(#fc8d44), to(#ff6600));
    background: -webkit-linear-gradient(#fc8d44, #ff6600);
    background: linear-gradient(#fc8d44, #ff6600);
}

.button-ml:hover.selected i {
    color: #808080;
}

.i-container .button-ml:hover.selected i {
    color: #ffffff;
}

#sec-sidebar .button-phone {
    margin: 0.25em 0;
    font-size: 1.2em;
    padding: 0.25em 1em;
}

#helper-button {
    background-color: rgba(255, 102, 0, 0.8);
    color: #ffffff;
    border: none;
}

.cat-toggle-button {
    margin: 1em 0 2em;
    min-width: 15rem;
}

.menu-toggle-button {
    background-color: #002659;
    color: #fff;
    min-width: 240px;
    outline:0;
    margin-bottom: 2em;
    margin-top: 1em;
    background: -webkit-gradient(linear, left top, left bottom, from(#023e8c), to(#002659));
    background: -webkit-linear-gradient(#023e8c, #002659);
    background: linear-gradient(#023e8c, #002659);
}
.menu-toggle-button:hover {
    color: #fff;
}

.package-cell .icon-container,
.picture-cell .icon-container {
    max-width: 50px;
    position: absolute;
    right: 0;
    top: 0;
}



.button-hinweis-ue {
    cursor: help;
}



/* Werbe-Container - nicht mehr genutzt
div.page-add {
  max-height: 100px;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

div.page-add > div {
  max-height: 80px;
  overflow: hidden;
}
*/

/* Slider */
.special-item {
    padding: 0.75rem;
    max-height: 25rem;
    width: 15rem;
}

.special-item figure {
    max-height: 25rem;
    max-width: 25rem;
}


.special-item figure,
.alternativ-item figure {
    margin: 0;
    position: relative;
}

.special-item figure,
.alternativ-item figure {
    border-bottom: 4px solid #ffffff;
}

.special-item figure img,
.alternativ-item figure img {
    width: 100%;
}

.ce-menu-102 figure figcaption,
.ce-menu-103 figure figcaption,
.package-cell span.mtitel,
.special-item span.mtitel,
/*.special-item figure figcaption, */
.alternativ-item figure figcaption {
    color: #ffffff;
    font-size: 1em;
    line-height: 1.2;
    font-weight: bold;
    left: 50%;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 16px rgba(0,0,0,0.75);
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 98%;
    hyphens: auto;
    -webkit-hyphenate-limit-chars: auto 5;
    -webkit-hyphenate-limit-lines: 4;
    -ms-hyphenate-limit-chars: auto 5;
    -ms-hyphenate-limit-lines: 4;
}


.ce-menu-104 a,
.ce-menu-109 a,
.slider-wrapper a {
    text-decoration: none;
}



.fd117 .ce-menu-104 figure figcaption,
.fd118 .ce-menu-104 figure figcaption,
.fd120 .ce-menu-104 figure figcaption,
.fd121 .ce-menu-104 figure figcaption,
.fd123 .ce-menu-104 figure figcaption,
.fd128 .ce-menu-104 figure figcaption,
.fd130 .ce-menu-104 figure figcaption {
    color: #F5F5F5;
}

.ce-menu-102 a:hover figure figcaption span,
.ce-menu-103 a:hover figure figcaption span {
    border-bottom: 4px solid #ff6600;
}




.special-item a,
.alternativ-item a {
    background-color: #ffffff;
    color: #464646;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: left;
    text-decoration: none;
}

.special-item a {
    outline: none;
    border-radius: 1rem;
}

.special-item a:hover {
    color: #464646;
}


.special-item a:hover figure,
.alternativ-item a:hover figure {
    border-bottom-color: #ff6600;
}

.special-item h3,
.special-item .h3-optic,
.alternativ-item h4,
.alternativ-item .h4-optic {
    font-size: 1em;
    margin: 0.5em 0.5em 0.25em;
}

.special-item p,
.alternativ-item p {
    font-size: 1em;
    margin: 0.25em 0.5em 0.5em;
}

.slider-special .slick-prev {
    left: 0;
    display: none !important;
}

.slider-special .slick-next {
    right: 0;
}

.slider-special .slick-arrow {
    /* background-color: rgba(255, 255, 255, 0.5); */
    background-color: transparent;
    border: 0;
    bottom: 0;
    color: #ff6600;
    cursor: pointer;
    display: block;
    font-size: 2em;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

.slider-special .slick-list,
.menu-slider .slick-list,
.slider-wrapper .slick-list {
    padding: 0 25px 0 0;
}

.slick-arrow > .fa-solid,
.slick-arrow > .fa,
.slick-arrow > .fas {
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    width: 1em;
}


.slick-prev > .fas:before,
.slick-prev > .fa:before {
    padding-right: 6px;
}

.slick-next > .fas:before,
.slick-next > .fa:before {
    padding-left: 6px;
}

.menu-slider .slick-prev,
.slider-wrapper .slick-prev {
    left: 0;
    display: none !important;
}

.menu-slider .slick-next,
.slider-wrapper .slick-next {
    right: 0;
}

.menu-slider .slick-arrow,
.slider-wrapper .slick-arrow {
    background-color: transparent;
    border: 0;
    bottom: 10%;
    color: #ff6600;
    cursor: pointer;
    display: block;
    font-size: 2em;
    outline: none;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

.menu-slider .slick-arrow.slick-disabled,
.slider-wrapper .slick-arrow.slick-disabled {
    visibility: hidden;
}

.slider-lp-item {
    padding: 10px;
}

.slider-package .slick-slide {
    height: auto;
    /* Safari - Tests - Anpassung für Slider-Darstellung Safari*/
    max-height: fit-content;
}

.slider-package .slick-dots {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 15;
}

.slider-package .slick-dots li {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    z-index: 15;
}

.slider-package .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    z-index: 15;
}

.slider-package .slick-dots li button:before {
    font-family: 'slick';
    font-size: 24px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .50;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 2px #000000;
    z-index: 15;
}

.slider-package .slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
}

.slider-package .slick-prev,
.slider-package .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 75%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 15;
}
.slider-package .slick-arrow:before {
    display: none;
}

.slider-package:hover .slick-arrow:before {
    display: block;
}

.slider-package .slick-prev {
    left: 20px;
}
.slider-package .slick-next {
    right: 20px;
}

.slider-package .slick-prev::before,
.slider-package .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-package .slick-prev::before {
    content: '\f137';
}
.slider-package .slick-next::before {
    content: '\f138';
}


/* Bewertungssterne */
.rating {
    display: inline-block;
    white-space: nowrap;
}

/*
.package-cell .rating,
.special-item .rating {
  bottom: 8px;
  display: block;
  position: absolute;
  right: 10px;
}

.special-item .rating {
  text-align: center;
  margin: 0 auto;
  left: 4px;
}
*/
.package-cell p.rating > span.stars {
    display: inline-block;
    width: 1.25rem;
    margin-left: 0.25rem;
    margin-bottom: 0.25rem;
}

.package-cell p.rating > span.anbieterinfo {
    display: inline-block;
    margin-left: 0.5rem;

}

.package-cell p.price {
    font-weight: bold;
}



.rating .stars span {
    display: inline-block;
    color: #ccc;
    text-shadow: 0 0 1px #666;
    margin: 0 0.125em;
}

.rating .stars span.marked {
    color: #ff6600;
    text-shadow: 0 0 1px #ff6600;
}

.package-cell .stars span,
.special-item .stars span {
    margin: 0;
}

.feedback-header {
    display: none;
}

.rating-container {
    color: #002659;
    margin: 0 auto;
    max-width: 640px;
    text-align: left;
}

.rating-container .small {
    color: #464646;
    display: block;
}

.rating-container .small.hidden {
    display: none;
}

.rating-cell {
    position: relative;
}

.rating-container .rating-input,
.rating-container .rating-star {
    height: 20px;
    width: 40px;
}

.rating-container .rating-input {
    float: right;
    margin: 0 0 0 -40px;
    padding: 0;
    opacity: 0;
}

.rating-container .rating:hover .rating-star:hover,
.rating-container .rating:hover .rating-star:hover ~ .rating-star,
.rating-container .rating-input:checked ~ .rating-star {
    color: #ff6600;
}

.rating-container .rating-star,
.rating-container .rating:hover .rating-star {
    color: #ccc;
    display: block;
    float: right;
    font-size: 1.2em;
    line-height: 20px;
    position: relative;
    text-align: center;
    text-shadow: 0 0 1px #666;
}

.fd110 .ce-textpic img,
.img-round {
    border-radius: 50%;
}

.special-1-header a {
    text-decoration: none;
    color: #464646;
}

.special-1-header a.button {
    color: #ffffff;
    line-height: 1;
}

/* Für IE*/
.ce-center .ce-outer,
.ce-center .ce-inner {
    max-width: 100%;
}

/* Layouts */
.ge-2,
.ge-5 {
    max-width: 80rem;
    margin: 0 auto;
}




.frame-max60 {
    max-width: 60rem;
    margin: 0 auto;
}






.fd104 {
    background-color: #fff;
    border: solid 1px #ededed;
    text-align: left;
}

.fd104 .ce-bodytext {
    margin: 0 16px;
}

.fd104 h3,
.fd104 .h3-optic {
    font-size: 1.5em;
    margin: 8px 16px;
    text-align: center;
}

/* Person */
.fd105 {
    background-color: #ffffff;
    text-align: left;
}

.fd105 .ce-gallery {
    margin: 0;
}

.fd105 .ce-left .ce-gallery,
.fd105 .ce-left .ce-gallery .ce-column {
    float: none;
}

.fd106 {
    background-color: #ffffff;
}

.ge-2,
.ge-3,
.ge-4,
.ge-5 {
    display: flex;
    flex-wrap: wrap;
}

.ge-2 > div,
.ge-3 > div,
.ge-4 > div,
.ge-5 > div {
    display: flex;
    flex-direction: column;
}

.g0x-100 .ge-2,
.g0x-100 .ge-3,
.g0x-100 .ge-4,
.g0x-100 .ge-5 {
    margin: 0 -10px;
}


/* Infobox Grau */
.fd107 {
    background-color: #ffffff;
}

.fd107 .box {
    background-color: #EEF0F2;
    padding: 1em;
    text-align: left;
}

.fd107 .box h4,
.fd107 .box .h4-optic,
.fd107 .box .ce-bodytext > p {
    margin: 0;
    padding: 0;
}

.fd107 .box h4,
.fd107 .box .h4-optic {
    line-height: 1;
    margin-bottom: 0.25em;
}

.dp-container .fd107 .box {
    padding: 20px 10px;
    font-size: 0.875em;
}

.dp-container .fd107 .ce-gallery {
    margin: 10px 30px 10px 20px;
}




.be-4 .fd0 > .package-creator {
    margin: 0 -10px;
}
.be-11 .fd0 > .package-creator {
    margin: 0 -10px;
}


.fd111 .box {
    max-width: none;
    margin: 0 auto;
}

.fd112 {
    margin-top: 30px;
}

.fd113 {
    padding: 10px 0;
}

/* Container-Backgrounds */
.fd114 {
    background-color: #EEF0F2;
    padding: 0.5rem;
} /* Grau hell ALT: DBDBDB NEU: #EEF0F2*/
.fd115 {
    background-color: #FCFCB0;
    padding: 0.5rem;
} /* Gelb hell */
.fd116 {
    background-color: #D6E1FE;
    padding: 0.5rem;
} /* Blau hell */
.fd117 {
    background-color: #002659;
    padding: 0.5rem;
    color: #F5F5F5;
} /* Blau dunkel, Schrift hell */
.fd118 {
    background-color: #FF6600;
    padding: 0.5rem;
    color: #F5F5F5;
} /* Orange dunkel, Schrift hell */
.fd119 {
    background-color: #FF945F;
    padding: 0.5rem;
} /* Orange hell */
.fd120 {
    background-color: #A60000;
    padding: 0.5rem;
    color: #F5F5F5;
} /* Rot dunkel, Schrift hell */
.fd121 {
    background-color: #323F4D;
    padding: 0.5rem;
    color: #F5F5F5;
} /* BlauGrau dunkel, Schrift hell */
.fd122 {
    background-color: #FFFFFF;
    padding: 0.5rem;
} /* Weiß */

.fd123 {
    background-color: #4c8ec6;
    padding: 0.5rem;
    color: #F5F5F5;
} /* Blau #4c8ec6, Schrift hell */

.fd128 {
    background-color: #2974E8;
    padding: 0.5rem;
    color: #F5F5F5;
} /* Blau #2974E8, Schrift hell */

.fd129 {
    background-color: #C9CFDD;
    padding: 0.5rem;
} /* Grau #C9CFDD */

.fd130 {
    background-color: #265A90;
    padding: 0.5rem;
    color: #F5F5F5;
} /* blau #265A90, Schrift hell */

.ge-3 .fd116 {
    border-radius: 1rem;
}

.fd126 {
    background-color: #ffffff;
    color: #464646;
    flex: 1 1 auto;
}

.fd126 ul {
    list-style: none;
    font-size: 1.1rem;
    line-height: 2rem;
    padding: 0 1rem 1rem;
    text-align: left;
}

.fd126 ul a {
    color: #002659;
    text-decoration: none;
}
.fd126 ul a:hover {
    text-decoration: underline;
}


.ce-bodytext > p:last-child {
    margin-bottom: 30px;
}

#datablock11 .ce-bodytext > p:last-child {
    margin-bottom: 1em;
}

.box .ce-bodytext ul,
.box .ce-bodytext ol {
    text-align: left;
}

.ce-column {
    max-width: 100%;
}

.ce-above-txt .ce-column {
    float:none;
}

.elastic-video {
    height: 0;
    overflow: hidden;
    padding-bottom: 55%;
    padding-top: 15px;
    position: relative;
}

.elastic-video iframe {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.colored-1 {
    color: #002659;
}

.align-right {
    text-align: right;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}

.align-justify {
    text-align: justify;
}

img.align-left {
    margin-left: 0;
}

.no-margin {
    margin: 0;
}

.mlist span {
    display: none;
}

.image-info {
    padding-right: 40px;
    position: relative;
}

/* Paket-Layout */
.paket-wrapper {
    text-align: left;
}

.sidebar-wrapper {
    padding-top: 0;
}

.bg1 {
    background-color: #ffffff;
}

.bg2 {
    background-color: #cccccc;
}


.provider-more-list img {
    border-radius: 0.5rem;
}

#sec-sidebar > div.special-box {
    overflow: hidden;
    padding: 0;
}
#sec-sidebar > div.special-box > div {
    overflow: hidden;
    padding: 10px;
}


#sec-sidebar > div#p-provider-more {
    background-color: transparent;
    padding: 0;
}

#sec-sidebar > div#p-provider-more h2,
#sec-sidebar > div#p-provider-more .h2-optic {
    padding: 0 10px;
}

#p-provider .paket-nummer {
    display: block;
}

.mobil-phone-button {
    display: none;
}


.paket-header {
    color: #ff6600;
}


.color-orange,
.color-hte-orange {
    color: #ff6600;
}

.color-hte-blue {
    color: #002659;
}

.color-black,
.color-dark {
    color: #464646;
}

.color-white,
.color-light {
    color: #F5F5F5;
}



.link-title {
    display: inline-block;
    margin-left: 10px;
}


#sec-sidebar > div.info-block {
    background-color: #ff6600;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.17em;
}

#sec-sidebar > div.info-account {
    background-color: rgba(0, 38, 89, 0.2);
    color: #002659;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

#sec-sidebar > div.info-account h3,
#sec-sidebar > div.info-account .h3-optic {
    font-size: 1.17em;
    margin: 0 0 0.5em 0;
}

table.info-account-table {
    font-size: 0.875em;
    width: 100%;
}

table.info-account-table td {
    padding: 2px;
    vertical-align: top;
}

/* HTE Option-List */
ul.hte-option-list,
ol.hte-option-list {
    margin: 0;
    padding: 0;
}

ul.hte-option-list {
    list-style: none;
    padding: 10px 0;
}

ol.hte-option-list {
    padding-left: 40px;
}

ol.hte-option-list li {
    padding: 0 40px 10px 20px;
}

#p-services-edit ul.services-list li,
#p-services-edit ol.hte-option-list li {
    padding-right: 120px;
}

ul.hte-option-list li {
    display: block;
    padding: 0 0 10px;
    white-space: nowrap;
}

ul.hte-option-list li span {
    white-space: normal;
}

ul.hte-option-list li label [type="checkbox"],
ul.hte-option-list li label [type="radio"],
ul.hte-option-list li > i {
    margin-right: 0.25em;
}

ul.hte-option-list li.hidden {
    display: none;
    padding: 0;
}

.offer-block {
    color: #002659;
    background-color: #ccc;
    margin-bottom: 1em;
    padding: 1em;
}

.offer-block h4,
.offer-block .h4-optic,
.offer-block p {
    margin: 0;
    padding: 0;
}

.offer-block h4,
.offer-block .h4-optic {
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 0.25em;
}

.quest {
    color: #002659;
    margin: 1em 0;
}

.offer-block-info {
    margin: 1em 0;
}

.offer-block-info a {
    text-decoration: none;
}

.offer-block-info a span.quest {
    color: #002659;
}

.offer-block-info a .button {
    display: inline-block;
    float: left;
    margin-right: 0.5em;
}

#p-provider-more {
    background-color: #f5f5f5;
}

.promolayout03 #p-provider-more {
    background-color: transparent;
}

.provider-more-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.provider-more-list-item {
    background-color: #ffffff;
    margin: 0.5em auto;
    max-width: 30rem;
    position: relative;
}

.provider-more-list-item .text-container {
    padding-left: 0;
}

.provider-more-list-item .h5-optic,
.provider-more-list-item h5 {
    color: #464646;
    font-size: 1em;
    margin: 0;
}

.provider-more-list-item p {
    color: #002659;
    font-size: 0.75em;
    margin: 0;
}

.provider-more-list-item a {
    display: block;
    overflow: hidden;
    position: relative;
}

.provider-more-list-item a:hover {
    background-color: var(--hte-bg-light-color, #f9f9f9);
}

h2.sidebar-header,
.h2-optic.sidebar-header {
    text-align: center;
}

.sidebar-header > span.ue {
    font-size: 1.2em;
}
.sidebar-header > span.paket-nummer {
    font-size: 0.75em;
}

.special-1-header {
    margin: 10px 0;
}

#page-header-filter {
    background-color: #ffffff;
    border-bottom: 1px solid var(--hte-border-color, #dedede);
    border-top: 1px solid var(--hte-border-color, #dedede);
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 100px;
    z-index: 780;
}

#page-header-filter.opened {
    display: block;
}

.filter-container {
    background-color: #ffffff;
    color: #002659;
    text-align:left;
    position: relative;
    padding-top: 0;
}

.filter-list .button {
    color: #002659;
    position: relative;
    width: 100%;
}


#page-header .filter-list-selection {
    min-width: 280px;
}


.filter-list-selection-inner {
    overflow: auto;
    max-height: 100vh;
}

.filter-list-selection label {
    white-space: nowrap;
    display: block;
    padding: 4px;
}

.filter-list-selection li:hover{
    background-color: rgba(255, 102, 0, 1);
}


.filter-list-selection label span{
    margin-left: 0.25em;
}

.filter-item .filter-list-button {
    max-width: none;
}

.filter-list .filter-selected {
    background-color: rgba(0, 38, 89, 0.6);
}

.filter-list .filter-selected span.button-close {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #808080;
    border-radius: 6px;
    bottom: 0.25em;
    color: #ffffff;
    display: block;
    padding: 0.25em 0.5em;
    position: absolute;
    right: 0.25em;
    top: 0.25em;
}

.filter-list .filter-selected:hover span.button-close {
    color: #ff6600;
}


ol.services-list li,
ul.checker-list li {
    position: relative;
    min-height: 40px;
}

ul.services-list {
    margin-left: 40px;
}
ul.services-list > li{
    min-height: 0;
}

.checker {
    float: left;
    margin-left: 20px;
}

.checker-text {
    margin-left: 20px;
    margin-right: 40px;
    white-space: normal;
}



#p-additional-services-edit .checker-text,
#p-conference-flatrate-edit .checker-text {
    margin-right: 60px;
}

.services-list span.title,
.checker-text span.title {
    display: block;
}

.services-list span.description,
.checker-text span.description {
    display: block;
    font-size: 0.875em;
}

.services-list span.price,
.checker-text span.price {
    color: #ff6600;
    display: block;
    font-size: 0.875em;
}

ul.section-menu-wrapper {
    clear: both;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

ul.section-menu-wrapper li.wrapper-item {
    background-color: #ffffff;
    display: block;
    float: left;
    height: 40px;
    min-width: 40px;
    position: relative;
}

li.wrapper-item > a {
    display: block;
    font-size: 1.6em;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

li.wrapper-item > a > i {
    color: #002659;
    width: 40px;
}

li.wrapper-item.active > a > i {
    color: #ff6600;
}

li.wrapper-item.active ul.section-menu {
    display: block;
}

ul.section-menu {
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

ul.section-menu li {
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    line-height: 1;
    min-width: 200px;
}

ul.section-menu li:last-child {
    border-bottom: solid 1px #ccc;
}

ul.section-menu li a {
    background-color: #ffffff;
    color: #808080;
    display: block;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* font-size: 0.875em; */
}

ul.section-menu li a.selected,
ul.section-menu li a:hover {
    background-color: #ff6600;
    color: #ffffff;
}

.x-popup {
    background: red;
    bottom: 20px;
    left: 20px;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 600;
}

.item-header h2,
.item-header .h2-optic {
    margin: 0;
    position: relative;
    font-size: 1.6em;
}

.item-header h2 .button,
.item-header .h2-optic .button {
    display: inline-block;
    float: right;
    margin-left: 0.25em;
}

.item-info {
    margin-bottom: 10px;
}

.info-content {
    color: #808080;
    font-size: 0.875em;
    padding: 0;
}
.info-content > div {
    padding-bottom: 0;
}

.label-content {
    color: #808080;
    font-size: 0.875em;
    padding: 2px;
}

.label-content.large {
    font-size: 1em;
}

.rel-edit-popup .label-content {
    color: #002659;
}

.rel-edit-popup .vimeo-video {
    max-width: 210px;
}

.tx-felogin-pi1 {
    padding:10px;
}

.tx-felogin-pi1 .label-content {
    color: #002659;
}

.label-hidden {
    display: none;
}

.label-group {
    display: flex;
    justify-content: space-between;
}

.label-group.label-group-privat {
    justify-content: flex-start;
}

.label-group .label-privat {
    color: #464646;
}

.ppk-content {
    color: #808080;
}

.ppk-content i {
    margin-right: 8px;
}

.ctable {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
}

.ctable input {
    width: 100%;
}

.ctable input[type="checkbox"] {
    width: auto;
}



.gallery-image {
    margin-bottom: 20px;
}

.rating-header {
    background-color: #ffffff;
    color: #808080;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.rating-header .col3 {
    padding-right: 0;
    text-align: right;
}

.rating-details {
    background-color: #ffffff;
    color: #808080;
    margin-bottom: 20px;
}

.rating-details > div {
    padding-bottom: 0;
}

.rating-details .icon {
    margin-right: 1rem;
    margin-left: 0.5rem;
}

.rating-details > div:last-child  {
    padding-bottom: 10px;
}

.rating-details > div > div {
    border-bottom: 1px solid var(--hte-border-color, #dedede);
}

.rating-comment{
    background-color: #ffffff;
    color: #808080;
}

.rating-comment-load-more {
    text-align: right;
}



.hte-option-list i.fa-square,
.hte-option-list i.fa-square + span {
    color: #C9C9C9;
}

.c-distances .label {
    display: inline-block;
    min-width: 50%;
}

.c-distances .distance {
    display: inline-block;
    color: #808080;
    text-align: right;
    width: 40%;
}

.fa-circle.online {
    color: green;
}

.fa-circle.offline {
    color: red;
}




table.table-conference-rooms label {
    display: block;
}

table.table-prices thead,
table.table-conference-flatrate thead,
table.table-conference-rooms thead {
    background-color: #E9E9E9;
}

table.table-prices tbody tr:nth-child(odd),
table.table-conference-flatrate tbody tr:nth-child(odd),
table.table-conference-flatrate .odd,
table.table-conference-rooms tbody tr:nth-child(odd),
table.table-conference-rooms .odd {
    background-color: #ffffff;
}

table.table-prices th,
table.table-prices td,
table.table-conference-flatrate th,
table.table-conference-flatrate td,
table.table-conference-rooms th,
table.table-conference-rooms td {
    padding: 0.5em;
    width: 10%;
}


/*
.be-6 table.table-conference-flatrate tbody tr:hover,
.be-6 table.table-conference-rooms tbody tr:hover,
*/
.popup-additionl table.table-conference-flatrate tbody tr:hover,
.popup-additionl table.table-conference-rooms tbody tr:hover {
    background-color: rgba(222, 222, 224, 0.5);
}

table.table-conference-flatrate .col1,
table.table-conference-rooms .col1 {
    text-align: left;
    width: 20%;
}

table.table-conference-flatrate .col2 {
    text-align: right;
    white-space: nowrap;
}

table.table-conference-rooms .col2,
table.table-conference-rooms .col3,
table.table-conference-rooms .col4,
table.table-conference-rooms .col5,
table.table-conference-rooms .col6 {
    text-align: center;
    white-space: nowrap;
}

table.table-conference-rooms .col7 {
    text-align: right;
    width: 1%;
    white-space: nowrap;
}

table.table-prices tbody tr:hover{
    background-color: rgba(222, 222, 224, 0.5);
}

table.table-prices .col2,
table.table-prices .col3,
table.table-prices .col4,
table.table-prices .col1 {
    text-align: left;
    width: 20%;
}

table.table-prices .col5 {
    text-align: right;
    width: 1%;
    white-space: nowrap;
}

table.ctable .button-icon {
    display: inline-block;
    margin-bottom: 4px;
}

.rel-single-wrapper {
    position: relative;
}

.rel-single-wrapper h4,
.rel-single-wrapper .h4-optic,
.rel-single-wrapper p {
    padding-right: 80px;
}

.rel-single-wrapper:hover {
    background-color: rgba(222, 222, 224, 0.5);
}

.edit-icon-container {
    position: absolute;
    right: 0.5em;
    top: 0.5em;
}

.ordering-container {
    float: left;
    margin: 0 5px;
}

.edit-icon-container .button-icon {
    display: inline-block;
    margin-bottom: 4px;
}

.packet-locations-map {
    height: 300px;
    width: 100%;
    border-radius: 0.5rem;
}

.pc-packet-locations-map {
    height: 160px;
    width: 100%;
}

img.branding {
    margin: 0;
}

.account-container {
    margin-top: 10px;
}

.grid-block {
    background-color: #ffffff;
    margin-bottom: 20px;
}

.grid-block h3,
.grid-block .h3-optic {
    color: #002659;
}

.no-pad-child > div {
    padding:0;
}

.logo-container,
.avatar-container {
    float: left;
    padding-right: 10px;
}

.avatar-container img {
    max-height: 160px;
    width: 160px;
}

.logo-container img {
    max-height: 200px;
    width: 300px;
}

.input-logo,
.input-avatar {
    margin-top: 10px;
}

.show-zg {
    background-color: #fff;
    border: 1px solid #eeeeee;
    line-height: 36px;
    padding: 0 0.5em;
}

.i-container {
    margin-left: -10px;
    margin-right: -10px;
}

.sidebar-link {
    display: inline-block;
    text-decoration: none;
    color: #808080;
    padding: 2px 0;
    /* wegen button */
    border: none;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    text-align:left;
}
.sidebar-link:hover  {
    color: #ff6600;
}

.sidebar-link .button-icon {
    margin-right: 8px;
    margin-left: 4px;
}

.sidebar-link:hover .button-icon {
    color: #ff6600;
    border: 1px solid gray;
}

.package-creator h2.paket-header,
.package-creator .h2-optic.paket-header {
    margin: 0;
}

.account-editor h3,
.account-editor .h3-optic {
    margin: 10px 0;
}

ul.picture-list {
    font-size: 0.875em;
    list-style: none;
    margin-top: 0;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0;
    text-align: left;
}

li.picture-list-item .picture-cell {
    background-color: #edeef2;
    margin: 0 auto;
    max-width: 240px;
    min-height: 300px;
    position: relative;
}

li.picture-list-item .picture-data {
    color: #002659;
    padding: 10px;
}

.picture-name {
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.picture-description {
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.picture-copyright {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.picture-used {
    margin-top: 0.5em;
}

.picture-size span {
    white-space: nowrap;
}

.anfrage .g0x-10,
.anfrage .g0x-20 {
    padding: 2px;
}

.anfrage .grid-container {
    border-left: 5px solid blue;
    margin: 10px 0;
}

.no-padding {
    padding: 0;
}

.no-padding-vertical {
    padding-top: 0;
    padding-bottom: 0;
}

.no-padding-top {
    padding-top: 0;
}

.padding-top {
    padding-top: 10px;
}

.opportunity-location,
.ppk-opportunity {
    padding-top: 5px;
}

.contactperson .h4-optic,
.contactperson h4 {
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}

.contactperson p {
    margin-top: 0;
}

.contactperson a {
    color: #808080;
}

h2.package-number,
.h2-optic.package-number {
    color: #ff6600;
    margin: 0;
}

#sec-sidebar > div.sidebox {
    background-color: #cccccc;
    margin-top: 20px;
    padding:0;
}

.sidebox h3,
.sidebox .h3-optic {
    background-color: rgba(0, 38, 89, 0.4);
    color: #ffffff;
    line-height: 32px;
    margin: 0;
    padding: 5px 10px;
}

.sidebox h3 .button-icon,
.sidebox .h3-optic .button-icon {
    float: right;
}

.sidebox .genehmigt {
    text-align: right;
}

.sidebox > div {
    font-size: 0.875em;
}

.upgradeenddatum {
    height: 40px;
    line-height: 40px;
    background: #fff;
    text-align: center;
    border: 1px solid #ccc;
}

.mbooking {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.mbooking > div {
    padding-top: 0;
}

#p-package-save .button,
.mbooking  .button {
    max-width: none;
}

.button-container .button-icon {
    /* margin-left: 10px; */
    margin-left: 0.25em;
}

.edit-container h3,
.edit-container .h3-optic {
    color: #ff6600;
    font-size: 0.875em;
    margin: 0 0 0.5em;
}

.anfrage-titel {
    margin: 0 50px 0 4px;
    font-size: 1em;
    color: #ff6600;
}

.anfrage-titel .subtitle {
    color: #464646;
    display: block;
}

.anfrage-footer {
    color: #ff6600;
    font-size: 1.6em;
}

.preview-image {
    max-height: 300px;
    max-width: 300px;
}

.bg-image {
    background-color: #ffffff;
}

.whitebox {
    background-color: #ffffff;
    text-align: left;
}

.whitebox2 {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    text-align: left;
}

.whitebox3 {
    background-color: #ffffff;
    padding: 10px;
    text-align: left;
}

.whitebox .ce-bodytext {
    padding: 20px;
}

.tbox1 {
    padding: 10px 10px 10px 0;
}

.tbox2 {
    padding: 10px 0;
}

.helper-box {
    background-color: #ffffff;
    padding: 20px;
    position: relative;
}

.helper-box .ce-textpic {
    margin: 40px 0;
}

.bg-white,
.bg-white1 {
    background-color: #ffffff;
}

.form-container {
    padding: 0;
}

.price2 {
    background-color: #ffffff;
    color: #ff6600;
    font-weight: bold;
}

.price2 .mwst {
    font-size: 12px;
    color: #002659;
    font-weight: normal;
}

#file-refedit-popup .img2product-rel-row:nth-child(2) .button-pos-up {
    display: none;
}

#file-refedit-popup .img2product-rel-row:nth-last-child(2) .button-pos-down {
    display: none;
}

.typo3-messages {
    /* display: none; */
    list-style: none;
    margin: 0;
    padding: 0;
}

.typo3-messages h4,
.typo3-messages .h4-optic {
    font-weight: bold;
    font-size: 1em;
    margin: 0;
}

.typo3-messages .alert {
    border-radius: 4px;
    padding: 4px 8px;
}

.typo3-messages .alert-notice {
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

.typo3-messages .alert-info {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}

.typo3-messages .alert-success {
    background-color: #5bc0de;
    border-color: #46b8da;
    color: #fff;
}

.typo3-messages .alert-warning {
    background-color: #f0ad4e;
    border-color: #eea236;
    color: #fff;
}

.typo3-messages .alert-danger {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}

.table-filter {
    font-size: 0.875em;
}

a.list-filter {
    color: #ff6600;
    text-decoration: none;
}

a.list-filter:hover,
a.list-filter.selected {
    text-decoration: underline;
}

.header-price {
    font-size: 1.5em;
}


#page-main:target {
    scroll-padding-top: 4rem;

}


:target:before {
    content: "";
    border-top: 10rem solid #fff0;
    margin-top: -10rem;
    height: 0;
    display: block;
    position: relative;
    z-index: -1;

}


.header-subtitle {
    display: none;
}

.anfrage-allgemein {
    text-align: left;
}

.label-header {
    color: #002659;
}

figure.slider-package img {
    width: 100%;
    transition: transform 0.2s ease;
}

figure.slider-package .slick-slide {
    height: 160px;
    object-fit: cover;

}




.anfrage-close-button-container {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
}

.anfrage-pins-bottom,
.anfrage-pins {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
    color: #808080;
    font-size: 0.875em;

    display:        table;
    display:  -webkit-box;
    display:     -moz-box;
    display:  -ms-flexbox;
    display: -webkit-flex;
    display:         flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
}



.anfrage-pins li {
    white-space: nowrap;
    padding: 0 2px;
}

.display-item {
    text-align: center;
}
.display-item-txt {
    height: 3em;
    margin-top: 0.5em;
}

.xdsgvo-container {
    padding-top: 20px;
}

.copyright-cb,
.dsgvo-cb {
    width: 20px;
    padding: 0;
}
.copyright-label {
    width: 90%;
    padding: 0;
}

.dsgvo-label {
    width: 80%;
    padding: 0;
}

.dsgvo-request-popup .anfrage-titel .subtitle {
    font-size: 0.65em;
}




.datepicker-container {
    white-space: nowrap;
}

.datepicker-container button {
    border: 1px solid #ccc;
    background-color: #fff;
    height: 40px;
    border-radius: 6px 0 0 6px;
}

button.monthpicker-trigger,
button.ui-datepicker-trigger {
    background-color: #fff;
    height: 40px;
    width: calc(100% - 31px);
    overflow: hidden;
    text-overflow: ellipsis;
    /* max-width: 120px; */
}

button.monthpicker-trigger + button,
button.ui-datepicker-trigger + button {
    background-color: #fff;
    height: 40px;
    width: 30px;
    border-left-width: 0;
    text-align: center;
    padding: 0;
    border-radius: 0 6px 6px 0;
}

.dp-small button.monthpicker-trigger,
.dp-small button.ui-datepicker-trigger {
    min-width: 97px;
}

.dp-xsmall {
    font-size: 0.75em;
}

.month-picker {
    width: 17em;
    padding: .2em .2em 0;
}

.month-picker-month-table .ui-button {
    width: 2.8em;
}

.month-picker-year-table .ui-button {
    font-size: 1em;
    margin: 0;
    padding: 0;
}

.month-picker table {
    width: 100%;
}

#sec-content1,
#sec-content2 {
    color: #002659;
}

#sec-content1 h3,
#sec-content2 h3,
#sec-content1 .h3-optic,
#sec-content2 .h3-optic {
    margin: 0;
    padding: 5px;
}

.sub-links {
    min-width: 180px;
    text-align: left;
}

.sub-links h5,
.sub-links .h5-optic {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.sub-links ul {
    font-size: 0.875em;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-links li {
    margin: 4px 0;
}

.sub-links a {
    color: #002659;
    text-decoration: none;
}

.sub-links a:hover {
    text-decoration: underline;
}

.ui-widget {
    font-size: 1em;
    font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}

.ui-widget-content {
    color: #464646;
}

.fa-stack-x {
    position: relative;
}

.fa-stack-absolute {
    top: 0;
    font-size: 75%;
    position: absolute;
    right: -3px;
    text-shadow: 1px 1px 1px #000;
}

#recommendation-popup,
#rating-detail-popup {
    text-align: left;
}

.anlage-item {
    position: relative;
}

.anlage-item .anlage-icon img{
    max-width: 16px;
    display: inline-block;
    vertical-align: middle;
    max-height: 16px;
}

.anlage-item .button-container {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    text-align: left;
    white-space: nowrap;
}

.anlage-item .button-container .button:first-child {
    margin-left: 0;
}

.menu-toogle {
    float: right;
    color: #002659;

    margin-top: 30px;
}


.xmenu {
    padding: 0;
    width: 100%;
    position: absolute;
    top: 100px;
    z-index: 560;

    max-width: 360px;
    right:0;
}

.g0x.page-logo {
    position: absolute;
    background: transparent;
    z-index: 5;
    max-width: 90px;
    padding: 0;
    margin-left: 1.5rem;
}


.g0x.page-logo a {
    background: #002659;
    display: block;
    border-radius: 0 0 0.5rem 0.5rem;
}

nav.main-menu {
    text-align: left;
    display: none;
    border-top: 1px solid #fff;

    overflow-x: hidden;
    overflow-y: scroll;
    max-height: calc(100vh - 85px);

}

nav.main-menu.active {
    display: block;
}

.xmenu .menu-link {
    display: inline;
}

#page-header a.menu-link.active {
    color: #ff6600;
}

#page-header a.menu-link span,
#page-header a.search-link span {
    display: none;
}



nav.main-menu .micon {
    margin-bottom: -5px;
}

nav.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

nav.main-menu > ul > li {
    display: block;
    position: relative;
    flex: 0 1 auto;
    border-bottom: 1px solid #ccc;
}
nav.main-menu > ul > li.last {
    border-bottom: none;
}

nav.main-menu > ul > li > a {
    width: 100%;
    padding:0;
    position: relative;
}

nav.main-menu ul.active {
    background-color: rgba(0, 38, 89,0.8);
}

nav.main-menu > ul > li > ul {
    font-size: 0.875em;
    display: none;
}
nav.main-menu > ul > li > ul li > ul {
    display: none;
}

.menu.active,
nav.main-menu > ul > li > ul li > ul.active,
nav.main-menu > ul > li > ul.active {
    display: block;
}

nav.main-menu li.has-subnav>a.parent:after {
    content: ">";
    background: transparent;
    display: block;
    font-family: monospace;
    font-size: 2em;
    font-weight: bold;
    line-height: 40px;
    letter-spacing: normal;
    padding: 0 13px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 300;
}

nav.main-menu li.has-subnav>a.parent.active:after {
    transform: rotate(90deg);
}

nav.main-menu a,
#page-header nav.main-menu a {
    color: #002659;
    display: block;
    text-decoration: none;
    padding: 10px;
    position: relative;
    border-left: 10px solid transparent;
}

#page-header nav.main-menu .nav-level-2 a,
#page-header nav.main-menu .nav-level-2 li:hover > a {
    color: #ffffff;
}


#page-header nav.main-menu li:hover > a,
#page-header nav.main-menu a:hover {
    color: #002659;

    background-color: #fff;
    border-left-color: #ff6600;

}

#page-header nav.main-menu a.active {
    border-left-color: #ff6600;
}

#page-header nav.main-menu .nav-level-2 li:hover > a,
#page-header nav.main-menu .nav-level-2 a:hover {
    /*background-color: rgba(255, 102, 0, 0.8);*/
    background-color: #ff6600;
}

#page-header nav.main-menu li.rootline > a {
    background-color: rgba(255, 102, 0, 0.9);
}

#page-header nav.main-menu li.selected > a {
    background-color: rgba(255, 102, 0, 0.8);
}

#page-header nav.main-menu .nav-level-2 li {
    border-bottom: 1px solid #fff;
}
#page-header nav.main-menu .nav-level-2 li.last {
    border-bottom: none;
}

#page-header nav.main-menu .nav-level-2 li a {
    padding-left: 20px;
}

#page-header nav.main-menu .nav-level-3 li a {
    padding-left: 40px;
}

.small-menu-wrap {
    display:flex;
    justify-content: flex-end;
}

ul.small-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    /*justify-content: space-between;*/
    /* width: 320px; */
    width: 100%;
    font-size: 0.75rem;
}

ul.small-menu li {
    padding: 2px 2px 4px;
}

.yellow,
input.yellow {
    background-color: #FAFACE;
}

.orange {
    background-color: #FAD4AD;
}

#sec-content {
    text-align:left;
}

/* 404 -Seite*/
#page-uid-14 #sec-content .ce-textpic {
    background-color: #ffffff;
    padding: 10px;
}

#page-uid-14 #sec-content h2,
#page-uid-14 #sec-content .h2-optic {
    color: #ff6600;
}

#page-uid-14 #sec-content p {
    margin-top:0;
    color: #002659;
}

.smaller {
    font-size: 0.75em;
}

.larger {
    font-size: 1.25em;
}

.slick-track {
    margin: 0 auto;
}

.doc-typ {
    width: 32px;
}

.doc-name {
    text-align: left;
    width: 300px;
}

.doc-date {
    text-align: center;
    width: 100px;
}

.doc-referenz {
    text-align: center;
    width: 100px;
}

.doc-typ img {
    max-width: 16px;
    max-height: 16px;
}

.doc-description {
    text-align: left;
}

.bill-typ {
    width: 32px;
}

.bill-typ img {
    max-width: 16px;
    max-height: 16px;
}

.bill-date {
    text-align: center;
    width: 100px;
}

.bill-number {
    text-align: center;
}

.bill-for {
    text-align: center;
}

.bill-customer {
    text-align: left;
}

.bill-amount {
    text-align: right;
}

.menu-link {
    text-decoration: none;
}

.pos-rel {
    position: relative;
}

.infotxt {
    font-size: 0.875em;
    color: #002659;
    text-align: left;
}

.rbox {
    background: #e0e0e0;
    padding: 10px;
}

.de-small {
    border-right: 1px solid #464646;
}


#page-header a.login-link:hover {
    color: #ff6600;
}

.logout-link{
    display: block;
    position: absolute;
    padding: 0.5em;
    text-decoration: none;
    right: 0;
    bottom: 0;
}

.creator-menu {
    display: none;
}


.creator-menu.active {
    display: block;
}

.button-info {
    cursor: help;
}

a.button-info {
    cursor: pointer;
}

.anfrage-bearbeiten .paket-header span.button-special,
.button-info.button-special {
    color: #0052bf;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    /* für Anlagen */
    float: none;
    margin: 0;
}

form.header-search-form {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    border-radius: 2rem;
    padding: 0 4px;
    background-color: #fff;
    color: #002659;
}

form.header-search-form input {
    border: none;
    background-color: transparent;
    outline: none;
    border-radius: 2rem;
    height: auto;
    padding: 0.25em;
    width:150px;
    text-overflow: ellipsis;
}

form.header-search-form input::placeholder {
    color:#a1a1a1;
    opacity: 1;
}
form.header-search-form input::-webkit-input-placeholder {
    color:#a1a1a1;
}
form.header-search-form input:-moz-placeholder {
    color:#a1a1a1;
} /* FF 4-18 */
form.header-search-form input::-moz-placeholder {
    color:#a1a1a1;
} /* FF 19+ */
form.header-search-form input:-ms-input-placeholder {
    color:#a1a1a1;
} /* IE 10+ */

form.header-search-form:hover input {
    background-color: #fff;
    color: #002659;
}

form.header-search-form .button-search {
    background-color: #fff;
    color: #002659;
    border-radius: 2rem;
}

form.header-search-form > div {
    display: inline;
}

/* liste als Flex Test */
.list-container {
    display: flex;
    flex-wrap: wrap;

    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

div.list-container > div {
    display: flex;
    justify-content: center;
}

div.list-container > div > .package-cell {
    display: flex;
    position: relative;
    /*overflow: hidden;*/
    max-width: 100%;
    width: 100%;
    border-radius: 1rem;
}

div.list-container > div > .package-cell > a {
    flex: 1 1 auto;
}

div.list-container > div:hover .slider-package img,
ul.remember-list > li:hover .slider-package img {
    transform: scale(1.05);
}

ul.remember-list {
    margin:0;
    padding:0;
    list-style: none;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

ul.remember-list li {
    display: flex;
    justify-content: center;
}

ul.remember-list li > .package-cell {
    display:flex;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    border-radius: 1rem;
}

.remember-list .rating-cell {
    margin: 0.25rem 0.75rem;
}


/* Label am Paket */
.regional > .package-cell > a:before,
.p-premium > .package-cell > a:before,
.p-preferred > .package-cell > a:before,
.p-preferred.regional > .package-cell > a > figure:before,
.p-premium.regional > .package-cell > a > figure:before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    text-align: center;
    border-radius: 1rem;
    font-size: 0.875rem;
    padding: 0.125rem 0.75rem;
    line-height: 1;
    font-weight: normal;
    height: 1.25rem;
    width: 110px;
    overflow: hidden;
}

.p-standard.regional > .package-cell > a:before,
.p-preferred.regional > .package-cell > a > figure:before,
.p-premium.regional > .package-cell > a > figure:before {
    content: 'echt regional';
    background-color: var(--hte-bg-color, #ffffff);
    border: 1px solid var(--hte-border3-color, #eeeeee);
    color: var(--hte-txt-color, #464646);
}

.p-preferred > .package-cell > a:before {
    content: 'Prefered Ad';
    background-color: var(--hte-color-one, #002659);
    border: 1px solid var(--hte-border3-color, #eeeeee);
    color: var(--hte-color-two-inverse, #ffffff);
}

.p-premium > .package-cell > a:before {
    content: 'Premium Ad';
    background-color: var(--hte-color-two, #ff6600);
    border: 1px solid var(--hte-border3-color, #eeeeee);
    color: var(--hte-color-two-inverse, #ffffff);
}

.p-preferred.regional > .package-cell > a:before,
.p-premium.regional > .package-cell > a:before {
    top: 2.25rem;
    left: 0.5rem;
}



.button-center {
    margin: 0 auto;
}

/* Filter-Overlay */
.filter-overlay-outer {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 1200;
    height: 100%;
    width: 100%;
    margin: 0;
    display:none;
    align-items: center;
    justify-content: center;
    overflow: auto;
    backface-visibility: hidden;
}

.filter-overlay-outer.opened {
    display: flex;
}

.filter-overlay-inner {
    margin: auto;
    width: 100%;
}

.filter-box {
    background-color: #fff;
    border: 1px solid #cccccc;
    color: #444444;
    position: relative;
    width: 1180px;
    max-width: 100%;
    margin: 80px auto 100px auto;
    padding: 20px 10px;
    text-align: center;
}

.filter-header {
    color: #ff6600;
    margin: 0;
}

.filter-close {
    position: absolute;
    right: 0;
    top: -40px;
}

.filter-search-button-container {
    text-align: right;
}

#page-header-filter .filter-reset {
    position: absolute;
    right: 0;
    color: #002659;
    font-size: 0.875em;
    bottom: 0;
}

.fs-select {
    max-width: 300px;
}

.filter-item .button-group.active + div.filter-list-selection {
    border-top: none;
    display: block;
}

.filter-item .button-group.active.noedit + div.filter-list-selection,
.filter-item .filter-list-selection {
    display: none;
}

.filter-set {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-item {
    padding-bottom: 0;
}

/* Allgemeine Seite */
.be-4 #sec-content h2,
.be-4 #sec-content .h2-optic,
.be-11 #sec-content h2,
.be-11 #sec-content .h2-optic {
    color: #ff6600;
}

.ce-uploads li {
    padding: 0.25em;
}

.ce-uploads img {
    margin-top: 0.25em;
}

#page-main .ce-uploads .even {
    background-color: #ffffff;
}

.article-info-box {
    background-color: #ff6600;
    color: #ffffff;
    padding: 0.5em;
}

.article-info-box p,
.article-info-box h5,
.article-info-box .h5-optic {
    padding: 0;
    margin: 0;
}

.article-date {
    float: right;
    margin: 0 0 10px 10px;
    white-space: nowrap;
}

.ce-gallery {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border-color: #ff6600;
}

.header-welcome {
    display: none;
}



/* Pagination */
.pagination {
    padding: 20px 0;
}

.pagination .ergebnisse {
    font-size: 0.875em;
    color: #808080;
    text-align: center;
}

ul.pager {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.pager > li {
    display: inline-block;
    min-width: 40px;
    overflow:hidden;
    margin:0.25em;
}

ul.pager > li.hellip {
    min-width: 0;
}

.pager,
.pager > li > a,
.pager > li > span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pager > li > span,
.pager > li > a {
    max-width: 40px;
    padding: 0;
    height: 40px;
}

.pager li span span,
.pager li a span {
    display: none;
}

.pager li.disabled .button:hover,
.pager li.disabled .button {
    background-color: var(--hte-btn-bg-light-color, #f2f3f4);
    border-color: var(--hte-btn-border-light-color, #dedede);
    color: var(--hte-btn-border-light-color, #dedede);
    cursor: default;
}

.pager li.pager-current .button {
    background-color: rgba(0, 38, 89, 0.3);
    border-color: var(--hte-btn-border-light-color, #dedede);
    color: var(--hte-btn-color, #ffffff);
    cursor: default;
}

ul.pager > li.hellip,
ul.pager > li.pager-pages {
    display: none;
}

#tx_cookies {
    position:fixed;
    bottom: 0;
    right:0;
    left: 0;
    font-size: 11px;
    z-index: 5001;
}
#page-uid-60 #tx_cookies {
    bottom: 60px;
}

#tx_cookies_showPermanent {
    display:none;
}


#tx_cookies_inner {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    min-height: 60px;
    position:relative;
    padding: 0 120px 0 10px;
}

#tx_cookies_inner[data-hide="1"] {
    display: none;
}

#tx_cookies p {
    margin: 1em 0;
}

#tx_cookies input[type="submit"] {
    border: 1px solid #ff6600;
    background: #ff6600;
    cursor: pointer;
    padding: 0.5em 1em;
    color: #fff;
    position: absolute;
    right: 0.5em;
    bottom: 0.5em;
}

#tx_cookies input[type="submit"]:hover {
    border: 1px solid #464646;
}

#tx_cookies_close {
    display: none;
}

/*Powermail*/
.tx-powermail {
    text-align: left;
}

.tx-powermail form > h3 {
    display: none;
}

.tx-powermail .powermail_fieldset{
    border:0;
    margin:0;
    padding:0;
}

.tx-powermail .powermail_fieldset legend{
    display: none;
}

.tx-powermail .control-label {
    color: #808080;
    font-size: 0.875em;
    padding: 2px;
}

.tx-powermail textarea.form-control,
.tx-powermail select.form-control,
.tx-powermail input.form-control {
    width: 100%;
}

.tx-powermail input[type="file"] {
    height: auto;
}

.tx-powermail input.powermail_checkbox {
    margin-right: 0.5em;
}

.ge-accordion {
    text-align: left;
}

.ge-accordion > div {
    padding: 10px 10px;
}

.ui-accordion .ui-accordion-content {
    padding: 1em;
    background: #fff;
}

.be-4 #sec-content h2.ui-accordion-header,
.be-4 #sec-content .h2-optic.ui-accordion-header,
.be-11 #sec-content h2.ui-accordion-header,
.be-11 #sec-content .h2-optic.ui-accordion-header,
.ui-accordion .ui-accordion-header {
    color: #222;
    font-size: 1.2rem;
    background: #fff;
}

.ge-accordion .ui-widget-content a {
    color: #ff6600;
}

#merkliste-wrapper {
    max-width: 80rem;
    margin: 0 auto;
}

#merkliste-wrapper > p {
    padding: 0 10px;
}

.category-link {
    text-decoration: none;
    color: #464646;
}
.category-link:hover {
    text-decoration: underline;
    color: #ff6600;
}

/* promotion-list-container */
ul.promotion-list-container {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul.promotion-list-container > li {
    margin: 0;
    /* max-width: 30rem; deaktiviert, da promolayout4 sonst kaputt */
    padding: 0.75rem;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.promotion-package-cell {
    display: flex;
    flex: 1 1 auto;
}

.promotion-package-cell > a,
.promotion-package-cell > a:hover {
    background-color: var(--hte-bg-color, #ffffff);
    color: var(--hte-txt-color, #464646);
    display: block;
    flex: 1 1 auto;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.promotion-package-cell > a:hover {
    background-color: var(--hte-bg-light-color, #f9f9f9);
}



.promotion-package-cell p {
    margin: 0;
}

.promotion-package-cell .header-container {
    padding-bottom: 0;
}



.promotion-package-cell .text-container {
    padding-left: 0;
    font-size: 0.75em;
}

.promotion-package-cell .image-container img {
    margin: 0;
    border-radius: 1rem;
    box-shadow: 0 0 1px var(--hte-border2-color, #464646);
}

.promotion-package-cell .h3-optic {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25em;
}

.promotion-package-cell .producttyp {
    color: #ff6600;
}

.promotion-package-cell .promotion-more {
    color: #808080;
}

.promotion-package-cell a:hover .promotion-more {
    text-decoration: underline;
}

/* Alternative Layouts 02 */
.promolayout02 .promotion-package-cell > a:hover{
    color: #ff6600;
}

.promolayout02 .promotion-package-cell .h3-optic {
    white-space: normal;
}


/* Alternative Layouts 01 */

.promolayout01 .promotion-package-cell {
    box-shadow: 0 0 1px var(--hte-border2-color, #464646);
    border-radius: 1rem;
}

.promolayout01 .promotion-package-cell > a {
    padding: 0;
    color: #464646;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    text-decoration: none;

    border-radius: 1rem;
}

.promolayout01 .promotion-package-cell figure {
    margin: 0;
    position: relative;
    border-bottom: 4px solid #fff;
    display: table-cell;
    opacity:1;
}

.promolayout01 .promotion-package-cell>a:hover figure:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #002659;
    opacity: 0.3;
}

.promolayout01 .promotion-package-cell .h3-optic {
    min-height: 2.8em;
    font-size: 1em;
    margin: .5em .5em .25em;
    font-weight: 700;
    white-space: normal;
    padding-bottom:0;
}


.promolayout01 .promotion-package-cell .info {
    margin: 0 10px .25em;
    flex: 1 1 auto;
}

.promolayout01 .ptyp{
    color: #ff6600;
}

/* offerlist */
.offerlist-header {
    text-align: center;
}

/* Newsletter */
.nl-ordering .nl-form-body {
    max-width: 620px;
    margin: 0 auto;
}
.nl-ordering button {
    width: 100%;
    max-width: 400px;
}
.nl-ordering .nl-left,
.nl-ordering .nl-right {
    padding-bottom: 0;
}
.nl-ordering .xdsgvo-container {
    padding: 10px;
}

.nl-ordering .dsgvo-cb {
    width: 40px;
}

.nl-ordering .nl-form-body .element.invalid input[type=text]{
    border:solid 1px #ff0000;
}
.nl-ordering .nl-form-body .element.invalid .xdsgvo-container {
    border:solid 1px #ff0000;
}

.nl-ordering .nl-form-body .element .validation{
    color:#ff0000;
    display:none;
    font-size:0.875em;
    text-align:left;
}
.nl-ordering .nl-form-body .element.invalid .validation{
    display:block !important;
}


.dsgvo-label {
    text-align: left;
}

/* aspect-ratio video */
.aspect-ratio-box {
    background-color: #000;
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}
.aspect-ratio-box-inside {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.flexbox-center {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flexbox-center >img {
    flex: 1 0 200px;
}

.page-header-top-right {
    display: none;
}

.button-ml {
    display: inline-block;
}

.page-header-content-search {
    max-width: 640px;
    margin: 0 auto;
    display: none;
    justify-content: flex-end;
    flex-direction: column;
    flex: 1;
    width: 100%;
    z-index: 1;
}

.page-header-content-search .g0x {
    padding: 0.5rem;
}

.page-header-content-search form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#page-header-content .page-header-content-search button {
    margin-top: 0;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.margin-top {
    margin-top: 0.5rem;
}

.page-header-content-search .col-regio,
.page-header-content-search .col-category,
.page-header-content-search .col-search {
    width: 100%;
    max-width: 100%;
}

.page-header-content-search .filter-list-button:after {
    color: #002659;
}



/* tab Layout */

.tab-wrapper {
    padding: 30px 10px;
}


ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
    font-size: 1.6em;
}

ul.tabs li {
    float: left;
    margin: 0;
    cursor: pointer;
    padding: 10px 20px;
    /* border-right: 4px solid #f9f9f9; */
    background-color: #EEF0F2;
    color: #464646;
    overflow: hidden;
    position: relative;

    background-color: #eee;
    background: -webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#eeeeee));
    background: -webkit-linear-gradient(#ffffff,#eeeeee);
    background: linear-gradient(#ffffff,#eeeeee);
    border: 1px solid #deded0;
    border-radius: 6px;
    margin-right: 4px;
}

ul.tabs li:hover {
    background-color: #ddd;
    color: #f60;
}

ul.tabs li.active {
    background-color: #fff;
    background-image:none;
    color: #ff6600;
    display: block;
}

.tab_container {
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}

.tab_content {
    padding: 0 10px;
}

.tab_drawer_heading {
    display: none;
}

/* tab Layout ende */



.profisearch-list {
    margin-bottom: 20px;
}

.profisearch-filter .filter-list-button {
    padding-left: 10px;
    text-align: left;
}

.profisearch-label {
    padding-bottom: 20px;
    display:none;
}

.profisearch-no-result {
    padding-left: 20px;
    padding-right: 20px;
}

.default-filters,
.additional-filters {
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.filter-reset {
    border-top: 1px solid #ccc;
    text-align: right;
    text-transform: uppercase;
    font-size: 0.75em;
    padding: 5px 0;
    margin: 10px 10px 0;
}
.filter-reset a {
    text-decoration: none;
    color: #ccc;
}
.filter-reset a:hover {
    text-decoration: underline;
}

.profisearch-list-count {
    font-weight: bold;
    padding-bottom: 10px;
}

a.page-logo-link {
    padding: 1rem 0.75rem 0.5rem;
}

a.page-logo-link-small,
.special-branding {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all ease 0.5s;
    padding: 0;
}

a.page-logo-link,
.default-branding {
    visibility: visible;
    opacity: 1;
    height: auto;
    transition: all ease 0.5s;
}

.fixed-header a.page-logo-link.htepc,
.fixed-header a.page-logo-link-small,
.fixed-header .special-branding {
    visibility: visible;
    opacity: 1;
    height: auto;
}

.fixed-header a.page-logo-link-small {
    max-width: 4.75rem;
}

.fixed-header a.page-logo-link,
.fixed-header .default-branding {
    visibility: hidden;
    opacity: 0;
    height: 0;
    padding: 0;
}

.fixed-header a.page-logo-link,
.fixed-header a.page-logo-link-small,
.fixed-header .branding {
    transition: all ease 0.5s;
}
.fixed-header {
    transition: all ease 0.5s;
}

.fixed-header .page-header-top-right {
    display: none;
}


.fixed-header a.page-logo-link-small {
    padding: 1rem 0.75rem;
}



#page-header-top.fixed-header nav.main-menu>ul>li>a {
    align-items: center;
}

#page-header-top.fixed-header nav.main-menu>ul>li:hover>ul {
    top: 60px;
}

#page-header-filter > .wrapper-inner {
    max-width: none;
}

/* Filter Set 50%, wegen iphone, auf 49% gesetzt 

.filter-set .filter-item {
    width: 49%;
    padding: 10px 5px 0;
}
*/

.filter-set .filter-item:nth-child(odd) .filter-list-selection {
    left:0;
    right: auto;
}

.filter-set .filter-item:nth-child(even) .filter-list-selection {
    right:0;
    left: auto;
}

.filter-set .filter-item.filter-item-button {
    width: auto;
    text-align: center;
}

.footer-logos {
    text-align: center;
}

.footer-logos img {
    display: inline-block;
    margin: 0 10px;
}

#sm-search {
    display: none;
    z-index: 750;
    background: #002659;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #fff;
    padding: 0 10px;
}

.fixed-header #sm-search {
    top: 85px;
}

#sm-search > div {
    padding: 10px;
    text-align: left;
}

#sm-search form.header-search-form {
    width: 100%;
    border: 1px solid #f60;
    background-color: #fff;
    color: #002659;
}

#sm-search form.header-search-form input {
    background-color: #fff;
    width: calc(100% - 40px);
    height: 40px;
}

#sm-search .button-search {
    color: #002659;
    width:40px;
    height:40px;
}

div.list-container > div.pagination {
    display: block;
    width: 100%;
}

.gallery-slider {
    margin: 10px;
}

.gallery-swiper .gallery-list-item figure,
.gallery-slider .gallery-list-item figure {
    margin: 0;
    position: relative;
}

.gallery-swiper .gallery-list-item figcaption,
.gallery-slider .gallery-list-item figcaption {
    background-color: #fff;
    padding: 0.5em;
    font-size: 1em;
    font-style: italic;

    height: 56px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    margin: 0 auto;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
}

.gallery-swiper .gallery-list-item figcaption {
    height: 46px;
}


.gallery-swiper .gallery-list-item figure a,
.gallery-slider .gallery-list-item figure a {
    margin: 0;
}

.gallery-swiper .gallery-list-item a img,
.gallery-slider .gallery-list-item a img {
    width: auto;
    object-fit: cover;
    border-radius: 1rem;
}

.gallery-swiper .gallery-list-item .content,
.gallery-slider .gallery-list-item .content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-swiper .gallery-list-item .content a,
.gallery-slider .gallery-list-item .content a {
    display: flex;
    max-height: 100%;
    position: static;
}

.gallery-swiper .gallery-copyright,
.gallery-slider .gallery-copyright {
    left: auto;
    right: 0;
    padding-right: 4px;
    padding-bottom: 4px;
}
.gallery-swiper .button-gallery,
.gallery-slider .button-gallery {
    bottom: auto;
    top: 0;
    bottom: auto;
}

.gallery-slider .slick-dots {
    position: absolute;
    bottom: 60px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 15;
}

.gallery-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    z-index: 15;
}

.gallery-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 16px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    z-index: 15;
}

.gallery-slider .slick-dots li button:before {
    font-family: 'slick';
    font-size: 24px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 2px #000000;
    z-index: 15;
}

.gallery-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff6600;
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 5;
}
.gallery-slider .slick-arrow:before {
    display: none;
}

.gallery-slider:hover .slick-arrow:before {
    display: block;
}

.gallery-slider .slick-prev {
    left: 20px;
}
.gallery-slider .slick-next {
    right: 20px;
}

.gallery-slider .slick-prev::before,
.gallery-slider .slick-next::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gallery-slider .slick-prev::before {
    content: '\f137';
}
.gallery-slider .slick-next::before {
    content: '\f138';
}

.sixteen-nine {
    position: relative;
}
.sixteen-nine:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
}
.sixteen-nine > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


figure .sixteen-nine {
    border-radius: 1rem;
    background-color: var(--hte-bg-light-color, #f9f9f9);
}




.cookie-config-container {
    text-align: left;
}

.mae-small-before {
    margin-top: 1em;
}
.mae-medium-before {
    margin-top: 2em;
}
.mae-large-before {
    margin-top: 3em;
}

.mae-small-after {
    margin-bottom: 1em;
}
.mae-medium-after {
    margin-bottom: 2em;
}
.mae-large-after {
    margin-bottom: 3em;
}

/* Counter */
.mae-counter {
    background-color: #fff;
    border-radius: 1em;
    padding: 1rem;
    color: #002659;
}
.mae-counter .mae-counter-number {
    font-size: 1.2rem;
    font-weight: bold;
}
.mae-counter .mae-counter-title {
    font-weight: bold;
}
.mae-counter .mae-counter-title a {
    color: #002659;
    text-decoration: none;
}

.filter-toggle-button {
    display: none;
}
.be-2 .filter-toggle-button,
.be-3 .filter-toggle-button {
    display: inline;
}
.be-2 .filter-toggle-button span,
.be-3 .filter-toggle-button span {
    display: none;
}

.be-2 .fixed-header .login-link,
.be-3 .fixed-header .login-link,
.be-2 .fixed-header .search-link,
.be-3 .fixed-header .search-link,
.be-2 .fixed-header .mlist,
.be-3 .fixed-header .mlist,
.be-2 .fixed-header .menu-link,
.be-3 .fixed-header .menu-link {
    display: none;
}


.be-2 .fixed-header .filter-toggle-button,
.be-3 .fixed-header .filter-toggle-button {
    align-items: center;
    background-color: var(--hte-btn-bg-color, #036bf8);
    border: 1px solid var(--hte-btn-border-color, #dedede);
    border-radius: 2rem;
    color: var(--hte-btn-color, #ffffff);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    max-width: 300px;
    padding: 0.25em 1em;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

#page-header.be-2 .fixed-header .menu-toogle a,
#page-header.be-3 .fixed-header .menu-toogle a {
    color: var(--hte-btn-color, #ffffff);
    font-weight: normal;
}


.be-2 .fixed-header .filter-toggle-button span,
.be-3 .fixed-header .filter-toggle-button span {
    display: inline;
    margin-left: 0.5rem;
    
}

.be-2 .fixed-header .menu-toogle,
.be-3 .fixed-header .menu-toogle {
    margin-top: 1.5rem;
}





.p-packet-title {
    display: none;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    color: #464646;
}


.page-header-content-footer {
    max-width: 80rem;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 0.5rem 0.5rem 0;
}


/* Referent im Header */
.ref-container {
    position: absolute;
    bottom: 0;
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ref-container .ref-image {
    margin-bottom: 4rem;
}

/* IE 10 Hack Staff */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    nav.main-menu > ul > li {
        display: table-cell\9;
    }
}

@media screen and (max-width: 480px) {

    .be-2 #page-header-content,
    .be-3 #page-header-content,
    .be-5 #page-header-content {
        min-height: 240px;
    }

    .fd114 .menu-slider,
    .fd115 .menu-slider,
    .fd116 .menu-slider,
    .fd117 .menu-slider,
    .fd118 .menu-slider,
    .fd119 .menu-slider,
    .fd120 .menu-slider,
    .fd121 .menu-slider,
    .fd122 .menu-slider,
    .fd123 .menu-slider,
    .fd128 .menu-slider,
    .fd129 .menu-slider,
    .fd130 .menu-slider,

    .fd114 .slider-wrapper,
    .fd115 .slider-wrapper,
    .fd116 .slider-wrapper,
    .fd117 .slider-wrapper,
    .fd118 .slider-wrapper,
    .fd119 .slider-wrapper,
    .fd120 .slider-wrapper,
    .fd121 .slider-wrapper,
    .fd122 .slider-wrapper,
    .fd123 .slider-wrapper,
    .fd128 .slider-wrapper,
    .fd129 .slider-wrapper,
    .fd130 .slider-wrapper {
        margin-left:-10px;
        margin-right:-10px;
    }

    .thanks-block .item-header {
        padding-bottom: 0;
    }
    .thanks-block .thanks-text {
        padding-top: 0;
        padding-bottom: 0;
    }
    .thanks-list {
        padding-left: 20px;
    }

    .anfrage-pins-top {
        display: none;
    }

    .ce-intext.ce-left .ce-gallery,
    .ce-intext.ce-right .ce-gallery {
        max-width: 100px;
    }

}

@media screen and (max-width: 639px) {


    #sec-sidebar div.order-button-container {
        position: fixed;
        bottom: 1rem;
        z-index: 20;
        display: block;
        left: 0.75rem;
        right: 0.75rem;
        overflow: hidden;
        white-space: nowrap;
        max-width: 400px;
        margin: 0 auto;
    }

    #sec-sidebar div.order-button-container button {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0.5em;
        border-color: #fff;
    }

    .mobil-phone-button {
        position: fixed;
        bottom: 20px;
        z-index: 10;
        display: block;
        right: 10px;
        overflow: hidden;
        white-space: nowrap;
        max-width: 60px;
    }

    #sec-sidebar .mobil-phone-button .button {
        width: 42px;
        height: 42px;
        line-height: 42px;
        margin: 0;
        border-color: #fff;
    }

    nav.main-menu.active {
        background-color: #fff;
        box-shadow: 0px 4px 8px #000;
    }

    #page-header a.login-link span {
        display: none;
    }

    table.special-table  td[data-th]::before {
        content: attr(data-th);
        display: inline-block;
        font-weight: bold;
        margin-right: 0.25em;
        width: 50%;
    }

    table.special-table tr {
        border-bottom: 1px solid #eee;
        margin: 0.25em 0 0.5em 0;
        padding-bottom: 0.5em;
    }

    table.special-table tbody,
    table.special-table td,
    table.special-table tr {
        display: block;
    }

    table.special-table td {
        text-align: left !important;
        width: 100% !important;
        white-space: normal !important;
    }

    table.special-table thead,
    table.special-table th {
        display: none;
    }

    .tab_container {
        background: transparent;
        overflow: visible;
    }

    .tab-wrapper {
        padding: 0;
    }

    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    #page-header-top.fixed-header .xmenu {
        top: 85px;
    }

    #sm-search.active {
        display: block;
    }

    .promolayout03 .sidebar-wrapper .contactperson {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .rel-edit-popup-inner .dp-container {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .ge-4 .button {
        max-width: 100%;
    }
}


/* Filter */
.filter-item-standard {
    display: block;
    max-width: 20rem;
}
.filter-item-second {
    display: block;
}
.filter-item-more {
    display: none;
}




#page-header-filter .filter-item-more a {
    color: #808080;
    font-size: 0.875em;
}
#page-header-filter .filter-item-more a:hover {
    color: #ff6600;
}

.ce-gallery figcaption {
    text-align:left;
}




#page-uid-7123 #page-header-filter {
    display: none;
}



.ce-intext.ce-left .ce-gallery {
    margin-right: 20px;
}

/* ########################################################################## */
/* # EOF default.css */
/* ########################################################################## */
