/* Default WordPress editor page styling */
.default-page-panel {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8f9fa 100%);
}

.default-editor-content {
	max-width: 1080px;
	margin: 0 auto;
}

.default-editor-content .entry-content {
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.75;
}

.default-editor-content .entry-content > *:first-child {
	margin-top: 0 !important;
}

.default-editor-content .entry-content > *:last-child {
	margin-bottom: 0 !important;
}

.default-editor-content h1,
.default-editor-content h2,
.default-editor-content h3,
.default-editor-content h4,
.default-editor-content h5,
.default-editor-content h6 {
	color: var(--darkcolor);
	font-weight: 700;
	line-height: 1.28;
	text-transform: none;
	margin: 28px 0 14px;
}

.default-editor-content h1 {
	font-size: 34px;
}

.default-editor-content h2 {
	color: var(--secondarycolor);
	font-size: 28px;
	padding-bottom: 12px;
	position: relative;
}

.default-editor-content h2::after {
	content: "";
	width: 82px;
	height: 4px;
	background-color: var(--primarycolor);
	border-radius: 999px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.default-editor-content h3 {
	color: var(--secondarycolor);
	font-size: 23px;
}

.default-editor-content h4 {
	font-size: 20px;
}

.default-editor-content h5 {
	font-size: 18px;
}

.default-editor-content h6 {
	color: var(--secondarycolor);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.default-editor-content p,
.default-editor-content .wp-block-paragraph {
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 16px;
}

.default-editor-content strong {
	color: var(--darkcolor);
	font-weight: 700;
}

.default-editor-content a:not(.wp-block-button__link) {
	display: inline;
	color: var(--secondarycolor);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgb(0 91 155 / .28);
	text-underline-offset: 3px;
	transition: all .25s ease;
}

.default-editor-content a:not(.wp-block-button__link):hover {
	color: var(--primarycolor);
	text-decoration-color: rgb(244 126 32 / .45);
}

.default-editor-content ul,
.default-editor-content ol {
	margin: 0 0 18px;
	padding-left: 24px;
}

.default-editor-content ul {
	list-style: disc;
}

.default-editor-content ol {
	list-style: decimal;
}

.default-editor-content li {
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 8px;
	text-transform: none;
}

.default-editor-content li::marker {
	color: var(--primarycolor);
	font-weight: 700;
}

.default-editor-content li ul,
.default-editor-content li ol {
	margin-top: 8px;
	margin-bottom: 8px;
}

.default-editor-content blockquote,
.default-editor-content .wp-block-quote {
	color: var(--darkcolor);
	background: #f5f9ff;
	border-left: 5px solid var(--primarycolor);
	border-radius: 0 14px 14px 0;
	margin: 24px 0;
	padding: 20px 24px;
}

.default-editor-content blockquote p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 8px;
}

.default-editor-content cite {
	display: block;
	color: var(--secondarycolor);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	margin-top: 8px;
}

.default-editor-content figure,
.default-editor-content .wp-block-image {
	margin: 24px 0;
}

.default-editor-content img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.default-editor-content .wp-block-image img,
.default-editor-content .wp-block-gallery img {
	box-shadow: 0 12px 30px rgb(16 44 84 / .11);
}

.default-editor-content figcaption {
	color: #667085;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	margin-top: 10px;
}

.default-editor-content .wp-block-button {
	margin: 24px 0;
}

.default-editor-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--lightcolor);
	background-color: var(--primarycolor);
	font-size: 15px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 6px;
	padding: 11px 30px;
	text-decoration: none;
	transition: all .25s ease;
}

.default-editor-content .wp-block-button__link:hover {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	transform: translateY(-1px);
}

.default-editor-content .wp-block-separator {
	border: 0;
	border-top: 1px solid #dce7f5;
	margin: 30px 0;
}

.default-editor-content .wp-block-table {
	margin: 24px 0;
	overflow-x: auto;
}

.default-editor-content table {
	width: 100%;
	background: #fff;
	border: 1px solid #e1e9f4;
	border-collapse: collapse;
	border-radius: 12px;
	overflow: hidden;
}

.default-editor-content th,
.default-editor-content td {
	color: var(--textcolor);
	border: 1px solid #e1e9f4;
	font-size: 15px;
	line-height: 1.5;
	padding: 13px 15px;
	vertical-align: top;
}

.default-editor-content th {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	font-weight: 700;
}

.default-editor-content tr:nth-child(even) td {
	background-color: #f7faff;
}

.default-editor-content .wp-block-cover,
.default-editor-content .wp-block-media-text {
	border-radius: 16px;
	margin: 26px 0;
	overflow: hidden;
}

.default-editor-content .page-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.default-editor-content .page-links a,
.default-editor-content .page-links .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	color: var(--secondarycolor);
	border: 1px solid #dbe5f3;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
}

.default-editor-content .page-links .current {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	border-color: var(--secondarycolor);
}

.default-page-edit-link {
	border-top: 1px solid #e4edf8;
	margin-top: 26px;
	padding-top: 18px;
}

.default-page-edit-link a {
	display: inline-flex;
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	padding: 8px 18px;
	text-decoration: none;
}

.default-page-edit-link a:hover {
	color: var(--lightcolor);
	background-color: var(--primarycolor);
}

@media (max-width: 992px) {
	.default-editor-content {
		max-width: 100%;
	}

	.default-editor-content h1 {
		font-size: 29px;
	}

	.default-editor-content h2 {
		font-size: 25px;
	}

	.default-editor-content h3 {
		font-size: 21px;
	}
}

@media (max-width: 576px) {
	.default-page-panel.custom-style {
		padding: 24px 0;
	}

	.default-editor-content .entry-content {
		font-size: 15px;
		line-height: 1.7;
	}

	.default-editor-content h1 {
		font-size: 25px;
	}

	.default-editor-content h2 {
		font-size: 22px;
	}

	.default-editor-content h3 {
		font-size: 19px;
	}

	.default-editor-content p,
	.default-editor-content .wp-block-paragraph,
	.default-editor-content li {
		font-size: 15px;
	}

	.default-editor-content blockquote,
	.default-editor-content .wp-block-quote {
		padding: 16px 18px;
	}

	.default-editor-content th,
	.default-editor-content td {
		font-size: 14px;
		padding: 11px 12px;
	}
}

/* Single blog post refinements */
.blog-wrap-panel .blog-details .why-visit-title {
	display: inline-flex;
	align-items: center;
	width: auto;
	margin: 18px 0 18px !important;
	padding: 10px 16px;
	border-radius: 6px;
	color: var(--lightcolor);
	background-color: #e88400;
	font-size: 20px !important;
	font-weight: 700;
	line-height: 1.25;
	text-transform: capitalize;
}

.blog-wrap-panel .blog-details .why-visit-list {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	gap: 9px;
}

.blog-wrap-panel .blog-details .why-visit-list li {
	position: relative;
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.45;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .why-visit-list li::before {
	content: "";
	position: absolute;
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #e88400;
}

.blog-wrap-panel .blog-details .ht-reference-list,
.package-details-panel .pkg-details .ht-reference-list {
	list-style: none !important;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	gap: 9px;
}

.blog-wrap-panel .blog-details .ht-reference-list li,
.package-details-panel .pkg-details .ht-reference-list li {
	position: relative;
	color: var(--textcolor);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	text-transform: none;
	margin: 0 !important;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .ht-reference-list li::before,
.package-details-panel .pkg-details .ht-reference-list li::before {
	content: "";
	position: absolute;
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #e88400;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list {
	gap: 9px;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list li {
	font-size: 16px;
	line-height: 1.45;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list li::before {
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
}

.blog-wrap-panel .blog-details .ht-reference-list li::marker,
.package-details-panel .pkg-details .ht-reference-list li::marker {
	content: "";
}

.package-details-panel .info-box h4 {
	display: inline-flex;
	align-items: center;
	width: auto;
	margin: 16px 0 14px;
	padding: 8px 10px;
	border-radius: 4px;
	color: var(--lightcolor);
	background-color: #e88400;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: capitalize;
}

.package-details-panel .info-box h4.text-spacing {
	margin-top: 18px;
}

.package-details-panel #other-info.package-scroll-section {
	padding: 34px 38px;
}

.package-details-panel #other-info .comman-title {
	margin-bottom: 30px;
}

.blog-wrap-panel .tags-share-box {
	display: block;
	margin: 30px 0 24px;
	padding: 22px 0 0;
	border-top: 1px solid #e8edf4;
}

.blog-wrap-panel .post-share-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	border: 1px solid #dfe8f4;
	border-radius: 14px;
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
	box-shadow: 0 14px 32px rgb(15 39 76 / .08);
}

.blog-wrap-panel .post-share-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.blog-wrap-panel .post-share-icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgb(0 91 155 / .2);
}

.blog-wrap-panel .post-share-heading strong {
	display: block;
	color: var(--secondarycolor);
	font-size: 18px;
	line-height: 1.2;
	text-transform: capitalize;
}

.blog-wrap-panel .post-share-heading small {
	display: block;
	color: #647086;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 4px;
}

.blog-wrap-panel .post-share-links {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.blog-wrap-panel .social-ico .post-share-link {
	width: auto;
	height: auto;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--lightcolor);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.blog-wrap-panel .social-ico .post-share-link:hover {
	color: var(--lightcolor);
	transform: translateY(-2px);
	filter: brightness(.98);
	box-shadow: 0 12px 22px rgb(15 39 76 / .16);
}

.blog-wrap-panel .social-ico .post-share-facebook {
	background-color: #1877f2;
}

.blog-wrap-panel .social-ico .post-share-x {
	background-color: #111827;
}

.blog-wrap-panel .social-ico .post-share-whatsapp {
	background-color: #25d366;
}

@media (max-width: 767px) {
	.blog-wrap-panel .tags-share-box {
		display: block;
		margin: 22px 0 20px;
	}

	.blog-wrap-panel .post-share-box {
		align-items: stretch;
		flex-direction: column;
		padding: 16px;
		border-radius: 12px;
	}

	.blog-wrap-panel .post-share-links {
		justify-content: flex-start;
	}

	.blog-wrap-panel .social-ico .post-share-link {
		flex: 1 1 130px;
	}
}

/* Compact enquiry forms */
.custom-modal .modal-xl {
	max-width: 900px;
}

.custom-modal .left-box {
	width: 46%;
}

.custom-modal .right-box {
	width: 54%;
	padding: 18px 22px;
}

.custom-modal h3 {
	margin-bottom: 18px;
}

.custom-modal .right-box .input-box,
.blog-enquiry-widget .input-box {
	margin-bottom: 14px;
}

.custom-modal .modal-field-row,
.custom-modal .cf7-field-row,
.blog-enquiry-widget .cf7-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.custom-modal .modal-field-row .input-box,
.custom-modal .cf7-field-row .input-box,
.blog-enquiry-widget .cf7-field-row .input-box {
	margin-bottom: 14px;
}

.custom-modal .right-box .form-control,
.custom-modal .right-box .form-select {
	min-height: 46px;
	border-radius: 10px;
	padding: 10px 14px;
}

.custom-modal .right-box textarea.form-control {
	min-height: 105px;
}

.custom-modal .promo-box {
	padding: 12px 28px;
}

.custom-modal .promo-box figure {
	height: 245px;
	margin: 12px 0;
}

.custom-modal .promo-box h4 {
	font-size: 24px;
	margin-bottom: 14px;
}

.custom-modal .promo-box h6 {
	margin-bottom: 14px;
}

.blog-enquiry-widget textarea.form-control {
	min-height: 95px;
}

@media (max-width: 991px) {
	.custom-modal .left-box,
	.custom-modal .right-box {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.custom-modal .modal-field-row,
	.custom-modal .cf7-field-row,
	.blog-enquiry-widget .cf7-field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
/* Default WordPress editor page styling */
.default-page-panel {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8f9fa 100%);
}

.default-editor-content {
	max-width: 1080px;
	margin: 0 auto;
}

.default-editor-content .entry-content {
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.75;
}

.default-editor-content .entry-content > *:first-child {
	margin-top: 0 !important;
}

.default-editor-content .entry-content > *:last-child {
	margin-bottom: 0 !important;
}

.default-editor-content h1,
.default-editor-content h2,
.default-editor-content h3,
.default-editor-content h4,
.default-editor-content h5,
.default-editor-content h6 {
	color: var(--darkcolor);
	font-weight: 700;
	line-height: 1.28;
	text-transform: none;
	margin: 28px 0 14px;
}

.default-editor-content h1 {
	font-size: 34px;
}

.default-editor-content h2 {
	color: var(--secondarycolor);
	font-size: 28px;
	padding-bottom: 12px;
	position: relative;
}

.default-editor-content h2::after {
	content: "";
	width: 82px;
	height: 4px;
	background-color: var(--primarycolor);
	border-radius: 999px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.default-editor-content h3 {
	color: var(--secondarycolor);
	font-size: 23px;
}

.default-editor-content h4 {
	font-size: 20px;
}

.default-editor-content h5 {
	font-size: 18px;
}

.default-editor-content h6 {
	color: var(--secondarycolor);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.default-editor-content p,
.default-editor-content .wp-block-paragraph {
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 16px;
}

.default-editor-content strong {
	color: var(--darkcolor);
	font-weight: 700;
}

.default-editor-content a:not(.wp-block-button__link) {
	display: inline;
	color: var(--secondarycolor);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgb(0 91 155 / .28);
	text-underline-offset: 3px;
	transition: all .25s ease;
}

.default-editor-content a:not(.wp-block-button__link):hover {
	color: var(--primarycolor);
	text-decoration-color: rgb(244 126 32 / .45);
}

.default-editor-content ul,
.default-editor-content ol {
	margin: 0 0 18px;
	padding-left: 24px;
}

.default-editor-content ul {
	list-style: disc;
}

.default-editor-content ol {
	list-style: decimal;
}

.default-editor-content li {
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 8px;
	text-transform: none;
}

.default-editor-content li::marker {
	color: var(--primarycolor);
	font-weight: 700;
}

.default-editor-content li ul,
.default-editor-content li ol {
	margin-top: 8px;
	margin-bottom: 8px;
}

.default-editor-content blockquote,
.default-editor-content .wp-block-quote {
	color: var(--darkcolor);
	background: #f5f9ff;
	border-left: 5px solid var(--primarycolor);
	border-radius: 0 14px 14px 0;
	margin: 24px 0;
	padding: 20px 24px;
}

.default-editor-content blockquote p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 8px;
}

.default-editor-content cite {
	display: block;
	color: var(--secondarycolor);
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	margin-top: 8px;
}

.default-editor-content figure,
.default-editor-content .wp-block-image {
	margin: 24px 0;
}

.default-editor-content img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.default-editor-content .wp-block-image img,
.default-editor-content .wp-block-gallery img {
	box-shadow: 0 12px 30px rgb(16 44 84 / .11);
}

.default-editor-content figcaption {
	color: #667085;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	margin-top: 10px;
}

.default-editor-content .wp-block-button {
	margin: 24px 0;
}

.default-editor-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--lightcolor);
	background-color: var(--primarycolor);
	font-size: 15px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 6px;
	padding: 11px 30px;
	text-decoration: none;
	transition: all .25s ease;
}

.default-editor-content .wp-block-button__link:hover {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	transform: translateY(-1px);
}

.default-editor-content .wp-block-separator {
	border: 0;
	border-top: 1px solid #dce7f5;
	margin: 30px 0;
}

.default-editor-content .wp-block-table {
	margin: 24px 0;
	overflow-x: auto;
}

.default-editor-content table {
	width: 100%;
	background: #fff;
	border: 1px solid #e1e9f4;
	border-collapse: collapse;
	border-radius: 12px;
	overflow: hidden;
}

.default-editor-content th,
.default-editor-content td {
	color: var(--textcolor);
	border: 1px solid #e1e9f4;
	font-size: 15px;
	line-height: 1.5;
	padding: 13px 15px;
	vertical-align: top;
}

.default-editor-content th {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	font-weight: 700;
}

.default-editor-content tr:nth-child(even) td {
	background-color: #f7faff;
}

.default-editor-content .wp-block-cover,
.default-editor-content .wp-block-media-text {
	border-radius: 16px;
	margin: 26px 0;
	overflow: hidden;
}

.default-editor-content .page-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.default-editor-content .page-links a,
.default-editor-content .page-links .post-page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	color: var(--secondarycolor);
	border: 1px solid #dbe5f3;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
}

.default-editor-content .page-links .current {
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	border-color: var(--secondarycolor);
}

.default-page-edit-link {
	border-top: 1px solid #e4edf8;
	margin-top: 26px;
	padding-top: 18px;
}

.default-page-edit-link a {
	display: inline-flex;
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	padding: 8px 18px;
	text-decoration: none;
}

.default-page-edit-link a:hover {
	color: var(--lightcolor);
	background-color: var(--primarycolor);
}

@media (max-width: 992px) {
	.default-editor-content {
		max-width: 100%;
	}

	.default-editor-content h1 {
		font-size: 29px;
	}

	.default-editor-content h2 {
		font-size: 25px;
	}

	.default-editor-content h3 {
		font-size: 21px;
	}
}

@media (max-width: 576px) {
	.default-page-panel.custom-style {
		padding: 24px 0;
	}

	.default-editor-content .entry-content {
		font-size: 15px;
		line-height: 1.7;
	}

	.default-editor-content h1 {
		font-size: 25px;
	}

	.default-editor-content h2 {
		font-size: 22px;
	}

	.default-editor-content h3 {
		font-size: 19px;
	}

	.default-editor-content p,
	.default-editor-content .wp-block-paragraph,
	.default-editor-content li {
		font-size: 15px;
	}

	.default-editor-content blockquote,
	.default-editor-content .wp-block-quote {
		padding: 16px 18px;
	}

	.default-editor-content th,
	.default-editor-content td {
		font-size: 14px;
		padding: 11px 12px;
	}
}

/* Single blog post refinements */
.blog-wrap-panel .blog-details .why-visit-title {
	display: inline-flex;
	align-items: center;
	width: auto;
	margin: 18px 0 18px !important;
	padding: 10px 16px;
	border-radius: 6px;
	color: var(--lightcolor);
	background-color: #e88400;
	font-size: 20px !important;
	font-weight: 700;
	line-height: 1.25;
	text-transform: capitalize;
}

.blog-wrap-panel .blog-details .why-visit-list {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	gap: 9px;
}

.blog-wrap-panel .blog-details .why-visit-list li {
	position: relative;
	color: var(--textcolor);
	font-size: 16px;
	line-height: 1.45;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .why-visit-list li::before {
	content: "";
	position: absolute;
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #e88400;
}

.blog-wrap-panel .blog-details .ht-reference-list,
.package-details-panel .pkg-details .ht-reference-list {
	list-style: none !important;
	margin: 0 0 22px;
	padding: 0;
	display: grid;
	gap: 9px;
}

.blog-wrap-panel .blog-details .ht-reference-list li,
.package-details-panel .pkg-details .ht-reference-list li {
	position: relative;
	color: var(--textcolor);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	text-transform: none;
	margin: 0 !important;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .ht-reference-list li::before,
.package-details-panel .pkg-details .ht-reference-list li::before {
	content: "";
	position: absolute;
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #e88400;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list {
	gap: 9px;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list li {
	font-size: 16px;
	line-height: 1.45;
	padding-left: 24px;
}

.blog-wrap-panel .blog-details .why-visit-list.ht-reference-list li::before {
	top: .62em;
	left: 3px;
	width: 7px;
	height: 7px;
}

.blog-wrap-panel .blog-details .ht-reference-list li::marker,
.package-details-panel .pkg-details .ht-reference-list li::marker {
	content: "";
}

.package-details-panel .info-box h4 {
	display: inline-flex;
	align-items: center;
	width: auto;
	margin: 16px 0 14px;
	padding: 8px 10px;
	border-radius: 4px;
	color: var(--lightcolor);
	background-color: #e88400;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: capitalize;
}

.package-details-panel .info-box h4.text-spacing {
	margin-top: 18px;
}

.package-details-panel #other-info.package-scroll-section {
	padding: 34px 38px;
}

.package-details-panel #other-info .comman-title {
	margin-bottom: 30px;
}

.blog-wrap-panel .tags-share-box {
	display: block;
	margin: 30px 0 24px;
	padding: 22px 0 0;
	border-top: 1px solid #e8edf4;
}

.blog-wrap-panel .post-share-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	border: 1px solid #dfe8f4;
	border-radius: 14px;
	background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
	box-shadow: 0 14px 32px rgb(15 39 76 / .08);
}

.blog-wrap-panel .post-share-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.blog-wrap-panel .post-share-icon {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	color: var(--lightcolor);
	background-color: var(--secondarycolor);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgb(0 91 155 / .2);
}

.blog-wrap-panel .post-share-heading strong {
	display: block;
	color: var(--secondarycolor);
	font-size: 18px;
	line-height: 1.2;
	text-transform: capitalize;
}

.blog-wrap-panel .post-share-heading small {
	display: block;
	color: #647086;
	font-size: 13px;
	line-height: 1.45;
	margin-top: 4px;
}

.blog-wrap-panel .post-share-links {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.blog-wrap-panel .social-ico .post-share-link {
	width: auto;
	height: auto;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--lightcolor);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.blog-wrap-panel .social-ico .post-share-link:hover {
	color: var(--lightcolor);
	transform: translateY(-2px);
	filter: brightness(.98);
	box-shadow: 0 12px 22px rgb(15 39 76 / .16);
}

.blog-wrap-panel .social-ico .post-share-facebook {
	background-color: #1877f2;
}

.blog-wrap-panel .social-ico .post-share-x {
	background-color: #111827;
}

.blog-wrap-panel .social-ico .post-share-whatsapp {
	background-color: #25d366;
}

@media (max-width: 767px) {
	.blog-wrap-panel .tags-share-box {
		display: block;
		margin: 22px 0 20px;
	}

	.blog-wrap-panel .post-share-box {
		align-items: stretch;
		flex-direction: column;
		padding: 16px;
		border-radius: 12px;
	}

	.blog-wrap-panel .post-share-links {
		justify-content: flex-start;
	}

	.blog-wrap-panel .social-ico .post-share-link {
		flex: 1 1 130px;
	}
}

/* Compact enquiry forms */
.custom-modal .modal-xl {
	max-width: 900px;
}

.custom-modal .left-box {
	width: 46%;
}

.custom-modal .right-box {
	width: 54%;
	padding: 18px 22px;
}

.custom-modal h3 {
	margin-bottom: 18px;
}

.custom-modal .right-box .input-box,
.blog-enquiry-widget .input-box {
	margin-bottom: 14px;
}

.custom-modal .modal-field-row,
.custom-modal .cf7-field-row,
.blog-enquiry-widget .cf7-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.custom-modal .modal-field-row .input-box,
.custom-modal .cf7-field-row .input-box,
.blog-enquiry-widget .cf7-field-row .input-box {
	margin-bottom: 14px;
}

.custom-modal .right-box .form-control,
.custom-modal .right-box .form-select {
	min-height: 46px;
	border-radius: 10px;
	padding: 10px 14px;
}

.custom-modal .right-box textarea.form-control {
	min-height: 105px;
}

.custom-modal .promo-box {
	padding: 12px 28px;
}

.custom-modal .promo-box figure {
	height: 245px;
	margin: 12px 0;
}

.custom-modal .promo-box h4 {
	font-size: 24px;
	margin-bottom: 14px;
}

.custom-modal .promo-box h6 {
	margin-bottom: 14px;
}

.blog-enquiry-widget textarea.form-control {
	min-height: 95px;
}

@media (max-width: 991px) {
	.custom-modal .left-box,
	.custom-modal .right-box {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.custom-modal .modal-field-row,
	.custom-modal .cf7-field-row,
	.blog-enquiry-widget .cf7-field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
