/* Stellt Basis CSS für JS Funktionalität bereit */

.ui-widget {
    font-family: inherit !important;
    font-size: inherit !important;
}

.information_i_icon:after {
    content: " [i]";
    cursor: pointer;
    font-size: .7rem;
}

.leistungskomplex {
    cursor: pointer;
}

.ui-dialog {
    background-color: white;
    border: 1px solid black;
}

.sticky_header {
    display: none;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    margin: auto;
}

.gebpos_table {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.gebpos_table .day_nameCol,
.gebpos_table_header .header_leistung {
    width: calc(100% / 12 * 5);
}

.gebpos_table_header .header_morgens,
.gebpos_table_header .header_mittags,
.gebpos_table_header .header_abends,
.gebpos_table_header .header_nachts {
    width: calc(100% / 12 * 1.5);
    display: flex;
    justify-content: flex-start;
}

.gebpos_table .inputCol {
    width: calc(100% / 12 * 1.5 * 4);
    display: flex;
    justify-content: flex-start;
}

.gebpos_table .inputCol .gebPosInputWrapper {
    width: calc(100% / 4);
    display: flex;
    justify-content: flex-start;
}

.gebpos_table .inputCol input[disabled],
.gebpos_table .inputCol select[disabled] {
    pointer-events: none; /* Deaktivierte GebPos-Inputs "fangen" keine Clicks mehr, sondern leiten sie an das hinterliegende Element weiter */
}

.gebpos_table_header .header_kosten,
.gebpos_table .day_priceCol {
    width: calc(100% / 12 * 1);
}

.gebpos_table .day_priceCol,
.gebpos_table .inputCol .selectWrapper,
.gebpos_table .inputCol .inputWrapper {
    margin-top: auto;
    margin-bottom: auto;
}

.currentDay {
    text-decoration: underline;
}


.fullscreen {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 999;
    text-align: center;
}
.fullscreen.fullscreenContent {
    position: relative;
    top: 50%;
}
.fullscreen.fullscreenContent.fullscreenText {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    font-size: 1.5rem;
}

.smallLoadingLayerStyle {
    position: fixed;
    top:50%;
    left:50%;
    width: 150px;
    margin-left: -75px;
    background: #13BF11;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: white;
    border-radius: 5px;
    z-index: 998;
}

.smallLoadingLayerBackground {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.2;
    position: fixed;
    z-index: 997;
    text-align: center;
    content: "";
}

#calcLayer, #profileSaveLayer, #cartSaveLayer {
    display: none;
}

.advicePopup, .advicePopupClone, #saveCartPopup,
#saveNewProfile, #saveProfile, #resetAllValuesPopup {
    display: none;
}

.immerCheckboxWrapper {
    display: none;
}

.displayInPrint {
    display: none;
}

.gebPosNotVisible {
    display: none;
}

#dummydiv {
    display: none !important;
}

input.altSelector {
    display: none;
}

#anfahrtDistance_wrapper {
    display: none;
}

#ksMain ul li a .dayTabDate,
#ksMain ul li a.tabDeactivated,
#weekTabs ul li a .dayTabDate {
    display: none;
}

.linkDisable {
  pointer-events: none;
  cursor: default;
}

.switcherPrice_error:not(.active),
.gebPos_error:not(.active),
.total_error:not(.active),
.dayCostSum_error:not(.active),
#eigenanteil_error:not(.active) {
    display: none;
}

.mobile {
    display: none !important;
}

.linkResetAnchor {
    display: none;
}

.dayTabsList {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dayTabsList::-webkit-scrollbar {
  display: none;
}

.dayTabsListWrapper {
  position: sticky;
  top: 0;
  z-index: 901;
}

.dayTabsNavButton {
  display: none;
}

.dayTabsListWrapper.is-scrollable .dayTabsNavButton {
  display: block;
}

.dayTabsListWrapper.is-scrollable.is-at-start .dayTabsNavButton.prev {
  display: none;
}

.dayTabsListWrapper.is-scrollable.is-at-end .dayTabsNavButton.next {
  display: none;
}

.gebPos_collapsed .gebPos_bezeichnung,
.gebPos_expanded .gebPos_bezeichnung {
  cursor: pointer;
}