:root {
	--main-bg-color: #EEF1F9;
	--white-color: #fff;
	--primary-color: #3341B6;
	--secondary-color: #FFB700;
	--font-size: 16px;
	--border-color: #ededed;
	--grey-color: #737373;
	--heading-color: #000000;
	--text-color: #444;
	--footer-bg: #EFEFEF;
	--text-font: 'trip-sans';
	--heading-text-font: 'trip-sans-medium';
	--heading-bold: 'trip-sans-bold';
	--button-color: #3341B6;
	--secondary-button: #FFB700;
	--radius-rounded: 20px;
	--rounded-radius-style: 100px;
	--grey-bg-color: #F3F5FA;
	--light-border-color: #ece9e9;
}

@font-face {
	font-family: 'trip-sans';
	src: url(../fonts/trip-sans.otf);
}

@font-face {
	font-family: 'trip-sans-medium';
	src: url(../fonts/trip-sans-medium.otf);
}

@font-face {
	font-family: 'trip-sans-bold';
	src: url(../fonts/trip-sans-bold.otf);
}

/*---------- CSS Styles ----------- */

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-family: 'Poppins', sans-serif;
	color: var(--text-color);
	font-size: 16px;
	font-family: var(--text-font);
}

a,
object,
ol,
p,
ul {
	font-size: 100%;
	vertical-align: baseline;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	font-size: 16px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
	font-size: 15px;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
	font-size: 15px;
}

figure {
	margin: 0;
}

:focus {
	outline: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}

legend {
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

button,
input {
	line-height: normal;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
	line-height: 1;
	cursor: pointer;
	-webkit-appearance: button;
	border: none;
}

input[type=checkbox],
input[type=radio] {
	padding: 0;
}

input[type=search] {
	-webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1,
h2 {
	font-family: var(--heading-text-font);
	font-weight: normal;
	color: var(--heading-color);
}

h3,
h4,
h5 {
	font-family: var(--heading-text-font);
	font-weight: normal;
	color: var(--heading-color);
}

.pt-60 {
	padding-top: 60px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pt-80 {
	padding-top: 80px;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.mt-60 {
	margin-top: 60px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-40 {
	margin-top: 40px;
}

.pt-40 {
	padding-top: 40px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.ptb-10 {
	padding: 10px 0 !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.border-radius {
	border-radius: var(--radius-rounded);
	width: 100%;
}

.btn.btn-primary {
	background-color: var(--secondary-color);
	border-radius: var(--rounded-radius-style);
	padding: 10px 25px;
	font-size: 14px;
	color: #000;
	font-family: 'trip-sans-medium';
	border: none;
	transition: all 0.3s;
}

.btn.btn-primary:hover {
	background-color: var(--button-color);
	color: #fff;
}

.btn.btn-secondary {
	background-color: var(--button-color);
	border-radius: var(--rounded-radius-style);
	padding: 10px 25px;
	font-size: 14px;
	color: #fff;
	font-family: 'trip-sans-medium';
	border: none;
	transition: all 0.3s;
}

.btn.btn-secondary:hover {
	background-color: var(--secondary-color);
	color: #000;
}

.container {
	max-width: 1200px;
}

/*==========================
 Header
==========================*/
header.main-header {
	padding: 10px 0;
	background: #161C94;
	background: linear-gradient(90deg, rgba(22, 28, 148, 1) 0%, rgba(51, 65, 182, 1) 100%);
}

ul.navbar-nav {
	flex-direction: row;
	gap: 20px;
	align-items: center;
}

header button.navbar-toggler {
	display: none;
}

a.navbar-brand-logo img {
	width: 200px;
}

.link-menu li a.nav-link {
	font-family: var(--text-font);
	color: var(--white-color);
	padding: 0;
	display: flex;
	align-items: center;
	font-size: 13px;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.link-menu li a.nav-link:hover {
	color: var(--secondary-color);
}

.link-menu li a.nav-link.user-link {
	padding: 5px 20px;
	background: #FFB700;
	border-radius: 100px;
	color: #000;
	gap: 5px;
	margin-left: 10px;
	transition: all 0.3s;
	font-family: var(--heading-text-font);
}

.link-menu li a.nav-link.user-link:hover {
	background-color: #fff;
}

/*==========================
Top Banner
==========================*/
.top-head {
	position: relative;
	padding: 80px 0 100px;
	background-color: #161C94;
	background: linear-gradient(90deg, rgba(22, 28, 148, 1) 0%, rgba(51, 65, 182, 1) 100%);
}

.top-head:after {
	background-image: url(../images/head-bg.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	opacity: 0.5;
	content: "";
	right: 0;
	bottom: 0;
	width: 100%;
	position: absolute;
	height: 100%;
}

.banner-section {
	position: relative;
	z-index: 9;
}

.banner-section h1 {
	font-size: 65px;
	text-align: center;
	color: var(--white-color);
}

.banner-section span {
	text-align: center;
	color: var(--white-color);
	font-size: 22px;
	display: block;
}

/* Search Form */
.booking-search .form-group {
	position: relative;
	display: flex;
	align-items: center;
}

form.booking-search {
	margin-top: -20px;
	z-index: 9;
	position: relative;
}

.booking-search .row {
	background: #fff;
	border-radius: var(--radius-rounded);
	padding: 0 15px;
	margin: 0;
	z-index: 9;
	position: relative;
}

.booking-form small {
	background: #FFE29A;
	color: #000;
	padding: 10px 30px 25px;
	border-radius: 20px 20px 0 0;
	display: inline-block;
}

.booking-form {
    display: block;
    max-width: 1000px;
    margin: 30px auto;
}

.booking-form .form-control {
	border-radius: 0;
	border: 0;
	border-right: 1px solid #e3e3e3;
	height: 65px;
	box-shadow: none !important;
}

.booking-form input[type="number"] {
	border: none !important;
}

.search-button {
	text-align: right;
}

.search-button button.btn.btn-primary {
	width: 230px;
	font-size: 17px;
	margin-top: -15px;
	padding: 25px 15px 15px;
	text-align: center;
	margin-right: 10px;
	position: relative;
	border-radius: var(--radius-rounded);
}

.search-button button.btn.btn-primary:hover {
	background-color: #000;
}

.booking-search input[type="date"]:before {
	content: attr(placeholder) !important;
	color: #555;
	margin-right: 0.5em;
}

.booking-search input[type="date"]:focus:before,
.booking-search input[type="date"]:valid:before {
	content: "";
}

h2.section-title {
	font-size: 22px;
	color: #000;
	display: block;
	margin-bottom: 20px;
	font-family: var(--heading-text-font);
}

.position-relative input#Guests {
    border-right: 0;
}

/*==========================
 Recently Viewed
 ==========================*/
.recently-viewed {
	background-color: var(--grey-bg-color);
}

.recently-viewed-card {
	display: flex;
	align-items: center;
	background: #fff;
	gap: 15px;
	border-radius: 12px;
	padding: 10px;
	text-decoration: none;
}

.recently-viewed-card img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	height: 80px;
}

.viewed-body h6 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	margin: 0;
	font-family: 'trip-sans-medium';
	color: var(--heading-color);
}

.viewed-body small {
	font-size: 12px;
	color: #737373;
}

.star-icon {
	display: flex;
	margin-top: 5px;
	gap: 1px;
}

.star-icon i.fa-solid {
	font-size: 13px !important;
	color: var(--secondary-color);
}

/*==========================
Top Destinations
 ==========================*/
.swiper-container {
	position: relative;
	overflow: hidden;
}

.destinations-item img {
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
    border-radius: var(--radius-rounded);
    object-fit: cover;
}

.destinations-item {
	text-align: center;
	text-decoration: none;
}

.destinations-item h5 {
	font-size: 17px;
	color: var(--heading-color);
	margin: 0;
}

.destinations-item small {
	display: block;
	text-align: center;
	color: #737373;
}

.destinations-item:hover * {
	color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 22px;
}

.top-destinations .swiper-button-next,
.top-destinations .swiper-button-prev {
	background: #fff;
	border-radius: 8px;
	height: 40px;
}

.top-destinations .swiper-container {
	margin: 0 15px;
}

/* Hotel List */
.hotels-list {
	border-color: #EFEFEF;
	border-radius: 15px;
	overflow: hidden;
	display: block;
	margin-top: 10px;
	text-decoration: none;
}

.card.hotels-list {
	text-decoration: none;
	transition: all 0.3s;
}

.card.hotels-list:hover {
	box-shadow: 0 5px 20px var(--footer-bg);
}

a.hotel-link-card {
    text-decoration: none;
    transition: all 0.3s;
}

.hotels-list i.fa-heart {
	position: absolute;
	right: 10px;
	top: 10px;
	background: #fff;
	width: 30px;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 100px;
	z-index: 9;
}

.hotels-list h5.card-title {
	font-size: 17px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	margin: 5px 0;
	font-family: 'trip-sans-medium';
	color: var(--heading-color);
}

.hotels-list p.location-text {
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 2px;
	opacity: 0.6;
	color: #444;
	margin: 0 0 8px;
}

.hotels-list strong.hotel-pricing {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: block;
}

.hotels-list .star-icon i.fa-solid {
	font-size: 10px !important;
	color: var(--secondary-color);
	margin-right: 2px;
}

.hotels-list .hotel-img-top {
	height: 200px;
	overflow: hidden;
}

.hotels-list .hotel-img-top img {
    width: 100%;
    object-fit: cover;
    margin-left: 25px;
    height: 100%;
    -webkit-transform: scale(1.5);
    transform: scale(1.2);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.hotels-list:hover .hotel-img-top img {
	margin-left: 0;
}

.hotels-listing .col-md-3.col-sm-6 {
	padding: 0 10px;
}

/* Managed Order Service */
.managed-other-services {
    /*background-color: var(--primary-color);
    background: url(../images/bg-banner-home.png) no-repeat center center;
    background-repeat: no-repeat;
    background-position: left bottom;*/
}
.managed-other-services h2.section-title.text-center {
    text-align: left !important;
    font-size: 25px;
}
.managed-other-services .col-md-3 {
    padding: 0 8px;
}

.managed-other-services .container {
    background: #faf8f3;
    padding: 30px;
    border-radius: 25px;
    max-width: 1160px;
}

a.managed-service {
    text-decoration: none;
    position: absolute;
    bottom: 0;
    padding: 20px;
}

.managed-other-services h4 {
    font-size: 20px;
    line-height: 1.1;
    color: #fff;
    display: block;
    margin: 15px 0 0px;
}

span.available-text {
    color: #888;
    font-size: 14px;
}

a.img-link {
	display: block;
	border-radius: var(--radius-rounded);
	overflow: hidden;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.manage-order-service img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.manage-order-service{
	position: relative;
    border-radius: var(--radius-rounded);
    overflow: hidden;
}
.managed-other-services img {
	height: 370px;
	width: 100%;
	object-fit: cover;
	background: #fff;
	border-radius: var(--radius-rounded);
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.manage-order-service:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.voucher-cross-sell{
	margin: 0 auto;
	max-width: 1160px;
}
.voucher-cross-sell img {
    border-radius: 22px;
    width: 100%;
    height: auto;
}
/* Afford Booking */
.booking-afford {
	background-color: #EEF1F9;
}

.booking-afford .afford-icons h5 {
	font-size: 18px;
	margin: 10px 0;
	display: block;

}

.icons-img {
	height: 65px;
}

.afford-icons small {
	font-size: 13px;
	line-height: 18px;
	display: block;
	opacity: 0.9;
}


/* FAQ */
.afford-faq .accordion {
	background-color: rgba(252, 181, 1, 0.1);
	padding: 60px;
	border-radius: var(--radius-rounded);
}

.afford-faq .accordion-item button.accordion-button {
	padding: 18px 30px;
	border-radius: 15px !important;
	font-size: 18px;
}

.accordion-button:not(.collapsed) {
	color: var(--bs-accordion-active-color);
	background-color: #f6d7586e;
	box-shadow: none !important;
	border-radius: 15px !important;
}

.accordion-item {
	border: none !important;
	margin-bottom: 10px;
	border-radius: 15px;
	overflow: hidden;
	padding: 8px;
	border-radius: 18px !important;
}

.ad-banner .col-md-4 {
	padding: 0 8px;
}

.ad-banner img {
	width: 100%;
	border-radius: 15px;
}

/* Footer */
footer.footer-section {
	background: #EFEFEF;
	padding: 60px 0 30px;
}

.top-footer-logo {
	border-bottom: 1px solid #D1D0D0;
}

ul.list-menu-link {
	display: flex;
	gap: 25px;
	margin: 0;
	justify-content: right;
}

ul.list-menu-link a {
	text-decoration: none;
	color: #000;
}

ul.list-menu-link a:hover {
	color: var(--primary-color);
}

.footer-about p {
	color: #4F4C4C;
}

.connect-with-us {
	border-left: 1px solid #D1D0D0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.social-link {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.social-link a {
	color: #989898;
	font-size: 30px;
}

.social-link a:hover {
	color: var(--primary-color);
}

.footer-links h4 {
	font-size: 16px;
	font-family: 'trip-sans-medium';
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding-bottom: 10px;
}

.footer-links ul a {
	font-size: 14px;
	display: block;
	margin-top: 7px;
	color: #565656;
	text-decoration: none;
}

.footer-links ul a:hover {
	color: var(--primary-color);
}

.copyright {
	border-top: 1px solid #D1D0D0;
	padding-top: 20px;
	text-align: center;
}

.copyright p {
	margin: 0;
}


/* Hotel Listing */
section.sub-header-search {
	box-shadow: 0 10px 20px #0000000d;
}

section.sub-header-search .booking-search .row {
	padding: 0;
}

section.sub-header-search .booking-form,
section.sub-header-search form.booking-search {
	margin: 0;
}

section.sub-header-search .search-button button.btn.btn-primary {
	width: 100%;
	font-size: 16px;
	margin: 0;
	padding: 14px;
	border-radius: 100px;
	line-height: 18px;
}

section.sub-header-search .booking-form input[type="number"] {
	border-right: 1px solid #e3e3e3 !important;
}

.subheader-search-left {
	position: relative;
}

.subheader-search-left input[type=search] {
	height: 45px;
	border-radius: 10px;
	font-size: 12px;
}

.subheader-search-left button.btn.btn-outline-success {
	border: none;
	position: absolute;
	background-color: transparent !important;
	color: var(--primary-color) !important;
	right: 0;
	top: 5px;
}

/* Filter Sidebar */
a.filter-btn {
	color: #000;
	text-decoration: none;
	font-size: 18px;
	display: none;
	align-items: center;
	gap: 10px;
	background: #eee;
	padding: 15px 20px;
	border-radius: 10px;
	width: 95%;
	justify-content: space-between;
	margin: 0 auto 15px;
}

.filters-sidebar {
	border-radius: 15px;
	border: 1px solid #eee;
	padding: 20px;
}

.filter-widget {
	margin-bottom: 15px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.filter-widget:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

.filter-widget strong {
	margin-bottom: 10px;
	display: block;
	font-size: 16px;
}

.checkbox-filter .form-check {
	font-size: 14px;
	margin-top: 5px;
	cursor: pointer;
}

.checkbox-filter .form-check-input[type=checkbox] {
	width: 18px;
	height: 18px;
	border-color: #ccc;
	margin-right: 10px;
}

.checkbox-filter label.form-check-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.checkbox-filter label.form-check-label small {
	opacity: 0.6;
}

/* Hotel List wrap */
.breadCrumbs {
	align-items: center;
	margin: 0 0 5px;
}

.breadCrumbs li {
	margin-right: 10px;
	font-size: 11px;
}

.breadCrumbs li a {
	color: var(--grey-color);
	font-size: 13px;
	text-decoration: none;
}

.breadCrumbs li a:hover {
	color: var(--primary-color);
}

h1.page-title {
	font-size: 25px;
	line-height: 1;
}

/* Hotel List Details Content */
.afford-hotellist .link-hotel-wrap {
	margin-top: 25px;
}

a.link-hotel-wrap {
	text-decoration: none;
	padding: 18px;
	color: var(--grey-color);
	border: 1px solid #eee;
	border-radius: var(--radius-rounded);
	background: #fff;
	box-shadow: 0 5px 12px #f4f4f4;
	transition: all 0.3s;
}

a.link-hotel-wrap:hover {
	border-color: var(--button-color);
}

.hotels-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
}

.affordd-hotel-details {
	padding-left: 18px;
}

.title-wrapper {
	margin-bottom: 10px;
}

.title-wrapper h2 {
	font-size: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	padding-right: 10px;
	-webkit-box-orient: vertical;
	margin: 0;
	font-family: 'trip-sans-medium';
	color: var(--heading-color);
}

.star-icon-small {
	display: flex;
	font-size: 12px;
	margin: 5px 0 5px;
	gap: 1px;
	color: var(--secondary-button);
}

.review-score .light-bg {
	float: right;
	background: #ebf0fe;
	padding: 12px;
	border-radius: 12px;
	line-height: 1.2;
}

span.ratingText {
	font-weight: bold;
	color: var(--button-color);
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	align-items: center;
	font-size: 15px;
}

span.ratingText small {
	background: var(--button-color);
	color: #fff;
	padding: 2px 8px;
	font-size: 14px;
	border-radius: 20px;
}

p.review-count {
	margin: 4px 0 0;
	font-size: 13px;
	color: #333;
}

.title-wrapper strong {
	color: var(--button-color);
	padding-right: 8px;
	line-height: 12px;
	margin-right: 4px;
	border-right: 2px solid #b9b9b9;
	display: inline-block;
}

.inclusionperlist ul {
	margin: 0;
}

.inclusionperlist li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	margin-top: 10px;
}

strong.priceText {
	font-size: 20px;
	font-family: 'trip-sans-bold';
	color: #000;
}

p.font-text {
	line-height: 1;
	margin: 0 0 2px;
	font-size: 14px;
}

.pricing-section span.btn.btn-primary {
	margin-top: 10px;
}

.inclusionperlist small {
	line-height: 1.2;
	display: block;
	margin-top: 12px;
	color: var(--primary-color);
}


/* Hotel Details Page */
.hotel-details-wrapper {
	border-top: 1px solid #eee;
}

.hotel-details-wrapper .breadCrumbs {
	padding: 15px 0;
}

.afford-hotel-details {
	margin-top: 10px;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.afford-hotel-details .title-wrapper h2 {
	font-size: 25px;
}

.hotels-images {
	gap: 10px;
}

.imgholder-large img,
.small-imgholder img {
	height: 410px;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.small-imgholder {
	margin-bottom: 10px;
	display: block;
    position: relative;
}

.small-imgholder img {
	height: 200px;
}

.small-imgholder span.btn.btn-primary {
    position: absolute;
    left: 50%;
    bottom: 15px;
    max-width: 180px;
    margin-left: -80px;
}

.imgholder-large span {
	text-decoration: none !important;
	color: #fff;
	position: absolute;
	bottom: 15px;
	left: 20px;
	z-index: 99;
    font-size: 16px;
	text-transform: capitalize;
}

.imgholder-large a {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 18px;
}

.imgholder-large a:after {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, rgba(51, 65, 182, 0) 100%);
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.short-content {
	margin: 10px 0;
}

.short-content strong {
	font-size: 20px;
	color: #000;
	margin: 8px 0;
	display: block;
	font-family: var(--heading-bold);
	font-weight: normal;
}

.short-content a.view-more {
	font-weight: bold;
	text-decoration: none;
	color: var(--secondary-button);
}

ul.tag-list {
	display: flex;
	align-items: center;
	gap: 15px;
}

.tag-list li a {
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	background: #EDF6FF;
	padding: 8px 12px;
	color: var(--primary-color);
	border: 1px solid #e2edff;
	line-height: 1;
	border-radius: 8px;
}

.tag-list li a img {
	width: 20px;
}

body.hotels-details .modal-dialog {
	max-width: 700px;
}

body.hotels-details .modal-dialog .modal-body {
	padding: 30px;
}

.details-guid-hotel ul li {
	list-style: decimal;
	margin-top: 5px;
}

.details-guid-hotel ul {
	margin-left: 16px;
}

.modal-content {
	border: none;
	border-radius: var(--radius-rounded);
}

ul.list-amenities {
	column-count: 3;
}

ul.list-amenities li {
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	margin-top: 10px;
}

ul.list-amenities li i.fa-solid {
	font-size: 12px;
}

.hotel-booking-section,
.hotel-map-location {
	margin-bottom: 15px;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 20px;
	background: #fafbfe;
}

.hotel-booking-section .pricing-section {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
}

.hotel-booking-section strong.priceText {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hotel-booking-section p.font-text {
	margin: 0;
	font-size: 14px;
	font-family: 'trip-sans';
	opacity: 0.5;
	font-weight: normal;
}

.hotel-booking-section strong.priceText {
	font-size: 28px;
}

.hotel-booking-section a.btn.btn-primary {
	max-width: 200px;
	margin-top: 15px;
}

.hotel-map-location a.d-flex {
	gap: 15px;
	text-decoration: none;
	color: var(--text-color);
	align-items: center;
}

.hotel-map-location .map-icon img {
	height: 60px;
	border-radius: 10px;
	object-fit: cover;
}

.hotel-map-location strong {
	display: block;
}

.hotel-map-location {
	padding: 10px;
	border-radius: 12px;
}

.hotel-map-location small {
	display: block;
	line-height: 1;
}

.hotel-map-location small.map-link {
	color: var(--secondary-button);
	margin-top: 5px;
}

a.rating-link {
	text-decoration: none;
	margin-top: 18px;
	font-size: 16px;
	border-top: 1px solid #e9e9e9;
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.amenities-list {
	margin-top: 15px;
}

.amenities-list strong {
	font-size: 18px;
	font-family: 'trip-sans-medium';
	display: inline-block;
	font-weight: normal;
}

.amenities-list ul {
	margin: 0;
	column-count: 3;
}

.amenities-list ul li {
	padding-top: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hotels-details i.fa-solid.fa-check {
	background: #f6efe2;
	text-align: center;
	font-size: 10px;
	color: #000;
	border-radius: 100px;
	width: 20px;
	line-height: 22px;
	height: 20px;
}

.hotel-map-location.ask-questions {
	padding: 25px;
}

.hotel-map-location.ask-questions a.btn.btn-primary {
	margin-top: 15px;
	padding: 10px 35px;
	text-transform: capitalize;
}

/* Login Popup */
.modal-login-wrap.modal.show .modal-dialog {
	transform: none;
	top: 15%;
	max-width: 450px;
}

.modal-login-wrap .modal-body {
	padding: 30px;
/*	border-bottom: 1px solid var(--border-color);*/
/*	margin-bottom: 22px;*/
}

.modal-login-wrap .form-group {
	margin-bottom: 15px;
}

.modal-login-wrap .modal-login span.input-group-addon {
	width: 55px;
	text-align: center;
	border-radius: 15px 0 0 15px;
	border: 1px solid var(--border-color);
	padding: 8px;
	margin-right: -1px;
	background: #eee;
	font-size: 20px;
	color: #333;
}

.modal-login-wrap input.form-control {
	border-radius: 0 15px 15px 0;
	font-size: 15px;
	margin: 0;
	height: 48px;
	border: 1px solid var(--border-color);
}

.modal-login-wrap .btn-signin {
	border-radius: 15px;
	width: 100%;
	line-height: 30px;
	border: none !important;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	background-color: var(--button-color) !important;
}

.social-login a {
	text-decoration: none;
	color: #003dff;
	margin: 0 10px;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.social-login a.btn-google {
    color: #fd1916;
    border: 1px solid;
    padding: 8px;
    width: 100%;
    justify-content: center;
    font-size: 18px;
    background: #fbeeee;
    border-radius: 100px;
}

.social-login i.fa-brands {
	font-size: 18px;
}

p.small-text-login,
p.small-text-login a {
    margin: 0;
    font-size: 14px;
}
.social-login.mt-2.d-flex {
    margin: 0 0 20px !important;
    align-items: center;
}
.social-login p.hint-text {
    width: 100%;
    padding: 5px 0 0;
    margin: 0 !important;
}
.modal-login-wrap .form-group.pt-20.text-center.mt-3{
	margin: 0;
}



/* Page Login */
.login-unlock-wrap {
	padding: 25px;
	border: 1px solid #eee;
	background: #fafbfe;
	border-radius: 15px;
	margin: 10px 0 30px;
}

.login-unlock-wrap h5 {
	margin-bottom: 0;
}

.login-unlock-form input[type="email"] {
	border-radius: 10px;
	height: 45px;
	width: 100%;
	font-size: 15px;
	padding: 5px 15px;
	border: 1px solid #ccc;
}

.login-unlock {
	align-items: center;
}


/* Packege Section */
.packageroomcontainer {
	background: #f8f9fd;
	border-radius: 15px;
	border: 1px solid #eee;
}

.hotel-card {
	border-right: 1px solid var(--light-border-color);
	padding: 25px;
}

img.hotel-img-top {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.card-body-hotel {
	margin-top: 18px;
}

.card-body-hotel h5.card-title {
	display: block;
	margin-bottom: 5px;
}

.card-body-hotel small {
	opacity: 0.7;
	font-size: 78%;
}

.card-body-hotel ul.grid-list {
	display: grid;
	margin-top: 15px;
	gap: 8px;
	grid-template-columns: repeat(2, 1fr);
}

.card-body-hotel ul.grid-list li {
	line-height: 16px;
	margin: 0;
	padding-left: 10px;
	font-size: 14px;
	position: relative;
}

.card-body-hotel ul.grid-list li:before {
	background-color: #4a4a4a;
	border-radius: 10px;
	content: "";
	height: 3px;
	top: 7px;
	position: absolute;
	left: 0;
	width: 3px;
}

.hotel-only-room .pricing-section strong.priceText {
	display: block;
	font-size: 35px;
}

.hotel-only-room .pricing-section small {
	text-decoration: line-through;
	font-size: 15px;
}

.hotel-only-room p.font-text {
	line-height: 1;
	margin: 0 0 2px;
	font-size: 15px;
}

.RatePlanRoom li {
	display: flex;
	gap: 10px;
	margin-top: 5px;
	font-size: 14px;
}

.hotel-only-room {
	padding: 25px;
}

.pricing-section span.btn.btn-secondary {
	margin-top: 15px;
	padding: 12px 35px;
	text-transform: capitalize;
}

#more-details-room .modal-dialog {
	max-width: 600px;
	top: 15%;
}

.hotel-guid {
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--light-border-color);
}

.room-details-hotel li {
	font-size: 14px;
	padding-top: 15px;
	font-family: 'trip-sans-medium';
	line-height: 1.2;
	padding-left: 30px;
	position: relative;
}

.room-details-hotel li i.fa-solid.fa-check {
	position: absolute;
	left: 0;
}

.room-details-hotel small {
	display: block;
	margin-top: 5px;
	font-family: 'trip-sans';
}

.recommendedroomlist,
.roombreakfast.hotel-only-room {
	border-top: 1px solid var(--light-border-color);
}

.RatePlanRoom h5 {
	padding-bottom: 8px;
	font-family: 'trip-sans-bold';
}

.packageroomcontainer .col-sm-4,
.packageroomcontainer .col-sm-8 {
	padding: 0;
}

.recommendedroomlist:first-child {
	border-top: 0;
}


/* Google Map Location */
.google-map-location {
	margin-top: 40px;
	padding: 20px;
	border-radius: 15px;
	border: 1px solid var(--light-border-color);
}

.google-map-location h2.section-title {
	margin: 0;
}

.google-map-location small {
	opacity: 0.7;
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 6px;
	margin: 2px 0 20px;
}

.google-map iframe {
	overflow: hidden;
	border-radius: var(--radius-rounded);
}

/* Review Rating */
.user-rating-section .packageroomcontainer {
	padding: 20px 15px 30px;
}

.user-rating-section h2.section-title {
	padding-left: 15px;
}

.list__review {
	column-width: 18rem;
	column-gap: 1.5rem;
	list-style: none;
	padding-inline: 1rem;
	margin: 2rem 0;
}

.review__item:not(:first-child) {
	margin-block-start: 1.5rem;
}

.review__item {
	position: relative;
	background: linear-gradient(135deg, rgb(182 219 255) 0, rgb(238, 248, 255) 100%);
	border-radius: 0.8em;
	padding: 1.25rem;
	break-inside: avoid;
}

.review__heading {
	position: absolute;
	inset: 0 auto auto 0;
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 !important;
	border-radius: 25px;
	padding: 5px 10px;
	line-height: 1;
	transform: translate(-10px, -50%);
	box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.05), 0 1px 0 0 rgba(10, 10, 10, 0.05), 0 0.1em 0.6em -0.5em rgba(10, 10, 10, 0.05), 0 0.2em 1.2em -0.8em rgba(10, 10, 10, 0.1), 0 0.3em 0.7em -0.6em rgba(10, 10, 10, 0.2), 0 0.4em 0.8em -0.7em rgba(10, 10, 10, 0.3);
}

.review__title {
	position: relative;
	padding-right: 5px;
	font-family: 'trip-sans';
	font-size: 0.8rem;
}

.review__title::after {
	position: absolute;
	inset: -5px -0.25rem -5px auto;
	content: '';
	height: calc(0.625rem + 10px);
	width: 1px;
	background: rgba(10, 10, 10, 0.1);
}

.review__stars {
	font-size: 0.8rem;
}

.review__stars small.no-rating {
	color: #000;
	opacity: 0.4;
}

.review__content {
	font-size: 0.9rem;
	line-height: 1.4;
	color: #474747;
}

.review__author {
	font-size: 1rem;
	font-family: var(--heading-text-font);
	color: var(--primary-color);
}

.pagination-riviews {
	text-align: center;
	display: flex;
	gap: 5px;
	justify-content: center;
}

.pagination-riviews a {
	text-decoration: none;
	font-size: 16px;
	color: #3e3d3d;
	padding: 5px;
	width: 35px;
	height: 35px;
	line-height: 23px;
	border: 1px solid #ddd;
	border-radius: 100px;
	background-color: #fff;
	transition: all 0.3s;
}

.pagination-riviews a:hover,
.pagination-riviews a.active-page {
	color: #fff;
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

/* FAQS */
.faq-question {
	padding: 50px;
	border: 1px solid var(--light-border-color);
	border-radius: 15px;
}

.accordion-item button.accordion-button.collapsed {
	background-color: var(--light-border-color);
}

/* Hotel Image gallery */
body.hotels-details-gallery {
	background: #F2F2F2;
}

section.hotel-gallery-image {
	box-shadow: 0 10px 20px #0000000d;
	background: #fff;
	padding: 20px 0;
}

.hotel-gallery-title {
	display: flex;
	align-items: center;
	gap: 10px;
    text-decoration: none;
}

.hotel-gallery-title i.fa-solid.fa-arrow-left {
	font-size: 20px;
}

.link-gallery-section ul {
	margin: 10px 0 0;
	display: flex;
	align-items: center;
	gap: 15px;
}

.link-gallery-section ul li a {
	text-decoration: none;
	color: #000;
	font-size: 15px;
	padding: 10px 25px;
	border: 1px solid #ddd;
	border-radius: 12px;
	line-height: 22px;
	display: block;
	transition: all 0.3s;
}

.link-gallery-section ul li a:hover {
	background-color: #f6fbff;
}

.gallery-block.grid-gallery {
	padding-bottom: 60px;
	padding-top: 60px;
}

.gallery-block.grid-gallery .heading {
	margin-bottom: 30px;
}

.gallery-block.grid-gallery .heading h2 {
	font-weight: bold;
	font-size: 1.5rem;
	margin: 0;
	text-transform: uppercase;
}

.gallery-block.grid-gallery a:hover {
	opacity: 0.8;
}

.gallery-block.grid-gallery .item img {
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
	transition: 0.4s;
	border-radius: 15px;
	height: 300px;
	object-fit: cover;
}

.gallery-block.grid-gallery .item {
	margin-bottom: 20px;
}

#baguetteBox-overlay .full-image img {
	border-radius: 15px;
}

section#Video {
	background: #fff;
}

#Video iframe {
	border-radius: 15px;
}

.gallery-block.grid-gallery.more-gallery {
    padding: 50px 0px 0;
}
.gallery-block.grid-gallery.more-gallery h2.section-title,
.gallery-block.grid-gallery.more-gallery .heading {
    text-transform: capitalize;
    margin: 0 0 30px;
    font-family: var(--heading-text-font) !important;
    font-weight: normal;
    font-size: 22px;
	align-items: center;
}
.gallery-block.grid-gallery.more-gallery h2.section-title{
	margin-bottom: 0;
}
.more-gallery.gallery-block.grid-gallery .item img {
    height: 200px;
    width: 100%;
    border-radius: 10px;
}
.more-gallery.gallery-block.grid-gallery .item {
    padding: 5px;
}
.more-gallery.gallery-block.grid-gallery .row {
    margin: 0px -8px;
}
.hotel-gallery-image a.btn.btn-primary {
    padding: 10px 50px;
    height: auto !important;
    line-height: 2;
}

/* About Page */
section.sub-header-search.sub-header-section {
    padding: 20px 0;
}
section.sub-header-search h4.page-title-subheader {
    margin: 0;
}
section.simple-beginer {
    background: #F5F5F5;
}

.about-icon-section img {
    height: 90px;
}
.icon-about{
	margin-top: 20px;
}
.icon-about h4 {
    display: block;
    margin: 15px 0;
    font-size: 22px;
}
.simple-beginer h3 {
    font-size: 35px;
    text-transform: capitalize;
}


/* Contact Us */
section.customer-services{
	background: #F5F5F5;
}
.customer-services h2 {
    margin: 0;
}
.customer-services strong {
    font-weight: normal;
    font-size: 18px;
}
.customer-about {
    background: #fff;
    position: relative;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0 0;
    padding-left: 85px;
}
.customer-about i.fa-regular,
.customer-about .fa-solid {
    position: absolute;
    left: 25px;
    font-size: 35px;
    opacity: 0.5;
    top: 30px;
}
.customer-about h4 {
    line-height: 1;
	font-size: 22px;
}
.customer-about small {
    line-height: 1.4;
    display: block;
}


.contact-form label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.contact-form .form-group input.form-control {
    height: 45px;
	font-size: 15px;
}
.contact-form .form-group {
    margin-bottom: 10px;
}
.contact-info {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-rounded);
    padding: 25px;
	background-color: #fff;
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.05);
}
.info-details {
    margin-top: 25px;
}
.info-details strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-details strong i.fa-solid {
    font-size: 20px;
    line-height: 1;
}
.info-details span {
    display: block;
    font-size: 15px;
    margin-top: 3px;
}
textarea.form-control {
    height: 100px;
    margin: 0 0 10px;
    font-weight: normal;
    font-size: 15px;
}
.contact-form button.btn.btn-primary {
    padding: 12px 40px;
    font-size: 15px;
    margin-top: 15px;
}
.contact-details h3 {
    margin-bottom: 18px;
}

/* Booking Details */
ul.booking-setep {
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}
.booking-setep li {
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 10px;
}
.booking-setep span {
    background: #fff;
    width: 25px;
    border: 1px solid #313131;
    text-align: center;
    line-height: 25px;
    border-radius: 100px;
    height: 25px;
    color: #313131;
    font-size: 12px;
}
.booking-setep .active-step span {
    background: #232da4;
	border-color: #232da4;
    height: 25px;
	color: #fff;
}
.booking-setep span i.fa-solid.fa-check {
    background: transparent;
    color: #fff;
}
.booking-setep small {
    font-size: 100%;
	text-transform: capitalize;
}
.line-border {
    flex: 1;
    background: #919191;
    height: 1px;
}
li.finish-booking {
    flex-grow: unset;
}

.afford-hotel-details.hotel-booking-details{
	border: none;
}
.user-profile-pic img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    object-fit: cover;
}
.login-details-sing {
    padding-left: 15px;
}
.hotel-booking-details .login-unlock-wrap {
    padding: 20px;
}
.hotel-booking-details-wrapper .title-wrapper h2 {
    display: block;
    font-size: 20px;
    padding: 0 0 5px;
}
.hotel-booking-details-wrapper .inclusionperlist li {
    margin: 0px 10px 0 0;
    align-items: center;
    font-size: 13px;
    margin-top: 10px;
    display: inline-flex;
    gap: 5px;
}
.hotel-booking-details-wrapper .hotel-booking-section img {
    border-radius: 15px;
    width: 100%;
    height: 225px;
    object-fit: cover;
    margin-bottom: 20px;
}
.hotel-booking-details-wrapper .hotel-booking-section {
    padding: 15px;
}
.your-booking time h5 {
    margin: 0;
    font-size: 15px;
	opacity: 0.8;
}
.your-booking time span {
    font-size: 16px;
    font-family: 'trip-sans-bold';
    color: #000;
    margin: 8px 0 5px;
    line-height: 1;
    display: block;
}
.hotel-booking-details-wrapper .hotel-booking-section .hr {
    width: 0.5px;
    background: #ddd;
}
.your-booking h5 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 18px;
}
.length {
    border-top: 1px solid #ddd;
    padding-top: 15px;
	margin-top: 15px;
}
.length p {
    margin: 0;
}
.list-summary li {
    margin-top:8px;
}
.list-summary li small {
    font-size: 15px;
}
.list-summary li span {
    width: 50%;
    text-align: right;
}
.your-summary .list-summary li small div {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.4;
    margin-top: 1px;
}
.your-summary .booking-pricing {
    margin: 0 -15px;
    background: #eee;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.your-summary  h4 {
    margin: 0;
    font-size: 30px;
}
.your-summary .pricing-section.text-end {
    margin: 0;
}
.your-summary  strong.priceText {
    justify-content: flex-end;
}
.enter-details {
    padding: 20px;
    border-radius: 12px;
	margin-bottom: 20px;
	background-color: #fff;
}
.enter-details h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 18px;
}
ul.bulletLst {
    margin: 0;
    margin-left: 15px;
    list-style: disc;
}
.request label {
    margin-top: 15px;
    font-weight: bold;
}
.your-summary a.btn.btn-primary {
    width: 200px;
    padding: 12px;
    font-size: 18px;
    margin: 20px;
}
.alert.alert-danger.hotel-notification {
    padding: 20px;
    border-radius: 12px;
    gap: 15px;
	border-color: #d4111e;
    background: #fff5f5;
}
.alert.alert-danger i.fa-solid.fa-bell {
    font-size: 32px;
	color: #d4111e;
}
.alert__description span {
    font-size: 18px;
    color: #000;
    display: block;
    margin-bottom: 8px;
	font-family: 'trip-sans-bold';
}
.alert__description small {
    font-size: 14px;
    color: #333;
    display: block;
	line-height: 1.4;
}


/* Booking Confirrmed */
.booking-confirmed {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
}
.booking-confirmed h2 {
    font-size: 35px;
}
.booking-confirmed i.fa-solid.fa-circle-check {
    font-size: 40px;
    margin-bottom: 10px;
    color: #008032;
}
.booking-details-msg {
    margin-top: 40px;
}
.booking-details-msg strong {
    font-size: 20px;
	color: #000;
}
.booking-details-msg td {
	padding-left: 20px;
    border-right: 2px dotted #ccc;
	color: #444;
}
.booking-details-msg td:first-child{
	padding-left: 0;
}
.booking-details-msg td:last-child{
	border: none;
}
.booking-details-msg table {
  width: 100%;
}
.booking-details-msg table {
    margin-top: 15px;
}
.booking-details-msg td strong {
    display: block;
    font-size: 16px;
	color: #000;
}
.hotels-details-bookinf{
	margin-bottom: 25px;
}
.hotel-details-name {
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}
.hotels-details-bookinf p {
    color: #444;
    font-size: 14px;
    margin: 0 0 8px;
}
.img-details-booking .hotel-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.img-details-booking{
	overflow: hidden;
	border-radius: 20px;
}
.img-details-booking iframe {
    height: 250px;
    margin-bottom: -6px;
}

/* My Account  Dropdown*/
a.nav-link.my-account-login {
    display: flex;
    align-items: center;
    font-weight: normal;
}
a.my-account-login.dropdown-toggle strong {
    text-transform: capitalize;
    font-weight: normal;
    font-size: 14px;
}
a.my-account-login.dropdown-toggle {
    display: flex;
    gap: 5px;
	text-decoration: none;
    align-items: center;
    color: #fff;
}
a.my-account-login.dropdown-toggle span {
    width: 30px;
    line-height: 30px;
    background: #ffc107;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    border-radius: 100px;
}
a.my-account-login.dropdown-toggle::after {
	display: none;
}
li.nav-item.dropdown ul.dropdown-menu.show {
    position: absolute;
    padding: 0;
    border: none;
    top: 40px;
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
}
li.nav-item.dropdown ul.dropdown-menu.show a.account-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    width: 100%;
    border-top: 1px solid #efefef;
    text-decoration: none;
    color: #333;
    font-size: 14px;
	transition: all 0.3s;
}
li.nav-item.dropdown ul.dropdown-menu.show a.account-item:hover {
	background-color: #F9f7f9;
	color: var(--primary-color);
}	

/* My Account Pages */
ul.account-link-menu{
	border: 1px solid var(--border-color);
	border-radius:10px;
	background-color: #fff;
}
ul.account-link-menu li a{
	padding: 15px 25px;
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	font-size: 15px;
	color: var(--heading-color);
	border-bottom: 1px solid var(--border-color);
}
ul.account-link-menu li a i {
    font-size: 14px;
    color: #555;
    background-color: #f6f6f6;
    width: 35px;
    border-radius: 100px;
    text-align: center;
    line-height: 35px;
    height: 35px;
}
ul.account-link-menu li a:hover{
	color: var(--button-color);
}

.details-name h2 {
    margin: 0;
    font-size: 30px;
}
.profile-photo {
    position: relative;
    border-radius: 1000px;
    overflow: hidden;
    background: #E4E6E7;
    padding: 5px;
}
.profile-photo i {
    position: absolute;
    left: 40%;
    bottom: 20px;
    z-index: 9;
    color: #fff;
}
.profile-photo:after {
    position: absolute;
    left: 0;
    background: #00000066;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
}
.my-settings-row-item {
    margin-top: 25px;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
}
.my-settings-row-item {
    margin-top: 25px;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
    border-bottom: 1px solid var(--border-color);
}
.account-row-item {
    padding: 15px;
	border-bottom: 1px solid #eee;
}
.element-name small {
    display: block;
    line-height: 1;
    font-size: 13px;
    opacity: 0.9;
    padding-top: 5px;
}
a.edit-details-btn {
    background: #ffc107;
    padding: 8px 25px;
    text-decoration: none;
    border-radius: 100px;
    color: #000;
    font-size: 14px;
}
.my-settings-row-item .account-row-item:last-child{
	border-bottom: 0;
}
ul.account-link-menu li.nav-item-active a,
ul.account-link-menu li.nav-item-active a i {
    color: #313eb4;
}
.element-name input.edit-input {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    font-size: 12px;
}
input.col-sm-6.edit-input {
    width: 49%;
    margin-top: 10px;
}
.hotels-list  i.fa-solid.fa-heart {
    color: red;
}
.hotels-list-booked {
    margin-top: 10px;
    background: #fff;
    border-radius: 15px;
    padding: 12px;
	text-decoration: none;
	border:1px solid var(--border-color);
	transition: all 0.4s;
}
.hotels-list-booked:hover {
    box-shadow: 0 10px 20px #e7e4e4;
}
.hotels-list-booked img {
    border-radius: 10px;
    width: 100%;
    height: 130px;
}
.booked-details-content h3 {
    margin: 0 0 2px;
    display: block;
}
.booked-details-content h3 a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}
.booked-hotel-review.d-flex {
    align-items: center;
    font-size: 14px;
    margin-bottom: 2px;
}
.booked-hotel-review.d-flex i.fa-solid.fa-star {
    font-size: 13px;
    margin-right: 2px;
    color: #FFC107;
}

.hotels-list-booked .booked-details-content {
    padding: 5px 25px;
}
.hotels-list-booked .booked-date span {
    font-size: 15px;
	display: flex;
	align-items: center;
	gap: 5px;	
	color: #666;
}	
.hotels-list-booked .booked-date{
	gap: 30px;
}
.hotels-list-booked .booked-date span:before {
    content: "";
    width: 5px;
    height: 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 100px;
}
.booked-stuts {
    margin-top: 8px;
    font-size: 12px;
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 3px 18px;
    border-radius: 100px;
}
.booked-price {
    display: flex;
    align-items: anchor-center;
    color: #000;
    font-family: var(--heading-bold);
    font-size: 22px;
    gap: 8px;
    justify-content: end;
}
.booked-price-section a.btn.btn-secondary {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}
.tab-booking-list div#nav-tab {
    background: #fff;
    padding: 10px;
    border: none;
	margin: 15px 0;
    border-radius: 10px;
}
.hotel-booking-list-wrap .nav-tabs .nav-link {
    border: none !important;
    border-right: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    border-radius: 0;
	color: #333;
}
.hotel-booking-list-wrap .nav-tabs .nav-link:last-child {
    border-right: none !important;
}
.hotel-booking-list-wrap button#current-tab.active{
	color: var(--primary-color);
}
.hotel-booking-list-wrap button.nav-link.active{
    color: var(--primary-color);
}
.no-booking-details h2 {
    margin: 0;
    font-size: 28px;
    text-transform: capitalize;
}
.no-booking-details .btn.btn-secondary{
	margin-top: 20px;
}
.booked-stuts.cancelled {
    background: red;
    color: #fff;
}

.booking-confirmation-number strong {
    display: block;
    font-size: 14px;
}
.booking-confirmation-number small{
	font-size: 13px;
	display: block;
}
.booking-confirmation-number small span{
	color: var(--button-color);
}
.booking-confirmation-page .your-booking h4{
	margin-top: 20px;
}
.booked-details-content p {
    font-size: 14px;
    margin: 4px 0 0px;
}
.booked-details-hotel {
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
    margin-bottom: 20px;
    margin-left: -12px;
    padding-left: 15px;
}
.booking-details-content-hotel strong {
    color: #000;
    font-weight: normal;
	font-family: var(--heading-bold);
}
.booking-details-content-hotel p{
	margin: 0;
}
.booking-details-content-hotel small {
    font-size: 12px;
    line-height: 1.2;
    display: block;
}
.booking-details-content-hotel {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-left: -12px;
    padding-left: 15px;
    padding-bottom: 10px;
}
.hotels-list-booked .hotel-map {
    margin: 20px -12px;
    border: 2px solid #949494;
}
.hotels-list-booked .hotel-map iframe{
    margin-bottom: -6px;
}
.room-category-use {
    margin-left: -12px;
    padding-left: 15px;
	padding-right: 15px;
    padding-bottom: 20px;
    margin-right: -12px;
}
.room-category-use small,
.room-category-use p {
    margin: 0 0px 8px;
    font-size: 13px;
    display: block;
    line-height: 1.1;
}

/* New Pages */
.affordd-privacy ul {
    margin-left: 20px;
}
.affordd-privacy ul li {
    list-style: disc;
}

.top-banner-careers img {
    width: 100%;
}
.top-banner-careers .col-md-7 {
    text-align: center;
    padding: 30px 180px;
}
.top-banner-careers .col-md-7 p{
	font-size: 18px;
	line-height: 25px;
}
section.top-banner-careers {
    background: #faefd2;
}
.top-banner-careers a.btn.btn-secondary:hover {
    background: #000;
	color: #fff;
}

/* Job Card */
.content-page-careers .card-block-info {
    padding: 25px;
    position: relative;
	border-radius: 10px;
	transition: all 0.3s;
	margin-bottom: 25px;
	border: 0.88px solid rgba(6, 18, 36, 0.1);
}
.content-page-careers .card-block-info a{
	text-decoration: none;
	color: #333;
}
.content-page-careers .card-block-info:hover {
    transform: translateY(-3px);
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
	box-shadow: 0px 9px 26px 0px rgba(31, 31, 51, 0.06);
}
.content-page-careers span.disc-btn {
    background-color: rgba(151, 119, 250, 0.12);
    font-size: 12px;
    padding: 5px 12px 4px;
    border-radius: 100px;
    color: #37404e;
    text-transform: uppercase;
}
.content-page-careers span.disc-btn:before {
    content: "";
    height: 5px;
    width: 5px;
    background-color: #9777fa;
    border-radius: 50%;
    display: inline-block;
    margin: 0px 5px 2px 0px;
}
.card-block-info h4 {
    line-height: 1.2;
    margin: 15px 0;
}
span.card-location,
span.card-time {
    font-size: 13px;
}

.section-box {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.box-head-single {
    background-color: #FFF9F3;
    display: inline-block;
    width: 100%;
    padding: 60px 0px;
    position: relative;
	margin-bottom: 40px;
}
.box-head-single::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    z-index: 1;
    width: 100px;
    background: url(../images/bg-header-left.svg) no-repeat right bottom;
}
.box-head-single::after {
    z-index: 1;
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 100%;
    width: 543px;
    background: url(../images/bg-header-right.svg) no-repeat right bottom;
}
.box-head-single .d-flex.align-items-center {
    gap: 20px;
}
.box-head-single h3 {
    margin: 10px 0 20px;
}
.single-image-feature{
	margin-bottom: 20px;
}
.single-image-feature img{
	border-radius: 20px;
	width: 100%;
}
.jobs-content-single ul {
    margin-left: 20px;
	font-size: 16px;
}
.jobs-content-single ul li{
    list-style: disc;
	margin-top: 5px;
}
.box-head-single a.btn.btn-secondary {
    padding: 10px 40px 13px;
    font-size: 16px;
}
div#submit-jobs {
    margin: 50px 0 70px;
    padding: 30px;
    background: #f6f6f6;
    border-radius: 15px;
	width: 100%;
}
div#submit-jobs label {
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 5px;
}
div#submit-jobs .form-group {
    margin-bottom: 15px;
}
div#submit-jobs .form-group input.form-control{
	height: 45px;
	font-size: 15px;
}
div#submit-jobs .form-group.resume-select {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px dashed rgb(171, 207, 255);
    padding: 15px;
    border-radius: 10px;
}
.affordd-be-part img {
    border-radius: 15px;
}
.affordd-be-part {
    margin-top: 50px;
    background: #F7F7F7;
    padding: 25px;
    border-radius: 20px;
}

/* Review Section */
.title-reviews {
	font-family: var(--heading-text-font);
    font-size: 30px;
	color: #000;
	margin-bottom: 20px;
}
.reviews-item {
    padding: 20px;
    border: 1px solid #efefef;
    border-radius: 12px;
    background: #f8f8f8;
}
section#reviews .reviews-item .d-flex.align-items-center {
    justify-content: space-between;
}	
section#reviews .reviews-item i.fa-solid.fa-quote-left {
    font-size: 45px;
    opacity: 0.1;
}
section#reviews .reviews-item span {
    font-size: 12px;
    color: #ffb700;
}
section#reviews .reviews-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 2;
    margin: 10px 0 20px;
    -webkit-box-orient: vertical;
}
section#reviews .reviews-item h5 {
    font-size: 18px;
}


/* Privacy Policy */
.sidebar-sticky-widget {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    padding-right: 10px;
}
nav.link-nav-bar {
    background: #fff;
    padding: 25px;
	margin-bottom: 30px;
    border-radius: 15px;
}
nav.link-nav-bar h3 {
    font-size: 20px;
}
nav.link-nav-bar ul {
    margin-left: 20px;
}
.affordd-privacy ul li {
    list-style: disc;
    margin-top: 12px;
}
.affordd-privacy ul li a{
    color: #111;
	text-decoration: none;
	font-size: 15px;
}
.affordd-privacy ul li.active a{
	color: #1F289F;
	text-decoration: underline;
	font-weight: 600;
}
.affordd-privacy ul li a:hover{
	text-decoration: underline;
	color: #000;
}
.richtext.text-body-base h2 {
    font-size: 22px;
	margin-bottom: 8px;
	padding-top: 10px;
	display: block;
}
.richtext.text-body-base strong {
    font-weight: bold;
}
.richtext.text-body-base ul{
	margin-left: 25px;
	margin-bottom: 15px;
	    font-size: 16px;
    line-height: 1;
}
.richtext.text-body-base p{
	display: block;
	line-height: 24px;
}

.shadow-box-view {
    border: 1px solid #eee;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0px 20px #ddd;
    margin-top: 30px;
	overflow: hidden;
}