:root {
    font-size: 13px;
    --frame-border: 1.46rem;
    --header-height: 11.7rem;
    --robotoslab: "Roboto Slab", "Roboto", sans-serif;
    --robotoslab-regular: "Roboto Slab Regular", "Roboto", sans-serif;
    --roboto: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --list-background: var(--ci-grey-10);
}

::-moz-selection { color: #fff; background: var(--ci-blue-100);}
::selection { color: #fff; background: var(--ci-blue-100);}

html[data-environment='dev'] {
    box-shadow: inset 10px 10px 0 rgb(255, 183, 0), inset -10px -10px 0 rgb(255, 183, 0);
}

@media (min-width: 481px) and (max-width: 1024px) {
     :root {
        font-size: 10px;
    }
}

a {
    color: var(--ci-blue-100);
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.danger-info-guest {
    color: var(--partplaced);
    animation: blink 1.5s infinite ease-in-out;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.danger-info-guest-line {
    animation: blink 1.5s infinite ease-in-out;
    background-color: var(--partplaced);
    font-size: 14px;
    color: var(--ci-grey-10);
}

/** initial setup **/

.nano {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nano>.nano-content {
    position: absolute;
    overflow: auto;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nano>.nano-content:focus {
    outline: thin dotted;
}

.nano>.nano-content::-webkit-scrollbar {
    display: none;
}

.has-scrollbar>.nano-content::-webkit-scrollbar {
    display: block;
}

.nano>.nano-pane {
    background: rgba(0, 0, 0, .25);
    position: absolute;
    width: 10px;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden \9;
    /* Target only IE7 and IE8 with this hack */
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.nano>.nano-pane>.nano-slider {
    background: #444;
    background: rgba(0, 0, 0, .5);
    position: relative;
    margin: 0 1px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.nano:hover>.nano-pane,
.nano-pane.active,
.nano-pane.flashed {
    visibility: visible \9;
    /* Target only IE7 and IE8 with this hack */
    opacity: 0.99;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--robotoslab);
    color: inherit;
    margin-bottom: 0;
    margin-top: 0;
}

h1 {
    /* font-size: 2.5rem*/
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.time>span:not(:last-child):after {
    content: '';
    width: initial !important;
    position: static !important;
    transform: translateX(50%);
}

html,
body {
    overflow: hidden;
}

body {
    background-color: var(--ci-grey-100);
    color: var(--ci-grey-80);
    font-family: var(--roboto);
    font-weight: 300;
    line-height: 1.5;
    width: calc(100% - 2 * var(--frame-border));
    margin: 0 auto;
    padding: 0 0 var(--frame-border) 0 !important;
    height: 100vh;
    /* TODO: bei Umbruch der rechten Spalte deaktivieren */
    height: calc(var(--vh, 1vh) * 100);
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    height: var(--header-height);
    z-index: 100;
    border-left: 1px dashed #969594;
    color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    /*overflow-y: hidden;*/
}

header::after {
    content: "";
    clear: both;
    display: table;
}

header .header-segment {
    height: auto;
    min-height: 100%;
    border-right: 1px dashed #969594;
}

header .header-segment:last-child {
    /* TODO!! Möglichst nicht nur für letztes Element */
    padding-left: 5px;
    padding-right: 5px;
}

.changeOutlet {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 30px;
    align-items: center;
    cursor: pointer;
}

#onlinestatus {
    width: 12px;
    height: 12px;
    margin: 4px;
    border-radius: 50%;
    background-color: var(--color-coding-4);
}

#onlinestatus.online {
    background-color: #80BB3C;
}

#onlinestatus.api-offline {
    background-color: var(--color-coding-6);
}

.header-nav {
    margin: 0 20px;
    height: 100%;
    text-transform: uppercase;
}

.header-nav ul {
    list-style-type: none;
    height: inherit;
    flex-wrap: nowrap;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0;
    width: 100%;
    padding: 0;
}

.header-nav li {
    height: inherit;
    flex: auto;
    max-width: 160px;
    float: left;
}

.header-nav li a {
    color: #969594;
    text-decoration: none;
    padding-top: 15px;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-nav .active,
.header-nav li:not(.space):hover {
    background-image: linear-gradient(var(--ci-blue-100) 86.75%, rgba(255, 255, 255, 0) 100%);
    color: var(--ci-grey-90);
}

.header-nav .purple.active,
.header-nav li.purple:not(.space):hover {
    background-image: linear-gradient(var(--hotel-guest) 86.75%, rgba(255, 255, 255, 0) 100%);
    color: #fff;
}

.header-nav li.active a,
.header-nav li:not(.space):hover a {
    color: inherit;
}

.header-nav li.space {
    max-width: unset;
}

header .svg,
header .mainPart img {
    width: 100%;
    max-width: 3.8rem;
    margin: 0 auto;
}

header .mainPart img {
    cursor: pointer;
}

.header-nav .svg * {
    stroke: currentColor;
    fill: currentColor;
}

.header-nav span {
    margin-top: 8px;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    min-height: var(--header-height);
    height: auto;
    width: 100%;
    pointer-events: none;
    display: inherit;
    z-index: 10;
    transform: translateY(-100%);
    transition: all 330ms;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header-overlay.active {
    transform: none;
}

.overlay-top-nav {
    flex: 1;
    background-color: var(--ci-grey-100);
    pointer-events: all;
}

main {
    overflow-y: auto;
    position: relative;
    height: calc(100% - var(--header-height));
}

#reservation-scrollbar {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: var(--frame-border);
    bottom: var(--frame-border);
}

#reservation-scrollbar .__scrollTrack {
    width: 1.01rem;
    padding: 5px 3px;
    margin: 0 auto;
    background-color: var(--ci-grey-80);
    border-radius: 3px;
}

#reservation-scrollbar .__scrollThumb {
    background-color: #dfdfdf;
    border-radius: 2px;
}

main::-webkit-scrollbar {
    display: none;
}

main::after {
    content: "";
    clear: both;
    display: table;
}

.content-container {
    height: 100%;
    border-radius: 5px;
    background-color: #f2f2f2;
    float: left;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}


/* TODO:
@media only screen and (max-width: 874px) {
.content-container {
height: 100%;
}
}
*/

.content-subcontainer {
    display: inherit;
    flex-direction: column;
    padding: 15px 15px 0 15px;
    float: left;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/*          Login-Page          */

.ctl-loginModule main {
    height: 100%;
    background-image: url(../Images/login-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.ctl-loginModule .login {
    padding: 0;
    height: 100%;
    min-height: initial;
}


/*      Rating / Widget-Imprint      */

body.ctl-stats,
body.ctl-widget.imprint,
body.ctl-payment.process {
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    
    height: 100%;
    overflow-x: hidden;
}

body.ctl-stats::before,
body.ctl-widget.imprint::before,
body.ctl-payment.process::before {
    content: '';
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url(../Images/HG.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-x: center;
    z-index: -1;
}

body.ctl-stats {
    font-size: 16px;
    justify-content: unset;
}

body.ctl-stats.bright::before {
    filter: brightness(2.5);
}

body.ctl-stats p {
    padding: 0;
    margin: 0;
}

body.ctl-stats.index #logo,
body.ctl-stats.reset #logo {
    display: none;
}

.content--stats {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
}

body:not(.imprint) .content--stats {
    color: #fff;
}

.content--stats .error {
    height: auto;
}

@media only screen and (min-width: 600px) {
    body.ctl-stats #logo,
    body.ctl-widget.imprint #logo,
    body.ctl-payment.process #logo {
        display: block !important;
        width: 350px;
        margin: 2%;
    }
    .content--stats {
        margin-top: 100px;
        padding-bottom: 100px;
    }
}

.imprintInfo {
    background-color: #fff;
    padding: 20px;
    text-align: justify;
}

.widgetPoweredBy {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.widgetPoweredBy::before, .widgetPoweredBy::after {
    content: '';
    flex: auto;
    border-top: 2px solid black;
    margin: 5px;
}

.ci-blue {
    color: var(--ci-blue-100);
}

.stats-head,
.stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    color: inherit;
}

.stats-head {
    background-color: var(--ci-blue-100);
    height: 100px;
    text-align: center;
    flex-direction: column;
}

.stats-head h1 {
    font-family: 'Roboto', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-block: 7px;
    color: var(--progress, inherit);
}

.stats-head h1:not(:last-child) {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
}

.stats-subhead {
    width: 100%;
    font-size: 1rem;
    flex-direction: column;
    padding-top: 25px;
}

.stats-subhead>div {
    margin: auto;
}

.stats-subhead table {
    font-size: 0.75rem;
    font-weight: 200;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    margin-top: 25px;
}

.stats-subhead table td {
    height: 30px;
    line-height: 1;
    padding: 0;
    text-align: center;
}

.stats-subhead table td:not(:last-child) {
    border-right: 1px solid #fff;
}

.stats-content {
    flex-direction: column;
    padding-bottom: 20px;
}

.stats-notification {
    font-size: 24px;
    background: var(--ci-blue-100);
    padding: 50px 20px;
    color: #fff;
    text-align: center;
    min-height: 400px;
    height: auto;
    position: relative;
}

.stats-notification h1 {
    font-size: 2.5rem;
}

.stats-notification p {
    margin-top: 25px !important;
}

.ratingWrapper,
.advise,
#main > #reset-form {
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
}

#main > #reset-form {
    margin-top: 20px;
}

@media (min-width: 481px) {
    #reset-form .labeled-field input, #reset-form .labeled-field select, #reset-form .labeled-field label.radio {
        height: 40px;
        font-size: 14pt;
    }
}

#reset-form #customer-frame {
    display: flex;
    flex-direction: column;
    height: 380px;
}

#reset-form label {
    font-weight: normal;
    font-size: 10pt;
}

#reset-form legend {
    border: initial;
    border-color: initial;
    margin-bottom: initial;
    padding-inline: 2px;
}

#reset-form #required-text {
    margin-left: auto;
    width: min-content;
    font-size: small;
    margin-top: 1rem;
}


/*.ratingWrapper:not(:first-of-type) {
   border-top: white 1px solid;
   margin: 35px auto 0 auto;
}*/

.ratingSetItem {
    width: 90%;
    margin: 15px auto;
    font-size: 1.1rem;
    font-weight: 100;
    color: inherit;
}

.ratingSetItem:last-of-type {
    margin-bottom: 0;
}

.ratingSetItem p {
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
}

.ratingSetItem:not(:last-of-type) p {
    border-bottom: 1px solid var(--ci-grey-20);
}

.ratingSetItem .static-fill {
    fill: var(--inactive, var(--default-inactive, #b7e6f2));
}

.ratingSetItem .dynamic-fill {
    fill: var(--active, var(--default-active, #4cc0df));
}

.ratingWrapper .introduction {
    padding-top: 30px;
    margin-bottom: 15px;
}

.ageoptions {
    width: 100%;
    table-layout: fixed;
    text-align: center;
    background-color: var(--inactive, var(--default-inactive, #b7e6f2));
    color: var(--inactive-font, var(--default-inactive-font, #423f3e))
}

.ageoptions tr:first-of-type {
    border-bottom: 1px solid currentColor;
}

.ageoptions td {
    cursor: pointer;
    user-select: none;
    height: 60px;
}

.ageoptions td:not(:last-child) {
    border-right: 1px solid currentColor;
}

.ageoptions td.hover,
.ageoptions td.selected {
    background-color: var(--active, var(--default-active, #4cc0df));
    color: var(--active-font, #fff);
}

.ratingWrapper .ratingnote {
    background-color: var(--active, var(--default-active, #4cc0df));
    color: var(--active-font, #fff);
    padding: 8px 10px !important;
    display: none;
}

.ratingWrapper .ratingnote .sg,
.ratingWrapper .ratingnote .pl {
    display: none;
}

/*#rating-description,
#rating-description+p {
    background-color: #42403e;
}*/

#rating-description {
    display: block;
    color: inherit;
    width: 100%;
    padding: 10px;
    overflow: auto;
}

#rating-description+p {
    text-align: right;
    font-size: 11px;
    padding: 6px;
    color: #b4b4b4;
}

.send-stats {
    color: inherit;
    background-color: var(--paid);
    height: 80px;
    width: 100%;
    margin-top: 50px;
    border: none;
    border-radius: 2px;
    font-size: 2.3rem;
    text-transform: uppercase;
}

.advise {
    text-align: center;
    margin-top: 40px;
}

.advise p {
    line-height: 1.7rem;
}

.advise p span {
    font-weight: bold;
}

.advise .social {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.advise .social a {
    flex: auto;
    height: 40px;
    border-radius: 2px;
    margin: 0 4px;
    fill: #fff;
    display: inherit;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 600px) {
    .advise .social a[rel='noopener'] {
        display: none;
    }
}

.content--stats #footer {
    color: var(--progress, inherit);
}

.content--stats footer {
    width: 100%;
    text-align: center;
    color: inherit;
    margin-top: 20px;
    font-size: 1rem;
}

.stats-notification footer {
    position: absolute;
    bottom: 20px;
    left: 0;
}

.content--stats footer a {
    color: inherit;
}


/*      End-Rating  */


/*          Main Page          */

.subheader {
    display: inherit;
    flex-direction: column;
    background-color: var(--ci-grey-100);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#content-right {
    position: relative;
    display: inherit;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

.square {
    float: left;
    position: relative;
    width: 30%;
    padding-bottom: 30%;
    background-color: #dfdfdf;
    overflow: hidden;
    color: #000;
    text-align: center;
}

.square.home-square {
    width: 100%;
    cursor: pointer;
}

.square-grid {
    display: grid;
    height: inherit;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}



@media (min-width: 481px) and (max-width: 1024px) {
    .square-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.square-grid .square {
    background-color: #dfdfdf;
    border-radius: 4px;
    padding: 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    max-height: 160px;
    flex-direction: column;
    justify-content: center;
}

.square-grid .square svg {
    width: 40%;
    margin: 0 auto;
}

.square-grid .square span {
    margin-top: 5px;
    text-align: center;
    word-break: break-all;
    hyphens: auto;
}

@media only screen and (min-width: 875px) {
    #right-container {
        padding-left: 0;
    }
}

#rating-header {
    padding: 15px 15px 0 15px;
    color: #fff;
}

#rating-list-header {
    display: inherit;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 10px;
}

#rating-list-header button {
    text-transform: uppercase;
    border-radius: 4px;
    border: 0;
    background-color: var(--ci-grey-80);
    color: #fff;
    width: 11.2rem;
    height: 2.85rem;
}

#rating-list-header button:hover {
    background-color: var(--ci-blue-100);
}

#rating-list-header button:first-child {
    margin-right: 14px;
}

#rating-list-body {
    /*display: inherit;
flex-direction: column;*/
    overflow-y: auto;
    flex: 1;
}

#rating-list-fade {
    background-image: linear-gradient(#ffffff00 20%, var(--ci-grey-100) 100%);
    /*background-image: radial-gradient(ellipse farthest-side, var(--ci-grey-100)77 20%, #ffffff00 100%);*/
    position: absolute;
    z-index: 10;
    bottom: -1.92rem;
    width: 100%;
    height: 3.85rem;
}

.rating-item {
    /*min-height:112px;*/
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
}

.rating-item h5 {
    display: inline;
}

.rating-item:nth-child(odd) {
    background-color: var(--ci-grey-10);
}

.rating-item:nth-child(even) {
    background-color: #dfdfdf;
}

.rating-list-left {
    display: inherit;
    flex-direction: column;
    padding-left: 22px;
}

.rating-list-left>div {
    padding-left: 5px;
    padding-right: 22px;
}

.rating-list-left>div:first-child {
    -webkit-box-shadow: inset 0 -0.35px 0 var(--ci-grey-80);
    -moz-box-shadow: inset 0 -0.35px 0 var(--ci-grey-80);
    box-shadow: inset 0 -0.35px 0 var(--ci-grey-80);
    padding-top: 10px;
    padding-bottom: 5px;
}

.rating-list-right {
    padding: 22px;
    word-break: normal;
    hyphens: auto;
    -webkit-box-shadow: inset 0.35px 0 0 var(--ci-grey-80);
    -moz-box-shadow: inset 0.35px 0 0 var(--ci-grey-80);
    box-shadow: inset 0.35px 0 0 var(--ci-grey-80);
}

#rating-overview {
    margin-bottom: 1.15rem;
}

#rating-overview,
.rating-detail {
    display: inherit;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.ratingMainValues {
    width: 14.62rem;
    margin: 0 0.77rem;
}

.ratingAverageValues {
    max-width: 13.85rem;
    width: 100%;
    margin: 0.77rem;
}

.static-fill {
    fill: transparent;
}

.ratingValues .dynamic-fill {
    fill: #969594;
}

.ratingMainValues .dynamic-fill {
    fill: var(--ci-blue-100);
}

.ratingAverageValues .dynamic-fill {
    fill: #fff;
}

.rating-detail>div {
    display: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex: 1;
    font-size: 1rem;
    min-width: 9.77rem;
}

.rating-detail>div:last-child {
    break-before: avoid;
}

.rating-detail>div>span {
    text-align: center;
}

.rating-item .rating-detail {
    padding-top: 0.54rem;
}

.ratingValues {
    margin: 0.77rem;
    max-width: 8.23rem;
    width: 100%;
}


/*          Reservation-List          */

#dateselect {
    width: 90%;
    color: var(--ci-grey-10);
    display: inherit;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.75rem;
}

.header-segment .time {
    background: none;
    font-size: 1.3rem;
}

.notToday .time,
.notToday .currentDate {
    color: var(--note);
}

.notTodayWeek .weekInfo,
.notTodayWeek #startDate,
.notTodayWeek #endDate {
    color: var(--note)!important;
}

.notTodayWeek #dateselect button:not(.week-next):not(.week-prev) {
    background-color: var(--note);
}

/*******************************************************/
.system_closed .time,
.system_closed .currentDate,
.system_blocked .time,
.system_blocked .currentDate {
    color: var(--person-per-interval);
}

#dateselect button,
.date-range-selection button,
.datePrevNotice,
.book-prev,
.dateNextNotice,
.book-next,
.week-next,
.week-prev {
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    border: 0;
}

#dateselect button:not([class^="date"]) {
    border-radius: 4px;
    width: 3.5rem;
    height: 3.5rem;
}

.notToday #dateselect button:not([class^="date"]) {
    --fill: var(--note);
}

.system_closed #dateselect button:not([class^="date"]) {
    --fill: #fff;
    --stroke: var(--person-per-interval);
}

.system_blocked #dateselect button:not([class^="date"]) {
    --fill: var(--person-per-interval);
    --stroke: #fff;
}

#dateselect button {
    padding: 0;
}

#dateselect button svg {
    width: 100%;
    height: 100%;
}

.date-range-selection .ui-datepicker-trigger {
    content: "";
    background-image: url(../Images/Icons/HeadCal_dynamic.svg);
}

.date-range-selection .headToday {
    background-image: url(../Images/Icons/Now_dynamic.svg);
}

#ui-datepicker-div {
    z-index: 10501 !important;
    width: auto;
    background-color: var(--ci-grey-90);
    border-radius: 5px;
}

.datePrev,
.datePrevNotice,
.dateNext,
.dateNextNotice,
.datePrevPackage,
.dateNextPackage,
.datePrevPackageWeek,
.dateNextPackageWeek,
.datePrevTask,
.dateNextTask {
    width: 1.3rem;
    height: 4.8rem;
}

.datePrevRange,
.dateNextRange {
    width: 1rem;
    height: 3.5rem;
}

.datePrev,
.datePrevNotice,
.datePrevRange,
.datePrevPackage,
.datePrevPackageWeek,
.datePrevTask {
    background-image: url(../Images/Icons/HeadDatePrevBig.svg);
}

.system-closed .datePrev {
    background-image: url(../Images/Icons/HeadDatePrevBigClosed.svg);
}

.dateNext,
.dateNextNotice,
.dateNextRange,
.dateNextPackage,
.dateNextPackageWeek,
.dateNextTask{
    background-image: url(../Images/Icons/HeadDateNextBig.svg);
}

.system-closed .dateNext {
    background-image: url(../Images/Icons/HeadDateNextBigClosed.svg);
}

#dateselect .dateNext,
#dateselect .datePrev {
    width: 100%;
}

#dateselect .datetime {
    width: 0;
    display: inherit;
    text-align: center;
    align-items: center;
    user-select: none;
    z-index: -1;
}

.settingOutletChooser,
.yearChooser {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: flex-start;
}

.settingOutletChooser {
    margin-inline: 1rem;
    flex: 0;
}

.settingOutletChooser div {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #d5d4d4;
    cursor: pointer;
}

.settingOutletChooser div.active {
    color: #fff;
    background-color: var(--ci-blue-100);
}

#reservationSlider {
    --slider-height: 2rem;
    --top-margin: 1.23rem;
    --value-top-padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*flex-end*/
}

.busyTimeDirection {
    flex: 1;
    width: 94%;
    display: flex;
    align-items: center;
}

#busyTimeUpDown+label {
    height: 2.3rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
}

#busyTimeUpDown+label:hover {
    color: #fff;
}

#busyTimeUpDown+label img {
    height: 1.1rem;
    margin-left: 5px;
}

#busyTimeUpDown:checked+label img {
    transform: scaleY(-1);
}

.timeSlider {
    display: flex;
    height: 76%;
    width: 94%;
}

.timeSlider>div {
    height: 100%;
}

.timeSlider .percent {
    width: 2.15rem;
    padding-top: var(--top-margin);
    padding-bottom: var(--slider-height);
}

.timeSlider .percent>div {
    position: relative;
    height: 100%
}

.radarSetting {
    padding-top: var(--top-margin);
    width: 2.92rem;
}

.radarSetting img {
    float: right;
}

.timeSlider span {
    font-size: 9px;
    color: #969594;
    transform: translateY(50%);
    position: absolute;
}

#timeWrapper-frame {
    flex: 1;
    display: flex;
    position: relative;
    margin-top: var(--top-margin);
    border-top: 1px dashed #969594;
    border-bottom: 1px solid #969594;
}

.timeWrapper {
    float: left;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.timeWrapper:last-of-type {
    display: none;
}

#slider-wrapper {
    height: var(--slider-height);
    padding-top: var(--value-top-padding);
}

#slider {
    border: 0;
    background: transparent;
}

#custom-handle {
    --radius: 1.15rem;
    /*20*/
    width: calc(2 * var(--radius));
    background: none;
    display: inline-block;
    border: 0;
    top: 0;
    margin-left: 0px;
    transform: translateX(-50%);
}

#custom-handle .timeValue {
    width: 100%;
    text-align: center;
    position: absolute;
    top: -5px;
    color: var(--ci-grey-10);
}

#custom-handle .handle-image {
    --fill: var(--ci-blue-100);
    width: 100%;
    position: absolute;
    top: calc(var(--value-top-padding) * (-1));
    transform: translateY(-100%);
}

#custom-handle .handle-image.simulated {
    --fill: var(--note);
}

#custom-handle .circle {
    position: absolute;
    top: var(--radius);
    left: var(--radius);
    transform: translate(-50%, -50%);
    font-family: var(--robotoslab);
    font-size: 18px;
    line-height: 18px;
    width: initial;
}

#max-utilization {
    background-color: var(--note);
    padding: 3px 5px;
    border-radius: 2px;
    color: #000;
    font-size: 10px;
}

#max-utilization-line {
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 1px dashed var(--note);
}

#reservationList,
.rangePicker {
    background-color: var(--ci-grey-18);
    color: var(--ci-grey-100);
    flex-direction: column;
}

#reservationList {
    min-width: 24rem;
    overflow: hidden;
}

#reservationList-header {
    background-color: transparent;
    display: inherit;
    flex-direction: column;
    /*flex-wrap: wrap;*/
}

#reservationList-header.full {
    flex-direction: row;
}

#reservationList-header.full>div:first-of-type {
    min-width: 17rem;
    width: -moz-min-content;
    width: -webkit-min-content;
    width: min-content;
}

.dayweek-list #reservationList-header {
    flex-direction: row;
}

.switchView {
    background-color: var(--ci-grey-10);
    border: 0;
    padding: 0.38rem;
    min-height: 4.77rem;
    width: auto;
    max-width: 145px;
    text-transform: uppercase;
}

.switchView:not(:last-child) {
    margin-right: 2px;
}

.switchView.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#reservationList-header>div {
    padding: 0.7rem;
    display: inherit;
    -webkit-box-shadow: inset -0.35px 0 0 var(--ci-grey-80);
    -moz-box-shadow: inset -0.35px 0 0 var(--ci-grey-80);
    box-shadow: inset -0.35px 0 0 var(--ci-grey-80);
}

#statistics {
    --fill: currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.4rem;
    user-select: none;
    height: 2.7rem;
}

#statistics.live {
    color: var(--color-coding-4);
    --fill: currentColor;
}

#statistics:not(.live) #reservations-statistics-live {
    display: none;
}

#statistics.live #reservations-statistics-reservations,
#statistics.live #reservations-statistics-people {
    display: none;
}

#statistics>* {
    display: flex;
    margin: 0 4px;
    flex-direction: column;
    align-items: center;
    font-size: 1.35rem;
    min-width: 2rem;
}

#statistics svg {
    width: 1.2rem;
    margin-bottom: 2px;
}

#reservations-statistics-live {
    flex-direction: row;
}

#reservations-statistics-live svg {
    width: 1.8rem;
    margin: 0 0.38rem 0 0;
}

#live-text {
    background-color: var(--color-coding-4);
    color: #fff;
    border-radius: 2px;
    font-size: 0.8rem;
    padding: 0.15rem 0.62rem;
    margin-bottom: 2px;
}

#people-total,
#reservations-total,
#live-text,
#people-live {
    display: block;
    text-align: center;
    line-height: 1;
}

#reservations-statistics-reservations svg {
    width: 1.2rem;
}

#reservations-total {
    font-size: 1.4rem;
    font-weight: 500;
}

#incoming-stats {
    font-weight: 600;
    --fill: currentColor;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    gap: 5px;
}

#incoming-stats .column {
    display: inline-flex;
    margin: 0 10px;
    background-color: var(--ci-grey-95);
    color: var(--ci-blue-100);
    padding: 5px 8px;
    border-radius: 3px;
}

#incoming-stats svg {
    height: 20px;
    margin-left: 6px;
}

.search-filter {
    display: inline-flex;
    flex: 1;
    align-items: center;
    background-color: #fcfcfc;
    color: var(--ci-grey-20);
    border-radius: 3px;
}

.search-filter input {
    width: 0;
    flex: auto;
    background-color: inherit;
    border: 0;
    box-shadow: none;
    height: 100%;
    color: var(--ci-grey-70);
}

.search-filter span {
    color: inherit;
    padding: 5px;
}

.search-filter input:focus {
    outline: none;
}

.master-search,
.reset-all-tables {
    height: 2.7rem;
    width: 2.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--ci-grey-100);
    border-radius: 3px;
}

.master-search:hover,
.reset-all-tables:hover {
    cursor: pointer;
}

.reset-all-tables {
    background-color: transparent;
}

.reset-all-tables svg {
   padding: 3px;
}

.is-reset-all-tables .modal-header {
    padding: 10px;
}

.is-reset-all-tables .btn:hover {
    background-color: var(--ci-blue-100);
    color: #fff;
}

.master-search svg {
    height: 75%;
    width: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--ci-grey-80);
    line-height: 2.15rem;
    text-align: center;
}

#reservationList-header .search-filter {
    max-width: 500px;
    font-size: 1.2rem;
    margin: 0 5px;
    height: 2.7rem;
}

#reservation-sort {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

#reservation-sort .select2-container {
    min-width: 7rem;
    max-width: 110px;
    box-sizing: border-box;
    display: inline-block;
    margin: 1px;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

#reservation-sort .select2-selection__rendered {
    padding: 3px;
    color: #fff;
    height: 100%;
}

#reservation-filter table {
    border: 1px solid transparent;
    border-spacing: 2px;
    /* nur wegen bootstrap */
    border-collapse: separate;
    /* nur wegen bootstrap */
    table-layout: fixed;
    color: #6c6a69;
    width: 100%;
    height: 100%;
    margin-top: -2px;
}

#reservationList-header.full #reservation-filter table {
    width: auto;
}

#reservation-filter th {
    background-color: var(--ci-blue-100);
    font-weight: normal;
    text-align: center;
    padding: 0;
}

#reservation-sort .select2-selection {
    border: 0 !important;
    border-radius: 0;
    background-color: #2d2a29;
    height: 35px;
}

#reservation-sort .select2-search.select2-search--dropdown {
    display: none;
}

#reservation-sort .select2-results__option {
    padding: 0px;
    user-select: none;
    -webkit-user-select: none;
    color: #000;
}

#reservation-sort .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    user-select: none;
}

#reservation-filter td {
    padding: 3px;
    font-size: 0.85rem;
    width: auto;
    height: 2.7rem;
    text-align: center;
    background-color: var(--ci-grey-10);
    border: inherit;
    line-height: normal;
    cursor: pointer;
}

#subTableFilter {
    height: 100%;
}

#subTableFilter td {
    background-color: var(--ci-grey-10);
    border: 1px solid var(--ci-grey-20);
    word-wrap: break-word;
    /* All browsers since IE 5.5+ */
    overflow-wrap: break-word;
    color: #6c6a69;
}

#reservation-filter .active {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#reservation-filter .disabled {
    cursor: not-allowed;
}

#reservation-filter .inactive {
    background-color: var(--ci-blue-50) !important;
}

.date-range-selection {
    display: inherit;
    align-items: center;
}

.date-range-selection:not(:last-child) {
    margin-right: 2.3rem;
}

.date-range-selection button:not([class^="date"]) {
    background-color: #fff;
    border-radius: 4px;
    width: 3rem;
    height: 3rem;
}

.date-range-selection .dateNextRange,
.date-range-selection .datePrevRange {
    margin-left: 7px;
    margin-right: 7px;
}

.reservationList-box {
    border-collapse: collapse;
    flex: 1;
    min-height: 0;
    -webkit-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
}

#reservationList-box {
    display: flex;
    flex-direction: column;
}

/*      Reservation-List/Reservation-Item    */

.reservationItem,
.reservationItem2 {
    display: flex;
    font-weight: 400;
    background-color: var(--ci-grey-10);
    color: var(--ci-grey-80);
    /*border-bottom:  1px solid #d4d4d4;*/
    min-height: 4.6rem;
    position: relative;
    flex-shrink: 0;
}

.reservationItem.status-checkedOut-temp {
    display: none !important;
}

#ct_notices {
    color: rgb(171, 170, 169);
}

@keyframes table-pulse-fill {
    0% { fill: var(--waitlist); }
    100% { fill: #eab57c; }
}

@keyframes table-pulse-bg {
    0% { background-color: var(--waitlist); }
    100% { background-color: #eab57c; }
}

.roomTable.status-appeared:not(.temp).overdue-action .table-surface {
    animation: table-pulse-fill 0.8s infinite alternate;
    transition: fill 0.75s ease-in-out;
    fill: var(--waitlist); 
}

.table-surface.animate-pulse-fix {
    animation: table-pulse-fill 0.8s infinite alternate;
}

.roomTable.status-appeared .wrapper-surface.overdue-action,
.reservationItem.status-appeared .reservation-action-items.overdue-action {
    background-color: var(--waitlist);
    transition: background-color 0.75s ease-in-out, filter 0.75s ease-in-out;
    animation: table-pulse-bg 0.8s infinite alternate;
}

.tableInfo {
    display: inherit;
    justify-content: center;
    align-items: center;
    width: 4.23rem;
    min-width: 4.23rem;
    word-break: normal;
    text-align: center;
    position: relative;
    transition: 1s all;
}

.tableInfo.storno svg {
    width: 35px;
    margin-bottom: -7px;
}

.reservationItem.status-waiting .reservation-action-item.noTable {
    stroke: var(--waitlist);
    fill: var(--waitlist);
    height: 32px;
}

/* Tisch fest zugesagt */

.tableInfo .corner {
    position: absolute;
    width: 20px;
    aspect-ratio: 1/1;
    left: 3px;
    top: 3px;
    --corner-fill: currentColor;
}

.tableInfo>div span:not(:last-child)::after {
    content: "|";
    margin: 0 3px;
}

.tableInfo .hasMore div:last-child::after {
    background: url(../Images/Tables/MoreTables.svg) no-repeat;
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    height: 4px;
    display: block;
    content: "";
}

.tableWarning,
.status-new .highlight {
    background-color: var(--no-table);
    color: #fff;
}

.status-appeared:not(.temp) .tableInfo,
.status-appeared-temp .tableInfo,
.status-appeared:not(.temp) .reservation-action-items,
.status-appeared-temp .reservation-action-items {
    background-color: var(--checked-in);
    color: #fff;
}


/*.status-appeared-temp .tableInfo,
.status-appeared-temp .reservation-action-items {
   background-color: var(--checked-in)!important;
   color: #fff!important;
}*/

.status-placed:not([data-special-state]):not(.temp):not(.bookingOption) .tableInfo,
.status-placed-temp .tableInfo,
.status-placed:not(.temp):not(.bookingOption) .reservation-action-items,
.status-placed-temp .reservation-action-items {
    background-color: var(--reservation);
    color: #fff;
}

.status-placed[data-special-state='isLate'] .tableInfo {
    background-color: var(--note);
    color: #000;
}

/*
.status-placed-temp .tableInfo,
.status-placed-temp .reservation-action-items {
   background-color: var(--reservation)!important;
   color: #fff!important;
}*/

.roomTable.status-appeared:not(.temp) .table-surface,
.roomTable.status-appeared-temp .table-surface {
    fill: var(--checked-in);
}

.roomTable.status-placed-temp .table-surface {
    fill: var(--reservation);
}

.status-placement-pending .tableInfo,
.status-placement-pending-temp .tableInfo,
.status-placement-pending .reservation-action-items,
.status-placement-pending-temp .reservation-action-items,
.status-placement-pending .highlight {
    background-color: var(--waitlist);
    color: #fff;
}

.status-waiting .tableInfo,
.status-waiting-temp .tableInfo,
.status-waiting .reservation-action-items,
.status-waiting-temp .reservation-action-items,
.status-waiting .highlight {
    background-color: var(--cancellation);
    color: var(--waitlist);
    --fill: var(--waitlist);
}

.status-waiting .itemContent {
    background-color: var(--waitlist);
    color: #fff !important;
}

.unseen-new .tableInfo,
.unseen-new .reservation-action-items,
.unseen-updated .tableInfo,
.unseen-updated .reservation-action-items {
    background-color: var(--unseen) !important;
    color: #fff !important;
}

.unseen-new:not(.redo) .reservation-action-item[data-type='unseenRedo'],
.unseen-updated:not(.redo) .reservation-action-item[data-type='unseenRedo'] {
    display: none;
}

.unseen-new.redo .reservation-action-item[data-type='unseen'],
.unseen-updated.redo .reservation-action-item[data-type='unseen'] {
    display: none;
}

.status-placed-part .tableInfo
/*,
.status-placed-part .reservation-action-items*/

{
    background-color: var(--partplaced);
    color: #fff;
}

.status-placed-part .reservation-action-items {
    background-color: var(--checked-in);
    color: #fff;
}

.reservation-action-item.deactivated,
.info-button.deactivated {
    opacity: 0.3;
}

li.status-placed-part .reservationTime {
    background-color: var(--partplaced) !important;
    color: #fff !important;
}

li.status-waiting .reservationTime {
    background-color: var(--waitlist) !important;
    color: #fff !important;
}

.status-storno {
    background-color: #000 !important;
    color: rgb(128, 128, 128);
}

.status-storno .tableInfo,
.status-storno .personInfo {
    color: rgb(128, 128, 128);
}

.roomTable.status-cleaningUp:not(.temp):not(.showConnected) .table-surface {
    fill: var(--cleaning-up) !important;
    color: #fff;
}

.roomTable.status-paid:not(.temp):not(.showConnected) .table-surface {
    fill: var(--paid) !important;
    color: #fff;
}

.status-paid:not(.temp) .tableInfo,
.status-paid:not(.temp) .reservation-action-items {
    background-color: var(--paid) !important;
    color: #fff;
}

.status-checkedOut .tableInfo,
.status-checkedOut .reservation-action-items {
    background-color: var(--checked-out);
}

.status-checkedOut .reservation-action-items,
.bookingOption:not(.unseen-new) .reservation-action-items {
    --fill: var(--ci-grey-70);
}

.late,
.isGhost {
    background-color: var(--note) !important;
    color: #000 !important;
}

.reservationItem .reservation-action-item.noTable {
    stroke: #fff;
    fill: #fff;
    height: 28px;
}

.tableInfo.new.late .noTable {
    stroke: var(--ci-grey-50);
    fill: var(--ci-grey-40);
}

.isGhost {
    opacity: 0.5;
}

.roomTable.ui-droppable-hover {
    background: transparent;
    border: 0;
    padding: 0;
}

.roomTable.ui-droppable-hover .table-surface {
    fill: var(--ci-blue-100) !important;
}

.itemContent {
    flex: 1;
    min-width: 0;
    display: inherit;
    padding: 5px 0;
    background-color: var(--list-background);
    color: var(--ci-grey-80);
    overflow: hidden;
}

.itemContent>div:not([class*='optionWrapper']) {
    padding: 0 6px;
    display: inherit;
}

.itemContent .info {
    word-break: break-all;
}

.itemContent>div:not(:last-child) {
    border-right: 1px solid var(--ci-grey-100);
}

.itemContent .dateInfo {
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
    align-items: center;
}

.reservationItem:not(.full) .itemContent .personInfo,
.task-popper-tasks-item .itemContent .personInfo {
    font-size: 1.1rem;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    position: relative;
}

.reservationItem.full .itemContent .personInfo {
    align-items: center;
    width: 21.92rem;
    position: relative;
}

.customerName {
    text-overflow: ellipsis;
    overflow: hidden;
}

.reservationItem.full .itemContent .personInfo .phone.contactCell {
    padding-top: unset;
    float: unset;
    margin-left: 10px;
}

.reservationItem.full .itemContent .personInfo .phone svg {
    height: 1rem;
}

.itemContent .personInfo b::after {
    content: "\00a0";
}

.status-placement-pending .countUpDownField {
    color: var(--waitlist);
}

.status-waiting .countUpDownField {
    color: #fff;
}

.status-paid .countUpDownField {
    color: var(--paid);
}

.reservationItem[data-special-state='isLate'] .countUpDownField {
    color: var(--ci-grey-76);
    background-color: var(--note);
    border-radius: 2px;
}


.status-appeared[data-special-state='reservationOverdue'] .countUpDownField {
    color: var(--waitlist);
}

.status-cleaningUp .countUpDownField {
    color: var(--cleaning-up);
}

.status-cleaningUp[data-special-state='cleaningUpOverdue'] .countUpDownField {
    color: var(--note);
}

.itemContent .countUpDownField::before {
    content: " | ";
}

.reservationItem:not(.status-waiting) .itemContent .countUpDownField::after {
    content: " min | " !important;
}

.itemContent .pmsRoomNumber,
.itemContent .creditcardDetails,
#reservationDetailForm .pmsRoomNumber {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    z-index: 0;
}

.itemContent .pmsRoomNumber img,
.itemContent .creditcardDetails svg,
#reservationDetailForm .pmsRoomNumber img {
    border-radius: 50%;
    z-index: 2;
    border: 2px solid var(--list-background);
}

.itemContent .pmsRoomNumber span,
#reservationDetailForm .pmsRoomNumber span {
    color: #fff;
    background-color: var(--hotel-guest);
    margin-left: -8px;
    padding: 0 5px 0 12px;
    line-height: 1.2;
    border-radius: 5px;
}

.itemContent .pmsRoomNumber.weak span,
#reservationDetailForm .pmsRoomNumber.weak span {
    color: var(--ci-grey-90);
    background-color: var(--hotel-guest-weak);
}

.creditcard-pending {
    --background: #fff;
    --fill: var(--creditcard-red);
}

.creditcard-paid {
    --background: #fff;
    --fill: var(--creditcard-green);
}

.creditcard-captured {
    --background: #fff;
    --fill: var(--creditcard-blue);
}

.creditcard-error {
    --background: #fff;
    --fill: #000;
}

.itemContent .creditcardDetails span {
    color: #fff;
    background-color: var(--fill);
    margin-left: -8px;
    padding: 0 5px 0 12px;
    line-height: 1.2;
    border-radius: 5px;
}

.itemContent .peopleInfo {
    width: 4rem;
    text-align: center;
    font-size: 1.38rem;
    font-weight: bold;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 1025px) {
    .itemContent .peopleInfo {
        width: 5rem;
    }
    .itemContent .peopleInfo .person::after {
        content: "P";
    }
}

.itemContent .peopleInfo span {
    line-height: 1;
}

.itemContent .reservationInfo {
    width: 108px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.itemContent .info-res {
    display: inherit;
    flex-direction: column;
}

.itemContent .optionWrapper {
    width: 0;
    position: relative;
    border-right: 0 !important;
}

.itemContent .option-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    position: absolute;
}

.itemContent .option-item span {
    height: 100%;
    width: 0.5rem;
    background-color: var(--ci-grey-100);
}

.itemContent .guest-option {
    left: -1.15rem;
}

.itemContent .main-option {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.itemContent .reservation-option {
    right: -1.15rem;
}

.ui-draggable,
.ui-droppable,
.ui-slider-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.itemContent.ui-draggable.ui-draggable-dragging {
    z-index: 9999999;
}

.reservationItem .reservation-action-items {
    display: flex;
    width: 8rem;
    /*137*/
    flex-shrink: 0;
    justify-content: space-evenly;
    /* transition: width 0.5s;*/
}

.reservationItem .reservation-action-items.slideOut {
    width: 4rem;
    transition: flex 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.reservationItem .reservation-action-items.slideOut.slideIn {
    flex: 1;
    align-items: center;
}

.reservationItem:not(.full) .reservation-action-items.slideOut.slideIn>div:not(.mobileSwitcher) {
    display: flex;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    height: 80%;
    flex-grow: 1;
}

.reservation-action-items.slideOut.slideIn .notice-triangle {
    display: none;
}

.reservationItem .reservation-action-items>div,
.reservationItem .reservation-action-items>svg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.reservationItem .reservation-action-items.slideOut .mobileSwitcher {
    display: flex;
    stroke: #fff;
    width: 4rem;
    flex-shrink: 0;
    position: relative;
}

.reservationItem .reservation-action-items.slideOut .mobileSwitcher svg {
    height: 2.15rem;
    cursor: pointer;
}

.reservationItem .reservation-action-items .mobileSwitcher {
    display: none;
}

.reservationItem .reservation-action-items .mobileSwitcher:not(.hasInfo) .notice-triangle {
    display: none;
}

.reservationItem:not(.full) .reservation-action-items.slideOut>div:not(.mobileSwitcher) {
    display: none;
}

.reservationItem .reservation-action-items.slideOut.slideIn .reservation-action-item {
    height: 3rem;
}

.reservationItem .reservation-action-items.slideOut .mobileSwitcher svg {
    transform: rotate(180deg);
}

.reservationItem .reservation-action-items.slideOut.slideIn .mobileSwitcher svg {
    transform: rotate(0deg);
}

.reservationItem .reservation-action-item {
    height: 2.15rem;
}

#reservationList-box .reservationItem .reservation-action-item {
    cursor: pointer;
}

.reservation-action-item.stornoJournal {
    width: 2.5rem;
}

.checkoutWrapper, .cleanUpWrapper {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    width: 50px;
    height: 50px;
    background-color: var(--ci-blue-100);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 2.5s ease;
    -moz-transition: all 2.5s ease;
    -o-transition: all 2.5s ease;
    -ms-transition: all 2.5s ease;
    transition: all 2.5s ease;
}

.cleanUpWrapper {
    background-color: var(--cleaning-up);
}

.scaled .checkoutWrapper,
.scaled .cleanUpWrapper {
    width: 30px;
    height: 30px;
    right: 0px;
    top: 0px;
}

.scaled .checkoutWrapper:not(.hidden),
.scaled .cleanUpWrapper:not(.hidden),
.roomTable:hover .checkoutWrapper:not(.hidden),
.roomTable:hover .cleanUpWrapper:not(.hidden),
.checkoutWrapper:not(.hidden):hover,
.cleanUpWrapper:not(.hidden):hover {
    display: flex;
}

.checkoutWrapper .scaledItem,
.cleanUpWrapper .scaledItem {
    width: 32px;
    margin-left: -3px;
}

.scaled .checkoutWrapper .scaledItem,
.scaled .cleanUpWrapper .scaledItem {
    width: 20px;
}

.scaled .cleanUpWrapper .scaledItem {
    margin-left: unset;
}

.choose .checkoutWrapper,
.choose .cleanUpWrapper {
    display: none!important;
}


/*      End Reservation-List/Reservation-Item   */

#reservationList-footer {
    z-index: 10;
    height: 7.3rem;
    width: 100%;
    color: var(--ci-grey-80);
    -webkit-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
}

#reservationList-footer ul {
    list-style-type: none;
    height: inherit;
    display: grid;
    margin: 0;
    padding: 0;
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    animation-delay: 0s;
    animation-duration: 1.8s;
    animation-name: fade;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}

@keyframes fade {
    from {
        background-color: #121215;
    }
    to {
        background-color: #1089ff;
    }
}

#reservationList-footer li {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
    padding: 0.3rem 0;
    position: relative;
    background-color: var(--ci-grey-18);
}

#reservationList-footer img,
#reservationList-footer svg {
    max-width: 3rem;
    align-self: flex-end;
    width: 100%;
}

#reservationList-footer span {
    text-align: center;
    line-height: 1;
    align-self: center;
}


/*      resizeHandle      */

#resizeHandle {
    width: 0;
    position: relative;
}

#resizeHandle>div {
    position: absolute;
    width: calc(var(--margin-between-cols) * 0.9);
    height: 54px;
    background-color: var(--ci-grey-30);
    top: 50%;
    z-index: 9999;
    left: calc(var(--margin-between-cols) / 2);
    transform: translate(-50%, -50%);
    border-radius: 3px;
    cursor: e-resize;
}


/*          Room          */

.overviewContent {
    position: relative;
    flex-direction: column;
}

.resOverview {
    overflow: hidden;
    background-color: var(--ci-grey-100);
    background-image: url(../Images/bg_light.svg);
    background-size: cover;
    min-width: 500px;
}

#roomOverview {
    position: absolute;
}

.roomTable {
    cursor: pointer;
}

.roomTable .table-chair {
    fill: var(--ci-grey-100);
}

.roomTable .table-surface {
    fill: var(--reservation);
}

.roomTable .number {
    font-family: var(--robotoslab);
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    padding: 3px 20px;
    line-height: 1;
}

.roomTable .reservations {
    height: auto;
    width: auto;
    max-width: 100px;
    font-family: var(--robotoslab);
}

.roomTable .reservations ul {
    list-style: none;
    max-height: 65px;
    height: 65px;
    overflow: hidden;
    padding: 0 5px;
    margin: 0;
}

.roomTable .reservations ul.hasMore {
    max-height: 75px;
    height: 75px;
}

.hasMore li:nth-child(3):after {
    background: url('../Images/Tables/MoreReservations.svg') no-repeat;
    width: 50px;
    right: 0;
    position: absolute;
    height: 5px;
    display: block;
    content: "";
    bottom: -8px;
}

.roomTable .tableSVGWrapper svg {
    display: block;
}

.roomTable .wrapper-surface {
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    height: auto;
    flex-direction: column;
    align-items: center;
}

.roomOverviewCreator .wrapper-surface {
    justify-content: center;
}

.roomTable .tableSVGWrapper.circleTable+.wrapper-surface {
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
}

.roomTable .tableSVGWrapper.rectTable+.wrapper-surface {
    flex-direction: row;
}

.roomTable .tableSVGWrapper.rectTable+.wrapper-surface .reservations {
    margin-left: auto;
}

.roomTable .tableSVGWrapper.rectTable+.wrapper-surface ul {
    padding: 0 10px 0 0;
}

.blockedItem {
    background-image: url(../Images/Tables/blocked.png);
    width: 33px;
    height: 45px;
    background-size: contain;
    position: absolute;
    top: 30px;
    left: 50%;
    margin-left: -16px;
}

.roomTable .reservations li {
    display: none;
    position: relative;
    justify-content: center;
    width: 100%;
    cursor: pointer;
    margin-bottom: 2px;
    font-size: 11px;
}

.roomTable .reservations li.on-display {
    display: flex;
}

.roomTable .reservations li span {
    display: block;
}

.roomTable .reservations .symbols {
    flex: 1;
}

.roomTable .tableSVGWrapper:not(.rectTable)+.wrapper-surface .reservations:not(.showSymbols) .symbols {
    display: none;
}

.roomTable .reservations li svg {
    width: 1.38rem;
    position: relative;
    top: 1px;
    margin-right: 2px;
    float: right;
}

.roomTable.existingTable {
    position: absolute;
}

.roomTable .reservations li:nth-child(n+4) {
    display: none !important;
}

.roomTable .reservations .reservationTime,
.roomTable .reservations .actualBusyTime {
    padding: 2px;
    font-weight: 500;
    width: 32px;
    text-align: center;
}

.roomTable .reservations .reservationTime {
    background-color: #fff;
    color: #000;
}

.roomTable .reservations .reservationTime.isHouseGuest {
    background-color: var(--hotel-guest);
    color: #fff;
}

.roomTable .reservations .actualBusyTime {
    background-color: #517182;
    color: #fff;
}

.roomTable .reservations .actualBusyTime::before,
.roomTable .reservations .actualBusyTime::after {
    content: "\2022";
    padding: 0 1px;
}

.roomTable .reservations .reservationPeople {
    color: #fff;
    background-color: var(--ci-grey-90);
    min-width: 17px;
    padding: 2px;
    font-weight: 600;
    text-align: center;
}

.roomTable .reservations .reservationPeople.hasChildchair {
    background-color: var(--childchair);
}

#room-control-box {
    position: absolute;
    height: 6.46rem;
    width: 100%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    z-index: 10000;
    pointer-events: none;
}

#room-actions {
    height: 100%;
    flex: auto;
}

#room-actions ul.rooms {
    list-style: none;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    width: max-content;
    width: -moz-max-content;
    width: intrinsic;
    display: flex;
    align-items: flex-end;
    pointer-events: all;
}

#room-actions ul.rooms li {
    width: 12.38rem;
    min-height: 100%;
    float: left;
    background-color: var(--ci-grey-20);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: center;
    font-family: var(--roboto);
    font-weight: 500;
    font-size: 1.15rem;
    flex-direction: column;
    cursor: pointer;
}

#room-actions ul.rooms li.multiline {
    font-size: 13px;
}

#room-actions ul.rooms li:not(:last-child) {
    margin-right: 5px;
}

#room-actions .showRoom {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--ci-grey-100);
}

#room-actions .showRoom .roomLabel {
    flex: 1;
    display: flex;
    min-height: 40px;
    flex-direction: column;
    justify-content: center;
}


#room-actions .showRoom em {
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

#room-actions .showRoom:not(:first-child) {
    border-top: 1px solid var(--ci-grey-100);
}

#room-actions .showRoom:hover .roomLabel,
#room-actions .showRoom.active .roomLabel {
    background-color: var(--ci-grey-100);
    color: #fff;
}

#room-actions .showRoom .roomStates {
    display: flex;
    height: 14px;
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: var(--ci-grey-100);
    padding: 0.18rem;
    gap: 0.15rem;
}

#room-actions .showRoom .roomStates.red {
    background-color: var(--partplaced);
}

#room-actions .showRoom .roomStates > div {
    flex: 1;
    background-color: #fff;
    border-radius: 0.1rem;
}

#room-actions .showRoom .roomStates > div[data-state='open'] {
    background-color: var(--ci-blue-100);
}

#room-actions .showRoom .roomStates > div[data-state='default'] {
    background-color: #fff;
}

#room-actions .showRoom .roomStates > div[data-state='closed'],
#room-actions .showRoom .roomStates > div[data-state='system_closed'] {
    background-color: var(--partplaced);
}

/* POSSIBLE ALTERNATIVE
#room-actions .showRoom .roomStates > div[data-state='closed'] {
    background-color: var(--partplaced-soft);
}

#room-actions .showRoom .roomStates > div[data-state='system_closed'] {
    background-color: var(--partplaced);
}
*/

#room-actions .showRoom span {
    font-size: smaller;
    font-weight: 400;
}

#room-control-box .controls {
    padding-bottom: 1.23rem;
    display: flex;
    align-items: center;
    width: auto;
    pointer-events: all;
}

#room-control-box .controls a {
    display: block;
    width: 4.46rem;
    float: left;
    margin-right: 0.54rem;
    position: relative;
}

#room-control-box .widget-indicator {
    position: absolute;
    background-color: var(--partplaced);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 0.7rem;
    display: flex;
    text-align: center;
    align-items: center;
    line-height: 1;
    transform: translate(-40%, -40%);
    color: #fff;
}

#room-control-box .widget-indicator:not(.active) {
    display: none;
}

#room-control-box .controls a:last-child {
    margin-right: 1.38rem;
}

#room-control-box .controls img {
    width: 100%;
}

#room-control-box #switch-view {
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    background-color: var(--ci-grey-100);
    color: var(--ci-grey-50);
    --stroke: currentColor;
    border-radius: 3px;
}

#room-control-box #switch-view svg {
    width: 40px;
}


/*          Book           */

#bookOverview {
    padding: 24px 24px 0 24px;
    flex-direction: column;
	display: block;           /* HotFix damit das Reservierungsbuch nicht umbricht unter 902px Höhe */
}

.book-prev,
.book-next,
.week-prev,
.week-next {
    width: 18px;
    height: 35px;
}

#book-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 4.77rem;
    margin-bottom: 1.38rem;
}

#dayweek-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#book-header #KW {
    width: 212px;
    display: inherit;
    justify-content: space-between;
}

#KW {
    width: 212px;
    display: inherit;
    justify-content: space-between;
}

#dayweek-header #KW {
    width: 100%;
}

.book-prev
{
    background-image: url("../Images/Icons/HeadDatePrev.svg");
}

.book-next
{
    background-image: url("../Images/Icons/HeadDateNext.svg");
}

#dateselect button.week-prev {
    background-image: url(../Images/Icons/HeadDatePrevBig.svg);
    height: 5rem;
}

#dateselect button.week-next {
    background-image: url(../Images/Icons/HeadDateNextBig.svg);
    height: 5rem;
}

#book-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#book-body .fc-view-container {
    height: 100%;
}

.fc-rows .fc-widget-content div {
    height: 3.85rem !important;
    text-align: center;
}

.weekDays {
    width: 100%;
    height: 5.38rem;
}

.weekDays td,
.weekDays th {
    border-style: solid;
    border-color: black;
    border-width: 1px;
}

#book-footer {
    height: 70px;
}


/*            Modal-Box             */

.tableChooseHiderLeft {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: var(--ci-grey-100);
    position: fixed;
    z-index: 9999;
    height: calc(100% - var(--header-height) - var(--frame-border));
    top: var(--header-height);
    left: var(--frame-border);
    margin-left: 0 !important;
}

.tableChooseHiderTop {
    display: none;
    width: calc(100% - 2 * var(--frame-border));
    background-color: var(--ci-grey-100);
    position: fixed;
    z-index: 9999;
    height: var(--header-height);
    left: var(--frame-border);
    top: 0;
}

.tableChoosHiderLeft-inner {
    width: 90%;
    background-color: var(--ci-grey-90);
    box-shadow: 2px 2px 4px black;
    padding: 5% 5% 10%;
    text-align: center;
}

.global-reservation-info {
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.global-reservation-info .personInfo {
    text-transform: uppercase;
}

.global-reservation-info .checkedPlaces {
    display: block;
    margin: 12px 0;
    color: var(--ci-blue-100);
    font-weight: bolder;
    width: 100%;
}

.tableChoosHiderLeft-inner .choosen-table {
    position: relative;
    color: var(--ci-grey-20);
}

.tableChoosHiderLeft-inner .choosen-table input {
    height: 4.2rem;
}

.tableChoosHiderLeft-inner .choosen-table .fa-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 2rem;
}

.tableChoosHiderLeft-inner .choosen-table+small {
    display: block;
    color: var(--ci-grey-20);
    margin-bottom: 1rem;
}

.tableChoosHiderLeft-inner .choosen-table~label {
    display: block;
    color: var(--ci-grey-20);
    margin-bottom: 2rem;
}

.tableChoosHiderLeft-inner .choosen-table~label input {
    margin-right: .5rem;
}

.tableChoosHiderLeft-inner .button-group {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -15px;
}

.tableChoosHiderLeft-inner .button-group button {
    flex: 1;
    margin: 10px 15px;
}

#customerList,
#employeeList,
#intermediaryList {
    flex: 1;
    overflow-y: scroll;
    background-color: #dfdfdf;
    border-radius: 5px;
    color: #000;
}

#intermediaryList {
    --foreground: var(--ci-grey-80);
    --background: #fff;
}

.customer-result-item {
    padding: 0 14px;
    min-height: 5.38rem;
    height: auto;
}

.customer-result-item>div {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 1.54rem;
}

#ct_customer .customer-result-item
/*:not(.active)*/

>div {
    -webkit-box-shadow: inset 0 -1px 0 #abaaa9;
    -moz-box-shadow: inset 0 -1px 0 #abaaa9;
    box-shadow: inset 0 -1px 0 #abaaa9;
    padding-bottom: 5px;
    padding-top: 5px;
}

.customer-result-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.customer-result-item-content .icon {
    width: 20px;
    float: left;
    margin-right: 10px;
    padding-top: 3px;
}

.customer-result-item-content span:not(:first-child)::before,
.customer-result-item-content span:not(:last-child)::after {
    content: "\00a0";
}

.customer-result-item-content span {
    font-size: 11pt;
    font-weight: 300;
}

.customer-result-item-content .name,
#reservationDetailForm .customer-result-item-content .phoneCell,
#reservationDetailForm .customer-result-item-content .contactCell {
    font-size: 1.33rem;
    font-weight: 400;
}

.customer-result-item-content img.optionInfoIcon {
    margin-right: 0px;
}

.customer-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.customer-action-item {
    width: 3.5rem;
    height: 3.5rem;
    position: relative;
}

.customer-action-item .svg {
    width: 100%;
}

.customer-action-item.pms-guest::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1rem 1rem 0 0;
    border-color: var(--pms-orange) transparent transparent transparent;
}

#customerList .active {
    background-color: #f2f2f2;
    --body-fill: #fff;
    --frame-fill: var(--ci-blue-100);
    --frame-stroke: var(--ci-blue-100);
}


/****************** settings.css*******************/


/*          Reservierung/Walk-In Modal           */


/*TODO:   .custom-modal- bei Zeit entfernen      */

#modalForm {
    background-color: rgba(1, 1, 1, 0.5);
    color: rgb(171, 170, 169);
    align-items: center;
    justify-content: center;
    max-width: 100vw;
    max-height: 100vh;
    padding: 0 !important;
}

#modalForm::before {
    content: none;
}

#modalForm.show {
    display: flex !important;
}

#modalForm .modal-dialog {
    transform: unset;
    margin: unset;
}

.modal-header {
    background-color: var(--ci-grey-100);
    padding: 0;
    justify-content: center;
}

.modal-body {
    background-color: var(--ci-grey-90);
    padding: 0;
}

.modal-footer {
    background-color: var(--ci-grey-90);
    justify-content: center;
    -webkit-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    box-shadow: 0 -4px 3px rgba(50, 50, 50, 0.5);
    padding: 0;
    border: none;
    height: 8.8rem;
    z-index: 9999;
}


/*
.modal-dialog.reservation .modal-content {
border-radius: 4px;
overflow: hidden;
}
*/

.modal-footer button {
    font-size: 1.5rem;
    font-family: var(--roboto);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0.25rem !important;
    max-width: 300px;
}

.btn-action,
.btn-primary {
	background: var(--ci-blue-100);
   /** background-color: var(--ci-blue-100);  **/
}

.btn-primary {
    font-family: var(--roboto);
}

.btn-action:hover {
    background-color: var(--ci-blue-100);
    border: 1px solid var(--ci-blue-100);
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: var(--ci-blue-100);
}

.reservation-tabs,
.modal-window-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    table-layout: fixed;
    flex: 1;
}

.reservation-tabs li,
.modal-window-tabs li {
    flex: 1;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-weight: 300;
    font-size: 1.64rem;
    background-color: var(--ci-grey-10);
    color: #81807e;
    height: 6.9rem;
    line-height: 6.9rem;
    background: -moz-linear-gradient(top, var(--ci-grey-10) 90%, #000000 99%, #2989d8 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, var(--ci-grey-10) 90%, #000000 99%, #2989d8 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, var(--ci-grey-10) 90%, #000000 99%, #2989d8 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.reservation-tabs .disabled {
    opacity: 1;
}

.reservation-tabs li:not(:last-child) {
    border-right: 1px solid #abaaa9;
}

.modal-header div.back,
.modal-header div.confirm {
    width: 6.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservation-tabs li.active,
.modal-window-tabs li.active
/*, .reservation-tabs li:hover*/

{
    background: #000;
    /* Old browsers */
    background: -moz-linear-gradient(top, #00b2e8 90%, #000000 99%, #2989d8 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #00b2e8 90%, #000000 99%, #2989d8 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #00b2e8 90%, #000000 99%, #2989d8 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    color: #fff;
}

.modal-header #modalFlag {
    top: 14px;
    left: -10px;
    z-index: -1;
    height: 137px;
    width: 173px;
    padding-left: 35px;
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    background-image: url("../Images/ModalFlag.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.modal-header #modalFlag>div {
    line-height: 1;
    margin: 4px 0;
}

.modal-header #modalFlag .onFlag {
    display: none;
}

.add-reservation-content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*min-height: 500px;
height: 100%;*/
    width: 100%;
}

.quick.reservation .add-reservation-content-item {
    max-width: calc(100vw / 3);
}

.add-reservation-content-header {
    text-align: center;
    font-size: 1.44rem;
    width: 100%;
    padding: 0.62rem;
    height: 3.85rem;
    font-weight: 300;
}

.add-reservation-content-content {
    width: 100%;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
}


/*      ct_date     */

#guest-type {
    width: 550px;
    display: flex;
    align-items: center;
    background-color: #f2f2f2;
}

#guest-type span {
    flex: 1;
    line-height: 2.77rem;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    color: #81807e;
}

#guest-type span.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}


/*  Datepicker  */

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    color: inherit;
    width: auto;
    background-color: transparent;
    border: none;
    outline: none;
}

#multiCal {
    --firstColWidth: 3rem;
    margin: 0.77rem auto 0;
    /*width: 0;*/
    display: unset;
}

#multiCal .ui-datepicker:not(.ui-datepicker-multi) {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

#multiCal .ui-datepicker,
.ui-datepicker-header {
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    border: none;
}

#multiCal .ui-datepicker {
    width: auto !important;
}

.ui-datepicker {
    width: auto;
}

#multiCal .ui-datepicker-multi .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: static !important;
    background: none !important;
    background-color: transparent !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    height: 45px !important;
    border: 0 !important;
}

.ui-datepicker-prev {
    order: 0;
    background-image: url(../Images/Icons/HeadDatePrevBig.svg) !important;
    background-position-x: center !important;
}

.ui-datepicker-next {
    order: 2;
    background-image: url(../Images/Icons/HeadDateNextBig.svg) !important;
    background-position-x: center !important;
}

.ui-datepicker-title {
    color: #abaaa9;
    font-weight: 300;
    font-size: 1.84rem;
    order: 1;
    display: flex;
}

table.ui-datepicker-calendar {
    width: auto;
    border-spacing: 6px;
    border-collapse: separate;
    transform: translateX(calc(var(--firstColWidth) / (-2)));
}

.ui-datepicker-calendar th {
    color: var(--ci-blue-100);
    font-size: 1rem;
}

.ui-datepicker-calendar td {
    font-size: 1.23rem;
    color: var(--ci-blue-100);
    width: 5.15rem;
    min-width: 5.15rem;
    height: 5.15rem;
    text-align: center;
    border-radius: 3px;
}

.ui-datepicker-calendar td.system_blocked a,
.ui-datepicker-calendar td.system_blocked .ui-datepicker-unselectable span,
.ui-datepicker-calendar td.system_blocked.ui-state-highlight,
.ui-datepicker-calendar td.widget_blocked a,
.ui-datepicker-calendar td.widget_blocked .ui-datepicker-unselectable span,
.ui-datepicker-calendar td.widget_blocked.ui-state-highlight {
    background-color: var(--partplaced);
    color: #fff;
}

.ui-datepicker-calendar td.system_closed a,
.ui-datepicker-calendar td.system_closed .ui-datepicker-unselectable span,
.ui-datepicker-calendar td.system_closed.ui-state-highlight {
    background-color: #fff;
    color: var(--partplaced);
}

/*
.ui-datepicker-calendar td.widget_blocked a,
.ui-datepicker-calendar td.widget_blocked .ui-datepicker-unselectable span,
.ui-datepicker-calendar td.widget_blocked.ui-state-highlight {
    background-color: var(--partplaced-soft);
    color: #fff;
}*/

.ui-datepicker-calendar td .ui-state-default {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    background: transparent;
    border-radius: 3px;
    border: 1px solid var(--ci-blue-100);
    color: inherit;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.ui-datepicker-calendar .ui-state-highlight a {
    background-color: unset !important;
    color: unset !important;
}

.ui-datepicker-calendar td.system_closed:not(.ui-datepicker-current-day) .ui-state-default,
.ui-datepicker-calendar td.system_blocked .ui-state-default,
.ui-datepicker-calendar td.widget_blocked .ui-state-default {
    border: 1px solid var(--partplaced);
}

/*
.ui-datepicker-calendar td.widget_blocked .ui-state-default {
    border: 1px solid var(--partplaced-soft);
}
*/

.ui-datepicker-calendar td a {
    color: inherit;
    text-decoration: none;
}

.ui-datepicker-calendar td.ui-state-highlight,
.ui-datepicker:not(.ui-datepicker-multi) td.ui-datepicker-current-day {
    background-color: var(--ci-blue-100);
    border: none;
    color: #fff;
}

.ui-datepicker:not(.ui-datepicker-multi) .ui-datepicker-calendar td.system_blocked.ui-datepicker-current-day {
    background-color: var(--partplaced);
}

.ui-datepicker:not(.ui-datepicker-multi) .ui-datepicker-calendar td.system_closed.ui-datepicker-current-day {
    background-color: #fff;
    color: var(--partplaced);
    border: 1px solid currentColor;
}

.ui-datepicker-calendar td.system_closed.ui-datepicker-current-day .ui-state-default {
    border: none;
}

.ui-datepicker-unselectable span {
    border: inherit !important;
    background-color: #4c4a49 !important;
    color: #81807e !important;
}

.ui-datepicker-calendar .ui-state-disabled {
    opacity: 1;
}

td.ui-datepicker-week-col {
    width: var(--firstColWidth) !important;
    font-size: 11px;
    color: inherit;
    border: inherit;
}

td.ui-datepicker-week-col::before {
    content: "KW ";
}

.ui-datepicker-prev .ui-icon,
.ui-datepicker-next .ui-icon {
    display: none !important;
}


/*      ct_person       */

.stick-to-right {
    position: relative;
    width: 0;
    height: 0;
}

.stick-to-right>*:only-child {
    position: absolute;
}

#ct_person.walkin .add-reservation-content-content {
    display: flex;
}

#ct_person .extraSettingColRes {
    display: flex;
    transform: translateY(-50%);
}

#ct_person #table-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    --cell-size: 6.77rem;
    --cell-spacing: 0.77rem;
    --more-persons-margin: 3.38rem;
}

@media only screen and (max-width: 1024px) {
    #ct_person #table-wrapper {
        flex-direction: column;
        justify-content: flex-end;
    }
}

#ct_person table {
    border-spacing: var(--cell-spacing);
    border-collapse: separate;
    font-family: var(--robotoslab);
    font-size: 1.23rem;
    transform: translateX(calc(var(--cell-spacing) + (var(--cell-size) + var(--more-persons-margin)) / 2));
}

#ct_person td {
    height: var(--cell-size);
    width: var(--cell-size);
    border-radius: 3px;
    border: 1px solid var(--ci-blue-100);
    color: var(--ci-blue-100);
    text-align: center;
    cursor: pointer;
}

#ct_person td.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#ct_person #more-persons input {
    display: block;
    width: 100%;
    height: 100%;
    padding: initial;
    text-align: center;
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
}


/*      ct_time        */

#ct_time #clock-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ct_time .clock-timepicker-hour-canvas {
    width: auto;
    height: auto;
    margin: 35px;
    order: 1;
}

#ct_time .clock-timepicker-hour-canvas svg {
    width: 27rem;
    height: auto;
}

.hours.active,
.minutes.active {
    fill: var(--ci-blue-100) !important;
}

.hours.free,
.minutes.free {
    fill: var(--ci-blue-50);
}

#hours_text .full,
#minutes_text .full {
    fill: #fff;
}

.hours.full,
.minutes.full {
    fill: var(--person-per-interval);
}

.hours.free.full path,
.minutes.free.full path {
    stroke: #fff;
}

#intervallinfo.full {
    background-color: var(--person-per-interval);
    color: #fff;
}

#hours_text tspan.active,
#minutes_text tspan.active {
    fill: #fff;
}

/*.hours.blocked,
.minutes.blocked,
.hours.active.blocked {
    fill:  var(--partplaced)!important;
    cursor: not-allowed;
    pointer-events: none;
    color: rgb(171, 170, 169);
}

.hours.active.blocked {
    fill:  var(--partplaced)!important;
    cursor: not-allowed;
    pointer-events: none;
}*/

/*#ct_time .extraSettingColRes {
display:flex;
margin-left:40px;
transform: translateY(-50%);
}*/

#ct_time .extraSettingColRes,
#ct_person .extraSettingColRes {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

#ct_time .select2-container,
#ct_person .select2-container {
    min-width: 85px;
}

#reservation-detail-body .select2-container {
    min-width: 100%;
}

#ct_time .select2-selection,
#ct_person .select2-selection,
#reservation-detail-body .select2-selection {
    border: 1px solid #abaaa9 !important;
    background-color: transparent;
    font-size: 1.23rem;
}

#ct_time .select2-selection__rendered,
#ct_person .select2-selection__rendered {
    color: #abaaa9 !important;
}

#reservation-detail-body .select2-selection__rendered {
    color: var(--ci-blue-100) !important;
    font-size: 1rem;
}

#ct_time .select2-selection::before,
#ct_person .select2-selection::before {
    right: 4px;
}


/*      ct_customer     */

#ct_customer.add-reservation-content-item {
    height: 38.5rem;
    --slider-height: 5rem;
}

#ct_customer .subcontent {
    width: 100%;
    height: calc(100% - var(--slider-height));
    padding: 0 40px;
}

#ct_customer #customer-slider {
    height: var(--slider-height);
    background-color: var(--ci-grey-100);
    border-top: 1px solid #969594;
    border-bottom: 1px solid #969594;
    display: flex;
    align-items: center;
    padding: 0.77rem 3rem;
    width: 100%;
    --body-fill: var(--ci-grey-100);
    --frame-fill: var(--ci-blue-100);
    --frame-stroke: var(--ci-blue-100);
}

#ct_customer #searchFields,
#ct_customer #resultDiv {
    height: 100%;
    width: 50%;
    float: left;
}

#ct_customer #searchFields {
    padding-right: 3rem;
}

#ct_customer #resultDiv {
    background-color: var(--ci-grey-100);
    border-radius: 3px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

#ct_customer #resultDiv .customerList {
    display: none;
    overflow-y: auto;
    flex: 1;
    margin-top: 8px;
}

#ct_customer table {
    width: 100%;
}

#ct_customer .customer-result-item {
    padding: 0 14px;
    min-height: 5.38rem;
    height: auto;
}

#ct_customer .customer-result-item>div {
    padding-left: 5px;
    padding-right: 7px;
}

#ct_customer .customer-result-item-content {
    font-family: var(--robotoslab);
    font-size: 1rem;
    margin: 1rem;
}

#ct_customer .customer-result-item.active {
    color: #fff;
    --body-fill: #fff;
    --frame-fill: var(--ci-blue-100);
    --frame-stroke: #fff;
    background-color: var(--ci-blue-100);
}

#ct_customer .customer-result-item.active img,
#ct_customer .customer-result-item.active .icon {
    filter: brightness(100) saturate(100) contrast(100);
}

#ct_customer #customer-full-detail {
    display: none;
    overflow-y: scroll;
    padding-top: 10px;
}

#ct_customer tr {
    height: 20px;
}

#ct_customer td>div {
    display: flex;
}

#ct_customer td>div#card-element,
#ct_customer td>div#cc-card {
    display: block;
}

#ct_customer .form-control,
#ct_infos .form-control,
.form-control.cc-element,
.print-config-row .form-control {
    background-color: transparent;
    padding: 8px;
    height: 2.3rem !important;
    width: 100%;
    border: 1px solid #abaaa9;
    color: #abaaa9;
    border-radius: 3px;
}

.form-control.cc-element {
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    border: 1px solid #757473;
}

#ct_customer td .form-control:not(:first-child) {
    margin-left: 10px;
}


/*      ct_infos        */

#ct_infos.add-reservation-content-item {
    height: 42.3rem;
}

#ct_infos .add-reservation-content-content {
    padding: 3.85rem 1.54rem;
}

#ct_infos .add-reservation-content-content>div {
    float: left;
    height: auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

#ct_infos .info-part-header {
    height: 3.46rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.54rem;
}

#ct_infos .info-part-header img {
    width: 3.46rem;
    align-self: flex-start;
    margin-right: 10px;
}

#ct_infos table {
    width: 100%;
    border-spacing: 3px;
    border-collapse: separate;
    table-layout: fixed;
    margin: 3px 0;
}

#ct_infos td {
    background-color: #5f5d5c;
    border-radius: 3px;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

#ct_infos #specific-infos {
    overflow-y: auto;
    flex: 1;
}

#ct_infos #specific-infos>div {
    margin: 0.77rem;
    border: 1px solid #abaaa9;
    border-radius: 3px;
    line-height: 3rem;
    text-align: center;
}

#ct_infos #specific-info a {
    color: #fff;
}

#ct_infos #specific-infos>div:hover {
    /* background-color: #6ec966;
color: #fff;*/
}

#ct_infos #specific-infos>div.row:hover {
    /*  background-color: transparent;
color: #fff;*/
}

#ct_infos .predefinedText {
    line-height: 1.2rem;
}

#ct_infos .add-reservation-content-content .infoExtra {
    margin: 5px 0;
    display: flex;
    background-color: #fff;
    flex-wrap: wrap;
}

#ct_infos .add-reservation-content-content .option-value,
#reservation-detail-body .option-value {
    cursor: pointer;
    font-size: 0.92rem;
    width: 25%;
    margin-bottom: 0;
    padding: 5px;
    min-height: 3rem;
    background-color: #aaa;
    border-top: 10px solid var(--fill);
    line-height: 1.54rem;
    text-align: center;
    position: relative;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

.option-value.active {
    color: #fff;
}

.customer-option-value.active {
    color: var(--ci-blue-100);
}

.option-value svg {
    display: none;
    position: absolute;
    top: -10px;
    width: 1.54rem;
    right: 10px;
    transform: translateY(-25%);
}

.option-value.active svg {
    display: block;
}


/*      ct_table        */

#ct_table.add-reservation-content-item {
    height: 42.3rem;
}

#ct_table .add-reservation-content-content {
    padding: 1rem;
}

#ct_table .freeTables {
    padding: 0 1rem 0.77rem 0;
}

#ct_table .freeTables,
#ct_table .reservation-info-overview {
    float: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: auto;
}

.quick #ct_table .freeTables {
    width: 100%;
}

#ct_table .rooms_overview_wrapper {
    display: flex;
    width: 100%;
}

#ct_table .rooms_overview {
    display: flex;
    height: auto;
    flex: 1 0 0;
    align-content: baseline;
    justify-content: start;
    overflow-x: auto;
    overflow-y: hidden;
    width: 0;
}

#ct_table .filterRoom {
    position: relative;
    flex: 1;
    height: 3rem;
    min-width: 100px;
    background-color: #5f5d5c;
    color: #9a9998;
    margin-right: 3px;
    border: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

#ct_table .filterRoom.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#ct_table #overview-settings {
    width: 5.77rem;
    min-width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ct_table .freeTables .tables {
    margin: 0 -0.75%;
    overflow-y: auto;
    flex: 1;
    color: var(--ci-grey-100);
}

#ct_table .square.freeTable {
    float: left;
    position: relative;
    width: 11%;
    padding-bottom: 11%;
    margin: 0.75%;
    background-color: var(--ci-blue-50);
    overflow: unset;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 300;
}

#ct_table .square.freeTable.hide.peek {
    display: block;
    background-color: var(--no-table);
}

#ct_table .square.freeTable svg,
#ct_table .filterRoom svg {
    display: none;
    position: absolute;
    z-index: 1;
    width: 22px;
    right: 0;
    top: 0;
    transform: translate(25%, -25%);
}

.quick #ct_table .square.freeTable svg {
    width: 18px;
}

#ct_table .square.freeTable.choosen {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#ct_table .square.freeTable.hide.peek {
    display: block !important;
}

#ct_table .square.freeTable.choosen svg,
#ct_table .filterRoom.choosen svg {
    display: block;
}

#ct_table .square.freeTable.choosen.autoplace {
    background-color: var(--table-suggestion);
    --fill: var(--table-suggestion);
    color: inherit;
    --stroke: currentColor;
}

#ct_table .selectedTableInfo {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}

#ct_table .square.freeTable.choosenGhost {
    background-color: var(--note);
}

.freeTable .tableName {
    font-size: 1.5rem;
}

.freeTable .tableName::before {
    content: "T ";
}

.freeTable .personCount::after {
    content: " P";
}

.quick .freeTable .tableName {
    font-size: unset;
}

.square-content {
    position: absolute;
    height: 100%;
    /* = 100% - 2*5% padding */
    width: 100%;
    /* = 100% - 2*5% padding */
    padding: 5%;
}

.square-table {
    display: table;
    width: 100%;
    height: 100%;
}

.square-table-cell {
    display: table-cell;
    vertical-align: middle;
}

#ct_table #info-box {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    background-color: var(--ci-blue-100);
    color: #fff;
}

#ct_table #info-box .busyInfo::after {
    content: "h";
}

#ct_table #info-box #head {
    text-align: center;
    line-height: 3rem;
    font-size: 1.23rem;
    background-color: var(--ci-grey-10);
    color: #81807e;
    border-bottom: none !important;
}

#ct_table #info-box>div:not(#head) {
    line-height: 4.23rem;
    margin: 0 1.5rem;
    padding: 0 0.77rem;
    font-size: 1.38rem;
    font-weight: 300;
}

#ct_table #info-box>div:not(:last-child) {
    border-bottom: 1px solid var(--ci-grey-10);
}

#ct_table #reservation-confirmation {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ct_table #additional-buttons>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ct_table #additional-buttons {
    user-select: none;
}

#ct_table #additional-buttons>div:not(:last-child) {
    margin-bottom: 8px;
}

#ct_table #additional-buttons .button {
    flex: 1;
    line-height: 40px;
    text-align: center;
    border: 1px solid #abaaa9;
    color: #fff;
    cursor: pointer;
}

#ct_table #additional-buttons .button.active {
    border: none;
    background-color: var(--ci-blue-100);
}

#ct_table #additional-buttons .button:not(:first-child) {
    margin-left: 8px;
}


/*  Quick-Reservierung  */

.quick.modal-dialog {
    margin: auto;
    max-width: 1500px !important;
    min-width: unset;
    width: 100% !important;
    font-size: 1rem !important;
    max-height: 100%;
}

.quick .modal-header>*:not(.quick-alt) {
    display: none !important;
}

.quick .modal-body {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto auto;
    padding: 0 15px;
    grid-column-gap: 6px;
    grid-row-gap: 0;
}

@media only screen and (min-width: 1400px) {
    .quick .modal-body {
        grid-template-columns: repeat(3, minmax(460px,1fr));
        grid-column-gap: 10px;
    }
}

@media only screen and (min-width: 1025px) {
    .quick .modal-header>*.quick-alt {
        display: block !important;
    }
}

.quick .modal-footer {
    height: 4.6rem;
    grid-row-gap: 0;
}

.quick .add-reservation-content-item {
    height: initial !important;
}

.quick .add-reservation-content-header {
    font-size: 1.1rem;
    height: 3rem;
    text-align: initial;
    padding: 11px 0 0 8px;
    color: var(--ci-blue-100);
}

.quick .add-reservation-content-content {
    border: 1px solid #aaaaa9;
    border-radius: 5px;
    padding: 10px !important;
}


/* ct_date */

.quick #guest-type {
    display: none;
}

.quick #multiCal {
    margin: 0 auto;
}

.quick table.ui-datepicker-calendar {
    border-spacing: 2px;
    margin: 0;
}

.quick .ui-datepicker-calendar td {
    width: 3.46rem;
    min-width: 3.46rem;
    height: 3.46rem;
    font-size: 1rem;
}

.quick .ui-datepicker-calendar td .ui-state-default {
    width: 2.46rem;
    height: 2.46rem;
    font-weight: normal;
}


/* ct_person */

.quick #ct_person #table-wrapper {
    height: 100%;
    width: 100%;
    --cell-size: 4.23rem;
    --cell-spacing: 0.54rem;
    --more-persons-margin: 1.08rem;
}

.quick #ct_person table {
    transform: none;
}


/* ct_time */

.quick #ct_time .clock-timepicker-hour-canvas {
    margin: 0 15px;
}

.quick #ct_time .clock-timepicker-hour-canvas svg {
    width: 21.5rem;
    height: auto;
}

.quick #ct_time .extraSettingColRes {
    margin: 0;
    width: 5.77rem;
}

.quick #ct_time .select2-container {
    min-width: 85px;
}

.quick #ct_time #busy-time-col {
    order: 0 !important;
}


/*  ct_customer */

.quick #ct_customer .subcontent {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quick #ct_customer .subcontent td {
    padding: 3px;
    padding-bottom: 10px;
}

.quick #ct_customer #searchFields,
.quick #ct_customer #resultDiv {
    height: auto;
    width: 100%;
    padding: inherit;
    float: initial;
}

.quick #ct_customer #searchFields {
    position: relative;
}

.quick #ct_customer #resultDiv {
    margin-top: 10px;
    height: 13.8rem;
    overflow: auto;
}

.quick #ct_customer #customer-slider,
.quick #ct_customer #customer-full-detail {
    display: none;
}


/*  ct_infos    */

.quick #ct_infos .info-part-header {
    display: none;
}

.quick #ct_infos .add-reservation-content-content>div:not(:nth-child(2)) {
    display: none;
}

.quick #ct_infos .add-reservation-content-content>div:nth-child(2) {
    width: 100% !important;
    padding: 0;
}

.quick .optionInfoIcon {
    width: 25px;
}


/* ct_table */

.quick #ct_table .freeTables,
#ct_table .reservation-info-overview {
    float: unset;
}

.quick #ct_table .freeTables {
    padding: 0 0 1rem 0;
}

.quick #ct_table .tables {
    margin: 0;
}

.quick-options {
    display: flex;
    margin-top: 5px;
    align-items: center;
    flex-flow: row wrap
}

.quick-options input[type='checkbox']:checked + label {
    background-color: var(--checked, var(--ci-blue-100));
    color: var(--checked-font, #fff);
}

.btnPlan,
.quick-button {
    border: 0;
    background-color: var(--buttons);
    color: var(--ci-grey-40);
    border-radius: 2px;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    padding: .6rem;
}

.quick-button {
    flex: auto;
    height: -moz-min-content;
    height: -webkit-min-content;
    height: min-content;
    margin-top: 0.5rem;
    margin-right: 3px;
    margin-bottom: 0;
}

.quick-button span {
    line-height: 1.2rem;
    vertical-align: middle;
}

.quick-button:not(:first-of-type) {
    margin-left: 0px;
}

.quick-button.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}


/* unsortiert */

.customer-option-value {
    width: 20%;
    float: left;
    line-height: 30px;
    /*min-height: 40px;*/
    background: transparent;
    color: inherit;
    font-size: 12px;
    text-align: center;
}

.customer-option-value-inner {
    text-align: center;
    width: 100%;
}

.customer-option-value-inner svg {
    width: 40px;
    height: 39px;
}


/*
.customer-option-value-inner path,.customer-option-value-inner polygon {
stroke: #0eace0;
fill: none;
stroke-width: 1;
}
.customer-option-value.active .customer-option-value-inner path,.customer-option-value.active .customer-option-value-inner polygon {
stroke: #ffffff;
fill: none;
stroke-width: 1;
}*/

.customer-option-value-inner img {
    width: 3.23rem;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

.multiwrapper .helper {
    position: absolute;
    height: 100%;
    z-index: -1;
}

.multiwrapper .helper.show,
.helper.show {
    position: absolute;
    z-index: 999;
    height: 100%;
}

.modal-open .helper.show {
    z-index: -1;
}

.helper.bookhelper.show {
    z-index: 999;
}

.helper.bookhelper.show #roomOverview {
    margin-left: 25%;
    background-color: #fff;
    width: 75% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

.multiwrapper .helper .helper {
    z-index: -1;
    display: none;
}

.multiwrapper #roomOverview {
    z-index: 999;
}

.multiwrapper .resOverview {
    margin-left: 25%;
    top: 0%;
}

.print-button,
.print-input {
    background-color: transparent;
    border-color: #aaa;
    padding: 10px 10px;
    width: 100%;
    border-radius: 2px;
    color: #aaa;
    box-shadow: none;
    border: 1px solid;
    padding: 6px;
    line-height: 2;
}

.print-button.active {
    background-color: #aaa;
    border-color: #aaa;
    padding: 6px;
    width: 100%;
    border-radius: 2px;
    color: #000;
}


/* Ende unsortiert */


/*      Reservierungsdetail        */

#reservationDetailForm {
    height: 100%;
}

#reservation-detail-header {
    --body-fill: var(--ci-grey-90);
    --frame-fill: var(--ci-blue-100);
    --frame-stroke: var(--ci-blue-100);
    border-bottom: 1px solid var(--ci-grey-50);
    display: flex;
    color: var(--ci-blue-100);
}

#reservation-detail-header>div:not(:last-child) {
    border-right: 1px solid var(--ci-grey-50);
}

#reservation-detail-header .customer-result-item-content {
    margin-left: 20px;
}

.info-box-rating-detail {
    width: 145px;
    padding: 10px 0;
    text-align: center;
}

.info-box-header-detail {
    font-size: 12px;
    color: var(--ci-grey-40);
}

.info-box-content-detail {
    line-height: 1;
    font-size: 2.92rem;
    color: var(--ci-blue-100);
    font-family: var(--robotoslab);
    font-weight: 900;
}

#reservation-detail-body {
    padding: 1.92rem 1.92rem 2.31rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-template-areas:
        "details"
        "infobar"
        "guest_notes"
        "pms_notes"
        "guest_icons"
        "reservation_notes"
        "reservation_icons"
        "packages";
    grid-column-gap: 2.7rem;
    grid-row-gap: 1.25rem;
}

@media (min-width: 769px) {
    #reservation-detail-body {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        grid-template-areas:
            "details guest_notes reservation_notes"
            "details pms_notes reservation_notes"
            "infobar guest_icons reservation_icons"
            "packages packages packages";
    }
}

#reservation-detail-body td:last-child {
    padding-right: 0;
}

#reservation-detail-body .frame {
    border-radius: 5px;
    border: 1px solid var(--ci-grey-40);
    display: flex;
    overflow: hidden;
}

#reservation-detail-body .frame.pms {
    border-color: var(--pms-orange);
}

#reservation-detail-body .frame.pms .note-header {
    color: var(--pms-orange);
    --fill: var(--pms-orange);
}

#pms-notes-text {
    padding: 8px;
}

#reservation-detail-body .frame > div:has(textarea):not(:last-child) {
    border-bottom: 1px solid var(--ci-grey-40);
}

#reservation-detail-body .packageFrame {
    grid-area: packages;
    max-height: 180px;
}

#reservation-detail-body .packageContainer {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    overflow-y: auto;
}

#reservation-detail-body .frame:hover {
    border-color: var(--ci-blue-100);
}

#reservation-detail-body .frame textarea {
    background-color: transparent;
    border: none;
    color: inherit;
    resize: none;
    padding: 8px;
}

#reservation-detail-body .note-header {
    margin: 0.5rem;
    height: 2.46rem;
    min-height: 0;
    display: flex;
    color: inherit;
}

#reservation-detail-body .note-header .icon {
    height: 120%;
    margin-right: 0.5rem;
}

#reservation-detail-body .note-header .content {
    display: flex;
    height: 100%;
    line-height: 1;
    align-self: center;
    align-items: center;
    flex: 1;
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-inline: 2px;
}

#reservation-detail-body .reservation-info-corner {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#reservation-detail-body .reservation-info-corner > div {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}

#reservation-detail-body .reservation-info-corner .bullet {
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--ci-blue-100);
    color: #fff;
    aspect-ratio: 1 / 1;
    height: 1.3rem;
    line-height: 0;
    font-size: 0.9rem;
    user-select: none;
}

#reservation-detail-body .reservation-info-corner .pmsRoomNumber {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--hotel-guest);
    color: #fff;
    user-select: none;
}

#reservation-detail-body .reservation-info-corner .pmsRoomNumber.weak {
    background-color: var(--hotel-guest-weak);
    color: var(--ci-grey-90);
}

#reservation-detail-body .reservation-info-corner .pmsRoomNumber svg {
    height: 1.5rem;
    fill: currentColor;
}

#reservation-detail-body .reservation-info-corner .pmsRoomNumber span {
    line-height: 1;
}

#reservation-detail-body .form-control,
.reservation-detail-tables {
    background-color: transparent;
    border: 1px solid #abaaa9;
    border-radius: 3px;
    font-family: var(--roboto);
}

#reservation-detail-body .form-control {
    padding: 0 8px;
    height: 30px !important;
    width: 100%;
    color: var(--ci-blue-100);
    text-align: center;
}

#reservation-detail-body .form-control.tableChoose {
    height: 50px !important;
    border: none;
}

#reservation-detail-body ::placeholder {
    color: var(--ci-blue-100) !important;
}

#reservation-detail-body input:focus::placeholder {
    color: #abaaa9 !important;
}

.reservation-system-info {
    display: inline-block;
    margin-top: -10px;
    border-radius: 5px;
    line-height: 33px;
    width: 100%;
    text-align: center;
    background-color: var(--ci-grey-80);
    cursor: pointer;
}

.reservation-detail-scroll {
    background-color: transparent;
    margin-right: 2px;
    width: 9px;
}

#reservation-detail-footer {
    display: flex;
    justify-content: space-evenly;
    background-color: var(--ci-grey-100);
    align-items: center;
    height: 6.92rem;
}

.info-button {
    text-align: center;
    cursor: pointer;
}

.info-button[data-type='creditcard'].pending {
    --fill: var(--creditcard-red);
}

.info-button[data-type='creditcard'].captured {
    --fill: var(--creditcard-blue);
    cursor: default;
}

.info-button[data-type='creditcard'].paid {
    --fill: var(--creditcard-green);
    cursor: default;
}

.info-button svg {
    width: 2.77rem;
    height: 2.77rem;
    display: inline;
}

.info-button.not-avaiable {
    cursor: not-allowed;
}

.info-button.active {
    --active-color: var(--ci-blue-100);
}

.info-button[data-type='placement-pending'].active {
    --active-color: var(--waitlist) !important;
}

.info-button[data-type='placed-part'].active {
    --active-color: var(--partplaced) !important;
}

.choose-button {
    background-color: var(--ci-grey-10);
    color: #000;
    width: 100%;
    padding: .6rem 1rem;
    margin: 0.77rem 0;
    font-family: var(--roboto);
    font-size: 1.38rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    border: 0;
}

.swal-modal.swal-document-attachment {
    width: max-content;
    max-width: 80%;
    background-color: var(--ci-grey-90);
    border-radius: unset;
    color: var(--ci-grey-30);
    text-align: initial;
}

.swal-modal.swal-document-attachment .swal-content {
    margin: 0;
    padding: 0;
}

.swal-modal.swal-document-attachment h4, 
.swal-modal.swal-document-attachment h5 {
    color: var(--ci-blue-100);
    font-family: var(--roboto);
    text-transform: uppercase;
    font-weight: 400;
}

.swal-modal.swal-document-attachment .swal-document-header {
    background-color: var(--ci-grey-92);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.swal-modal.swal-document-attachment .swal-document-body {
    padding: 2rem;
}

.swal-modal.swal-document-attachment table {
    margin-block: 1.5rem;
}

.swal-modal.swal-document-attachment th {
    text-align: center;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

.swal-modal.swal-document-attachment tbody {
    background-color: var(--ci-grey-76);
    border: 2px solid var(--ci-grey-76);
}

.swal-modal.swal-document-attachment {
    text-align: center;
    border: 1px solid currentColor;
    padding: 3px 5px;
    min-width: 5rem;
}

.swal-modal.swal-document-attachment tbody a {
    color: inherit
}

.swal-modal.swal-document-attachment tbody svg {
    --fill: currentColor;
    height: 2rem;
    aspect-ratio: 1/1;
}

.tableSet #editform {
    display: flex;
}

.tableSet #editform>div:only-child {
    display: inherit;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
}

.tableSet #editform label {
    width: 30%;
}

.storno .noticeWrapper {
    padding-bottom: 50px;
}

#packageTable_wrapper,
#stornoTable_wrapper {
    padding-bottom: 50px;
}

#stornoTableBody_wrapper {
    height: 500px;
    width: 100%;
}

.nano {
    width: 100%;
    height: 500px;
}

.nano .nano-content {
    padding: 0;
}

.nano .nano-pane {
    background: transparent;
}

.nano>.nano-pane>.nano-slider {
    background: #d5d4d4;
}

.freeTables .nano {
    height: 100%;
    /*13.6rem;*/
}

.freeTables .nano .nano-content {
    padding: 5px;
    background-color: var(--ci-grey-100);
}

#stornoTable th {
    text-align: center;
}

#stornoTable th span {
    background-color: #5f5d5c;
    padding: 5px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: normal;
    display: block;
    text-align: center;
}

#stornoTable th.guest span {
    width: 70%;
}

#stornoTable td {
    color: #fff;
    font-size: 1.1rem;
}

#stornoTable tbody tr {
    border-bottom: 1px solid #abaaa9;
    height: 69px;
}

#stornoTable .stornoRow td {
    position: relative;
}

#stornoTable tbody td span {
    border-right: 1px solid #abaaa9;
    padding: 7px 0px;
    display: block;
    height: 30px;
    position: relative;
}

#stornoTable tbody td span img,
#stornoTable tbody td span svg {
    /* margin: 0 5px;*/
    height: 38px;
    /* padding: 4px;*/
	vertical-align: middle;
}

#stornoTable tbody td span img.storno-annotation {
    background-color: var(--color-coding-4);
    border-radius: 3px;
}

#stornoTable tbody td span tr {
    border: 0px;
    height: auto;
}

.customer-extra-info {
    position: absolute !important;
    right: 10px !important;
    border: 0px !important;
    top: 0px;
}

.package-column span,
.packageInfo {
    color: #abaaa9;
    font-size: 1.2rem;
    border: 0.5px solid #abaaa9;
    border-right-color: rgb(171, 170, 169);
    border-right-style: solid;
    border-right-width: 0.5px;
    border-radius: 5px;
    display: block;
    width: 45px;
    height: 44px !important;
    text-align: center;
    line-height: 30px;
}

.packageInfo {
    line-height: 44px;
    position: absolute;
    right: 10%;
    bottom: 12%;
}

#stornoSearch {
    width: 50.25%;
    margin-left: 5px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.notice .noticeWrapper {
    max-height: 590px;
    overflow-y: auto;
}

#blockingList svg {
    width: 25px;
    height: 25px;
    --fill: var(--ci-blue-100);
    margin: 0 10px;
}

.modal-body .squares {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-body .square {
    float: left;
    position: relative;
    width: 25%;
    padding-bottom: 25%;
    margin: 1.66%;
    background-color: #dfdfdf;
    overflow: hidden;
    color: #000;
    text-align: center;
}

#ct_infos td.package.active,
.package.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}

.frame .package {
    min-width: 90px;
    max-width: 140px;
    padding: 5px 10px;
    text-align: center;
    /*height: 75px;*/
}

#modalForm .modal-dialog.notice {
    height: 80%;
}

#modalForm .modal-dialog.notice .modal-content {
    height: 100%;
}

.modal-body #taskoverview .squares {
    justify-content: left;
}

.modal-body .square.task-square {
    background-color: var(--ci-blue-100);
    color: #fff;
    padding-bottom: 9.5%;
    cursor: pointer;
    width: 19%;
    margin: 0.5%;
}

#taskoverview {
    padding: 1.25%;
    padding-top: 1.25%;
    padding-top: 7px;
    box-shadow: inset 0px 11px 28px -10px #000, inset 0px -11px 28px -10px #000;
}

.swal-modal .task-detail {
    text-align: left;
}

.square.task-square.weekview {
    width: 100%;
    min-height: 100px;
    padding: 0px;
    position: absolute;
}

.square.task-square hr {
    color: #fff;
    padding: 0px;
    margin: 0px;
    border-top: 1px solid #fff;
}

.swal-modal .task-detail .edit-inline.edit-mode {
    background-color: #fff;
    color: #000;
    padding: 5px 10px;
    min-height: 38px;
}

#agenda .fc-time-grid .fc-slats td {
    height: 100px;
}

#agenda .fc-toolbar {
    position: absolute;
    top: 20px;
}

#agenda .fc-toolbar .fc-center {}

#agenda .fc-day:nth-child(2n) {
    background-color: var(--ci-grey-76);
    border-right: 0;
    border-left: 0px;
}

#agenda .fc-day-header {
    background-color: var(--ci-grey-100);
    padding: 10px 0px;
    color: var(--ci-blue-100);
}

.fc-day,
.fc-unthemed td {
    border-right-color: transparent;
    border-left-color: transparent;
}

.fc-unthemed td.fc-today {
    background: transparent;
}

#agenda .fc-week {
    display: none;
}

#agenda .fc-divider.fc-widget-header {
    display: none;
}

#agenda .fc-toolbar .fc-center h2 {
    color: #fff;
    font-family: var(--roboto);
    font-size: 20px;
    text-align: center;
    width: 100%;
}

#agenda .fc-right .fc-button {
    height: 4rem;
}
#agenda .fc-axis.fc-widget-header {
    width: 33px;
    background-image: url(/Public/Images/Icons/Reservation/ClockDayWeek.svg);
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--ci-grey-100);
}
#agenda .fc-day-header.fc-widget-header span {
    border-left: 1px solid var(--ci-grey-50);
    display: block;
}
#agenda .fc-axis {
    width: 60px !important;
    text-align: center;
}

.swal-modal .task-detail .edit-inline.edit-mode[data-field='description'] {
    min-height: 50px;
}
.swal-modal .task-detail .task-detail-customer-info {
    float: right;
}
.notice .modal-body .tab-content {
    padding: 0;
}
.modal-body .square.task-square .employee-info-task {
    background-color: var(--ci-grey-80);
    position: absolute;
    width: 90%;
    bottom: 10px;
    padding: 5px 10px;
}
.modal-body .square.task-square.weekview .employee-info-task {
    background-color: var(--ci-grey-80);
    position: relative;
    width: 90%;
    margin-top: 30px;
    padding: 0px 2px;
}
.task-toolbar {
    width: 100%;
    height: 80px;
}
.task-toolbar #taskFilter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: right;
}
.btn.task-filter-btn {
    height: 36px;
    margin: 5px 10px;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-10);
    border: 0px;
}
.btn.task-filter-btn.active {
    background-color:var(--ci-blue-100);
    color:#fff;
}
#addNewTask,
#addNewTaskFromExternal {
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-10);
    position: absolute;
    left: 2.5%;
}
#addNewTaskFromExternal {
    display: none!important;
    /*TEWMPO*/
}
.modal-body .square.task-square.weekview .square-content {
    padding: 2%;
}
.modal-body .square.task-square .square-table-cell {
    vertical-align: top;
}
.day-button {
    margin-right: 2px;
    border: 0px;
    background-color: #5f5d5c;
    color: #abaaa9;
    border-radius: 2px;
}
.day-button.active,
.day-button:hover {
    background-color: var(--ci-blue-100) !important;
    color: #fff !important;
}
.reservation-option-value {
    background-color: transparent !important;
    width: 26%;
    float: left;
    margin-top: 8px;
}
.swal-overlay {
    z-index: 999999;
}
.infoNumber {
    position: absolute;
    right: 20%;
    transform: translateX(calc(100%+12px));
    color: #fff;
    top: 15%;
    background-color: #ef7b00;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    display: none;
}
.full .infoNumber {
    right: 43%;
}
#dayNoticeForDate {
    display: none,
    ;
}
#dayNoticeForDate.infoNumber {
    display: block;
    top: 28px;
    right: 34%;
    width: 25px;
    height: 25px;
    font-size: 16px;
    line-height: 1.5;
}
.infoNumber.full {
    right: 30%;
    top: 35%;
}
.popover {
    z-index: 99999;
}
.swal-modal.swal-customer {
    background-color: #fff;
    width: intrinsic;
    width: max-content;
    max-width: 80%;
}
.login-info-bottom {
    position: absolute;
    right: 4%;
    bottom: 2%;
}
.login-info-bottom ul,
.login-info-bottom ul li {
    list-style: none;
}
.login-info-bottom ul li {
    float: left;
    color: var(--ci-blue-100);
    font-size: 16px;
}
#reservationList-footer li.important {
    background-color: transparent !important;
    color: #fff !important;
    --fill: currentColor !important;
}
.disabled-item {
    opacity: 0.5;
    cursor: no-drop;
    pointer-events: none;
}
.autoplaced-triangle,
.api-triangle,
.notice-triangle,
.pms-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: var(--ci-blue-100) transparent transparent transparent;
    position: absolute;
    left: 3px;
    top: -2px;
}
.autoplaced-triangle.social {
    border-color: var(--socialmedia-red) transparent transparent transparent;
}
.api-triangle {
    border-color: var(--paid) transparent transparent transparent;
}
.notice-triangle {
    border-color: #fff transparent transparent transparent;
    top: 2px;
}
.pms-triangle {
    border-color: var(--pms-orange) transparent transparent transparent;
    top: 5px;
    left: 5px;
}
.week-body {
    height: 66vh;
    flex: 1;
}
.week-view {
    height: 100%;
}
.week-view thead {
    background-color: #2d2a28;
    height: 40px;
}
.week-view tbody td,
.week-view thead th {
    color: #abaaa9;
    text-align: center;
    height: 60px
}
.week-view tbody td {
    font-size: 1.5rem;
    ;
}
.week-view thead th div {
    color: var(--ci-blue-100);
    border-right: 1px solid #abaaa9;
    padding: 5px 0px;
    padding: 7px 0px;
}
.week-view tbody tr {
    border-bottom: 1px solid #abaaa9;
}
.week-view tbody td h4 {
    color: var(--ci-blue-100);
    font-weight: normal;
    margin-bottom: 0px;
}
.week-view tbody td:nth-child(even) {
    background-color: var(--ci-grey-80);
}
.week-view tbody td:nth-child(odd) {
    background-color: #42403e;
}
.dayweek-list button {
    border: 0px;
    background-color: var(--ci-grey-10);
    padding: 5px 20px;
    text-transform: uppercase;
    min-width: 100px;
}
.dayweek-list button.active {
    color: #fff;
    background-color: var(--ci-blue-100);
}
.dayweek-list button.week-next,
.dayweek-list button.week-prev {
    min-width: auto;
    background-color: transparent;
}
.week-body {
    width: 100%;
    overflow-x: auto;
}
.dayweek-list .week-body:not(.day-body) {
    background-color: var(--ci-grey-18);
}
.dayslider {
    display: table;
    table-layout: fixed;
    width: 2832px;
}
.dayslider div.listItem {
    width: 472px;
    display: inline-block;
    display: table-cell;
    border: 1px solid;
}
.dayslider .list-header,
.dayslider .list-sub-header {
    background-color: #2d2a28;
    color: var(--ci-blue-100);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 1;
}
.dayslider .list-header div,
.dayslider .list-sub-header div {
    margin-left: 20px;
    margin-right: 20px;
    width: 70px;
}
.dayslider .list-header div img,
.dayslider .list-sub-header div img {
    float: left;
    width: 16px;
    margin-right: 10px;
}
.dayslider .list-sub-header {
    background-color: #53514f;
    color: var(--ci-grey-40);
}
.dayslider .list-sub-header div.sub-header-time {
    text-align: left;
}
#phonebook-table_wrapper {
    margin-top: 0px;
}
#phonebook-table_filter {
    background-color: var(--ci-grey-100);
    width: 100%;
}
.thead-dark {
    background-color: var(--ci-grey-100);
    color: #fff;
}
.thead-dark th {
    text-align: center;
    font-size: 16px;
    font-weight: normal !important;
}
#phonebook-table_filter input {
    background-color: #fff;
    width: 25%;
    float: left;
    margin: 5px;
    color: #000;
}
#phonebook-table_filter::after {
    font-family: Material-Design-Iconic-Font;
    position: absolute;
    left: 1px;
    bottom: 6px;
    font-size: 1.3rem;
    color: #000;
    left: 10px;
    bottom: 10px;
}
table.dataTable thead.thead-dark .sorting,
table.dataTable thead.thead-dark .sorting_desc,
table.dataTable thead.thead-dark .sorting_asc {
    background: none;
}
.home-square a {
    color: #000;
}

/* Customize the label (the container) */
.container-checkbox {
    display: block;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: relative;
    height: 1.92rem !important;
    width: 1.92rem !important;
    background-color: transparent;
    border: 1px solid #abaaa9;
    margin: 0 !important;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked~.checkmark {
    background-color: #80bb3d;
    border: 0px;
}
#blockTableForm .container-checkbox input:checked~.checkmark {
    background-color: var(--ci-blue-100);
    border: 0px;
}

/* Show the checkmark when checked */
.container-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    content: "";
    display: none;
    position: absolute;
    left: 50% !important;
    top: 50% !important;
    width: 5px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 3px 3px 0 !important;
    -webkit-transform: translate(-50%,
    -50%) rotate(45deg) !important;
    -ms-transform: translate(-50%,
    -50%) rotate(45deg) !important;
    transform: translate(-50%,
    -50%) rotate(45deg) !important;
}
.check {
    width: 108%;
    position: relative;
    top: -8px;
    background-color: #b6203f;
    color: #fff;
    padding: 2px 10px;
    left: -11px;
}
.check.checked {
    background-color: #80bb3d;
}
.checkType {
    width: 108%;
    position: relative;
    top: -8px;
    left: -11px;
    border: 2px solid #abaaa9
}
.flex-container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
}
.flex-cell {
    flex: 0 0 15%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0.5rem;
    box-sizing: border-box;
}
.flex-cell:before {
    content: '';
    display: table;
    padding-top: 100%;
}
.flex-item {
    flex-grow: 1;
    background: var(--ci-blue-100);
    color: var(--ci-grey-20);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
}
.noticeWrapper .flex-item {
    font-size: 18px;
    ;
}
.flex-item hr {
    border-top: 1px solid rgba(255,
    255,
    255,
    1);
    margin: 0;
}
.noticeWrapper .flex-container {
    justify-content: center;
}
.noticeWrapper .flex-cell::before {
    padding-top: 0px;
}
.package-for-day,
.package-for-week {
    margin-bottom: 20px;
    margin-top: 20px;
}
.select2-results ul li {
    margin: 5px;
    background-color: var(--ci-grey-60);
    color: var(--ci-grey-10);
    border-radius: 3px;
}
.select2-results,
.select2-dropdown {
    display: block;
    min-width: 200px;
}
.select2-dropdown {
    box-shadow: none;
    border: 0px;
    background-color: #42403e;
}
.predefinedText {
    width: 25%;
}
.predefinedText span {
    margin-top: 4px;
    border-radius: 5px;
    line-height: 2.54rem;
    width: 98%;
    text-align: center;
    background-color: var(--ci-grey-80);
    display: block;
}
.modal-dialog.reservation #sequenzForm label {
    font-size: 1.23rem;
    text-align: left;
    float: left;
    top: 0px;
    padding-left: 0px;
    width: 30%;
}
#bookingOption {
    font-size: 1.5rem;
    font-family: var(--roboto);
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0.25rem !important;
    max-width: 300px;
}
#bookingOption input:checked + label {
    background-color: var(--note);
}
.week-body .reservationItem.status-checkedOut {
    display: flex;
}
.creditcardForm,
.packagesForQuick,
.mailTextForm,
.optionResolveWrapper,
.stornoFormWrapper {
    position: fixed;
    width: 460px;
    height: 400px;
    background-color: var(--ci-grey-90);
    padding: 10px;
    margin-left: 50%;
    left: 0;
    transform: translateX(-50%);
    top: 25%;
    color: #fff;
    display: none;
    -webkit-box-shadow: 10px 10px 126px 0px rgba(0,
    0,
    0,
    0.75);
    -moz-box-shadow: 10px 10px 126px 0px rgba(0,
    0,
    0,
    0.75);
    box-shadow: 10px 10px 126px 0px rgba(0,
    0,
    0,
    0.75);
    overflow-y: auto;
}
.packagesForQuick .package {
    background-color: var(--ci-grey-80);
    text-align: center;
    display: block;
    width: 32.33%;
    margin: 0.5%;
    hyphens: auto;
    word-break:normal;
    word-wrap: break-word;
}
.package.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}
.packagesForQuick .package input,
#ct_infos .package input.form-control,
#reservation-detail-body .packageFrame .package input.form-control {
    width: 100%;
    border: 0px;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-bottom: 1px solid;
    border-radius: 0px;
    background-color: transparent;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    margin-top: -15px;
}
#mailText {
    background-color: transparent;
    width: 100%;
    margin-bottom: 20px;
    height: 200px !important;
    color: var(--ci-grey-50);
}
.creditcardForm {
    height: auto;
}
.modal-dialog.reservation .creditcardForm label,
.modal-dialog.createTable label {
    color: var(--ci-grey-50);
    font-size: 1rem;
    font-weight: normal;
}
.setCustomPrice.active {
    color: var(--dynamic-blue);
}
#card-number-element,
#card-expiry-element,
#card-cvc-element {
    border: 1px solid #757473;
    border-radius: 5px;
    padding: 5px 10px;
}
.phoneCell,
.contactCell {
    width: 100%;
    float: left;
    padding-top: 5px;
}
.phoneCell,
.contactCell,
.customer-result-item-content .name,
#stornoTable .customer-extra-info,
.personInfo {
    fill: var(--ci-blue-100);
}
.customer-result-item.active .phoneCell,
.customer-result-item.active .contactCell,
.customer-result-item-content.active .name,
.customer-result-item.active .name {
    fill: #fff;
}
.new-form-control {
    background-color: transparent;
    border: 1px solid #d5d4d4 !important;
    color: var(--ci-blue-100);
    border-radius: 2px;
    width: 81%;
}
#exceptionForm .form-group label {
    float: left;
    width: 14%;
    margin-right: 4.5%;
    font-weight: normal;
}
.form-group input {
    font-size: 1.5rem;
}
.form-group a {
    font-size: 1.4rem;
}
.guest-notice {
    display: none;
    position: absolute;
    height: 100%;
    background-color: rgba(239,
    239,
    239,
    0.8);
    width: 100%;
    top: 0px;
    color: #000;
}
.standardDialog .guest-notice {
    display: none;
    position: absolute;
    height: 100%;
    background-color: rgba(239,
    239,
    239,
    0.8);
    width: 100%;
    top: 0px;
    color: #000;
    width: 45%;
    top: 40%;
    height: 42%;
}
.roomfull {
    height: 100%;
}

/*
.bookingOption {
opacity: 0.8;
}*/
.bookingOption .tableInfo,
.bookingOption .reservation-action-items,
.booking-option-detail {
    background-color: var(--note);
    color: #000;
}
.booking-option-detail {
    padding: 5px 20px;
    overflow: hidden;
    height: 100%;
    color:#C6374B;
}
.status-storno.bookingOption .tableInfo,
.status-storno.bookingOption .reservation-action-items {
    background-color: #000;
    color: rgb(128,
    128,
    128);
}
.btn-cc-edit-card,
.btn-extramail {
    padding: 4px;
    padding-right: 6px;
}
.btn-cc-edit-card svg,
.btn-extramail svg {
    margin-top: 3px;
}

.btn-cc.required:not(.active) {
    background-color: var(--color-coding-2);
    color: var(--ci-grey-100);
}

.form-control.cc-element[readonly] {
    border: 0px;
    background-color: var(--ci-grey-80);
    text-align: center;
    color: var(--ci-grey-40);
}
.form-control.cc-element {
    text-align: center;
    color: var(--ci-grey-40);
}
.sendNoShow {
    fill: #2d2a28;
}
.sendNoShow.noshow_sended {
    fill: #b6203f;
}
.notice-list-item-input,
.form-control.notice-list-item-input {
    width: 100%;
    background-color: var(--ci-grey-76);
    border: 0;
    margin-bottom: 5px;
    color: var(--ci-grey-20);
    font-family: var(--roboto);
}
.detail-mail-text {
    stroke: var(--ci-grey-50) !important;
    width: 1.5rem;
    height: auto;
    margin-left: 8px;
    margin-top: 5px;
}
.detail-mail-text.active {
    stroke: var(--ci-blue-100) !important;
}
.detail-mail-text-check {
    position: absolute;
    top: -6px;
    right: 0;
    width: 28px;
}
.roomTable {}
.roomTable.scaled {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
    top: 0px !important;
    left: 50% !important;
    margin-left: -25%;
    margin-top: -20%;
}
.roomTable.scaled rect,
.roomTable.scaled circle {
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0,
    0,
    0,
    .7));
    filter: drop-shadow(3px 3px 2px rgba(0,
    0,
    0,
    .7));
}
.square.list-zoom.active,
.square.click-zoom.active,
.square.disable-drag.active,
.square.blockRoom,
.square.blockAllReservations {
    background-color: var(--ci-blue-100);
    color: #fff;
    --fill: #fff;
}
.square.blockRoom.active,
.square.blockAllReservations.active {
    background-color: var(--partplaced);

}
.square.blockRoom:not(.active) span[data-type='std'],
.square.blockRoom.active span[data-type='alt'] {
    display: inline !important;
}
.modal-dialog.createTable .modal-body {
    padding: 20px;
}
.modal-dialog.createTable .modal-header {
    padding: 10px;
}
.modal-dialog.createTable label {
    width: 100%;
}
.modal-dialog.createTable .form-control.cc-element {
    color: var(--ci-blue-100)
}
.tabletype-input-item {
    color: #fff;
    background-color: var(--ci-grey-100);
    padding: 10px 20px;
    border-radius: 2px;
    margin-right: 2rem;
    font-size: larger;
    font-family: var(--roboto);
    margin-bottom: 1rem;
    text-align: center
}
.tabletype-input-item.addNewTableType {
    margin-right: 0.75rem;
    margin-top: 0.9rem;
    cursor: pointer;
}
.tabletype-input-item .deleteTableType {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
}
.tabletype-input-item:hover .deleteTableType {
    display: block;
}
.roomTable.table-detail {
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
    float: left;
}
.roomTable.table-detail .table-surface {
    fill: transparent;
    stroke: var(--ci-blue-100);
}
.roomTable.table-detail use {
    fill: var(--ci-blue-100);
}
.swal-modal.singleTable {
    background: no-repeat;
}

/***NEUE RESERVATIOnFORM***/
#searchFields td {
    position: relative;
}
input.customerSearch:focus~.floating-label,
input.customerSearch:not(:placeholder-shown)~.floating-label {
    top: -5px;
    left: 10px;
    font-size: 11px;
    opacity: 1;
    background-color: var(--ci-grey-90);
}
#ct_customer .form-control,
.form-control.customerSearch {
    height: 3rem !important;
    position: relative;
    padding-left: 16px;
}
#ct_customer .form-control.warning,
.form-control.warning {
    color: var(--stats-orange);
    border-color: var(--stats-orange);
}
#ct_customer .form-control.error,
.form-control.error {
    color: #ff0000;
    border-color: #f00;
}
.form-control.customerSearch:focus {
    box-shadow: none;
}
.floating-label {
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 13px;
    transition: 0.2s ease all;
    padding: 0 10px;
}
#ct_customer .form-control.error .floating-label,
.form-control.customerSearch.error .floating-label {
    color: #ff0000;
}
.language-tabs li {
    padding: 5px 10px;
    background-color: var(--ci-grey-20);
    color: #000;
    border-right: 1px solid var(--ci-grey-100);
}
.language-tabs li.active {
    background-color: var(--ci-blue-100);
    color: #fff;
}
.language-tabs li:first-child {
    border-top-left-radius: 2px;
}
.language-tabs li:last-child {
    border-top-right-radius: 2px;
}
.reservision-editor-wrapper {
    position: relative;
    width: 100%;
}
.reservision-editor {
    background-color: var(--ci-grey-76);
    color: #fff;
    padding: 5px 10px;
    min-height: 75px;
    word-break: break-all;
}
.reservision-editor.EditorIsSingleLine {
    min-height: 45px;
    max-height: 45px;
    font-size: 26px;
    line-height: 33px;
    padding: 5px 10px;
}
.reservision-editor-toolbar {
    position: relative;
    height: 35px;
}
.reservision-editor-toolbar .language-switch,
.reservision-editor-toolbar .toolbar-commands {
    width: 50%;
    position: absolute;
}
.reservision-editor-toolbar .language-switch {
    left: 0px;
    display: none;
}
.reservision-editor-toolbar .toolbar-commands {
    right: 0px;
    text-align: right;
}
.btn-toolbar-item {
    background-color: var(--ci-grey-76);
    color: #fff;
}
.btn-toolbar-item.active {
    background-color: var(--ci-blue-100);
}
#task-popper {
    color: #fff;
    position: fixed;
    bottom: 0%;
    min-width: 24rem;
    text-align: center;
    height:30px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}
#task-popper.show {
    bottom: -16%;
    height: 100%;
}
#task-popper-indicator {
    width: calc(100% - 11px);
}
#task-popper.show #task-popper-indicator {
    background-color: var(--ci-grey-100);
}
#task-popper-tasks {
    width: calc(100% - 11px);
    background-color: var(--ci-grey-80);
    display: none;
    height: 80%;
}
#task-popper-tasks.show {
    display: flex;
}
.task-popper-tasks-item {
    display: flex;
    font-family: var(--robotoslab);
    background-color: var(--ci-grey-10);
    color: var(--ci-grey-80);
    /*border-bottom:  1px solid #d4d4d4;*/
    min-height: 4.6rem;
    position: relative;
}
.task-popper-tasks-item {
    text-align: left;
}
.task-datetime-info span {
    color:var(--ci-blue-100);
}
.task-popper-tasks-item .reservation-action-items {
    display: flex;
    width: 4rem;
    /*137*/
    flex-shrink: 0;
    background-color: var(--ci-grey-60);
    /* transition: width 0.5s;*/
}
#reservationList-footer .task-popper-tasks-item .reservation-action-item {
    cursor: pointer;
    align-self: auto;
}
.task-popper-tasks-item .reservation-action-items>div,
.task-popper-tasks-item .reservation-action-items>svg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.animate-flicker {
    -webkit-animation: flickerAnimation 2s infinite;
    -moz-animation: flickerAnimation 2s infinite;
    -o-animation: flickerAnimation 2s infinite;
    animation: flickerAnimation 2s infinite;
}
.futureReservation {
    --fill:var(--ci-blue-100);
}
.print-configuration {
    border: 1px solid #aaaaa9;
    border-radius: 5px;
    padding: 10px !important;
}
.print-configuration .quick-button {
    width: 100%;
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.print-configuration .quick-button.config-detail-button,
.print-configuration .quick-button.config-detail-button.active {
    background-color: transparent;
    ;
}
.print-configuration .quick-button.config-detail-button {
    text-align: center;
    width: 100%;
    margin-top: 0px;
    width: auto;
}
.print-configuration .quick-button.config-detail-button img {
    width: 40px;
    fill: none;
    stroke: #abaaa9;
    text-align: center;
    border-radius: 2px;
}
.print-configuration .quick-button.config-detail-button.active svg {
    background-color: var(--ci-blue-100);
    stroke: #fff;
    border: 1px solid var(--ci-blue-100);
}
.print-configuration .quick-button.config-detail-button[data-detail=guestOption] svg,
.print-configuration .quick-button.config-detail-button[data-detail=info] svg,
.print-configuration .quick-button.config-detail-button[data-detail=reservationOption] svg {
    fill: #abaaa9;
}
.print-configuration .quick-button.config-detail-button.active {
    stroke:#fff;
}
.print-configuration .quick-button.config-detail-button.active[data-detail=guestOption] svg,
.print-configuration .quick-button.config-detail-button.active[data-detail=info] svg,
.print-configuration .quick-button.config-detail-button.active[data-detail=reservationOption] svg {
    fill: #fff;
}
#personOk-overlay .overlay-top-nav {
    display: flex;
    flex-direction: column;
}
#personOk-overlay .overlay-top-nav.open {
    height: min-content;
}
#personOk-overlay .overlay-header {
    height: 22px;
    padding: 10px;
    color: var(--note);
    display: flex;
    align-items: center;
    font-weight: bold;
}
#personOk-overlay .overlay-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 0.38rem 0.38rem;
    padding: 1rem 0.5rem 0.5rem;
    background-color: var(--ci-grey-18);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.checkPersonOk.modal-dialog {
    width: 61.5rem;
}
.checkPersonOk .modal-content {
    overflow: hidden;
    background-color: rgba(45,
    42,
    41,
    0.96);
    border-radius: 6px;
}
.checkPersonOk .modal-header, .masterSearchForm .modal-header {
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    height: 3.5rem;
}
.checkPersonOk .modal-body, .masterSearchForm .modal-body {
    background-color: transparent;
    padding: 1.54rem;
}
.checkPersonOk .modal-footer, .masterSearchForm .modal-footer {
    display: none;
}
.checkPersonOk .item-handler {
    display: flex;
    color: var(--ci-grey-40);
    flex: 1;
    align-items: center;
    margin-bottom: 0.77rem;
}
.checkPersonOk .item-container {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid currentColor;
}
.checkPersonOk .item-container .reservationItem .state {
    display: none;
}
.checkPersonOk .change-buttons {
    display: flex;
    height: 4.6rem;
    margin-left: 1.5rem;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}
.checkPersonOk .change-buttons span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.6rem;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.checkPersonOk .change-buttons span.change {
    border: 1px solid currentColor;
}
.checkPersonOk .change-buttons input {
    width: 100%;
    background-color: var(--ci-blue-100);
    color: #fff;
    border: none;
    height: 100%;
    text-align: center;
    font-weight: bold;
}
.checkPersonOk .change-buttons input.changed {
    background-color: var(--note);
    color: #42403e;
}
.checkPersonOk .item-buttons {
    display: flex;
    width: 100%;
}
.checkPersonOk .item-buttons button {
    flex: 1;
    text-transform: uppercase;
    color: #fff;
}
.checkPersonOk .item-buttons button:not(.btn-action) {
    background-color: var(--ci-grey-60);
}
.checkPersonOk .btn-action.save [data-type='alt'] {
    display: none;
}
.checkPersonOk .btn-action:not(.save) [data-type='std'] {
    display: none;
}
.checkPersonOk .change-buttons span:not(:first-of-type),
.checkPersonOk .item-buttons button:not(:first-of-type) {
    margin-left: 3px;
}
.checkPersonOk .change-buttons span:not(:last-of-type),
.checkPersonOk .item-buttons button:not(:last-of-type) {
    margin-right: 3px;
}
.checkPersonOk .room-results {
    background-color: var(--ci-grey-90);
    margin-bottom: 10px;
    padding: 5px 12px 2px;
    border-radius: 4px;
}
.checkPersonOk .room-results label {
    margin: 0 0 0 5px;
}
.checkPersonOk .room-results>div {
    display: flex;
}
.checkPersonOk .combo {
    display: flex;
    position: relative;
    width: min-content;
    background-color: var(--ci-grey-100);
    color: var(--ci-grey-100);
    --fill: var(--table-suggestion);
    --stroke: currentColor;
    border-radius: 3px;
    margin: 5px;
}
.checkPersonOk .combo svg {
    display: none;
    position: absolute;
    z-index: 1;
    width: 1.5rem;
    right: 0;
    top: 0;
    transform: translate(25%,
    -25%);
}
.checkPersonOk .combo.selected svg {
    display: block;
}
.checkPersonOk .square.freeTable {
    width: 4rem;
    padding-bottom: 4rem;
    margin: 5px;
    background-color: var(--table-suggestion);
    overflow: unset;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 300;
}
.checkPersonOk .square.freeTable .tableName {
    font-size: unset;
}
.mail_language {
    background-color: var(--ci-blue-100);
    width: 30px;
    height: 30px;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    padding-top: 3px;
    text-transform: uppercase;
    font-size: 1.2rem;
    position: absolute;
    left: -30px;
    z-index: 99;
    top: 0;
}
#iframeWrapper {
    position: absolute;
    top:15%;
    left:25%;
    z-index: 99999999;
    display: none;
}

.masterSearchForm.modal-dialog {
    width: 69.2rem;
}
.masterSearchForm .modal-content {
    overflow: hidden;
    background-color: var(--ci-grey-80);
    border-radius: 6px;
}

.masterSearchForm .modal-header {
    position: relative;
}

.masterSearchForm .modal-header .close-modal {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(50%,-50%);
    font-size: 2.5rem;
}

.masterSearchForm .search-filter {
    display: flex;
    height: 40px;
    font-size: 1.2rem;
}

.masterSearchForm .search-filter svg {
    height: 100%;
    width: auto;
}

.masterSearchForm .checkbox-like-bootstrap-sucks {
    display: inline-flex;
    max-width: 50%;
    width: 160px;
    height: auto;
}

.masterSearchForm .checkbox-like-bootstrap-sucks input[type='checkbox'] {
    appearance: none;
    width: 0;
    height: 0;
    clip-path: rect(0,0,0,0);
    border: 0;
    outline: 0;
}

.masterSearchForm .checkbox-like-bootstrap-sucks span {
    display: flex;
    height: 36px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--ci-grey-10);   
    color: var(--ci-grey-70);
}

.masterSearchForm .checkbox-like-bootstrap-sucks input:checked + span {
    background-color: var(--ci-blue-100);
    color: #fff;
}

.masterSearchForm .search-results {
    max-height: 32rem;
    height: auto;
    color: var(--ci-grey-10);
}

.masterSearchForm .outlet-results:not(:last-of-type) {
    border-bottom: 1px solid var(--ci-grey-40);
    padding-bottom: 1.3rem;
    margin-bottom: 1.3rem;
}

.masterSearchForm .search-results label {
    font-size: 1.3rem;
}

.masterSearchForm .outlet-results .reservationItem:not(:last-of-type) {
    margin-bottom: 3px;
}

.masterSearchForm .masterScrollTrack {
    position: absolute;
    width: 1.54rem;
    background-color: transparent;
}
.masterSearchForm .masterScrollThumb {
    background: var(--ci-grey-18);
    width: 50%;
    transform: translateX(50%);
}

.masterSearchForm .reservationItem.status-checkedOut, .masterSearchForm .reservationItem.status-storno {
    display: flex;
}

#colorSort-overlay .overlay-top-nav {
    display: flex;
    flex-direction: column;
    position: relative;
}

#colorSort-overlay .overlay-header {
    height: auto;
    display: flex;
    align-items: center;
    font-weight: bold;
    margin: 0 10px;
}

label.radio {
    display: contents;
    margin: 0;
}

label.radio input[type='radio'] {
    display: none;
    box-shadow: none;
    width: 0;
    height: 0;
    outline: none;
}

label.radio span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

#colorSort-overlay .overlay-header label span {
    height: 30px;
    padding: 0 15px;
    color: var(--ci-grey-30);
}

#colorSort-overlay .overlay-header label input:checked + span {
    background-color: var(--ci-grey-80);
    color: var(--ci-blue-100);
}

#colorSort-overlay .overlay-content {
    background-color: var(--ci-grey-80);
    color: var(--ci-grey-30);
    flex: 1;
    margin: 0 10px 10px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

#colorOverview {
    padding: 1rem 0 0;
    height: 100%;
    display: flex;
    justify-content: center;
}

#colorOverview .colorInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#colorOverview .colorInfo > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 3px;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.2rem;
}

.colorInfo .line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    --fill: currentColor;
}

.colorInfo svg {
    display: inline;
    line-height: inherit;
    height: 1rem;
    padding-left: 5px;
}

.colorInfo > span {
    line-height: 1;
}

#colorSort-overlay .fa-close {
    margin-left: auto;
    font-size: 1.8rem;
}

#colorSort-overlay .flag {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,100%);
    padding: 0 10px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ci-grey-80);
    user-select: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    line-height: 1;
    text-align: center;
}

#colorSort-overlay.active .flag {
    background-color: var(--ci-grey-100);
}

#groupSize-summary {
    height: 60px;
    padding: 20px;
    box-sizing: content-box;
    box-shadow: var(--ci-grey-100) 0px 10px 10px;
    display: flex;
    justify-content: space-between;
}

#groupSize-summary > div {
    display: flex;
    align-items: center;
}

#groupSize-summary .labeled-info-box,
#groupSize-summary .groupSize-table {
    margin: 0 5px;
}


.labeled-info-box {
    display: flex;
    height: 100%;
    border: 2px solid var(--color, var(--ci-blue-100));
    border-radius: 3px;
    writing-mode: vertical-lr;
}

.labeled-info-box.walkin-stats {
    --color: var(--ci-blue-50);
}

.labeled-info-box > * {
    writing-mode: initial;
}

.labeled-info-box .headline {
    text-transform: uppercase;
    background-color: var(--color, var(--ci-blue-100));
    color: var(--ci-grey-100);
    font-weight: bold;
    text-align: center;
    font-size: xx-small;
}

.labeled-info-box .info-content {
    height: 100%;
    aspect-ratio: 1;
    color: var(--color, var(--ci-blue-100));
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.labeled-info-box .info-content .line {
    display: inline-flex;
    align-items: center;
    --fill: currentColor;
}

.labeled-info-box .info-content svg {
    display: inline;
    line-height: inherit;
    height: 11px;
    padding-left: 4px;
}

#groupSize-detailed {
    padding: 30px
}

#groupSize-detailed .legend {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 15px;
    position: relative;
    font-size: 9pt;
}

#groupSize-detailed .legend > span {
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
}

#groupSize-detailed .legend > span::before {
    content: '';
    height: 15px;
    width: 15px;
    margin-right: 5px;
    border-radius: 3px;
    background-color: var(--color);
}

#groupSize-detailed .selector {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

#groupSize-detailed .selector .bullet {
    font-size: 8pt;
    display: flex;
    align-items: center;
}

#groupSize-detailed .selector .bullet::before {
    content: '';
    box-sizing: content-box;
    display: block;
    margin-right: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--ci-blue-100);
    border: 3px solid var(--ci-grey-70);
}

#groupSize-detailed .selector input {
    width: 50px;
    height: 25px;
    border: 1px solid currentColor;
    border-radius: 3px;
    background-color: transparent;
    color: inherit;
    margin-left: 5px;
    text-align: center;
    font-size: 1.2rem;
}

.status-cleaningUp .reservation-action-items,
.status-cleaningUp .tableInfo {
    background-color: var(--cleaning-up);
    color: #fff;
}

.status-cleaningUp[data-special-state='cleaningUpOverdue'] .reservation-action-items {
    --fade-weak: #fff2cc;
    --fade-strong: #ffe680;
    --fill: var(--ci-grey-70);
    animation: fadeWarning 1.5s infinite;
}

.status-appeared[data-special-state='reservationOverdue'] .reservation-action-items {
    --fade-weak: var(--waiter-1);
    --fade-strong: var(--waitlist);
    animation: fadeWarning 1.5s infinite;
}

@keyframes fadeWarning {
    0% { background-color: var(--fade-weak); }
    50% { background-color: var(--fade-strong); }
    100% { background-color: var(--fade-weak); }
}
/* Geburtstagstorte anzeigen lassen */
@keyframes confetti {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--confetti-x), var(--confetti-y));
        opacity: 0;
    }
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translate(var(--confetti-x), var(--confetti-y)) rotate(720deg);
    }
}

.confetti-container {
    position: absolute;
    width: 180px; 
    height: 150px;
    top: -75px; 
    left: -30px; 
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    opacity: 1;
    animation: confetti-fall 3s ease-out forwards;
}

.confetti:nth-child(odd) {
    background-color: var(--icon-cc-booking); 
}

.confetti:nth-child(3n) { 
    background-color: var(--note); 
}

.confetti:nth-child(4n) { 
    background-color: #ffcc00; 
}

.confetti:nth-child(5n) { 
    background-color: #ff6699; 
}

.confetti:nth-child(6n) { 
    background-color: #66ccff; 
}

.hover-bday {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.birthday-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease-in-out;
}

.hover-bday .age-bday-text {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    color: #66ccff; 
}

.hover-bday:hover .birthday-icon {
    opacity: 0;
}

.hover-bday:hover .age-bday-text {
    opacity: 1;
}

/* Hochzeits Icon anzeigen lassen */
.hover-anniversary {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.anniversary-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease-in-out;
}

.years-married-text {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    color: var(--ci-blue-100);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
}

.heart-container {
    position: absolute;
    width: 180px;
    height: 150px;
    top: -75px;
    left: -30px;
    pointer-events: none;
}

.heart {
    position: absolute;
    width: 8px; 
    height: 8px;
    background-color: var(--partplaced);
    transform: rotate(45deg);
    animation: heart-float 3s ease-out forwards;
    box-shadow: 0 0 3px #a6004f; 
}

.heart::before,
.heart::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--partplaced);
    border-radius: 50%;
}

.heart::before {
    top: -4px;
    left: 0;
}

.heart::after {
    top: 0;
    left: -4px;
}

@keyframes heart-float {
    0% {
        transform: translate(0, 0) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--heart-x), var(--heart-y)) rotate(720deg);
        opacity: 0;
    }
}

.content-container.hotel-guest {
    background-color: var(--ci-grey-90);
}

.content-container.hotel-guest .modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.content-container.hotel-guest .modal-content {
    background: var(--ci-grey-90);
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    padding-top: 10px;
}

.content-container.hotel-guest .modal-content h3 {
    display: flex;
    justify-content: center;
    color: var(--ci-blue-100);
}

.content-container.hotel-guest #deleteMealModal .modal-content {
    max-width: 500px;
    padding: 10px;
}

.wildcard-wrap div.radio-switch {
    background-color: var(--ci-grey-80);
}

.content-container.hotel-guest div.radio-switch.selected,
.content-container.hotel-guest div.radio-switch {
    font-weight: 500;
    height: 40px;
}

.content-container.hotel-guest div.radio-switch {
     color: var(--ci-grey-20);
}

.content-container.hotel-guest div.radio-switch.selected {
    color: #fff;
}

.content-container.hotel-guest h3 {
    margin: 10px 0 0 0;
}

.content-container.hotel-guest h4 {
    padding-bottom: 10px;
}

.content-container.hotel-guest .detail-section.hotel-headline {
    padding-bottom: 5px;
}
.content-container.hotel-guest .detail-section {
    margin: 10px 20px;
    padding: 0 0 20px 0;
}

.hotel-guest #settingForm .detail-section {
    border: none;
}

.content-container.hotel-guest .hotel-guest-auto-reservision {
    display: flex;
}

.hotel-guest-auto {
    padding-right: 20px;
}

.hotel-guest-auto-reservision-container {
    display: block;
}

#settingForm #body-section .hotel-guest-auto-reservision-container {
    border-bottom: 1px solid var(--ci-grey-80);
}

.auto-reservision-container {
    margin-bottom: 30px;
}

.hotel-meal-type {
    display: flex;
    padding-bottom: 20px;
    width: 16.6%;
    justify-content: space-between;
}

.hotel-meal-type.rate-code-wrapper {
    margin-right: 15px;
}

.form-section.four {
    width: 50%;
    padding-left: 15px; 
    border-left: 1px solid var(--ci-grey-60);
    margin-bottom: 10px;
}

.auto-reservation-number {
    width: 50px!important;
    height: 40px;
    border-radius: 3px;
    background-color: var(--ci-grey-80);
    border: 1px solid var(--ci-blue-100);
    color: white;
    text-align: center;
}

.number-tip {
    position: absolute;
    top: -26px;
    left: 0;
    background: #333;
    color: #fff;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
}

.number-tip.show {
    opacity: 1;
}
  
.hotel-meal-type .form-section {
    display: block;
    width: 100%;
}

.form-section.zero input {
    width: 95%;
    height: 40px;
    border-radius: 3px;
    background-color: var(--ci-grey-80);
    color: var(--ci-grey-20);
    border: none;
    padding-left: 10px;
    font-weight: 500;
}

.hotel-meal-type .form-section label {
    width: 100%;
    color: var(--ci-blue-100);
    padding-bottom: 5px;
}

#mealTypesContainer #showMealTypes thead th {
    padding-bottom: 0;
}

#meal_title::placeholder {
    color: var(--ci-grey-20);
    opacity: 1;     
    font-size: 14px;
}  

#rate_wildcard::placeholder {
    color: var(--ci-grey-20);
    opacity: 1;     
    font-size: 14px;
    font-weight: 500;
} 

.hotel-meal-type .form-section select {
    background-color: var(--ci-grey-80);
    color: var(--ci-grey-20);
    font-size: 14px;
    border: none;
    border-radius: 3px;
    padding: 6px;
    font-weight: 400;
    width: 95%;
    height: 40px;
}

.hotel-meal-type .form-section.second input {
    width: 100%;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-20);
    padding: 6px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    padding: 4.5px;
    padding-left: 10px;
    height: 40px;
}

.tminute { 
    pointer-events: none; 
    user-select: none; 
}

.hotel-meal-type .form-section.second input:-webkit-autofill {
    box-shadow: 0 0 0 1000px var(--ci-grey-76) inset !important;
    -webkit-text-fill-color: #fff !important; 
    border: 1px solid var(--ci-blue-100) !important;
    transition: background-color 9999s ease-out, color 9999s ease-out;
  }

.hotel-meal-type .form-section.third {
    margin-left: 30px;
}

#shiftTable thead th,
#showMealTypes thead th  {
    color: var(--ci-blue-100);
    padding-bottom: 5px;
    text-align: center;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#shiftTable tbody select {
    font-size: 14px;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-30); 
    width: 100%;
}

.content--stats footer a,
.content--stats footer span {
    color: #fff;
}

.imprintInfo .small {
    font-size: 16px;
}

.imprintInfo .small a:focus{
    border: 2px dashed #2F4EE8;
    text-decoration: none;
    color: #2F4EE8;
}   

.content--stats footer a:focus {
    border: 2px dashed #fff;
    text-decoration: none;
    border: 1px solid var(--ci-grey-60);
    padding: 10px 0;
    font-weight: 500;
    text-align: center;
    border-radius: 3px;
}

#shiftTable tbody select.configured {
    background-color: var(--ci-grey-76);
    color: var(--ci-blue-100);
    border-color: var(--ci-blue-100);
}

.content-container.hotel-guest input[type="checkbox"].checkbox-square {
    appearance: none;
    width: 30px;
    height: 30px;
    margin: 0;
    border: 1px solid transparent;
    border-radius: 3px; 
    background-color: var(--ci-grey-70);
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s;
    margin-bottom: -8px;
}

.content-container.hotel-guest #shiftTable tbody tr:first-child input[type="checkbox"].checkbox-square  {
    margin-bottom: -7px;
}

.content-container.hotel-guest .breakfast-item input[type="checkbox"].checkbox-square {
    background-color: var(--ci-grey-60);
}

.content-container.hotel-guest input[type="checkbox"].checkbox-square:checked {
    background-color: var(--ci-blue-100);
    border-color: var(--ci-blue-100);
}

.content-container.hotel-guest input[type="checkbox"].checkbox-square:checked::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 4px;
    width: 10px;
    height: 16px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#shiftTable .flex-wrapper {
    color: var(--ci-grey-20);
    display: flex;
    align-items: center;
    justify-content: center;
}

#shiftTable .active-row .flex-wrapper {
    padding: 0;
}

#shiftTable .flex-wrapper .checkbox-square{
    margin-top: -5px;
}

#shiftTable .flex-wrapper label {
   padding-left: 10px;
}

#shiftTable .flex-wrapper .switch-group {
    display: flex;
    justify-content: center;
}

.content-container.hotel-guest .wc-switches div.radio-switch.selected, 
.content-container.hotel-guest .wc-switches div.radio-switch {
    height: 40px;
}

#shiftTable tbody tr {
 padding-left: 20px;
}

#shiftTable tbody tr td:nth-child(3) {
    display: flex;
    align-items: center;
    padding: 5px 0;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
}

#shiftTable .toggleSwitch {
    display: flex;
    align-items: center;
}

.content-container.hotel-guest .toggleSwitch input {
    height: 28px;
    width: 60px;
    border: 1px solid var(--ci-grey-20);
}

.content-container.hotel-guest .toggleSwitch input::before {
    height: 20px;
    width: 20px;
    top: 3px;
    left: 3px;
}

.content-container.hotel-guest .toggleSwitch input:checked::before {
    left: 96%;
} 

.content-container.hotel-guest .toggleSwitch input:checked {
    background-color: var(--ci-grey-76);
    border: 1px solid var(--ci-blue-100);
}

.content-container.hotel-guest .checkbox-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--ci-grey-60);
    text-align: center;
    font-size: 12px;
    background-color: var(--ci-grey-76);
    color: var(--ci-blue-100);
    font-weight: 500;
}

.content-container.hotel-guest .checkbox-round:hover {
    cursor: pointer;
}

.checkbox-round.filled {
    border-color: var(--ci-blue-100);
}

.content-container.hotel-guest tbody td {
    text-align: center;
}

#shiftTable ~ table tbody tr:nth-child(even),
#shiftTable tbody tr:nth-child(even) {
    background-color: var(--ci-grey-85);
}

#shiftTable tbody tr:nth-child(odd),
#shiftTable ~ table tbody tr:nth-child(odd) {
    background-color: var(--ci-grey-76);
}

#packages-added {
    margin-top: 30px;
}

#packages-added thead th {
    color: var(--ci-blue-100);
}

#packages-added label {
    color: var(--ci-grey-20);
    margin-left: 10px;
    text-align: start;
}

#packages-added .flex-wrapper label {
    width: 100%;
}

.add-shift-table,
.add-packages-btn {
    margin-top: 10px;
    background-color: var(--ci-grey-76);
    color: var(--ci-blue-100);
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.add-shift-table:hover,
.add-packages-btn:hover {
    background-color: var(--ci-blue-100);
    color: #fff;
}

#packages-added .toggleSwitch {
    display: flex;
}

#packages-added .flex-wrapper {
    align-items: center;
    padding: 0;
    height: 42px;
}

.content-container.hotel-guest  .unit-label {
    color: var(--ci-grey-20);
    padding-left: 5px;
}

.content-container.hotel-guest .detail-section td {
    padding: 5px;
    background-color: transparent;
    font-weight: 500;
    color: var(--ci-grey-20);
    height: 42px;
    max-width: 42px;
}

.content-container.hotel-guest .detail-section #packages-added td {
    padding:0;
}

#showMealTypes tbody tr:nth-child(even),
#showMealTypes ~ table tbody tr:nth-child(even),
#packages-added tbody tr:nth-child(even) {
    background-color: var(--ci-grey-85);
    height: 42px;
}

#showMealTypes ~ table tbody tr:nth-child(odd),
#packages-added tbody tr:nth-child(odd) {
    background-color: var(--ci-grey-76);
    height: 42px;
}

#showMealTypes tbody tr:nth-child(odd) {
    background-color: var(--ci-grey-80);
}

#packages-added tbody button {
    background-color: transparent;
    border: none;
    width: 30px;
    padding: 0;
}

#packages-added tbody .delete-shift-row {

margin-left: 3px;
}

#packages-added tbody button.edit-meal-type {
 width: 23px;
}

.content-container.hotel-guest .time-separator {
    color: var(--ci-grey-20);
    font-size: 16px;
    margin: 0 5px;
}

.content-container.hotel-guest .btn,
.breakfast-container button {
    padding: 14px 16px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-20);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-right: 10px;
}

#deleteMealModal { display: none; }
#deleteMealModal.open { display: flex; } /* oder block */


.content-container.hotel-guest .btn:hover,
.content-container.hotel-guest .btn:focus {
    background-color: var(--ci-blue-100);
    color: var(--ci-grey-20);
}

.content-container.hotel-guest .btn:active {
    background-color: var(--ci-blue-100);
}

.content-container.hotel-guest .btn:disabled {
    background-color: #f0f0f0;
    color: var(--ci-grey-20);
    cursor: not-allowed;
}

.content-container.hotel-guest .button-group {
    margin: 20px 0;
    justify-content: flex-end;
    display: flex;
}

.content-container.hotel-guest .button-group .btn {
    text-transform: uppercase;
}

#mealSection {
    transition: all 0.3s ease-in-out;
}

#toggleMealSection,
.capture-new-layer .sheetAdd,
.accordion-content #openModalBtnCreateLayer {
    margin-bottom: 20px;
    margin-top: 5px;
    font-size: 19.5px;
    font-weight: 400;
    background-color: transparent;
    color: var(--ci-blue-100);
    padding-left: 0;
}

.accordion-content #openModalBtnCreateLayer {
    margin: 30px 0 0 10px;
}

#toggleMealSection:hover,
#toggleMealSection:active,
#toggleMealSection:focus,
.capture-new-layer .sheetAdd:hover,
.capture-new-layer .sheetAdd:focus,
.capture-new-layer .sheetAdd:active {
  color: #fff!important;
}

#showMealTypes tbody td  {
    color: var(--ci-grey-20);
}

#showMealTypes button {
    background-color: transparent;
    border: none;
    height: 25px;
}

#showMealTypes svg {
    height: 25px;
}

#showMealTypes tbody .reservation-action-item.show-type {
    margin-left: -3px;
}

#showMealTypes tbody .edit-button-show-table,
#shift-table tbody .edit-button-show-table {
    margin-right: -10px;
}

.meal-config-wrapper {
    display: block;
    width: 100%;
}

.detail-section.meal-config-wrapper .detail-section.breakfast-container {
    margin: 20px 0 0 0;
}

.content-container.hotel-guest .flex-select {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.hotel-guest .toggleSwitch input[type="checkbox"]:checked::before {
    background-color: var(--ci-blue-100);
}

.content-container.hotel-guest .meal-row {
font-size: 14px;
font-weight: 500;
}

.content-container.hotel-guest .meal-row div {
    height: 33px;
}

.content-container.hotel-guest .meal-row input{
    margin-bottom: 0;
}

.form-section-third {
    padding-bottom: 30px;
}

.accordion-row td {
    padding: 0;
    background-color: var(--ci-grey-85);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.accordion-content {
    display: block;
    animation: slideDown 0.3s ease-out; 
}

.accordion-content .flex-select {
    border-bottom: 1px solid var(--ci-grey-60);
}

#showMealTypes .accordion-row td {
    padding: 0;
}

#showMealTypes .accordion-row .accordian-flex.room {
    padding-left: 5px;
}
  
#showMealTypes .accordion-content {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
  
#body-section,
.content-container.hotel-guest {
  width: 100% !important;
  max-width: none !important;
}

.accordion-wrapper {
    width: 100%;
    background-color: var(--ci-grey-80);
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}
  
.accordion-content {
    max-width: 100%;
    overflow-x: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: var(--ci-grey-95);
}
  
.hotel-guest #body-section h4,
.hotel-guest #body-section h6 {
    display: flex;
}

  select.configured {
    border: 1px solid var(--ci-blue-100) !important;
    background-color:  var(--ci-grey-80);
    color: var(--ci-blue-100);
    font-weight: 500;
  }
  input.filled {
    border: 1px solid var(--ci-blue-100) !important;
    background-color:  var(--ci-grey-80);
    color: var(--ci-blue-100);
    font-weight: 500;
}
input.filled, select.configured {
    border: 1px solid var(--ci-blue-100) !important;
    background-color: var(--ci-grey-80);
    color: var(--ci-blue-100);
    font-weight: 500;
}

  #mealForm .toggle-button.active {
    background-color: var(--ci-blue-100);
    color: white;
}

.flex-select-start {
    display: flex;
}

.form-section-four {
    width: 25%;
    margin-left: 10px;
    display: flex;
}

.form-section-four .toggle-button.active {
    background-color: var(--ci-blue-100)!important;
    color: #fff!important;
}

.detail-section .form-section-four h6 {
    margin-bottom: 10px;
}

#keepTableBtn {
    height: 40px;
    min-width: 90px;
    padding-inline: 1em;
    margin-right: 10px;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-40);
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    border-radius: 3px;
    justify-content: center;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.info-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: var(--ci-blue-100);
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    cursor: default;
    position: relative;
    z-index: 1000;
}

.info-icon.reservision {
    position: absolute;
    top: 0;
    right: -10px;
}

.custom-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    max-width: 200px;      
    white-space: normal;   
    word-break: break-word;
    z-index: 9999;
    display: none;
    pointer-events: none;
}

.info-icon:hover::after {
    opacity: 1;
}

#shiftTable button {
    background-color: transparent;
    border: none;
    padding: 0;
    width: 30px;
}

.accordion-content #shiftTable tbody tr:nth-child(odd) .active-row {
    box-shadow:
    inset 0  6px 0 0 var(--ci-grey-76),  
    inset 0 -3px 0 0 var(--ci-grey-76),  
    inset 0 0 0 0 var(--ci-grey-76),  
    inset 0 0 0 0 var(--ci-grey-76);
}

.accordion-content #shiftTable tbody tr:nth-child(even) .active-row {
    box-shadow:
    inset 0  6px 0 0 var(--ci-grey-85),  
    inset 0 -4px 0 0 var(--ci-grey-85),  
    inset 0 0 0 0 var(--ci-grey-85),  
    inset 0 0 0 0 var(--ci-grey-85);
}

#shiftTable td .delete-shift-row svg {
    margin-right: -7px;
}

#shiftTable button svg {
    width: 100%;
}

.modal-content .modal-flex {
    display: flex;
    padding: 10px 20px 20px 20px;
}

.modal-content .modal-flex.times div {
    display: flex;
    justify-content: center;
    text-align: center;
}

.modal-content .modal-flex.times div .time-blocked {
    display: block;
}

.modal-content .modal-flex div,
.modal-content .modal-flex select,
.modal-content .modal-flex label {
    width: 100%;
    color: #fff;
}

.modal-content .modal-flex input,
.modal-content .modal-flex select {
    background-color: var(--ci-grey-70);
    border: none;
    height: 40px;
}

.modal-content .modal-flex .input-full,
.modal-content .modal-flex select {
    width: 95%;
}

.modal-content .height-label {
    height: 40px;
}

.modal-content .modal-flex.buttons {
    display: flex;
    justify-content: space-around;
    background-color: var(--ci-grey-100);
    padding-top: 30px;
}

.modal-content .modal-flex.buttons button {
    padding: 5px 25px;
    font-size: 16px;
    background-color: var(--ci-blue-100);
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 5px;
}

.modal-content .modal-flex.buttons button:hover {
    background-color: var(--ci-blue-50);
}

.modal-content.package-modal .modal-flex input {
    width: 100%;
}

#saveTimePicker, 
#closeTimePicker {
    background-color: var(--ci-grey-85);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
}

#saveTimePicker:hover, 
#closeTimePicker:hover {
    background-color: var(--ci-blue-100);
}

.accordion-content .accordian-flex {
    margin-right: 10px;
}

.accordian-flex select option {
    white-space: pre-line;
}  

.accordian-flex.room {
    padding-right: 5px;
}

.accordion-content #packages-added thead tr,
.accordion-content #shiftTable thead tr,
.breakfast-container tbody tr:nth-child(odd) {
    background-color: var(--ci-grey-80);
}

.accordion-content #shiftTable thead tr {
    background-color: var(--ci-grey-85);
}

.accordion-content #shiftTable tbody tr td:first-child {
    padding-left: 5px ;
}

.accordion-content #mealForm .add-packages-btn {
    background-color: var(--ci-grey-76);
    height: 45px;
}

#showMealTypes .accordion-content .button-group button {
    background-color: var(--ci-grey-76);
    height: 45px;
    margin-right: 10px;
}

#showMealTypes .accordion-content .button-group button:hover {
    background-color: var(--ci-blue-100);
}

#showMealTypes .accordion-content .button-group {
   display: flex;
   justify-content: flex-end;
}

.accordion-content #mealForm .add-packages-btn:hover,
.accordion-content .button-group .btn:hover {
    background-color: var(--ci-blue-100);
    color: #fff;
}

.accordion-content #mealForm .add-shift-table:hover {
    background-color: transparent;
    color: #fff;
}

.content-container.hotel-guest td.active-row {
    background-color: var(--ci-blue-100) !important;
    border-bottom: 1px solid var(--ci-grey-80);
}

#shiftTable tbody tr:nth-child(even) td.active-row {
    background-color: var(--ci-blue-90) !important;
}

.content-container.hotel-guest td.active-row svg {
    --fill: #fff;
}

.content-container.hotel-guest tbody tr svg {
    margin-bottom: -6px;
}

.breakfast-container table {
    width: 100%;
}

.breakfast-container table button {
    padding: 0;
    border: none;
    background-color: transparent;
    width: 20px;
    margin: 0;
}

.breakfast-container table .breakfast-actions button {
    width: 120px;
    background-color: var(--ci-grey-76);
    padding: 10px;
    color: #fff;
    transition: background-color 0.3s ease;
    border-radius: 3px;
    margin-left: 10px;
}

.breakfast-container table .breakfast-actions button:hover {
   background-color: var(--ci-blue-100);
}

.breakfast-container table svg {
   width: 100%;
}

.content-container.hotel-guest .breakfast-container th {
    border: none;
    padding: 10px;
}

.content-container.hotel-guest .breakfast-container td {
    padding: 8px;
}

.breakfast-container th {
    background-color: var(--ci-grey-85);
    color: var(--ci-blue-100);
}

.breakfast-container .add-meal-type-button {
   width: 100%;
   display: flex;
   justify-content: center;
   margin-top: 20px;
}

.breakfast-container .edit-meal-type  {
    width: 23px;
}

.breakfast-container tbody td {
    font-size: 14px;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-30);
    padding: 10px;
    text-align: start;  
}

.content-container.hotel-guest .add-meal-type-button .btn {
    width: 100%;
    margin: 0;
}

.content-container.hotel-guest #toggleMealSectionCapture {
    font-size: 16px;
    font-weight: 500;
}

.breakfast-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

#mealTypesContainer .add-meal-type {
    border-bottom: 1px solid var(--ci-grey-70);
}

.breakfast-title,
.new-layer {
    font-size: 20px;
    color: var(--ci-blue-100);
}

.add-new-layer-headline-btn{
    padding-top: 20px;
    border-bottom: 1px solid var(--ci-grey-70);
} 

.new-layer {
    padding: 25px 0;
}

.breakfast-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #fff;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.rate-code-info p {
    color: var(--ci-blue-100);
    margin: 0;
}

.breakfast-info button {
    background-color: var(--ci-blue-100);
    min-width: 35px;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
}

.breakfast-info .system-options {
    width: 100%;
    display: flex;
    padding: 3px;
}

.breakfast-edit-icon {
    cursor: pointer;
    fill: #aaa;
    transition: fill 0.3s;
}

.breakfast-info-icon {
    width: 30px;
}

.breakfast-table {
    width: 100%;
    margin-bottom: 20px;
}

.breakfast-table-header {
    display: flex;
    padding: 10px 20px;
    color: var(--ci-blue-100);
}

.breakfast-row {
    display: flex;
    padding: 1px 10px;
    align-items: center;
}

.breakfast-row:last-child {
    border-bottom: none;
}

.breakfast-edit-icon {
    position: absolute;
    right: 20px;
    cursor: pointer;
    fill: #aaa;
    transition: fill 0.3s;
}

.breakfast-edit-icon:hover {
    fill: var(--ci-blue-100);
}

.breakfast-subsection {
    background-color: #4a4a4a;
    padding: 20px 30px;
    border-radius: 5px;
    width: 100%;
}

.accordion-content-wrapper {
    padding: 0;
    background-color: #4a4a4a;
}

.breakfast-subsection-title {
    color: var(--ci-blue-100);
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
}

.breakfast-button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.breakfast-button-group label {
    height: 100%;
}

.content-container.hotel-guest .breakfast-button-group input[type="checkbox"].checkbox-square {
    margin-top: -8px;
    margin-left: 10px;
}

.breakfast-button {
    background-color: #666;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breakfast-button:hover {
    background-color: #555;
}

.breakfast-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.breakfast-actions button {
   padding: 10px 16px;
   margin-left: 10px;
}

.breakfast-actions button:hover {
    background-color: var(--ci-blue-100);
    cursor: pointer;
    color: #fff;
 }

.breakfast-save-btn {
    background-color: var(--ci-blue-100);
    color: var(--ci-grey-20);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.breakfast-cancel-btn {
    background-color: #555;
    color: var(--ci-grey-20);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: not-allowed;
}

.edit-breakfast {
    width: 25px;
    border: none;
    background-color: transparent;
    padding: 0;
}

.breakfast-table tbody td,
.breakfast-table thead th {
    color: var(--ci-grey-30);
}

.breakfast-table tbody td.blue-breakfast-text,
.breakfast-table thead th {
    color: var(--ci-blue-100);
}
.breakfast-table thead th {
    background-color: var(--ci-grey-85);
    padding: 10px;
}

.breakfast-table tbody tr:nth-child(even),
.breakfast-container tbody tr:nth-child(even) {
    background-color: var(--ci-grey-85);
}

.breakfast-table tbody tr:nth-child(odd) {
    background-color: var(--ci-grey-76);
}

#reservisionBreakfastTable .breakfast-button-group .breakfast-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 3px;
    background-color: #666;
    color: #fff;
    user-select: none;
    transition: all 0.3s ease;
    width: 100%;
}

.breakfast-item.active label {
    color: var(--ci-blue-100);
}

.breakfast-item input[type="checkbox"] {
    margin-left: 20px;
}

.detail-section.breakfast-container {
    margin: 30px 0 0 0;
    width: 100%;
}

.detail-section.breakfast-container tbody td {
    padding: 5px;
}

.detail-section.breakfast-container tbody .accordion-row td {
    padding: 0;
}

.comma-td .comma {
   padding-right: 10px;
}

.comma-td .comma-div:last-child .comma {
    display: none;
}

.content-container.hotel-guest #clock-wrapper {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999; 
    justify-content: center;
    align-items: center;
}

.content-container.hotel-guest .clock-timepicker-hour-canvas {
  padding: 0;
}

.content-container.hotel-guest #clock-wrapper svg{
    width: 350px;
}
  
.content-container.hotel-guest .thour:hover {
    fill: var(--ci-blue-100);
    cursor: pointer;
}

.content-container.hotel-guest .hours,
.content-container.hotel-guest .minutes {
    fill: #4c4a49;
    transition: fill 0.3s ease;
}

.content-container.hotel-guest .hours:hover,
.content-container.hotel-guest .minutes:hover,
.content-container.hotel-guest .hours.selected,
.content-container.hotel-guest .minutes.selected {
    fill: var(--ci-blue-100);
    cursor: pointer;
}

.icon-rate-codes {
    display: flex;
    align-items: center;
}

.breakfast-container table .icon-rate-codes svg {
   width: 30px;
   margin-top: -9px;
   margin-right: 10px;
}

.breakfast-container table .icon-rate-codes p {
    margin: 0;
    color: var(--ci-grey-20);
}

.content-container.hotel-guest #clock-wrapper tspan {
    fill: #4c4a49;
}

.hours.enabled-hour,
.thour.enabled-hour {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.hours.enabled-hour.selected,
.thour.enabled-hour.selected-hour {
    fill: var(--ci-blue-100) !important;
    stroke: #fff;
}

.hours.enabled-hour:not(.selected),
.thour.enabled-hour:not(.selected-hour) {
    fill: var(--ci-blue-50);
    stroke: #4c4a49;
}

.hours.disabled-hour,
.thour.disabled-hour {
    opacity: 1;
    cursor: default;
    fill: #4c4a49 !important;
    pointer-events: none;
    stroke: var(--ci-grey-76);
}

.minutes.enabled-minute,
.tminute.enabled-minute {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.minutes.enabled-minute.selected,
.tminute.enabled-minute.selected-minute {
    fill: var(--ci-blue-100) !important;
    stroke: #fff;
    fill: #fff;
}

.minutes.enabled-minute:not(.selected),
.tminute.enabled-minute:not(.selected-minute) {
    fill: var(--ci-blue-50);
    stroke: #4c4a49;
}

.content-container.hotel-guest #clock-wrapper tspan:hover {
    fill: white;
    stroke: white;
}

.content-container.hotel-guest #clock-wrapper #clock .hours.hover {
    fill:#4cc0df!important;  
    stroke: #fff !important;
}
  
.content-container.hotel-guest #clock-wrapper tspan.thour:hover {
    fill: #fff;
    stroke: #fff;
}
  
#clock .mbs, #clock .mbt, #clock .ibs, #clock .ibt, #clock .obs, #clock .obt {
    pointer-events: none;
}
 
.content-container.hotel-guest #clock-wrapper #clock tspan.thour.bg-hover {
    fill: #fff;
    stroke: #fff;
}
 
.content-container.hotel-guest #clock-wrapper #clock .minutes.hover {
    fill: #4cc0df !important; 
    stroke: #fff !important;
}

.content-container.hotel-guest #clock-wrapper #clock tspan.tminute.bg-hover {
    fill: #fff;
    stroke: #fff;
}

#clock tspan.thour.enabled-hour,
#clock tspan.tminute.enabled-minute {
    cursor: pointer;
    pointer-events: auto; 
}
  
.minutes.disabled-minute,
.tminute.disabled-minute {
    cursor: default;
    fill: #4c4a49 !important;
    pointer-events: none;
    stroke: var(--ci-grey-76);
}
  
.hour-container g {
    stroke: var(--ci-grey-70)
}
#filter-table {
   margin: -3px 5px 0;
   cursor: pointer;
   opacity: 1;
   transition: opacity 0.3s ease;
   padding-bottom: 9px;
}

#filter-table.inactive {
    opacity: 0.2;
}

#filter-table img {
    width: 40px;
}

.inline-package-input {
    background-color: transparent;
    border: 1px solid var(--ci-blue-100);
    color: var(--ci-blue-100);
    padding: 10px;
    height: 40px;
    width: 95%;
}

.border-error,
.rc-ms-btn.border-error {
    border: 1px solid #d15f6e!important;
}

.border-ok,
.rc-ms-btn.configured {
    border: 1px solid  var(--ci-blue-100)!important; 
}

.form-section .rc-multi .rc-ms-btn {
    border: 1px solid transparent; 
}

.content-container.hotel-guest .detail-section.capture-new-layer {
    margin: 0;
    width: 100%;
    padding: 0;
}

.content-container.hotel-guest .pull-right {
    margin-left: 10px;
}

#shift-table .trow {
    display: grid;
    grid-template-columns: 5rem 1fr 1fr 9rem;
    column-gap: 0.5rem;
    padding-left: 1rem;
}

#shift-table .table-head.trow {
    color: var(--ci-blue-100);
    font-weight: 400;
}

#shift-table .table-body .trow {
    background-color: var(--ci-grey-80);
    height: 42px;
    align-items: center;
    font-size: 1.1rem;
}

#shift-table .table-body .trow:nth-child(even) {
    background-color: var(--ci-grey-85);
}

#shift-table .trow output {
    display: initial;
    padding: 0;
    color: var(--ci-grey-20);
    font-size: 14px;
    font-weight: 500;
}

#shift-table .table-body .trow .controls {
    justify-self: end;
    height: 100%;
    display: flex;
    max-width: 125px;
}

#shift-table .table-body .trow .controls button,
#shift-table .table-body .trow .controls .checkbox {
    height: 100%;
    width: unset;
    aspect-ratio: 1 / 1;
    margin: 0;
    padding: 0;
    appearance: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ci-grey-60);
    cursor: pointer;
}

#shift-table .table-body .trow .controls .checkbox {
    background-color: var(--ci-grey-76);
}

#shift-table .table-body .trow:nth-child(even) .controls .checkbox {
    background-color: var(--ci-grey-85);
}

#shift-table .table-body .trow .controls .checkbox input {
    display: none;
    width: 0;
    height: 0;
    appearance: none;
}

.hotel-guest #body-section {
    margin-top: 0;
}

#shift-table .table-body .trow .controls .checkbox:has(input:checked) {
    color: #fff;
    background-color: var(--ci-blue-90);
    border-bottom: 1px solid var(--ci-grey-80);
}

#shift-table .table-body .trow:nth-child(even) .controls .checkbox:has(input:checked) {
    color: #fff;
    background-color: var(--ci-blue-100);
}

#shift-table .table-body .trow .controls button {
    background-color: transparent;
}

#shift-table .table-body .trow .controls svg {
    aspect-ratio: 1 / 1;
    height: 60%;
    --fill: currentColor;
}

#shift-table .table-body .trow .controls .edit-button-show-table{
    margin-right: -10px;
}

#donutChart {
    background-color: #333;
    border-radius: 50%;
}

#donutChartModal {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#donutChart {
    width: 300px;
    height: 300px;
}

#donutChart .segment {
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6)); 
    transform-origin: 150px 150px; 
}

#donutChart .segment:hover {
    transform: scale(1.05); 
    filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.9)); 
}

#donutChart text {
    font-size: 14px;
    fill: white;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

#settingForm #body-section h4 {
    font-weight: 300;
}

#showMealTypes .accordion-content button {
    padding: 20px;
    background-color: var(--ci-grey-76);
    display: flex;
    align-items: center;
}

#showMealTypes .accordion-content .add-shift-table {
    background-color: transparent;
    padding-left: 0;
    display: flex;
}

#showMealTypes .accordion-content .add-shift-table:hover {
    color: #fff;
}

#showMealTypes .accordion-content td button {
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}

.wildcard-wrap-container {
    display: block;
}

.wildcard-wrap-title,
.wildcard-wrap {
    display: flex;
}

.wildcard-wrap {
    margin-top: 6px;
}

#rate_wildcard{
    width: 100%;
    background-color: var(--ci-grey-80);
    color: var(--ci-grey-20);
    padding: 6px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    padding: 4.5px;
    padding-left: 10px;
    height: 40px;
}

#settingForm .wildcard-title {
    color: var(--ci-blue-100);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

#settingForm .accordion-content label {
    display: flex;
    justify-content: flex-start;
}

.wc-row {
    margin-right: 10px;
}

.border-error {
    border: 1px solid #d15f6e!important;
    box-shadow: 0 0 0 2px rgba(229,57,53,.12);
  }
  .border-ok {
    border: 1px solid #2e7d32 !important;
    box-shadow: 0 0 0 2px rgba(46,125,50,.12);
  }
  
.with-inline-icon {
    justify-content: center;
}

.with-inline-icon .inline-svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 18px;
    pointer-events: none;
    opacity: 1;
    transition: opacity .15s ease;
    fill: #d15f6e;
}
  
.with-inline-icon.has-value .inline-svg {
    opacity: 0;
}

.content-container.hotel-guest input[type="checkbox"].checkbox-square.fcfs-sync-locked:checked{
    background-color: var(--ci-grey-50);
    opacity: 0.5;
    cursor: not-allowed;
    border: none;
}
  
.rc-multi { 
    position:relative; 
    width:100%; 
    padding-right: 10px;
}

.rc-ms-btn {
    width:100%; 
    display:flex; 
    align-items:center; 
    justify-content:space-between;
    padding:10px 12px; 
    border-radius: 3px; 
    background:var(--ci-grey-80);
    color: var(--ci-grey-20);
    color:#fff; 
    cursor:pointer;
}

.rc-ms-btn .rc-text { 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    font-size: 14px;
    font-weight: 400;
    color: var(--ci-grey-20);
}

.rc-caret { 
    margin-left: 10px;
    border: solid var(--ci-grey-30);
    border-width: 0 2px 2px 0; 
    padding: 3px; 
    transform: rotate(45deg); 
}

.rc-menu {
    position:absolute; 
    top:calc(100% + 6px); 
    left:0; 
    width:100%;
    background:var(--ci-grey-90);
    color:var(--ci-grey-20);
    border-radius: 3px;  
    padding:8px 0; z-index:9999; display:none;
}

.rc-menu.open { 
    display:block; 
}

.rc-sep { 
    height:1px; 
    background:rgba(255,255,255,.12); 
    margin:6px 0; 
}

.rc-row { 
    display:flex; 
    align-items:center; 
    gap:10px; 
    padding:10px 12px; 
    cursor:pointer; 
}

.rc-row:hover { 
    background:var(--ci-grey-80);
}

.rc-check {
    width:24px; 
    height:24px; 
    border-radius: 3px; 
    display:grid; 
    place-items:center;
    border:1px solid rgba(255,255,255,.18);
    background:#585755;
}

.rc-check svg { 
    width:16px; 
    height:16px; 
    display:none; 
}

.rc-row.active .rc-check { 
    background:var(--ci-blue-100);
    color: #fff;
    border-radius: 3px;
}

.rc-row.active .rc-check svg { 
    display:block; 
    fill:#fff;
}

.rc-label { 
    flex:1 1 auto; 
}

.rc-header { 
    position:relative; 
    font-weight:600; 
}

.rc-badge{
    position:absolute; 
    right:12px; 
    top:10px; 
    background:var(--ci-blue-100);
    color:#fff;
    min-width:25px; 
    height:25px; 
    border-radius:3px; 
    display:none; 
    place-items:center;
    font-weight:700; 
    padding:0 6px; 
    font-size:12px;
}

#rate_code.rc-hidden { 
    display:none !important; 
}

#clock-wrapper.duration-mode #shadow{
    -webkit-clip-path: circle(35.8% at 50% 50%);
    clip-path: circle(35.8% at 50% 50%);
}
  
#clock-wrapper:not(.duration-mode) #shadow{
    -webkit-clip-path: none;
    clip-path: none;
}

.clock-flex-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.clock-fcfs-option {
    margin: 0;
}

.clock-flex-wrapper #fcfsButton,
.clock-flex-wrapper #clockCancelBtn {
    padding: 10px;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-10);
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px; 
    font-weight: 500;
    border: none;
    height: 40px;
}

.clock-flex-wrapper #fcfsButton:hover,
.clock-flex-wrapper #clockCancelBtn:hover {
    background-color: var(--ci-blue-100);
    color:#fff;
    cursor: pointer;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    background-color: var(--ci-grey-76);
    color: var(--ci-grey-30);
  }
  
  .custom-dropdown-selected {
    display: flex;                  
    align-items: center;           
    justify-content: center;
    height: 40px;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid var(--ci-grey-60);
    border-radius: 3px;
}
  
.custom-dropdown-selected.has-value,
.custom-dropdown-selected.has-value {
    display: block;
    border: 1px solid var(--ci-blue-100);
}
  
.custom-dropdown-selected.has-value .shift-title,
.custom-dropdown-selected.has-value .shift-time {
    color: var(--ci-blue-100);
}

.custom-dropdown-selected::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ci-grey-30);
    border-bottom: 2px solid var(--ci-grey-30);
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}
  
.custom-dropdown-selected.has-value::after {
    opacity: 0;
}
  
.custom-dropdown-options {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--ci-grey-80);
}
  
.custom-dropdown-options li {
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: #fff;
    border-bottom: 1px solid var(--ci-grey-85);
}
  
.custom-dropdown-options li:hover {
    background-color: var(--ci-grey-76);
}
  
.custom-dropdown.open .custom-dropdown-options {
    display: block;
    padding: 0;
}

@media only screen and (min-width: 1770px) {
    .hotel-guest-auto-reservision-container {
        display: flex;
    }
}

#modalForm.is-reset-all-tables .modal-dialog.confirm-reset-all-tables {
    max-width: 500px;
    width: 100%;
}
