@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap";

@font-face {
  font-family: Nephilm, serif;
  src: url(../assets/fonts/Nephilm.otf);
}

:root {
  --drawer-color: #066842;
  --primary-color: #013B2D;
  --surface-color: #F5E3D2;
  --light-color: #ffffff;
  --light-80-color: #ffffff80;
  --dark-color: #000000;
  --light-80-color: #00000080;
  --golden-gradient: linear-gradient(90deg, #ccc692 0%, #c7b274 32.5%, #bc903d 68.5%, #a1813e 100%);
  --golden-card-gradient: linear-gradient(90deg, #f8f5ec 0%, #e8d6be 99.8%);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  background: var(--surface-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--primary-color);
  height: 100%;
  position: relative;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  padding: 0;
  margin: 0;
  list-style: none;
}

h1 {
  font-family: Nephilm, serif;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.03em;
  margin: 0;
}

h2 {
  font-family: Nephilm, serif;
  font-size: 27px;
  line-height: 28px;
  margin: 0;
}

h5 {
  margin-bottom: 0;
}

p {
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 0;
}

img {
  width: 100%;
}

:focus-visible {
  outline: none;
}

button {
  border: none;
  background: none;
  padding-inline: 0;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  color: var(--primary-color);
}

::-moz-selection {
  color: var(--light-color);
  background: var(--drawer-color);
}

::selection {
  color: var(--light-color);
  background: var(--drawer-color);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 25px #F5E3D2;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 15px;
  height: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px #F5E3D2;
  background-color: #ccae92;
}

.form-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
  min-height: 36px;
}

.form-input:hover {
  border-bottom: 2px solid var(--drawer-color);
  transition: all ease-in-out 200ms;
}

.form-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0;
  padding: 0 0 8px 0;
  color: var(--primary-color);
  min-height: 36px;
  background-position: right center;
}

.form-select:hover {
  border-bottom: 2px solid var(--drawer-color);
  transition: all ease-in-out 200ms;
}

input::-moz-placeholder {
  color: rgba(6, 104, 66, 0.5019607843);
}

input::placeholder {
  color: rgba(6, 104, 66, 0.5019607843);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #F5E3D2 !important;
  -webkit-text-fill-color: var(--primary-color) !important;
}

input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 30px #F5E3D2 !important;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #F5E3D2 !important;
}

input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #F5E3D2 !important;
}

.form-control::-moz-placeholder {
  color: rgba(6, 104, 66, 0.5019607843);
}

.form-control::placeholder {
  color: rgba(6, 104, 66, 0.5019607843);
}

.form-control:focus {
  background-color: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  border-bottom: 2px solid var(--drawer-color);
}

.form-control:disabled {
  background-color: var(--surface-color);
  opacity: 0.7;
}

textarea {
  scrollbar-width: 0;
}

textarea::-webkit-scrollbar {
  display: none;
}

.form-check-input {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--surface-color);
  border-color: var(--primary-color);
}

.form-check-input:checked[type=radio] {
  background-image: none;
  position: relative;
}

.form-check-input:checked[type=radio]::after {
  content: "";
  display: block;
  width: 65%;
  height: 65%;
  background-color: var(--primary-color);
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-check-input:checked[type=checkbox] {
  background-image: url(../assets/images/ic-check.png);
  background-color: transparent;
  border-color: var(--primary-color);
}

.form-check-input[type=checkbox] {
  border-radius: 0;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=time]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=datetime-local]::-webkit-calendar-picker-indicator,
input[type=datetime-local]::-webkit-inner-spin-button,
input[type=datetime-local]::-webkit-outer-spin-button {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

.primary-btn {
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  height: 46px;
  text-align: center;
}

.primary-btn:hover {
  box-shadow: 0px 2px 0 var(--primary-color);
  transition: all 50ms ease-in 0s;
}

.secondary-btn {
  letter-spacing: -0.005em;
  color: var(--primary-color);
  font-size: 16px;
  height: auto;
  box-shadow: 0px 1px 0 var(--primary-color);
  padding-bottom: 0;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-btn:hover {
  box-shadow: 0px 2px 0 var(--primary-color);
  transition: all 50ms ease-in 0s;
}

.secondary-btn .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.tertiary-btn {
  display: flex;
  align-items: center;
  border: 1px solid #0078AD;
  border-radius: 1000px;
  padding: 10px 16px;
  letter-spacing: -0.005em;
  color: #0078AD;
  font-weight: 600;
  font-size: 16px;
  background: #fff;
  height: 45px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  display: inline-flex;
  align-items: center;
}

.text-link {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.005em;
  color: #000093;
  padding: 4px;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
}

.text-link .icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.positive-btn {
  color: #135610;
  background: #E9F7E9;
  border: 1px solid;
}

.positive-btn:hover {
  color: #ffffff;
  background: #135610;
  transition: all 50ms ease-in-out 0;
}

.negative-btn {
  color: #660014;
  background: #FEE6EA;
  border: 1px solid;
}

.negative-btn:hover {
  color: #ffffff;
  background: #660014;
  transition: all 50ms ease-in-out 0;
}

.modal-title {
  margin: 0;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}

.subheader-actions {
  padding: 8px 0;
  display: flex;
  justify-content: end;
  align-items: center;
}

.subheader-actions .text-link {
  color: #595959;
}

.custom-tooltip {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.page-header-block .deco-header h2 {
  font-size: 39px;
  line-height: 1;
}

.deco-header {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 12px;
}

/* Componants */
.main-navbar {
  background: #ffffff;
  color: #595959;
  height: 50px;
  flex-wrap: nowrap;
  border-bottom: 1px solid #D9D9D9;
}

.main-navbar button:hover {
  transition: all 50ms ease;
  transform: scale(1.1);
}

.main-navbar .container-fluid {
  padding: 0 16px;
}

@media (max-width: 325px) {
  .main-navbar .container-fluid {
    padding: 0 8px;
  }
}

.navbar-expand-lg .offcanvas {
  flex-grow: 0;
}

.navbar-brand {
  margin-left: 8px;
}

.navbar-brand svg {
  width: auto;
  height: 36px;
  margin-right: 8px;
}

.logo div {
  font-size: 16px;
  color: #8f005d;
}

.nav-link .icon {
  margin-right: 8px;
}

.right-nav-box {
  flex: 1 1 auto;
}

.nav-search-box {
  max-width: 420px;
  flex: 1 1 auto;
}

.nav-search-box .input {
  overflow: hidden;
  background: #ffffff;
}

.nav-search-box .icon {
  margin-left: 16px;
}

.nav-search-box input {
  padding-left: 8px;
  width: 100%;
  height: 36px;
  background: transparent;
}

.dropdown-menu {
  background: #fff;
  border-radius: 0;
  top: 130% !important;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(171, 171, 171, 0.29);
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: #595959;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-toggle.user-menu::after {
  content: url(../assets/images/ic-chevron-down.svg);
  border: none;
  vertical-align: unset;
  align-self: center;
  width: 16px;
  height: 16px;
  margin-left: 0.5em;
}

.dropdown-toggle.show.user-menu::after {
  transform: rotatez(180deg);
}

.user-menu {
  text-align: right;
  margin: 0 8px 0 8px;
}

.u-content p {
  font-size: 12px;
  line-height: 14px;
}

.u-content h3 {
  font-size: 14px;
  margin: 0;
}

.u-content button.logout-btn {
  color: #99c9de;
  font-size: 12px;
}

.u-content button.logout-btn .icon {
  margin-right: 8px;
}

.u-picture {
  border-radius: 25px;
  overflow: hidden;
  width: 28px;
  height: 28px;
  margin-left: 8px;
}

.nav-action-box {
  margin-left: 8px;
}

.nav-action-box .icon {
  position: relative;
}

.nav-action-box .icon span {
  position: absolute;
  background-color: #ff0000;
  color: #fff;
  padding: 4px;
  top: 0;
  right: 0;
  font-size: 8px;
  border-radius: 25px;
  line-height: 1.3;
  border: 2px solid #fbe5f4;
  font-weight: 700;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4509803922);
  margin-left: 16px;
}

.offcanvas.offcanvas-end.show {
  background: #0078AD;
}

.dropdown-menu[data-bs-popper] {
  right: 0;
  left: auto;
}

.brd-link {
  color: #595959;
  padding: 0 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.brd-link:hover {
  background-color: #dddddd;
}

.brd-link::after {
  content: "/";
  padding-left: 6px;
}

.breadcrumb .current {
  color: #000;
}

.breadcrumb .current:after {
  content: none;
}

.breadcrumb .current:hover {
  background-color: transparent;
}

.back-btn:after {
  content: none;
}

.back-btn img {
  width: 16px;
  height: 16px;
}

.prev-brd {
  color: #595959;
}

.page-content {
  height: calc(100vh - 50px);
  overflow-y: scroll;
  overflow-x: hidden;
}

.main-page {
  padding-top: 50px;
  height: 100%;
}

/* Side Drawer  */
.side-drawer-menu {
  background: var(--drawer-color);
  padding: 16px 32px 16px 0;
  color: rgba(255, 255, 255, 0.5019607843);
  height: calc(100vh - 50px);
  width: 250px;
  overflow: auto;
}

.side-drawer-menu .nav {
  align-self: center;
  padding: 0 0 0 32px;
}

.side-drawer-menu .nav:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.5019607843);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
}

.side-drawer-menu>div {
  align-self: flex-end;
}

.side-drawer-menu .nav-active-underline {
  display: none;
}

.side-drawer-menu:nth-child(1) li:last-child .nav-link.active~.side-drawer-menu .nav:nth-child(2) {
  background-color: lime;
}

.side-d-menu-block .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.5019607843);
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  position: relative;
}

.side-d-menu-block .nav-item .nav-link:hover {
  color: #ffffff;
  transition: all 50ms ease-in-out 0s;
}

.side-d-menu-block .nav-item .nav-link.active {
  color: #ffffff;
  border-bottom-color: transparent;
}

.side-d-menu-block .nav-item .nav-link.active .nav-active-underline {
  display: block;
}

.side-d-menu-block .nav-item:last-child .nav-link {
  border-bottom-color: transparent;
}

.s-d-m-text {
  line-height: initial;
}

.nav-active-underline {
  position: absolute;
  width: 100%;
  left: -1px;
  bottom: -1px;
  padding-right: 4px;
}

.nav-line {
  height: 2px;
  width: 100%;
  border-radius: 16px;
  background: var(--golden-gradient);
}

.nav-line::after {
  content: url(../assets/images/nav-active-line-end.svg);
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 6.44px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-open-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-open-icon-box .icon {
  width: 24px;
  height: 24px;
}

.menu-open-icon-box .icon::after {
  display: block;
  width: 24px;
  height: 24px;
  content: url(../assets/images/ic-drawerexpand.svg);
}

.menu-open-icon-box.show .icon::after {
  content: url(../assets/images/ic-drawercollapse.svg);
}

.side-drawer-col {
  display: none;
  border-right: 1px solid #D9D9D9;
}

.side-drawer-col.show {
  display: block !important;
}

.modal-content {
  border-radius: 0;
  border: none;
  background: #F8E4D2;
}

.modal-header {
  border-color: rgba(255, 255, 255, 0.3764705882);
}

.modal-footer {
  border-color: rgba(255, 255, 255, 0.3764705882);
}

/* Notifications Model */
.side-model.notifications-model .modal-content .modal-body {
  overflow: auto;
}

.notifications-list-box ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.notifications-list-box ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3764705882);
}

.notifications-list-box ul li:last-child {
  border-bottom: none;
}

.notif-block {
  color: black;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.notif-block .icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 100px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.notif-block.unread {
  color: var(--drawer-color);
}

.notif-content-box {
  flex: 0 1 auto;
}

.notif-content-box h5 {
  font-size: 16px;
}

.notif-time {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4588235294);
}

.notif-time .days {
  margin-right: 4px;
}

.notif-time .day:after {
  content: "";
}

.spa-notif .icon {
  background-image: url(/assets/images/notifications-icons/ic-spa.svg);
}

.normal-notif .icon {
  background-image: url(/assets/images/notifications-icons/ic-bell.svg);
}

.message-notif .icon {
  background-image: url(/assets/images/notifications-icons/ic-message.svg);
}

.golden-border {
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  pointer-events: none;
}

.page-border {
  background-image: url(../assets/images/page-corner.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Login Page */
.login-page {
  height: 100%;
  width: 100%;
  background-image: url(../assets/images/login-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.login-page>div {
  width: 50%;
  height: 100%;
}

.login-page .deco-header .nav-active-underline {
  width: 180%;
  max-width: 210px;
  left: 50%;
  transform: translateX(-50%);
}

.login-page .deco-header .nav-line::after {
  left: 0;
}

.login-page label {
  font-size: 12px;
}

.login-page .primary-btn {
  width: 50%;
}

.logo-box {
  max-width: 228px;
  text-align: center;
}

.login-content-block {
  background: var(--surface-color);
  padding: 24px 72px;
}

.login-form-block {
  max-width: 420px;
}

.icon-input {
  position: relative;
}

.icon-input .icon-input-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: end;
}

.pass-toggle {
  width: 24px;
  height: 24px;
}

.pass-toggle:before {
  content: url(../assets/images/ic-eye-disable.svg);
  width: 24px;
  height: 24px;
}

.pass-toggle.pass-show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pass-toggle.pass-show:before {
  content: url(../assets/images/ic-eye.svg);
  width: 24px;
  height: 24px;
}

.date-col .icon-input-icon {
  pointer-events: none;
}

section {
  margin: 32px 0;
}

section.page-header-block {
  margin: 0;
}

.filters-block {
  flex: 0 1 40%;
}

.list-card {
  background-color: var(--surface-color);
  display: inline-block;
  width: 100%;
}

.list-card .deco-header h2 {
  font-size: 18px;
  pointer-events: none;
}

.list-card:hover .deco-header .nav-active-underline {
  width: 110%;
  transition: all ease-in-out 200ms;
}

.content {
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  padding: 12px 16px;
}

.additional-info {
  font-size: 18px;
}

@media (max-width: 375px) {
  .additional-info {
    font-size: 14px;
  }
}

.activity-details-block ol {
  list-style: auto;
  padding-left: 16px;
}

.activity-details-block ol li {
  list-style: auto;
  padding-left: 16px;
}

/* Manage Guest  */
.img-list-card {
  position: relative;
  display: inline-block;
}

.img-list-card .additional-info {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-top: 8px;
}

.img-list-card .feedback-rating {
  flex-direction: row;
  justify-content: center;
}

.img-list-card .feedback-rating img {
  width: 24px;
}

.img-list-card .golden-border {
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  transform: translate(-50%, -50%) scale(1);
  transition: all 200ms ease-in-out;
}

.img-list-card:hover .golden-border {
  top: 51%;
  height: calc(100% - 16px);
  transform: translate(-50%, -50%) scale(0.95);
  transition: all 200ms ease-in-out;
}

.i-l-content-box {
  padding-left: 16px;
  padding-right: 16px;
}

.input-label label {
  font-weight: 500;
  line-height: 1;
}

/* Add A Guest */
.action-col .icon-box {
  width: 24px;
  height: 24px;
}

.guest-actions a {
  padding: 0 8px;
}

.guest-actions a:first-child {
  padding-left: 0;
}

.guest-actions a:last-child {
  padding-right: 0;
}

/* View Guest */
.view-section .img-upload-box {
  position: relative;
}

.view-section .img-upload-box label {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  background: rgba(6, 104, 66, 0.1254901961);
  opacity: 0;
  color: #fff;
  padding-bottom: 16px;
}

.view-section .img-upload-box label .primary-btn {
  color: #fff;
  background-color: var(--drawer-color);
  font-size: 14px;
  height: auto;
  opacity: 0.8;
}

.view-section .img-upload-box:hover label {
  opacity: 1;
  transition: all ease-in-out 200ms;
}

@media (pointer: coarse) {
  .view-section .img-upload-box label {
    opacity: 1;
  }
}

/* Check In/Check Out */
.check-info-block .checkin-date::before {
  content: "🡩";
  color: green;
  padding-right: 4px;
  font-size: larger;
  font-weight: 800;
}

.check-info-block .checkout-date::after {
  content: "🡫";
  color: red;
  padding-left: 4px;
  font-size: larger;
  font-weight: 800;
}

/* (Calender) */
.month {
  padding: 16px 0;
  width: 100%;
  text-align: center;
  color: var(--primary-color);
}

.month ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.month ul li {
  font-size: 16px;
  line-height: 1;
}

.calender-card {
  border: 1px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
}

.weekdays {
  display: flex;
  flex-wrap: wrap;
}

.weekdays li {
  display: inline-flex;
  width: 14.2857142857%;
  color: var(--drawer-color);
  text-align: center;
  font-size: 12px;
  padding: 8px;
  justify-content: center;
}

.days {
  display: flex;
  flex-wrap: wrap;
}

.days li {
  display: inline-flex;
  width: 14.2857142857%;
  color: var(--drawer-color);
  text-align: center;
  font-size: 12px;
  padding: 8px;
  justify-content: center;
  color: var(--dark-color);
}

.days li:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.days li.active {
  background: var(--primary-color);
  color: white;
}

.days li.active:hover {
  transform: none;
  cursor: auto;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 620px;
  }

  .modal-content {
    padding: 8px 24px;
  }

  .modal-header {
    padding-left: 0;
    padding-right: 0;
  }

  .modal-body {
    padding-left: 0;
    padding-right: 0;
  }

  .modal-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .side-model .modal-dialog {
    margin: 16px 16px 16px auto;
    max-width: 420px;
    height: calc(100% - 32px);
  }

  .side-model .modal-content {
    height: 100%;
  }
}

@media (max-width: 575px) {
  .primary-btn {
    font-size: 14px;
  }

  .secondary-btn {
    font-size: 14px;
  }

  .text-link {
    font-size: 14px;
  }

  .u-picture {
    margin-left: 0;
  }

  .login-page>div:first-child {
    width: 100%;
  }

  .login-page>div:last-child {
    width: 100%;
  }

  .input-label label {
    display: flex;
    align-items: center;
    height: 100%;
  }
}

@media (max-width: 325px) {
  .primary-btn {
    font-size: 14px;
  }

  .secondary-btn {
    font-size: 14px;
  }

  .text-link {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .user-menu {
    margin: 0 8px 0 16px;
  }

  .notification-box {
    margin-left: 8px;
  }
}

@media (min-width: 768px) {
  .dropdown-item:focus {
    color: initial;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--surface-color);
  }

  .dropdown-item:hover {
    color: initial;
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--surface-color);
  }
}

@media (max-width: 768px) {
  .side-drawer-menu {
    position: fixed;
    z-index: 99;
    box-shadow: 70px 0px 60px -10px rgba(161, 129, 62, 0.15);
  }

  .logo-box .logo {
    max-width: 100px;
  }

  .logo-box h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .page-border {
    background-size: 90px auto;
  }
}

/* Manage Activities */
.img-upload-box .remove-image-block {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}

.img-upload-box .remove-image-block button {
  background: red;
  padding: 8px;
  border-radius: 0 0 0 2px;
}

.img-upload-box .remove-image-block:hover button img {
  transition: all 50ms ease;
  transform: scale(1.1);
}

.img-upload-box label {
  padding-bottom: 24px;
}

.img-upload-box:hover .remove-image-block {
  display: block;
}

@media (pointer: coarse) {
  .img-upload-box .remove-image-block {
    display: block;
  }
}

.carousel-indicators {
  background: var(--drawer-color);
  display: flex;
  width: auto;
  padding: 8px;
  bottom: -25px;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 8px;
}

.add-a-checklist-section ol li,
.view-checklist-section ol li {
  list-style: auto;
}

.feedback-rating-section img {
  width: 40px;
}

.nav-pills {
  display: flex;
  flex-wrap: nowrap;
  margin: 16px 0;
  position: relative;
  max-width: 700px;
}

.nav-pills li {
  width: auto;
  position: relative;
}

@media (max-width: 375px) {
  .nav-pills li {
    width: auto;
    font-size: 14px;
  }
}

.nav-pills li:last-child .nav-link:after {
  display: none;
}

.nav-pills .nav-link {
  border-radius: 0;
  color: #000;
  padding: 12px 18px;
  text-align: center;
  width: 100%;
  position: relative;
  text-wrap: nowrap;
}

.nav-pills .nav-link::after {
  content: "";
  display: flex;
  position: absolute;
  width: 1px;
  height: 40%;
  background-color: var(--dark-color);
  opacity: 0.4;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}

.nav-pills .nav-link.active {
  background-color: #013B2D;
  color: #fff;
}

.nav-pills .nav-link.active::after {
  display: none;
}

@media (max-width: 375px) {
  .nav-pills .nav-link {
    padding: 12px 8px;
  }
}

.nav-pills::after {
  content: "";
  width: calc(100% - 8px);
  height: 82%;
  display: block;
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 375px) {
  .nav-pills {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.accordion-item {
  margin: 8px 0;
  border: none;
}

.accordion-item {
  background-color: transparent;
  background: var(--golden-card-gradient);
}

.accordion-button {
  background-color: transparent;
  font-size: 26px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-button:not(.collapsed):before {
  content: "";
  background-color: var(--dark-color);
  height: 1px;
  width: calc(100% - 2.5rem);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-collapse {
  border: none;
}

.history-block>.col-12:first-child {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--dark-color);
  opacity: 0.2;
}

.custom-tooltip {
  background-color: var(--drawer-color);
  color: var(--surface-color);
}

.table {
  border-collapse: separate;
  border-spacing: 0 8px;
}

td,
th {
  text-align: center;
  vertical-align: middle;
}

th {
  font-size: 14px;
  font-weight: 300;
}

tbody tr {
  position: relative;
}

tbody tr::after {
  content: "";
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  pointer-events: none;
}

.photo-td {
  padding: 0 !important;
  text-align: left;
}

.photo-td img {
  height: 60px;
  width: auto;
}

.action {
  display: flex;
  height: 36px;
  width: 36px;
  padding: 8px;
  margin: 0 auto;
}

.action:hover {
  background-color: rgba(255, 255, 255, 0.2509803922);
}

.accordion-header {
  position: relative;
}

.room-count {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  font-size: 15px;
}

.room-count::before {
  content: "Room:";
}

.col.px-0 {
  width: calc(100vw - 260px);
  max-width: 100%;
}

.add-preference-modal ol li {
  list-style: number;
}

.f-r-stars img {
  width: 24px;
}

.form-control:disabled:hover {
  border-bottom: 1px solid var(--drawer-color);
}

/*.modal ul, .modal li {
  list-style: decimal;
}*/

.error-block {
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  padding: 12px 16px;
  text-align: center;
}

.error-block h1 {
  font-size: 120px;
  line-height: normal;
  color: var(--drawer-color);
}

.error-block p {
  margin: 16px;
  max-width: 520px;
  width: 100%;
}

.error-block span {
  margin: 16px;
}

.stat-card {
  background: white;
  padding: 4px;
  height: 100%;
  text-align: center;
}

.stat-card>div {
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  padding: 6px;
  text-align: center;
}

.stat-card>div span {
  font-size: 20px;
  display: block;
}

.stat-card .img-box.me-3 {
  display: none;
}

/*.img-upload-box {
  height: 420px;
}*/
.img-upload-box .guest-profile-photo {
  height: 100%;
}

.img-upload-box .guest-profile-photo img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-upload-box label {
  height: 100%;
}

.img-upload-box label .img-box {
  height: 100%;
  display: flex;
  align-items: end;
}

.tp-pages {
  padding: 32px 0;
}

.tp-pages h2 {
  margin: 24px 0 8px;
}



.photo-td img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.nav-pills {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 575px) {
  h2 {
    font-size: 24px;
  }

  td,
  th {
    font-size: 14px;
    text-wrap: nowrap;
  }

  .page-content.px-4.py-3 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .page-header-block .deco-header h2 {
    font-size: 28px;
  }

  .img-upload-box {
    height: auto;
    width: 100%;
    max-height: 320px;
    overflow: hidden;
  }

  .nav-pills {
    max-width: 100%;
  }

  .nav-pills li {
    font-size: 14px;
  }

  .nav-pills li .nav-link {
    padding: 12px 8px;
  }

  .add-a-guest-section.form-section .nav-pills {
    margin-top: 32px;
    margin-bottom: -16px;
  }

  .rooms-accordian .accordion-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
  }

  .rooms-accordian .accordion-header .accordion-button {
    padding-bottom: 0;
  }

  .rooms-accordian .accordion-header .accordion-button:not(.collapsed):before {
    bottom: -32px;
  }

  .room-count {
    position: relative;
    transform: unset;
    right: 0;
    top: 0;
    padding-left: 1.25rem;
    padding-bottom: 1.25rem;
  }

  #managePreferences .nav-link {
    text-wrap: balance;
  }
}

.analytics-tab-content .stat-card {
  cursor: pointer;
}

.analytics-tab-content .stat-card>div {
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.analytics-tab-content .stat-card>div span {
  line-height: normal;
}

.analytics-tab-content .stat-card>div span.total {
  opacity: 0.3;
  font-size: 14px;
}

.analytics-tab-content .stat-card>div span.total::before {
  content: "/";
  margin-left: 2px;
}

.analytics-modal table td,
.analytics-modal table th {
  font-size: 14px;
  line-height: 1.2;
}

.analytics-modal span {
  line-height: normal;
}

.analytics-modal span.total::before {
  content: "/";
  margin-left: 2px;
}

.checkout-btn {
  color: #FF3D00;
  box-shadow: 0px 1px 0 #FF3D00;
  font-size: 12px;
  white-space: nowrap;
}
.checkin-btn {
  color: #013B2D;
  box-shadow: 0px 1px 0 #013B2D;
  font-size: 12px;
  white-space: nowrap;
}

.checkedout-btn {
  color: #979797;
  box-shadow: 0px 1px 0 #979797;
  font-size: 12px;
  white-space: nowrap;
}

.time-slot span {
  width: 100%;
  display: flex;
  width: 100%;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  position: relative;
}

.time-slot.active span {
  color: var(--light-color);
  background: var(--drawer-color);
}

.time-slot.active span::after {
  content: "";
  width: calc(100% - 8px);
  height: 82%;
  display: block;
  border: 10px solid;
  border-image-source: var(--golden-gradient);
  border-image-slice: 1;
  border-width: 2px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.time-slot.inactive span {
  color: #BDBDBD;
  text-decoration: line-through;
}

/* Restore ordered list styles only for t&c and privacy policy content area */

.tp-pages,
.tp-pages ol,
.tp-pages li {
  list-style: revert;
  margin: revert;
  padding-left: 1.2rem;
}

.tp-pages .level-1 {
  list-style-type: decimal;
}

.tp-pages .level-2 {
  list-style-type: lower-alpha;
}

.tp-pages .level-3 {
  list-style-type: lower-roman;
}
.tp-pages .level-4{
  list-style-type: none;
}


/*# sourceMappingURL=styles.css.map */