/**
 * @copyright kiss-inc. japan.
 * @author    Kanchun Nath <kanchunnath@gmail.com>
 */
/**
 * Global Default values
 */
.spinner-grow,
.spinner-border {
  display: inline-block;
  flex-shrink: 0;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

/**
 * Global Default values
 */
.spinner-grow,
.spinner-border {
  display: inline-block;
  flex-shrink: 0;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

/**
 * ui-datepicker
 *
 */
:root {
  --ui-datepicker-primary: var(--bs-primary);
  --ui-datepicker-header-bg: var(--bs-white);
  --ui-datepicker-header-color: var(--bs-primary);
}

.ui-datepicker {
  width: auto !important;
  margin-top: 2px;
  border: 1px solid #666;
  border-radius: 4px;
  background-color: white;
  overflow: hidden;
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.ui-datepicker-group {
  float: left;
}

.ui-datepicker-row-break {
  clear: both;
  height: 0;
  width: 100%;
}

.ui-datepicker-header {
  display: flex;
  padding: 1rem;
  line-height: 2em;
  background-color: var(--ui-datepicker-header-bg);
  color: var(--ui-datepicker-header-color);
  border-bottom: 1px solid var(--ui-datepicker-primary);
}
.ui-datepicker-header .ui-datepicker-title {
  flex-grow: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.ui-datepicker-header .ui-datepicker-title .ui-datepicker-month {
  font-size: 2em;
}
.ui-datepicker-header .ui-datepicker-title .ui-datepicker-year {
  margin-top: -2.2em;
}
.ui-datepicker-header .ui-corner-all {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 3em;
  width: 3em;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 2em;
  background-color: var(--ui-datepicker-header-bg);
  color: var(--ui-datepicker-header-color);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.ui-datepicker-header .ui-corner-all:hover {
  --ui-datepicker-header-bg: var(--bs-primary-light);
}
.ui-datepicker-header .ui-corner-all.ui-state-disabled {
  color: #fff;
  cursor: default;
}
.ui-datepicker-header .ui-corner-all:before {
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.ui-datepicker-header .ui-corner-all > span {
  position: absolute;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  height: 1px;
  width: 1px;
}
.ui-datepicker-header .ui-datepicker-next {
  order: 3;
}
.ui-datepicker-header .ui-datepicker-next:before {
  font-family: kfa;
  font-weight: 900;
  font-size: 1.5rem;
  content: "\f106";
}
.ui-datepicker-header .ui-datepicker-prev:before {
  font-family: kfa;
  font-weight: 900;
  font-size: 1.5rem;
  content: "\f105";
}

.ui-datepicker-calendar {
  margin: 0.5rem 1rem;
}

.ui-datepicker-calendar th > span,
.ui-datepicker-calendar td > .ui-state-default {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 2em;
  width: 2em;
  font-size: 1.2rem;
  line-height: 1em;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.ui-datepicker-calendar th {
  color: #0dcaf0;
  font-weight: normal;
}
.ui-datepicker-calendar th:not(:last-child) {
  color: #0277BD;
}
.ui-datepicker-calendar th:last-child {
  color: rgb(188, 84.9539748954, 0);
}
.ui-datepicker-calendar td > span.ui-state-default {
  color: #999;
  background-color: #fff;
}
.ui-datepicker-calendar td > a.ui-state-default {
  color: black;
  background: white;
}
.ui-datepicker-calendar td > a.ui-state-default:hover {
  background-color: #0dcaf0;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.ui-datepicker-current-day > .ui-state-default {
  border-style: dotted;
  border-width: 3px;
  border-color: black;
}

.ui-datepicker-today > span.ui-state-default {
  border-color: #666;
}

.ui-datepicker-week-end:not(:last-child) > a.ui-state-default {
  background-color: rgb(211.8565445026, 238.5643979058, 254.5434554974);
  color: inherit;
}
.ui-datepicker-week-end:not(:last-child) > a.ui-state-default:hover {
  background-color: #0277BD;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.ui-datepicker-week-end:last-child > a.ui-state-default {
  background-color: rgb(255, 232.2531380753, 213.5);
  color: inherit;
}
.ui-datepicker-week-end:last-child > a.ui-state-default:hover {
  background-color: #EF6C00;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.ui-holiday > span.ui-state-default {
  background-color: rgb(254.5849056604, 247.9056603774, 247.4150943396) !important;
  color: #999 !important;
}
.ui-holiday > a.ui-state-default {
  background-color: rgb(251.9386792453, 202.679245283, 199.0613207547) !important;
  color: inherit !important;
}
.ui-holiday > a.ui-state-default:hover {
  background-color: #F44336 !important;
  color: #fff !important;
  transition: all 0.2s ease-in-out;
}

.form-control.hasDatepicker::placeholder {
  color: black;
}

.input-watermark-icon {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  padding: 0.375rem 0.75rem;
  text-align: center;
  pointer-events: none;
  color: #495057;
  position: absolute;
  top: 0;
}
.input-watermark-icon:not(:first-child) {
  right: 0.5em;
}
.input-watermark-icon:not(:last-child) {
  left: 0.5em;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.fetching-national-holidays {
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  z-index: 100;
}

.fetching-vancancy-calendar {
  position: absolute;
  left: calc(50% - 1rem);
  z-index: 100;
}

.accomodation-search-widget.has-overlay::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.5);
  z-index: 999;
  border-radius: 0.25rem;
}

.vsf-room-setting {
  border: 1px solid #999;
  border-radius: 4px;
}

/**
 * Monthly Calendar theme - rounded
 */
.jhdr {
  --jhdr-calendar--day-cell--border-radius: 0.5rem;
  --jhdr-calendar--day-cell--border-width: 1px;
  --jhdr-calendar--day-cell--border-color: var(--bs-border-color);
  --jhdr-calendar--day-cell--bg-color: beige;
  --jhdr-calendar--day-cell--color: dark;
  --jhdr-calendar--day--saturday--color: orange;
  --jhdr-calendar--day--sunday--color: #ff0000;
  --jhdr-calendar--day-cell--l1--color: inherit;
  --jhdr-calendar--day-cell--grday-bg: var(--bs-gray-100);
  --jhdr-calendar--day-cell--gap: 5px;
  --jhdr-calendar--day-cell--padding: 0.25rem;
  --jhdr-calendar--caption--thismonth-fs: 2rem;
  --jhdr-calendar--day--available--bg: rgb(from var(--bs-primary) r g b/0.15);
}

.jhdr-calendar-ld {
  --jhdr-calendar--day-cell--border-radius: 0.5rem;
  --jhdr-calendar--day-cell--border-width: 1px;
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-300);
  --jhdr-calendar--day-cell--bg-color: beige;
  --jhdr-calendar--day-cell--bg-color: var(--bs-gray-100);
  --jhdr-calendar--day-cell--color: dark;
  --jhdr-calendar--day--available--bg: rgb(from var(--bs-primary) r g b/0.15);
  --jhdr-calendar--day--saturday--color: orange;
  --jhdr-calendar--day--sunday--color: #ff0000;
  --jhdr-calendar--day-cell--l1--color: inherit;
  --jhdr-calendar--day-cell--grday-bg: var(--bs-gray-100);
  --jhdr-calendar--day-cell--gap: 5px;
  --jhdr-calendar--day-cell--padding: 0.25rem;
  --jhdr-calendar--caption--thismonth-fs: 2rem;
  overflow-x: auto;
}
.jhdr-calendar-ld table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: var(--jhdr-calendar--day-cell--gap);
  caption-side: top;
}
.jhdr-calendar-ld .day--cell {
  padding: var(--jhdr-calendar--day-cell--padding);
  border-radius: var(--jhdr-calendar--day-cell--border-radius);
}
.jhdr-calendar-ld .table-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: var(--jhdr-calendar--day-cell--gap);
  padding-right: var(--jhdr-calendar--day-cell--gap);
}
.jhdr-calendar-ld .table-nav .thismonth {
  font-size: var(--jhdr-calendar--caption--thismonth-fs);
}
.jhdr-calendar-ld .table-nav .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  border-radius: 1.5em;
  font-size: 0.85rem;
  line-height: 1;
}
.jhdr-calendar-ld .table-nav .link::before, .jhdr-calendar-ld .table-nav .link::after {
  font-family: kfa;
  font-size: 1.5rem;
}
.jhdr-calendar-ld .table-nav a.link {
  background-color: var(--bs-gray-200);
}
.jhdr-calendar-ld .table-nav a.link:hover {
  background-color: var(--bs-gray-300);
}
.jhdr-calendar-ld .table-nav span.link {
  background-color: var(--bs-gray-100);
  color: var(--bs-gray-300);
}
.jhdr-calendar-ld .table-nav .nav-prevmonth .link::before {
  content: "\f105";
}
.jhdr-calendar-ld .table-nav .nav-nextmonth .link::after {
  content: "\f106";
}
.jhdr-calendar-ld thead th {
  padding: 0;
  text-align: center;
  width: 14.2857142857%;
}
.jhdr-calendar-ld thead .day--cell {
  background-color: beige;
  color: var(--jhdr-calendar--day-cell--color);
  text-align: center;
}
.jhdr-calendar-ld thead .day--saturday > .day--cell {
  --jhdr-calendar--day-cell--bg-color: darken(beige, 7%) !important;
  background-color: rgb(237.0666666667, 237.0666666667, 192.2333333333) !important;
  --jhdr-calendar--day-cell--color: var(var(--jhdr-calendar--day--saturday--color));
  color: rgb(from var(--bs-danger) r g b/0.45);
}
.jhdr-calendar-ld thead .day--sunday > .day--cell {
  --jhdr-calendar--day-cell--bg-color: darken(beige, 15%) !important;
  background-color: rgb(228, 228, 160.5) !important;
  --jhdr-calendar--day-cell--color: var(var(--jhdr-calendar--day--sunday--color));
  color: red;
}
.jhdr-calendar-ld tbody td {
  padding: 0;
  position: relative;
  width: 14.2857142857%;
  vertical-align: top;
}
.jhdr-calendar-ld tbody .day--cell {
  display: flex;
  flex-direction: column;
  min-width: 80px;
  aspect-ratio: 1/1;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-color: var(--jhdr-calendar--day-cell--border-color);
  border-width: var(--jhdr-calendar--day-cell--border-width);
  border-style: solid;
  background-color: var(--jhdr-calendar--day-cell--bg-color);
}
.jhdr-calendar-ld tbody .day--cell.day--available:hover {
  background-color: var(--jhdr-calendar--day-cell--bg-color);
}
.jhdr-calendar-ld tbody .day--cell > .day {
  font-family: var(--wf);
  font-size: 1.25em;
  color: var(--jhdr-calendar--day-cell--l1--color);
}
.jhdr-calendar-ld tbody .day--cell .link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  text-align: center;
  padding-left: var(--jhdr-calendar--day-cell--gap);
  padding-right: var(--jhdr-calendar--day-cell--gap);
  margin-top: auto;
}
.jhdr-calendar-ld tbody .day--cell .total-price,
.jhdr-calendar-ld tbody .day--cell .unit-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.jhdr-calendar-ld tbody .day--cell .total-price .price-text,
.jhdr-calendar-ld tbody .day--cell .unit-price .price-text {
  text-wrap: nowrap;
  font-size: 0.8em;
}
.jhdr-calendar-ld tbody .day--cell .total-price .price-num,
.jhdr-calendar-ld tbody .day--cell .unit-price .price-num {
  font-family: var(--wf);
}
.jhdr-calendar-ld tbody .day--cell > .l3 {
  font-size: 0.85em;
}
.jhdr-calendar-ld tbody .day--cell.day--prevmonth {
  --jhdr-calendar--day-cell--color: var(--bs-gray-500) !important;
  --jhdr-calendar--day-cell--bg: var(--bs-gray-100) !important;
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-200) !important;
  opacity: 0.5;
}
.jhdr-calendar-ld tbody .day--cell.day--nextmonth {
  --jhdr-calendar--day-cell--color: var(--bs-gray-100) !important;
  --jhdr-calendar--day-cell--bg: var(--bs-white) !important;
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-100) !important;
  opacity: 0.5;
}
.jhdr-calendar-ld tbody .day--cell.day--unavailable:not(.day--prevmonth, .day--nextmonth) {
  --jhdr-calendar--day-cell--color: var(--bs-gray-500) !important;
  --jhdr-calendar--day-cell--bg: var(--bs-gray-100) !important;
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-200) !important;
}
.jhdr-calendar-ld tbody .day--cell.day--no-stock .total-price, .jhdr-calendar-ld tbody .day--cell.day--no-stock .unit-price {
  color: var(--bs-gray-500);
}
.jhdr-calendar-ld tbody .day--cell.day--closed {
  --jhdr-calendar--day-cell--color: var(--bs-gray-500);
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-200) !important;
  --jhdr-calendar--day-cell--bg: var(--bs-gray-100) !important;
}
.jhdr-calendar-ld tbody .day--cell.day--available {
  --jhdr-calendar--day-cell--bg-color: var(--jhdr-calendar--day--available--bg) !important;
}
.jhdr-calendar-ld tbody .day--cell.day--available:hover {
  --jhdr-calendar--day-cell--bg-color: rgb(from var(--bs-primary) r g b / 0.35) !important;
}
.jhdr-calendar-ld tbody .day--cell:not(.day--closed, .day--nextmonth, .day--unavailable) .link {
  border-top-width: var(--jhdr-calendar--day-cell--border-width);
  border-top-style: solid;
  border-top-color: var(--jhdr-calendar--day-cell--border-color);
  padding-top: var(--jhdr-calendar--day-cell--padding);
  margin-left: calc(var(--jhdr-calendar--day-cell--padding) * -1);
  margin-right: calc(var(--jhdr-calendar--day-cell--padding) * -1);
}
.jhdr-calendar-ld tbody .day--cell .room-left-num {
  color: var(--bs-danger);
  margin-left: 0.15em;
  margin-right: 0.15em;
}
.jhdr-calendar-ld tbody .day--holiday .day--cell > .day {
  --jhdr-calendar--day-cell--l1--color: rgb(from var(--bs-danger) r g b / 0.5) !important;
  color: #ff0000;
}
.jhdr-calendar-ld tbody .day--saturday .day {
  --jhdr-calendar--day-cell--l1--color: lighten(#ff0000, 10) !important;
  color: rgb(255, 127.5, 127.5);
}
.jhdr-calendar-ld tbody .day--sunday .day {
  color: #ff0000;
  --jhdr-calendar--day-cell--l1--color: rgb(from var(--jhdr-calendar--day--sunday--color) r g b / 0.75) !important;
}

/**
 * Periodical Calendar - rounded
 */
.jhdr-calendar-sd {
  --jhdr-calendar--day-cell--border-radius: 0.5rem;
  --jhdr-calendar--day-cell--border-width: 1px;
  --jhdr-calendar--day-cell--border-color: var(--bs-gray-300);
  --jhdr-calendar--day-cell--bg-color: beige;
  --jhdr-calendar--day-cell--bg-color: var(--bs-gray-100);
  --jhdr-calendar--day-cell--color: dark;
  --jhdr-calendar--day--available--bg: rgb(from var(--bs-primary) r g b/0.15);
  --jhdr-calendar--day--saturday--color: rgb(255, 127.5, 127.5);
  --jhdr-calendar--day--sunday--color: #ff0000;
  --jhdr-calendar--day-cell--l1--color: inherit;
  --jhdr-calendar--day-cell--grday-bg: var(--bs-gray-100);
  --jhdr-calendar--day-cell--gap: 5px;
  --jhdr-calendar--day-cell--padding: 0.25rem;
  --jhdr-calendar--caption--thismonth-fs: 2rem;
  --jhdr-calendar--day-cell--padding: 0.5rem;
}
.jhdr-calendar-sd .calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.jhdr-calendar-sd .calendar-nav .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em 0.75em;
  border-radius: 1.5em;
  font-size: 0.85rem;
  line-height: 1;
}
.jhdr-calendar-sd .calendar-nav .link::before, .jhdr-calendar-sd .calendar-nav .link::after {
  font-family: kfa;
  font-size: 1.5rem;
}
.jhdr-calendar-sd .calendar-nav a.link {
  background-color: var(--bs-gray-200);
}
.jhdr-calendar-sd .calendar-nav a.link:hover {
  background-color: var(--bs-gray-300);
}
.jhdr-calendar-sd .calendar-nav span.link {
  background-color: var(--bs-gray-100);
  color: var(--bs-gray-300);
}
.jhdr-calendar-sd .calendar-nav .nav-prev-period .link::before {
  padding-right: 0.25em;
  content: "\f105";
}
.jhdr-calendar-sd .calendar-nav .nav-next-period .link::after {
  padding-left: 0.25em;
  content: "\f106";
}
.jhdr-calendar-sd .day--cell {
  display: flex;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-color: var(--jhdr-calendar--day-cell--border-color);
  border-width: var(--jhdr-calendar--day-cell--border-width);
  border-style: solid;
  background-color: var(--jhdr-calendar--day-cell--bg-color);
}
.jhdr-calendar-sd .day--cell .date-num, .jhdr-calendar-sd .day--cell .date-name {
  color: var(--jhdr-calendar--day-cell--day-num--color);
}
.jhdr-calendar-sd .date-col {
  flex: 0 0 auto;
  width: 33.33333333%;
  aspect-ratio: 1/1;
  font-family: var(--wf);
  border-right-width: var(--jhdr-calendar--day-cell--border-width);
  border-right-style: solid;
  border-right-color: var(--bs-gray-400);
}
.jhdr-calendar-sd .info-col {
  flex: 0 0 auto;
  width: 66.66666667%;
  padding-left: var(--jhdr-calendar--day-cell--gap);
  display: flex;
  flex-direction: column;
}
.jhdr-calendar-sd .info-col .total-price, .jhdr-calendar-sd .info-col .unit-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.jhdr-calendar-sd .info-col .total-price .price-text, .jhdr-calendar-sd .info-col .unit-price .price-text {
  text-wrap: nowrap;
  font-size: 0.8em;
}
.jhdr-calendar-sd .info-col .unit-price {
  font-size: 0.85em;
}
.jhdr-calendar-sd .info-col .link {
  margin-top: auto;
  text-align: end;
}
.jhdr-calendar-sd .date-num {
  font-size: 1.25rem;
  line-height: 1;
}
.jhdr-calendar-sd .date-name {
  font-size: 0.85rem;
  line-height: 1;
}
.jhdr-calendar-sd .day--available {
  --jhdr-calendar--day-cell--bg-color: rgb(from var(--bs-primary) r g b / 0.15) !important;
}
.jhdr-calendar-sd .day--available:hover {
  --jhdr-calendar--day-cell--bg-color: rgb(from var(--bs-primary) r g b / 0.35) !important;
}
.jhdr-calendar-sd .day--no-stock .total-price, .jhdr-calendar-sd .day--no-stock .unit-price {
  opacity: 0.5;
}
.jhdr-calendar-sd .day--closed .link, .jhdr-calendar-sd .day--unavailable .link {
  font-size: 0.85rem;
  opacity: 0.5;
}
.jhdr-calendar-sd .date-num, .jhdr-calendar-sd .date-name {
  color: var(--jhdr-calendar--day-cell--day-num--color);
}
.jhdr-calendar-sd.day--holiday .date-num, .jhdr-calendar-sd.day--holiday .date-name {
  --jhdr-calendar--day-cell--day-num--color: rgb(from var(--bs-danger) r g b / 0.75) !important;
}
.jhdr-calendar-sd .day--saturday .date-num, .jhdr-calendar-sd .day--saturday .date-name {
  --jhdr-calendar--day-cell--day-num--color: var(--jhdr-calendar--day--saturday--color) !important;
}
.jhdr-calendar-sd .day--sunday .date-num, .jhdr-calendar-sd .day--sunday .date-name {
  --jhdr-calendar--day-cell--day-num--color: var(--jhdr-calendar--day--sunday--color) !important;
}

.price-child-table td:first-child,
.price-advance-table td:first-child,
.price-cancellation-table td:first-child,
.price-notice td:first-child {
  width: 33.333333%;
  font-weight: bold;
  white-space: nowrap;
}

/**
 * Course table
 */
.course-table-row {
  cursor: pointer;
}
.course-table-row:hover {
  background-color: #eaeaea;
}

.price-child-table,
.price-advance-table,
.price-cancellation-table {
  margin-bottom: 1rem;
}

/**
	Payment details
*/
.room-vacancy-bg-color {
  background-color: #e1f5fe;
}

.payment-bg-color {
  background-color: #e1f5fe;
}

.total-payment-fee {
  font-size: 1.3rem;
  font-weight: bold;
}

.total-payment-per-room-border-hidden {
  border: hidden !important;
}

/*
	plan-other-pictures
*/
.picture-wrapper {
  position: relative;
  min-height: 5vh;
}

.fetch-picture {
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  z-index: 100;
}

.ab-date-picker-wrapper {
  position: relative;
}

.ab-date-clear-button {
  position: absolute;
  top: 0%;
  right: 0%;
  height: 100%;
}