.menu {
  position: relative;
}

.topbar {
  position: absolute;
  right: 0;
  z-index: 1;
  background: linear-gradient(45deg, #fa8d00, #f94c16);
  border-radius: 0 0 10px 10px;
}

.topbar ul {
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}

.topbar ul li {
  padding: 3px 0px;
}

.topbar ul li a {
  color: #fff;
  font-size: 14px;
  border-right: 1px solid #fff;
  padding: 0 15px;
}

.topbar ul li:last-child a {
  border-right: 0;
}

.service-card .content-wrapper .content-inner .icon {
  background: linear-gradient(45deg, #fa8d00, #f94c16);
}

.service-card .image-wrapper .favourite-icon.active i {
  color: red;
}

.service-card.style-2 .content-wrapper .content-inner .price {
  color: #000;
}

.service-card.style-2
  .content-wrapper
  .content-inner
  .time-zone
  .time-zone-inner
  i {
  color: #ccc;
}

.footer-contact .contact-icon {
  background: #ffffff;
}

.auth-body {
  overflow: hidden;
  height: 100vh;
}

.auth-details {
  padding: 50px 50px;
  overflow: auto;
  max-height: 100vh;
}

.auth-details h1 {
  font-size: 30px;
  line-height: 1.4;
}

.auth-details h1 span {
  background: linear-gradient(45deg, #fa8d00, #f94c16);
  color: #fff;
  padding: 0 10px;
}

.travel-auth-img {
  height: 100vh;
  overflow: hidden;
}

.travel-auth-img img.img-fluid {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.login-logo img.img-fluid {
  max-width: 170px;
}

.auth-details p {
  color: #000;
}

.custom-group-box input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.custom-group-box label {
  position: relative;
  cursor: pointer;
}

.custom-group-box label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #c9c9c9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.custom-group-box input:checked + label:before {
  background: #f97c05;
  border: 1px solid #f97c05;
}

.custom-group-box input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.otp {
  display: flex;
  margin-top: 10px;
}

.otp .form-control {
  width: 25%;
  margin-right: 12px;
  border-radius: 9.91px;
  background: #f3f3f3;
  padding: 20px;
  font-size: 21px;
  text-align: center;
  height: 60px;
}

.form-control {
  height: 48px;
}

.main-menu ul li a.profile-link {
  padding-bottom: 0;
}

.main-menu ul li a.profile-link img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
}

.profile-img input[type="file"] {
  display: none;
}

.profile-img {
  color: #fa8d00;
}

.my-profile-box {
  background: #fff;
  padding: 30px;
  display: flex;
  border-radius: 20px;
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.my-profile-box .profile-details {
  flex: 1;
  padding: 10px 30px 0;
}

.mprofile-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.my-profile-box .profile-details h3 {
  font-size: 21px;
  margin-bottom: 5px;
}

.my-profile-box .profile-details p {
  font-size: 16px;
  margin-bottom: 0;
}

.my-profile-form {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 7px 24px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.theme-btn.style-3 {
  background: linear-gradient(45deg, #1d797a, #30b9bb);
  color: #fff;
}

section.profile-section {
  padding: 20px 0 50px;
}

section.faq-section {
  padding: 50px 0px;
}

.accordion__heading {
  margin-bottom: 1rem;
  padding: 0 1.4rem;
  font-size: 30px;
}

.accordion__item:not(:last-child) {
  border-bottom: 1px solid lightgrey;
}

.accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: white;
  border: none;
  outline: none;
  color: var(--color-text);
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}

.accordion__btn:hover {
  color: #fa8d00;
  background: #f5f5f6;
}

.accordion__item--active .accordion__btn {
  color: var(--color-purple);
  border-bottom: 2px solid #fa8d00;
  background: hsl(248, 53%, 97%);
}

.fa-lightbulb {
  padding-right: 1rem;
}

.accordion__icon {
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
  opacity: 0.9;
}

.accordion__item--active .accordion__icon {
  transform: rotate(135deg);
}

.accordion__content {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}

.accordion__content p {
  padding: 1rem 1.8rem;
}

.accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}

.contact-section {
  padding-bottom: 50px;
}

.terms-box h4 {
  font-size: 24px;
  font-weight: 700;
}

.terms-box h5 {
  font-weight: 700;
  font-size: 18px;
}

.packging-section {
  background: linear-gradient(45deg, #fa8d00, #f94c16);
  padding: 50px 0px;
}

.account-details {
  padding: 0px;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 100%;
  position: relative;
}

.account-details h3 {
  color: #000;

  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
}

.account-form {
  padding: 20px;
}

.account-details .form-group {
  margin-bottom: 20px;
}

.account-details .form-group .form-control {
  padding-left: 15px;
  background: #f3f3f3;
}

.account-form .preference .text-checkbox label {
  font-size: 14px !important;
}

.account-form .form-group p {
  font-size: 24px;
}

.chat-box {
  display: flex;
  height: 100%;
}

.chat-left {
  width: 35%;
  padding: 0px 0px;
  flex-shrink: 0;
  border-right: 1px solid #eee;
  height: 100%;
}

.chat-right {
  flex: 1;
  position: relative;
}

.chat-search {
  position: relative;
  padding: 0px 15px 15px;
  border-bottom: 1px solid #eee;
}

.chat-search .form-control {
  background-color: rgba(0, 0, 0, 0.06);
  height: 50px;
  border-radius: 100px;
  border-color: rgba(0, 0, 0, 0.06);
  padding: 0 20px;
}

.chat-search a.form-icon {
  position: absolute;
  top: 12px;
  right: 25px;
}

.chat-list {
  max-height: 600px;
  overflow-y: scroll;
  padding: 0px 10px;
}

.chat-list::-webkit-scrollbar {
  display: none;
}

.chat-list .chat-user {
  display: flex;
  padding: 12px 0px 10px 12px;
  border-bottom: 1px solid #eee;
}

.chat-list .chat-user .chat-user-img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.chat-list .chat-user .chat-user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-list .chat-user .chat-user-detail {
  flex: 1;
  position: relative;
}

.chat-list .chat-user .chat-user-detail h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 16px;
  color: #000;
}

.chat-list .chat-user .chat-user-detail span {
  color: #5e5e5e;
}

.chat-list .chat-user .chat-user-detail .chat-back {
  position: absolute;
  width: 60px;
  text-align: center;
  right: 0;
  top: 0;
}

.chat-list .chat-user .chat-user-detail .chat-back span {
  font-size: 14px;
  color: #8a8a8a;
  display: block;
}

.chat-list .chat-user .chat-user-detail .chat-back img {
  width: 8px;
}

.chat-header {
  width: 100%;
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-main-img {
  display: flex;
  align-items: center;
  width: 100%;
}

.chat-main-img img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 10px;
}

.chat-main-img h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

.mobile-chat-arrow {
  display: none;
}

.conversation-list {
  padding: 15px;
}

.conversation-list ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 600px;
  overflow-y: scroll;
}

.conversation-list ul::-webkit-scrollbar {
  display: none;
}

.conversation-list ul li.c-odd {
  max-width: 50%;
  display: flex;
}

.conversation-list ul li.c-even {
  max-width: 50%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.conversation-list ul li .chat-odd {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #eee;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.conversation-list ul li .chat-odd p {
  margin-bottom: 5px;
}

.conversation-list ul li .chat-odd span {
  color: #808080;
  font-size: 10px;
  display: block;
  text-align: right;
}

.conversation-list ul li .chat-even {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #eee;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  background: #ffbd7230;
}

.conversation-list ul li .chat-even p {
  margin-bottom: 0;
}

.conversation-list ul li .chat-even span {
  color: #808080;
  font-size: 10px;
}

.chat-input {
  border-top: 1px solid #eee;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.chat-input .form-control {
  border: 0;
  height: 50px;
  background: transparent;
  padding-left: 50px;
  padding-right: 60px;
}

.chat-input .file-attach {
  position: absolute;
  top: 10px;
  left: 15px;
}

.chat-input .file-attach input[type="file"] {
  display: none;
}

.chat-input a {
  position: absolute;
  right: 15px;
  top: 10px;
}

.chat-input a img {
  width: 36px;
}

.notification-list {
  padding: 15px;
}

.notification-list h5 {
  color: #5e5e5e;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.notification-box {
  display: flex;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
}

.notification-box .notification-img {
  flex-shrink: 0;
  margin-right: 10px;
}

.notification-box .notification-img img {
  width: 61px;
  height: 61px;
  border-radius: 50%;
}

.notification-box .notification-detail {
  flex: 1;
}

.notification-box .notification-detail h6 {
  margin-bottom: 0;
  font-weight: 500;
}

.notification-box .notification-detail p {
  margin-bottom: 0;
}

.notification-box .notification-detail span {
  font-size: 15px;
  color: #8a8a8a;
}

/**Megha**/
#hotel .service-filter-wrapper {
  box-shadow: 0px 24px 64px 0px rgba(199, 206, 218, 0.25);
  padding: 34px;
  background-color: #ffffff;
  z-index: 20;
  border-radius: 16px;
}

#hotel .service-filter-card form {
  position: relative;
  display: inline-flex;
  gap: 30px;
  width: 100%;
}

#hotel .service-filter-card form .single-item {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  width: 35%;
  gap: 8px;
  border-right: 1px solid #c1c1c1;
}

#hotel .service-filter-card form .single-item label,
.service-filter-card form .single-item .priceLabel {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #041126;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#hotel .service-filter-card form .single-item label:after,
.service-filter-card form .single-item .priceLabel:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  color: #1d797a;
  font-size: 14px;
}

#hotel .service-filter-card form .single-item .select-service-inner {
  display: none;
}

#hotel .service-filter-card form input,
#hotel .service-filter-card form span {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #585866;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin: 0px;
  cursor: pointer;
}

#hotel .service-filter-card form input {
  width: 100px;
}

#hotel .service-filter-card form .single-item .select-service {
  position: relative;
}

#hotel .service-filter-card form .single-item .checkin-datepicker {
  position: relative;
}

#hotel .service-filter-card form .single-item .checkout-datepicker {
  position: relative;
}

#hotel .service-filter-card form .single-item .select-guest {
  position: relative;
}

.category-select {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.category-select .single-select {
  color: var(--color-dark);
  width: auto;
  margin: 10px;
  padding-right: 43px;
  /* background: url(../images/arrow-icon2.png) 85% center no-repeat rgba(0, 0, 0, 0); */
  line-height: 24px;
  font-weight: 400;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 0px !important;
}
/* ====-----------------------------============== */
.bg-light-blue {
  background-color: #1d797a;
}
.slider-area.style-2 .single-slider {
  position: relative;
  overflow: hidden;
}

.slider-area.style-2 .single-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  /* Light black overlay */
  z-index: 1;
  /* background: linear-gradient(
179.55deg,
rgba(5, 6, 19, 0) 13.13% 13.13%,
#1d797a99 51.64% 51.64%
); */
}

.slider-area.style-2 .single-slider > * {
  position: relative;
  z-index: 2;
}

.bottom-shape {
  filter: brightness(0) saturate(100%) invert(30%) sepia(20%) saturate(600%)
    hue-rotate(130deg) brightness(0.93) contrast(0.93);
}

.footer-logo img {
  width: 300px;
}
.location-card .image-wrapper {
  position: relative;
  height: 266px;
}
.about-us-area.style-1 .shape-1 {
  filter: brightness(0) saturate(100%) invert(30%) sepia(20%) saturate(600%)
    hue-rotate(130deg) brightness(0.93) contrast(0.93);
}
.location-area.style-5 .location-card {
  height: 100%;
}
.venue_user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  object-fit: cover;
}
.primary {
  color: #1d797a !important;
}
.main-menu ul li a {
  padding: 10px 18px;
}
.header-menu-area.sticky_menu .main-menu ul li a {
  padding: 10px 18px;
}
.theme-btn.style-2,
.tour-area .location-area.style-1 .portfolio-filter li.style-2,
.wp-block-loginout a.style-2,
input.theme-btn.style-2 {
  color: #1d797a;
}
.location-card.style-2 .content-wrapper .content-inner .price {
  color: #1d797a;
}
.location-card.style-2
  .content-wrapper
  .content-inner
  .time-zone
  .time-zone-inner
  i {
  color: #1d797a;
}
