/*
	In dieser Datei werden CSS-Anweisungen geschrieben,
	die sich im Frontend in der Mobilversion UND in der Desktopversion auswirken.
*/

/* !bh-cookies-warning */
.bh-cookies-warning {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background-color: white;
    z-index: 700;
    color: rgb(80, 80, 80);
    display: none;
}
.bh-cookies-warning-text {
    line-height: 18px;
    font-size: 14px;
}
.bh-cookies-warning-link,
.bh-cookies-warning-accept {
    cursor: pointer;
    display: inline-block;
    padding: 0 10px;
    margin: 0 10px;
    line-height: 30px;
}
.bh-cookies-warning-link {
    font-size: 14px;
    color: rgb(80, 80, 80);
    background-color: rgba(0, 0, 0, 0.1);
}
.bh-cookies-warning-accept {
    display: inline-block;
    color: rgb(80, 80, 80);
    background-color: rgba(0, 0, 0, 0.1);
}
.bh-cookies-buttons {
    float: right;
    padding: 5px;
}

/* bh-social */

.bh-social-bar {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    text-align: center;
}

.bh-social-element {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}

.bh-social-element svg {
    height: 100%;
    width: auto;
}

.bh-social-element i,
.bh-social-toggler i {
    font-size: 27px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}
.bh-social-toggler[aria-expanded="true"] i {
    opacity: 0.5;
}

.bh-social-toggler {
    width: 30px;
    height: 30px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.bh-social-pane {
    display: inline-block;
    white-space: nowrap;
}

.bh-social-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.bh-social-button .bh-social-pane {
    transition: 0.5s linear all;
    max-width: 0px;
    overflow: hidden;
    height: 30px;
}

.bh-social-button.active .bh-social-pane {
    max-width: 300px;
}

/* TODO Dropzone generell für "Flowline"-Container ausblenden */

.bh-swiper {
    position: relative;
}

/*
	Modal, Popup
*/
.tingle-modal__close {
    font-size: 40px;
    line-height: 40px;
}
.tingle-modal-box {
    width: 80%;
    max-width: 1024px;
}
.tingle-modal-box__footer {
    display: flex;
    justify-content: flex-end;
}
.tingle-btn--default {
    background-color: #a7a7a7;
}

.bh-modal-content {
    color: #000;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
}
.bh-modal-headline {
    font-size: 22px;
    margin-bottom: 10px;
}
.bh-modal-text {
    font-size: 14px;
}

.bh-modal-content a {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-style: inherit;
    font-weight: inherit;
    text-decoration: underline;
}

.tingle-btn {
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width: 540px) {
    .tingle-modal__close {
        display: flex;
        flex-direction: row-reverse;
        background-color: transparent;
    }
    .tingle-modal__closeIcon {
        font-size: 40px;
        line-height: 40px;
        padding: 0px 10px;
    }
    .tingle-modal__closeLabel {
        font-size: 20px;
        line-height: 40px;
    }
    .tingle-modal-box {
        width: 100%;
    }
    .tingle-modal-box__footer {
        flex-direction: column;
    }
    .tingle-btn {
        margin-left: 0px;
    }
    .tingle-btn:last-child {
        margin-bottom: 0px;
    }
}

/* Datepicker */

.mbsc-datepicker .mbsc-windows.mbsc-range-control-label.active,
.mbsc-datepicker .mbsc-windows.mbsc-range-control-value.active,
.mbsc-datepicker .mbsc-windows.mbsc-calendar-today {
    color: var(--datepicker-color-highlight, #0078d7);
}

.mbsc-datepicker
    .mbsc-windows.mbsc-range-control-wrapper
    .mbsc-windows.mbsc-segmented-button.mbsc-selected {
    border-bottom-color: var(--datepicker-color-highlight, #0078d7);
}

.mbsc-datepicker .mbsc-windows.mbsc-scroller-wheel-line,
.mbsc-datepicker .mbsc-windows.mbsc-range-day .mbsc-calendar-cell-inner,
.mbsc-datepicker .mbsc-windows.mbsc-selected .mbsc-calendar-cell-inner {
    background: var(--datepicker-color-selected, rgba(0, 120, 215, 0.25));
}

.mbsc-datepicker
    .mbsc-windows.mbsc-selected.mbsc-range-day
    .mbsc-calendar-cell-inner {
    background-color: var(--datepicker-color-highlight, #0078d7);
}

.mbsc-datepicker .mbsc-windows.mbsc-range-day {
    border-left-color: transparent;
}

/* Responsive IMG ausblenden, wenn noch keine src definiert ist */

img.bh-image-responsive-empty {
    opacity: 0 !important;
}
