@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");

@import url('materialdesignicons.min.css');

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

* {
	box-sizing: border-box;
}

*::before, *::after {
	box-sizing: border-box;
}

html {
	font-size: 14px;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}

body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	/* font-weight: 500; */
	line-height: 1.5;
	color: #7b7c93;
	text-align: left;
	background: #f8fcff;
}
/*Loader Styles Begins Here*/
.preloader {
	position: fixed;
	z-index: 50000;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgb(0 0 0/ 0.6);
	/* background: rgb(255 255 255 / .9); */
	margin: 0 auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.preloader img {
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	top: 45%;
	margin: 0 auto;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.loader {
	border: 5px solid #f3f3f3;
	border-radius: 50%;
	border-top: 5px solid #ee741d;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin { 
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform : rotate(360deg);
	}
}
@keyframes spin { 
	0% {
		transform: rotate(0deg);
	}

	100%
	{
		transform : rotate(360deg);
	}
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/*Loader Styles Ends Here*/
h1, h2, h3, h4, h5, h6 {
	color: #0f123b;
	/* font-weight: 700; */
	margin-top: 0;
	margin-bottom: 0.66em;
}

a {
	color: rgb(245, 135, 54);
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:hover {
	color: rgb(183, 93, 26);
	text-decoration: none;
}

.btn-brand-primary {
	color: #fff;
	background-color: rgb(0, 125, 158);
	border-color: rgb(0, 125, 158);
}

.btn-brand-primary:hover, .btn-brand-primary.focus, .btn-brand-primary:focus
	{
	color: #fff;
	background-color: rgb(4, 100, 125);
	border-color: rgb(4, 100, 125);
}

.btn-brand-primary.focus, .btn-brand-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(4, 100, 125, .5);
}

.btn-brand-primary:not(:disabled):not(.disabled):active {
	background-color: rgb(4, 100, 125);
	border-color: rgb(4, 100, 125);
}

.btn-outline-brand-primary {
	color: rgb(0, 125, 158);
	border-color: rgb(0, 125, 158);
}

.btn-outline-brand-primary:hover {
	color: #fff;
	background-color: rgb(0, 125, 158);
	border-color: rgb(0, 125, 158);
}

.text-brand-primary {
	color: rgb(245, 135, 54);
}

label {
	margin-bottom: .1rem;
}

label.asterisk::after {
	color: red;
	/*color: #dc3545 !important;*/
	content: " *";
}
/*Hide Input Number Arrows Begins Here */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}
/*Hide Input Number Arrows Ends Here */
.filter-white img {
	filter: brightness(0) invert(1);
	-moz-filter: brightness(0) invert(1);
	-o-filter: brightness(0) invert(1);
}

.btn {
	font-weight: 500;
	align-items: center;
	display: flex;
	justify-content: center;
	vertical-align: bottom;
	/*-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.2), 0 2px 10px 0 rgba(0,0,0,.1);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.2), 0 2px 10px 0 rgba(0,0,0,.1);
    text-transform: uppercase;
    border: 0;
    padding: .625rem 1.5rem .5rem;
    font-size: .75rem;
    line-height: 1.5;*/
}
/* .btn.active, .btn.active:focus, .btn.focus, .btn:active, .btn:active:focus, .btn:focus, .btn:hover {
    -webkit-box-shadow: 0 4px 10px 0 rgba(0,0,0,.2), 0 4px 20px 0 rgba(0,0,0,.1);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,.2), 0 4px 20px 0 rgba(0,0,0,.1);
} */
.btn.btn-floating {
	height: 35px;
	width: 35px;
	padding: 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.btn.btn-floating.btn-sm {
	height: 30px;
	width: 30px;
}

.btn.btn-floating.btn-lg {
	height: 50px;
	width: 50px;
}

.btn-icon i:before {
	font-size: 1.8rem !important;
	line-height: 1.65;
}

.btn-sm.btn-icon i:before {
	font-size: 1.5rem !important;
	line-height: 1.5;
}

.btn-lg.btn-icon i:before {
	font-size: 2rem !important;
	line-height: 1.8;
}

/*Header Menu Styles Begins*/
.main-menu {
	/*padding: 0;*/
	background: rgb(0, 129, 160) !important;
	box-shadow: 0 1px 2px rgb(0 0 0/ .5);
}

.main-menu .navbar-nav .nav-item .nav-link {
	padding: 0.25rem 1.5rem;
	display: flex;
	align-items: center;
	font-weight: 600;
}

.main-menu .navbar-nav .active>.nav-link {
	color: rgb(111, 83, 12);
	border-radius: 2rem;
	background: rgb(253, 184, 43);
}

.main-menu .navbar-nav .nav-item .nav-link i {
	/*color: rgba(255,255,255,.5);*/
	font-size: 1.5rem;
	line-height: 1.5;
	margin-right: 5px;
}
/*.main-menu .navbar-nav .nav-link:hover i {
    color: rgba(255,255,255,.75);
}*/
.main-menu .navbar-nav .active>.nav-link i {
	color: rgb(111, 83, 12);
}

@media only screen and (max-width: 767px) {
	.main-menu {
		padding: 0;
	}
	.main-menu .navbar-collapse {
		margin: .5rem 0;
	}
}
/*Header Menu Styles Ends*/

/* Tabs Design Styles Begins */
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
	color: #fff;
	background-color: #00799e;
}

.nav-pills .nav-item {
	margin-bottom: 5px;
}

.nav-pills .nav-link {
	color: #7b7c93;
	background: rgb(255, 255, 255);
	font-weight: 500;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}
/* Tabs Design Styles Ends */
/*Login Screen Styles*/
.login-screen {
	background: url(../../images/abstract-banners/login-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.login-screen, .payment-screen {
	height: 100vh;
	overflow: auto;
	-ms-flex-pack: center !important;
	justify-content: center;
	-ms-flex-align: center !important;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
}

.login-screen .logo {
	margin: 0rem auto 1.2rem;
	display: block;
}

.login-screen .doctor {
	width: 12rem;
}
/* @media screen and (max-width: 767px) {
	.login-screen .doctor {
	  width: 35%;
	}
} */
.login-screen h4 {
	color: rgb(0, 121, 158);
}

.login-screen .card.bg-light {
	/*background-color: #eaf2f5!important;*/
	/*border: 1px solid rgb(196 212 218);*/
	/*padding: 1rem;*/
	background: #fff !important;
	/* box-shadow: none; */
	border: none;
	padding: 25px;
}
/*Login Screen Styles Ends*/

/*Header Styles Begins Here*/
.topbar {
	padding: 0 1rem;
	background: rgb(255, 255, 255);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}

.topbar .nav-item {
	padding: .5rem .25rem;
}

.topbar .nav-item .nav-link {
	font-size: 1.25rem;
	align-items: center;
	padding: 0 .25rem;
	display: flex;
	position: relative;
}

.topbar .nav-item .nav-link i {
	font-size: 1.75rem;
}

.topbar.navbar-expand .navbar-nav {
	align-items: center;
}

.topbar.navbar-light .navbar-nav .nav-link {
	color: rgb(0 0 0/ 0.65);
}

.navbar-dark .navbar-nav .nav-link {
	color: rgba(255, 255, 255, .9);
}

@media ( min-width : 768px) {
	.topbar .logo {
		display: block;
		width: 30%;
	}
	.topbar .logo-icon {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.topbar .filter-option-inner-inner {
		max-width: 90px !important;
	}
}

@media screen and (max-width: 767px) {
	html {
		font-size: 12px;
	}
	.topbar .logo {
		display: none;
	}
	.topbar .navbar-brand img {
		height: 35px;
	}
	.topbar .logo-icon {
		display: block;
	}
	.topbar .nav-item .nav-link i {
		font-size: 1.5rem;
	}
	.cart h6 {
		top: -14px !important;
		right: 1px !important;
	}
	.profile-dropdown img {
		width: 25px;
		height: 25px;
	}
	#selectedCity {
		width: 100px;
	}
}

@media screen and (max-width: 767px) and (min-width: 576px) {
	.topbar .filter-option-inner-inner {
		text-overflow: ellipsis;
		white-space: nowrap;
		max-width: 100px !important;
	}
}

.topbar .filter-option-inner-inner {
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 150px;
}

.select-location {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#selectedCity {
	max-width: 200px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;	
}

.select-location h6 {
	margin: 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.select-location i {
	font-size: 1.5rem;
	margin: 0 5px;
}

.profile-dropdown img {
	width: 35px;
	height: 35px;
}

.profile-dropdown .dropdown-menu {
	font-size: 1rem;
	padding: 0;
	min-width: 12rem;
	box-shadow: 0px 16px 18px rgba(176, 184, 214, 0.2);
	border: 1px solid #e6edf3;
	z-index: 9999;
}

.profile-dropdown .dropdown-item {
	padding: 0.3rem 1.5rem;
	border-bottom: 1px solid #eceff3 !important;
	display: flex;
	align-items: center;
}

.profile-dropdown .dropdown-item i {
	color: #828fa3;
	font-size: 20px;
	margin-right: .5rem;
}

.dropdown-menu-arrow.dropdown-menu-right:before, .dropdown-menu-arrow.dropdown-menu-left:before
	{
	content: '';
	position: absolute;
	top: -10px;
	left: 15px;
	border-bottom: 10px solid #eff0f6;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.dropdown-menu-arrow.dropdown-menu-right:after, .dropdown-menu-arrow.dropdown-menu-left:after
	{
	content: '';
	position: absolute;
	top: -8.5px;
	left: 16px;
	border-bottom: 10px solid #fff;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.dropdown-menu-arrow.dropdown-menu-right:before, .dropdown-menu-arrow.dropdown-menu-right:after
	{
	left: auto;
	right: 12px;
}

.profile-dropdown:hover .dropdown-menu {
	display: block;
	animation-name: fadein;
	-webkit-animation-duration: .2s;
	-moz-animation-duration: .2s;
	-ms-animation-duration: .2s;
	-o-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}

@keyframes fadein {
	from { opacity:0;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 1;
		transform: none;
		transform: translate3d(0, 0, 0);
	}

}
/*.navbar.title-bar .container, .navbar.title-bar .container-fluid, .navbar.title-bar .container-lg, .navbar.title-bar .container-md, .navbar.title-bar .container-sm, .navbar.title-bar .container-xl {
    padding: 0.5rem 1rem;
    justify-content: flex-start;
}
@media (max-width: 575px) {
    .navbar.title-bar .container, .navbar.title-bar .container-fluid, .navbar.title-bar .container-lg, .navbar.title-bar .container-md, .navbar.title-bar .container-sm, .navbar.title-bar .container-xl {
        margin: 0px -15px;
    }
}*/
.title-bar {
	padding: 0.5rem 0;
}

.title-bar h4 {
	color: rgb(255, 255, 255);
	line-height: inherit;
	margin: 0;
}

.title-bar .navbar-brand {
	padding: 0;
	line-height: 0.5;
	margin-right: .5rem;
}

.wallet {
	/* color: rgb(255 255 255); */
	display: flex;
	justify-content: center;
	align-items: center;
}

.wallet h6 {
	color: inherit;
	margin: 0;
	text-align: right;
}

.wallet h6 small {
	color: rgb(0 0 0/ .8);
	display: block;
}

.wallet i {
	/* font-size: 24px; */
	margin-left: .25rem;
}

.cart h6 {
	color: #fff;
	font-size: .8rem;
	line-height: 1.25;
	text-align: center;
	margin: 0;
	padding: 2px 5px;
	position: absolute;
	top: -20px;
	right: 3px;
	border-radius: 2px;
	background: #fdb82b;
}
/*Header Styles Ends*/
/* Banner Styles Begins Here */
.slick-slide img {
	width: 100%;
	/* min-height: calc(((100vw / 4) / 1.641) + 4px); */
}

.slick-prev, .slick-next {
	z-index: 1;
}

.slick-prev {
	left: 20px !important;
}

.slick-next {
	right: 20px !important;
}

.slick-dots {
	bottom: 15px !important;
}

.slick-dots li {
	margin: 0 !important;
}

.slick-dots li button::before {
	font-size: 10px !important;
	color: rgb(255, 255, 255) !important;
}

.slick-dots li.slick-active button::before {
	color: rgb(255, 255, 255) !important;
}
/* Banner Styles Ends Here */
/*Main Content Styles Begins*/
.main-content {
	min-height: calc(100vh - 138px);
	/* padding: 1rem 0; */
}

section {
	padding: 25px 0;
}

.section-header {
	padding: 15px 0 35px;
}
/* @media (min-width: 768px) {
	section {
		padding : 50px 0;
	}
} */
section.page-title {
	padding: 10px 0 !important;
	background: rgb(119, 171, 183);
}

section.page-title h2 {
	color: rgb(255, 255, 255);
	margin-bottom: 0;
}

section.page-title .breadcrumb {
	margin: 0;
	padding: 0;
	background: transparent;
}

section.page-title .breadcrumb a, .breadcrumb-item+.breadcrumb-item::before,
	section.page-title .breadcrumb-item.active {
	color: rgb(255, 255, 255);
}

section .section-title {
	text-align: center;
	margin-bottom: 50px;
}

section .section-title>i {
	font-size: 2.5rem;
	float: left;
	margin-right: 10px;
	width: 35px;
	text-align: center;
}

section .section-title h3 {
	font-size: 2.5rem;
	margin-bottom: 0;
}

section .section-title .divider {
	position: relative;
	width: 310px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

section .section-title .divider::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 75px;
	width: 60px;
	height: 1px;
	background-color: #fcb82b;
}

section .section-title .divider::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 75px;
	width: 60px;
	height: 1px;
	background-color: #fcb82b;
}

section .section-title .divider i {
	color: #fcb82b;
	font-size: 1.5rem;
}

.card {
	border: 0;
	-webkit-box-shadow: 0 0 5px rgba(24, 24, 24, .161);
	box-shadow: 0 0 5px rgba(24, 24, 24, .161);
	margin: 0 0 1rem;
	border: 1px solid #e4e4e4;
}

/* .card-header {
    background-color: hsla(0,0%,100%,0);
} */
img.icon {
	width: auto;
	height: 40px;
	margin-right: 5px;
}

.card.service-box {
	font-size: 1.2rem;
}

.card.service-box h3 {
	color: #00799e;
}

.card.service-box img {
	height: 240px;
	margin: auto;
	width: auto;
}

.card.service-box a {
	font-size: 1.5rem;
	font-weight: 500;
}

.card.service-item {
	color: inherit;
	padding: 1.25rem;
	align-items: flex-start;
	border-radius: 10px;
	border: 2px solid rgb(253 126 20/ .3);
	/* border-radius: 5px 50px; */
	transition: all ease-in .5s;
}

@media ( min-width : 768px) {
	.card.service-item {
		min-height: 200px;
	}
}

.card.service-item:hover {
	color: inherit;
	border-color: rgb(255, 255, 255);
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	/* box-shadow: 0 0 12px rgba(24,24,24,.161); */
}

.card.service-item .icon i {
	display: inline-block;
	height: 90px;
	width: 90px;
	line-height: 90px;
	background-color: #eaf7fd;
	color: #6c9dfb;
	font-size: 40px;
	border-radius: 50px;
	border: 1px dashed #a1c3fc;
	-webkit-transition: .5s;
	transition: .5s;
}

.card.service-item:hover .icon i {
	background-color: #207ef7;
	border: 1px dashed #207ef7;
	color: #fff;
}

.card.service-item img.icon {
	height: 60px;
	width: auto;
	margin-bottom: 8px;
}

.card.service-item h3 {
	font-size: 1.5rem;
	margin: 5px 0;
}

.card.service-item p.description {
	margin: 0 0 10px;
}

.card.service-item .arrow-icon {
	color: rgb(253, 126, 20);
	font-size: 2rem;
	line-height: 1;
	align-self: flex-end;
	transition: all ease-in .25s;
}

.card.service-item:hover .arrow-icon {
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
}

.card.info-box-content .card-body {
	padding: .75rem;
}

.info-box h5 {
	font-size: 1rem;
	color: rgb(0, 124, 158);
	margin: 0 0 .25rem 0;
}

.info-box-content h6 {
	/*color: rgb(167 28 95);*/
	margin: 0 0 .3rem;
}

.info-box-content .actions {
	text-align: right;
}

.info-box-content .actions a {
	display: inline-block;
	line-height: 1;
}

.info-box-content .actions a i {
	display: inline-block;
}

.info-box .about-doctor {
	margin-top: 1rem
}
/*Main Content Styles Ends*/

/* Package List Styles Begins Here */
.card.package-item {
	padding: 1.5rem;
	/* align-items: flex-start; */
	border-radius: 10px;
	margin: 10px 0 30px 0;
	cursor: pointer;
	border: 1px solid #e4e4e4;
}

.card.package-item:hover {
	color: inherit;
	box-shadow: 0 0 12px rgba(24, 24, 24, .161);
}

.card.package-item:before {
	content: '';
	width: 45px;
	height: 45px;
	left: -15px;
	top: -15px;
	position: absolute;
}

.card.package-item.premium:after {
	content: '';
	position: absolute;
	right: 8px;
	top: 8px;
	background: url(../../images/premium-icon.png) no-repeat;
	width: 25px;
	height: 25px;
	background-size: contain;
}

.card.package-item img.icon {
	height: 40px;
	width: auto;
}

.card.package-item h5 {
	line-height: 1.5;
	margin: 5px 0 5px 0;
	min-height: 52px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-transform: uppercase;
}

.card.package-item h6 {
	margin: 5px 0;
	color: #fdb813;
}

.card.package-item p.description {
	margin: 0 0 10px;
	min-height: 42px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.card.package-item .product-price {
	margin-top: 5px;
}

.card.package-item .product-price p {
	margin-bottom: 0;
}

.card.package-item .product-price p.offer-price {
	font-size: 1.2rem;
	font-weight: 600;
	color: #222;
	margin-right: .5rem;
	display: flex;
	display: -ms-flexbox !important;
}

.card.package-item .product-price p.actual-price {
	color: #aaaaaa;
	text-decoration: line-through;
}

.card.package-item .product-price p.offer {
	font-weight: 500;
	margin-left: .5rem;
	line-height: inherit;
}

.card.package-item button {
	font-size: 1.2rem;
	width: auto;
	margin-top: 10px;
	align-self: flex-end !important;
	box-shadow: none;
	background: transparent;
}

.card.package-item button.addToCart {
	color: #00799e;
	border: 1px solid #00799e;
}

.card.package-item button.removeFromCart {
	color: #dc3545;
	border: 1px solid #dc3545;
}

.card.package-item button.addToCart:hover {
	color: #fff;
	background-color: #00799e;
	border-color: #00799e;
}

.card.package-item button.removeFromCart:hover {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

.card.package-item.disabled {
	background: hsl(194 100% 31%/ .2);
	opacity: .7;
}

.card.package-item.selected {
	border: 2px solid rgb(253 126 20/ .3);;
}

#useWalletAmount+label {
	margin-top: -3px;
	line-height: 1.2;
	margin-left: 5px;
	white-space: nowrap;
}

#useWalletAmount+label>span {
	font-size: 85%;
	display: block;
}

#goToCartButton {
	position: fixed;
	right: 3%;
	bottom: 6%;
	background: #00799e;
}
/* Package List Styles Ends Here */

/* Cart List Styles Begins */
ul.cart-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.cart-list>li {
	/* padding: 10px 0; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* border-bottom: 1px dashed #ccc; */
	margin-left: 15px;
}

ul.cart-list>li.member-info {
	border-bottom: 0px !important;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #cccc;
	margin-left: 0;
	margin-bottom: 5px;
}

ul.cart-list>li.member-info>div:first-child {
	display: flex;
}

ul.cart-list>li.member-info .item-price a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

ul.cart-list>li.member-info .item-price a span {
	margin-left: 5px;
}

@media ( max-width : 767px) {
	ul.cart-list>li.member-info .item-price a span {
		display: none;
	}
}

ul.cart-list>li.member-info:first-child {
	padding-top: 0 !important;
	margin-top: 0 !important;
	border-top: none !important;
}

ul.cart-list>li.member-info h5 {
	color: #fcb92f;
	margin-bottom: 0;
}

ul.cart-list>li h6, ul.cart-list>li .item-price h5 {
	margin: 0;
	text-transform: capitalize;
}

ul.cart-list>li .item-price {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	width: 230px;
	text-align: right;
}

ul.cart-list>li .item-price .removeFromCart {
	margin-left: 5px;
}

ul.cart-list>li.homecollectionfalse .hc-tag {
	display: none;
}

ul.cart-list>li.homecollectiontrue .hc-tag {
	display: block;
}

@media ( max-width : 767px) {
	ul.cart-list>li.homecollectiontrue .hc-tag {
		padding: .1rem .25rem !important;
	}
	ul.cart-list>li.homecollectiontrue .hc-tag i {
		font-size: 1.5rem;
		margin: 0 !important;
	}
	ul.cart-list>li.homecollectiontrue .hc-tag span {
		display: none;
	}
}

#cartWithItems h5>i {
	letter-spacing: -5px;
}

#homeCollectionSelectedAddress {
	line-height: 1;
	cursor: pointer;
}

#homeCollectionSelectedAddress>span {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
	width: 84%;
	vertical-align: text-top;
}

#notServiceableText {
	line-height: 1.2 !important;
	display: inherit;
	margin: .5rem 0 0 0.5rem;
}
/* Cart List Styles Ends */

/* My Orders Begins Here */
.card.order-item {
	border-radius: .25rem;
	border: 1px solid #dee2e6 !important;
	box-shadow: none;
}

.card.order-item .card-header h5 {
	margin: 0;
}

.card.order-item small {
	color: #999999;
	display: block;
}
/* My Orders Ends Here */
/*Modal Close*/
.close {
	font-size: 2rem;
	line-height: 0.75;
}

/*.form-textbox:focus, .form-textarea:focus, :focus {}*/
.form-textbox:focus, .form-textarea:focus {
	border-color: #66afe9 !important;
	outline: 0;
	-webkit-box-shadow: 0 0 8px rgba(102, 175, 233, .6) !important;
	box-shadow: 0 0 8px rgba(102, 175, 233, .6) !important;
}

.appointmentSlot.disabled {
	border: 1px solid #C3CAD8;
	background-color: #F4F5F8;
	color: #C3CAD8;
	cursor: default;
}

@keyframes indicate { 
	0% {
		color: #fdb813;
		background-color: transparent;
	}

	100% {
		color : #fff;
		background-color : #fdb813;
	}
}
/*Appointment Slots Styles Ends Here*/

/*My Appointment Styles Begins Here*/
.card.appointment {
	cursor: pointer;
}

.card.appointment .block {
	padding: 1rem;
	border-bottom: 1px dashed #eeeeee;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-ms-flex-pack: space-between !important;
	justify-content: space-between !important;
	flex-wrap: wrap;
	align-items: center;
}

.card.appointment .block:last-child {
	border-bottom: none;
}

.card.appointment .block h5 small {
	display: block;
	color: #969696;
	margin-bottom: .35rem;
}

.card.appointment .block h5 {
	/*width: 30%;*/
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin: 0 .5rem 0 0;
}

.card.appointment .block h5.doctor-name {
	max-width: 50%;
}
/*My Appointment Styles Ends Here*/
/*My Appointment Details Styles Begins Here*/
/*.card.appointment-details {
  padding: 1rem;
}*/
.card.appointment-details .block {
	padding: 1rem;
	padding: 1rem;
	border-bottom: 1px dashed #eeeeee;
}

.card.appointment-details .block:last-child {
	border-bottom: none;
}

.card.appointment-details h5 small {
	width: 30%;
	display: inline-block;
}

.card.appointment-details .block h5.block-title {
	color: #a71c5f;
}

.card.appointment-details .block h5:last-child {
	margin-bottom: 0;
}

.card.appointment-details .block .prescription-thumbnail {
	width: 65px;
	min-height: 25px;
	height: auto;
	border: 1px solid rgb(0 0 0/ 10%);
	display: inline-block;
	position: relative;
}

.card.appointment-details .block .prescription-thumbnail img {
	width: 100%;
}

.remove {
	color: rgb(220, 53, 69);
	position: absolute;
	top: -9px;
	right: -8px;
}

.card.appointment-details .block.actions {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.card.appointment-details .block.actions .btn {
	margin-right: .5rem;
}
/*My Appointment Details Styles Ends Here*/

/*Accordians Styles Begins*/
.myaccordion {
	padding: 0;
	/* box-shadow: 0 0 1px rgba(0,0,0,0.1);
  border-bottom: 1px solid #EDEFF0; */
}

.myaccordion>.card, .myaccordion>.card:last-child .card-header {
	border: none;
	box-shadow: none;
	background: transparent;
}
/* .myaccordion > .card .card-body {
	padding: 1.25rem 0 0 0;
} */
.myaccordion>.card .card-header {
	padding: .75rem 0;
	/*border-bottom-color: #EDEFF0;*/
	background: transparent;
}

.myaccordion .fa-stack {
	font-size: 18px;
}

.myaccordion .card-header .btn {
	width: 100%;
	font-weight: bold;
	color: #004987;
	padding: 0;
	box-shadow: none;
	-webkit-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}

.myaccordion .card .card-header .btn .rotate-icon {
	-webkit-transition: ease-in-out .3s;
	transition: ease-in-out .3s;
}

.myaccordion .card .card-header .btn:not(.collapsed) .rotate-icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.myaccordion .card-header .btn-link:hover, .myaccordion .card-header .btn-link:focus
	{
	text-decoration: none;
	box-shadow: none;
}

.myaccordion .card-header .section-title img.icon {
	float: left;
}

.myaccordion .card-header .section-title h3 {
	font-size: 1.5rem;
	margin-bottom: 0;
	display: inline-block;
}

.myaccordion .card-header .section-title .divider {
	margin-left: 46px;
}
/*Accordians Styles Ends*/

/*Menu Styles Begins Here*/
.menu {
	border-radius: 1rem 1rem 0 0;
	background: rgb(167, 28, 95);
	position: fixed;
	bottom: -50%;
	left: 0;
	right: 0;
	transition: all 0.3s;
	z-index: 9;
}

.menu.toggle-menu {
	bottom: 50px;
}

.menu ul.navbar-nav li.nav-item {
	padding: 1rem 2rem;
	border-bottom: 1px solid rgb(189, 35, 109);
}

.menu ul.navbar-nav li.nav-item a.nav-link {
	color: rgb(255, 255, 255);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.menu ul.navbar-nav li.nav-item a.nav-link i {
	margin-right: .5rem;
	font-size: 1.2rem;
	width: 1.2rem;
	height: auto;
	display: inline-block;
}
/*Menu Styles Ends Here*/
/*Bootstrap Select Begins Here*/
.bootstrap-select.form-control .btn {
	box-shadow: none;
	height: calc(1.5em + .75rem + 2px);
	border: 1px solid #ced4da;
	background-color: #fff;
}

.bootstrap-select.form-control .btn:focus, .bootstrap-select .dropdown-toggle:focus,
	.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
	border-color: #80bdff;
	outline: 0 !important;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}
/*Bootstrap Select Ends Here*/
/*Overlay Styles Begins Here*/
.overlay:before {
	content: '';
	position: fixed;
	/*display: none;*/
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2;
	cursor: pointer;
}
/*Overlay Styles Ends Here*/
/*Footer Menu Styles Begins Here*/
footer.fixed-bottom {
	position: sticky;
	box-shadow: 0px 0px 5px 1px #c5c5c5;
	-webkit-box-shadow: 0px 0px 5px 1px #c5c5c5;
}

footer {
	color: rgb(255, 255, 255);
	font-size: 1rem;
	padding: 1.25rem 0;
	box-shadow: 16px 0 16px rgba(24, 23, 38, .06);
	background: rgb(0, 129, 160) !important;
	position: relative;
}

footer.page-footer:before {
	background: url(../../images/abstract-banners/login-bg.jpg)
		rgb(0, 129, 160);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-repeat: no-repeat;
	opacity: .3;
	background-size: cover;
}

footer .footer-widget.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	outline: none;
}

footer .footer-menu ul li {
	margin-bottom: 10px;
	position: relative;
}

.footer .footer-menu ul li a {
	color: #fff;
	padding-left: 20px;
	position: relative;
	transition: all .4s ease 0s;
}
/* footer .footer-widget.footer-menu ul li a:hover {
    padding-left: 20px;
}
footer .footer-widget.footer-menu ul li a:hover {
    padding-left: 20px;
} */
.footer-top {
	padding: 2rem 0 1rem;
}

footer .footer-widget .footer-logo {
	margin-bottom: 30px;
}

h4.footer-title {
	color: rgb(255, 255, 255);
}

.footer-contact-info .footer-address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer-contact-info .footer-address span {
	margin-right: 18px;
}

.footer-contact-info span i {
	font-size: 20px;
	color: #fff;
}

.footer-contact-info p i {
	font-size: 20px;
	margin-right: 15px;
}

footer .footer-bottom .copyright {
	border-top: 1px solid #e5f1fb;
	padding: 30px 0 10px;
	text-align: center;
}

footer a, footer a:active, footer a:hover {
	color: rgb(255, 255, 255);
}

footer .nav-pills .nav-link {
	font-size: 1rem;
	font-weight: 600;
	padding: .5rem;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

footer .nav-pills .nav-link i {
	color: #1BD741;
	font-size: 3rem;
	display: block;
}

footer .nav-pills .nav-link.active, footer .nav-pills .show>.nav-link {
	border-top: 3px solid #a71c5f !important;
	border-bottom: none !important;
}

footer .nav-pills .nav-link {
	border-top: 3px solid #ffffff;
	border-bottom: none !important;
}
/*Footer Menu Styles Ends Here*/
a.callToAction {
	padding: 10px;
	text-align: center;
	display: inline-block;
	width: 100%;
	bottom: 0;
	position: sticky;
	background: #00799e;
	display: none;
}
/* @media (min-width: 768px) {
	a.callToAction {
	    left: 50%;
	    transform: translateX(-50%);
	}
} */
a.callToAction h4 {
	font-size: 1.5rem;
	color: #ffffff;
	margin: 0;
}

span.teleNumber {
	margin-left: 5px;
}

@media ( max-width : 767px) {
	span.teleNumber {
		display: none;
	}
}
/****** Style Star Rating Widget *****/
.rating {
	border: none;
	display: inline-block;
}

.rating>input {
	display: none;
}

.rating>label:before {
	margin: 5px;
	font-size: 2em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f005";
	display: inline-block;
	/*  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;*/
}

.rating>.half:before {
	content: "\f089";
	position: absolute;
}

.rating>label {
	color: #ddd;
	float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/
.rating>input:checked ~ label, /* show gold star when clicked */ .rating:not(:checked)>label:hover,
	/* hover current star */ .rating:not(:checked)>label:hover ~ label {
	color: #FFD700;
} /* hover previous stars in list */
.rating>input:checked+label:hover,
	/* hover current star when changing rating */ .rating>input:checked ~
	label:hover, .rating>label:hover ~ input:checked ~ label,
	/* lighten current selection */ .rating>input:checked ~ label:hover ~
	label {
	color: #FFED85;
}

img.corporate-logo {
	max-height: 80px;
	max-width: 380px;
}

@media ( max-width : 767px) {
	img.corporate-logo {
		display: none;
	}
}
/* Package Card Description and Prices Removing Styles */
.flex-package .card.package-item h5, #covidCareList .card.package-item h5
	{
	min-height: auto;
	-webkit-line-clamp: 1;
}

#vaccinePackageList .card.package-item .description, #dentalPackageList .card.package-item .description,
	#covidCareList .card.package-item .description, .flex-package .card.package-item .description
	{
	margin-bottom: 0;
}

#healthChecksPackageList .card.package-item .product-price,
	#vaccinePackageList .card.package-item .product-price,
	#dentalPackageList .card.package-item .product-price, #covidCareList .card.package-item .product-price,
	#healthChecksPackageList .card.package-item .description {
	display: none !important;
}

#vaccinePackageList .card.package-item h6, #dentalPackageList .card.package-item h6,
	#covidCareList .card.package-item h6, .flex-package .card.package-item h6
	{
	display: none !important;
}

#healthChecksPackageList .card.package-item:before {
	background: url('../../images/package-icons/blood.svg') no-repeat center
		center;
	background-size: contain;
}

#vaccinePackageList .card.package-item:before {
	background: url('../../images/package-icons/vaccine.svg') no-repeat center
		center;
	background-size: contain;
	left: -20px;
}

#dentalPackageList .card.package-item:before {
	background: url('../../images/package-icons/dental.svg') no-repeat center
		center;
	background-size: contain;
}

#covidCareList .card.package-item:before {
	background: url('../../images/package-icons/covid.svg') no-repeat center
		center;
	background-size: contain;
}

.flex-package .card.package-item:before {
	background: url('../../images/package-icons/health-checkup-icon.png')
		no-repeat center center;
	background-size: contain;
	display: none;
}

.card.package-item.isHomeCollectiontrue:after {
	content: 'Home Collection Available';
	color: #fff;
	padding: 2px 12px;
	position: absolute;
	right: 0;
	top: 0;
	font-size: .8rem;
	border-radius: 0 10px 0 10px;
	background: #ee741d;
	/* background: url('../../images/package-icons/blood.svg') no-repeat center center;
    background-size: contain; */
}
/* Select City Modal Styles */
ul#selectCityListIcons {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

ul#selectCityListIcons li {
	display: inline-block;
	margin: 12px;
	cursor: pointer;
}

ul#selectCityListIcons li .icon {
	margin-bottom: 10px;
}

ul#selectCityListIcons li .icon img {
	height: auto;
	width: 65px;
}

@media ( max-width : 767px) {
	ul#selectCityListIcons li .icon img {
		height: auto;
		width: 50px;
	}
}

/* Covid Care helpline */
.subscribe-section {
	padding-bottom: 20px;
}

.subscribe-section .sec-title {
	margin-bottom: 20px;
}

.subscribe-section .subscribe-form {
	background: #ee741d;
	background: -webkit-gradient(left top, right top, color-stop(0%, #ee741d),
		color-stop(98%, #b95a17), color-stop(100%, #b95a17));
	background-image: linear-gradient(to bottom, #ee741d, #b95a17);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee741d',
		endColorstr='#b95a17', GradientType=1);
	border-radius: 60px;
	padding: 20px 35px;
	-webkit-box-shadow: 0px 23px 42px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 23px 42px rgba(0, 0, 0, 0.2);
}

.sec-title h2 {
	font-size: 28px;
	color: #fff;
	font-weight: 600;
}

@media ( max-width : 575px) {
	.subscribe-section .subscribe-form {
		padding: 20px 25px;
	}
	.sec-title h2 {
		font-size: 22px;
	}
}

@media ( max-width : 767px) {
	.subscribe-section .subscribe-form {
		padding: 20px 25px;
	}
	.sec-title h2 {
		font-size: 22px;
	}
}

h2.subscribe-form a {
	color: #fff;
}

/* My Orders and Order details styles */
/* Table Styles */
.table-sm td, .table-sm th {
	padding: .3rem .75rem;
	white-space: nowrap;
}

.table-sm td.max-width-220 {
	text-overflow: ellipsis;
	max-width: 220px;
	white-space: nowrap;
	overflow: hidden;
}

/* Order Details packages list styles */
ul#healthCheckItems {
	padding: 0;
	list-style: none;
	margin: 10px 0 0;
}

ul#healthCheckItems li {
	border-bottom: 1px dashed #ccc;
	padding: .75rem 0;
	display: flex;
	justify-content: space-between;
}

ul#healthCheckItems li:last-child {
	border: none;
}

ul#healthCheckItems li h5, ul#healthCheckItems li h6 {
	margin: 0;
}
/* Change Address List Modal Styles */
#addressesList {
	font-size: .9rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

#addressesList li {
	cursor: pointer;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 10px;
	padding: 0 10px;
}

#addressesList li:last-child {
	border-bottom: none;
}
/* Location Modal Cities List */

ul#hospitalList {
    padding: 0;
    margin: 0px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}
@media ( max-width : 991px) {
	ul#hospitalList {
	    grid-template-columns: repeat(1, 1fr);
	}
}
#hospitalList li {
    margin: 0;
    list-style: none;
}
#hospitalList li a {
	color: #666666;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
    padding: 5px 10px;
    border-radius: 5px;
    background: #e7e7e7;
    display: flex;    
}
#hospitalList li a:hover {
	color: #fff;
	border-color: rgb(0, 125, 158);
	background-color: rgb(0, 125, 158);
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

.viewallcities {
	font-size: 16px;
	color: rgb(220, 53, 88);
}

ul#cityList {
	padding: 0;
	margin-left: 20px;
}

#cityList li {
	margin: 0 3px;
	display: inline-block;
	min-width: calc(20% - 8px);
}

@media ( max-width : 575px) {
	#cityList li {
		margin: 0 3px;
		display: inline-block;
		min-width: calc(50% - 8px);
	}
}

@media screen and (max-width: 767px) and (min-width: 576px) {
	#cityList li {
		margin: 0 3px;
		display: inline-block;
		min-width: calc(33% - 8px);
	}
}

#cityList li a {
	color: #7b7c93;
	font-size: .85rem;
}

.family .card-header {
	padding: 8px 12px;
	border-bottom: 1px solid #eaeaea;
	background: none;
}

.family .card-content {
	padding: 12px;
}

.content-container {
	margin-top: 4px;
	padding-left: 14px;
	padding-right: 8px;
}

.text-muted {
	color: #525252 !important;
}

.f-w-400 {
	font-weight: 500;
}

.row.address p {
	margin-bottom: 5px;
}

.booking-confirm-swal .swal-text {
	text-align: center;
}

/* Find A Doctor Styles */
.find-doctors-banner {
	background: url(../../images/abstract-banners/green-abstract-banner.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
}

@media ( min-width : 768px) {
	.find-doctors-banner {
		padding: 100px 0;
	}
}

.find-doctors-banner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgb(57 122 189/ 33%);
}

.find-doctors-banner h2 {
	color: rgb(255, 255, 255);
	font-size: 3rem;
}

.search-wrapper {
	position: relative;
}

.search-wrapper i {
	font-size: 1.5rem;
	position: absolute;
	z-index: 2;
	display: block;
	width: 3rem;
	height: 3rem;
	line-height: 4rem;
	text-align: center;
	pointer-events: none;
	color: #aaa;
}

.search-wrapper .form-control {
	padding-left: 2.75rem;
	height: calc(1.5em + 2rem + 3px);
}

.search-wrapper .searchList {
	list-style: none;
	padding: 0;
	border: 1px solid #ececec;
	margin: 0;
	position: absolute;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	z-index: 99;
}

.search-wrapper .searchList li {
	text-align: left;
	padding: 8px 10px;
	background: #fff;
	border-bottom: 1px solid #ececec;
	cursor: pointer;
}

.search-wrapper .searchList li:last-child {
	border-bottom: none;
}

.search-wrapper .searchList li:hover {
	background: #ececec;
}

.search-wrapper .searchList li.heading {
	color: #fff;
	background: #ababab !important;
	cursor: default;
}

/* Categories Styles */
.categories-item-box {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	margin-bottom: 20px;
	background: #ffffff;
	column-gap: 15px;
	border-radius: 10px;
	padding: 10px;
	border: 1px solid rgba(0, 113, 220, .18);
}
/* .categories .col:nth-child(even) .img-background {
	background: #fdb813 !important;
}
.categories .col:nth-child(odd) .img-background {
	background: #0081a0 !important;
} */
.categories-item-box .img-background {
	background: #0081a0 !important;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 0 5px rgba(24, 24, 24, .161);
	-webkit-box-shadow: 0 0 5px rgba(24, 24, 24, .161);
	width: 50px;
}

.categories-item-box .img-background img {
	width: 100%;
	display: block;
	margin: auto;
	filter: brightness(0) invert(1);
	-webkit-filter: brightness(0) invert(1);
}
.categories-item-box:hover .img-background {
	background: #fff !important;
}
.categories-item-box:hover .img-background img {
	filter: brightness(1);
}
.categories-item-box h6 {
	font-size: 1rem;
	cursor: pointer;
	margin: 0;
}

.categories-item-box:hover h6 {
	color: #fff;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

.categories-item-box i {
	font-size: 1.2rem;
	color: #ffffff;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
	position: relative;
	left: -10px;
}

.categories-item-box:hover i {
	color: #fff;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
	left: 10px;
}
/* Doctors List */
#doctorsList .doctor-card-item .doctor-profile-img {
	display: block;
	max-width: 90px;
	margin: 0 auto 5px;
}

#doctorsList .doctor-card-item .doctor-name {
	color: #00799e;
}

#doctorsList .doctor-card-item .experiance {
	color: #fdb813;
}

.confirm-personal-details h6 small {
	display: block;
}

/*Appointment Slots Styles Begins Here*/
.appointmentFieldContainer .appointmentDates {
	margin-left: 12px;
	width: calc(100% - 324px);
	display: flex;
	flex-direction: column;
}

.appointmentFieldContainer * {
	box-sizing: border-box;
}

@media ( max-width : 500px) {
	.appointmentFieldContainer.appointmentFieldMobile:not(.isOpenMobile) .monthYearPicker,
		.appointmentFieldContainer.appointmentFieldMobile:not(.isOpenMobile) .appointmentCalendarDays
		{
		display: none;
	}
}

.appointmentField .timezonePicker {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 3;
}

.appointmentField .timezonePicker:hover+.timezonePickerName {
	background-color: #EEF3FF;
	color: #2C3345;
}

.appointmentField .timezonePickerWrapper {
	display: inline-block;
	position: relative;
}

.appointmentField .timezonePickerName {
	display: inline-flex;
	align-items: center;
	color: inherit;
	font-size: 12px;
	padding: 4px;
	pointer-events: none;
	transition: 0.3s;
	border-radius: 15px;
}

.appointmentField .timezonePickerName:before, .appointmentField .timezonePickerName:after
	{
	content: "";
	display: inline-block;
}

.appointmentField .timezonePickerName:before {
	margin-right: 7px;
	width: 16px;
	height: 16px;
	background-image:
		url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-rule='nonzero'%3E%3Cpath d='M7.952 0C3.558 0 0 3.566 0 7.96s3.558 7.96 7.952 7.96c4.402 0 7.968-3.566 7.968-7.96S12.354 0 7.952 0zm.008 14.328A6.366 6.366 0 011.592 7.96 6.366 6.366 0 017.96 1.592a6.366 6.366 0 016.368 6.368 6.366 6.366 0 01-6.368 6.368z'/%3E%3Cpath d='M8.358 3.98H7.164v4.776l4.18 2.508.596-.98L8.358 8.16z'/%3E%3C/g%3E%3C/svg%3E");
}

.appointmentField .timezonePickerName:after {
	margin-left: 5px;
	margin-right: 2px;
	width: 9px;
	align-self: flex-end;
	background-image:
		url("data:image/svg+xml,%3Csvg width='9' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M4.816 5.38L8.498.646A.4.4 0 008.182 0H.818a.4.4 0 00-.316.646L4.184 5.38a.4.4 0 00.632 0z' fill-rule='evenodd'/%3E%3C/svg%3E");
	height: 10px;
	background-repeat: no-repeat;
}

.jfCard .appointmentField .timezonePickerName:after {
	height: 13px;
}

.appointmentDate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 12px;
	font-size: 16px;
	flex-grow: 1;
}

.appointmentDateSelect {
	display: flex;
	align-items: center;
}

.appointmentDayPicker {
	flex-shrink: 1;
	display: flex;
}

.appointmentDayPickerButton {
	color: rgba(255, 255, 255, 0);
	width: 26px;
	height: 26px;
	border-width: 0;
	border-radius: 50%;
	background-color: #ECEDF3;
	background-image:
		url("data:image/svg+xml,%3Csvg width='8' height='14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.1 1.628L6.115 7 1.099 12.37a.376.376 0 00.54.521L6.9 7.256a.377.377 0 00-.001-.51L1.648 1.118a.378.378 0 00-.54-.01.373.373 0 00-.007.52z' fill='%238894AC' stroke='%238894AC' stroke-width='1.5' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 10px center;
	transition: 0.3s;
}

.appointmentDayPickerButton:hover {
	background-color: #dcdee9;
}

.appointmentDayPickerButton+.appointmentDayPickerButton {
	margin-left: 12px;
}

.appointmentDayPickerButton.prev {
	transform: rotate(180deg);
}

.appointmentSlots {
	flex-grow: 1;
	position: relative;
	overflow: auto;
	flex: 1 1 auto;
	height: 0;
	margin: 16px 0 8px;
	font-size: 14px;
	min-height: 125px;
}

.appointmentSlots-empty {
	display: flex;
	width: 100%;
	height: 100%;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.appointmentSlots-empty-container {
	padding: 24px;
	border-radius: 6px;
	background-color: #fff;
}

.appointmentSlots-empty-icon {
	width: 124px;
	height: 102px;
	background-image: url();
}

.appointmentSlots-empty-text {
	margin-top: 8px;
	font-size: 14px;
	color: #8894AC;
}

.appointmentSlotsContainer {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	height: 100%;
}

.appointmentSlot {
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(33% - 6px);
	border: 1px solid #fdb813;
	background-color: #fff;
	color: #fdb813;
	border-radius: 6px;
	text-align: center;
	font-size: 16px;
	margin-right: 6px;
	margin-bottom: 8px;
	transition: 0.3s;
	cursor: pointer;
}
.appointmentSlot.clinic-slot {
	height: 35px;
	width: calc(49% - 4px);
	font-size: 13px;
}
.appointmentSlot:not(.disabled):not(.active):hover {
	background-color: #fffaed;
}

.appointmentSlot.active {
	animation: indicate 0.2s linear forwards;
}
/*.form-textbox:focus, .form-textarea:focus, :focus {}*/
.form-textbox:focus, .form-textarea:focus {
	border-color: #66afe9 !important;
	outline: 0;
	-webkit-box-shadow: 0 0 8px rgba(102, 175, 233, .6) !important;
	box-shadow: 0 0 8px rgba(102, 175, 233, .6) !important;
}

.appointmentSlot.disabled {
	border: 1px solid #C3CAD8;
	background-color: #F4F5F8;
	color: #C3CAD8;
	cursor: default;
}

@keyframes indicate { 
	0% {
		color: #fdb813;
		background-color: transparent;
	}

	100%{
		color: #fff;
		background-color : #fdb813;
	}
}
/*Appointment Slots Styles Ends Here*/

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px) , ( min-device-width : 768px)
	and (max-device-width: 1024px) {
	/* Force table to not be like tables anymore */
	table.custom-responsive, table.custom-responsive thead, table.custom-responsive tbody,
		table.custom-responsive th, table.custom-responsive td, table.custom-responsive tr
		{
		display: block;
	}

	/* Hide table headers (but not display: none;, for accessibility) */
	table.custom-responsive thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	table.custom-responsive tr {
		border: 1px solid #ccc;
	}
	table.custom-responsive td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 10px;
	}
	table.custom-responsive td:before {
		/* Now like a table header */
		/* position: absolute; */
		font-weight: bold;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}

	/*
	Label the data
	*/
	table.custom-responsive td:nth-of-type(1):before {
		content: "Name";
	}
	table.custom-responsive td:nth-of-type(2):before {
		content: "Location";
	}
	table.custom-responsive td:nth-of-type(3):before {
		content: "Appointment Date";
	}
	table.custom-responsive td:nth-of-type(4):before {
		content: "Edoc ID";
	}
	table.custom-responsive td:nth-of-type(5):before {
		content: "Amount";
	}
	table.custom-responsive td:nth-of-type(6):before {
		content: "Status";
	}
	table.custom-responsive td:nth-of-type(7):before {
		content: "Actions";
	}
}

/* Home page Looking for Styles */
.looking-box {
	background: #FFFFFF;
	border: 1px solid #C0C9D5;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 40px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	position: relative;
	text-align: center;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.looking-box:hover {
	color: white;
	box-shadow: 0px 40px 40px rgba(196, 196, 196, 0.5);
	border: 1px solid rgba(152, 162, 176, 0.11);
	border-radius: 6px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box:before {
	border: 1px solid rgba(152, 162, 176, 0.11);
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0081a0;
	border-radius: 6px;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.looking-box:hover:before, .looking-box:focus:before, .looking-box:active:before
	{
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.looking-box .looking-box-icon {
	position: relative;
	overflow: hidden;
	display: flex;
}

.looking-box .looking-box-icon-wrap {
	background: #0081a0;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px auto;
	font-size: 40px;
	color: #fff;
	width: 90px;
	height: 90px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.looking-box:hover .looking-box-icon-wrap {
	background: #fff;
	color: #0081a0;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.looking-box .looking-box-icon-wrap i {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box:hover .looking-box-icon-wrap i {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box .looking-box-content {
	padding-bottom: 40px;
}

.looking-box .looking-box-content .looking-link h4 {
	color: #063B6F;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box:hover .looking-box-content .looking-link h4 {
	color: #fff;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box .looking-box-content p {
	margin-top: 20px;
	margin-bottom: 0px;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box:hover .looking-box-content p {
	color: #fff;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box .looking-btn {
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

.looking-box .looking-btn .btn {
	font-size: 18px;
	position: relative;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.looking-box:hover .looking-btn .btn {
	color: #0081a0;
	border: 1px solid #fff;
	background: #FFFFFF;
	box-shadow: inset 0 50px 0 0 #ffffff;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.looking-box .looking-btn .btn span {
	position: relative;
	-webkit-transition: 0.7s;
	-moz-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
}

.looking-box:hover .looking-btn .btn span {
	padding-right: 25px;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.looking-box:hover .looking-btn .btn span:after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	opacity: 0;
	top: -1px;
	right: -20px;
}

.looking-box:hover .looking-btn .btn span:after {
	opacity: 1;
	right: 0;
}

/* Home Box Second Styles */
.work-area .work-bx {
	margin-top: 30px;
}

.work-bx {
	position: relative;
	box-shadow: 0 10px 60px 0 rgba(31, 34, 120, .1);
	padding: 40px 30px;
	border-radius: 20px;
	background-color: #fff;
	transition: all .5s;
	overflow: hidden;
	z-index: 1;
}

.work-bx .work-num-bx {
	transition: all .5s;
	z-index: 9;
	font-size: 80px;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 80px;
	-webkit-text-stroke: 2px #fcba12;
	text-shadow: 0 10px 0 #fff4d7;
	color: transparent;
}

.work-bx .work-content {
	font-size: 1.2rem;
	transition: all .5s;
}

.work-bx .work-content h4 {
	color: #fcba12;
}

.work-bx .btn {
	background-color: #fcba12;
	border-color: #fcba12;
	display: inline-block;
}

.work-bx:hover .btn, .work-bx.active .btn {
	color: #fcba12;
	background-color: #fff;
	border-color: #fff;
	display: inline-block;
}

.work-bx.active:after, .work-bx:hover:after {
	height: 100%;
	top: auto;
	bottom: 0;
	transform-origin: bottom;
	-moz-transform-origin: bottom;
	-ms-transform-origin: bottom;
	-webkit-transform-origin: bottom;
	-o-transform-origin: bottom;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
}

.work-bx:after {
	content: "";
	height: 0;
	width: 100%;
	background-color: #fcba12;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	transition: all .5s;
	transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	-webkit-transform-origin: top;
	-o-transform-origin: top;
}

.work-bx.active .work-content .title, .work-bx.active .work-content p,
	.work-bx:hover .work-content .title, .work-bx:hover .work-content p {
	color: #fff !important;
}

.work-bx.active .work-num-bx, .work-bx:hover .work-num-bx {
	text-shadow: 0 10px 0 #f9d271;
	-webkit-text-stroke: 2px #fff;
}

/* Available Features Styles Begins here */
.available-features {
	background-color: rgba(0, 113, 220, 0.05);
	padding: 80px 0 80px;
}

.features-grid {
	background: #f8fcff;
	border: 1px solid rgba(0, 113, 220, .18);
	border-radius: 5px;
	padding: 30px;
	padding-bottom: 40px;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
	width: 100%;
}

.features-grid.hvr-bounce-to-bottom:before {
	background: #3e5463;
	border: 1px solid rgba(0, 113, 220, .18);
	box-shadow: 0 50px 50px rgba(0, 0, 0, .09);
	border-radius: 10px;
}

.hvr-bounce-to-bottom {
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}

.hvr-bounce-to-bottom:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0071dc;
	border-radius: 0;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before,
	.hvr-bounce-to-bottom:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
	transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}

.features-grid.hvr-bounce-to-bottom:before {
	background: #0081a0;
	border: 1px solid rgba(0, 113, 220, .18);
	box-shadow: 0 50px 50px rgba(0, 0, 0, .09);
	border-radius: inherit;
}

.features-grid-img {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, .11);
	border-radius: 5px;
	min-width: 110px;
	height: 110px;
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

.features-grid-img img {
	width: 50px;
}

.features-grid-title {
	font-weight: 600;
	font-size: 18px;
	color: #3e5463;
	margin-bottom: 42px;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

.features-grid:hover .features-grid-title {
	color: #fff;
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

/* Hover Effects Styles */
.hvr-bounce-to-right {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}

.hvr-bounce-to-right:hover {
	border-radius: 10px;
	border: 1px solid rgba(0, 113, 220, .18);
	box-shadow: 0 50px 50px rgba(0, 0, 0, .09);
	-webkit-transition: .7s;
	-moz-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}

.hvr-bounce-to-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #0081a0;
	border-radius: 6px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before,
	.hvr-bounce-to-right:active:before {
	border-radius: 10px;
	border: 1px solid rgba(0, 113, 220, .18);
	box-shadow: 0 50px 50px rgba(0, 0, 0, .09);
}

.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before,
	.hvr-bounce-to-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
	transition-timing-function: cubic-bezier(.52, 1.64, .37, .66);
}