/* ============================================================
                      DASHBOARD 
   ============================================================ */

/* Reporting */
.ReportingDashboard {
  height: 100%;
  position: relative;
}

  .ReportingDashboard .k-card, .dashboard .report-widget.k-card {
    background-color: var(--softtec-medium-blue1) !important;
  }

    .ReportingDashboard .k-card i, .dashboard .report-widget.k-card i {
      color: white !important;
      background-color: var(--softtec-medium-blue1) !important;
    }

  .ReportingDashboard .k-card-title, .dashboard .report-widget .k-card-title {
    color: white !important;
    text-align: center;
    padding-top: 0.5rem;
  }

  .ReportingDashboard .Period, .dashboard .Period {
    text-align: center !important;
    color: white !important;
    width: 100%;
  }

  .ReportingDashboard .k-card .Handles, .dashboard .k-card .Handles {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

    .ReportingDashboard .k-card .Handles, .dashboard .k-card .Handles.anticon:hover {
      opacity: 0.9;
    }

      .ReportingDashboard .k-card .Handles .icon, .dashboard .k-card .Handles .icon {
        font-size: 1.5rem;
        color: var(--softtec-medium-blue1);
        background-color: var(--softtec-white);
        border-radius: 1em;
        margin-right: 0;
        padding: 2px;
      }

  .ReportingDashboard .k-card-header, .dashboard .report-widget.k-card-header {
    padding: 0.5rem;
    padding-bottom: 0;
  }

  .ReportingDashboard .k-card .Content, .dashboard .k-card .Content {
    color: white !important;
    padding-top: 1rem;
    width: 100%;
  }

    .ReportingDashboard .k-card .Content:hover .Wrapper, .dashboard .k-card .Content:hover .Wrapper {
      cursor: pointer;
      opacity: 0.8;
    }

    .ReportingDashboard .k-card .Content > .Wrapper, .dashboard .k-card .Content > .Wrapper {
      display: grid;
      border-right: 1px solid var(--softtec-white);
      padding-right: 1rem;
    }


      .ReportingDashboard .k-card .Content > .Wrapper.Gauge, .dashboard .k-card .Content > .Wrapper.Gauge {
        align-items: center;
        justify-items: center;
      }

  .ReportingDashboard .k-card .MainContent, .dashboard .k-card .MainContent {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px !important;
    font-weight: bold;
    white-space: initial;
    word-break: break-all;
    height: 100%;
  }

  .ReportingDashboard .k-card .SubContent, .dashboard .k-card .SubContent {
    word-wrap: anywhere;
    white-space: normal;
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
    font-size: 0.9rem !important;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100%;
  }

.report-btns button {
  display: flex;
  align-items: center;
  text-align: left;
}

  .report-btns button span.text {
    width: 100%;
    text-align: center;
  }


/*arrow color when move telerik-row*/
.k-drop-hint-line {
  background-color: var(--softtec-dark-blue);
}

.k-drop-hint-h .k-drop-hint-start {
  border-left-color: var(--softtec-dark-blue);
}

.k-drop-hint-h .k-drop-hint-end {
  border-right-color: var(--softtec-dark-blue);
}

.k-drop-hint-v .k-drop-hint-start {
  border-top-color: var(--softtec-dark-blue);
}

.k-drop-hint-v .k-drop-hint-end {
  border-bottom-color: var(--softtec-dark-blue);
}

/*-------------------------------------------------------------*/
/*
progress
Dashboard and ReportingDashboard progress*/

.progress {
  display: flex;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: conic-gradient(#4c6e8e var(--progress), #e5ebef 0deg);
  animation: 1.5s ease-out turn_in reverse;
  color: var(--softtec-medium-blue1);
}

  .progress + b {
    color: var(--softtec-medium-blue1);
  }

  .progress::after {
    content: attr(data-progress);
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 10px;
    border-radius: 50%;
    background: var(--softtec-light-blue2);
    font-size: 1.6rem;
    font-family: 'Montserrat-Bold';
    text-align: center;
    outline: 1px solid var(--softtec-medium-blue1);
    outline-offset: -.5rem;
  }

@keyframes turn_in {
  5% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .95), var(--softtec-light-blue1) 0deg);
  }

  10% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .9), var(--softtec-light-blue1) 0deg);
  }

  15% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .85), var(--softtec-light-blue1) 0deg);
  }

  20% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .8), var(--softtec-light-blue1) 0deg);
  }

  25% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .75), var(--softtec-light-blue1) 0deg);
  }

  30% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .7), var(--softtec-light-blue1) 0deg);
  }

  35% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .65), var(--softtec-light-blue1) 0deg);
  }

  40% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .6), var(--softtec-light-blue1) 0deg);
  }

  45% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .55), var(--softtec-light-blue1) 0deg);
  }

  50% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .5), var(--softtec-light-blue1) 0deg);
  }

  55% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .45), var(--softtec-light-blue1) 0deg);
  }

  60% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .4), var(--softtec-light-blue1) 0deg);
  }

  65% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .35), var(--softtec-light-blue1) 0deg);
  }

  70% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * 0.3), var(--softtec-light-blue1) 0deg);
  }

  75% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * 0.25), var(--softtec-light-blue1) 0deg);
  }

  80% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .2), var(--softtec-light-blue1) 0deg);
  }

  85% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .15), var(--softtec-light-blue1) 0deg);
  }

  90% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .1), var(--softtec-light-blue1) 0deg);
  }

  95% {
    background: conic-gradient(var(--softtec-medium-blue1) calc(var(--progress) * .05), var(--softtec-light-blue1) 0deg);
  }

  100% {
    background: conic-gradient(var(--softtec-light-blue1) 0deg);
  }
}

/*#region dashboard-Widgets & dashboard-View-Widgets & dashboard-settings-modal & dashboard-widget-view-modal*/
.dashboard-settings-modal {
  width: fit-content;
  height: 100%;
  max-width: 100vw !important;
  max-height: calc(100vh - 4rem) !important;
}

  .dashboard-settings-modal .modal-body:not(.dashboard-widget-view-modal) {
    padding-right: 0 !important;
    border-radius: 0;
  }

body:has(.page) .dashboard-settings-modal:has(.dashboard-widget-view-modal) {
  padding: 0 24.4rem 0 26rem !important;
  margin: 0;
  width: 100vw;
}

body:has(.page.widgetbar-minimized) .dashboard-settings-modal:has(.dashboard-widget-view-modal) {
  padding-right: 5.4rem !important;
}

body:has(.page.nav-minimized) .dashboard-settings-modal:has(.dashboard-widget-view-modal) {
  padding-left: 7rem !important;
}

.dashboard-settings-modal .dashboard-widget-view-modal {
  padding: 1.5rem 1.5rem 0 0 !important;
}

.dashboard-widget-view-modal .modal-content {
  position: relative;
}

.dashboard-settings-modal:has(.dashboard-widget-view-modal),
.dashboard-settings-modal:has(.dashboard-widget-view-modal) .modal-content,
.dashboard-settings-modal:has(.dashboard-widget-view-modal) {
  background: transparent !important;
  border: none !important;
  box-shadow: unset !important;
}

  .dashboard-settings-modal:has(.dashboard-widget-view-modal) .modal-header {
    display: none !important;
  }

.dashboard-widget-view-modal {
  padding: 0 !important;
}

  .dashboard-widget-view-modal .k-tilelayout-item-header {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
  }

    .dashboard-widget-view-modal .k-tilelayout-item-header .k-card-title {
      font-size: var(--font-size-14) !important;
    }

  .dashboard-widget-view-modal .dashboard-view {
    padding: 0 !important;
    gap: 1rem !important;
    border-radius: 8px;
    background: transparent;
  }

    .dashboard-widget-view-modal .dashboard-view .k-tilelayout-item-body .k-grid .k-grid-aria-root {
      padding: 0 !important;
      border-radius: 0;
    }

  .dashboard-widget-view-modal.registrationforms .dashboard-view > div,
  .dashboard-widget-view-modal.expiringoptions .dashboard-view > div {
    grid-column-start: 2;
    margin-right: 10%;
    margin-left: -10%;
  }

  .dashboard-widget-view-modal.payments .dashboard-view > div,
  .dashboard-widget-view-modal.delayedinvoices .dashboard-view > div {
    grid-column-start: 2;
  }

  .dashboard-widget-view-modal.rooms .dashboard-view > div,
  .dashboard-widget-view-modal.guestbirthdays .dashboard-view > div {
    grid-column-start: 3;
    margin-right: 16%;
    margin-left: -16%;
  }

  .dashboard-widget-view-modal.occupancyrooms .dashboard-view > div {
    grid-column-start: 4;
    margin-right: 50%;
    margin-left: -50%;
  }

.k-tilelayout-item-body .k-grid {
  border-color: var(--softtec-light-blue2) !important;
}

.k-tilelayout h5.k-card-title {
  font-size: 1.4rem !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 7rem;
  display: block !important;
  align-self: center;
}

.k-tilelayout .k-card-body {
  display: flex;
  flex-direction: column;
}

.k-tilelayout .k-card.dashboard-table .k-card-body {
  gap: 1rem;
}

.res-info-tile h5.k-card-title {
  white-space: nowrap;
  word-break: unset;
  height: 3rem;
  display: flex !important;
}

.res-info-tile .k-card-header {
  flex-wrap: nowrap !important;
}

  .res-info-tile .k-card-header a {
    padding: .7rem 0 .7rem .8rem;
  }

/*cards background-color and font color*/
.k-tilelayout .k-card-header,
.k-tilelayout .k-card-title,
.k-tilelayout .k-card-body {
  background-color: transparent;
}

.card-green {
  background-color: var(--dashboard-checkin-bg) !important;
}

.card-apricot {
  background-color: var(--dashboard-checkout-bg) !important;
}

.card-champagne {
  background-color: var(--dashboard-stayover-bg) !important;
}

.card-green * {
  color: var(--dashboard-checkin-color) !important;
}

.card-apricot * {
  color: var(--dashboard-checkout-color) !important;
}

.card-champagne * {
  color: var(--dashboard-stayover-color) !important;
}

.card-green .res-info-box img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(28%) saturate(416%) hue-rotate(72deg) brightness(95%) contrast(94%);
  -webkit-filter: brightness(0) saturate(100%) invert(39%) sepia(28%) saturate(416%) hue-rotate(72deg) brightness(95%) contrast(94%);
}

.card-apricot .res-info-box img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(6%) saturate(3379%) hue-rotate(321deg) brightness(101%) contrast(86%);
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(6%) saturate(3379%) hue-rotate(321deg) brightness(101%) contrast(86%);
}

.card-champagne .res-info-box img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(12%) saturate(1975%) hue-rotate(356deg) brightness(96%) contrast(89%);
  -webkit-filter: brightness(0) saturate(100%) invert(46%) sepia(12%) saturate(1975%) hue-rotate(356deg) brightness(96%) contrast(89%);
}
/*#endregion*/
/*----------------------------------------------------------------------------*/
.collapse-card-body .card-body {
  padding: 0 2rem 2rem 2rem;
}

.st-navbar a, .st-navbar a:visited {
  color: #4c6e8e;
}

  .st-navbar a:hover {
    color: var(--softtec-dark-blue);
    cursor: pointer;
    font-weight: bold
  }

.card-header .form-control {
  background-color: var(--softtec-white);
}

.k-tilelayout-item:not(.card-green):not(.card-apricot):not(.card-champagne) .k-tilelayout-item-header .form-control,
.k-tilelayout-item:not(.card-green):not(.card-apricot):not(.card-champagne) .k-tilelayout-item-header .form-select {
  background-color: var(--softtec-white) !important;
  border-color: transparent !important;
}

/*#region Custom cards*/
.widget-card {
  background-color: var(--softtec-white) !important;
  max-height: 60rem;
  min-height: 45rem;
}

.offer-manager-card {
  background-color: var(--softtec-white);
  height: calc(100vh - 7rem);
  max-height: calc(100vh - 7rem);
  min-height: 66rem;
}

.widget-card .st-grid {
  height: 100%;
  width: 100%;
}

  .widget-card .st-grid td,
  .widget-card .st-grid tr td {
    vertical-align: top !important;
    height: fit-content;
    padding: 1rem;
  }

.widget-card .card-header .form-select,
.widget-card .card-header .form-control {
  background-color: var(--softtec-light-blue2) !important;
  border-color: transparent !important;
}

.widget-card .checkin-widget-table,
.widget-card .stayover-widget-table,
.widget-card .checkout-widget-table {
  padding: 0 !important;
}

.dashboard-layout .position-relative.w-100 {
  min-width: 15rem !important;
}

.widget-container .position-relative.w-100 {
  width: 14rem !important;
}

/*#endregion*/

body:has(.widget-popup-modal) {
  position: relative;
  overflow: hidden !important;
  max-height: 100vh;
}

.widget-popup-modal {
  z-index: 9996 !important;
}


body:has(.page) .widget-popup-modal {
  width: calc(100vw - 51.7rem) !important;
  max-width: calc(100vw - 51.7rem) !important;
  padding: 0;
  margin-right: 1.5rem;
  height: 60rem;
}

body:has(.page.widgetbar-minimized) .widget-popup-modal,
body:has(.page.nav-minimized) .widget-popup-modal {
  width: calc(100vw - 33rem) !important;
  max-width: calc(100vw - 33rem) !important;
}

body:has(.page.nav-minimized.widgetbar-minimized) .widget-popup-modal {
  width: calc(100vw - 13.7rem) !important;
  max-width: calc(100vw - 13.7rem) !important;
}
.widget-popup-modal .ant-tooltip-content {
  width: 100%;
}

.widget-popup-modal .ant-tooltip-inner {
  background-color: var(--softtec-white);
  border-radius: 8px;
  color: var(--softtec-medium-blue1);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.35);
  width: 100%;
  padding: 0;
  margin-top: -6.5rem;
}

.widget-popup-modal.offer-manager .ant-tooltip-inner {
  margin-top: 23rem !important;
}

.widget-popup-modal.widget-1 .ant-tooltip-inner {
  margin-top: 24rem !important;
}

.widget-popup-modal.widget-14 .ant-tooltip-inner,
.widget-popup-modal.widget-22 .ant-tooltip-inner {
  margin-top: -6rem !important;
}

.widget-popup-modal.widget-2 .ant-tooltip-inner,
.widget-popup-modal.widget-3 .ant-tooltip-inner,
.widget-popup-modal.widget-4 .ant-tooltip-inner,
.widget-popup-modal.widget-13 .ant-tooltip-inner {
  margin-top: 18rem !important;
}

.widget-popup-modal.widget-12 .ant-tooltip-inner {
  margin-top: 5rem !important;
}

.widget-popup-modal.widget-5 .ant-tooltip-inner,
.widget-popup-modal.widget-6 .ant-tooltip-inner,
.widget-popup-modal.widget-7 .ant-tooltip-inner,
.widget-popup-modal.widget-8 .ant-tooltip-inner {
  margin-top: 8rem !important;
}

.widget-popup-modal .ant-tooltip-arrow-content::before {
  background: white !important;
}

.widget-popup-modal .tippy-content {
  padding: 0 !important;
}

@media (max-height: 800px) {
  .widget-popup-modal.widget-3 .ant-tooltip-inner,
  .widget-popup-modal.widget-8 .ant-tooltip-inner {
    margin-top: 10rem !important;
  }

  .widget-popup-modal.widget-7 .ant-tooltip-inner,
  .widget-popup-modal.widget-9 .ant-tooltip-inner,
  .widget-popup-modal.widget-12 .ant-tooltip-inner {
    margin-top: 6rem !important;
  }

  .widget-popup-modal.widget-13 .ant-tooltip-inner,
  .widget-popup-modal.widget-14 .ant-tooltip-inner,
  .widget-popup-modal.widget-15 .ant-tooltip-inner {
    margin-top: 17rem !important;
  }

  .widget-popup-modal.widget-1 .ant-tooltip-inner,
  .widget-popup-modal.widget-10 .ant-tooltip-inner,
  .widget-popup-modal.widget-11 .ant-tooltip-inner {
    margin-top: 25rem !important;
  }
}

.reservation-details-table .k-grid .k-toolbar {
  color: var(--softtec-dark-blue) !important;
  background-color: var(--softtec-field-border-color) !important;
}

.reservation-details-table .grid-actions .k-grid-search {
  background-color: var(--softtec-white) !important;
}

.generate_compressed_view-container {
  height: 3rem;
  padding: .2rem 1rem .2rem .4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  margin-right: .5rem;
}

  .generate_compressed_view-container .st-switch-button {
    height: 2.4rem;
    padding: 0 .2rem;
    width: 4.6rem;
  }

  .generate_compressed_view-container .st-switch-button-input + label {
    padding: 0;
  }

  .generate_compressed_view-container .st-switch-button-label {
    margin: .2rem 0;
  }

.card-body.offer-body .show-validation .invalid-range .ant-picker-range {
  width: 100%;
}

/*Dashborad + Widget Bar (Checkin-Widget)*/
.checkin-btn {
  width: 100% !important;
  min-width: fit-content !important;
  border: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 2rem !important;
  vertical-align: super !important;
  color: var(--softtec-medium-blue1) !important;
}

  .checkin-btn > span {
    color: var(--softtec-medium-blue1);
    font-size: 1.5rem !important;
  }

  .checkin-btn.disabled {
    background-color: transparent !important;
    cursor: pointer;
    opacity: .5;
  }

.checkin-widget-table .rf-btn {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
  border-radius: 50%;
}

  .checkin-widget-table .rf-btn .rf-icon {
    height: 1.6rem;
    width: 1.6rem;
    -webkit-filter: unset !important;
    filter: unset !important;
    margin-left: 0.15rem;
  }

.checkin-widget-table .btn-green {
  background-color: var(--dashboard-checkin-color) !important;
  color: var(--softtec-white);
  font-size: var(--font-size-13) !important;
  border: 1px solid var(--dashboard-checkin-color) !important;
}

  .checkin-widget-table .btn-green:hover {
    background-color: var(--dashboard-checkin-bg);
  }

  .checkin-widget-table .btn-green.no-cursor,
  .checkin-widget-table .btn-green.no-cursor:hover {
    background-color: var(--dashboard-checkin-color) !important;
    color: var(--softtec-white);
    cursor: default;
    border: 1px solid var(--dashboard-checkin-color) !important;
  }

.checkin-widget-table .btn.st-button.no-border.btn-green.rf-btn.fa-regular.fa-paper-plane::before {
  margin-right: 0.2rem !important;
  margin-top: 0.1rem !important;
}

.checkin-widget-table .btn.st-button.no-border.btn-green.rf-btn.fa-regular.fa-paper-plane::before {
  margin-right: 0.2rem !important;
  margin-top: 0.1rem !important;
}

.checkin-widget-table .btn-registration-form {
  background-color: var(--softtec-medium-blue1);
  border: none;
  color: var(--softtec-medium-blue1);
  transition: all 0.2s;
}

.checkin-widget-table .registration-form-icon {
  height: 1.6rem;
  width: 1.6rem;
  color: var(--softtec-medium-blue1);
  margin-left: .15rem;
}

.checkout-widget-table .checkout-btn {
  color: var(--softtec-medium-blue1) !important;
  text-align: center;
  width: 100%;
  min-width: fit-content;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  height: 2rem;
  vertical-align: super;
}

  .checkout-widget-table.checkout-btn:hover {
    color: var(--softtec-dark-blue) !important;
  }

.checkout-widget-table .checkin-btn > span {
  font-size: var(--font-size-15) !important;
}

checkin-widget-table .k-grid td, .checkin-widget-table .k-grid th) {
  background-color: var(--dashboard-checkin-bg) !important;
  color: var(--dashboard-checkin-color);
  border-color: var(--dashboard-checkin-color)
}

.checkin-btn {
  width: 100%;
  min-width: fit-content;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  height: 2rem;
  vertical-align: super;
  color: var(--softtec-medium-blue1);
}
/*-------------------*/
/*#region checkin grid*/
.res-info-tile .res-info-box + .white-box.checkin-widget-table {
  background-color: var(--dashboard-checkin-bg) !important;
  border: 1px solid var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .k-grid td, .res-info-tile .checkin-widget-table .k-grid th {
  background-color: var(--dashboard-checkin-bg) !important;
  color: var(--dashboard-checkin-color);
  border-color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .k-grid .k-grid-aria-root,
.res-info-tile .checkin-widget-table .st-textbox-input,
.res-info-tile .checkin-widget-table .k-grid-content,
.res-info-tile .checkin-widget-table .k-grid-norecords {
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .st-buttondropdown-button {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.res-info-tile .checkin-widget-table .k-grid {
  border: none !important;
  height: 100%;
  padding: 0 !important;
  border-radius: 0;
}

.res-info-tile .checkin-widget-table .st-grid:has(tr:first-child.k-grid-norecords),
.res-info-tile .checkin-widget-table .k-grid-container {
  border-radius: 0;
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .k-grid-header-wrap table thead tr {
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .k-grid-content table tbody .k-master-row .k-selected {
  background-color: var(--dashboard-checkin-bg) !important;
  color: var(--dashboard-checkin-color);
}

.res-info-tile .checkin-widget-table .k-grid-header {
  border: none !important;
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .k-grid .k-icon, .res-info-tile .checkin-widget-table .k-input-value-text {
  color: var(--dashboard-checkin-color) !important;
}


.res-info-tile .checkin-widget-table .running-registration {
  display: flex !important;
  justify-content: space-between !important;
}

  .res-info-tile .checkin-widget-table .running-registration div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

.res-info-tile .checkin-widget-table a {
  font-size: 12pt !important;
}

.res-info-tile .checkin-widget-table .st-grid-row-sticky {
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .st-grid-column-header-title {
  color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .st-grid-table-body-row {
  background-color: var(--dashboard-checkin-bg) !important;
}

.res-info-tile .checkin-widget-table .st-grid-column-rowcell {
  color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .st-grid-table-body-row > td > span {
  text-align: center;
}

.res-info-tile .checkin-widget-table .k-table-th {
  background-color: var(--dashboard-checkin-bg);
}

.res-info-tile .checkin-widget-table .k-grid .k-grid-header .k-grid-header-menu:hover,
.res-info-tile .checkin-widget-table .k-grid-header .k-grid-header-menu.k-active {
  background-color: var(--dashboard-checkin-bg) !important;
  border: 1px solid var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .k-grid-header .k-grid-header-menu:focus {
  box-shadow: inset 0 0 0 2px var(--dashboard-checkin-color);
}

.res-info-tile .checkin-widget-table span, .res-info-tile .checkin-widget-table .k-table-td {
  color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table ::-webkit-scrollbar {
  background: var(--dashboard-checkin-bg);
  height: 0.7rem;
  width: 0.7rem;
}

.res-info-tile .checkin-widget-table ::-webkit-scrollbar-thumb:horizontal, .res-info-tile .checkin-widget-table ::-webkit-scrollbar-thumb:vertical {
  background: var(--dashboard-checkin-color);
  border: 0 !important;
}

.res-info-tile .checkin-widget-table ::-webkit-scrollbar-track {
  background: var(--dashboard-checkin-bg);
}

.res-info-tile .checkin-widget-table ::-webkit-scrollbar-corner {
  background: var(--dashboard-checkin-bg);
}

.res-info-tile .checkin-widget-table .st-grid tbody tr:hover {
  background-color: var(--dashboard-checkin-hover-color) !important;
}

.res-info-tile .checkin-widget-table .k-grid-header-wrap table th {
  color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .btn-registration-form {
  background-color: var(--dashboard-checkin-bg) !important;
  border: 1px solid var(--dashboard-checkin-color) !important;
  color: var(--dashboard-checkin-color) !important;
}

.res-info-tile .checkin-widget-table .registration-form-icon {
  filter: brightness(0) saturate(100%) invert(41%) sepia(13%) saturate(845%) hue-rotate(72deg) brightness(92%) contrast(95%) !important;
  color: var(--dashboard-checkin-color);
}
/*#endregion*/


/*-----------------------------------------------------*/
/*#region checkout grid*/
.res-info-tile .res-info-box + .white-box.checkout-widget-table {
  background-color: var(--dashboard-checkout-bg) !important;
  border: 1px solid var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .k-grid td, .res-info-tile .checkout-widget-table .k-grid th {
  background-color: var(--dashboard-checkout-bg) !important;
  color: var(--dashboard-checkout-color);
  border-color: var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .k-grid .k-grid-aria-root,
.res-info-tile .checkout-widget-table .st-textbox-input,
.res-info-tile .checkout-widget-table .k-grid-content,
.res-info-tile .checkout-widget-table .k-grid-norecords {
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .k-grid {
  border: none !important;
  height: 100%;
  padding: 0 !important;
  border-radius: 0;
}

.res-info-tile .checkout-widget-table .st-grid:has(tr:first-child.k-grid-norecords),
.res-info-tile .checkout-widget-table .k-grid-container {
  border-radius: 0;
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .k-grid-header-wrap table thead tr {
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .k-grid-content table tbody .k-master-row .k-selected {
  background-color: var(--dashboard-checkout-bg) !important;
  color: var(--dashboard-checkout-color);
}

.res-info-tile .checkout-widget-table .k-grid-header {
  border: none !important;
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .k-grid .k-icon, .res-info-tile .checkout-widget-table .k-input-value-text {
  color: var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .st-grid-row-sticky {
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .st-grid-column-header-title {
  color: var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .st-grid-table-body-row {
  background-color: var(--dashboard-checkout-bg) !important;
}

.res-info-tile .checkout-widget-table .st-grid-column-rowcell {
  color: var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .st-grid-table-body-row > td > span {
  text-align: center;
}

.res-info-tile .checkout-widget-table .k-table-th {
  background-color: var(--dashboard-checkout-bg);
}

.res-info-tile .checkout-widget-table .k-grid .k-grid-header .k-grid-header-menu:hover,
.res-info-tile .checkout-widget-table .k-grid-header .k-grid-header-menu.k-active {
  background-color: var(--dashboard-checkout-bg) !important;
  border: 1px solid var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table .k-grid-header .k-grid-header-menu:focus {
  box-shadow: inset 0 0 0 2px var(--dashboard-checkout-color);
}

.res-info-tile .checkout-widget-table span, .res-info-tile .checkout-widget-table .k-table-td {
  color: var(--dashboard-checkout-color) !important;
}

.res-info-tile .checkout-widget-table ::-webkit-scrollbar {
  background: var(--dashboard-checkout-bg);
  height: 0.7rem;
  width: 0.7rem;
}

.res-info-tile .checkout-widget-table ::-webkit-scrollbar-thumb:horizontal, .res-info-tile .checkout-widget-table ::-webkit-scrollbar-thumb:vertical {
  background: var(--dashboard-checkout-color);
  border: 0 !important;
}

.res-info-tile .checkout-widget-table ::-webkit-scrollbar-track {
  background: var(--dashboard-checkout-bg);
}

.res-info-tile .checkout-widget-table ::-webkit-scrollbar-corner {
  background: var(--dashboard-checkout-bg);
}

.res-info-tile .checkout-widget-table .st-grid tbody tr:hover {
  background-color: var(--dashboard-checkout-hover-color) !important;
}

.res-info-tile .checkout-widget-table .k-grid-header-wrap table th {
  color: var(--dashboard-checkout-color) !important;
}
/*#endregion*/


/*-----------------------------------------------------*/
/*#region stayover grid*/
.res-info-tile .res-info-box + .white-box.stayover-widget-table {
  background-color: var(--dashboard-stayover-bg) !important;
  border: 1px solid var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .k-grid td, .res-info-tile .stayover-widget-table .k-grid th {
  background-color: var(--dashboard-stayover-bg) !important;
  color: var(--dashboard-stayover-color);
  border-color: var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .k-grid .k-grid-aria-root,
.res-info-tile .stayover-widget-table .st-textbox-input,
.res-info-tile .stayover-widget-table .k-grid-content,
.res-info-tile .stayover-widget-table .k-grid-norecords {
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .k-grid {
  border: none !important;
  height: 100%;
  padding: 0 !important;
  border-radius: 0;
}

.res-info-tile .stayover-widget-table .st-grid:has(tr:first-child.k-grid-norecords),
.res-info-tile .stayover-widget-table .k-grid-container {
  border-radius: 0;
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .k-grid-header-wrap table thead tr {
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .k-grid-content table tbody .k-master-row .k-selected {
  background-color: var(--dashboard-stayover-bg) !important;
  color: var(--dashboard-stayover-color);
}

.res-info-tile .stayover-widget-table .k-grid-header {
  border: none !important;
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .k-grid .k-icon, .res-info-tile .stayover-widget-table .k-input-value-text {
  color: var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .st-grid-row-sticky {
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .st-grid-column-header-title {
  color: var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .st-grid-table-body-row {
  background-color: var(--dashboard-stayover-bg) !important;
}

.res-info-tile .stayover-widget-table .st-grid-column-rowcell {
  color: var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .st-grid-table-body-row > td > span {
  text-align: center;
}

.res-info-tile .stayover-widget-table .k-table-th {
  background-color: var(--dashboard-stayover-bg);
}

.res-info-tile .stayover-widget-table .k-grid .k-grid-header .k-grid-header-menu:hover,
.res-info-tile .stayover-widget-table .k-grid-header .k-grid-header-menu.k-active {
  background-color: var(--dashboard-stayover-bg) !important;
  border: 1px solid var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table .k-grid-header .k-grid-header-menu:focus {
  box-shadow: inset 0 0 0 2px var(--dashboard-stayover-color);
}

.res-info-tile .stayover-widget-table span, .res-info-tile .stayover-widget-table .k-table-td {
  color: var(--dashboard-stayover-color) !important;
}

.res-info-tile .stayover-widget-table ::-webkit-scrollbar {
  background: var(--dashboard-stayover-bg);
  height: 0.7rem;
  width: 0.7rem;
}

.res-info-tile .stayover-widget-table ::-webkit-scrollbar-thumb:horizontal, .res-info-tile .stayover-widget-table ::-webkit-scrollbar-thumb:vertical {
  background: var(--dashboard-stayover-color);
  border: 0 !important;
}

.res-info-tile .stayover-widget-table ::-webkit-scrollbar-track {
  background: var(--dashboard-stayover-bg);
}

.res-info-tile .stayover-widget-table ::-webkit-scrollbar-corner {
  background: var(--dashboard-stayover-bg);
}

.res-info-tile .stayover-widget-table .st-grid tbody tr:hover {
  background-color: var(--dashboard-stayover-hover-color) !important;
}

.res-info-tile .stayover-widget-table .k-grid-header-wrap table th {
  color: var(--dashboard-stayover-color) !important;
}
/*#endregion*/

