@import url('https://fonts.googleapis.com/css2?family=Alice&family=Italiana&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Alice&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Italiana&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

*::placeholder {
	color: #9ca3af;
}

select {
	color: #9ca3af;
}

@font-face {
	font-family: 'Satoshi';
	src: url('/font/Satoshi_Complete/Fonts/OTF/Satoshi-Bold.otf') format('opentype');
	font-style: normal;
}

.bg-gradient-2 {
	background-image: linear-gradient(90deg, rgba(10, 10, 10, 0.715) 5%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.bg-custom-gradient {
	background-image: linear-gradient(180deg, rgba(117, 190, 231, 1) 42%, rgba(255, 255, 255, 1) 100%);
}

.bg-custom-color {
	background-image: linear-gradient(180deg, rgba(117, 190, 231, 1) 42%, rgba(231, 248, 255, 1) 100%);
}


.tab-pane {
	display: none;
}

.tab-pane:target {
	display: block;
}

/* Optional: Default tab visible if no anchor is clicked */
.tab-pane:first-of-type:target~.tab-pane,
.tab-pane:first-of-type {
	display: block;
}

/* Optional active tab link style */
.tab-link:target,
.tab-link:focus {
	background-color: #1F53A6;
	color: white;
}

.text-black {
	color: #000 !important;
}

/* ------------------------------------------------------------------------- */
.plusminus::before,
.plusminus::after {
	content: "";
	display: block;
	background-color: #000;
	position: absolute;
	top: 50%;
	left: 0;
	transition: .35s;
	width: 100%;
	height: 2px;
}

.plusminus::before {
	transform: translateY(-50%);
}

.plusminus::after {
	transform: translateY(-50%) rotate(90deg);
}

.plusminus.active::before {
	transform: translateY(-50%) rotate(-90deg);
	opacity: 0;
}

.plusminus.active::after {
	transform: translateY(-50%) rotate(0);
}

/* --------------------------------------------------slider */
.owl-carousel .owl-stage {
	display: flex;
}

.def-slider {
	position: relative;
}

.def-slider .owl-nav {
	position: relative;
	top: 35%;
	display: flex;
	gap: 10%;
	justify-content: center;
	transform: translateY(-50%);
}


@media (max-width: 640px) {
	.def-slider .owl-nav {
		position: relative;
		top: 35%;
		display: flex;
		gap: 20%;
		justify-content: space-between;
		transform: translateY(-50%);
	}
}

.def-slider .owl-prev,
.owl-next {
	font-size: 14px !important;
	height: 30px;
	width: 30px;
	border-radius: 50px;
}

.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.owl-dots>.owl-dot {
	width: 10px;
	height: 10px;
	background-color: #EFA00B !important;
	border-radius: 10px;
}

.slider-2 button.owl-next::after {
	content: "\f053";
	font-size: 15px;
	font-family: "FontAwesome";
	position: absolute;
	display: inline-block;
	top: 16%;
	left: 4%;
	transform: translate(-50%);
	width: 40px;
	height: 40px;
	z-index: 9999;
	border-radius: 50%;

}

.slider-2 button.owl-prev::after {
	content: "\f054";
	font-size: 15px;
	font-family: "FontAwesome";
	position: absolute;
	display: inline-block;
	top: 16%;
	right: -7%;
	transform: translate(-50%);
	width: 40px;
	height: 40px;
	z-index: 9999;
	border-radius: 50%;
}

@media (min-width: 1024px) {
	.slider-3 button.owl-prev::after {
		content: "\f060";
		font-size: 15px;
		font-family: "FontAwesome";
		display: inline-block;
		transform: translate(-9%);
		margin-top: 4px;
		width: 40px;
		height: 40px;
		z-index: 9999;
		border-radius: 50%;
	}
}

@media (min-width: 1024px) {
	.slider-3 button.owl-next::after {
		content: "\f061";
		font-size: 15px;
		font-family: "FontAwesome";
		transform: translate(-8%);
		margin-top: 4px;
		display: inline-block;
		width: 40px;
		height: 40px;
		z-index: 9999;
		border-radius: 50%;

	}
}


@media (min-width: 640px) {

	.slider-2 button.owl-next::after,
	.slider-2 button.owl-prev::after {
		display: none !important;
	}
}

@media (max-width: 640px) {

	.slider-2 button.owl-next>img,
	.slider-2 button.owl-prev>img {
		display: none;
	}
}



/* =======================================================================================video  */
.video-play .overlay {
	opacity: 0;
}

.video-play:hover .overlay {
	opacity: 1 !important;
}

.video-item.video-play button {
	display: none;
}

.class-item:not(:first-child) {
	border-top: 1px solid #dbdbdb;
}


/* Show the panel when checkbox is checked */
#togglePanel:checked+#phonePanel {
	right: 0;
}

form span.wpcf7-spinner {
	margin: 0 auto !important;
	display: block;
	width: 24px !important;
	margin-top: 10px !important;
}


body .wpcf7-form input[type="checkbox"] {
	appearance: checkbox !important;
	-webkit-appearance: checkbox !important;
	width: 20px;
	border: 2px;
}

/* -----------------------------------------------------  */
.exp-content-wrapper .item-4 ol {
	list-style: none;
	counter-reset: item;
}

.exp-content-wrapper .item-4 ol li {
	counter-increment: item;
	position: relative;
	padding-left: 120px;
}

.exp-content-wrapper .item-4 ol li::before {
	content: counter(item, decimal-leading-zero);
	position: absolute;
	left: 0;
	background-color: #1F53A6;
	height: 100%;
	width: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 60px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	font-family: Playfair Display;

}

.exp-content-wrapper .item-4 ol li:nth-child(odd)::before {
	background-color: #00A3C8;
}

.wpcf7-not-valid-tip {
	display: none !important;
}

/* form date */
.custom-date {
	background: url('/wp-content/uploads/2025/06/calendar-03.webp') no-repeat right 20px center / 20px, #fff;

}

.error-msg {
	color: red;
	font-size: 0.9em;
	display: none;
	margin-top: 4px;
}

input.error,
select.error {
	border: 1px solid red;
}

input.valid,
select.valid {
	border: 1px solid green;
}

.expertise_form input[type="submit"],
.scan_form input[type="submit"] {
	font-size: 18px !important;
	font-weight: 400 !important;
}

.expertise_form .wpcf7-list-item-label,
.scan_form .wpcf7-list-item-label {
	font-size: 16px;
}

.def-slider .owl-nav .owl-prev {
	margin-right: 14px;
}

/* Email input styling */
.footer_form input[type="email"] {
	flex: 1;
	font-size: 14px;
	font-weight: 600;
	font-family: 'DM Sans', sans-serif;
	background-color: transparent;
	border: none;
	outline: none;
	padding: 12px 24px;
	color: #6b7280;
}

.footer_form input[type="email"]::placeholder {
	color: #9ca3af;
}

/* Submit button styling */
.footer_form .cf7-submit-button {
	background-color: #1F53A6;
	color: white;
	border: none;
	border-radius: 9999px;
	padding: 12px 24px;
	font-size: 12px;
	font-weight: 500;
}

@media (min-width: 768px) {
	.footer_form .cf7-submit-button {
		font-size: 16px;
		padding: 10px 24px;
	}
}

@media (min-width: 1280px) {
	.footer_form .cf7-submit-button {
		font-size: 20px;
		padding: 8px 24px;
	}
}

/* ------------------------------------------------------------------ Coming Soon  */
.coming-soon {
	position: relative;
	min-width: 102px;
}

.coming-soon:after {
	content: "Coming Soon";
	color: #1F53A6;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.coming-soon:hover:after {
	opacity: 1;
	visibility: visible;
}

.wpcf7 form .wpcf7-response-output {
	border: none !important;
}

/* -------------------------------------------------------------------- Select */
select option:not([value]),
select option[value=""] {
	color: #D4D4D4
}

select:invalid {
	color: #D4D4D4
}

select>option {
	color: #000
}

select {
	color: #D4D4D4 !important
}



.cf7-full_select {
	background-image: url('/wp-content/uploads/2025/08/download-21.webp');
}


/* ---------------------------------------------------------- Upload resume  */
.resume-input {
	position: absolute;
	left: -9999px;
}


.resume-upload-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	border: 1px solid #ccc;
	border-radius: 9999px;
	font-weight: 400;
	color: #999;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.resume-upload-btn.file-selected {
	border-color: #000;
	color: #000;
}



.upload-icon {
	width: 14px;
	height: 14px;
}


.resume-remove {
	background: none;
	border: none;
	color: #999;
	font-size: 14px;
	cursor: pointer;
	margin-left: auto;
}



/* ------------------------------------------------------------------ Career */

.my-list {
	padding: 1.5rem;
}

.my-list ul {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1rem;
	color: #ffffff;
	font-size: 16px;
	font-family: 'DM Sans', sans-serif;
	border-radius: 25px;
}

@media (min-width: 768px) {
	.my-list ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.my-list ul>li {
	position: relative;
	padding-left: 2rem;
	margin-top: 0.5rem;
	font-size: 16px;
	list-style: none;
}

@media (min-width: 1280px) {
	.my-list {
		padding: 40px 56px;
	}

	.my-list ul>li {
		font-size: 20px;
	}
}

/* Bullet Circle */
.my-list ul>li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.25rem;
	width: 1rem;
	height: 1rem;
	border-radius: 9999px;
	background-color: #ffffff;
}

/* Checkmark inside circle */
.my-list ul>li::after {
	content: "✓";
	position: absolute;
	top: 0.25rem;
	left: 4px;
	font-size: 10px;
	color: #1F53A6;
	font-weight: bold;
}

.filters {
	margin-top: 1.5rem;
}

@media (min-width: 1280px) {
	.filters {
		margin-top: 2.5rem;
	}
}

.filters .active {
	background-color: #1F53A6;
	color: #fff;
	border-color: transparent;
}

.careers-cat {
	font-size: 14px;
}

@media (min-width: 1280px) {
	.careers-cat {
		font-size: 16px !important;
	}
}

.s5_content {
	max-width: 1000px;
}

@media (min-width: 768px) {
	.s5_content {
		margin-left: auto;
		margin-right: auto;
	}
}


.culture_content {
	align-items: flex-start;
}

.culture_content p {
	text-align: left;
	font-weight: 200 !important;
}

@media (min-width: 768px) {
	.culture_content {
		align-items: center;
	}

	.culture_content p {
		text-align: center;
		font-weight: 200 !important;
	}
}

.culture_content img {
	height: 3.5rem !important;
}



.section-list {
	width: 100%;
}

.section-6 ul {
	margin-top: 2.5rem;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1rem;
}

@media (min-width: 1280px) {
	.section-6 ul {
		width: 60%;
	}
}

@media (min-width: 768px) {
	.section-6 ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}
}

/* H2 inside container */
.section-6 h2 {
	font-size: 24px;
	font-weight: 500;
	font-family: "Playfair Display", serif;
}

@media (min-width: 1024px) {
	.section-6 h2 {
		font-size: 30px;
	}
}

@media (min-width: 1280px) {
	.section-6 h2 {
		font-size: 40px;
	}
}


.section-6 ul>li {
	background-image: url('https://bangalorehospitals.in/wp-content/uploads/2025/05/check_icon_01.png.png');
	background-repeat: no-repeat;
	background-position: 0 2px;
	background-size: 18px;
	font-size: 16px;
	padding-left: 34px;
	font-family: 'DM Sans', sans-serif;
}

@media (min-width: 1280px) {
	.section-6 ul>li {
		background-position: 0 8px;
		background-size: 20px;
		font-size: 20px;
	}
}

/* Paragraphs inside container */
.section-6 p {
	font-size: 16px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 2rem;
}

@media (min-width: 1280px) {
	.section-6 p {
		font-size: 18px;
	}
}

/* --------------------------------- Career Form */

.check-wrap label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.submit-wrap .submit-btn {
	cursor: pointer;
	display: inline-block;
	width: auto;
}

.career_form .submit-wrap .submit-btn {
	margin-top: -24px;
}


/* --------------------------------- Billing Form */
@media (min-width: 768px) {
	.cf7-wrapper-1 {
		gap: 18px;
	}
}

/* --------------------------------- Media */


.Community ol li::marker {
	background-color: #1F53A6;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 32px;
	line-height: 1;
	font-weight: 600;
	font-family: Playfair Display;
	/*     color:#fff; */
	padding: 34px 10px;
}

.Community-sld img {
	height: 100% !important;
}

.Community-sld button img {
	height: 10px !important;
}

/* -----------------------------------------------------  */
.community-wpr ol {
	list-style: none;
	counter-reset: item;
}

.community-wpr ol li {
	counter-increment: item;
	display: flex;
	align-items: center;
	column-gap: 20px;
	flex-wrap: wrap;
}

.community-wpr ol li>h4 {
	flex: 1;
}

.community-wpr ol li::before {
	content: counter(item, decimal-leading-zero);
	background-color: #1F53A6;
	height: 40px;
	width: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	font-family: Playfair Display;
}

/* 
.community-wpr ol li:nth-child(odd)::before {
background-color: #00A3C8;
} */

.community-wpr ol li>p {
	width: 100%;
}



.def-slider.Community-sld .owl-nav {
	position: absolute;
	top: 50%;
	width: 100% !important;
}

.def-slider.Community-sld .owl-nav .owl-prev {
	transform: translateX(-50%);
}

.def-slider.Community-sld .owl-nav .owl-next {
	transform: translateX(50%);
}

.blog_wrp>img.blog_img {
	height: 300px !important;
}



/* -------------------------------------------- appointment-modal */

.bh-zoho-form .zcwf_lblLeft {
	padding: 0px !important;
	max-width: 100% !important;
}

.bh-zoho-form .zcwf_lblTopBottom {
	padding: 0 !important;
}

.bh-zoho-form form {
	--input_gap: 12px;
	display: flex;
	flex-wrap: wrap;
	row-gap: var(--input_gap);
}

.bh-zoho-form .zcwf_title {
	width: 100% !important;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	padding: 0 !important;
	margin-bottom: 10px;
}

.bh-zoho-form .zcwf_row {
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	flex-direction: column;
	align-items: flex-start;
}

.bh-zoho-form .zcwf_col_lab {
	width: 100% !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	font-size: 14px !important;
	font-weight: 600;
	color: #333;
	float: none !important;
	padding: 0 !important;
	margin-bottom: 4px !important;
}

.bh-zoho-form .zcwf_col_fld {
	width: 100% !important;
	float: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="tel"],
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="number"],
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld select,
.bh-zoho-form .zcwf_col_fld input[type="text"],
.bh-zoho-form .zcwf_col_fld input[type="tel"],
.bh-zoho-form .zcwf_col_fld input[type="number"],
.bh-zoho-form .zcwf_col_fld textarea,
.bh-zoho-form .zcwf_col_fld select {
	color: #000 !important;
	width: 100% !important;
	padding: 0 18px !important;
	border: 1px solid #ccc !important;
	border-radius: 99px !important;
	font-size: 16px !important;
	transition: all 0.3s ease;
	height: 44px !important;
}

.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld select:not(.active),
.bh-zoho-form .zcwf_col_fld select:not(.active) {
	color: #9ca3af !important;
}

.bh-zoho-form .zcwf_col_fld select option:first-child {
	color: #9ca3af !important;
}

.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form .zcwf_col_fld textarea {
	height: 90px !important;
	border-radius: 20px !important;
}

.bh-zoho-form .zcwf_col_fld select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23003f95' stroke-width='2' fill='none' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 16px center;
}

.bh-zoho-form .zcwf_row:has(input[type="checkbox"]) {
	display: flex !important;
	flex-direction: row-reverse !important;
}

.bh-zoho-form .zcwf_row:has(input[type="checkbox"]) :is(.zcwf_col_lab, .zcwf_col_fld) {
	width: auto !important;
}

.bh-zoho-form .zcwf_row:has(input[type="checkbox"]) .zcwf_col_lab {
	flex: 1;
}

.bh-zoho-form .zcwf_col_fld:has(input[type="checkbox"]) {
	margin-top: 2px !important;
	margin-right: 4px !important;
}

.bh-zoho-form .zcwf_col_fld input[type="checkbox"] {
	height: 16px !important;
	width: 16px !important;
}

.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="text"]:focus,
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="tel"]:focus,
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld input[type="number"]:focus,
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld textarea:focus,
.bh-zoho-form .zcwf_lblLeft .zcwf_col_fld select:focus,
.bh-zoho-form .zcwf_col_fld input[type="text"]:focus,
.bh-zoho-form .zcwf_col_fld input[type="tel"]:focus,
.bh-zoho-form .zcwf_col_fld input[type="number"]:focus,
.bh-zoho-form .zcwf_col_fld textarea:focus,
.bh-zoho-form .zcwf_col_fld select:focus {
	outline: 1px solid #1F53A6;
}

.bh-zoho-form .zcwf_col_fld textarea {
	min-height: 60px;
	resize: vertical;
}

.bh-zoho-form .zcwf_button {
	background-color: #1F53A6 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 6px;
	padding: 6px 20px !important;
	font-size: 18px !important;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.3s ease;
	margin-right: 10px;
}

.bh-zoho-form .zcwf_button:hover {
	background-color: #0d3c8f;
}

.bh-zoho-form label span {
	color: red;
	margin-left: 3px;
}


.bh-zoho-form .zcwf_lblLeft .zcwf_button {
	max-width: 100%;
	width: 100%;
	background: #1F53A6 !important;
	font-weight: 400 !important;
	border-radius: 8px !important;
	padding: 10px 20px !important;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 44px !important;
	font-size: 18px !important;
}

.bh-zoho-form .zcwf_lblLeft .formsubmit {
	margin-right: 0px !important;
}

.bh-zoho-form .zcwf_lblLeft .zcwf_button[type="reset"] {
	display: none !important;
}

/* @media (max-width: 600px) {
	.bh-zoho-form .zcwf_row {
		flex-direction: column;
		align-items: flex-start;
	}

	.bh-zoho-form .zcwf_col_lab {
		flex: 100%;
		margin-bottom: 5px;
	}
} */

/* ---------------------------------------- Service ZOHO Form  */
.zoho-service-form.bh-zoho-form form {
	--input_gap: 14px;
	display: flex;
	flex-wrap: wrap;
	row-gap: var(--input_gap);
}

.zoho-service-form :is(.zcwf_row:has(#NAME), .zcwf_row:has(#COBJ2CF1)) {
	display: none !important;
}

.bh-zoho-form.zoho-service-form .zcwf_row {
	padding: 0 calc(var(--input_gap) / 2) !important;
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-rows: auto;
	gap: var(--input_gap);
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) div:has(select) {
	display: flex;
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) select {
	flex: 1;
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) select:not(:first-child, :last-child) {
	border-radius: 0 !important;
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) select:first-child {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) select:last-child {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.bh-zoho-form.zoho-service-form .zcwf_lblLeft {
	padding: 0px !important;
	background-color: transparent !important;
}

.bh-zoho-form.zoho-service-form .zcwf_lblLeft .zcwf_title {
	display: none !important;
}

.bh-zoho-form.zoho-service-form .zcwf_row:has(#COBJ2CF2),
#COBJ2CF2 {
	display: none;
}

.bh-zoho-form.zoho-service-form .zcwf_col_lab:not(:has(label[for="COBJ2CF116"])) {
	display: none;
}

.bh-zoho-form.zoho-service-form .zcwf_row:has(input[type="checkbox"]) .zcwf_col_lab {
	display: block !important;
}

@media only screen and (min-width: 600px) {

	.zoho-service-form :is(.zcwf_row:has(#COBJ2CF3),
		.zcwf_row:has(#COBJ2CF4),
		.zcwf_row:has(#COBJ2CF7),
		.zcwf_row:has(#COBJ2CF51)) {
		width: 50%;
	}

	.bh-zoho-form.zoho-service-form .zcwf_col_fld:has(#COBJ2CF116) {
		grid-template-columns: repeat(2, 1fr);
		column-gap: var(--input_gap);
		row-gap: 0px;
	}
}

/* --------------------------------------------------------------- Contact Form */
.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_title {
	display: none !important;
}

.bh-zoho-form.zoho-contact-form .zcwf_lblLeft {
	padding: 30px !important;
	border-radius: 20px !important;
}

.bh-zoho-form.zoho-contact-form .zcwf_col_lab {
	display: none;
}

.bh-zoho-form.zoho-contact-form form {
	--input_gap: 20px;
}

.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld select,
.bh-zoho-form.zoho-contact-form .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-contact-form .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-contact-form .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-contact-form .zcwf_col_fld textarea,
.bh-zoho-form.zoho-contact-form .zcwf_col_fld select {
	color: #000 !important;
	font-size: 20px !important;
	height: 54px !important;
	padding: 0 24px !important;
	background-color: #f1f1f1 !important;
}

.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-contact-form .zcwf_col_fld textarea {
	padding: 14px 24px !important;
	height: 120px !important;
}

.bh-zoho-form.zoho-contact-form .zcwf_lblLeft .zcwf_button {
	background: #1F53A6 !important;
	height: 54px !important;
	font-size: 20px !important;
	border-radius: 99px !important;
	font-weight: 600 !important;
	width: auto;
	padding: 0 24px !important;
	margin-top: 20px !important;
}

/* ---------------------------------------------------- Zoho Subscription Form  */
.bh-zoho-form.zoho-subscribe-form .zcwf_lblLeft .zcwf_title {
	display: none !important;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_col_lab {
	display: none;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_lblLeft {
	background-color: transparent !important;
	padding: 0 !important;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-subscribe-form .zcwf_col_fld input[type="text"] {
	font-size: 20px !important;
	height: 54px !important;
	padding: 0 24px !important;
	background-color: transparent !important;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_lblLeft .zcwf_button {
	background: #1F53A6 !important;
	height: 54px !important;
	font-size: 20px !important;
	border-radius: 99px !important;
	font-weight: 600 !important;
	width: auto;
	padding: 0 24px !important;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_row:has(#Email) {
	flex: 1;
	width: auto !important;
}

.bh-zoho-form.zoho-subscribe-form .zcwf_row:has(#formsubmit) {
	width: auto !important;
}

.bh-zoho-form.zoho-subscribe-form form {
	column-gap: 10px;
}

/* --------------------------------------------------------- International Patients Form  */
.bh-zoho-form.zoho-patients-form .zcwf_lblLeft {
	background-color: #E8F8FF !important;
	padding: 0 !important;
}

.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_title {
	display: none !important;
}

.bh-zoho-form.zoho-patients-form .zcwf_lblLeft {
	padding: 30px !important;
	border-radius: 20px !important;
}

.bh-zoho-form.zoho-patients-form .zcwf_col_lab {
	display: none;
}

.bh-zoho-form.zoho-patients-form form {
	--input_gap: 20px;
}

.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld select,
.bh-zoho-form.zoho-patients-form .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-patients-form .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-patients-form .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-patients-form .zcwf_col_fld textarea,
.bh-zoho-form.zoho-patients-form .zcwf_col_fld select {
	color: #000 !important;
	font-size: 20px !important;
	height: 54px !important;
	padding: 0 24px !important;
	background-color: #fff !important;
}

.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-patients-form .zcwf_col_fld textarea {
	padding: 14px 24px !important;
	height: 120px !important;
}

.bh-zoho-form.zoho-patients-form .zcwf_lblLeft .zcwf_button {
	background: #1F53A6 !important;
	height: 54px !important;
	font-size: 20px !important;
	border-radius: 99px !important;
	font-weight: 600 !important;
	padding: 0 24px !important;
	margin-top: 10px !important;
}



/* --------------------------------------------------------- Estimate Form  */
.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft {
	background-color: transparent !important;
	padding: 0 !important;
}

.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_title {
	display: none !important;
}

.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft {
	padding: 0 !important;
	border-radius: 0 !important;
}

.bh-zoho-form.zoho-estimate-form .zcwf_col_lab {
	display: none;
}

.bh-zoho-form.zoho-estimate-form form {
	--input_gap: 20px;
}

.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld select,
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld input[type="text"],
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld input[type="tel"],
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld input[type="number"],
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld textarea,
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld select {
	color: #000 !important;
	font-size: 20px !important;
	height: 54px !important;
	padding: 0 24px !important;
	background-color: #fff !important;
}

.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_col_fld textarea,
.bh-zoho-form.zoho-estimate-form .zcwf_col_fld textarea {
	padding: 14px 24px !important;
	height: 120px !important;
}

.bh-zoho-form.zoho-estimate-form .zcwf_lblLeft .zcwf_button {
	background: #1F53A6 !important;
	height: 54px !important;
	font-size: 20px !important;
	border-radius: 99px !important;
	font-weight: 600 !important;
	padding: 0 24px !important;
	margin-top: 10px !important;
}