/* Base css start */

/* google fonts cdn */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* font family */
  --figtree: "Figtree", sans-serif;

  /* colors */
  --foreground: #14151a;
  --foreground-secondary: #0f132499;
  --foreground-tertiary: rgba(13, 17, 38, 0.4);
  --border: #dee0e3;
  --divider: #e9eaec;
  --red: #e6483d;
  --light-red: #f7c3c0;
  --green-100: #edfdf4;
  --gray-accent: #5e636e;
}
/* Firefox */
* {
  scrollbar-width: thin;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

a,
button {
  transition: all 0.3s;
}
a {
  text-decoration: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
select {
  -webkit-appearance: none;
  appearance: none;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}
body {
  font-family: var(--figtree);
  color: var(--foreground);
}
.theme-btn {
  height: 40px;
  padding-inline: 16px;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  letter-spacing: -0.1px;
}
.theme-btn__icon {
  width: 20px;
}
.theme-btn:hover {
  background-image: linear-gradient(to bottom, #1a3405, #30590e);
  color: #fff;
}
.theme-btn--outline {
  box-shadow: 0px 1px 2px 0px #14151a0d;
  border: 1px solid var(--border);
  background-color: transparent;
  color: var(--foreground);
}
.theme-btn--outline:hover {
  color: #fff;
  border: 0;
}
.theme-btn--transparent {
  background-color: transparent;
  color: var(--foreground-secondary);
}
.theme-btn--sm {
  height: 32px;
  font-size: 14px;
  border-radius: 10px;
}
.theme-btn--md {
  height: 35px;
  font-size: 14px;
}

.text-divider::before,
.text-divider::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: var(--divider);
}

.divider {
  height: 1px;
  background-color: var(--border);
}

/* Base tooltip style */
.custom-tooltip {
  --bs-tooltip-bg: #fff;
  --bs-tooltip-color: var(--foreground);
  --bs-tooltip-opacity: 1;
  --bs-tooltip-max-width: 160px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 16px -3px rgba(20, 21, 26, 0.05);
}

/* Tooltip inner text */
.custom-tooltip .tooltip-inner {
  text-align: left !important;
  white-space: normal !important;
  width: 160px !important;
  padding: 4px 8px;
}

/* Tooltip arrow */
.custom-tooltip .tooltip-arrow {
  display: none;
}

/* Base css end */

/* login section start */
.login {
  background-image: linear-gradient(to bottom, #1a3405, #30590e);
  padding-block: 100px;
}
.logo {
  width: 136px;
}
.login .logo {
  top: 36px;
}
.login__form {
  border-radius: 16px;
  border: 1px solid var(--border);
  max-width: 442px;
  width: 100%;
}
.form__title {
  font-size: 24px;
  line-height: 32px;
}
.form__header p {
  color: var(--foreground-secondary);
  letter-spacing: -0.2px;
}
.form__input-field {
  height: 40px;
  padding-inline: 16px;
  box-shadow: 0px 1px 2px 0px #14151a0d;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
}
.form__input-icon {
  width: 20px;
  pointer-events: none;
}
.form__input-btn {
  right: 12px;
}
.form__text-btn {
  color: inherit;
}
.form__footer-label {
  font-size: 14px;
  color: var(--foreground-secondary);
}
.form__error-msg {
  font-size: 14px;
  color: var(--red);
  line-height: 20px;
  padding-block: 2px;
  display: none;
}
.has-error .form__error-msg {
  display: flex;
}
.has-error .form__input-field {
  border-color: var(--light-red);
}

.toast-container {
  padding: 32px;
}
.toast {
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--green-100);
  box-shadow: 0 10px 16px -3px rgba(20, 21, 26, 0.05), 0 3px 10px -2px rgba(20, 21, 26, 0.02);
  width: 400px;
}
.toast__wrapper {
  padding: 16px;
  gap: 12px;
}
.toast__icon {
  width: 20px;
  margin-top: 2px;
}
.toast__title {
  line-height: 1.5;
}
.toast__desc {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: var(--foreground-secondary);
}
.toast__close-btn img {
  width: 20px;
}
/* login section end */

/* sidebar start */
.sidebar {
  background-image: linear-gradient(180deg, #1a3405 0%, #30590e 100%);
  height: 100vh;
  width: 280px;
  position: sticky;
  top: 0;
  left: 0;
}
.sidebar__header {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.sidebar__logo-img {
  width: 96px;
}
.sidebar__actions-btn img {
  width: 20px;
}
.sidebar__actions-btn {
  border-radius: 10px;
  background-color: transparent;
}
.sidebar__actions-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.sidebar__body {
  padding-block: 20px;
}
.sidebar__nav-item {
  padding: 2px 8px;
}
.sidebar__nav-link {
  padding: 6px 8px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  letter-spacing: -0.1px;
  border-radius: 10px;
}
.sidebar__nav-link.active,
.sidebar__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.sidebar__nav-link img {
  width: 20px;
}
.sidebar__nav-title {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.sidebar__profile {
  padding: 12px 16px;
}
.sidebar__profile-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--gray-accent);
  font-size: 14px;
  letter-spacing: -0.1px;
}
.sidebar__profile-title h6 {
  font-size: 14px;
  letter-spacing: -0.1px;
  line-height: 20px;
}
.sidebar__profile-status {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  border-radius: 4px;
  background-color: rgba(244, 142, 47, 0.25);
}
.sidebar__profile-content p {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.sidebar-toggle {
  width: 28px;
  height: 28px;
  background-image: linear-gradient(180deg, #1a3405 0%, #30590e 100%);
  color: #fff;
}
.sidebar-toggle svg {
  width: 20px;
}
.overlay {
  background-color: var(--foreground-secondary);
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
/* sidebar end */

/* dashboard section start */
.dashboard {
  flex: 1;
  min-width: 0;
  padding: 32px;
}
.dashboard__title h1 {
  font-size: 24px;
  line-height: 1.33;
  letter-spacing: -0.3px;
}
.progress-circle {
  position: relative;
  width: 32px;
  height: 32px;
}
.progress-ring {
  transform: rotate(-90deg);
}
.progress-ring__bg {
  fill: none;
  stroke: var(--divider);
  stroke-width: 3;
}
.progress-ring__progress {
  fill: none;
  stroke: #f48e2f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 87.96;
  stroke-dashoffset: 45;
  transition: stroke-dashoffset 0.5s ease;
}
.progress-icon {
  width: 12px;
}
.dashboard__nav-link {
  color: var(--foreground-secondary);
  padding-block: 10px 14px;
  letter-spacing: -0.2px;
}
.dashboard__nav-link:hover {
  color: var(--foreground);
}
.dashboard__nav-link::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #26bd6c;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
.dashboard__nav-link.active::after {
  opacity: 1;
}
.dashboard__nav {
  border-bottom: 1px solid var(--border);
}
.dashboard__nav-link.active {
  color: var(--foreground);
}
.text-sm {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
}

/* filter style start */
.filter__select {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  background-color: #fff;
  height: 32px;
  padding-inline: 32px;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.filter__dropdown-icon {
  width: 16px;
  left: 10px;
  pointer-events: none;
}
.filter__dropdown-icon--chevron {
  left: auto;
  right: 10px;
}
.filter__dropdown--vittoria {
  max-width: 232px;
  width: 100%;
}
.filter__tab {
  gap: 12px;
}
.filter__tab-btns {
  padding: 2px;
  gap: 2px;
  background-color: rgba(10, 15, 41, 0.08);
  border-radius: 10px;
}
.filter__tab-btn {
  width: 36px;
  height: 26px;
  background-color: transparent;
  border: 0;
}
.filter__tab-btn img {
  width: 18px;
}
.filter__tab-btn.active {
  background-color: #ffff;
  border: 1px solid var(--border);
}
.filter__nav-btn {
  width: 30px;
  height: 30px;
  border-right: 1px solid var(--border) !important;
}
.filter__nav-btn img {
  width: 16px;
}
.filter__nav {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  overflow: hidden;
}
.filter__nav-btn:last-child {
  border-right: 0 !important;
}
.filter__nav-btn:hover {
  background-color: var(--border) !important;
}
.toggle-switch-container {
  gap: 12px;
  cursor: pointer;
}
.toggle-switch {
  width: 28px;
  height: 16px;
  background-color: #babdc5;
  border: 2px solid transparent;
  display: flex;
  transition: all 0.3s;
}
.toggle-switch::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  transition: all 0.3s ease-in-out;
}
.toggle-switch-container input:checked ~ .toggle-switch {
  background-color: #26bd6c;
}
.toggle-switch-container input:checked ~ .toggle-switch::after {
  transform: translateX(12px);
}
.filter__btns {
  gap: 2px;
}
.filter__btn {
  gap: 6px;
  padding: 6px 10px;
  background-color: rgba(10, 15, 41, 0.04);
  border-radius: 10px;
  cursor: pointer;
}
.filter__btn-icon {
  width: 16px;
}
.filter__btn-icon--eye-off {
  display: none;
}
.filter__btn input:checked ~ .filter__btn-icon--eye {
  display: none;
}
.filter__btn input:checked ~ .filter__btn-icon--eye-off {
  display: block;
}
.filter__btn input:checked ~ span {
  color: rgba(10, 15, 41, 0.25);
}
.filter__last-updated p {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}
/* filter style end */

.data-cards .row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}
.dashboard__widget .data-cards .row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}
.data-card__header {
  width: 100%;
  text-align: left;
  padding: 24px;
}
.data-card {
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  background-color: #f7f7f8;
}
.data-card__title h6 {
  color: var(--foreground-secondary);
  flex: 1;
}
.data-card__header h5 {
  line-height: 1.4;
  letter-spacing: -0.2px;
}
.data-card__header h5 span {
  color: rgba(13, 17, 18, 0.4);
}
.data-card__body {
  background-color: #f7f7f8;
  padding: 24px;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.data-card__info-title {
  color: var(--foreground-secondary);
  padding-bottom: 2px;
}
.data-card__info h5 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}
.data-card__info h5 span {
  color: rgba(13, 17, 18, 0.4);
}
.data-card__status {
  font-size: 14px;
  line-height: 20px;
  color: #166e3f;
  letter-spacing: -0.1px;
  padding: 1px 7px;
  border: 1px solid rgba(10, 15, 41, 0.08);
  background-color: #d1fae4;
}
.data-card.selected {
  border: 2px solid #26bd6c;
  background-image: linear-gradient(0deg, #f3fef8 0%, #f3fef8 100%);
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
}
.data-card.selected .data-card__body {
  background-color: transparent;
}

.dashboard__widget {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  padding: 24px;
}
.dashboard__widget-title-container img {
  width: 20px;
}
.dashboard__widget-title {
  line-height: 1.4;
  letter-spacing: -0.2px;
}
.dashboard__widget-title span {
  color: var(--foreground-secondary);
}
.dashboard__action-btn img {
  width: 20px;
}

.dashboard__chart {
  max-width: 240px;
}
.dashboard__chart--fluid {
  max-width: 100%;
}
.dashboard__chart--fluid canvas {
  width: 100%;
}
/* Custom Tooltip */
.chartjs-tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e6eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  padding: 12px;
  font-size: 12px;
  color: #14151a;
  pointer-events: none;
  transition: all 0.15s ease;
  opacity: 0;
  transform: translate(-50%, -120%);
  width: 176px;
}

.chartjs-tooltip .tooltip-title {
  color: #4778f5;
  font-weight: 700;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
}

.chartjs-tooltip .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}

.chartjs-tooltip .tooltip-row:last-child {
  margin-bottom: 0;
}
.chartjs-tooltip .tooltip-row span:last-child {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
}
/* custom tooltip end */

.chart-legend__title {
  color: var(--foreground-secondary);
}
.chart-legend__item span:last-child {
  color: var(--foreground-secondary);
}
.chart-legend__item {
  gap: 12px;
  padding-left: 14px;
}
.chart-legend__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #4778f5;
}
.chart-legend__item:nth-child(2)::before {
  background-color: #166e3f;
}
.chart-legend__item:nth-child(3)::before {
  background-color: #f48e2f;
}
.chart-legend__item:nth-child(4)::before {
  background-color: #a265eb;
}
.chart-legend__item:nth-child(5)::before {
  background-color: #c8cad0;
}
.chart-legend__divider {
  flex: 1;
  height: 1px;
  background-color: var(--divider);
}

.dashboard__close-btn {
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(20, 21, 26, 0.05);
  width: 32px;
  height: 32px;
}
.dot {
  width: 10px;
  height: 10px;
}
.dot--purple {
  background-color: #924fe8;
}
.dot--green {
  background-color: #26bd6c;
}
.dot--blue {
  background-color: #4778f5;
}
.dot--orange {
  background-color: #f48e2f;
}

/* price calendar section start */
.price-calendar {
  border-top: 1px solid var(--border);
}
.event-calendar {
  margin-right: -32px;
}
.calendar-control__item {
  padding: 14px 10px;
  gap: 10px;
  border-radius: 10px 0 0 10px;
  background-color: #f7f7f8;
  min-width: 200px;
}
.calendar-control__title {
  font-size: 12px;
  line-height: 16px;
  flex: 1;
}
.calendar-control__btn img {
  width: 16px;
}
.room {
  gap: 12px;
  padding-right: 10px;
}
.room__icon {
  width: 16px;
}
.room__title {
  font-weight: 700;
  margin-bottom: 2px;
}
.room__subtitle {
  font-size: 12px;
  line-height: 16px;
  color: var(--foreground-secondary);
}
.room__content {
  flex: 1;
}
.event-calendar__table tr td:first-child {
  min-width: 233px;
  border-right: 1px solid var(--border);
}
.event-calendar__table tr:not(:first-child) td {
  border-bottom: 1px solid var(--border);
}
.event-calendar__table {
  border-spacing: 4px 0;
  border-collapse: separate;
}
.event-calendar__table td:not(:first-child) {
  background-color: #f4f6f2;
  min-width: 106px;
  padding: 8px 5px;
}
.event-calendar__table tr:first-child td:not(:first-child) {
  border-radius: 8px 8px 0 0;
}
.event-calendar__table td.bg-light-green {
  background-color: #e9ede6;
}
.event-calendar__table td.bg-light-orange {
  background-color: #fdead8;
}
.calendar-day__name {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}
.weather {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
  gap: 3px;
}
.weather__icon {
  width: 10px;
}
.calendar-day__label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  margin-bottom: 10px;
}
.calendar-day__event {
  gap: 3px;
  padding: 2px;
  height: 20px;
  font-size: 12px;
  line-height: 16px;
  color: #ae590a;
  background-color: #fdead8;
  border: 1px solid rgba(10, 15, 41, 0.08);
}
.calendar-day__event img {
  width: 14px;
}
.calendar-day__event--note {
  color: #133a9a;
  background-color: #e3eafd;
}
.calendar-day__event--empty {
  opacity: 0;
}
.calendar-day__event--add {
  background-color: #e9eaec;
  color: var(--foreground-secondary);
}

.calendar-progress {
  padding-block: 11px;
}
.calendar-progress__label {
  font-size: 10px;
  line-height: 14px;
}
.calendar-progress__bar {
  width: 84px;
  max-width: 100%;
  height: 8px;
  background-color: #e9eaec;
  border-radius: 8px;
}
.calendar-progress__bar-inner {
  background-color: #26bd6c;
  border-radius: inherit;
}
.calendar-progress__bar--red .calendar-progress__bar-inner {
  background-color: #e6483d;
}
.calendar-progress__bar--purple .calendar-progress__bar-inner {
  background-color: #924fe8;
}
.calendar-progress__bar--orange .calendar-progress__bar-inner {
  background-color: #f48e2f;
}
.day__details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: #fff;
}
.day__details-header {
  padding: 7px;
  min-height: 70px;
}
.day__details-header-title {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-tertiary);
  text-align: right;
}
.day__details-header .price__top {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}
.day__details-header .price__top span {
  color: var(--foreground-tertiary);
}
.day__details-header .price__bottom {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
}
.day__details-header .price__bottom {
  color: var(--foreground);
}
.day__details-header .price__bottom span {
  color: var(--foreground-secondary);
}
.price-comp {
  font-size: 10px;
  line-height: 14px;
  padding: 6px;
  background-color: rgba(230, 72, 61, 0.1);
}
.price-comp span {
  color: var(--foreground-tertiary);
}
.price-comp--light-green {
  background-color: rgba(38, 189, 108, 0.1);
}
.day__details-action-btn {
  width: 16px;
  height: 16px;
}
.day__details-header.bg-light-green {
  background-color: #edfdf4;
}
.day__details-row {
  padding: 8px;
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-tertiary);
  border-bottom: 1px solid var(--border);
}
.day__details-row .lock-icon {
  width: 12px;
  margin-right: 6px;
}
.day__details-row:last-child {
  border-bottom: 0;
}
.day__details-row h6 {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground);
}
.day__details-actions .divider {
  width: 1px;
  height: 14px;
  background-color: var(--border);
}

.day__details-body {
  display: none;
}
.collapsible-tr.expand .day__details-body {
  display: block;
}
.room .chevron-down {
  width: 16px;
  transition: all 0.3s;
}
.collapsible-tr.expand .room .chevron-down {
  transform: rotate(180deg);
}
/* price calendar section end */

/* dashboard section end */

/* theme modal start */
.theme-modal .modal-dialog {
  max-width: 400px;
}
.theme-modal .modal-content {
  border-color: var(--border);
}
.theme-modal .modal-title {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.2px;
}
.modal-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: var(--foreground-secondary);
  letter-spacing: -0.1px;
}
.form__input-field--textarea {
  min-height: 124px;
  padding-block: 10px;
  resize: none;
}
.modal-close-btn {
  width: 24px;
  height: 24px;
  background-color: rgba(10, 15, 41, 0.04);
  top: 16px;
  right: 16px;
}
.modal-close-btn img {
  width: 14px;
}
.modal-close-btn:hover {
  background-color: rgba(10, 15, 41, 0.1);
}
.modal-footer {
  padding: 20px;
  gap: 12px;
}
.theme-modal--edit-event .modal-dialog {
  max-width: 315px;
}
.theme-modal--edit-event .modal-header {
  padding: 20px 20px 12px 20px;
}
.theme-modal--edit-event .modal-content {
  border-radius: 12px;
}
.theme-modal .modal-title--sm {
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0;
}
.theme-modal--edit-event .modal-body {
  padding: 0 20px 20px;
}
.theme-modal .divider {
  height: 1px;
  background-color: var(--border);
}
.theme-modal__btns {
  gap: 12px;
}
.event__header {
  padding-block: 12px;
}
.event__subtitle {
  font-size: 12px;
  line-height: 17px;
}
.event__title {
  font-size: 22px;
  letter-spacing: -0.21px;
  line-height: 29px;
}

.event__infos {
  padding-block: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.event__info-subtitle {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}
.event__info-title {
  font-size: 31px;
  line-height: 38px;
  letter-spacing: -0.61px;
}
.event__info-title span,
.event__info-title sup {
  color: var(--foreground-tertiary);
}
.event__info-title sup {
  font-size: 0.6em;
  margin-left: 2px;
}
.event__tabs {
  margin-top: 12px;
  padding: 2px;
  gap: 2px;
  border-radius: 8px;
  background-color: rgba(10, 15, 41, 0.08);
}
.event__tabs-btn {
  width: 100%;
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
  padding: 0;
  height: 24px;
  border: 1px solid transparent !important;
  margin: 0 !important;
}
.event__tabs-btn.active {
  border-color: var(--border) !important;
}
.event__tab-content-container {
  padding-block: 12px;
}
.form__input-list {
  gap: 12px;
}
.form__input--sm .form__input-label {
  font-size: 12px;
  line-height: 17px;
}
.form__input--sm .form__input-field {
  height: 35px;
}
.form__input-field.has-icon {
  padding-inline: 36px;
}
.form__input-wrap {
  box-shadow: 0px 1px 2px 0px #14151a0d;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  padding-inline: 12px;
  gap: 2px;
}
.form__input-wrap .form__input-field.has-icon {
  padding-inline: 24px;
}
.form__input--sm .form__input-icon {
  width: 16px;
}
.event__statistics-list {
  gap: 12px;
}
.event__statistics-title {
  font-size: 12px;
  line-height: 17px;
}
.event__statistics-table {
  font-size: 10px;
  line-height: 14px;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.event__statistics-table th {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background-color: #f7f7f8;
}
.event__statistics-table th:first-child {
  border-left: 1px solid var(--border);
  border-top-left-radius: 10px;
}
.event__statistics-table th:last-child {
  border-right: 1px solid var(--border);
  border-top-right-radius: 10px;
}
.event__statistics-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}
.event__statistics-table tr td:first-child {
  border-left: 1px solid var(--border);
}
.event__statistics-table tr td:last-child {
  border-right: 1px solid var(--border);
}
.event__statistics-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.event__statistics-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.event__msg-icon {
  width: 15px;
}
.event__msg-desc {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}

.event__statistics-table-collapse-toggle td {
  border-bottom: 0;
}
.tr-toggle-icon-container {
  width: 38px;
}
.tr-toggle-icon {
  width: 15px;
  height: 15px;
  flex-direction: column;
}
.tr-toggle-icon::before,
.tr-toggle-icon::after {
  content: "";
  width: 8px;
  height: 1.24px;
  background-color: var(--foreground-secondary);
  transition: all 0.3s;
}
.tr-toggle-icon::after {
  transform: rotate(90deg);
  position: absolute;
}
.event__statistics-table-collapse-toggle[aria-expanded="true"] .tr-toggle-icon::after {
  opacity: 0;
}
.collapsible-tr__content h6 {
  font-size: 10px;
  line-height: 14px;
  color: var(--foreground-secondary);
}
.collapsible-tr__content p {
  font-size: 10px;
  line-height: 14px;
}
.collapsible-tr__content {
  padding: 8px;
}
.event__statistics-table tr {
  display: table;
  width: 100%;
}
.event__statistics-table tbody {
  display: block;
  max-height: 340px;
  overflow: auto;
}
/* theme modal end */

/* pickup section start */
.calendar__container {
  margin-inline: -32px;
  padding-inline: 32px;
  border-bottom: 1px solid var(--border);
}
.mc-calendar__wrapper {
  margin-right: -32px;
  padding-right: 32px;
}

/* custom calendar start */
/* Block: mc-calendar */
.mc-calendar {
  /* component-scoped tokens */
  --mc-text: var(--foreground-secondary);
  --mc-muted: #bfc5cd;
  --mc-weekday: rgba(10, 15, 41, 0.6);

  --mc-green: rgba(38, 189, 108, 0.15);
  --mc-red: rgba(230, 72, 61, 0.4);
  --mc-light: rgba(244, 142, 47, 0.15);
  --mc-orange: #f48e2f;

  --mc-underline: #f48e2f; /* orange bar */
  --mc-dot: #4778f5; /* blue event dot */
}
.mc-calendar__month {
  width: 288px;
  color: var(--mc-text);
  flex-shrink: 0;
}
.mc-calendar__header {
  padding-block: 8px;
}

.mc-calendar__title {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: var(--foreground);
}

.mc-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.mc-calendar__weekday {
  text-align: center;
  color: var(--mc-weekday);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 12px;
  line-height: 16px;
}

.mc-calendar__cell {
  position: relative;
  text-align: center;
  border-radius: 8px;
  -webkit-user-select: none;
  user-select: none;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

/* Modifiers */
.mc-calendar__cell--muted {
  color: var(--mc-muted);
}
.mc-calendar__cell--green {
  background-color: var(--mc-green);
}
.mc-calendar__cell--red {
  background-color: var(--mc-red);
}
.mc-calendar__cell--light {
  background-color: var(--mc-light);
}

.mc-calendar__cell--underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 4px;
  height: 3px;
  width: 26px;
  border-radius: 2px;
  background-color: var(--mc-underline);
}

.mc-calendar__cell--dot::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mc-dot);
}
.mc-calendar__cell:hover {
  outline: 2px solid rgba(52, 120, 246, 0.12);
  cursor: pointer;
}

.mc-calendar__legend {
  width: max-content;
  background-color: #f7f7f8;
  padding: 6px 12px;
}
.mc-calendar__legend-title {
  font-size: 12px;
  line-height: 16px;
}
.mc-calendar__legend-item {
  font-size: 12px;
  line-height: 16px;
  padding-left: 24px;
  position: relative;
}
.mc-calendar__legend-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: var(--mc-green);
}
.mc-calendar__legend-item--light::before {
  background-color: var(--mc-light);
}
.mc-calendar__legend-item--red::before {
  background-color: var(--mc-red);
}
.mc-calendar__legend-item--blue::before {
  background-color: var(--mc-dot);
  border-radius: 50%;
}
.mc-calendar__legend-item--orange::before {
  border-radius: 50%;
  background-color: var(--mc-orange);
}
/* custom calendar start */

/* pickup table start */
.pickup__table-wrapper {
  margin-right: -32px;
  padding-right: 32px;
}
.pickup__table > thead > tr th {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  color: var(--foreground-secondary);
  padding: 8px 12px;
  background-color: rgba(38, 189, 108, 0.15);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.pickup__table > thead > tr th.bg-light-orange {
  background-color: rgba(244, 142, 47, 0.15);
}
.pickup__table > thead > tr th.bg-light-purple {
  background-color: rgba(135, 61, 230, 0.15);
}
.pickup__table > thead > tr th.bg-light-blue {
  background-color: #f0f4fe;
}
.pickup__table > thead > tr th:first-child {
  border-left: 1px solid var(--border);
  border-top-left-radius: 10px;
  min-width: 160px;
  box-shadow: 0px 3px 6px -1px rgba(20, 21, 26, 0.08), 0px 2px 4px -1px rgba(20, 21, 26, 0.06);
}
.pickup__table > thead > tr th:last-child {
  border-top-right-radius: 10px;
  min-width: 340px;
}
.picker__subtable {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  border-collapse: collapse;
}
.picker__subtable th {
  padding: 8px 12px;
  background-color: #f7f7f8;
  font-weight: 400;
  color: var(--foreground-secondary);
}
.pickup__table > tbody > tr > td {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pickup__table > tbody > tr > td:first-child {
  border-left: 1px solid var(--border);
  border-bottom-left-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 3px 6px -1px rgba(20, 21, 26, 0.08), 0px 2px 4px -1px rgba(20, 21, 26, 0.06);
}
.pickup__table > tbody > tr > td:last-child {
  border-bottom-right-radius: 10px;
}
.picker__subtable tr td {
  height: 48px;
  padding-inline: 12px;
  max-height: 48px;
}
.pickup__table > thead > tr th:nth-child(2) {
  min-width: 420px;
}
.pickup__table > thead > tr th:nth-child(3) {
  min-width: 440px;
}
.pickup__table > thead > tr th:nth-child(4) {
  min-width: 680px;
}
.pickup__table > thead > tr th:nth-child(5) {
  min-width: 460px;
}
.pickup__table > thead > tr th:nth-child(6),
.pickup__table > thead > tr th:nth-child(7),
.pickup__table > thead > tr th:nth-child(8) {
  min-width: 680px;
}
.custom-price {
  width: 177px;
}
.picker__subtable tr:not(:last-child) {
  border-bottom: 1px solid var(--divider);
}
.picker__subtable tr td.bg-light-blue {
  background-color: rgba(51, 104, 240, 0.1);
}
.picker__subtable tr.muted {
  border-color: #e9eaec;
  color: var(--foreground-tertiary);
}
.picker__subtable tr.muted td {
  background-color: #e9eaec;
}
.picker__subtable .calendar-progress {
  padding: 0;
}
.picker__subtable .calendar-progress .calendar-progress__bar {
  width: 68px;
}
.picker__subtable tr.muted .calendar-progress {
  opacity: 0.2;
}
.table-chip {
  padding: 1px 7px;
  border: 1px solid rgb(10, 15, 41, 0.1);
  background-color: #d1fae4;
  color: #166e3f;
}
.table-chip--negative {
  color: #9a1c13;
  background-color: #fce5e4;
}
.picker__subtable tr.muted .table-chip {
  background-color: #edfdf4;
  color: rgba(38, 189, 108, 0.5);
}
.table-action-btn img {
  width: 16px;
}
.picker__subtable tr.muted .table-action-btn {
  opacity: 0.4;
}
/* pickup table end */

/* pickup section end */

/* rateshopper section start */
.map iframe {
  border-radius: 10px;
}
.shop-table__container {
  border: 1px solid var(--border);
  border-radius: 10px;
}
.shop-table {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.1px;
  min-width: 700px;
}
.shop-table th {
  font-weight: 400;
  padding: 8px 12px;
  color: var(--foreground-secondary);
  background-color: #f7f7f8;
}
.shop-table td {
  padding: 12px;
  border-bottom: 1px solid var(--divider);
  color: var(--foreground-secondary);
}
.shop-table tr:last-child td {
  border-bottom: 0;
}
.shop-icon {
  width: 40px;
  height: 40px;
  background-color: #ffff;
  border: 1px solid rgba(10, 15, 41, 0.08);
  margin-right: 12px;
}
.shop-table td h6 {
  margin-bottom: 2px;
  color: var(--foreground);
}
.shop-table tbody tr:hover {
  background-color: #edfdf4;
}
.shop-table tbody tr {
  transition: all 0.3s;
}
/* rateshopper section end */
