@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap');

body {
  font-family: "DM Sans", serif;
  font-weight: 400;
  color: #474b4a;
  background-color: #faf6f2;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

p:last-child {
  margin-bottom: 0;
}

li {
  font-size: 16px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--secondary_color);
  transition: .4s
}

a:hover {
  color: var(--primary_color);
}

img {
  max-width: 50%;
  transition: .5s;
}

p a,
li a {
  color: var(--primary_color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary_color);
}

:root {
  --primary_color: #c06e53;
  --secondary_color: #3f2315;
  --gray: #626262;
  --bg-gradient: linear-gradient(150deg, rgba(213, 250, 254, 1) 0%, rgba(255, 248, 239, 1) 90%);
  --success_color: #429416;
  --danger_color: #b13e3e;
  --warning_color: #d1a054;
  --dark_color: #8b5e4a;
}


/* Base badge */
.badge {
  font-weight: 500;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
}

/* Primary – New Booking */
.badge-outline-primary {
  color: var(--primary_color);
  border: 1px solid var(--primary_color);
  background: transparent;
}

/* Success – Booked */
.badge-outline-success {
  color: var(--success_color);
  border: 1px solid var(--success_color);
  background: transparent;
}

/* Danger – Cancelled / Deleted */
.badge-outline-danger {
  color: var(--danger_color);
  border: 1px solid var(--danger_color);
  background: transparent;
}

/* Dark – Check-In */
.badge-outline-dark {
  color: var(--dark_color);
  border: 1px solid var(--dark_color);
  background: transparent;
}

/* Secondary – Check-Out */
.badge-outline-secondary {
  color: var(--secondary_color);
  border: 1px solid var(--secondary_color);
  background: transparent;
}

/* Warning – Pending */
.badge-outline-warning {
  color: var(--warning_color);
  border: 1px solid var(--warning_color);
  background: transparent;
}

/* header */
@-webkit-keyframes navbarFixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navbarFixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

header {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: #fafafa;
}

.header-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo,
.header-btn {
  width: 160px !important;
}

.header-nav nav>ul {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  padding-left: 0;
}

.header-nav nav>ul>li {
  margin-left: 0px;
  list-style: none;
}

.header-nav nav>ul>li>a {
  color: #262626;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 16px;
}

.header-nav nav>ul>li>a.active,
.header-nav nav>ul>li>a:hover {
  color: var(--primary_color);
  font-weight: 700;
}

.nav-btn {
  display: none;
}

.submenu {
  padding: 0;
  position: absolute;
  top: 70px;
  min-width: 235px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  box-shadow: 0 6px 10px #ccc;
  visibility: hidden;
  transition: .4s;
  opacity: 0;
  z-index: 099;
  max-height: 300px;
  overflow: auto;
}

/* width */
.submenu::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.submenu::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
.submenu::-webkit-scrollbar-thumb {
  background: #e9538f;
}

li.menu-item-has-children {
  position: relative;
}

.submenu li {
  list-style: none;
  display: block;
}

.submenu li a {
  padding: 12px 20px;
  display: block;
  background: #ff63a2;
  border-bottom: 2px solid #ffffff30;
  font-size: 16px;
  text-transform: capitalize !important;
  color: #fff;
}

.submenu li:last-child a {
  border-bottom: 0;
}

.submenu li a:hover {
  background: #fff;
  color: #ff63a2;
}

li.menu-item-has-children:hover .submenu {
  visibility: visible;
  opacity: 1;
  top: 85px;
}

li.menu-item-has-children .arrow svg {
  margin-left: 5px;
}

header button.close {
  display: none;
}

header.sticky {
  /* position: ; */
  top: 0;
  z-index: 999;
  -webkit-animation: navbarFixed 0.8s;
  animation: navbarFixed 0.8s;
}

.logo {
  transition: .5s;
}

li.menu-item-has-children>a {
  padding-right: 40px !important;
}

li.menu-item-has-children .arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.header-nav nav>ul>li a:hover~.arrow path {
  stroke: #fff !important;
}

/* header right btn */
.header-btn {
  text-align: right;
}

.header-btn .btn-typ1 {
  width: 205px;
}

/* common css of heading btns */
.heading-typ1 {
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.heading-typ1 span {
  color: var(--primary_color);
}

.heading-typ2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
}

.heading-typ3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary_color);
}

.heading-typ4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary_color);
}

.heading-typ2 span {
  color: var(--primary_color);
}

.link {
  text-transform: uppercase;
  font-weight: 700;
}

.link img {
  margin-left: 10px;
  width: 19px;
}

.btn-typ1 {
  background: var(--primary_color);
  padding: 10px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: .5s;
  color: #fff;
}

.btn-typ2 {
  background: var(--gray);
  padding: 10px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: .5s;
  color: #fff;
}

.btn-typ3 {
  background: var(--secondary_color);
  padding: 15px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  transition: .5s;
  color: #fff;
  border-radius: 5px;
}

.btn-typ2:hover,
.btn-typ2:focus {
  box-shadow: inset -12em 0 0 0 var(--secondary_color), inset 12em 0 0 0 var(--secondary_color);
  color: #fff;
}

.btn-typ1:hover,
.btn-typ1:focus {
  box-shadow: inset -12em 0 0 0 var(--secondary_color), inset 12em 0 0 0 var(--secondary_color);
  color: #fff;
}

.heading-sec {
  max-width: 935px;
  margin-bottom: 30px;
}

.heading-sec.text-center {
  margin: 0 auto 30px;
}

/* my account */
.my-account .profile {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-top: 8px;
}

.my-account .btn {
  display: flex;
  align-items: center;
}

.my-account .name {
  text-align: left;
  padding-left: 10px;
}

.my-account .name span {
  font-size: 12px;
  color: #fff;
}

.my-account .name h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1;
}

.my-account .dropdown-toggle::after {
  color: #fff;
}

.my-account .btn {
  background: var(--secondary_color);
  border-radius: 5px;
  padding: 5px 15px 12px;
  border: 0;
}

header .logo h1 {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

/* form section */
.form-sec {
  padding: 30px 0;
}

textarea.form-control {
  height: 70px;
}

.form-sec-in,
.reservations-list-in {
  padding: 20px 25px;
  background: #fff;
  /* backdrop-filter: blur(3px); */
  border-radius: 5px;
  /* box-shadow: 0 0 35px #00000040; */
}

.form-sec .card {
  background: rgb(255 255 255/ 0.5);
  backdrop-filter: blur(8px);
}

label.form-label {
  line-height: 15px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  /* margin-bottom: 0 !important; */
  margin-left: 0 !important;
}

.form-sec .heading-typ2,
.reservations-list .heading-typ2 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-control,
.form-select {
  font-size: 14px;
  margin-bottom: 5px;
  /* height: 45px; */
  padding: 12px 10px 12px 16px;
}

/* my reservations page */
.reservations-list {
  padding: 30px 0;
  /*background: url(../images/bg-img-5.jpg); background-attachment: fixed; background-position: bottom center; background-size: cover;*/
}

.table-style td,
.table-style th {
  padding: 5px 12px;
  vertical-align: middle;
  font-size: 15px;
  border: 0;
}

.table-style th {
  background: #f3e4de;
  padding: 7px 12px;
}

.table-style {
  border-radius: 10px;
  overflow: hidden;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  color: #000;
  --bs-table-bg-type: #f8f4ef;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
  background: #fffefc;
}

.table-style {
  --bs-table-bg: #fff !important;
}

/* .reservations-list .heading-typ2{
    letter-spacing: 2px;
    text-transform: uppercase;
} */
/* .reservations-list-in {
    background: rgb(255 255 255 / 60%);
} */
.heading-typ2 {
  position: relative;
  padding-bottom: 10px;
}

.heading-typ2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #000;
}

/* login page */
.login-part {
  max-width: 550px;
  width: 100%;
  background-color: #fff;
  padding: 20px 40px 30px 38px;
  border-radius: 8px;
  margin: auto;
}

.login-part h1 {
  font-weight: 700;
  font-size: 28px;
  color: #c06e53;
  text-align: center;

}

.login-part a {
  color: #3f2315;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.login-part .form-check-input[type=checkbox] {
  border-color: #3a5892;
}

.login-part form label {
  font-size: 14px;
  font-weight: 600;
  margin-left: 0 !important;
}

.login-part input:not(input[type="checkbox"]) {
  border-radius: 5px;
  /* border: none; */
  outline: none;
  background: none;
  font-size: 16px;
  padding: 12px 10px 12px 16px;
}

.login-part .link {
  text-decoration: none;
  color: #3a5892;
}

.btn-login {
  width: 100%;
  border: none;
  cursor: pointer;
  background: #c06e53;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: all .4s ease-in;
  padding: 15px;
}

.btn-login:hover {
  background: #b05f48;
  color: #fff;
}

.form-control-position {
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 2;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
}

.login-page {
  background: #faf6f2;
  height: 100vh;
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.login-part .heading-typ1 {
  color: #c06e53;
}

.fontunder {
  text-decoration: none;
}

/* reservation detail page */
.reserv-details {
  padding: 30px 0 40px;
}

.details-sec .heading-typ2:after {
  left: 0;
  transform: unset;
}

.details-sec .details-itm h5 {
  font-size: 14px;
  line-height: 1.7;
  color: var(--primary_color);
  margin-bottom: 0;
  width: 200px;
  min-width: 200px;
}

.details-sec .details-itm {
  display: flex;
  padding: 9px 20px;
  border-bottom: 1px dashed #ccc;
}

.details-sec .details-itm:last-child {
  border-bottom: 0;
}

.details-sec .details-itm p {
  font-size: 14px;
}

/* chat */
.chat-container {
  width: 100%;
  max-width: 100%;
  background: var(--secondary_color);
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
  box-shadow: #0000006b 0 10px 20px;
}

.chat-header {
  background: var(--primary_color);
  display: flex;
  align-items: center;
  padding: 5px 15px;
  border-radius: 10px 10px 0 0;
}

.profile-img {
  position: relative;
  width: 45px;
  height: 45px;
}

.profile-img img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 2px white;
  position: absolute;
  top: 0;
  left: 0;
}

.profile-img .i1 {
  z-index: 1;
}

.profile-img .i2 {
  left: 40px;
}

.profile-img .i3 {
  left: 80px;
}

.profile-info {
  padding: 0 15px;
}

.profile-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #fff;
}

.profile-status {
  letter-spacing: 1px;
  font-size: 12px;
  color: #fff;
}

.chatbox {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 350px;
  overflow: auto;
}

.chatbox .chat {
  display: flex;
  gap: 15px;
}

.chatbox img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 5px;
}

.chatbox .msg {
  background: white;
  color: #3f3f3f;
  max-width: 80%;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  font-size: 13px;
}

.chatbox .msg h6 {
  color: #c06e53;
  font-size: 14px;
}

.msg .fa-caret-left {
  font-size: 20px;
  color: white;
  position: absolute;
  top: 10px;
}

.chatbox .chat.right {
  flex-direction: row-reverse;
}

.chatbox .chat.left .fa-caret-left {
  left: -6px;
}

.chatbox .chat.right .fa-caret-left {
  right: -6px;
  transform: rotate(180deg);
}

.policy {
  background: #3a384c;
  padding: 25px;
  border-radius: 0 0 10px 10px;
}

.policy p {
  font-size: 13px;
}

.policy p a {
  font-size: 13px;
  color: #ff6969;
  text-decoration: underline;
}

.agree {
  display: inline-block;
  color: #ff6969;
  border: solid 2px #ff6969;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

.agree:hover {
  color: white;
  background: #ff6969;
}

/* .close {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6969;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -80px;
    right: 0;
  }
  .close:hover {
    box-shadow: #292739 0 0 10px 10px;
  }
  .close:hover .fa-caret-left {
    transform: rotate(360deg);
  }
  .close .fa-caret-left {
    font-size: 40px;
  } */

/* send */
.send-box {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.send-box form .chatForm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.send-box .form-control {
  width: calc(100% - 42px);
  padding: 10px 21px;
  font-size: 14px;
  font-weight: 400;
  border: 0;
  color: #222;
  border-radius: 50px;
  margin-bottom: 0;
}

.send-box button {
  border: none;
  background: var(--primary_color);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-left: 1%;
  min-width: 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

/* custom scroll */
.chatbox::-webkit-scrollbar {
  width: 5px;
}

.chatbox::-webkit-scrollbar-thumb {
  background-color: #7c7c7c;
  border-radius: 5px;
}

/* footer */
footer {
  background-color: var(--secondary_color);
  color: #fff;
  position: relative;
  font-family: "Raleway", sans-serif;
}

.footer-in {
  padding: 70px 0;
}

.footer-links a {
  color: #fff;
  margin-right: 25px;
}

.footer-links a:last-child {
  margin-right: 0;
}

.footer-links a i,
.footer-links a svg {
  margin-right: 10px;
}

.footer-links {
  text-align: center;
  margin: 45px 0 0;
}

.footer-copyright {
  padding: 35px 0;
  border-top: 1px solid #ffffff30;
}

.footer-copyright p {
  color: #ba6a50;
}

.footer-logo {
  width: 400px;
  margin: auto;
}

.footer-links a svg {
  width: 20px;
  height: 20px;
}

/* body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
  }
  .main-content {
      flex: 1;
  } */
.annouceTitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0px;
  padding: 5px 9px;
  border-radius: 4px;
}

.annouceTitle>a {
  display: inline;
  margin-left: 5px;
  color: var(--primary_color) !important;
  font-weight: 500;
  padding: 2px 4px !important;
}

.annouceTitle>a:hover {
  color: #000 !important
}

.notificationList>div:hover a {
  color: #fff;
}

.annoucedescription {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 0px 9px;
  border-radius: 4px;
}

.notificationList>div:nth-child(even) {
  background-color: #faf6f2;
}

/* .notificationList > div:last-child {background: #fff !important;} */
.notificationList>div:hover {
  background-color: #3f2315;
  color: #fff;
}

.notificationList>div p a {
  line-height: 19px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.notification-drop>button.active {
  border: 0px !important;
  border-color: inherit !important;
  outline: inherit !important;
}

.notification-drop>button:focus {
  border: 0px !important;
  border-color: inherit !important;
  outline: inherit !important;
}

.notification-drop>button.show {
  border: 0px !important;
  border-color: inherit !important;
  outline: inherit !important;
}

/* .form-sec, .reservations-list {min-height: calc(100vh - 94px);} */
.header-not {
  display: flex;
  width: 260px
}

.header-not>.notification-drop {
  /* width:70px; */
  text-align: center;
  position: relative;
}

.header-not>.notification-drop .dropdown-menu {
  width: 280px;
}

.pagination-list .page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: var(--primary_color);
  border-color: var(--primary_color);
}

.pagination-list .page-link {
  color: #a0a0a0;
  border-radius: 100% !important;
  width: 30px;
  height: 30px;
  line-height: 18px;
  margin-left: 4px !important;
  font-size: 13px;
  padding: 7px;
  text-align: center;
}

@media (max-width: 991px) {
  .daterangepicker .table-condensed {
    display: inherit;
  }

  .daterangepicker .table-condensed thead {
    display: inherit;
  }

  .daterangepicker .table-condensed thead tr {
    display: inherit;
    margin-bottom: 0;
    border: none;
    padding: 0;
    border-radius: 0;
  }

  .daterangepicker .table-condensed thead tr th {
    display: table-cell;
  }

  .daterangepicker .table-condensed tbody {
    display: inherit;
  }

  .daterangepicker .table-condensed tbody tr {
    display: inherit;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .daterangepicker .table-condensed tbody tr td {
    display: inline-grid;
    justify-content: center;
    padding: 0;
  }
 .daterangepicker .table-condensed tbody tr td::before{
  content:inherit!important;
 }

  .daterangepicker td.active,
  .daterangepicker td.active:hover {
    background-color: #357ebd !important;
    border-color: transparent;
    color: #fff;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  thead {
    display: none;
    /* Hide table header */
  }

  tr {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
  }

  td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    position: relative;
    background: transparent !important;
  }

  td::before {
    content: attr(data-label);
    /* Use data-label as column title */
    font-weight: bold;
    text-transform: uppercase;
    color: #555;
    width: 120px;
    text-align: left;
    font-size: 13px;
    min-width: 140px;
    padding-top: 1px;
    display: inline-block;
  }

  /* .reservations-list td::before{display: none;} */
  .reservations-list td {
    display: flex;
    justify-content: space-between;
    text-align: right;
  }

  .table-bordered>:not(caption)>* {
    border-width: var(--bs-border-width) 0;
    background: rgba(255, 255, 255, 0.5);
  }

  td:last-child {
    justify-content: end;
  }

  td:last-child::before {
    display: none;
  }

  .table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-bg-type: unset;
  }

  .table-striped>tbody>tr:nth-of-type(odd) {
    background: #faf6f2;
  }

  .table-style td {
    border-bottom: 1px dashed #acacac;
  }

  .table-style td:last-child {
    border: 0;
  }

  .announcement-list table td::before {
    display: none;
  }

  .announcement-list table td {
    display: block;
    text-align: left;
  }
}

/* 27-mar-2025 */
.reply-time {
  width: 100%;
  color: #ccc;
  font-size: 12px;
  margin-top: 4px;
}

.chatbox .chat.right,
.chatbox .chat.left {
  flex-wrap: wrap;
  gap: 2px;
}

.chatbox .chat.right .reply-time {
  text-align: right;
}

/* 1-may-2025 */
.bootbox-close-button {
  position: absolute;
  right: 10px;
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e);
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
  border: 0;
  border-radius: .375rem;
  opacity: var(--bs-btn-close-opacity);
  color: transparent;
}

.bootbox-body {
  padding-right: 20px;
}

.loginBtn {
  background: #3f2315;
  color: #fff;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 18px;
  width: 160px;
  text-align: center;
  margin-left: auto;
}

.dropdown.my-account {
  margin-left: 15px;
}

.loginBtn:hover {
  background: #c06e53 !important;
  color: #fff;
}


/* home new 9-june-2025 */
.banner {
  position: relative;
}

.banner figure {
  margin-bottom: 0;
}

.banner img {
  width: 100%;
}

.banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.banner .banner-content h1 {
  font-size: 130px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 0.85;
  padding-left: 50px;
}

.banne-line {
  height: 252px;
  width: 3px;
  background: var(--primary_color);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -180px;
}


.about-sec {
  padding-top: 50px;
  padding-bottom: 240px;
}

.about-sec-in {
  padding: 55px;
  width: calc(100% - 30px);
  background: var(--primary_color);
}

.about-image {
  margin-right: -100px;
}

.about-content {
  padding-right: 60px;
}

.about-content p {
  font-size: 22px;
  margin-bottom: 45px;
}

/* contact new */
.inner-bann {
  background: url(../images/contact-img.jpg) no-repeat center center;
  background-size: cover;
  padding: 120px 0;
}

.inner-bann h1 {
  color: #fff;
  font-size: 80px;
  margin-bottom: 0;
  font-weight: 900;
  text-align: center;
}

/* contact form */
.contact-form {
  padding: 150px 0;
}

.contact-form .form-sec-in {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--secondary_color);
}

/* contact form inputs */
.contact-form .form-control {
  border-radius: 5px;
  border: 1px solid #9e9e9e;
  padding: 12px 15px;
  font-size: 14px;
  margin-bottom: 5px;
  height: 50px;
}

.contact-form .form-control::placeholder {
  opacity: 0.7;
}

.contact-form .form-control:focus {
  border-color: var(--primary_color);
  box-shadow: none;
}

.contact-form .form-group {
  padding-bottom: 25px;
}

.contact-form textarea.form-control {
  height: 157px;
}

.contact-form .row>div {
  padding: 0 22px;
}

.contact-form .row {
  margin: 0 -22px;
}

.contact-form-in {
  background: #fff;
  padding: 40px 40px 10px;
  border-radius: 5px;
  box-shadow: 0 0 15px #d0d0d0cc;
}

.reservations-list .btn-warning {
  background: var(--primary_color);
  border-color: var(--primary_color);
  color: #fff;
}

.reservations-list .btn-primary {
  background: var(--secondary_color);
  border-color: var(--secondary_color);
  color: #fff;
}

.users-list-filter .form-control,
.users-list-filter .form-select {
  height: 35px;
  margin-bottom: 0;
  padding: 5px 12px;
}

.errorall {
  margin-bottom: 10px !important;
  display: inline-block;
}

.thank-page-in {
  padding: 120px;
}

.thank-page .heading-typ2 {
  font-size: 72px;
}

.notification .badge {
  top: 10px !important;
  right: 3px;
  left: unset !important;
}

.logo,
.header-btn {
  width: auto !important;
}

/* For Webkit Browsers (Chrome, Safari, Edge) */
.reservation-drop .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  /* Width of the scrollbar */
}

.reservation-drop .dropdown-menu::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* Track color */
  border-radius: 10px;
}

.reservation-drop .dropdown-menu::-webkit-scrollbar-thumb {
  background: #888;
  /* Thumb color */
  border-radius: 10px;
}

.reservation-drop .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Thumb hover color */
}

/* For Firefox */
/* * {
  scrollbar-width: thin;
  scrollbar-color: #888 #f0f0f0; 
} */
.reservation-drop .dropdown-menu {
  max-height: 230px;
  overflow: auto;
}

.widin {
  width: 140px;
}

/* responsive */
@media(min-width:992px) {
  .container-fluid {
    padding: 0 50px;
  }
}

@media(min-width:1200px) {
  .container {
    max-width: 1140px;
  }

  .container-fluid {
    padding: 0 100px;
  }
}

@media(min-width:1500px) {
  .container {
    max-width: 1270px;
  }
}

@media(max-width:1500px) {
  .heading-typ1 {
    font-size: 40px;
  }

  /*.btn-typ1, .btn-typ2 {padding: 10px 30px; font-size: 15px;} */
  .heading-typ2 {
    font-size: 25px;
  }

  .heading-typ3 {
    font-size: 18px;
  }
}

@media(max-width:1199px) {

  p,
  li {
    font-size: 15px;
  }

  .header-nav {
    visibility: hidden;
  }

  .nav-btn span {
    display: block;
    width: 20px;
    height: 3px;
    background: var(--secondary_color);
    margin: 5px 0px 5px auto;
    border-radius: 5px;
  }

  .nav-btn {
    display: block;
  }

  .header-nav {
    position: fixed;
    z-index: 99999;
    right: 0;
    width: 100%;
    height: 100vh;
    top: 0;
    overflow: auto;
    transition: .5s;
  }

  .header-nav nav>ul {
    display: block;
    padding: 75px 0;
  }

  .header-nav nav>ul>li {
    margin-left: 0;
    text-align: center;
    margin: 15px 0;
  }

  .submenu {
    position: static;
    transform: unset;
    border-radius: 0;
    box-shadow: none;
    display: none;
    transition: unset;
    visibility: unset;
    opacity: 1;
  }

  header button.close {
    display: block;
  }

  header button.close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    background: transparent;
    border: 0;
  }

  header button.close svg {
    width: 30px;
  }

  .nav-btn span:nth-child(2) {
    width: 28px;
  }

  .nav-btn span:nth-child(3) {
    width: 22px;
  }

  .header-nav nav>ul>li>a {
    padding: 5px 20px;
    font-size: 20px;
    color: #fff;
  }

  .header-btn {
    margin-left: auto;
    margin-right: 15px;
  }

  li.menu-item-has-children>a {
    padding-right: 5px !important;
  }

  li.menu-item-has-children .arrow {
    position: static;
  }

  li.menu-item-has-children .arrow path {
    stroke: #fff;
  }

  .header-nav nav>ul>li a.active,
  .header-nav nav>ul>li a:hover {
    border: 0;
    color: #fff;
  }

  /* mob menu animation */

  .header-nav ul li {
    position: relative;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 0;
    overflow: hidden;
    -webkit-transform: translate(30px, 0%);
    transform: translate(30px, 0%);
    -webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, transform .2s ease;
    transition: opacity .2s ease, transform .2s ease, -webkit-transform .2s ease;
  }

  .header-nav.visible ul li {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease;
    transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
  }

  .header-nav.visible ul li:nth-child(1) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
  }

  .header-nav.visible ul li:nth-child(2) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
  }

  .header-nav.visible ul li:nth-child(3) {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
  }

  .header-nav.visible ul li:nth-child(4) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
  }

  .header-nav.visible ul li:nth-child(5) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
  }

  .header-nav.visible ul li:nth-child(6) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
  }

  .header-nav.visible ul li:nth-child(7) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
  }

  .header-nav.visible ul li:nth-child(8) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
  }

  .header-nav.visible ul li:nth-child(9) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
  }

  .header-nav:before,
  .header-nav:after {
    content: "";
    position: fixed;
    top: 0px;
    right: 0px;
    width: 0;
    height: 0;
    background-color: rgba(20, 21, 26, 0.6);
    border-bottom-left-radius: 200%;
    z-index: -1;
    transition: border-radius linear 0.8s, width cubic-bezier(0.77, 0, 0.175, 1) 0.6s, height cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
  }

  .header-nav:after {
    background-color: var(--primary_color);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    box-shadow: 6px 7px 28px 0 rgba(16, 16, 16, 0.3);
  }

  .header-nav.visible:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .header-nav.visible:before,
  .header-nav.visible:after {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }

  .header-nav.visible:after {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
  }

  .header-btn {
    width: auto !important;
  }

  /* header css end */


  .logo,
  .header-btn {
    width: 190px;
  }

  .header-btn .btn-typ1 {
    width: 100%;
  }

  .btn-typ1,
  .btn-typ2 {
    padding: 10px 32px;
    font-size: 14px;
  }

  .link {
    font-size: 14px;
  }

  .heading-typ3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .heading-typ1 {
    font-size: 36px;
  }

  .heading-typ2 {
    font-size: 24px;
  }

  .heading-sec.text-center {
    margin: 0 auto 15px;
  }

  .form-sec .heading-typ2,
  .reservations-list .heading-typ2 {
    color: #000000;
  }


  .details-sec .details-itm h5 {
    width: 150px;
    min-width: 150px;
  }

  .table-style td .btn {
    padding: 5px;
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  /* new 9-june-25 */
  .about-content {
    padding-right: 0;
  }
}

@media(max-width:991px) {

  p,
  li {
    font-size: 14px;
  }

  .logo {
    width: 150px;
  }

  .header-btn a {
    font-size: 15px;
  }

  .header-btn-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
    box-shadow: 0 0 0 8px transparent;
    top: 54%;
  }

  .header-btn {
    width: 170px;
  }

  .heading-typ1 {
    font-size: 30px;
  }

  .heading-typ2 {
    font-size: 22px;
  }

  /* my reservations */
  .table-style td,
  .table-style th {
    padding: 5px 8px;
    font-size: 14px;
  }

  /* .table-style {width: 850px;} */
  .table-responsive {
    border-radius: 10px;
  }

  .chat-wrapper {
    margin-top: 30px;
  }

  .chat-container {
    max-width: 100%;
  }

  .form-control,
  .form-select {
    margin-bottom: 8px;
    padding: 7px 10px;
  }

  .footer-in {
    padding: 50px 0;
  }

  .footer-copyright {
    padding: 20px 0;
  }

  .banner .banner-content h1 {
    font-size: 100px;
    margin-bottom: 0;
    padding-left: 0;
  }

  .about-sec {
    padding: 190px 0;
  }

  .banne-line {
    height: 200px;
    bottom: -145px;
  }

  .about-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .about-sec-in {
    padding: 45px;
  }

  .about-image {
    margin-right: -75px;
  }

  /* contact page */
  .inner-bann {
    padding: 80px 0;
  }

  .inner-bann h1 {
    font-size: 65px;
  }

  .contact-form {
    padding: 95px 0;
  }

  .thank-page-in {
    padding: 50px;
  }

  .thank-page .heading-typ2 {
    font-size: 50px;
  }

  .thank-page h5 {
    font-size: 18px;
  }
}

@media(max-width:991px) and (min-width:767px) {
  .st-5-2 .btn-typ1 {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media(max-width:767px) {
  p {
    margin-bottom: 14px;
  }

  .heading-typ1 {
    font-size: 30px;
  }

  .heading-typ1 br {
    display: none;
  }

  .heading-typ2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .heading-typ3 {
    font-size: 14px;
  }

  .widin {
    width: 80px;
  }

  .btn-typ1,
  .btn-typ2 {
    padding: 10px 25px;
    font-size: 13px;
  }

  /* login page */
  .login-part label,
  .login-part a {
    font-size: 14px;
  }

  /* form page */
  .form-sec-in,
  .reservations-list-in {
    padding: 20px;
  }

  /* .form-control, .form-select, label.form-label {font-size: 14px;} */
  .form-sec .card-body {
    padding: 18px !important;
  }

  .chatbox {
    height: 300px;
  }

  .form-control,
  .form-select {
    padding: 5px 10px;
    font-size: 13px;
  }
  /* label.form-label {line-height: 10px;} */
  .banne-line {
    height: 155px;
    bottom: -110px;
  }

  .banner .banner-content h1 {
    font-size: 42px;
  }

  .about-sec {
    padding: 0px 0px 130px;
  }

  .about-sec-in {
    padding: 35px;
    width: 100%;
  }

  .about-content {
    margin-bottom: 10px;
  }

  .about-image {
    margin: 0 0 -60px;
  }

  .banner img {
    height: 300px;
    object-fit: cover;
  }

  /* contact page */
  .inner-bann {
    padding: 60px 0;
  }

  .inner-bann h1 {
    font-size: 55px;
  }

  .contact-form {
    padding: 70px 0;
  }

  .contact-form .form-group {
    padding-bottom: 15px;
  }

  .contact-form .form-control {
    height: 40px;
  }

  .contact-form-in {
    padding: 40px 40px 40px;
  }

  .users-list-filter .form-control,
  .users-list-filter .form-select {
    margin-bottom: 10px;
  }

  .thank-page-in {
    padding: 40px 30px;
  }

  .thank-page .heading-typ2 {
    font-size: 38px;
  }

  .thank-page h5 {
    font-size: 16px;
  }
}

@media(max-width:575px) {
  .heading-new-reservation-block {
    position: inherit !important;
  }

  .footer-links a {
    margin-bottom: 15px;
  }

  .heading-new-reservation {
    display: flex;
    flex-direction: column;
    text-align: center !important;
  }

  .logo {
    min-width: 120px;
  }

  .header-nav nav>ul>li {
    margin-left: 0px;
  }

  .header-nav nav>ul {
    padding-left: 15px;
  }

  .heading-sec {
    max-width: 100%;
  }

  .my-account .name {
    display: none;
  }

  .my-account .btn {
    margin-left: auto;
    margin-right: 10px;
  }

  .header-btn {
    margin-right: 0;
  }

  .loginBtn {
    width: auto;
    margin-right: 10px;
  }

  .footer-links {
    margin-bottom: 15px;
  }

  .copyright p {
    text-align: center !important;
  }

  .footer-links ul li,
  footer h4 {
    text-align: center;
  }

  footer h4 {
    color: #f89623 !important;
  }

  .footer-links ul li span {
    display: none;
  }

  .copyright {
    margin-top: 10px;
  }

  /* login page */
  .login-part {
    padding: 35px 30px 40px 30px;
    border-radius: 30px;
  }

  .details-itm.note {
    display: block;
  }

  .form-sec .heading-typ2,
  .reservations-list .heading-typ2 {
    letter-spacing: 1px;
  }

  .heading-typ4 {
    font-size: 20px;
    margin-bottom: 20px;
    /* text-align: left; */
  }

}
body.loading {
  overflow: hidden;
}
body.loading .overlay {
  display: block;
}
.overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.5) url(/site/images/loader.gif) center no-repeat;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.rotate-icon {
  animation: rotate 0.5s linear;
}
.heading-new-reservation-block {
  position: absolute;
  right: 0;
  top: 0;
}

/* =======================
  LOCATION CONTAINER
======================= */
.location-content .user-card {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  border: 1px solid transparent;
}
.location-content .user-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(192, 110, 83, 0.25);
  border-color: #c06e53;
}
.location-content .title-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}
.location-content .user-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-content .annouceTitle a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.location-content .annouceTitle a i {
  font-size: 1.1rem;
  color: #c06e53;
}
.location-content .annouceTitle a:hover {
  color: #333;
  transform: translateX(5px);
}
.location-content .annouceTitle a:hover i {
  color: #c06e53;
}
.dropdown-item-profile {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}