@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {margin: 0;padding: 0;box-sizing: border-box;}
@charset "UTF-8";
body {
  color: #000000;
  font-size: 14px;
  line-height: 1.42857;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
img {max-width: 100%;}
a {text-decoration: none;}
ul { margin: 0;padding: 0;}
li {list-style: none;}
h3,h4 {margin: 0}
p {margin: 0}
a:hover {
  text-decoration: none;
}
.container {
  width: 1264px;
  max-width: 100%;
  margin: 0 auto;
} 
body.modal-open {
  overflow: hidden;
/*  padding-right: 17px;*/
}
body.modal-open .tr-hotel-info-tabs {
  position: relative;
}
h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #000000;
}
h3 {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.01em;
  color: #000000;
  padding:  0;
}
.tr-content-section {
  max-width: 640px;
}

.tr-btn {
  padding: 16px;
  background: #FF4B01;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  width: 100%;
  border: none;
}

.animated-bg-1,
.tr-travel-site .tr-travel-price a.animated-bg-1 {
  color: transparent;
  background: linear-gradient(100deg, #eceff1 30%, #f6f7f8 50%, #eceff1 70%);
  background-size: 400%;
  animation: animatedBg1 1s ease-in-out infinite;
  text-indent: -9999px;
}
.animated-bg-2,
.tr-travel-site .tr-travel-price a.animated-bg-2 {
  color: transparent;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: animatedBg2;
  animation-timing-function: linear;
  background-color: #D9E2E8;
  background: linear-gradient(to right, #eeeeee 8%, #bbbbbb 18%, #eeeeee 33%);
  background-size: 800px 104px;
  text-indent: -9999px;
}
@keyframes animatedBg1 {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes animatedBg2 {
  0% {
    background-position: -800px 0
  }
  100% {
    background-position: 800px 0
  }
}

.is-loading {
  text-indent: -9999px;
}
.tr-loader {
  display: flex;
  justify-content: space-between;
  width: 100px;
  margin: auto;
  position: relative;
  top: -30px;
}
.tr-loader .ball {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #FFFFFF;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(0);
  animation: bounce 1.2s infinite ease-in-out;
}
.tr-loader .ball:nth-child(1) {
  animation-delay: 0s;
}
.tr-loader .ball:nth-child(2) {
  animation-delay: 0.2s;
}
.tr-loader .ball:nth-child(3) {
  animation-delay: 0.4s;
}
.tr-loader .ball:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes bounce {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(-5px);
  }
}
.tr-custom-scrollbar::-webkit-scrollbar {
  width: 10px;
}
.tr-custom-scrollbar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
.tr-custom-scrollbar::-webkit-scrollbar-thumb {
  background: #D6D6D6; 
  border-radius: 10px;
}
.tr-custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #D6D6D6; 
}
.tr-show-all a {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #FF4B01;
  color: #FF4B01;
}
.tr-show-all a:hover {
  border-color: #ffffff;
}
button.tr-anchor-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #FF4B01;
  border: none;
  border-bottom: 1px solid #FF4B01;
  background: transparent;
}
button.tr-anchor-btn:hover {
  border-color: transparent;
}
/*Custom Select Checkbox*/
.tr-check-box {
  cursor: pointer;
  position: relative;
  padding-left: 26px;
}
.tr-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  background-color: #FFFFFF;
  border: 1px solid #6A6A6A;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px; 
}
.tr-check-box:hover input ~ .checkmark {
  background-color: #F0F3F5;
}
.tr-check-box input:checked ~ .checkmark {
  background-color: #000000;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.tr-check-box input:checked ~ .checkmark:after {
  display: block;
}
.tr-check-box .checkmark:after {
  background-image: url(../images/icons/check-white-icon.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
}
/*Custom Select Box*/
.custom-select {
  display: flex;
  align-items: center;
}
.custom-select select {
  display: none;
}
.custom-select .select-selected {
  background-color: #ffffff;
}
.custom-select .select-selected:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background-image: linear-gradient(to top, #e7e7e7, #f8f8f8);
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 6px right 10px;
  background-size: 24px;
  margin-left: 6px;
  width: 32px;
  height: 36px;
}
.custom-select .select-selected.select-arrow-active:after {
  transform: rotate(180deg);
  right: 10px;
}
.custom-select .select-selected {
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid #D6D6D6;
  border-radius: 80px;
  user-select: none;
  width: 134px;
  height: 36px;
  line-height: 18px;
  text-align: left;
}
.custom-select .select-items div {
  color: #222222;
  font-weight: 400;
  margin: 10px 0;
  padding: 4px 6px;
  position: relative;
  text-align: left;
}
.custom-select .select-items div:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #D6D6D6;
}
.custom-select .select-items div.same-as-selected {
  background: #F0F3F5;
  border-radius: 8px;
  color: #222222;
  font-weight: 600;
}
.custom-select .select-items {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 99;
  padding: 5px 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 12px;
  width: 190px;
}
.custom-select .select-items div:nth-of-type(1):before {
  border-color: #ffffff;
}
.custom-select .select-hide {
  display: none;
}

.list-content li {
  display: none;
}
.list-content li.visible {
  display: list-item;
}

/******* HEADER Start *******/
header {
  border-bottom: 1px solid #D6D6D6;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1001;
}
header .tr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
header .tr-hamburgers-logo {
  display: none;
}
header .tr-hamburgers {
  background-image: url(../images/icons/menu-icon.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
header .tr-header .tr-logo img {
  max-width: 110px;
}

header .tr-search-info-section {
  background: rgba(240, 243, 245, 0.4);
  border: 0.6px solid #D6D6D6;
  border-radius: 100px;
  padding: 7.2px 8px 7.2px 12px;
}
header .tr-search-info-section.hide {
  display: none;
}
header .tr-utility-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .tr-utility-nav .nav-item {
  border-left: 1px solid #D6D6D6;
  color: #222222;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  padding: 0 12px;
}
header .tr-utility-nav .nav-item:nth-of-type(1) {
  border-left: none;
}
header .tr-utility-nav .nav-item.tr-search-btn-icon {
  border-left: none;
  line-height: 9px;
  padding: 0 0 0 20px;
}
header .tr-utility-nav button.tr-serach-modal {
  background-image: url(../images/icons/search-white-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  padding: 0;
}

header .tr-nav-tabs {
  display: none;
  justify-content: center;
  margin: 10px 0;
}
header .tr-nav-tabs.show {
  display: flex;
}
header .tr-nav-tabs > div {
  border-bottom: 1px solid transparent;
  margin: 0 20px;
}
header .tr-nav-tabs > div span {
  display: block;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #131313;
  cursor: pointer;
  padding: 9px 20px;
}
header .tr-nav-tabs > div span img {
  margin: -3px 4px 0 0;
}
header .tr-nav-tabs > div span:hover {
  background-color: #F0F3F5;
}
header .tr-nav-tabs > div.active {
  border-color: #000000;
}
header .tr-nav-tabs > div.active span {
  font-weight: 700;
}
header .tr-nav-tabs > div.active span:hover {
  background-color: #FFFFFF;
}
header .tr-nav-tabs.show.non-clickable div {
  pointer-events: none;
}
header .tr-mobile {
  display: none;
}
header .tr-header.explore-page .tr-utility-nav .nav-item.tr-dates,
header .tr-header.explore-page .tr-utility-nav .nav-item.tr-guest {
  display: none;
}

.tr-login-section {
  position: relative;
  cursor: pointer;
}
.tr-login-section .tr-login {
  background-color: #ffffff;
  background-image: url(../images/icons/user-circle-icon.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: top 7px left 20px;
  border-radius: 8px;
  border: 1px solid #131313;
  font-size: 16px;
  font-weight: 600;
  line-height: 24.4px;
  color: #131313;
  padding: 7px 20px 7px 52px;
  filter: drop-shadow(0px 1px 3.4px rgba(156, 156, 156, 0.29));
}
.tr-login-section .tr-logged {
  display: inline-flex; /* Enables dynamic resizing */
  align-items: center;
  justify-content: space-between; /* Keeps icon aligned */
  background-color: #FFFFFF;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center right 9px;
  border-radius: 8px;
  border: 1px solid #131313;
  font-size: 16px;
  font-weight: 600;
  padding: 7.2px 37px 7.2px 9px; /* Add space for content */
  filter: drop-shadow(0px 1px 3.4px rgba(156, 156, 156, 0.29));
  max-width: 100%; /* Prevents overflow */
  white-space: nowrap; /* Prevents wrapping */
}

.tr-login-section .tr-logged .tr-username {
  background-color: #29857A;
  font-size: 14px;
  line-height: 24.4px;
  color: #FFFFFF;
  border-radius: 12px;
  text-align: center;
  padding: 0 8px; /* Padding adjusts dynamically for text */
  max-width: 100%; /* Ensures no overflow */
  overflow: hidden; /* Prevents content spilling out */
  text-overflow: ellipsis; /* Adds ellipsis for overly long names */
}
.tr-myaccount-modal {
  display: none;
  flex-direction: column;
  padding: 24px 20px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 206px;
  height: 224px;
  background: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 12px;
}
.tr-myaccount-modal.open {
  display: flex;
}
.tr-mz-myaccount-info:not(:first-child) {
  border-top: 1px solid rgba(94, 94, 94, 0.5);
  padding-top: 4px;
}
.tr-mz-myaccount-info li {
  margin-bottom: 5px;
}
.tr-mz-myaccount-info li a {
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 7px left 9px;
  font-size: 16px;
  line-height: 20.4px;
  color: #222222;
  display: block;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 8px 5px 8px 36px;
  position: relative;
  transition: all .3s ease;
}
.tr-mz-myaccount-info li.tr-my-profile-link a {
  background-image: url(../images/icons/user-circle-icon.svg);
}
.tr-mz-myaccount-info li.tr-my-trip-link a {
  background-image: url(../images/icons/save-icon.svg);
  background-size: 18px;
}
.tr-mz-myaccount-info li.tr-my-settings-link a {
  background-image: url(../images/icons/settings-icon.svg);
}
.tr-mz-myaccount-info li.tr-logout-link a {
  background-image: url(../images/icons/log-out-icon.svg);
}
.tr-mz-myaccount-info ul li a:hover {
  background-color: #F0F3F5;
  border-color: #D6D6D6;
}
/******* HEADER End *******/

/******* Refresh Banner Start *******/
.tr-refresh-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FB6161;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 10px;
}
.tr-refresh-banner .tr-refresh-btn {
  background-color: #FFFFFF;
  background-image: url(../images/icons/refresh-icon.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: top 7px right 16px;
  border: 1px solid #FF4B01;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20.4px;
  color: #FB6161;
  margin-left: 20px;
  padding: 7px 46px 7px 16px;
}
/******* Refresh Banner End *******/

/******* Hotel Search - Header Section - Start *******/
.tr-find-hotels {
  display: none;
  background: #FFFFFF;
  padding: 0 20px 12px;
}
.tr-find-hotels.show {
  display: block;
}
.tr-find-hotels .btn-close,
.tr-find-hotels .tr-nav-tabs.tr-mobile {
  display: none;
}
.tr-find-hotels form {
  display: none;
  background: rgba(240, 243, 245, 0.4);
  border: 0.6px solid #D6D6D6;
  border-radius: 50px;
  width: 850px;
  margin: 0 auto;
  padding: 6.6px 9px;
}
.tr-find-hotels form.open {
  display: block;
}
.tr-find-hotels form .tr-form-section {
  display: flex;
  justify-content: center;
}
.tr-find-hotels form .tr-form-fields {
  display: flex;
  justify-content: center;
} 
.tr-find-hotels .col {
  padding: 0;
  position: relative;
}
.tr-find-hotels .tr-form-who {
  padding-right: 24px;
}
.tr-find-hotels label {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 6px;
  left: 24px;
}
.tr-find-hotels .tr-form-booking-date {
  display: flex;
  min-width: 292px;
  margin: 0 20px;
  padding: 0 20px;
  position: relative; 
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkin,
.tr-find-hotels .tr-form-booking-date .tr-form-checkout {
  width: 50%;
  position: relative;
}
.tr-find-hotels .tr-form-booking-date:after,
.tr-find-hotels .tr-form-booking-date:before,
.tr-find-hotels .tr-form-booking-date .tr-form-checkout:after {
  content: "";
  position: absolute;
  top: 10px;
  width: 1px;
  height: 32px;
  background: #DDDDDE;
}
.tr-find-hotels .tr-form-booking-date:after {
  right: 0px;
}
.tr-find-hotels .tr-form-booking-date:before {
  left: 0px;
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkout:after {
  left: -1px;
}
.tr-find-hotels input[type="text"] {
  font-size: 14px;
  line-height: 21.2px;
  color: #6A6A6A;
  border: none;
  background-color: transparent;
  border-radius: 30px;
  padding: 24px 5px 6px 24px;
/*  border-bottom: 1px solid transparent;*/
}
.tr-find-hotels input[type="text"]:focus {
  color: var(--bs-body-color);
  background-color: #FFFFFF;
  border-color: #86b7fe;
  box-shadow: none;
  border: none;
  outline: none;
}
.tr-find-hotels input[type="text"].is-focus{
  background-color: #FFFFFF;
/*  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 1);*/
  box-shadow: 1px 0px 20px rgba(156, 156, 156, 1);
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkin input[type="text"] {
  border-radius: 30px 0 0 30px;
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkout input[type="text"] {
  border-radius: 0 30px 30px 0;
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkin.tr-right-border:before {
  background: #DDDDDE;
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 32px;
  z-index: 2;
}
.tr-find-hotels .tr-form-booking-date .tr-form-checkin.tr-right-border:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  z-index: 1;
}
/*.tr-find-hotels .tr-form-booking-date input[type="text"].focus {
  background-color: #FFFFFF;
}*/
.tr-find-hotels input[type="text"]::placeholder {
  font-size: 14px;
  color: #6A6A6A;
  opacity: 1;
}
.tr-find-hotels input[type="text"]::-ms-input-placeholder {
  font-size: 14px;
  color: #6A6A6A;
}
.tr-find-hotels .tr-form-btn {
  max-width: 80px;
}
.tr-find-hotels .tr-btn {
  background-image: url(../images/icons/search-white-icon.svg);
  background-repeat: no-repeat;
  background-position: top 12px left 12px;
  background-size: 16px;
  border-radius: 50%;
  width: 40px;
  height: 40px; 
  margin-top: 5.5px;
  text-indent: -9999px;
}
/*Recently Search Modal*/
.tr-find-hotels .tr-recent-searchs-modal {
  padding: 16px;
  position: absolute;
  width: 326px;
  left: 0;
  top: 59px;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  display: none;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-enable-location {
  background-image: url(../images/icons/location-enable-icon.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: top 0px left 0px;
  font-weight: 600;
  line-height: 32px;
  padding: 0 0 20px 42px;
}
.tr-find-hotels .tr-recent-searchs-modal h5 {
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
}
.tr-find-hotels .tr-recent-searchs-modal ul {
  flex-wrap: wrap;
}
.tr-find-hotels .tr-recent-searchs-modal ul li {
  border-top: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-find-hotels .tr-recent-searchs-modal ul li:first-child {
  padding-top: 0;
  border-top-color: transparent;
}
.tr-find-hotels .tr-recent-searchs-modal ul li:last-child {
  padding-bottom: 0;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-place-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-place-info:hover{
  background: #F7F7F7;
  border-radius: 8px;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-location-icon {
  background-color: rgba(214, 214, 214, 0.3);
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-radius: 100px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-location-info .tr-hotel-name {
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 4px;
}
.tr-find-hotels .tr-recent-searchs-modal .tr-location-info .tr-hotel-city {
  font-size: 12px;
  line-height: 14px;
  color: #6A6A6A;
}
/*Calender-1 Modal Section - CheckIn/CheckOut*/
.tr-find-hotels .tr-form-booking-date .tr-calenders-modal {
  /*flex-wrap: nowrap;
  justify-content: space-between;*/
  width: 885px;
  position: absolute;
  left: calc(50% - 826px / 2);
  top: calc(100% + 19px);
  background: #FFFFFF;
  border-radius: 12px;
  padding: 46px 40px;
  display: none;
}
.tr-find-hotels .tr-form-booking-date .tr-calenders-modal .custom-calendar {
  width: 43.7%;
}
/*.tr-find-hotels .tr-form-booking-date .tr-calenders-modal #calendar1 .prevMonth,
.tr-find-hotels .tr-form-booking-date .tr-calenders-modal #calendar1 .nextMonth,
.tr-find-hotels .tr-form-booking-date .tr-calenders-modal #calendar2 .prevMonth {
  display: none;
}*/

/*Room and Guest Add/Edit Section*/
.guest__must{font-size:14px}

.tr-find-hotels .tr-guests-modal {
  display: none;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  width: 400px;
  position: absolute;
  top: 59px;
  right: -49px;  
  padding: 9px 35px;
}
.tr-guests-modal .tr-add-edit-guest {
  display: flex;
  flex-wrap: nowrap;
  align-items: center; 
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-guests-modal .tr-add-edit-guest:last-child  {
  border: none;
}
.tr-guests-modal label {
  font-size: 16px;
  font-weight: 500;
  position: static;
}
.tr-guests-modal .tr-add-edit-guest.tr-total-num-of-rooms {
  border-bottom: 0.8px solid rgba(94, 94, 94, 0.5);
}
.tr-guests-modal .tr-total-num-of-rooms .tr-guest {
  font-weight: 600;  
}
.tr-guests-modal .tr-age {
  font-size: 14px;
  color: #6A6A6A;
  line-height: 17px;
  padding-top: 4px;
}
.tr-guests-modal .tr-qty-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 107px;
}
.tr-guests-modal input[type="text"] {
  font-size: 16px;
  width: 40px;
  padding: 8px 6px 6px;
  text-align: center;
}
.tr-guests-modal .tr-qty-box .minus,
.tr-guests-modal .tr-qty-box .plus {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 34px;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  text-indent: -9999px;
}
.tr-guests-modal .tr-qty-box .minus.disabled {
  background-image: url(../images/icons/minus-circle-icon.svg); 
}
.tr-guests-modal .tr-qty-box .plus {
  background-image: url(../images/icons/plus-circle-icon.svg);
}
.tr-guests-modal .tr-qty-box .minus {
  background-image: url(../images/icons/minus-circle-enable-icon.svg); 
}

/*Explore Form*/
.tr-find-hotels form.tr-explore-form {
  width: 410px;
}
.tr-find-hotels form.tr-explore-form .tr-form-where {
  padding-right: 24px;
}
.tr-find-hotels form.tr-explore-form input[type="text"] {
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: top 14px left 11px;
  background-size: 20px;
  width: 325px;
  padding: 15px 38px;
}

#overLay {
  background: #000;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.8;
  z-index: 999;
}
#overLay.active {
  display: block;
}
/******* Hotel Search - Header Section - Start *******/

/******* Mobile Navigation Start *******/
.tr-mobile-nav-section {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 1001;
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.tr-mobile-nav-section.open {
  left: 0;
}
.tr-mobile-nav-content {
  width: 334px;
  max-width: 100%;
  padding: 32px 24px;
  background: #FFFFFF;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  overflow-y: auto;
}
.tr-mobile-nav-content button.btn-nav-close {
  background-color: transparent;
  background-image: url(../images/icons/close-circle-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  border: none;
  width: 24px;
  height: 24px;
}
.tr-mobile-nav-content .tr-nav-header {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.tr-mobile-nav-content .tr-logo {
  width: 26px;
  margin-right: 4px;
}
.tr-mobile-nav-content .tr-mobile-nav-lists {
  border-top: 1px solid #E0E0E0;
  padding: 24px 0;
}
.tr-mobile-nav-content .tr-mobile-nav-lists:nth-of-type(2) {
  border-top: none;
}
.tr-mobile-nav-content h4 {
  color: #6A6A6A;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.tr-mobile-nav-content li {
  margin-top: 20px;
}
.tr-mobile-nav-content li:nth-of-type(1) {
  margin-top: 0;
}
.tr-mobile-nav-content li, .tr-mobile-nav-content li a {
  color: #222222;
  line-height: 20px;
}
.tr-mobile-nav-content svg {
    margin: -4px 8px 0 0;
}
.tr-mobile-nav-content .tr-actions .tr-btn {
  font-weight: 600;
  margin-top: 80px;
  padding: 12px;
}
/******* Mobile Navigation End *******/

/******* HOTEL INFO Start *******/
.tr-hotel-informations {
  margin-top: 24px;
}
.tr-hotel-informations .tr-hotel-info .tr-hotel-name {
font-size: 32px;
    font-weight: 600;
    line-height: 40px;
  color: #222222;
  margin: 0;
}
.tr-hotel-informations .tr-hotel-info .tr-hotel-address {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
      color: rgb(128, 128, 128);
  margin-top: 8px;
}
.tr-hotel-informations .tr-hotel-info .tr-raiting {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.tr-hotel-informations .tr-hotel-info .tr-raiting a {
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  font-weight: 500;
  margin-right: 15px;
  padding-left: 18px;
}
.tr-hotel-informations .tr-hotel-info .tr-review-with-perc {
  display: flex;
}
.tr-hotel-informations .tr-hotel-info .tr-review-with-perc .tr-heart {
  background-color: #28965A;
  background-image: url(../images/icons/heart-white-icon.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: center;
  line-height: 24px;
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 10px;
  margin-right: 8px;
}
.tr-hotel-informations .tr-hotel-info .tr-review-with-perc .tr-heart.tr-excellent {
  background-color: #28965A;
}
.tr-hotel-informations .tr-hotel-info .tr-ranting-percent {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  margin-right: 8px;
}
.tr-hotel-informations .tr-hotel-info .tr-review-name {
  font-size: 16px;
  font-weight: 700;
  margin-right: 24px;
}
.tr-hotel-informations .tr-hotel-info .tr-review-name.tr-excellent {
  color: #28965A;
}

.tr-thumb-images img {width:100%; height:218px}

.tr-hotel-informations .tr-hotel-info .tr-raiting a.tr-excellent {
  background-image: url(../images/icons/heartfill.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: top 4px left 0px;
  margin-right: 22px;
  padding-left: 22px;
}
.tr-hotel-informations .tr-hotel-info .tr-raiting a.tr-share {
  background-image: url(../images/icons/share-icon.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: top 4px left 0px;
}
.tr-hotel-informations .tr-hotel-info .tr-raiting a.tr-save {
  background-image: url(../images/icons/save-icon.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: top 4px left 0px;
}
.tr-hotel-informations .tr-hotel-galleries {
  float: left;
  width: calc(100% + 8px);
  margin: 16px -4px 32px;
}
.tr-hotel-informations .tr-hotel-galleries img {
  cursor: pointer;
display: block;
}
.tr-hotel-informations .tr-hotel-galleries .tr-main-image {
  width: 35.9%;
  float: left;
  padding: 2px;
}
.tr-hotel-informations .tr-hotel-galleries .tr-thumb-images {
  width: 64.1%;
  float: right;
  position: relative;
}
.tr-hotel-informations .tr-hotel-galleries .tr-thumb-images ul li {
  width: 33.33%;
  float: left;
  padding: 2px;
}
.tr-hotel-informations .tr-hotel-galleries .tr-thumb-images ul li:nth-of-type(3) img {
  border-radius: 0 12px 0 0;
}
.tr-hotel-informations .tr-hotel-galleries .tr-thumb-images ul li:nth-of-type(6) img {
  border-radius: 0 0 12px 0;
}
.tr-hotel-informations .tr-hotel-galleries .tr-main-image img {
  border-radius: 12px 0 0 12px;
}
.tr-hotel-informations .tr-hotel-galleries .tr-show-all-photos {
  padding: 6px 13px;
  position: absolute;

  right: 20px;
  bottom: 20px;
  background: #FFFFFF;
  backdrop-filter: blur(2px);
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;

  color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 6px;

  cursor: pointer;
}
/******* HOTEL INFO End *******/

/******* HOTEL CERTIFICATED INFO Start *******/
.tr-hotel-certificated {
  display: flex;
  flex-wrap: wrap;
}
.tr-hotel-certificated .tr-f-left,
.tr-hotel-certificated .tr-f-right {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.tr-hotel-certificated .tr-families-favourite {
  position: relative;
  text-align: center;
  padding: 24px;
  gap: 10px;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
height:100%;
}
.tr-hotel-certificated .tr-families-favourite span {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: 100px;
  margin: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #121212;
}
.tr-hotel-certificated .tr-families-favourite p {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #121212;

}
.tr-hotel-certificated .tr-spotlight {
  padding: 20px 16px;
  gap: 10px;
  background: #ECF9FB;
  border: 0.5px solid #D6D6D6;
  border-radius: 12px;
  text-align: center;
  color: #09707A;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 169.5%;
}
.tr-heading__bottom{
font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.tr-heading span{
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    color: rgb(9, 112, 122);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.tr-hotel-certificated .tr-spotlight .tr-heading {
  padding-bottom: 4.5px;
}

.tr-hotel-certificated .tr-business-rated {
  padding: 10px 20px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  position: relative;
}
.tr-hotel-certificated .tr-business-rated .tr-title {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #121212;
}
.tr-hotel-certificated .tr-business-rated .tr-business {
  font-weight: 600;
  font-size: 18px;
  color: #121212;
  padding: 12px 0 5px;
}
.tr-hotel-certificated .tr-business-rated .tr-rated {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
  color: #121212;
}
.tr-hotel-certificated .tr-business-rated img {
  width: 53px;
  position: absolute;
  top: 20px;
  right: 20px;
}
/******* HOTEL CERTIFICATED INFO END *******/

/******* HOTEL INFOS TABS Start *******/
.tr-hotel-info-tabs {
  background: #FFFFFF;
  border-bottom: 1px solid #D6D6D6;
  margin-top: 24px;
  background: #ffffff;
}
#hotelInfoTabs1.tr-hotel-info-tabs {
  display: none;
  margin-top: 0;
}
#hotelInfoTabs1.tr-hotel-info-tabs.sticky {
  display: block;
  position: sticky;
  right: 0;
  left: 0;
  margin-top: 0;
  transition: all .3s cubic-bezier(0, 1.3, 0.08, 1.08);
  z-index: 3;
}
#overviewTab.padding {
  margin-top: 92px;
}
.tr-hotel-info-tabs ul {
  display: flex;
gap:16px;
    overflow: hidden;
}

.tr-hotel-info-tabs ul li a {
  border-bottom: 2px solid transparent;
  padding: 8px;
  display: block;
  position: relative;
 font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color:#222222;
}

.tr-hotel-info-tabs ul li a.active {
  border-bottom: 2px solid #FF4B01;
color: rgb(26, 26, 26);
}
/******* HOTEL INFOS TABS END *******/

/******* OVERVIEW SECTION START *******/
.tr-overview-section {
  padding: 32px 0 40px 0;
}

.tr-overview-section .tr-overview-details ul {
  display: flex;
gap:13px
}
.tr-overview-section .tr-overview-details ul li {
  height: 95.49px;
  padding: 12.7317px;
  border: 1px solid #D6D6D6;
  border-radius: 9.54878px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  vertical-align: top;
  flex: none;
}
.tr-overview-section .tr-overview-details ul li:nth-of-type(1) {
  background: #D9E2E8;
  margin-left: 0;
  padding-right: 50px;
}
.tr-overview-section .tr-overview-details ul li .tr-sub-title {
  position: relative;
  left: 0px;
  bottom: -29px;
}
.tr-overview-section .tr-overview-content {
  padding-bottom: 20px;
}
.tr-overview-section .tr-overview-content p.tr-content {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  overflow: hidden;
  white-space: pre-wrap;
}
.tr-overview-section .tr-overview-content button.tr-anchor-btn {
  margin-top: 15px;
}
.tr-overview-section .tr-overview-content .tr-content.less-content::after {
  content: "...";
  display: inline;
}
.tr-overview-section .tr-overview-content .show-more .read-more-btn {
  display: inline-block;
}


.tr-overview-section .tr-overview-details ul li .tr-rating {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #000000;
}
.tr-overview-section .tr-overview-details ul li .tr-rating-type {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  display: block;
  padding-top: 10px;
}
.tr-overview-section .tr-overview-details ul li .tr-review {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #222222;
  padding-top: 3px;
}

.tr-overview-section .tr-things-know {
  margin-top: 32px;
}
.tr-overview-section .tr-things-know ul {
  margin: 24px 0 40px;
}
.tr-overview-section .tr-things-know ul li {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 24px;
  color: #222222;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.tr-overview-section .tr-things-know ul li:last-child{padding-bottom:0px}
.tr-overview-section .tr-things-know ul li:nth-child(n+7) {
  display: none;
}
.tr-overview-section .tr-things-know ul li.show {
  display: block;
}
.tr-overview-section .tr-things-know ul li svg {
    margin: -4px 12px 0 0;
}
.tr-overview-section .tr-things-know button#lessButton {
  display: none;
}
/******* OVERVIEW SECTION END *******/

/******* ROOM Start *******/
.tr-room-section {
  margin-top: 52px;
}
.tr-room-section .tr-room-filters {
  padding: 24px 30px;
  margin-top:  32px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
margin-bottom: 32px;
}
.tr-room-section .tr-room-filters .tr-filter-label {
  font-weight: 700;
  min-width: 118px;
  margin-right: 13px;
}
.tr-room-section h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: rgb(26, 26, 26);
}
.tr-room-section .tr-room-filters .tr-filter-lists {
  display: flex;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-room-section .tr-room-filters .tr-filter-lists::-webkit-scrollbar {
  display: none;
}
.tr-room-section .tr-room-filters .tr-filter-list {
  flex: none;
}
.tr-room-section .tr-room-filters .tr-filter-list label {
  border: 1px solid #D6D6D6;
  border-radius: 80px;
  cursor: pointer;
  margin: 0 13px;
  padding: 6px 12px;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tr-room-section .tr-room-filters .tr-filter-list label br {
  display: none;
}
.tr-room-section .tr-room-filters .tr-filter-list label:hover {
  background: #F0F3F5;
}
.tr-room-section .tr-room-filters .tr-filter-list svg {
  margin: -4px 8px 0 0;
}
.tr-room-section .tr-room-filters .tr-filter-list input {
  display: none;
}
.tr-room-section .tr-room-filters .tr-filter-list input:checked ~ label {
  background: #F0F3F5;
  font-weight: 600;
}

.tr-room-section .tr-hotel-lists-first .tr-hotel-deatils:nth-child(n+3),
.tr-room-section .tr-hotel-lists-second .tr-hotel-deatils:nth-child(n+2) {
  display: none;
}
.tr-room-section .tr-hotel-lists-first .tr-hotel-deatils.show,
.tr-room-section .tr-hotel-lists-second .tr-hotel-deatils.show {
  display: flex;
}
.tr-room-section .tr-hotel-deatils {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  position: relative;
}
.tr-room-section .tr-hotel-lists-first .tr-hotel-deatils:nth-of-type(1) {
  margin-top: 0;
}
.tr-room-section .tr-hotel-deatils .tr-hotal-image {
  width: 296px;
  border-radius: 12px;
  overflow: hidden;
}
.tr-room-section .carousel .carousel-control-next-icon, 
.tr-room-section .carousel .carousel-control-prev-icon {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: top 5px left 9px;
  width: 24px;
  height: 24px;
}
.tr-room-section .carousel .carousel-control-prev-icon {
  background-image: url(../images/chevron-down-left-icon.svg);
}
.tr-room-section .carousel .carousel-control-next-icon {
  background-image: url(../images/chevron-down-right-icon.svg);
}
.tr-room-section .carousel .carousel-indicators {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  color: #FFFFFF;
  width: auto;
  right: 16px;
  bottom: 16px;
  left: auto;
  margin: 0;
  padding: 2.5px 10px;
}
.tr-room-section .carousel .carousel-indicators [data-bs-target] {
  display: none;
  border: none;
  width: auto;
  height: 14px;
  background: transparent;
  color: #FFFFFF;
  margin: 0;
  text-indent: 0;
}
.tr-room-section .carousel .carousel-indicators [data-bs-target].active {
  display: block;
}
.tr-room-section .tr-hotel-deatils + .tr-show-all {
  margin-top: 20px;
}
.tr-room-section .tr-hotel-lists-first button#firstShowLessHotel,
.tr-room-section .tr-hotel-lists-second button#secondShowLessHotel {
  display: none;
}
.tr-room-section .tr-hotel-deatil {
  width: calc(100% - 296px);
  padding-left: 24px;
}
.tr-hotel-deatil h2 {
  margin-bottom: 6px;
}
.tr-room-section .tr-hotel-location {
  background-color: #FFFFFF;
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: top 5px left 0px;
  background-size: 15px;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  padding-left: 19px;
}
.tr-hotel-location a {color:#222222}
.tr-room-section .tr-hotel-deatil ul {
display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    column-gap: 24px;
}
.tr-room-section .tr-hotel-deatil ul.tr-mobile {
  display: none;
}
.tr-room-section .tr-hotel-deatil ul li {
font-size: 16px;
display: flex;
    align-items: center;
    color: #222222;
    column-gap: 12px;
    line-height: 24px;
    width: calc((100% - 48px) / 3);
    height: 48px;
}
.tr-room-section .tr-hotel-deatil ul li svg {
  width: 25px;
  margin-right: 10px;
}
.tr-room-section .tr-hotel-deatil ul li br {
  display: none;
}

.tr-room-section .tr-hotel-price-lists {
  display: flex;
  margin-top: 25px;
  width: calc(100% + 16px);
  column-gap: 16px;
}
.tr-room-section .tr-hotel-price-lists .tr-hotel-price-list {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  width: 25%;
  padding: 24px 24px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.tr-room-section .tr-hotel-price-lists h4 {
  color: #222222;
  font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: rgb(26, 26, 26);
}
.tr-room-section .tr-hotel-price-lists .tr-hotel-facilities {
  position: relative;
flex:1;
}
.tr-room-section .tr-hotel-price-lists .tr-hotel-facilities ul {
  margin-top: 24px;
}
.tr-room-section .tr-hotel-price-lists .tr-hotel-facilities ul li {
  background-image: url(../images/icons/check-green-icon.svg);
  background-repeat: no-repeat;
  background-position: top 2px left 0px;
  background-size: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #222222;
  margin-bottom: 10px;
  padding-left: 27px;
}
.tr-room-section .tr-hotel-price-lists .tr-hotel-facilities ul li:last-child {
  margin-bottom: 0;
}
.tr-room-section .tr-hotel-price-lists .tr-site-details img {
  max-width: 100px;
  max-height: 30px;
}
.tr-room-section .tr-hotel-price-lists .tr-site-details .tr-deal {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #28965A;
  margin: 24px 0 5px;
}
.tr-room-section .tr-hotel-price-lists .tr-site-details .tr-hotel-facilities {
  display: none;
}
.tr-room-section .tr-hotel-price-lists a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF4B01;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  min-width: 170px;
  padding: 8px 16px 8px 24px;
  text-align: center;
  transition: all .3s ease;
  margin-top: 24px;
}
.tr-room-section .tr-hotel-price-lists a:hover{background-color: #cd4501}
.tr-room-section .tr-hotel-price-lists .tr-arrow {
  display: inline-block;
  background-image: url(../images/icons/long-arrow-right-white-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  width: 20px;
  height: 20px;
  margin-left: 20px;
}
.tr-room-section .tr-hotel-price-lists a strong {
  font-size: 16px;
  color: #ffffff;
}

.tr-room-section .tr-hotel-price-lists .tr-show-all {
  display: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border: none;
  border-bottom: 1px solid #000000;
  background: #fff;
}
.tr-room-section .tr-hotel-price-lists .tr-show-all:hover {
  border-color: #ffffff;
}
/******* ROOM End *******/

/******* FACILITIES Start *******/
.tr-facilities-section {
  margin-top: 52px;
 
}
.tr-facilities-section h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: rgb(26, 26, 26);
}
.tr-facilities-details {
  margin-top: 24px;
}
.tr-facilities-details ul.tr-facilities-box-lists {
  display: flex;
}
.tr-facilities-details ul.tr-facilities-box-lists li {
  height: 95.49px;
  padding: 13px;
  border: 1px solid #D6D6D6;
  border-radius: 9px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  margin-right: 13px;
  min-width: 100px;
display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tr-facilities-details ul.tr-facilities-box-lists li .tr-sub-title {

  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; 
  width: 100%; 
    
}
.tr-facilities-lists {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.tr-facilities-lists h3.tr-mobile {
  display: none;
}
.tr-facilities-lists .tr-facilities-list {
  font-size: 16px;
width: calc(370px - 30px);
}
.tr-facilities-lists .tr-facilities-list > div {
  margin-top: 32px;
    display: inline-block;
}
.tr-facilities-wrapper {
  column-count: 3;
  column-gap: 30px;
}
.tr-facilities-lists .tr-facilities-list h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #000000;
  position: relative;
  padding: 0 0 12px 24px;
}
.tr-facilities-lists .tr-facilities-list ul li {
  background-repeat: no-repeat;
  background-position: top 6px left 0px;
  background-size: 16px;
  color: #222222;
  margin-top: 8px;
  padding-left: 24px; 
}
.tr-facilities-lists .tr-facilities-list ul li.tr-available {
  background-image: url(../images/icons/check-icon.svg);
}
.tr-facilities-lists .tr-facilities-list ul li.tr-not-available {
  background-image: url(../images/icons/close-icon.svg);
}
.tr-facilities-lists .tr-facilities-list ul li:nth-of-type(1) {
  margin-top: 0;
}
.tr-facilities-lists .tr-facilities-list svg {
  position: absolute;
  top: -1.5px;
  left: 0;
}
/******* FACILITIES End *******/

/******* Location Start *******/
.tr-Location-section {
  margin-top: 52px;
}
.tr-Location-section .tr-Location-details {
  margin: 8px 0;
}
.tr-Location-section .tr-Location-details ul {
  display: flex;
  flex-wrap: wrap;
}
.tr-Location-section .tr-Location-details ul li {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: 16px;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
  margin-right: 40px;
  padding-left: 24px;
}
.tr-Location-section .tr-Location-details ul li.tr-location-address {
  background-image: url(../images/icons/map-pin-icon.svg);
  background-position: top 3px left 0px;
}
.tr-Location-section .tr-Location-details ul li.tr-phone {
  background-image: url(../images/icons/phone-icon.svg);
  background-position: top 3px left 0px;
}
.tr-Location-section .tr-Location-details ul li.tr-email {
  background-image: url(../images/icons/email-icon.svg);
  background-position: top 3.1px left 0px;
}
.tr-Location-section .tr-Location-details ul li.tr-website-link {
  background-image: url(../images/icons/global-icon.svg);
  background-position: top 4px left 0px;
}
.tr-Location-section .tr-Location-details ul li a {
  color: #222222;
  border-bottom: 1px solid #222222;
}
.tr-Location-section .tr-Location-details ul li a:hover {
  border-color: transparent;
}
.tr-Location-section .tr-location-map img {
  border-radius: 8px;
}
.tr-Location-section p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  margin-top: 20px;
}
/******* Location End *******/

/******* EXPLORE OTHER OPTIONS IN AND AROUND Start *******/
.tr-explore-section {
  margin-top: 52px;
}
.tr-explore-section .tr-tourist-places-row {
  display: flex;
  margin: 0 -20px;
}
.tr-explore-section .tr-tourist-places {
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  width: 33.33%;
  margin: 15px 20px 0;
}
.tr-explore-section .tr-tourist-places .tr-title h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #131313;
  position: relative;
}
.tr-explore-section .tr-tourist-places .tr-title h4:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 2px right 0px;
  background-size: 24px;
  width: 26px;
  height: 26px;
  display: none;
}
.tr-explore-section .tr-tourist-places .tr-title {
  margin-bottom: 10px;
}
.tr-explore-section .tr-tourist-places .tr-title h4 svg {
  margin: 0 8px 0 0;
}
.tr-explore-section .tr-tourist-places .tr-title span {
  font-size: 14px;
  line-height: 129.6%;
  color: #5E5E5E;
  margin-left: 33px;
}
.tr-explore-section .tr-tourist-places .tr-tourist-place {
  position: relative;
  margin-bottom: 25px;
}
.tr-explore-section .tr-tourist-places .tr-tourist-place:last-child {
  margin-bottom: 0;
}

.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-img {
  width: 120px;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-img:hover +.tr-details .tr-place-name a {
  color: #FF4B01;
  transition: all .3s ease;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-details {
  position: absolute;
  top: 0;
  left: 130px;
  width: calc(100% - 130px);
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-place-name a {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  transition: all .3s ease;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-place-name a:hover {
  color: #FF4B01;
  text-decoration: underline;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-place-type {
  font-size: 14px;
  line-height: 129.6%;
  color: #5E5E5E;
  padding: 2px 0;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-likes {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #29857A;
  background-image: url(../images/icons/heart-blank-black-icon.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: top 3px left 0;
  padding-left: 18px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(71%) saturate(360%) hue-rotate(123deg) brightness(97%) contrast(94%);
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-review {
  font-size: 14px;
  line-height: 17px;
  color: #222222;
}
.tr-explore-section .tr-distance {
  background-image: url(../images/icons/carbon-location-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 16px;
  font-weight: 400;
  color: #000000;
  padding-left: 20px;
}
.tr-explore-section .tr-tourist-place-lists .tr-tourist-place .tr-distance {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-top: 10px;
}
.tr-explore-section .tr-getting-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 9px;
}
.tr-explore-section .tr-getting-list .tr-place-info {
  width: calc(100% - 100px);
}
.tr-explore-section .tr-getting-list .tr-distance {
  font-size: 14px;
  line-height: 17px;
  color: #222222;
}
.tr-getting-list:nth-of-type(1) {
  padding: 8px 10px;
  background: #ECF9FB;
  border-radius: 8px;
  align-items: center;
}
.tr-getting-list:nth-of-type(1) .tr-place-name {
  padding-bottom: 2px;
}
.tr-getting-list:nth-of-type(1) span {
  color: #5E5E5E;
  font-size: 14px;
  line-height: 20px;
}
.tr-getting-list:nth-of-type(1) .tr-distance {
  background: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
}
.tr-explore-section .tr-getting-list svg {
  margin: -2px 5px 0 0;
}
.tr-explore-section .tr-getting-list .tr-place-name {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  padding-bottom: 8px;
}
.tr-explore-section .tr-getting-list .tr-distance-time {
  font-weight: 400;
  font-size: 14px;
  line-height: 129.6%;
  color: #5E5E5E;
}
.tr-explore-section .tr-getting-list .tr-distance-time svg {
  margin: -3px 4px 0 0;
}
.tr-explore-section .tr-getting-list .tr-travel-type {
  font-weight: 500;
  font-size: 14px;
  line-height: 129.6%;
  color: #000000;
}
.tr-explore-section .tr-getting-list a.tr-travel-type {
  text-decoration: underline;
}
.tr-explore-section .tr-getting-list a.tr-travel-type:hover {
  text-decoration: none;
}
/******* EXPLORE OTHER OPTIONS IN AND AROUND End *******/

/******* TOP WAYS TO EXPERIENCE TOWER BRIDGE Start *******/
.tr-top-ways-section {
  margin-top: 52px;
}
.tr-top-ways-section .tr-top-ways-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list {
  padding: 10px 20px 10px 8px;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  width: 50%;
  max-width: 430px;
  margin-right: 24px;
  margin-bottom: 24px;
  display: flex;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list:last-child,
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list:nth-last-child(2) {
  margin-bottom: 0;
}
.tr-top-ways-section .tr-top-ways-lists .tr-title h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #131313
}
.tr-top-ways-section .tr-top-ways-lists .tr-title {
  margin-bottom: 20px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-title span {
  font-size: 14px;
  line-height: 129.6%;
  color: #5E5E5E;
  margin-left: 28px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list {
    position: relative;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-img {
    width: 100px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-img img {
  border-radius: 6px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-img:hover + .tr-details .tr-place-name a {
  color: #FF4B01;
  transition: all .3s ease;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-details {
  padding-left: 16px;
  width: calc(100% - 100px);
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-place-name a {
  color: #000000;
  font-size: 16px;
  line-height: 21px;
  display: -webkit-box;
  width: 151px;
  height: 41px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  margin-bottom: 12px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-place-name a:hover {
  color: #FF4B01;
  transition: all .3s ease;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-place-type {
  font-size: 14px;
  line-height: 20px;
  color: #5E5E5E;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-likes {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #28965A;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-likes svg {
  margin: -3px 5px 0 0;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-review {
  font-size: 14px;
  line-height: 17px;
  color: #222222;
  display: block;
  margin-top: 7px;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-price-section {
  position: absolute;
  top: 7px;
  right: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}
.tr-top-ways-section .tr-top-ways-lists .tr-top-ways-list .tr-price-section span {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
/******* TOP WAYS TO EXPERIENCE TOWER BRIDGE End *******/

/******* Review Start *******/
/*Review Summary*/
.tr-review-section {
  margin-top: 52px;
}
.tr-review-section h3 {
 
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: rgb(26, 26, 26);
}
.tr-no-review-found {
  max-width: 470px;
  text-align: center;
}
.tr-review-section .tr-review-content {
  padding: 40px 41px;
  background: #FFFFFF;
  border: 1px solid rgba(214, 214, 214, 0.6);
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.07);
  border-radius: 8px;
  position: relative;
}
.tr-review-section .tr-short-decs {
  font-size: 16px;
  line-height: 24px;
  color: #6A6A6A;
}
.tr-review-section .tr-power-by {
  position: absolute;
  top: 40px;
  right: 41px;
}
.tr-review-section .tr-power-by ul {
  display: inline-block;
}
.tr-review-section .tr-power-by ul li {
  width: 24px;
  display: inline-block;
  margin-left: -12px;
  position: relative;
}
.tr-review-section .tr-power-by ul li .tr-2-star-icon {
  background-image: url(../images/icons/2-star-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tr-review-section .tr-power-by span {
  font-size: 14px;
  line-height: 24px;
  color: #6A6A6A;
}
.tr-review-section ul.tr-revies-recomm {
  display: flex;
  margin-top: 24px;
}
.tr-review-section ul.tr-revies-recomm li {
  display: inline-block;
  padding: 16px 40px 16px 54px;
  background: #ECF9FB;
  border: 0.5px solid #D6D6D6;
  border-radius: 8px;
  position: relative;
  margin-right: 23px;
}
.tr-review-section ul.tr-revies-recomm li div:nth-of-type(1) {
  font-size: 14px;
  line-height: 17px;
}
.tr-review-section ul.tr-revies-recomm li div:nth-of-type(2) {
  font-weight: 600;
  font-size: 16px;
  line-height: 129.6%;
  color: #09707A;
}
.tr-review-section ul.tr-revies-recomm li svg {
  position: absolute;
  top: 22px;
  left: 20px;
}
.tr-review-section p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  padding: 24px 0;
}
.tr-review-section .tr-jump-to-all-review {
  background-image: url(../images/icons/long-arrow-down-black-icon.svg);
  background-repeat: no-repeat;
  background-position: top 8px right 16px;
  background-size: 19px;
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  padding: 7.7px 45px 7.7px 16px;
  transition: all .3s ease;  
}
.tr-review-section .tr-jump-to-all-review:hover {
  background-image: url(../images/icons/long-arrow-down-white-icon.svg);
  background-color: #000000;
  color: #ffffff;
}
.tr-review-section .tr-helpful {
  border-top: 1px solid #D6D6D6;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
}
.tr-helpful button {
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 21px;
  background-color: #FFFFFF;
  border: none;
  width: 21px;
  height: 21px;
  margin: 0px 5px;
  text-indent: -9999px;
  transition: all .3s ease;
}
.tr-helpful button.tr-like-button {
  background-image: url(../images/icons/like-icon.svg);
}
.tr-helpful button.tr-dislike-button {
  background-image: url(../images/icons/dislike-icon.svg);
}
.tr-helpful button.tr-like-button:hover {
  background-image: url(../images/icons/like-hover-icon.svg);
}
.tr-helpful button.tr-dislike-button:hover {
  background-image: url(../images/icons/dislike-hover-icon.svg);
}
.tr-helpful button.tr-like-button.selected {
  background-image: url(../images/icons/like-selected-icon.svg);
}
.tr-helpful button.tr-dislike-button.selected {
  background-image: url(../images/icons/dislike-selected-icon.svg);
}
/*Reviews Graph*/
.tr-reviews-graph {
  display: flex;
  margin-top: 56px;
}
.tr-reviews-graph-details {
  width: 183px;
  margin-right: 93px;
}
.tr-reviews-graph-details h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 5px;
}
.tr-reviews-graph-details .tr-likes-count {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  color: #28965A;
  margin-bottom: 5px;
}
.tr-reviews-graph-details .tr-likes-count svg {
  margin: -5px 5px 0 0;
}
.tr-reviews-graph-details .tr-vgood {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(41, 133, 122, 0.11);
  border-radius: 4px;
  color: #29857A;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 17px;
}
.tr-reviews-graph-details .tr-reviews-count {
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #222222;
}
.tr-rating-types {
  width: 357px;
}
.tr-rating-type {
  float: left;
  width: 100%;
  margin-bottom: 4px;
}
.tr-rating-type .tr-title,
.tr-rating-type .progress,
.tr-rating-type .tr-reviews-nums {
  float: left;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
}
.tr-rating-type .tr-title {
  min-width: 92px;
}
.tr-rating-type .progress {
  min-width: calc(100% - 122px);
  margin-top: 9px;
}
.tr-rating-type .tr-reviews-nums {
  min-width: 30px;
  text-align: right;
}
.progress-bar {
  background: #29857A;
}
.progress, .progress-stacked,.progress-bar {
  --bs-progress-height: 6px;
}

/*Reviews mentioned*/
.tr-reviews-mentioned {
  padding: 24px 0;
}
.tr-reviews-mentioned h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.tr-reviews-mentioned ul {
  display: flex;
  margin-top: 16px;
}
.tr-reviews-mentioned ul li {
  margin-right: 16px;
}
.tr-reviews-mentioned ul li a {
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  background: #F2F2F2;
  border-radius: 4px;
  padding: 6px 14px;
  display: block;
  transition: all .3s ease;
}
.tr-reviews-mentioned ul li a:hover {
  background: #FF4B01;
  color: #ffffff;
}
.tr-reviews-mentioned ul li a.active {
  background: #FF4B01;
  color: #ffffff;
}
.tr-reviews-mentioned .tr-shotby {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  padding-top: 24px;
}
.tr-reviews-mentioned .tr-shotby label {
  margin-right: 12px;
}
.tr-reviews-mentioned .custom-select {
  justify-content: right;
  position: relative;
}
/*******Customer Reviews*******/
.tr-customer-review {
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 16px;
  padding: 20px 20px 20px 0;
}
.tr-customer-review .tr-customer-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tr-customer-review .tr-customer-details .tr-customer-detail {
  position: relative;
  padding-left: 60px;
}
.tr-customer-review .tr-customer-details img {
  width: 48px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.tr-customer-review .tr-customer-details .tr-customer-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
}
.tr-customer-review .tr-customer-details .tr-hotel-place {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.01em;
}
.tr-customer-review .tr-customer-details .tr-report {
  position: relative;
}
.tr-customer-review .tr-customer-details .tr-report .tr-report-icon {
  background-image: url(../images/report-icon.png);
  width: 30px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: top 0px right 0px;
  background-size: 24px;
  cursor: pointer;
}
.tr-customer-review .tr-customer-details .tr-report .tr-report-icon.active + .tr-report-popup {
  display: block;
} 
.tr-customer-review .tr-customer-details .tr-report-popup {
  position: absolute;
  top: 2px;
  left: 40px;
  z-index: 99;
  padding: 24px 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 12px;
  width: 121px;
  display: none;
}
.tr-customer-review .tr-customer-details .tr-report-popup h5 {
  font-weight: 600;
  font-size: 16px;  
  line-height: 19px;
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.tr-customer-review .tr-customer-details .tr-report-popup .tr-follow {
  font-size: 16px;
  line-height: 19px;
  color: #222222;
}
.tr-customer-review ul li svg {
  margin: -5px 3px 0 0;
}
.tr-customer-review .tr-ratings .tr-time-ago {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
  margin-left: 10px;
}
.tr-customer-review ul {
  display: flex;
  align-items: center;
  margin-top: 4px;
}
.tr-customer-review ul li {
  margin-right: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #222222;
}
.tr-customer-review p {
  color: #000000;
  padding: 18px 0 0;
}
.tr-customer-review .tr-read-more {
  font-weight: 700;
  color: #000000;
}
.tr-customer-review .tr-hotel-response {
  background: #F9FAFB;
  border: 0.7px solid #D6D6D6;
  border-radius: 8px;
  margin-top: 18px;
  padding: 20px;
}
.tr-customer-review .tr-hotel-response h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 16px;
}
.tr-customer-review .tr-hotel-response h5 svg {
  margin: -3px 5px 0 0;
}
.tr-customer-review .tr-hotel-response .tr-customer-msg {
  font-weight: 400;
  font-size: 16px;
  line-height: 26.4px;
}
.tr-customer-review .tr-hotel-response a {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-decoration-line: underline;
  color: #000000;
  margin-top: 16px;
  display: inline-block;
}
.tr-customer-review .tr-hotel-response a:hover {
  text-decoration: none;
}
.tr-customer-review .tr-helpful {
  border: none;
  text-align: right;
  margin: 0;
}
/*Pagination*/
.tr-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.tr-pagination .page-item {
  margin: 0 5px;
}
.tr-pagination .page-item .page-link {
  padding: 4px 8px;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 100px;
  line-height: 20px;
  color: #222222;
  border: none;
  text-align: center;
}
.tr-pagination .page-item .page-link.active {
  background: #000000;
  color: #FFFFFF;
}
.tr-pagination .page-item .page-link img {
  max-width: 18px;
  max-height: 12.5px;
}
/******* Review End *******/

/******* FAQS Start *******/
.tr-faqs-section {
  margin-top: 52px;
}
.tr-faqs-section h3 {
  padding-bottom: 8px;
}
.tr-faqs-section  .tr-faqs-ques-ans {
  border-bottom: 1px solid #D6D6D6;
  padding: 19px 0 32px;
}
.tr-faqs-section .tr-faqs-ques {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 10px;
}
.tr-faqs-section .tr-faqs-ans {
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #222222;
}
/*Popup*/
.tr-popup {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all .3s ease;
  z-index: 9;
}
.tr-popup.open {
  top: 0;
}
.tr-popup-content {
  padding: 0px;
  position: absolute;
  width: 100%;
  top: 100%;
  border-radius: 24px 24px 0px 0px;
  background: #fff;
  transition: all .3s ease;
  z-index: 999;
}
.tr-popup.open .tr-popup-content {
  top: auto;
  bottom: 0;
}
.tr-popup-content h3 {
  padding: 16px 20px 12px 55px !important;
}
.tr-popup-content h3:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 24px;
  background-image: url(../images/arrow-left.png);
  background-repeat: no-repeat;
  background-position: top 5px left 4px;
  background-size: 10px;
  width: 26px;
  height: 26px;
}
.tr-popup-content form {
  padding: 12px 24px 32px;
}
.tr-popup-content textarea {
  resize: vertical;
  padding: 8px 10px;
  width: 100%;
  height: 76px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  margin-top: 8px;
}
.tr-popup-content button.tr-popup-btn {
  padding: 12px 46px;
  width: 100%;
  height: 43px;
  background: #FF4B01;
  border-radius: 12px;
  border: none;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-top: 26px;
}
/******* FAQS End *******/

/******* House Rules Start *******/
.tr-house-rules {
  margin-top: 52px;
  padding-bottom: 20px;
}
.tr-rules-ques-ans {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D6D6D6;
  padding: 24px 0;
}
.tr-rules-ques-ans .tr-rules-ques {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  width: 272px;
}
.tr-rules-ques-ans .tr-rules-ans {
  font-size: 15px;  
  line-height: 22px;
  color: #222222;
  width: calc(100% - 272px);
}
.tr-rules-ques-ans .tr-rules-ans .tr-rules-heading {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
}
.tr-rules-ques-ans .tr-rules-ans ul {
  padding: 9px 0;
}
.tr-rules-ques-ans .tr-rules-ans ul li {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}
.tr-house-rules.tr-mobile {
  display: none;
  font-size: 14px;
  color: #6A6A6A;
  line-height: 18px;
  border-top: 1px solid #D8DCE0;
  margin-top: 20px;
  padding: 24px 0;
}
.tr-house-rules.tr-mobile div {
  padding-top: 6px;
}
.tr-house-rules.tr-mobile .tr-show-more {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border: none;
  border-bottom: 1px solid #000000;
  background: transparent;;
  margin-top: 13px;
}
/******* House Rules End *******/

/******* The Fine Print Start *******/
.tr-fine-print {
  margin-top: 52px;
}
.tr-fine-print h3 {
  padding: 0;
}
.tr-fine-print .tr-sub-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #222222;
  margin: 5px 0 24px;
}
.tr-fine-print p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
}
/******* The Fine Print End *******/

/******* Where to Stay Start *******/
.tr-where-stay {
  margin-top: 52px;
}
.tr-where-stay h3 {
  padding: 0;
}
.tr-where-stay .tr-stay-locations {
  display: flex;
}
.tr-where-stay .tr-stay-location {
  width: 25%;
}
.tr-where-stay .tr-stay-location h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  padding: 20px 0;
}
.tr-where-stay .tr-stay-location ul {
  padding-bottom: 20px;
}
.tr-where-stay .tr-stay-location ul li {
  font-size: 16px;
  line-height: 19px;
  color: #222222;
}
.tr-where-stay .tr-stay-location ul li:nth-of-type(1) {
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}
/******* Where to Stay End *******/

/******* Nearby Hotel Start *******/
.tr-nearby-hotel {
  margin-top: 32px;
}
.tr-nearby-hotel-lists {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-top: 24px;
}
.tr-nearby-hotel-lists::-webkit-scrollbar {
  display: none;
}
.tr-nearby-hotel-lists .tr-nearby-hotel-list {
  width: 316px;
  padding: 0 13px;
}
.tr-nearby-hotel-list .tr-hotel-deatils {
  position: relative;
  margin-top: 20px;
}
.tr-nearby-hotel-list .tr-hotel-img {
  border-radius: 12px;
  overflow: hidden;
}
.tr-nearby-hotel-list .tr-hotel-img img {
  transition: all .5s ease;
}
.tr-nearby-hotel-list .tr-hotel-img:hover img {
  transform: scale(1.1);
}
.tr-nearby-hotel-list .tr-hotel-name {
  width: calc(100% - 82px);
}
.tr-nearby-hotel-list .tr-hotel-name a {
  color: #000000;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  transition: all .3s ease;
}
.tr-nearby-hotel-list .tr-hotel-name a:hover {
  border-bottom: 1px solid #000000;
}
.tr-nearby-hotel-list .tr-like-review {
  margin-top: 10px;
}
.tr-nearby-hotel-list .tr-total-rating {
  display: none;
}
.tr-nearby-hotel-list .tr-likes {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #28965A;
}
.tr-nearby-hotel-list .tr-likes svg {
  margin: -2px 2px 0 0;
}
.tr-nearby-hotel-list .tr-vgood {
  background: #F2F2F2;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  border-radius: 6.57534px;
  margin-left: 6px;
  padding: 4px 8px;
}
.tr-nearby-hotel-list  .tr-price-section {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
.tr-nearby-hotel-list  .tr-price-section span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}
.tr-show-all-hotels {
  display: none;
  color: #000000;
  line-height: 18px;
  border-bottom: 1px solid #000000;
}
.tr-show-all-hotels:hover {
  border-color: transparent;
}
/******* Nearby Hotel End *******/

/******* BREADCRUMB Start *******/
.tr-breadcrumb-section {
  margin-top: 52px;
}
.tr-breadcrumb {
  display: flex;
}
.tr-breadcrumb li {
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  position: relative;
}
.tr-breadcrumb li:before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: -16px;
  width: 3px;
  height: 3px;
  border-radius: 5px;
  background: #000000;
}
.tr-breadcrumb li:nth-of-type(1):before {
  display: none;
}
.tr-breadcrumb li a {
  color: #000000;
  font-weight: 600;
}
.tr-breadcrumb li a:hover {
  text-decoration: underline;
}
/******* BREADCRUMB End *******/

/******* Right Col Start *******/
.tr-right-col .tr-hotel-certificated {
  display: none;
}
.tr-booking-deatils {
  padding: 0px;
  margin-left: auto;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 8px;
  padding: 24px 20px 16px;
  max-width: 440px;
}
.tr-date-section {
  padding: 0 16px 16px;
  position: relative;
}
.tr-date-section .tr-room-guest {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  cursor: pointer;
}
.tr-date-section .tr-room-guest:after {
  content: "";
  position: absolute;
  top: -1px;
  right: -28px;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 1px right 3px;
  background-size: 18px;
  width: 24px;
  height: 18px;
}
.tr-date-section .tr-room-guest.active:after {
  transform: rotate(180deg);
  top: 2px;
}
.tr-date-section .tr-add-edit-guest-count {
  display: none;
  background: #FFFFFF;
  border: 1px solid rgba(214, 214, 214, 0.6);
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  padding: 12px 24px;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 1;
}
.tr-date-section .tr-room-guest.active + .tr-add-edit-guest-count {
  display: block;
}
.tr-date-section .tr-add-edit-guest-count input[type="text"] {
  color: #6A6A6A;
  border: none;
  background-color: transparent;
}
.tr-date-section .tr-add-edit-guest-count input[type="text"]:focus {
  outline: none;
}

.tr-date-section .tr-quick-search-hotel {
  padding: 0 6px;
}
.tr-date-section .tr-stay-date {
  display: flex;
  background: #F0F3F5;
  border-radius: 12px;
  margin: 16px 0;
  padding: 10px 16px;
}
.tr-date-section .tr-stay-date .tr-col {
  width: 50%;
  position: relative;
}
.tr-date-section .tr-stay-date .tr-col:nth-of-type(1) {
  border-right: 1px solid #C6C6CF;
  margin-right: 20px;
}
.tr-date-section .tr-stay-date label {
  color: #222222;
  font-size: 14px;
    font-weight: 600;
  position: absolute;
  top: 0;
  left: 29px;
  line-height: 17px;
}
.tr-date-section .tr-stay-date input {
  background-color: #F0F3F5;
  background-image: url(../images/icons/calendar-square-icon.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: top 1px left 0;
  border: none;
  color: #6A6A6A;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  width: 100%;
  padding: 18px 16px 2px 29px;
}
.tr-date-section .tr-stay-date input:focus,
.tr-date-section .tr-stay-date input:focus-visible {
  outline: none;
}

.tr-date-section .tr-stay-date .tr-col.tr-filled input {
  background-position: top 1px left 0;
  padding: 18px 16px 2px 29px;
}

.tr-calenders-modal-2 {
  display: none;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 20px;
  width: 855px;
  position: absolute;
    top: -24px;
    right: -20px;
  padding: 32px 40px;
  z-index: 3;
}
.tr-calenders-modal-2.open {
  display: block;
}
.tr-calenders-modal-2 .tr-calenders-top {
  display: flex;
align-items: center;
  justify-content: space-between;
}
.tr-calenders-modal-2 .tr-search-info,
.tr-calenders-modal-2 .tr-stay-date {
  width: 50%;
}
.tr-calenders-modal-2 .tr-stay-date {
  margin: 0;
  padding: 12px 16px;
}
.tr-search-info .tr-total-nights {
  color: #131313;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 8px;
}
.tr-search-info .tr-check-in-checkout-date {
  color: #5E5E5E;
  font-size: 16px;
  line-height: 21px;
}
.tr-calenders-modal-2 .tr-calenders-section {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.tr-calenders-modal-2 .tr-calenders-section .navigation {
  top: 137px;
}
.tr-calenders-modal-2 .custom-calendar {
  width: 350px;
}
.tr-calenders-modal-2 #calendar3 .prevMonth,
.tr-calenders-modal-2 #calendar3 .nextMonth {
  display: none ;
}
.tr-calenders-modal-2 .tr-action {
  margin-top: 40px;
  width: 100%;
  text-align: right;
}
.tr-calenders-modal-2 .tr-action button {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  border: none;
}
.tr-calenders-modal-2 .tr-action button.tr-clear-details {
  background-color: #FFFFFF;
  border-bottom: 1px solid #000000;
  margin-right: 20px;
  transition: all .3s ease;
}
.tr-calenders-modal-2 .tr-action button.tr-clear-details:hover {
  border-color: transparent;
}
.tr-calenders-modal-2 .tr-action button.tr-close-btn {
  background-color: #000000;
  border-radius: 12px;
  color: #FFFFFF;
  padding: 12px 47px;
}

.tr-travel-site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #E9E9E9;
  padding: 16px;
}
.tr-travel-site:nth-of-type(1) {
  border-top: 1px solid #ffffff;
}
.tr-travel-img img {
  max-height: 30px;
  max-width: 100px;
}
.tr-travel-site .tr-travel-price a {
  background-color: #FFFFFF;
  background-image: url(../images/icons/long-arrow-right-black-icon.svg);
  background-repeat: no-repeat;
  background-position: top 13px right 20px;
  background-size: 16px;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  color: #9c9c9c;
  font-size: 14px;
  display: flex;
  line-height: 26.4px;
  min-width: 169px;
  padding: 8px 16px 8px 24px;
  text-align: left;
  transition: all .3s ease;
}
.tr-travel-site .tr-travel-price a strong {
  font-size: 16px;
  color: #000000;
}
.tr-travel-site .tr-travel-price a:hover {
  border: 1px solid #FF4B01;
  background-color: #FF4B01;
  background-image: url(../images/long-arrow-right-white.png);
  color: #ffffff;
}
.tr-travel-site .tr-travel-price a:hover strong {
  color: #ffffff;
}
.tr-travel-sites .tr-show-all {
  margin-top: 30px;
  text-align: center;
}
.tr-travel-sites button {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #FF4B01;
  border: none;
  border-bottom: 1px solid #FF4B01;
  background: transparent;
  margin: auto;
}
.tr-travel-sites button:hover {
  border-color: transparent;
}
.tr-travel-sites button#showLessDeal {
  display: none;
}
.tr-travel-site:nth-child(n+5) {
  display: none;
}
.tr-travel-site.show {
  display: flex;
}

.tr-sold-out {
  text-align: center;
}
.tr-sold-out img {
  max-width: 199px;
  margin-bottom: 28px;
}
/*Write a review*/
.tr-enjoyed-the-stay {
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 24px;
  margin-left: auto;
  max-width: 440px;
  text-align: center;
}
.tr-enjoyed-the-stay h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #131313;
  margin: 0;
}
.tr-enjoyed-the-stay p {
  padding: 0 !important;
}
.tr-enjoyed-the-stay .tr-btn {
  margin: 20px 0;
}
.tr-enjoyed-the-stay p {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
}

.tr-price-fixed-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  padding: 8px 16px;
  transition: all .3s ease;
  z-index: 9;
}
.tr-price-fixed-section .tr-price {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: #828282;
  text-decoration: line-through;
}
.tr-price-fixed-section .tr-sale-price {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding: 5px 0;
}
.tr-price-fixed-section .tr-price-tax {
  color: #828282;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
}
.tr-select-room-section .tr-btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 8px 16px;
}
/******* Right Col End *******/

/******* Footer Start *******/
footer {
  background: #061132;
  margin-top: 32px;
}
footer img {
  max-width: 177px;
}
footer h5 {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 16px;
}
footer .tr-footer-top {
  display: flex;
  padding: 40px 0 28px;
}
footer .tr-copy-right.tr-mobile {
  display: none;
  color: #ffffff;
  font-size: 13px;
}
footer .tr-footer-links-section {
  display: flex;
  padding-left: 40px;
}
footer .tr-footer-links-right-col {
  display: flex;
}
footer .tr-footer-links {
  width: 300px;
}
footer .tr-footer-top ul li {
  margin-bottom: 12px;
}
footer .tr-footer-top ul li a {
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
}
footer .tr-footer-top ul li a:hover {
  color: #a5aa9e;
}

footer .tr-footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff;
  padding: 25px 0;
}
footer .tr-another-links ul {
  display: flex;
}
footer .tr-another-links ul li {
  margin-right: 30px;
  position: relative;
}
footer ul li,
footer ul li a {
  font-size: 13px;
  line-height: 18px;
  color: #FFFFFF;
}
footer .tr-another-links ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -15px;
  border: 1px solid #fff;
}
footer .tr-another-links ul li:nth-of-type(1):before {
  display: none;
}

footer .tr-social-links ul {
  display: flex;
}
footer .tr-social-links ul li a {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 2px;
  width: 18px;
  height: 18px;
  display: block;
}
footer .tr-social-links ul li a.tr-facebook {
  background-image: url(../images/icons/facebook-icon.svg);
}
footer .tr-social-links ul li a.tr-twitter {
  background-image: url(../images/icons/twitter-icon.svg);
}
footer .tr-social-links ul li a.tr-instagram {
  background-image: url(../images/icons/instagram-icon.svg);
}
footer .tr-social-links ul li {
  margin-left: 16px;
}
footer .tr-social-links ul li:nth-of-type(1) {
  background-repeat: no-repeat;
  background-size: 16px;
  background-image: url(../images/icons/language-icon.svg);
  background-position: top 0px left 0;
  padding-left: 26px;
}
footer .tr-social-links ul li:nth-of-type(2),
footer .tr-social-links ul li:nth-of-type(3) {
  margin-left: 24px;
}
/******* Footer End *******/

/******* Share Modal Start *******/
#shareModal .modal-dialog {
  overflow: hidden;
}
#shareModal .modal-content {
  padding: 24px 28px 14px 28px;
}
#shareModal h3 {
  padding: 24px 12px 10px 12px;
}
#shareModal .tr-share-infos {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 12px;
  position: relative;
}
#shareModal .tr-share-details {
  margin-left: 16px;
}
#shareModal .tr-hotel-img img {
  max-width: 64px;
  border-radius: 8px;
}
#shareModal .tr-hotel-name {
  font-weight: 600;
}
#shareModal .tr-share-options {
  display: flex;
  flex-wrap: wrap;
}
#shareModal .tr-share-option {
  width: calc(50% - 24px);
  margin: 10px 12px
}
#shareModal .tr-share-option a {
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
  display: block;
  width: 100%;
  padding: 10px 16px 10px 50px;
  background-repeat: no-repeat;
  background-position: top 8px left 16px;
  background-size: 24px;
  transition: all .3s ease;
}
#shareModal .tr-share-option a:hover {
  background-color: #F0F3F5;
}
#shareModal .tr-share-option a.tr-copy {
  background-image: url(../images/icons/copy-icon.svg);
}
#shareModal .tr-share-option a.tr-email {
  background-image: url(../images/icons/email-icon.svg);
}
#shareModal .tr-share-option a.tr-messages {
  background-image: url(../images/icons/messages-icon.svg);
}
#shareModal .tr-share-option a.tr-whatsapp {
  background-image: url(../images/icons/whatsapp-icon.svg);
}
#shareModal .tr-share-option a.tr-messenger {
  background-image: url(../images/icons/messenger-icon.svg);
}
#shareModal .tr-share-option a.tr-facebook {
  background-image: url(../images/icons/facebook-blank-icon.svg);
}
#shareModal .tr-share-option a.tr-twitter {
  background-image: url(../images/icons/twitter-x-icon.svg);
}
#shareModal .tr-share-option a.tr-embed {
  background-image: url(../images/icons/code-icon.svg);
}
#shareModal button.btn-close {
  position: relative;
  left: 12px;
}
#shareModal .tr-alert {
  background-color: #FFFFFF ;
  background-image: url(../images/icons/check-circle-icon.svg);
  background-repeat: no-repeat;
  background-position: top 9px left 12px;
  background-size: 20px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  color: #000000;
  line-height: 22.4px;
  width: 127px;
  position: absolute;
  right: 0;
  bottom: -100px;
  left: 0;
  margin: auto;
  padding: 8px 12px 8px 40px;
  transition: all .3s ease;
}
#shareModal .tr-alert.open {
  bottom: 12px;
}
/******* Share Modal End *******/

/******* Gallery Modal start *******/
.tr-gallery-popup {
  background: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  transition: all .5s ease;
  z-index: 1001;
  overflow: auto;
  overflow-y: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-gallery-popup::-webkit-scrollbar {
  display: none;
}
.tr-gallery-popup.open {
  left: 0;
}
.tr-gallery-popup .tr-gallery-header {
  border-bottom: 1px solid #D6D6D6;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  background: #ffffff;
  padding: 0 100px;
}
.tr-gallery-popup .tr-gallery-action {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.tr-gallery-popup .tr-share-save a {
  font-size: 16px;
  line-height: 23px;
  color: #000000;
  margin-left: 20px;
  padding-left: 18px;
}
.tr-gallery-popup a.tr-share {
  background-image: url(../images/icons/share-icon.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: top 4px left 0px;
}
.tr-gallery-popup a.tr-save {
  background-image: url(../images/icons/save-icon.svg);
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: top 1.5px left 0px;
}
.tr-gallery-popup ul.tr-galleries-nav-tab {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-gallery-popup ul.tr-galleries-nav-tab::-webkit-scrollbar {
  display: none;
}
.tr-gallery-popup ul.tr-galleries-nav-tab li {
  flex: none;
}
.tr-gallery-popup ul.tr-galleries-nav-tab li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #222222;
  border-bottom: 2px solid transparent;
  padding: 19px 20px;
  display: block;
}
.tr-gallery-popup ul.tr-galleries-nav-tab li:nth-of-type(1) a {
  padding-left: 0;
}
.tr-gallery-popup ul.tr-galleries-nav-tab li a.active {
  color: #000000;
  border-color: #000000;
}
.tr-gallery-popup h3 {
  padding: 20px 8px 12px;
}
.tr-gallery-popup img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
}
.tr-gallery-popup .tr-gallery-categories {
  padding: 30px 92px;
}
.tr-gallery-popup .tr-galleries-section {
  padding-bottom: 12px;
}
.tr-gallery-popup .tr-gallery-category   {
  display: flex;
}
.tr-gallery-popup .tr-gallery-category ul {
  display: flex;
  flex-wrap: wrap;
}
.tr-gallery-popup .tr-gallery-category ul li {
  width: 25%;
  padding: 8px;
  cursor: pointer;
}
.tr-gallery-popup .tr-gallery-category ul li:nth-of-type(6n+5),
.tr-gallery-popup .tr-gallery-category ul li:nth-of-type(6n+6) {
  width: 50%;
}
/******* Gallery Modal End *******/

/******* Gallery Slider Modal Start *******/
#gallerySliderModal {
  background: #1A1A1A;
}
#gallerySliderModal.modal .modal-dialog {
  margin: 0;
  max-width: 100%;
}
#gallerySliderModal .modal-content {
  border-radius: 0;
  background: transparent;
  height: 100vh;
}
#gallerySliderModal .modal-header {
  border: none;
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 0;
}
#gallerySliderModal button.btn-close {
  background-image: url(../images/icons/long-arrow-left-white-icon.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: top 7px left 6px;
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin: 0;
  opacity: 1;
}
#gallerySliderModal .modal-body {
  padding: 0;
}

#gallerySlider {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto 32px;
}
#gallerySlider .carousel-inner {
  width: 946px;
  margin: auto;
}
#gallerySlider img {
  width: 100%;
}
#gallerySlider .image-alt-text {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 16px 0 10px;
  text-align: center;
}
#gallerySlider .carousel-control-next, 
#gallerySlider .carousel-control-prev {
  width: 40px;
  height: 40px;
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
}
#gallerySlider .carousel-control-next-icon, 
#gallerySlider .carousel-control-prev-icon {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: top 7px center;
}
#gallerySlider .carousel-control-prev-icon {
  background-image: url(../images/chevron-down-left-icon.svg);
}
#gallerySlider .carousel-control-next-icon {
  background-image: url(../images/chevron-down-right-icon.svg);
}
#gallerySlider .carousel-control-next:focus, 
#gallerySlider .carousel-control-next:hover, 
#gallerySlider .carousel-control-prev:focus, 
#gallerySlider .carousel-control-prev:hover {
  opacity: 0.5;
}
#gallerySlider .carousel-indicators {
  font-size: 18px;
  color: #fff;
  width: 60px;
  top: -40px;
  margin: 0 auto;
}
#gallerySlider .carousel-indicators:after,
#gallerySlider .carousel-indicators:before {
  position: absolute;
  top: 0;
}
#gallerySlider .carousel-indicators:after {
  content: "(";
  left: 0;
}
#gallerySlider .carousel-indicators:before {
  content: ")";
  right: 0;
}
#gallerySlider .carousel-indicators [data-bs-target] {
  display: none;
  border: none;
  width: auto;
  height: 14px;
  background: transparent;
  color: #FFFFFF;
  margin: 0;
  text-indent: 0;
}
#gallerySlider .carousel-indicators [data-bs-target].active {
  display: block;
}
/******* Gallery Slider Modal End *******/

/******* Write a Review Modal Start *******/
.tr-write-review-modal {
  background: #FFFFFF;
  overflow: auto;
  overflow-y: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  transition: all .3s ease;
  z-index: 1001;
}
.tr-write-review-modal::-webkit-scrollbar {
  display: none;
}
.tr-write-review-modal.open {
  left: 0;
}
.tr-write-review-modal .tr-popup-content {
  top: 0px !important;
}
.tr-write-review-modal h3 {
  cursor: pointer;
  text-indent: -9999px;
}
.tr-write-review-modal .tr-write-review-content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px 100px 24px;
}
.tr-write-review-modal .tr-hotel-reviews-details {
  width: 292px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-main-image {
  width: 200px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-main-image img {
  border-radius: 8px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-hotel-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin-top: 16px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-hotel-address {
  background-color: #FFFFFF;
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: top 6px left 0px;
  background-size: 15px;
  line-height: 28px;
  color: #222222;
  margin-top: 4px;
  padding-left: 19px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-rated {
  display: flex;
  margin-top: 6px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-rated span {
  line-height: 28px;
  margin-right: 8px;
}
.tr-write-review-modal .tr-hotel-reviews-details .tr-rated img {
  width: 12px;
  margin-top: -3px;
}

.tr-write-review-modal form {
  padding: 40px;
  width: 617px;
  border: 1px solid #D6D6D6;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 8px;
}
.tr-write-review-modal  form > div {
  margin-bottom: 40px;
}
.tr-write-review-modal label {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin-bottom: 12px;
}
.tr-write-review-modal .tr-review-types {
  display: flex;
  flex-wrap: wrap;
}
.tr-write-review-modal .tr-review-types .tr-rating {
  display: flex;
  width: 50%;
}
.tr-write-review-modal .tr-review-types label {
  min-width: 100px;
  margin: 0;
}
.tr-write-review-modal form .tr-review-msg,
.tr-write-review-modal form .tr-review-image {
  width: 389px;
}
.tr-write-review-modal .tr-overall-rating .tr-rating .tr-stars {
  width: 100%;
  justify-content: start;
}
.tr-write-review-modal .tr-rating .tr-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.tr-write-review-modal .tr-rating .tr-stars input {
  display: none;
}
.tr-write-review-modal .tr-rating .tr-stars label {
  background-image: url(../images/icons/star-blank-icon.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  cursor: pointer;
  min-width: auto;
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
}
.tr-write-review-modal .tr-rating .tr-stars input:checked ~ label,
.tr-write-review-modal .tr-rating .tr-stars input:checked ~ label ~ label {
  background-image: url(../images/icons/star-fill-icon.svg);
}
.tr-write-review-modal .tr-rating .tr-stars label:hover,
.tr-write-review-modal .tr-rating .tr-stars label:hover ~ label {
  background-image: url(../images/icons/star-fill-icon.svg);
}

.tr-write-review-modal .tr-go-with ul {
  display: flex;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-write-review-modal .tr-go-with ul::-webkit-scrollbar {
  display: none;
}
.tr-write-review-modal .tr-go-with ul li {
  border: 1px solid #D6D6D6;
  border-radius: 44px;
  font-size: 14px;
  line-height: 17px;
  height: 25px;
  color: #222222;
  cursor: pointer;
  margin-right: 12px;
  padding: 3px 12px;
}
.tr-write-review-modal .tr-go-with ul li.selected {
  border-color: #FF4B01;
  background: #FF4B01;
  color: #ffffff;
}
.tr-write-review-modal textarea {
  width: 100%;
  height: 180px;
  max-height: 180px;
  margin-top: 0;
}
.tr-file-upload {
  background-color: rgba(214, 214, 214, 0.5);
  border-radius: 8px;
  padding: 12px 20px;
}
.tr-file-upload .tr-image-upload-wrap {
  font-size: 16px;
  line-height: 28px;
  color: #000000;
  position: relative;
  text-align: center;
}
.tr-file-upload .tr-file-upload-input {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}
.tr-file-upload .tr-image-upload-wrap svg {
  width: 24px;
  height: 24px;
}
.tr-file-upload .tr-drag-image span {
  font-size: 14px;
  color: #6A6A6A;
}
.tr-file-upload .tr-file-upload-content {
  display: none;
  text-align: center;
  max-height: 200px;
  max-width: 200px;
  margin: auto;
  padding: 20px;
  position: relative;
}
.tr-file-upload .tr-remove-image {
  font-size: 12px;
  width: 25px;
  height: 25px;
  margin: 0;
  color: #fff;
  background: #000000;
  border: none;
  padding: 5px;
  border-radius: 50%;
  outline: none;
  position: absolute;
  top: 10px;
  right: 10px;
}
.tr-file-upload button.tr-popup-btn {
  line-height: 19px;
  margin-top: 0;
}
/******* Write a Review Modal End *******/

/******* Listing Page without date - Start *******/
.tr-heading-section {
  padding-top: 56px;
  text-align: center;
}
.tr-heading-section h1 {
  color: #000000;
  font-size: 42px;
  font-weight: 800;
  line-height: 50px;
  margin-bottom: 12px;
}
.tr-heading-section h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.tr-search-hotel {
  background: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  width: 768px;
  margin: 40px auto 0;
  padding: 27px 60px;
}
.tr-search-hotel .tr-mobile,
.tr-search-hotel .btn-close,
.tr-search-hotel .tr-nav-tabs.tr-mobile {
  display: none;
}
.tr-search-hotel {

}
.tr-search-hotel form .tr-form-fields {
  display: flex;
  justify-content: center;
  background: #F0F3F5;
  border: 0.6px solid #D6D6D6;
  border-radius: 12px;
  width: 100%;
  margin: 0 auto;
  padding: 6.6px 9px;
}
.tr-search-hotel .tr-form-section .tr-date-section {
  padding: 0 0 16px 0;
}
.tr-search-hotel .tr-form-section .tr-date-section .tr-room-guest.active + .tr-add-edit-guest-count .tr-guests-modal {
  display: block;
}
.tr-search-hotel .col {
  padding: 0;
  position: relative;
}
.tr-search-hotel .col.tr-form-where label {
  display: none;
}
.tr-search-hotel .tr-form-where input[type="text"] {
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: top 14px left 20px;
  background-size: 20px;
  font-size: 16px;
  color: #222222;
  line-height: 20px;
  padding: 15px 44px;
}
.tr-search-hotel .tr-form-where input[type="text"]::placeholder {
  font-size: 16px;
  color: #222222;
  opacity: 1;
}
.tr-search-hotel .tr-form-where input[type="text"]::-ms-input-placeholder {
  font-size: 16px;
  color: #222222;
}
.tr-search-hotel .tr-form-who {
  display: none;
  padding-right: 24px;
}
.tr-search-hotel label {
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 6px;
  left: 24px;
}
.tr-search-hotel .tr-form-booking-date {
  display: flex;
  min-width: 292px;
  margin-left: 20px;
  padding-left: 20px;
  position: relative; 
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkin,
.tr-search-hotel .tr-form-booking-date .tr-form-checkout {
  width: 50%;
  position: relative;
}
.tr-search-hotel .tr-form-booking-date:before,
.tr-search-hotel .tr-form-booking-date .tr-form-checkout:after {
  content: "";
  position: absolute;
  top: 10px;
  width: 1px;
  height: 32px;
  background: #DDDDDE;
}
.tr-search-hotel .tr-form-booking-date:after {
  right: 0px;
}
.tr-search-hotel .tr-form-booking-date:before {
  left: 0px;
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkout:after {
  left: -1px;
}
.tr-search-hotel input[type="text"] {
  font-size: 14px;
  line-height: 21.2px;
  color: #6A6A6A;
  border: none;
  background-color: transparent;
  border-radius: 8px;
  padding: 24px 5px 6px 24px;
}
.tr-search-hotel input[type="text"]:focus {
  color: var(--bs-body-color);
  background-color: #FFFFFF;
  border-color: #86b7fe;
  box-shadow: none;
  border: none;
  outline: none;
}
.tr-search-hotel input[type="text"].is-focus{
  background-color: #FFFFFF;
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkin input[type="text"] {
  border-radius: 8px 0 0 8px;
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkout input[type="text"] {
  border-radius: 0 8px 8px 0;
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkin.tr-right-border:before {
  background: #DDDDDE;
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: 32px;
  z-index: 2;
}
.tr-search-hotel .tr-form-booking-date .tr-form-checkin.tr-right-border:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  z-index: 1;
}
.tr-search-hotel input[type="text"]::placeholder {
  font-size: 14px;
  color: #6A6A6A;
  opacity: 1;
}
.tr-search-hotel input[type="text"]::-ms-input-placeholder {
  font-size: 14px;
  color: #6A6A6A;
}
.tr-search-hotel .tr-form-btn {
  max-width: 280px;
  margin: 32px auto 0;
}
.tr-search-hotel .tr-btn {

}
/*Recently Search Modal*/
.tr-search-hotel .tr-recent-searchs-modal {
  padding: 16px;
  position: absolute;
  width: 326px;
  max-height: 350px;
  overflow-y: auto;
  left: 0;
  top: 59px;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.6);
  display: none;
  z-index: 1;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-enable-location {
  background-image: url(../images/icons/location-enable-icon.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: top 0px left 0px;
  font-weight: 600;
  line-height: 32px;
  padding: 0 0 20px 42px;
}
.tr-search-hotel .tr-recent-searchs-modal h5 {
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
}
.tr-search-hotel .tr-recent-searchs-modal ul {
  flex-wrap: wrap;
}
.tr-search-hotel .tr-recent-searchs-modal li {
  border-top: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-search-hotel .tr-recent-searchs-modal li:first-child {
  padding-top: 0;
  border-top-color: transparent;
}
.tr-search-hotel .tr-recent-searchs-modal li:last-child {
  padding-bottom: 0;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-place-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-place-info:hover{
  background: #F7F7F7;
  border-radius: 8px;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(214, 214, 214, 0.3);
  /*background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;*/
  border-radius: 100px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-location-info .tr-hotel-name {
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 4px;
}
.tr-search-hotel .tr-recent-searchs-modal .tr-location-info .tr-hotel-city {
  font-size: 12px;
  line-height: 14px;
  color: #6A6A6A;
}
/*Calender-1 Modal Section - CheckIn/CheckOut*/
.tr-search-hotel .tr-form-booking-date .tr-calenders-modal {
  width: 885px;
  position: absolute;
  left: calc(50% - 1200px/2);
  top: calc(100% + 8px);
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.6);
  padding: 46px 40px;
  display: none;
  z-index: 1;
}
.tr-search-hotel .tr-form-booking-date .tr-calenders-modal .custom-calendar {
  width: 43.7%;
}
/*Room and Guest Add/Edit Section*/
.tr-search-hotel .tr-guests-modal {
  display: none;
  /*background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  width: 400px;
  position: absolute;
  top: 59px;
  right: -49px;  
  padding: 9px 35px;*/
}
.tr-guests-modal .tr-add-edit-guest {
  display: flex;
  flex-wrap: nowrap;
  align-items: center; 
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-guests-modal .tr-add-edit-guest:last-child  {
  border: none;
}
.tr-guests-modal label {
  font-size: 16px;
  font-weight: 500;
  position: static;
}
.tr-guests-modal .tr-add-edit-guest.tr-total-num-of-rooms {
  border-bottom: 0.8px solid rgba(94, 94, 94, 0.5);
}
.tr-guests-modal .tr-total-num-of-rooms .tr-guest {
  font-weight: 600;  
}
.tr-guests-modal .tr-age {
  font-size: 14px;
  color: #6A6A6A;
  line-height: 17px;
  padding-top: 4px;
}
.tr-guests-modal .tr-qty-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 107px;
}
.tr-guests-modal input[type="text"] {
  font-size: 16px;
  width: 40px;
  padding: 8px 6px 6px;
  text-align: center;
}
.tr-guests-modal .tr-qty-box .minus,
.tr-guests-modal .tr-qty-box .plus {
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 34px;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  text-indent: -9999px;
}
.tr-guests-modal .tr-qty-box .minus.disabled {
  background-image: url(../images/icons/minus-circle-icon.svg); 
}
.tr-guests-modal .tr-qty-box .plus {
  background-image: url(../images/icons/plus-circle-icon.svg);
}
.tr-guests-modal .tr-qty-box .minus {
  background-image: url(../images/icons/minus-circle-enable-icon.svg); 
}


/******* Recent Searches - Listing Page - Start *******/
.tr-recent-searches-hotel-section {
  padding-top: 48px;
}
.tr-recent-searches-hotel-section h3 {
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
.tr-recent-searches-hotel-listing {
  margin-top: 20px;
}
.tr-recent-searches-hotel-lists {
  display: flex;
  justify-content: center;
  gap: 12.73px;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-recent-searches-hotel-lists::-webkit-scrollbar {
  display: none;
}
.tr-recent-searches-hotel-lists .tr-recent-searches-hotel-list {
  cursor: pointer;
  border: 1px solid #D6D6D6;
  border-radius: 9.54878px;
  background-image: url(../images/icons/arrow-right-grey.svg);
  background-repeat: no-repeat;
  background-position: center right 25px;
  background-size: 7px;
  padding: 11.7317px 65.0976px 11.7317px 12.7317px;
}
.tr-recent-searches-hotel-lists .tr-recent-searches-hotel-list:hover {
  background-color: #F0F3F5;
}
.tr-recent-searches-hotel-lists .tr-recent-searches-hotel-list .tr-city-name {
  color: #222222;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}
.tr-recent-searches-hotel-lists .tr-recent-searches-hotel-list .tr-booking-dates {
  color: #6A6A6A;
  line-height: 17px;
  margin-top: 6px;
}
/******* Recent Searches - Listing Page - End *******/

/******* Partners Start *******/
.tr-partners-section {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #D8DCE0;
  padding: 48px 0 39px;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-partners-section::-webkit-scrollbar {
  display: none;
}
.tr-partners-title {
  font-size: 16px;
  line-height: 19px;
  color: #131313;
  margin-right: 16px;
}
.tr-partners-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.tr-partners-list img {
  mix-blend-mode: luminosity;
  max-width: 100px;
  max-height: 28px;
}
/******* Partners End *******/

/******* YOU MIGHT LIKE THESE/TOP HOTELS - Start *******/
.tr-more-places {
  border-bottom: 1px solid #D8DCE0;
  padding: 20px 0 24px;
}
.tr-more-places .tr-sub-title {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #6A6A6A;
  margin-top: 8px;
}
.tr-more-places-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tr-more-places-lists .tr-more-places-list {
  width: 316px;
  margin-bottom: 16px;
  padding: 0 13px;
}
.tr-more-places-list .tr-hotel-deatils {
  min-height: 118px;
  margin-top: 10px;
  position: relative;  
}
.tr-more-places-list .tr-hotel-img {
  border-radius: 12px;
  overflow: hidden;
}
.tr-more-places-list .tr-hotel-img img {
  transition: all .5s ease;
}
.tr-more-places-list .tr-hotel-img:hover img {
  transform: scale(1.1);
  transition: all .5s ease;
}
.tr-more-places-list .tr-hotel-city {
  color: #6A6A6A;
  line-height: 17px;
  margin-bottom: 1px;
}
.tr-more-places-list .tr-hotel-name a {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  transition: all .3s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tr-more-places-list .tr-hotel-facilities {
  margin-top: 8px;
}
.tr-more-places-list .tr-hotel-facilities ul {
  display: flex;
  margin-top: 5px;
}
.tr-more-places-list .tr-hotel-facilities ul li {
  font-weight: 400;
  line-height: 17px;
  color: #222222;
  opacity: 0.8;
  margin-right: 11px;
  position: relative;
}
.tr-more-places-list .tr-hotel-facilities ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -6px;
  border: 1px solid #222222;
  opacity: 0.8;
}
.tr-more-places-list .tr-hotel-facilities ul li:nth-of-type(1):before {
  display: none;
}
.tr-more-places-list .tr-likes {
  color: #131313;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  position: absolute;
  top: 0;
  right: 0;
}
.tr-more-places-list .tr-likes .tr-heart {
  display: inline-block;
  background-color: #28965A;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  text-align: center;
}
/******* YOU MIGHT LIKE THESE/TOP HOTELS - End *******/

/******* City Wise Hotel - START End *******/
.tr-city-wise-hotels-section {
  border-bottom: 1px solid #D8DCE0;
  padding: 40px 0 20px;
}
.tr-city-wise-hotels-section .tr-sub-title {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #6A6A6A;
  margin-top: 8px;
}
.tr-city-wise-hotel-listing {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.tr-city-wise-hotel-lists {
  font-size: 16px;
  width: 27.42%;
  max-width: 320px;
}
.tr-city-wise-hotel-lists .tr-city-wise-hotel-list {
  cursor: pointer;
  border-bottom: 1px solid #D8DCE0;
}
.tr-city-wise-hotel-lists .tr-city-wise-hotel-list:last-child {
  border-bottom: none;
}
.tr-city-wise-hotel-lists .tr-city-name {
  color: #222222;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: center right 0;
  background-size: 18px;
  padding: 20px 0;
}
.tr-city-wise-hotel-lists .tr-hotel-lists {
  display: none;
}
.tr-city-wise-hotel-lists .tr-hotel-lists .tr-hotel-list {
  display: flex;
  justify-content: space-between;
  color: #6A6A6A;   
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.tr-city-wise-hotel-lists .tr-hotel-lists .tr-hotel-list a {
  border-bottom: 1px solid transparent;
  color: #6A6A6A;
}
.tr-city-wise-hotel-lists .tr-hotel-lists .tr-hotel-list a:hover {
  border-color: #6A6A6A;
}
.tr-city-wise-hotel-lists .tr-hotel-lists.open {
  display: block;
}
/******* City Wise Hotel - End *******/

/******* Good to Know - Start *******/
.tr-good-to-know-section {
  margin-top: 52px;
  padding-bottom: 20px;
}
.tr-good-to-know-section .tr-season-list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #D6D6D6;
  padding: 24px 0;
}
.tr-good-to-know-section .tr-season-list .tr-season-type {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  width: 272px;
}
.tr-good-to-know-section .tr-season-list .tr-season-desc {
  font-size: 15px;  
  line-height: 22px;
  color: #222222;
  width: calc(100% - 272px);
}
.tr-good-to-know-section .tr-season-list .tr-season-desc .tr-season-heading {
  color: #000000;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.tr-good-to-know-section .tr-season-list .tr-season-desc p {
  color: #6A6A6A;
}
.tr-good-to-know-section .tr-season-list .tr-season-desc p strong {
  color: #222222;
}
/******* Good to Know - End *******/

/*******TOP TIPS FOR FINDING LONDON HOTEL DEALS - START *******/
.tr-tips-finding-hotel {
  border-bottom: 1px solid #D8DCE0;
  padding: 60px 0 40px;
}
.tr-tips-finding-hotel ul li {
  background-image: url(../images/icons/check-circle-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 20px;
  color: #6A6A6A;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  padding: 0 0 28px 32px;
}
.tr-tips-finding-hotel ul {
  margin-top: 24px;
}
.tr-tips-finding-hotel ul li:last-child {
  padding-bottom: 0;
}
/*******TOP TIPS FOR FINDING LONDON HOTEL DEALS - END *******/
/******* Listing Page without date - End *******/

/******* Listing Page with dates - Start *******/
.tr-listing-with-dates-1 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.tr-shortmap-and-shotby-section {
  display: flex;
}
.tr-shortmap-and-shotby-section .tr-short-map {
  background-image: url("../images/map-bg.png");
  background-size: contain;
  border-radius: 8px;
  width: 281px;
  height: 83px;
  padding: 7px;
  text-align: center;
}
.tr-shortmap-and-shotby-section .tr-short-map .tr-btn {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  border-radius: 4px;
  display: block;
  width: 111px;
  margin: 8px auto 0;
  padding: 6px 12px;
}

.tr-title-filter-section {
  width: calc(100% - 281px);
  padding-left: 28px;
}
.tr-title-filter-section .tr-row {
  display: flex;
  align-items: center;
}
.tr-title-filter-section h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 31px;
  margin: 0;
}
.tr-title-filter-section .tr-share {
  display: block;
  background-image: url(../images/icons/share-icon.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
  width: 28px;
  height: 28px;
  margin-left: 4px;
  text-indent: -9999px;
}
.tr-title-filter-section .tr-row:nth-of-type(2) {
  margin-top: 16px;
}
.tr-title-filter-section .tr-shotby {
  border: 1px solid #D6D6D6;
  border-radius: 50px;
  font-size: 16px;
  padding: 0 0 0 12px;
  position: relative;
  flex: none;
}
.tr-title-filter-section .custom-select .select-selected {
  border: transparent;
  line-height: 19px;
  width: auto;
  height: 34.4px;
  padding: 8px 44px 8px 8px;
}
.custom-select .select-items {
  top: calc(100% + 1px);
}
.tr-filter-selected-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-left: 1px solid #D6D6D6;
  margin-left: 10px;
  padding-left: 10px;
}
.tr-filter-selected {
  cursor: pointer;
  background-color: #F3F6FD;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 6px 36px 6px 12px;
  background-image: url(../images/icons/close-icon.svg);
  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 20px;
}

/******* Filter Section - Start *******/
.tr-filters-section {
  border-right: 1px solid #D6D6D6;
  width: 281px;
  padding: 20px 16px;
}
.tr-filters-section h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.tr-filter-lists h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin: 0;
}
.tr-filters-section .tr-filter-lists {
  margin-top: 28px;
}
.tr-filters-section .tr-filter-lists .tr-filter-list {
  font-size: 16px;
  line-height: 19px;
  color: #222222;
  margin-top: 16px;
}
/******* Filter Section - Start *******/

/******* Price Range - Start *******/
.tr-price-graph {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  padding: 24px 10px 0;
}
.tr-price-graph-col {
  background-color: #F0F3F5;
  width: 20px;
  border-radius: 4px 4px 0 0;
}
.tr-price-range-section {
  margin-top: -5px;
  position: relative;
}
.tr-price-range-section .tr-price-slider {
  background-image: url(../images/date-range-bg.png);
  background-repeat: repeat-x;
  background-size: 8px;
  height: 5px;
  margin: 9px 0 40px;
  position: relative;
}
.tr-price-range-section .tr-title {
  display: none;
  color: #000000;
  font-size: 12px;
  position: absolute;
  top: 18px;
  width: 40px;
  text-align: center;
  transform: translateX(-50%);
}
.tr-price-range-section .min-price-title {
  margin-left: 11px;
}
.tr-price-range-section .max-price-title {
  margin-left: -10px;
}
.tr-price-range-section .tr-price-slider input[type=range] {
  -webkit-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  height: 5px;
  pointer-events: none;
  position: absolute;
}
.tr-price-range-section .tr-price-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  background-image: url(../images/icons/arrow-left-right-black.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  border-radius: 50%;
  border: 1px solid #000000;
  width: 20px;
  height: 20px;
  cursor: pointer;
  pointer-events: auto;
}
.tr-price-range-section .tr-price-slider input[type=range]:hover::-webkit-slider-thumb {
  background-color: #000000;
  background-image: url(../images/icons/arrow-left-right-white.svg);
}
.tr-price-range-section .tr-price-slider input[type=range]::-moz-range-thumb {
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  pointer-events: auto;
}
.tr-price-range-section .tr-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F0F3F5;
  border: 1px solid #FFFFFF;
  border-radius: 40px;
  padding: 4px;
}
.tr-price-range-section .tr-range-values div {
  background-color: #FFFFFF;
  border-radius: 40px;
  font-weight: 600;
  line-height: 40px;
  color: #222222;
  width: calc(50% - 10px);
  height: 40px;  
  text-align: center;
}
/******* Price Range - End *******/

/******* ROOM Start *******/
.tr-hotel-info-section {
  display: flex;
  margin-top: 24px;
}
.tr-room-section-2 {
  width: calc(100% - 281px);
  padding-left: 28px;
}
.tr-room-section-2 .tr-room-filters {
  display: flex;
  align-items: center;
  font-size: 16px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  margin:  24px 0 32px 0; 
  padding: 23px 30px;
}
.tr-room-section-2 .tr-room-filters .tr-filter-label {
  font-weight: 700;
  min-width: 111px;
  margin-right: 13px;
}
.tr-room-section-2 .tr-room-filters .tr-filter-lists {
  display: flex;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-room-section-2 .tr-room-filters .tr-filter-lists::-webkit-scrollbar {
  display: none;
}
.tr-room-section-2 .tr-room-filters .tr-filter-list {
  flex: none;
}
.tr-room-section-2 .tr-room-filters .tr-filter-list label {
  cursor: pointer;
  line-height: 20px;
  border: 1px solid #D6D6D6;
  border-radius: 80px;
  margin: 0 13px;
  padding: 6px 12px;
}
.tr-room-section-2 .tr-room-filters .tr-filter-list svg {
  margin: -4px 8px 0 0;
}
.tr-room-section-2 .tr-room-filters .tr-filter-list input {
  display: none;
}
.tr-room-section-2 .tr-room-filters .tr-filter-list input:checked ~ label {
  font-weight: 600;
  background: #F0F3F5;
}
.tr-room-section-2 .tr-hotel-deatils {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #D6D6D6;
  padding: 40px 16px;
  position: relative;
}
.tr-room-section-2 .tr-hotel-deatils .tr-hotal-image {
  width: 260px;
  position: relative;
}
.tr-room-section-2 .tr-hotel-deatils .tr-hotal-image .carousel-inner {
  border-radius: 8px;
}
.tr-room-section-2  .carousel-indicators {
  align-items: center;
}
.tr-room-section-2 .carousel .carousel-control-next, 
.tr-room-section-2 .carousel .carousel-control-prev {
  display: none;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.tr-room-section-2 .carousel .carousel-control-next-icon, 
.tr-room-section-2 .carousel .carousel-control-prev-icon {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: top 5px left 9px;
  width: 24px;
  height: 24px;
}
.tr-room-section-2 .carousel:hover .carousel-control-next, 
.tr-room-section-2 .carousel:hover .carousel-control-prev {
  display: block;
}
.tr-room-section-2 .carousel .carousel-control-prev-icon {
  background-image: url(../images/chevron-down-left-icon.svg);
}
.tr-room-section-2 .carousel .carousel-control-next-icon {
  background-image: url(../images/chevron-down-right-icon.svg);
}
.tr-room-section-2 .carousel .carousel-indicators [data-bs-target] {
  border: none;
  border-radius: 4px;
  width: 6px;
  height: 6px;
  text-indent: -9999px;
}
.tr-room-section-2 .carousel .carousel-indicators [data-bs-target].active {
  width: 8px;
  height: 8px;
}
.tr-room-section-2 .carousel .carousel-indicators .slider-count {
  display: none;
}
.tr-room-section-2 .tr-hotal-image .tr-anchor-btn.tr-save {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url(../images/icons/save-white-icon.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  border: none;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.tr-hotel-deatil h2 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

.tr-room-section-2 .tr-hotel-deatil {
  width: calc(100% - 510px);
  padding: 0 24px;
}

.tr-room-section-2 .tr-hotel-deatil h2 {
  line-height: 26px !important;
  margin-bottom: 0 !important;
  white-space: nowrap !important;
  max-width: 50% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.tr-room-section-2 .tr-hotel-deatil h2 a {
  color: #222222;
  border-bottom: 1px solid transparent;
}
.tr-room-section-2 .tr-hotel-deatil h2 a:hover {
  border-color: ##222222;
}
.tr-room-section-2 .tr-heading-with-rating {
  display: flex;
  margin-bottom: 4px;
}
.tr-room-section-2 .tr-heading-with-rating .tr-rating {
  display: flex;
  gap: 4px;
  line-height: 19px;
  margin-top: -1px;
  margin-left: 8px;
}
.tr-room-section-2 .tr-heading-with-rating .tr-rating span {
  width: 10px;
}
.tr-room-section-2 .tr-hotel-location {
  background-color: #FFFFFF;
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 12px;
  font-size: 12px;
  line-height: 14px;
  color: #232A2F;
  padding-left: 16px;
}
.tr-room-section-2 .tr-like-review {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.tr-room-section-2 .tr-heart {
  background-color: #28965A;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
.tr-room-section-2 .tr-ranting-percent {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 4px;
}
.tr-room-section-2 .tr-vgood {
  background: rgba(41, 133, 122, 0.11);
  border-radius: 4px;
  color: #29857A;
  font-weight: 600;
  line-height: 17px;
  margin-left: 12px;
  padding: 4px 8px;
}
.tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities {
    padding: 24px 0;
    margin: 10px 0;
}

.tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul li {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  color: #222222;
  text-align: center;
}
.tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul li svg {
  width: 14px;
}
.tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul li span {
  display: block;
  margin-top: 4px;
}
/*.tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul {
  display: flex;
  flex-wrap: wrap;
}*/


.tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul {
    max-height: 36px; /* Adjusted for two lines based on font-size and line-height */
    overflow: hidden;
    position: relative;
  }

  .tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul.show-more {
    max-height: none; /* Allows full content to display when toggled */
  }


.tr-more-facilities ul li {
    display: inline; /* Ensures list items appear in a single block */
}

.tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul li {
  font-size: 14px;
  line-height: 17px;
  color: #232A2F;
/*  padding-right: 11px;*/
  position: relative;
}
/*.tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 8px;
  right: 5px;
  border: 1px solid #222222;
  opacity: 0.8;
}*/

.tr-room-section-2 .tr-hotel-price-section {
  width: 250px;
}
.tr-room-section-2 .tr-hotel-price-section .tr-deal {
  line-height: 17px;
  margin-bottom: 12px;
  text-align: right;
}
.tr-room-section-2 .tr-hotel-price-section .tr-deal.tr-offer-alert {
  color: #28965A;
}
.tr-room-section-2 .tr-hotel-price-section .tr-deal.tr-offer-alert svg {
  margin-right: 4px;
}
.tr-room-section-2 .tr-hotel-price-section .tr-deal.tr-left-alert {
  color: #CD2E20;
}
.tr-room-section-2 .tr-hotel-price-lists {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 12px;
  padding: 9px 10px;
  position: relative;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list:first-child {
  background-color: #ECF9FB;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list:nth-child(n+3) {
  display: none;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list .tr-row {
  display: flex;
  justify-content: space-between;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list .tr-row:nth-of-type(2) {
  align-items: end;
  flex-direction: row-reverse;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list .tr-hotel-price {
  font-size: 18px;
  font-weight: 700;
  line-height: 20.42px;
  text-align: right;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-hotel-facilities ul li {
  font-size: 12px;
  line-height: 16px;
  color: #28965A;
  margin-bottom: 4px;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-site-details img {
  max-width: 90px;
  max-height: 18px;
}
.tr-room-section-2 .tr-hotel-price-lists a {
  display: block;
  background-image: url(../images/icons/long-arrow-right-white-icon.svg);
  background-repeat: no-repeat;
  background-position: top 11px right 12px;
  background-size: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  min-width: 111px;
  padding: 7.5px 12px;
  transition: all .3s ease;
}
.tr-room-section-2 .tr-hotel-price-lists a strong {
  font-size: 16px;
  color: #ffffff;
}
.tr-room-section-2 .tr-hotel-price-lists .tr-anchor-btn {
  align-self: flex-end;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 1px right 0px;
  background-size: 16px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #131313;
  line-height: 17px;
  padding-right: 20px;
}
.tr-listing-with-dates .tr-pagination {
  margin-top: 0;
}

.more-options-modal {
  background-color: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border-radius: 12px;
  width: 256px;
  padding: 12px 10px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 3;
}
.more-options-modal .tr-hotel-price-lists .tr-hotel-price-list:first-child {
  background-color: #FFFFFF;
}

.tr-login-for-more-options {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(175.77deg, rgba(255, 255, 255, 0.6) 8.04%, #FFFFFF 113.49%);
  backdrop-filter: blur(16.7px);
  border-radius: 8px;
  padding: 46.5px 16px;
  position: absolute;
  width: 100%;
  top: 20px;
  left: 0px;
  z-index: 2;
}
.tr-login-for-more-options h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  color: #222222;
  margin-bottom: 0;
}
.tr-login-for-more-options p {
  font-size: 18px;
  line-height: 22px;
  color: #222222;
}
.tr-login-for-more-options button.tr-btn {
  min-width: 220px;
}
.tr-map-and-filter {
  display: none;
  justify-content: center;
  position: fixed;
  bottom: 50px;
  right: 0;
  left: 0;
  z-index: 2;
}
.tr-map-and-filter button {
  background-color: #222222;
  border: none;
  color: #FFFFFF;
  padding: 9px 12px;
  position: relative;
}
.tr-map-and-filter button.map {
  border-radius: 8px 0 0 8px;
}
.tr-map-and-filter button.filter {
  border-radius: 0 8px 8px 0;
}
.tr-map-and-filter button svg {
  margin: -4px 4px 0 0;
}
.tr-map-and-filter button.map:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0px;
  width: 1px;
  height: 20px;
  background: #FFFFFF;
}
.tr-hotels-not-available {
  display: flex;
  justify-content: center;
  font-size: 18px;
  border-top: 1px solid #D6D6D6;
  padding: 100px 0;
}
/******* ROOM End *******/


/******* Map Mosal - Start *******/
#mapModal .modal-dialog {
  position: fixed;
  max-width: 100%;
  height: 100%;
  width: 100%;
  margin: 0;
}
#mapModal .modal-content {
  border-radius: 0;
}
#mapModal .modal-body {
  padding: 0;
}
#mapModal button.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
#mapModal button.filter {
  display: none;
  background-color: #FFFFFF;
  border: none;
  border-radius: 8px;
  color: #000000;
  font-size: 16px;
  line-height: 19px;
  padding: 14px 19px;
  position: absolute;
  top: 12px;
  right: 16px;
}
#mapModal button.filter svg {
  margin: -4px 4px 0 0;
}
#mapModal .tr-filter-selected-section:not(:empty) {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border: none;
  margin-left: 0;
  padding-left: 0;
}
#mapModal .tr-filter-selected {
  font-size: 12px;
  line-height: 17px;
  padding: 4px 30px 4px 10px;
  background-size: 14px;
}
#mapModal .tr-hotel-info-section {
  margin-top: 0;
}
#mapModal .tr-filters-section {
  background: #ffffff;
  width: 301px;
  height: 100vh;
  padding: 20px 16px 20px 36px;
  z-index: 3;
  overflow: auto;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
#mapModal .tr-filters-section::-webkit-scrollbar {
  display: none;
}
#mapModal .tr-room-section-2 .tr-hotel-deatils {
  flex-direction: column;
}
#mapModal .tr-room-section-2 .tr-hotel-deatil {
  width: 100%;
  padding: 10px 0 0 0;
  position: relative;
}
#mapModal .tr-room-section-2 {
  width: 381px;
  height: 100vh;
  padding: 0 10px 20px 20px;
  transition: all .3s ease;
  overflow: auto;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
#mapModal .tr-room-section-2::-webkit-scrollbar {
  display: none;
}
#mapModal .tr-room-section-2 .tr-hotel-deatils {
  padding: 16px 0;
}
#mapModal .tr-room-section-2 .tr-hotel-deatils:first-child {
  border: none;
}
#mapModal .tr-room-section-2 .tr-hotel-deatils .tr-hotal-image {
  width: 100%;
}
#mapModal .tr-room-section-2 .tr-vgood {
  display: none;
}
#mapModal .tr-room-section-2 .tr-like-review {
  position: absolute;
  top: 0;
  right: 0;
}
#mapModal .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities {
  padding: 16px 0;
}
#mapModal .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul {
  column-gap: 24px;
}
#mapModal .tr-room-section-2 .tr-hotel-price-section {
  width: 100%;
  margin-top: 10px;
}
#mapModal .tr-room-section-2 .tr-hotel-price-section .tr-deal,
#mapModal .tr-room-section-2 .tr-hotel-price-lists .tr-anchor-btn,
#mapModal .tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list:not(:first-child),
#mapModal .tr-login-for-more-options {
  display: none;
}
#mapModal .tr-room-section-2 .tr-hotel-price-lists .tr-hotel-price-list {
  margin-bottom: 0;
}
#mapModal .tr-map-section {
  width: calc(100% - 682px);
  height: 100vh;
  position: relative;
  transition: all .3s ease;
}
#mapModal .tr-map-section .tr-temp-img {
  width: 100%;
  height: 100%;
}
#mapModal .tr-map-section button.tr-hide-list {
  background-color: #ffffff;
  background-image: url(../images/left-double-arrow.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
  border-radius: 4px;
  position: absolute;
  border: none;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: -4px;
  text-indent: -9999px;
}
#mapModal button.tr-hide-list.removed-list {
  background-image: url(../images/right-double-arrow.png);
}
.tr-hotel-on-map {
  width: 280px;
  position: absolute;
  top: 12px;
  left: 100px;
}
.tr-hotel-on-map input[type="text"] {
  background-image: url(../images/icons/search-black-icon.svg);
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-size: 15px;
  border-radius: 8px;
  font-size: 16px;
  height: 48px;
  padding: 10px 10px 10px 50px;
}
.tr-hotel-on-map input[type="text"]::placeholder {
  font-size: 16px;
  color: #000000;
  opacity: 1;
}
.tr-hotel-on-map input[type="text"]::-ms-input-placeholder {
  font-size: 16px;
  color: #000000;
}
.tr-hotel-on-map input[type="text"]:focus + .tr-recent-searchs-modal {
  display: block;
}
.tr-hotel-on-map .tr-recent-searchs-modal {
  display: none;
  padding: 16px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.6);
  display: none;
  z-index: 1;
}
.tr-hotel-on-map .tr-recent-searchs-modal .tr-enable-location {
  background-image: url(../images/icons/location-enable-icon.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: top 0px left 0px;
  font-weight: 600;
  line-height: 32px;
  padding: 0 0 20px 42px;
}
.tr-hotel-on-map .tr-recent-searchs-modal h5 {
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
}
.tr-hotel-on-map .tr-recent-searchs-modal ul {
  flex-wrap: wrap;
}
.tr-hotel-on-map .tr-recent-searchs-modal ul li {
  border-top: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-hotel-on-map .tr-recent-searchs-modal ul li:first-child {
  padding-top: 0;
  border-top-color: transparent;
}
.tr-hotel-on-map .tr-recent-searchs-modal ul li:last-child {
  padding-bottom: 0;
}
.tr-hotel-on-map .tr-recent-searchs-modal .tr-place-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
}
.tr-hotel-on-map .tr-recent-searchs-modal .tr-place-info:hover{
  background: #F7F7F7;
  border-radius: 8px;
}
.tr-recent-searchs-modal {
  background-color: #FFFFFF;
}
#mapModal.remove-hotel-list .tr-room-section-2 {
  left: -60px;
  z-index: 2;
  margin-left: -381px;
}
#mapModal.remove-hotel-list .tr-map-section {
  width: calc(100% - 682px + 381px)
}
/******* Map Mosal - End *******/
/******* Listing Page with dates - End *******/


.tr-listing-without-dates-1 {

}
.tr-listing-without-dates-1 .tr-filters-section .tr-filter-lists .tr-filter-list {
  margin-top: 12px;
}
.tr-listing-without-dates-1 .tr-filter-lists h5 {
  padding-bottom: 4px;
}
.tr-listing-without-dates-1 .tr-filter-lists ul li a {
  color: #09707A;
}
.tr-listing-without-dates-1 .tr-title-filter-section {
  width: 100%;
  padding: 0 0 24px;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil {
  width: calc(100% - 260px);
  padding: 0 0 0 24px;
  position: relative;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil > .tr-like-review {
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.accordion {
  margin-top: 16px;
}
.accordion-items {
  display: flex;
  border-bottom: 1px solid #D6D6D6;
}
.accordion-item {
  border: none;
}
.accordion-item button {
  background-color: #FFFFFF;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  line-height: 19px;
  color: #222222;
  padding: 11px 20px;
}
.accordion-item button[aria-expanded="true"] {
  border-bottom: 2px solid #000000;
  font-weight: 600;
  pointer-events: none;
}
.accordion-items-content {
  min-height: 120px;
}
.accordion-items-content .accordion-collapse {
  padding-top: 16px;
}

.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul {
  /*margin-bottom: 16px;*/
  padding-left: 20px;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul:last-child {
  margin-bottom: 0;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-more-facilities ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: #222222;
  list-style: disc;
  margin-bottom: 5px;
}

.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities {
  padding: 0;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul {
  gap: 0;
  row-gap: 20px;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  width: 33.33%;
  text-align: left;
}
.tr-listing-without-dates-1 .tr-room-section-2 .tr-hotel-deatil .tr-hotel-facilities ul li svg {
  width: 20px;
  margin: -4px 8px 0 0;
}
.tr-room-section-2 .accordion .tr-like-review {
  margin: 0 0 10px 0;
}
.tr-room-section-2 .accordion .tr-vgood {
  margin: 0 7px 0 0;
}
.tr-view-availability {
  position: absolute;
  top: 32px;
  right: 0;
}
.tr-listing-without-dates-1 .tr-view-availability button.tr-btn {
  background-color: #FFFFFF;
  font-weight: 600;
  line-height: 17px;
  color: #09707A;
  padding: 0;
}


.tr-date-section input[type="text"].tr-room-guest {
  left: 0;
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 1px right 0;
  background-size: 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  position: relative;
  cursor: pointer;
  padding: 0;
  color: #000000;
  width: 145px;
}
.tr-date-section input[type="text"].tr-room-guest::placeholder {
  font-size: 16px;
  color: #000000;
  opacity: 1;
}
.tr-date-section input[type="text"].tr-room-guest::-ms-input-placeholder {
  font-size: 16px;
  color: #000000;
}
/* budget hotel */

.tr-budget-hotels-near-you.tr-more-places {
  border-bottom: none;
  padding: 24px 0;
}
.tr-budget-hotels-near-you .tr-heading-with-see-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tr-budget-hotels-near-you .tr-see-all {
  font-weight: 600;
  color: #000000;
  text-decoration: underline;
}
.tr-budget-hotels-near-you .tr-see-all:hover {
  text-decoration: none;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities {
  height: 72px;
  overflow: hidden;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities.showing-all {
  height: auto;
  overflow: visible;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities ul {
  display: block;
  margin-top: 0px;
  padding-left: 20px;
  position: relative;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities ul li {
  display: none;
  font-size: 16px;
  line-height: 24px;
  list-style: disc;
  opacity: 1;
  margin-right: 0;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities ul li.visible {
  display: list-item;
}
.tr-budget-hotels-near-you .tr-more-places-list .tr-hotel-facilities ul li:before {
  display: none;
}
.tr-budget-hotels-near-you button.tr-anchor-btn.toggle-list {
  background-color: #FFFFFF;
  background-image: url(../images/icons/read-more-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-bottom: none;
  padding: 2px 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
}
.tr-budget-hotels-near-you .tr-price {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.tr-budget-hotels-near-you .tr-price strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 5px;
}
.tr-budget-hotels-near-you .tr-price .tr-night {
  font-size: 12px;
  font-weight: 400;
}
.tr-budget-hotels-near-you .slick-slide {
  margin: 0;
}
.tr-budget-hotels-near-you .slick-slider .slick-arrow {
  opacity: 0;
  top: 110px;
}
.tr-budget-hotels-near-you:hover .slick-slider .slick-arrow {
  opacity: 1;
}
.tr-budget-hotels-near-you .slick-slider .slick-arrow.slick-prev {
  left: 30px;
}
.tr-budget-hotels-near-you .slick-slider .slick-arrow.slick-next {
  right: 30px;
}


/******* SignIn/SignUp Modal - Start *******/
.tr-authentication .modal-dialog {
  max-width: 566px;
}
.tr-authentication .modal-content {
  border-radius: 12px;
}
.tr-authentication button.btn-close {
  background-image: url(../images/chevron-down-left-icon.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
  box-sizing: border-box;
  box-shadow: 0px 4px 6.4px rgba(156, 156, 156, 0.22);
  border-radius: 100px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 24px;
  left: 40px;
  opacity: 1;
  text-indent: -9999px;
}
.tr-authentication.tr-login-modal button.btn-close,
.tr-authentication.tr-reset-pswd button.btn-close {
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  right: 40px;
  left: auto;
}
.tr-authentication button.tr-btn {
  font-weight: 600;
}
.tr-auth-section {
  padding: 24px 40px;
}
.tr-auth-section .tr-auth-header {
  border-bottom: 1px solid #D6D6D6;
  margin-bottom: 24px;
  padding: 0 0 24px 0;
  text-align: center;
}
.tr-auth-section h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 31px;
  padding: 0 0 24px 0;
}
.tr-auth-section h5 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0;
}
.tr-auth-section h6 {
  font-size: 16px;
  line-height: 19px;
  margin: 4px 0 10px 0;
}
.tr-auth-section p {
  color: #222222;
  font-weight: 400;
  margin-top: 8px;
}
.tr-auth-section a {
  color: #222222;
  border-bottom: 1px solid #222222;
}
.tr-auth-section a:hover {
  border-color: transparent;
}
.tr-auth-section .tr-field-row {
  margin-bottom: 24px;
}
.tr-auth-section .tr-field {
  position: relative;
}
.tr-auth-section .tr-field:before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 14.5px;
  left: 20px;
  z-index: 1;
}
.tr-auth-section .tr-first-name-field:before,
.tr-auth-section .tr-surname-field:before {
  background-image: url(../images/icons/user-icon.svg);
}
.tr-auth-section .tr-city-field:before {
  background-image: url(../images/icons/map-pin-icon.svg);
}
.tr-auth-section .tr-email-field:before {
  background-image: url(../images/icons/email-icon.svg);
}
.tr-auth-section .tr-password-field:before {
  background-image: url(../images/icons/eye-icon.svg);
}
.tr-auth-section .tr-field-label {
  background-color: transparent;
  font-size: 16px;
  line-height: 19px;
  color: #6A6A6A;
  position: absolute;
  top: 16.5px;
  left: 50px;
  transition: all .2s ease;
}
.tr-auth-section input {
  background-color: #F0F3F5;
  background-repeat: no-repeat;
  border: 1px solid #F0F3F5;
  border-radius: 8px;
  font-size: 16px;
  line-height: 19px;
  color: #6A6A6A;
  padding: 26px 16px 5.4px 50px;
  width: 100%;
}
.tr-auth-section input:focus {
  box-shadow: 1px 0px 14px rgba(156, 156, 156,0.8);
  outline: none;
}
.tr-auth-section input:-webkit-autofill {
          box-shadow: 0 0 0 30px #F0F3F5 inset !important;
  -webkit-box-shadow: 0 0 0 30px #F0F3F5 inset !important;
}
.tr-auth-section .tr-check-box {
  color: #222222;
  font-weight: 400;
  line-height: 17px;
}
.tr-auth-section .tr-field.is-focus .tr-field-label,
.tr-auth-section .tr-field.tr-value-field .tr-field-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #000000;
  top: 9px;
}
.tr-auth-section .tr-validation-message {
  display: block;
  color: #CD2E20;
  margin-top: 4px;
}
.tr-auth-section .tr-or {
  line-height: 17px;
  color: #6A6A6A;
  margin: 24px 0;
  position: relative;
  text-align: center;
}
.tr-auth-section .tr-or:before, 
.tr-auth-section .tr-or:after {
  content: "";
  position: absolute;
  top: 9px;
  flex-grow: 1;
  background: #d9e2e8;
  height: 1px;
  font-size: 0;
  line-height: 0;
  width: 46%;
}
.tr-auth-section .tr-or:before {
  left: 0;
}
.tr-auth-section .tr-or:after {
  right: 0;
}
.tr-auth-section .tr-auth-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tr-auth-section .tr-auth-options button {
  background-color: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 16px;
  line-height: 19px;
  color: #222222;
  padding: 15.7px 16px;
  width: 100%;
  position: relative;
  transition: all .3s ease;
}
.tr-auth-section .tr-auth-options button:hover {
  background-color: #FF4B01;
  border-color: #FF4B01;
  color: #FFFFFF;
}
.tr-auth-section .tr-auth-options button svg {
  position: absolute;
  top: 13px;
  left: 16px;
}
.tr-auth-section .tr-forgot-btn {
  margin-top: 24px;
  text-align: right;
}
.tr-auth-section .tr-forgot-btn button.tr-anchor-btn {
  color: #131313;
  border-color: #131313;
}
.tr-auth-section .tr-forgot-btn button.tr-anchor-btn:hover {
  border-color: transparent;
}
.tr-auth-section .alert {
  background-color: #ECF9FB;
  background-image: url(../images/icons/check-circle-sea-blue-icon.svg);
  background-repeat: no-repeat;
  background-position: top 14px left 20px;
  background-size: 20px;
  border: none;
  font-size: 16px;
  line-height: 17px;
  color: #09707A;
  margin-bottom: 24px;
  padding: 17.5px 20px 17.5px 44px;
}

/*Recently Search Modal*/
.tr-authentication .tr-recent-searchs-modal {
  padding: 0 16px;
  position: absolute;
  width: 100%;
  max-height: 350px;
  overflow-y: auto;
  left: 0;
  top: 100%;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.6);
  z-index: 2;
}
.tr-authentication .tr-recent-searchs-modal li {
  border-top: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-authentication .tr-recent-searchs-modal li:first-child {
  border-top-color: transparent;
}
.tr-authentication .tr-recent-searchs-modal .tr-place-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
}
.tr-authentication .tr-recent-searchs-modal .tr-place-info:hover{
  background: #F7F7F7;
  border-radius: 8px;
}
.tr-authentication .tr-recent-searchs-modal .tr-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(214, 214, 214, 0.3);
  border-radius: 100px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
/******* SignIn/SignUp Modal - End *******/

/******* Explore Listing Page - Start *******/
.tr-explore-listing {
  display: flex;
  margin-bottom: -32px;
}
.tr-explore-listing .tr-explore-left-section {
  width: 520px;
  height: 100vh;
  padding: 35px 20px 18px 0;
  position: relative;
  transition: all .3s ease;
  overflow: auto;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}
.tr-explore-listing .tr-explore-left-section::-webkit-scrollbar {
  display: none;
}
.tr-explore-listing .tr-explore-left-section.tr-search-open {
  overflow: hidden;
}

.tr-explore-listing .tr-title-section {
  display: flex;
  align-items: center;
}
.tr-explore-listing h2.tr-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  color: #0A0A0A;
  margin: 0;
}
.tr-explore-listing .tr-title-section button.tr-share {
  background-image: url(../images/icons/share-icon.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  border: none;
  width: 20px;
  height: 20px;
  margin-left: 24px;
  text-indent: -9999px;
}
.tr-explore-listing .tr-total-search {
  font-size: 16px;
  line-height: 24px;
  color: #6A6A6A;
  margin-top: 7px;
}
.tr-explore-listing .tr-let-us-know-more {
  background-color: #F7F7F7;
  border-radius: 8px;
  letter-spacing: 0.01em;
  color: #6A6A6A;
  padding: 12px;
}
.tr-explore-listing .tr-let-us-know-more .tr-let-us-know-more-btn {
  background-color: rgba(255, 97, 33, 0.2);
  background-image: url(../images/icons/arrow-right-orange-icon.svg);
  background-repeat: no-repeat;
  background-position: top 9px right 12px;
  background-size: 6px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #FF4B01;
  margin-top: 49px;
  padding: 5px 10px 5px 10px;
  width: 152px;
  text-align: left;
}

.tr-explore-search {
  border-top: 1px solid #EDEDED;
  margin: 24px 0 30px;
  padding-top: 24px;
  position: relative;
}
.tr-explore-search .tr-explore-search-feild {
  position: relative;
}
.tr-explore-search .tr-search-field {
  font-size: 16px;
  font-weight: 400;
  line-height: 16.4px;
  color: #6A6A6A;
  background-color: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 30px;
  /*box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);*/
  padding: 16px 60px 16px 35px;
  width: 100%;
  height: 52px;
}
.tr-explore-search input[type="text"]:focus {
  color: var(--bs-body-color);
  background-color: #FFFFFF;
  border-color: #86b7fe;
  box-shadow: none;
  border: none;
  outline: none;
}
.tr-explore-search .tr-search-by-category {
  position: absolute !important;
  top: 15px;
  left: 112px;
}
.tr-explore-search .tr-search-by-category div:not(:first-child) {
  display: none;
}
.tr-explore-search .tr-search-by-category.slick-slider div {
  display: block;
}

.tr-explore-search .tr-btn {
  background-image: url(../images/icons/search-white-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 4px;
  right: 4px;
  text-indent: -9999px;
}
.tr-explore-search .tr-explore-search-modal {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 24px;
  background: #FFFFFF;
  border-radius: 26px;
  z-index: 10;
}
.tr-explore-search .tr-explore-search-modal.open {
  display: block;
}
.tr-explore-search .tr-explore-search-modal .tr-search-field {
  box-shadow: none;
/*  border-radius: 30px 30px 0 0;*/
}
/*Recently Search Modal*/
.tr-explore-search .tr-recent-searchs-modal {
  display: none;
  border-radius: 0 0 26px 26px;
  box-shadow: inset 0 10px 10px -5px rgba(200, 200, 200, 0.5);
  width: 100%px;
  padding: 16px 0 16px 0;
}
.tr-explore-search .tr-recent-searchs-modal .tr-enable-location {
  background-image: url(../images/icons/location-enable-icon.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: top 0px left 0px;
  font-weight: 600;
  line-height: 32px;
  padding: 0 0 20px 42px;
}
.tr-explore-search .tr-recent-searchs-modal h5 {
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
  padding: 0 16px
}
.tr-explore-search .tr-recent-searchs-modal ul {
  padding: 0 16px
}
.tr-explore-search .tr-recent-searchs-modal ul li {
  border-top: 1px solid #D6D6D6;
  padding: 16px 0;
}
.tr-explore-search .tr-recent-searchs-modal ul li:first-child {
  padding-top: 0;
  border-top-color: transparent;
}
.tr-explore-search .tr-recent-searchs-modal ul li:last-child {
  padding-bottom: 0;
}
.tr-explore-search .tr-recent-searchs-modal .tr-place-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 6px;
}
.tr-explore-search .tr-recent-searchs-modal .tr-place-info:hover{
  background: #F7F7F7;
  border-radius: 8px;
}
.tr-explore-search .tr-recent-searchs-modal .tr-location-icon {
  background-color: rgba(214, 214, 214, 0.3);
  background-image: url(../images/icons/map-pin-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  border-radius: 100px;
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.tr-explore-search .tr-recent-searchs-modal .tr-location-info .tr-name {
  font-size: 14px;
  line-height: 17px;
  padding-bottom: 4px;
}
.tr-explore-search .tr-recent-searchs-modal .tr-location-info .tr-category {
  font-size: 12px;
  line-height: 14px;
  color: #6A6A6A;
}

.tr-explore-filter {
  margin-bottom: 24px;
  padding: 0 14px;
}
.tr-explore-filter .tr-explore-filter-slider {
  display: flex;
  flex-wrap: nowrap;
}
.tr-explore-filter .tr-explore-filter-slider.slick-slider {
  display: block;
}
.tr-explore-filter .tr-explore-filter-slider div {
  flex: none;
  margin-right: 4px;
}
.tr-explore-filter .tr-filter-list label {
  font-weight: 400;
  border: 2px solid #232A2F;
  border-radius: 80px;
  cursor: pointer;
  padding: 3px 12px 4px;
  line-height: 20px;
  width: 100%;
  font-size: 12px !important;
  font-weight: 300;
  color: #6A6A6A !important;
}
.tr-explore-filter .tr-filter-list label:hover {
  background-color: #F0F3F5;
}
.tr-explore-filter .tr-filter-list input {
  display: none;
}
.tr-explore-filter .tr-filter-list input:checked ~ label {
  background-color: #ECF9FB;
  background-image: url(../images/icons/close-icon.svg);
  background-repeat:  no-repeat;
  background-size: 16px;
  background-position: top 5.5px right 10px;
  padding-right: 30px;
  border-color: #6A6A6A !important;
  color: #6A6A6A !important;
  font-weight: 600;
}
.tr-explore-filter .tr-filter-list label.tr-top-attractions {
  border: none;
  background: linear-gradient(135deg, #265D62, #922F9D, #CF5F82, #E48087);
  padding: 2px;
  width: 125px;
  height: 30.2px;
}
.tr-explore-filter .tr-filter-list label.tr-top-attractions span {
  background-color: #FFFFFF;
  border-radius: 20px;
  line-height: 26px;
  display: block;
  text-align: center;
}
.tr-explore-filter .tr-filter-list label.tr-top-attractions:hover span {
  background-color: #F0F3F5;
}
.tr-explore-filter .tr-filter-list input:checked + label.tr-top-attractions {
  background: linear-gradient(135deg, #265D62, #922F9D, #CF5F82, #E48087);
  width: 145px;
  padding-right: 2px;
}
.tr-explore-filter .tr-filter-list input:checked + label.tr-top-attractions span {
  background-color: #ECF9FB;
  background-image: url(../images/icons/close-icon.svg);
  background-repeat:  no-repeat;
  background-size: 16px;
  background-position: top 5.5px right 10px;
  padding-right: 20px;
}

.tr-explore-filter-slider .slick-arrow {
  display: none!important;
}
.tr-explore-filter-slider:hover .slick-arrow {
  display: block!important;
}

/*.tr-explore-listing .tr-category {
  font-size: 12px;
  line-height: 14px;
  color: #6A6A6A;
}*/
.tr-explore-listing .tr-heading-with-distance {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 14px;
  color: #8F8F8F;
}
.tr-explore-listing .tr-distance {
  font-size: 11px;
  font-weight: 400;
}
.tr-explore-listing h3 {
  line-height: 19px;
  width: calc(100% - 60px);
}
.tr-explore-listing h3 a {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0;
}
.tr-explore-listing h3 a:hover {
  border-bottom: 1px solid #000000;
}

.tr-explore-listing .tr-image {
  width: 100%;
  margin: 10px 0 12px;
}
.tr-explore-listing .tr-image .carousel-inner {
  border-radius: 8px;
}
.tr-explore-listing  .carousel-indicators {
  align-items: center;
}
.tr-explore-listing .carousel .carousel-control-next, 
.tr-explore-listing .carousel .carousel-control-prev {
  display: none;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}
.tr-explore-listing .carousel .carousel-control-next-icon, 
.tr-explore-listing .carousel .carousel-control-prev-icon {
  background: #FFFFFF;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 100px;
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: top 5px left 9px;
  width: 24px;
  height: 24px;
}
.tr-explore-listing .carousel:hover .carousel-control-next, 
.tr-explore-listing .carousel:hover .carousel-control-prev {
  display: block;
}
.tr-explore-listing .carousel .carousel-control-prev-icon {
  background-image: url(../images/chevron-down-left-icon.svg);
}
.tr-explore-listing .carousel .carousel-control-next-icon {
  background-image: url(../images/chevron-down-right-icon.svg);
}
.tr-explore-listing .carousel .carousel-indicators [data-bs-target] {
  border: none;
  border-radius: 4px;
  width: 6px;
  height: 6px;
  text-indent: -9999px;
}
.tr-explore-listing .carousel .carousel-indicators [data-bs-target].active {
  width: 8px;
  height: 8px;
}
.tr-explore-listing .carousel .carousel-indicators .slider-count {
  display: none;
}
.tr-explore-listing .tr-type {
  color: #6A6A6A;
}

.tr-museum,
.tr-historical-monument,
.tr-experience,
.tr-knights-bridge,
.tr-market {
  padding-bottom: 24px;
}
.slick-list {
  margin-left: -2px;
}
.slick-slide {
  margin: 0 2px;
}

.tr-explore-listing .tr-details {
  position: relative;
}
.tr-explore-listing .tr-location {
  font-size: 14px;
  line-height: 22px;
  color: #222222;
}
.tr-explore-listing .tr-like-review {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.tr-explore-listing .tr-heart {
  background-color: #28965A;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
.tr-explore-listing .tr-ranting-percent {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 4px;
}
.tr-explore-listing .tr-more-inform ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
}
.tr-explore-listing .tr-more-inform ul li {
  font-weight: 400;
  line-height: 17px;
  color: #222222;
  padding-right: 11px;
  position: relative;
}
.tr-explore-listing .tr-more-inform ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 8px;
  right: 5px;
  border: 1px solid #222222;
}
.tr-explore-listing .tr-more-inform ul li span {
  font-weight: 500;
  color: #049D2D;
  margin-right: 5px;
}

.tr-explore-listing .tr-row {
  display: flex;
}

.tr-explore-listing .tr-tickets {
  color: #232A2F;
  margin-top: 24px;
}
.tr-explore-listing .tr-tickets .slick-list {
  margin-left: -5px;
}
.tr-explore-listing .tr-tickets .slick-slide {
  border: 1px solid #6A6A6A;
  border-radius: 10px;
  background-image: url(../images/ticket.png);
  background-repeat: no-repeat;
  background-size: 59px;
  background-position: center left 10px;
  margin: 0 5px;
  padding: 4px 10px 4px 77px;
}
.tr-museum,
.tr-historical-monument,
.tr-experience,
.tr-knights-bridge,
.tr-market,
.tr-common-marketing {
  padding-bottom: 24px;
}

.tr-explore-listing .tr-anchor-btn.tr-save {
  background-image: url(../images/icons/save-plus-icon.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  border: none;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  position: absolute;
  top: 11px;
  right: 14px;
  transition: all .3s ease;
}
.tr-explore-listing .tr-anchor-btn.tr-save:hover {
  transform: scale(1.2);
  transition: all .3s ease;
}
.tr-explore-listing .slick-slide {
  position: relative;
}
.slick-list {
  margin-left: -2px;
}
.slick-slide {
  margin: 0 2px;
}

.tr-explore-listing .tr-details {
  position: relative;
}
.tr-explore-listing .tr-location {
  font-size: 14px;
  line-height: 22px;
  color: #222222;
}
.tr-explore-listing .tr-like-review {
  display: flex;
  align-items: center;
  position: absolute;
  top: 5px !important;
  right: 0;
}
.tr-explore-listing .tr-heart {
  background-color: #28965A;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
.tr-explore-listing .tr-ranting-percent {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 4px;
}
.tr-explore-listing .tr-more-inform ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
}
.tr-explore-listing .tr-more-inform ul li {
  font-weight: 400;
  line-height: 17px;
  color: #222222;
  padding-right: 11px;
  position: relative;
}
.tr-explore-listing .tr-more-inform ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 8px;
  right: 5px;
  border: 1px solid #222222;
}
.tr-explore-listing .tr-more-inform ul li span {
  font-weight: 500;
  color: #049D2D;
  margin-right: 5px;
}

.tr-explore-listing .tr-row {
  display: flex;
}
.tr-explore-listing .tr-tickets ul li {
  display: inline-block;
  font-size: 10px;
  padding-right: 10px;
  position: relative;
}
.tr-explore-listing .tr-tickets ul li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 8px;
  right: 3px;
  border: 1px solid #222222;
}
.tr-explore-listing .tr-tickets .tr-rating {
  background-image: url(../images/icons/heart-blank-black-icon.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: top 0.5px left 0;
  padding-left: 15px;
}
.tr-explore-listing .tr-tickets h5 {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}
.tr-explore-listing .tr-tickets span {
  font-size: 10px;
  line-height: 17px;
}

.tr-historical-monument img {
  border-radius: 8px;
}

.tr-experience-slider {
  border-radius: 8px;
  overflow: hidden;
  margin: 10px 0 12px;
}

.tr-knights-bridge {
  position: relative;
}
.tr-knights-bridge img {
  border-radius: 8px;
}
.tr-knights-bridge .tr-details {
  background-color: #FFFFFF;
  border-radius: 8px;
  width: calc(100% - 24px);
  padding: 10px;
  position: absolute;
  bottom: 48px;
  left: 12px;
}
.tr-knights-bridge .tr-details .tr-like-review {
  top: 10px;
  right: 10px;
}

.tr-restaurant {
  padding-bottom: 30px;
}
.tr-restaurant .tr-image {
  width: 108px;
  margin: 10px 15px 0 0;
}
.tr-restaurant .tr-image img {
  border-radius: 8px;
}
.tr-restaurant .tr-restaurant-details {
  width: calc(100% - 123px);
  margin-top: 10px;
}

.tr-restaurant .tr-delivery-type ul,
.tr-restaurant .tr-food-type ul  {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
}
.tr-restaurant .tr-more-inform ul li,
.tr-restaurant .tr-delivery-type ul li,
.tr-restaurant .tr-food-type ul li {
  font-size: 12px;
  line-height: 17px;
  color: #222222;
  position: relative;
}
.tr-restaurant .tr-delivery-type ul li {
  background-repeat: no-repeat;
  background-position: top 1px left 0px;
  background-size: 16px;
  padding: 0 10px 0 20px;
}
.tr-restaurant .tr-delivery-type ul li.tr-yes {
  background-image: url(../images/icons/check-icon.svg);
}
.tr-restaurant .tr-delivery-type ul li.tr-no {
  background-image: url(../images/icons/close-icon.svg);
}
.tr-restaurant .tr-food-type ul li:not(:first-child) {
  padding-left: 7px;
}
.tr-restaurant .tr-food-type ul li:not(:first-child):after {
  content: ",";
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.tr-market .tr-market-slider {
  margin: 10px 0 12px;
}
.tr-market .tr-store {
  position: relative;
}
.tr-market .tr-store img {
  border-radius: 8px;
}
.tr-market .tr-store-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
}
.tr-market .tr-store-details .tr-heart {
  background-color: transparent;
  border-radius: 0;
  width: 15px;
  height: 15px;
  margin-top: -7px;
}
.tr-market .tr-store-details .tr-ranting-percent {
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  color: #FFFFFF;
}
.tr-market .tr-store-details .tr-like-review {
  position: static;
}
.tr-market .tr-store-details .tr-store-type {
  font-size: 10px;
  font-weight: 400;
  line-height: 11px;
  color: #FFFFFF;
}
.tr-market .tr-store-details .tr-store-name {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}
.tr-market .tr-store-details .tr-store-name a {
  color: #ffffff;
}

.tr-explore-listing .tr-load-more {
  background-color: #F3F4F6;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 30px;
  padding: 5px;
}

.tr-explore-listing .tr-explore-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 3000px;
  z-index: 9;
}

.tr-explore-listing .tr-explore-right-section {
  width: calc(100% - 520px);
  height: 100vh;
  padding-top: 35px;
  position: relative;
  transition: all .3s ease;
}
.tr-explore-listing .tr-map-section {
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative; /* Ensure relative positioning for child elements */
}

.tr-explore-listing .tr-map-section .tr-map-tooltip {
  background-color: #FFFFFF;
  border-radius: 10px;
  width: 295px;
  position: absolute;
  top: 150px;
  right: 150px;
  padding: 10px;
}

.tr-explore-listing .tr-map-section .tr-map-tooltip .tr-historical-monument {
  padding-bottom: 0;
}

.tr-explore-listing .tr-map-section .tr-map-tooltip button.tr-save {
  top: 0;
}

.tr-explore-listing .tr-map-section button.btn-close {
  display: none; /* Hidden by default */
  background-color: #FFFFFF;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 16px; /* Adjust distance from top */
  right: 16px; /* Adjust distance from right */
  opacity: 1;
  z-index: 1000; /* Ensure the button is above other elements */
  border: 1px solid #ccc; /* Optional border for better visibility */
  cursor: pointer; /* Make it clear the button is clickable */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.tr-explore-listing .tr-map-section button.btn-close::before {
  content: '×'; /* Add a close icon */
  font-size: 18px;
  color: #000;
  line-height: 28px; /* Center the '×' inside the button */
  text-align: center;
  display: block;
}

.tr-explore-listing .tr-map-and-filter button.map {
  border-radius: 8px;
}

.tr-explore-listing .tr-map-and-filter button.map:after {
  display: none;
}

.tr-explore-listing #map1 {
  width: 100%;
  height: 100%;
}

/* Show the button on mobile view */
@media (max-width: 768px) {
  .tr-explore-listing .tr-map-section button.btn-close {
    display: block; /* Show the button on mobile view */
  }
}

/******* Explore Listing Page - End *******/

/******* Explore Details Page - Start *******/
.tr-explore-details .tr-mobile {
  display: none;
}
.tr-explore-details .tr-explore-information {
  display: flex;
  margin-top: 15px;
}
.tr-explore-details .tr-explore-information .tr-left-col {
  order: 1;
}
.tr-explore-details .tr-explore-information .tr-right-col {
  order: 2;
}
.tr-explore-details .tr-hotel-informations .tr-place-name {
  display: flex;
  align-items: center;
}
.tr-explore-details .tr-hotel-informations .tr-place-name span {
  background-color: #F2F2F2;
  border-radius: 4px;
  font-weight: 700;
  line-height: 21px;
  min-width: 76px;
  margin-left: 10px;
  padding: 2px;
  text-align: center;
}

.tr-explore-details .tr-hotel-certificated {
  margin-top: 36px;
}

.tr-explore-details .tr-hotel-certificated .tr-families-favourite {
  display: flex;
  padding: 19.2px 20px;
}
.tr-explore-details .tr-hotel-certificated .tr-families-favourite div {
  width: 137px;
  position: relative;
}
.tr-explore-details  .tr-hotel-certificated .tr-families-favourite span {
  top: 6px;
}
.tr-explore-details .tr-hotel-certificated .tr-families-favourite p {
  width: calc(100% - 137px);
  padding: 0 0 0 3px;
  text-align: left;
}

.tr-common-marketing .tr-common-slider {
  margin: 10px 0 12px;
}
.tr-common-marketing .slick-list {
  margin: 0 -6.5px 0 -6.5px;
}
.tr-common-marketing .slick-slide {
  margin: 0 7.5px;
}
.tr-common-marketing .tr-slider img {
  border-radius: 8px;
}
.tr-common-marketing .tr-slider-details {
  padding: 12px 7px 0 7px;
}
.tr-common-marketing .tr-slider-details .tr-category-type {
  font-size: 12px;
  color: #6A6A6A;
}
.tr-common-marketing .tr-slider-details .tr-title-name {
  width: 100%;
  margin-bottom: 4px;
  line-height: 16px;
}
.tr-common-marketing .tr-slider-details button.tr-share {
  background-image: url(../images/icons/save-square-icon.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: center;
  border: none;
  width: 11px;
  line-height: 12px;
  text-indent: -9999px;
}
.tr-common-marketing .tr-slider-details .tr-heart {
  background-color: transparent;
  width: auto;
  height: auto;
  margin-top: -3px;
}
.tr-common-marketing .tr-slider-details .tr-ranting-percent,
.tr-common-marketing .tr-slider-details .tr-per-person {
  color: #222222;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
}
.tr-common-marketing .tr-slider-details .tr-per-person {
  padding-left: 16px;
  position: relative;
}
.tr-common-marketing .tr-slider-details .tr-per-person:before {
  content: ".";
  position: absolute;
  top: -5.5px;
  left: 6px;
  font-size: 19px;
}
.tr-common-marketing .tr-slider-details .tr-like-review {
  position: static;
  line-height: 15px;
}
.tr-common-marketing .tr-food-lists {
  display: flex;
  gap: 5px;
  color: #6A6A6A;
  font-size: 11px;
  margin-top: 4px;
}
.tr-common-marketing .slick-slider .slick-arrow {
  margin-top: -68px;
}

.tr-explore-details .tr-about-section {
  margin: 36px 0 0;
}
.tr-explore-details .tr-overview-section {
  padding: 0;
}
.tr-explore-details .tr-overview-section .tr-overview-details {
  margin: 0;
}
.tr-explore-details .tr-overview-section .tr-overview-details ul li {
  position: relative;
}
.tr-explore-details .tr-overview-section .tr-overview-details ul li .tr-rating {
  display: flex;
}
.tr-show-other-days {
  margin-left: 43px;
}
.tr-show-other-days .tr-show-other-days-btn {
  font-size: 12px;
  line-height: 14px;
  color: #222222;
  border-color: #222222;
}
.tr-open-circle,
.tr-closed-circle {
  background-color: #00C308;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  width: 9px;
  height: 9px;
}
.tr-closed-circle {
  background-color: #ff0000;
}
.tr-explore-details .tr-overview-section .tr-overview-details ul li button.tr-timing-edit-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: none;
}

.tr-improve-lisitng {
  margin: 30px 0 52px;
}
.tr-improve-lisitng button.tr-anchor-btn {
  background-image: url(../images/icons/edit-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 19px;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  border: none;
  padding-left: 33px;
}

.tr-explore-details .tr-overview-section .tr-overview-content {
  margin-top: 24px;
}
.tr-explore-details .tr-about .tr-overview-content {
  margin-top: 24px;
}
.tr-explore-details .tr-about .tr-overview-content p.tr-content {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  overflow: hidden;
  white-space: pre-wrap;
}
.tr-explore-details .tr-overview-content button.tr-anchor-btn {
  margin-top: 15px;
}
.tr-highlighted-reviews .tr-customer-review {
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}
.tr-highlighted-reviews .tr-customer-review:not(:first-child) {
  margin-top: 30px;
}
.tr-highlighted-reviews .tr-customer-review p {
  padding: 10px 0 0;
}

.tr-explore-details .tr-recommended-title {
  background-repeat: no-repeat;
  background-position: top 2px left 0px;
  background-size: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  padding-left: 26px;
}
.tr-explore-details .tr-recommended-title.tr-heart-green {
  background-image: url(../images/icons/heart-circle-green-icon.svg);
  color: #28965A;
}
.tr-explore-details .tr-recommended-title.tr-heart-red {
  background-image: url(../images/icons/heart-circle-red-icon.svg);
  color: #DD5A5A;
}
.tr-show-all-review {
  margin-top: 24px;
}
.tr-show-all-review button {
  background-color: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 23.4px;
  min-width: 264px;
  padding: 7px 20px;
  transition: all .3s ease;
}
.tr-show-all-review button:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.tr-recommended-write-review {
  background-color: #EFF5F9;
  border-radius: 8px;
  margin-top: 30px;
  padding: 20px;
}
.tr-recommended-write-review h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}
.tr-recommended-write-review .tr-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
}
.tr-recommended-write-review .tr-details p {
  font-size: 16px;
  line-height: 24px;
  color: #222222;
}
.tr-recommended-actions {
  display: flex;
  gap: 13px;
}
.tr-recommended-actions input[type="radio"] {
  display: none;
}
.tr-recommended-actions span {
  display: block;
  background-color: #D8E3EB;
  border-radius: 5px;
  color: #6F6F6F;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  padding: 3px 0;
  width: 74px;
  text-align: center;
}
.tr-recommended-actions input[type="radio"]:checked + span {
  background-color: #28965A;
  color: #FFFFFF;
}

.tr-about-founder {
  margin-top: 52px;
}
.tr-founder-details {
  display: flex;
  margin-top: 24px;
}
.tr-founder-details .tr-image {
  width: 177px;
}
.tr-founder-details .tr-image img {
  border-radius: 8px;
}
.tr-founder-details .tr-details {
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  width: calc(100% - 177px);
  padding-left: 30px;
}

.tr-neighborhood {
  margin-top: 20px;
}
.tr-explore-details .tr-nearby-hotel {
  margin-bottom: 52px;
}
.tr-explore-details .tr-reviews-graph {
  justify-content: space-between;
}
.tr-explore-details .tr-reviews-graph-details {
  width: 205px;
  margin-right: 0;
}
.tr-explore-details .tr-reviews-graph-details h4 {
  background-image: url(../images/icons/verified-orange-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 24px;
  padding-left: 32px;
}
.tr-explore-details .tr-reviews-graph-details .tr-no-review {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: #222222;
  margin-bottom: 5px;
}
.tr-explore-details .tr-rating-types {
  width: 420px;
}
.tr-explore-details .tr-rating-type .tr-title {
  min-width: 140px;
}
.tr-explore-details .tr-rating-type .progress {
  min-width: calc(100% - 181px);
}
.tr-explore-details .tr-customer-review .tr-customer-details .tr-customer-name {
  display: flex;
}
.tr-explore-details .tr-customer-review .tr-customer-details .tr-customer-detail .tr-recommended-title {
   margin-left: 25px;
}
.tr-explore-details .tr-recommended-title .tr-time {
  font-size: 14px;
  font-weight: 400;
  color: #6A6A6A;
  margin-left: 5px;
}


.tr-explore-galleries {
  margin-top: 20px;
}
.tr-explore-galleries img {
  cursor: pointer;
}
.tr-explore-galleries .tr-thumb-images {
  position: relative;
}
.tr-explore-galleries .tr-thumb-images ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.tr-explore-galleries .tr-thumb-images ul li {
  flex-basis: calc(20.26% - 8px);
  margin-right: 8px;
  margin-bottom: 8px;
}
.tr-explore-galleries .tr-thumb-images ul li img {
  border-radius: 8px;
}
.tr-explore-galleries .tr-thumb-images ul li:first-child {
  flex-basis: 100%;
  margin-right: 0;
}
.tr-explore-galleries .tr-thumb-images ul li:first-child img {
  border-radius: 12px;
}
.tr-explore-galleries .tr-thumb-images ul li:last-child {
  margin-right: 0;
}

.tr-explore-galleries .tr-show-all-photos {
  padding: 6px 2px;
  position: absolute;
  width: 29px;
  height: 29px;
  right: 45px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #000000;
  transform: translateY(-50%);
  text-align: center;
  cursor: pointer;
}

.tr-admission-tickets {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  margin-top: 22px;
  padding: 19px 40px;
  position: relative;
}
.tr-admission-tickets h5 {
  background-image: url(../images/icons/ph-ticket-light-icon.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 28px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 20px;
  padding-left: 36px;
}
.tr-admission-tickets .tr-details {
  display: flex;
  justify-content: space-between;
  background-color: #ECF9FB;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  padding: 15px 16px;
}
.tr-admission-tickets .tr-days {
  line-height: 19.4px;
}
.tr-admission-tickets .tr-price {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin-top: 10px;
}
.tr-admission-tickets button.tr-btn {
  background-image: url(../images/icons/arrow-right-white-icon.svg);
  background-repeat: no-repeat;
  background-position: top 15px right 22px;
  background-size: 6px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  min-width: 149px;
  padding: 11px 22px;
  text-align: left;
}
.tr-more-packages {
  margin-top: 12px;
  text-align: right;
}
.tr-more-packages button.tr-anchor-btn{
  background-image: url(../images/chevron-down.png);
  background-repeat: no-repeat;
  background-position: top 1px right 3px;
  background-size: 18px;
  border: none;
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  color: #131313;
  padding-right: 30px;
}

.tr-admission-tickets .tr-more-packages-modal {
  display: none;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 33.4px rgba(156, 156, 156, 0.12), 0px 4px 33.4px rgba(156, 156, 156, 0.12);
  border: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 10px;
  z-index: 1;
}
.tr-admission-tickets .tr-more-packages-modal.open {
  display: block;
}
.tr-admission-tickets .tr-more-packages-modal .tr-details {
  background-color: #FFFFFF;
}
.tr-admission-tickets .tr-more-packages-modal .tr-details:not(:first-child) {
  margin-top: 20px;
}

/*When No Data*/
.tr-explore-details [data-type="no-data"]  {
  display: none;
}
.tr-no-data-text {
  background-color: #E6E6E6;
  border-radius: 8px;
  height: 4px;
}
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-40 {
  width: 40%;
}
.w-50 {
  width: 50%;
}
.w-60 {
  width: 60%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-100 {
  width: 100%;
}

.h-10 {
  height: 10px;
}
.h-14 {
  height: 14px;
}
.h-15 {
  height: 15px;
}
.h-20 {
  height: 20px;
}
.h-24 {
  height: 25px;
}
.h-230 {
  height: 230px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-41 {
  margin-top: 41px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-24 {
  margin-bottom: 24px;
}
.ml-20 {
  margin-left: 20px;
}
.tr-no-data-dark-gray {
  background-color: #BDBDBD;
}
.tr-no-data-red {
  background-color: #DD5A5A;
}
.tr-no-data-green {
  background-color: #09707A;
}
.tr-no-highlighted-review-listing .tr-no-review-list {
  display: flex; 
  align-items: center;
}
.tr-no-highlighted-review-listing .tr-no-review-list .tr-heart {
  width: 40px;
}
.tr-no-highlighted-review-listing .tr-no-review-list .tr-details {
  width: calc(100% - 40px);
  padding-left: 24px;
}

.tr-no-review-list {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  margin-bottom: 48px;
  padding: 21px 22px;
}


#timingModal .modal-dialog {
  position: absolute;
  right: 0;
  margin-top: 0;
  min-width: 566px;
}
#timingModal .modal-content {
  border-radius: 0;
  border: 0;
  min-height: 100vh;
  padding: 24px 40px;
}
#timingModal .modal-header {
  padding: 0 0 24px 0;
}
#timingModal h5 {
  background-image: url(../images/icons/clock-icon.svg);
  background-repeat: no-repeat;
  background-position: top 1px left 0px;
  background-size: 21px;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding-left: 36px;
}
#timingModal .tr-day-time {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 21px;
  margin-top: 24px;
  padding: 8px 10px;
}
#timingModal .tr-day-time:nth-of-type(1) {
  background-color: #ECF9FB;
  border-radius: 8px;
}
#timingModal .tr-timing {
  text-align: right;
}
#timingModal .tr-closed {
  color: #B02222;
}


#timingChangeModal .modal-dialog {
  max-width: 662px;
}
#timingChangeModal .modal-content {
  border: 0;
  padding: 20px 60px;
}
#timingChangeModal .modal-header {
  justify-content: center;
  margin-bottom: 34px;
  padding: 34px 0;
}
#timingChangeModal .modal-header h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
#timingChangeModal button.btn-close {
  position: absolute;
  top: 62px;
  left: 60px;
  background-color: transparent;
  background-image: url(../images/icons/close-circle-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  opacity: 1;
}
#timingChangeModal .tr-day-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 30px;
}
#timingChangeModal button.tr-anchor-btn {
  background-color: #EFEDED;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-left: 18px;
  transition: all .3s ease;
}
#timingChangeModal button.tr-anchor-btn:hover {
  background-color: #D3D3D3;
}



#timingEditModal .modal-dialog {
  max-width: 662px;
}
#timingEditModal .modal-content {
  border: 0;
  padding: 20px 60px;
}
#timingEditModal .modal-header {
  justify-content: center;
  margin-bottom: 34px;
  padding: 34px 0;
  position: relative;
}
#timingEditModal .modal-header h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
#timingEditModal button.tr-back-btn {
  background-color: #FFFFFF;
  background-image: url(../images/icons/long-arrow-left-black-icon.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  border: none;
  box-shadow: 0px 4px 6.4px rgba(156, 156, 156, 0.22);
  border-radius: 100px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 32px;
  left: 0;
  opacity: 1;
  text-indent: -9999px;
}
#timingEditModal button.btn-close {
  position: absolute;
  top: 62px;
  left: 60px;
  background-color: transparent;
  background-image: url(../images/icons/close-circle-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  opacity: 1;
}
#timingEditModal .tr-weekday {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#timingEditModal .tr-weekday .tr-day {
  width: 50px;
  height: 50px;
  text-align: center;
}
#timingEditModal .tr-weekday .tr-day input[type="checkbox"] {
  display: none;
}
#timingEditModal .tr-weekday .tr-day span {
  background-color: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  font-size: 18px;
  line-height: 50px;
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
#timingEditModal .tr-weekday .tr-day span:hover {
  background-color: #E4E4E4;
}
#timingEditModal .tr-weekday .tr-day input[type="checkbox"]:checked + span {
  background-color: #D3D3D3;
}
#timingEditModal .tr-field {
  margin: 30px 0 54px;
}
#timingEditModal .tr-field label {
  font-size: 18px;
  line-height: 19px;
  color: #222222;
  margin-right: 60px;
}
#timingEditModal .tr-timing-field {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 45px;
  margin-bottom: 20px;
}
#timingEditModal .tr-timing-field span {
  font-size: 16px;
  font-weight: 600;
}
#timingEditModal .tr-timing-field input[type="text"] {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 18px;
  color: #222222;
  width: 100%;
  height: 39px;
  margin-top: 12px;
  padding: 10px 18px;
}
#timingEditModal .tr-timing-field input[type="text"]:focus {
  box-shadow: 1px 0px 14px rgba(156, 156, 156, 0.8);
  outline: none;
}
#timingEditModal .tr-remove-day button.tr-anchor-btn {
  border: none;
}
#timingEditModal button.tr-add-more-hours {
  background-image: url(../images/icons/plus-circle-icon.svg);
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: top 0px left 0px;
  background-size: 28px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #222222;
  border-color: #222222;
  width: 205px;
  padding-left: 41px;
  text-align: left;
}
#timingEditModal button.tr-add-more-hours span {
  border-bottom: 1px solid #000000;
}
#timingEditModal button.tr-add-more-hours:hover span {
  border-color: transparent;
}
#timingEditModal .tr-actions {
  margin-top: 54px;
  text-align: right;
}
#timingEditModal .tr-actions button.tr-anchor-btn {
  color: #000000;
  border-bottom: 1px solid #000000;
  margin-right: 20px;
  transition: all .3s ease;
}
#timingEditModal .tr-actions button.tr-anchor-btn:hover {
  border-color: transparent;
}
#timingEditModal .tr-actions button.tr-btn {
  padding: 12px 47px;
  width: 134px;
}


#improveListingModal .modal-dialog {
  max-width: 513px;
}
#improveListingModal .modal-content {
  border: 0;
  padding: 20px 60px;
}
#improveListingModal .modal-header {
  justify-content: center;
  margin-bottom: 34px;
  padding: 34px 0;
}
#improveListingModal .modal-header h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
#improveListingModal .tr-place-details {
  display: flex;
  align-items: center;
}
#improveListingModal .tr-place-details .tr-image {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 8px;
}
#improveListingModal .tr-place-details .tr-image img {
  object-fit: cover;
  transform: scale(1.7);
}
#improveListingModal .tr-place-details .tr-details {
  padding-left: 16px;
}
#improveListingModal .tr-name-and-address {
  display: flex;
  margin-bottom: 4px;
}
#improveListingModal .tr-name-and-address .tr-name {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}
#improveListingModal .tr-name-and-address .tr-address {
  margin-left: 8px;
}
#improveListingModal .tr-like-review {
  display: flex;
  align-items: center;
}
#improveListingModal .tr-heart {
  background-color: #28965A;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
}
#improveListingModal .tr-ranting-percent {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  margin-left: 8px;
}
#improveListingModal .tr-excellent {
  font-size: 16px;
  color: #28965A;
  padding-left: 8px;
}
#improveListingModal .tr-field-row,
#improveListingModal .tr-review-image {
  margin-top: 20px;
}
#improveListingModal label {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  margin-bottom: 12px;
}
#improveListingModal textarea {
  min-height: 90px;
}
#improveListingModal .form-control {
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  height: 39px;
  padding: 10px 18px;
}
#improveListingModal .form-control:focus {
  box-shadow: 1px 0px 14px rgba(156, 156, 156, 0.8);
  outline: none;
}
#improveListingModal .tr-timing-field {
  background-image: url(../images/icons/clock-icon.svg);
  background-repeat: no-repeat;
  background-position: top 10px right 16px;
  background-size: 16px;
}
#improveListingModal .tr-actions {
  margin: 20px 0 60px;
  text-align: center;
}
#improveListingModal label.tr-check-box {
  margin-bottom: 0;
}
#improveListingModal button.tr-btn {
  border-radius: 8px;
  padding: 12px;
}
#improveListingModal button.tr-anchor-btn {
  color: #000000;
  border-bottom: 1px solid #000000;
  margin-top: 20px;
  transition: all .3s ease;
}
#improveListingModal button.tr-anchor-btn:hover {
  border-color: transparent;
}
/******* Explore Details Page - End *******/


/******* Single Page - Start *******/
.tr-single-page {
  margin-top: 35px;
}
.tr-single-page h1,
.tr-single-page h2,
.tr-single-page h3 {
  font-weight: 600;
  line-height: 28px;
  color: #222222;
}
.tr-single-page h1 {
  font-size: 26px;
  margin-bottom: 20px;
}
.tr-single-page h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.tr-single-page h3 {
  font-size: 18px;
}
.tr-single-page ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.tr-single-page ul li {
  list-style: disc;
}
.tr-single-page p,
.tr-single-page ul li,
.tr-single-page address {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #222222;
}
.tr-single-page p,
.tr-single-page address {
  margin-bottom: 20px;
}
/******* Single Page - End *******/

/******* Home Page - End *******/
.tr-search-home-page {
  padding: 0;
}
.tr-search-home-page .tr-nav-tabs {
  display: none;
  justify-content: center;
  margin: 10px 0;
}
.tr-search-home-page .tr-nav-tabs.show {
  display: flex;
  border-bottom: 1px solid #D6D6D6;
  margin-top: 2px;
}
.tr-search-home-page .tr-nav-tabs > div {
  border-bottom: 2px solid transparent;
  position: relative;
}
.tr-search-home-page .tr-nav-tabs > div:not(:first-child):after {
  content: "";
  position: absolute;
  top: 20px;
  width: 1px;
  height: 18px;
  background-color: #d6d6d6;
}
.tr-search-home-page .tr-nav-tabs > div:hover {
  border-color: #000000;
}
.tr-search-home-page .tr-nav-tabs > div span {
  display: block;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #131313;
  cursor: pointer;
  padding: 18px 20px;
}
.tr-search-home-page .tr-nav-tabs > div span img {
  margin: -3px 4px 0 0;
}
.tr-search-home-page .tr-nav-tabs > div.active {
  border-color: #FF4B01;
}
.tr-search-home-page .tr-nav-tabs > div.active span {
  font-weight: 700;
}
.tr-search-home-page .tr-nav-tabs > div.active span:hover {
  background-color: transparent;
}
.tr-search-home-page .tr-nav-tabs.show.non-clickable div {
  pointer-events: none;
}
.tr-search-home-page .tr-mobile {
  display: none;
}
.tr-search-home-page .tr-find-hotels {
  background-color: transparent;
  padding: 24px 60px 27px;
}
.tr-search-home-page .tr-find-hotels form {
  background: transparent;
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 0;
}
.tr-search-home-page .tr-find-hotels form .tr-form-section {
  display: block;
}
.tr-search-home-page .tr-form-btn {
  max-width: 280px;
  margin: 0 auto;
}
.tr-search-home-page .tr-find-hotels .tr-btn {
  background-image: none;
  border-radius: 12px;
  width: 100%;
  height: 51px;
  margin-top: 24px;
  text-indent: 0;
}
.tr-search-home-page .tr-find-hotels form.tr-explore-form .tr-form-where {
  padding-right: 0;
}
.tr-search-home-page .tr-find-hotels .tr-form-booking-date:after {
  display: none;
}
.tr-search-home-page .tr-find-hotels form.tr-explore-form input[type="text"] {
  width: 100%;
}
.tr-search-home-page .tr-find-hotels input[type="text"].is-focus {
  box-shadow: none;
}
.tr-search-home-page.tr-search-hotel .tr-explore-form .tr-recent-searchs-modal {
  width: 100%;
}
.tr-search-home-page .tr-date-section .tr-add-edit-guest-count {
  border: none;
  padding: 0;
}
.tr-search-home-page .tr-find-hotels .tr-guests-modal {
  box-shadow: none;
  width: 100%;
  position: static;
}
.tr-partners-home-section img {
  mix-blend-mode: normal;
}

/* Popular Destination */
.tr-popular-destination {
  padding: 52px 0 17px;
}
.tr-popular-destination-lists {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 16px;
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tr-popular-destination-lists .tr-popular-destination-list {
  width: 316px;
  padding: 0 13px;
  position: relative;
}
.tr-popular-destination-list .tr-destination-img {
  border-radius: 20px;
  overflow: hidden;
}
.tr-popular-destination-list .tr-destination-img img {
  transition: all .5s ease;
}
.tr-popular-destination-lists .tr-popular-destination-list:hover img {
  transform: scale(1.1);
  transition: all .5s ease;
}
.tr-popular-destination-list .tr-destination-name {
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  background: linear-gradient(0deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
  border-radius: 0px 0px 20px 20px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 19px;
  padding: 74px 30px 28px;
}
/******* Home Page - End *******/

/*07/04/2025*/
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  background-color: transparent !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #E5E7EB;
  padding: 0 16px !important;
  justify-content: space-between;
}
.tab-btn {
  background-color:transparent !important;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px !important;
  padding: 9px 0px !important;
  transition: background-color 0.3s;
  color: #6A6A6A;
  flex: inherit !important;
  font-weight: 400;
  position: relative;
}
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF4B01;
  border-radius: 1px;
}
.tab-btn:hover {
  background-color: transparent !important;
}
.tab-btn.active {
  background-color: #ffffff;
  box-shadow:none !important;
  color: #222222 !important;
  font-weight: 600;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}   

.tr-museum .tr-heading-with-distance .tr-category {
  position: relative;
  padding-left: 8px;
}
.tr-museum .tr-heading-with-distance .tr-category:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  border-left: 2px solid #FF4B01;
}
.tr-common-listing {
  /* display: flex; */ /* Replaced by column layout */
  /* flex-wrap: wrap; */ /* Replaced by column layout */
  /* gap: 15px; */ /* Replaced by column-gap and item margin-bottom */
  column-count: 2; /* Adjust number of columns as desired (e.g., 2, 3) */
  column-gap: 5px; /* Space between columns */
  padding-bottom: 24px; /* Retain existing bottom padding */
}
.tr-common-listing > div {
  /* width: calc(50% - 7.5px); */ /* Replaced by column layout */
  display: inline-block; /* Make items flow correctly in columns */
  width: 100%;          /* Each item takes full width of its column */
  break-inside: avoid-column; /* Attempt to keep items from splitting across columns */
  background-color: #ffffff; /* Card background */
  border-radius: 12px;      /* Rounded corners for the card */
  overflow: hidden;         /* Ensures content respects border-radius, e.g., if an image inside tries to overflow */
}
.tr-common-listing img {
  border-radius: 0px;
}
.tr-common-listing .tr-list-details {
  padding-top: 5px;
  position: relative;
}
.tr-common-listing .tr-list-details .tr-category-type {
  font-size: 12px;
  color: #6A6A6A;
  position: relative;
  padding-left: 8px;
}
.tr-common-listing .tr-list-details .tr-category-type:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  height: 12px;
  border-left: 2px solid #28965A;
}
.tr-common-listing .tr-list-details .tr-like-review {
  top: 12px;
}
.tr-common-listing .tr-list-details .tr-heart {
  background-color: transparent;
  width: auto;
  height: auto;
  border-radius: 50%;
  margin-top: -3px;
  text-align: center;
}
.tr-common-listing .tr-list-details .tr-ranting-percent {
  color: #222222;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  margin-left: 4px;
}
.tr-common-listing .tr-list-details h3 {
  width: 100%;
}
.tr-common-listing .tr-list-details button.tr-share {
  background-image: url(../images/icons/save-square-icon.svg);
  background-repeat: no-repeat;
  background-size: 11px;
  background-position: center;
  border: none;
  width: 11px;
  line-height: 12px;
  text-indent: -9999px;
}
/* Styling for media containers in the common listing */
.tr-common-listing .image-container.image-container-default {
  height: 300px; /* Standard height for images */
}

.tr-common-listing .image-container.image-container-video {
  height: 450px; /* Taller height for videos */
}

.tr-common-listing .image-container {
  position: relative; /* For absolutely positioned child elements like carousel controls */
  display: block;
  width: 100%;
  /* height is now dynamic based on content type below, removing fixed height: 316px; */
  border-radius: 12px; /* Rounded corners for the container */
  overflow: hidden; /* Ensures content (img/video) respects the container's border-radius */
  background-color: #f0f0f0; /* Light placeholder background during image load */
}

.tr-common-listing .image-container.image-media {
  height: 280px; /* Standard height for images */
}

.tr-common-listing .image-container.video-media {
  height: 360px; /* Taller height for videos */
}

.tr-common-listing .image-container img,
.tr-common-listing .image-container .carousel-video {
  display: block;
  width: 100%;
  height: 100%; /* Fill the .image-container */
  object-fit: cover; /* Scales while maintaining aspect ratio, crops if necessary */
  border-radius: 12px; /* Apply rounding to media elements themselves */
  border: none; /* Explicitly remove any default browser borders */
}

/* General .carousel-video styles - retained as a fallback if used outside .image-container */
.carousel-video {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* CSS for title text truncation in tr-common-listing (Existing styles preserved) */
.tr-common-listing .tr-list-details h3,
.tr-common-listing .tr-title-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tr-common-listing .tr-list-details h3 a,
.tr-common-listing .tr-title-name a {
  display: inline-block;
  max-width: calc(100% - 60px); /* Leave space for the share button */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.tr-common-listing .tr-share {
  flex-shrink: 0;
  margin-left: 0 !important;
}

/* Mobile responsiveness for title truncation (Existing styles preserved) */
@media (max-width: 768px) {
  .tr-common-listing .tr-list-details h3 a,
  .tr-common-listing .tr-title-name a {
    max-width: calc(100% - 50px); /* Slightly less space on mobile */
  }
}

/* Responsive adjustments for common listing media containers */
@media (max-width: 767px) {
  .tr-common-listing .image-container {
    height: 250px; /* Shorter height for media on smaller screens */
  }

}

/* Obsolete .tr-museum media styles removed as listings are consolidated */

.tr-hotel-detail-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tr-hotel-detail-link span {
    color: inherit;
}
@media (max-width: 768px) { /* Apply styles only for mobile screens */
    .tr-breadcrumb-section {
        display: flex;
        flex-wrap: nowrap;  /* Prevent wrapping */
        overflow-x: auto;  /* Enable horizontal scrolling if necessary */
        white-space: nowrap;  /* Prevent text from breaking into multiple lines */
        align-items: center;
        scrollbar-width: none;  /* Hide scrollbar for a cleaner look */
    }

    .tr-breadcrumb {
        display: flex;
        flex-wrap: nowrap;  /* Ensure everything stays in one row */
        overflow-x: auto;  /* Allow scrolling if necessary */
        list-style: none;
        padding: 0;
        margin: 0;
        white-space: nowrap;  /* Prevent wrapping */
    }
    
    /* Add space between hotels on withoutdate pages for mobile view */
    .tr-listing-without-dates-1 .tr-hotel-deatils {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Fix order of elements on mobile view for withoutdate pages */
    .tr-listing-without-dates-1 .tr-hotel-deatil {
        display: flex;
        flex-direction: column;
    }
    
    .tr-listing-without-dates-1 .tr-hotel-deatil .tr-heading-with-rating {
        order: 1;
    }
    
    .tr-listing-without-dates-1 .tr-hotel-deatil .tr-hotel-location {
        order: 2;
    }
    
    .tr-listing-without-dates-1 .tr-hotel-deatil .tr-like-review {
        order: 3;
    }
    
    .tr-listing-without-dates-1 .tr-hotel-deatil .accordion {
        order: 4;
    }
    
    .tr-listing-without-dates-1 .tr-hotel-deatil .tr-view-availability {
        order: 5;
    }
}

.tr-more-facilities .short-description-content {
    text-align: justify; /* Justifies the text alignment */
    max-height: 92px;
    overflow: hidden;
    position: relative;
    line-height: 1.5; 
}

.tr-more-facilities .short-description-content.show-more {
    max-height: none; /* Shows full content when toggled */
}

.tr-anchor-btn.toggle-list {
    display: block; /* Ensures the button is visible */
    margin-top: 10px;
}
/* Transition for smoother expansion */
.tr-more-facilities.expanded .paragraph-content {
    max-height: none; /* Remove height restriction when expanded */
}

/* "Read More" button styling */
/* Force visibility for troubleshooting */
.custom-read-more {
    font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #FF4B01;
  border: none;
  border-bottom: 1px solid #FF4B01;
  background: transparent;
}


/* Hide "Read More" button when content is fully expanded */
.tr-more-facilities.expanded .custom-read-more {
    display: none;
}
.tr-breadcrumb-section {
    display: block !important;
}

/* Hotel Detail Page Specific Styles */
#map1 {
    width: 100%;
    height: 500px;
    position: relative;
}

/* Styling for white streets, green parks, and blue rivers overlay */
.street-overlay {
    color: white;
    weight: 2;
    opacity: 1;
}

.park-overlay {
    color: green;
    weight: 2;
    fillColor: green;
    fillOpacity: 0.6;
}

.river-overlay {
    color: blue;
    weight: 2;
    opacity: 1;
}

.tr-things-know .Icon {
    width: 1em;
    height: 1em;
}

#grey-overlay {
    filter: grayscale(100%);
}

.tr-overview-section .tr-overview-content button.tr-anchor-btn {
    margin-top: 15px;
}

button.tr-anchor-btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    color: #FF4B01;
    border: none;
    border-bottom: 1px solid #FF4B01;
    background: transparent;
    cursor: pointer;
}

.first-section, .second-section {
    display: flex;
    flex-wrap: nowrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.clear-break {
    width: 100%;
    height: 1px;
    clear: both;
    margin: 15px 0;
}

/* Hide the button by default */
.tr-show-all {
    display: none;
}

#highlight-review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Responsive styles */
@media (max-width: 768px) {
    #review-not-foundimg {
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .tr-show-all {
        display: block;
    }
}

.view-map {
  background:url("../../images/view-map.png");
  background-size: contain;
  width: 293px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-map button {
  border-radius: 8px;
  border: 1px solid var(--900, #222);
  background: var(--pure-white, #FFF);
  display: flex;
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.view-map button svg {
  margin-right: 15px;
}/*# sourceMappingURL=style.css.map */


.allBox{display: flex;}





/* faq__section */
.faq__Section{margin-top:52px}
.faq__Section h4{
  font-size: 24px;
  font-weight: 600;
  color:#000000;
  margin-bottom: 24px;
line-height:32px;
}
  .faq-card {
      border: 1px solid #D6D6D6;
      border-radius: 8px;
      padding: 24px 15px;
      height: 100%;
    }

    .faq-item {
      display: flex;
      align-items: center;
      padding: 16px 0px;
      border-bottom: 1px solid #D6D6D6;
      cursor: pointer;
      gap: 16px;
      justify-content: space-between;
    }
 .faq-item:first-child {
      padding-top: 0px;
    }
    .faq-item:last-child {
      border-bottom: none;
      padding-bottom: 0px;
    }
    .faq-text {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    width: calc(90% - 16px);
    }

    .faq-arrow {
      font-size: 1rem;
      color: #888;
      margin-left: 10px;
    }
    .faq__innerSection{display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 22px;
    }
    .faq__innerSection button{
      border: 1px solid #FF4B01;
      border-radius: 4px;
      font-size: 16px;
      font-weight: 500;
      color: #FF4B01;
      padding: 8px 16px;
    }
    .faq__innerSection h2 {font-size: 18px; font-weight: 600; color: #000000;}
    .faq__innerSection p {font-size: 16px;font-weight: 400;}
      /* sidebar faq */
      .sidebaar__faq{width: 644px !important;border-radius: 16px 0 0px 16px; padding: 30px;}
      .sidebaar__faq .offcanvas-header{padding: 0px;}
      .sidebaar__faq .offcanvas-body{padding: 0px;}
      .sidebaar__faq .offcanvas-header h5 {font-size:22px; font-weight: 600; color: #000; margin-bottom: 8px;}
      .sidebaar__faq .bodySection{font-size: 16px; color: #000; font-weight: 400;}
      .sidebaar__faq .bodySection strong{font-weight: 600;}
      .slidebar__inner{margin-top: 25px;}
      .question {display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;}
      .question .important__question{ font-weight: 600; color: #000000;}
      .question span{color: #222222; font-size: 16px; font-weight: 400;}
      .sidebaar__faq .form-control{border: 1px solid #D6D6D6; border-radius: 8px; font-size: 16px; font-weight: 400; color: #222222; padding: 6px 16px;}
      .sidebaar__faq .form-control:focus{box-shadow: none;}
      .sidebaar__faq .form-control::placeholder {color: #222222;}
      .formtext{font-size: 16px; margin-top: 18px; color: #222222; font-weight: 400;}
      .infoSection{display: flex; gap: 8px; align-items: flex-start; margin-top: 15px;}
      .infoSection p {font-weight: 600; font-size: 16px;color: #000;}
      .ask__question{border: 1px solid #000000; padding: 12px; text-align: center; font-size: 16px; font-weight: 600; width: 100%; border-radius: 8px;transition: background-color 0.3s ease;}
      .ask__question:hover{background-color: #000; color: #fff;}

 .custom-offcanvas {
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  z-index: 1055;
  background: #fff;
  visibility: hidden;
}

.custom-offcanvas.show {
  transform: translateX(0);
  visibility: visible;
}
.viewAll{display: flex; justify-content: center; align-items: center; margin-top: 12px;cursor: pointer;}
.viewAll span{text-decoration:underline; font-size: 16px; font-weight: 600; color: #000;}
.viewAll span img {margin-left: 10px;}



/* second side bar */

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  padding: 6px 0px 6px 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 9px 15px;
  border-right: 1px solid #D6D6D6;
}

.search-button {
  background: none;
  border: none;
     padding: 10px;
    width: 49px;
  cursor: pointer;
}

.search-button img {
  width: 16px;
  height: 16px;
  filter: hue-rotate(0deg) saturate(500%) brightness(90%);
}

.info__details {
  background-color: #F0F3F5; 
  padding: 18px;
  border-radius: 8px;
  width: 100%;
  font-family: Arial, sans-serif;
  color: #222222;
  margin-top: 15px;
}

.info__details .date {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info__details .info__details__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.info__details .info__details__title_body {
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: 400;
}

.info__details .dots {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 10px;
}

.info__details .show-more {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #222222;
}
.info__main{border-bottom: 1px solid #D6D6D6; padding-bottom: 15px;}
.like__section{display: flex; align-items: center; gap: 8px;}
.like__button{display: flex; align-items: center; gap: 20px; margin-top: 15px;}
.like__section span{font-size: 16px; font-weight: 600; color: #222222;}
.bookmarkbtn{
  display: flex;
align-items: center;
width: 28px;
height: 28px;
background: #FFFFFF;
border: 1px solid #E5E7EB;
box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.16);
border-radius: 8px;
    justify-content: center;
}

.bookmarkbtn.active {
  background-color: #000;
  color: white;
}

.bookmarkbtn img {
  transition: transform 0.3s ease;
}

.bookmarkbtn.active img {
  transform: scale(1.1);
}

.body-scrollable {
  flex: 1;
  overflow-y: auto;

}
.body__main{padding: 30px !important;}
.offcanvas-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
    background-color: #fff;
    padding: 30px;
}

/* Mobile: slide from bottom */
@media (max-width: 767px) {
  .faq__innerSection p {text-align: center;}
  .custom-offcanvas {
    width: 100%;
    height: 70vh;
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    transform: translateY(100%);
  }

  .custom-offcanvas.show {
    transform: translateY(0);
  }
  .slidebar__inner{margin-top: 15px;}
  .infoSection p{font-size: 15px;}
  .sidebaar__faq{border-radius: 16px 16px 0 0; padding: 22px;}
  .body__main{padding: 22px !important;}
  .offcanvas-footer{padding: 22px !important;}
}

/* save time section */

.gallery-wrapper {
  position: relative;
  width: 40px;
  height: 38px;
}

.containergallery {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
}
.containergallery:nth-child(1) {
  z-index: 1;
  width: 38px;
  height: 38px;
}
.containergallery:nth-child(2) {
  top: 0px;
  left: 4px;
  z-index: 2;
  width: 38px;
  height: 38px;
}
.containergallery:nth-child(3) {
  top: 0;
  left: 8px;
  z-index: 3;
  overflow: hidden;
}
.save__timeLeft {
  column-gap: 14px;
}
.details__Savetime h6 {
  font-size: 14px;
  color: #222222;
  font-weight: 600;
  line-height: 17px;
  margin-bottom: 4px;
}
.details__Savetime p {
  font-size: 14px;
  color: #222222;
  font-weight: 400;
  line-height: 17px;
}
.top__Save h5 {
  font-size: 12px;
  color: #222222;
  font-weight: 600;
  line-height: 17px;
  padding-bottom: 12px;
  margin: 0;
}
.space-topbttom {
  padding-top: 6px;
  margin-bottom: 15px;
}












 #map1 {
            width: 100%;
            height: 500px;
			d
            position: relative;
        }

        /* Styling for white streets, green parks, and blue rivers overlay */
        .street-overlay {
            color: white;
            weight: 2;
            opacity: 1;
        }

        .park-overlay {
            color: green;
            weight: 2;
            fillColor: green;
            fillOpacity: 0.6;
        }

        .river-overlay {
            color: blue;
            weight: 2;
            opacity: 1;
        }

        .tr-things-know .Icon {
            width: 1em;
            /* Set width relative to text size */
            height: 1em;
            /* Set height relative to text size */
        }

        #grey-overlay {
            filter: grayscale(100%);
        }

        .tr-overview-section .tr-overview-content button.tr-anchor-btn {
            margin-top: 15px;
        }

        @media (max-width: 768px) {
            #review-not-foundimg {
                align-items: center;
                /* Center horizontally */
                justify-content: center;
                /* Center vertically */
                margin: 0 auto;
                /* Center horizontally within parent */
            }
        }

        button.tr-anchor-btn {
            font-weight: 600;
            font-size: 14px;
            line-height: 19px;
            letter-spacing: 0.01em;
                color: rgb(128, 128, 128);
            border: none;
            border-bottom: 1px solid rgb(128, 128, 128);;
            background: transparent;
            cursor: pointer;
        }

        .first-section,
        .second-section {
            display: flex;
            flex-wrap: nowrap;
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .clear-break {
            width: 100%;
            height: 1px;
            clear: both;
            margin: 15px 0;
        }

        /* Hide the button by default */
        .tr-show-all {
            display: none;
        }

        #highlight-review-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        /* Show the button only on mobile screens */
        @media (max-width: 768px) {
            .tr-show-all {
                display: block;
            }
        }