@charset "utf-8";
/* CSS Document */

/***********************************************
Global Styles 
***********************************************/
body {	
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.75;
	color: #1f2123;
	height: 100%;
	-webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: #1f2123;
    margin-top: 0px;
	font-weight: 500;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;    
}
.h1 {
	font-size: 1.875rem;
}
.h2 {
	font-size: 1.75rem;
}
.h3 {
	font-size: 1.625rem;
}
.h4 {
	font-size: 1.5rem;
}
.h5 {
	font-size: 1.25rem;
	font-weight: 600;
}
.h6 {
	font-size: 1.125rem;
	font-weight: 700;
}
a {
	color: #2031ab;	
}
a:hover {
	color: #1f2123;
	text-decoration: none;
}
strong {
	font-weight: 600;
}
.hide-all {
	display: none;
	visibility: hidden;
}
@media (max-width: 1440px) {
    .row {
        margin-left: 0px;
        margin-right: 0px;
    }
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
    .container {
        max-width: 100%;
    }
}
@media (min-width: 1441px) {
    .container {
        max-width: 75%;
    }
}
.p-tb-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.p-tb-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.p-tb-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}
.p-lr-30 {
	padding-left: 30px;
	padding-right: 30px;
}
.p-lr-50 {
	padding-left: 50px;
	padding-right: 50px;
}
.m-t-30 {
	margin-top: 30px;
}
.m-t-50 {
	margin-top: 50px;
}
.bg-blue {
	background: #111350;
}
.bg-light-grey {
	background: #f2f4fb;
}
.bg-grey {
	background: #c2c2c8;
}
.btn-lg {
	padding: 10px 20px;
    font-size: 1.75rem;
	font-weight: 400;
	border-width: 2px;
}

/***********************************************
Header Styles 
***********************************************/
header {
    background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
	position: relative;
	z-index: 99;
}
header .logo {
    margin: 12px 0;
}
header .help,
header .help-sm {
	background: #4b5360;
    color: #fff;
	display: none;
    font-size: 1.25rem;
    font-weight: 600;
	line-height: 1.15;
	margin-right: -15px;
	margin-left: 15px;
	padding: 25px;
	height: 100px;
	text-align: center;
	width: 210px;
}
header .help-sm {
	display: block;
	width: 100%;
	margin: 0;
	padding: 20px 25px;
	height: auto;
}
header .help span,
header .help-sm span {
    font-weight: 400;
    font-size: 80%;
}
header .help-sm span {
    display: block;
}
@media (min-width: 400px) {
	header .help-sm span {
		display: inline;
	}
}

@media (min-width: 992px) {
    header .help {
        display: block;
		float: right;
    }
	header .help-sm {
        display: none;
    }
}
@media (min-width: 1441px) {
    header .help {
        margin-right: -15px;
    }
}

/* New top Bar CSS */
.topbar {
	display: flex;
}
.topbar-col:nth-child(2) {
	flex-grow: 2;
	padding: 0 0 0 15px;
}
.topbar .help a {
	color: #fff;
}
.login-tab a {
	font-weight: 600;
	color: #1f2123;
	display: inline-block;
	padding: 6px 15px;
	text-decoration: none;
	border: 2px solid #bdbec3;
	border-radius: 4px;
	margin: 0 10px 0 0;
}
@media(max-width:991px) {
	.topbar {
		flex-wrap: wrap;
	}
	.topbar-col:nth-child(2),
	.topbar-col:nth-child(4) {
		order: 4;
		width: 100%;
		margin-bottom: 20px;
		padding: 0 15px;
	}
	.topbar-col:nth-child(3) {
		margin-left: auto;
	}
}
.search-bar {
	display: flex;
}
.search-bar .col1 {
	flex-grow: 2;
	margin-right: 10px;
}
.search-bar .col3 {
	flex-basis: 100%;
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: white;
	border-color: #007bff;
}

.btn-outline-primary:active {
	color: #fff;
	background-color: white;
	border-color: #007bff;
}

.dropbtn {
	background-color: #007bff;;
	color: white;
	/*padding: 16px;*/
	font-size: 16px;
	border: none;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	text-align: left;
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {
	background-color: #ddd;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown:hover .dropbtn {
	background-color: #3e8e41;
}

.secure-bar {
	list-style: none;
	text-align: center;
	display: block;
	clear: both;
	margin: 0;
}
.secure-bar li {	
	display: inline-block;
	padding: 2px 10px;
}
.secure-bar1 {
	list-style: none;
	text-align: center;
	display: block;
	clear: both;
	margin: 0 10px 0 0;
}
.secure-bar1 li {	
	display: inline-block;
	padding: 2px 5px;
}

/* Top bAR css eNDS */


/* Style to create scroll bar in dropdown */ 
.scrollable-dropdown {
    height: auto;
    max-height:250px;  /* Increase / Decrease value as per your need */
	overflow-x: hidden;
	padding: 10px;
}
.scrollable-dropdown a {
    color: #000;
	font-size: 0.825rem;
}
.search-panel {
	background: #eee;
	border: 1px solid #ced4da;
    border-right: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.search-panel .btn {
	font-size: 0.825rem;
	padding-top: 9px;
}
.btn-search {
	background: #eee;
	border: 1px solid #ced4da;
    border-left: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
/* #login-tab {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	line-height: 45px;
}
#login-tab li {
	float: right;
	padding: 26px 0;
} 
#login-tab a {
	font-weight: 600;
	color: #1f2123;
	display: inline-block;
	padding: 15px 18px;
	text-decoration: none;
	border: 2px solid #bdbec3;
	border-radius: 4px;
	margin-right: 15px;
}

@media (max-width: 767px) {
	.search-container {
		margin-bottom: 25px;
	}
}/*

/* .login-url {
	border: none;
	margin-bottom: 15px;
} */

/***********************************************
Main Navigation menu styles 
***********************************************/
nav {
    position: relative;
    z-index: 99;
}
#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {	
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#cssmenu:after, #cssmenu > ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#cssmenu #menu-button {
	display: none;
}
#cssmenu {
    float: right;
	background: #fff;
}
#cssmenu > ul > li {
	float: left;
	padding: 26px 0;
}
#cssmenu.align-center > ul {
	font-size: 0;
	text-align: center;
}
#cssmenu.align-center > ul > li {
	display: inline-block;
	float: none;
}
#cssmenu.align-center ul ul {	
	text-align: left;
}
#cssmenu.align-right > ul > li {
	float: right;
}
#cssmenu > ul > li > a {
	font-weight: 600;
	color: #1f2123;
	padding: 15px 18px;
	text-decoration: none;
    -webkit-transition: color .15s ease;
    -moz-transition: color .15s ease;
    -ms-transition: color .15s ease;
    -o-transition: color .15s ease;
    transition: color .15s ease;
}
#cssmenu > ul > li:hover > a {
	color: #000;
}
#cssmenu > ul > li > a.login-url {
	border: 2px solid #bdbec3;
	border-radius: 4px;
}
#cssmenu > ul > li.has-sub > a {
	padding-right: 30px;
}
#cssmenu > ul > li.has-sub > a:after {
	position: absolute;
	top: 43px;
	right: 15px;
	content: '';
    border: solid #ADAEAF;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
#cssmenu ul ul {
	position: absolute;
	left: -9999px;	
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-top: 3px solid #25AAE1;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.15);
	z-index: 999;
}
#cssmenu.align-right ul ul {
	text-align: right;
}
#cssmenu ul ul li {
	height: 0;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.75s;
    -o-transition-duration: 0.75s;
    transition-duration: 0.75s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility
}
#cssmenu li:hover > ul {
	left: auto;
}
#cssmenu.align-right li:hover > ul {
	left: auto;
	right: 0;
}
#cssmenu li:hover > ul > li {
	height: 38px;	
}
#cssmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#cssmenu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}
#cssmenu ul ul li a {	
    background: #fff;
	padding: 11px 20px;
	width: 250px;
	text-decoration: none;
	color: #5a5a5a;	
    -webkit-transition: color 1.5s ease;
    -moz-transition: color 1.5s ease;
    -ms-transition: color 1.5s ease;
    -o-transition: color 1.5s ease;
    transition: color 1.5s ease
}
#cssmenu ul ul li:last-child > a, #cssmenu ul ul li.last-item > a {
	border-bottom: 0;
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
    background: #f4f4f4;
	color: #000;
}
#cssmenu ul ul li.has-sub > a:after {
	position: absolute;
	top: 14px;
	right: 11px;
	content: '';
    border: solid #ADAEAF;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
#cssmenu.align-right ul ul li.has-sub > a:after {
	right: auto;
	left: 11px;
}
#cssmenu ul ul ul li a {
    background: #fff;
    color: #5a5a5a;
}

@media all and (max-width: 767px) {
    header .col-md-3,
    header .col-md-9 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sticky-top {
        position: relative;
    }
    #cssmenu {
		width: 100%;
        position: relative;
	}
	#cssmenu ul {        
		width: 100%;
		display: none;
	}
	#cssmenu.align-center > ul {
		text-align: left;
	}
	#cssmenu ul li {
		width: 100%;
		border-top: 1px solid #f2f2fb;
		padding: 0;
	}
	#cssmenu ul ul li, #cssmenu li:hover > ul > li {
		height: auto;
	}
	#cssmenu ul li a, #cssmenu ul ul li a {
		width: 100%;
		border-bottom: 0;
		padding: 20px 10px;        
	}
	#cssmenu > ul > li > a.login-url {
		border: none;
		margin-bottom: 15px;
	}
    #cssmenu > ul > li:last-child > a {
        margin-top: 0px;
    }
	#cssmenu > ul > li {
		float: none;
	}
	#cssmenu ul ul li a {
		padding-left: 25px;
	}
	#cssmenu ul ul ul li a {
		padding-left: 35px;
	}
	#cssmenu ul ul li a,
    #cssmenu ul ul ul li a {
		background: #fff;
        color: #5a5a5a;
	}
	#cssmenu ul ul li:hover > a, #cssmenu ul ul li.active > a {
        background: #fff;
		color: #000;
	}
	#cssmenu ul ul, #cssmenu ul ul ul, #cssmenu.align-right ul ul {
		background: #fff;        
		position: relative;
		left: 0;
		width: 100%;
		margin: 0;
		text-align: left;		
		box-shadow: none;
	}
	#cssmenu > ul > li.has-sub > a:after, #cssmenu > ul > li.has-sub > a:before, #cssmenu ul ul > li.has-sub > a:after, #cssmenu ul ul > li.has-sub > a:before {
		display: none;
	}
	#cssmenu #menu-button {
		display: block;		
		height: 60px;
		color: #5a5a5a;
		cursor: pointer;		
		text-transform: uppercase;
		font-weight: 700;
        position: absolute;
        top: -80px;
        right: 45px;
	}
	#cssmenu #menu-button:after {
		position: absolute;
		top: 30px;
		left: 17px;
		display: block;
		height: 8px;
		width: 20px;
		border-top: 2px solid #5a5a5a;
		border-bottom: 2px solid #5a5a5a;
		content: '';
	}
	#cssmenu #menu-button:before {
		position: absolute;
		top: 24px;
		left: 17px;
		display: block;
		height: 2px;
		width: 20px;
		background: #5a5a5a;
		content: '';
	}
	#cssmenu #menu-button.menu-opened:after {
		top: 30px;
		border: 0;
		height: 2px;
		width: 15px;
		background: #5a5a5a;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#cssmenu #menu-button.menu-opened:before {
		top: 30px;
		background: #5a5a5a;
		width: 15px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#cssmenu .submenu-button {
		position: absolute;
		z-index: 99;
		right: 0;
		top: 0;
		display: block;
		height: 46px;
		width: 46px;
		cursor: pointer;
	}
	#cssmenu .submenu-button.submenu-opened {
		/*background: #262626;*/
	}
	#cssmenu ul ul .submenu-button {
		height: 34px;
		width: 34px;
	}
	#cssmenu .submenu-button:after {
		position: absolute;
		top: 24px;
		right: 19px;
		width: 8px;
		height: 2px;
		display: block;
		background: #ADAEAF;
		content: '';
	}
	#cssmenu ul ul .submenu-button:after {
		top: 27px;
		right: 13px;
	}
	#cssmenu .submenu-button.submenu-opened:after {
		background: #ADAEAF;
	}
	#cssmenu .submenu-button:before {
		position: absolute;
		top: 21px;
		right: 22px;
		display: block;
		width: 2px;
		height: 8px;
		background: #ADAEAF;
		content: '';
	}
	#cssmenu ul ul .submenu-button:before {
		top: 24px;
		right: 16px;
	}
	#cssmenu .submenu-button.submenu-opened:before {
		display: none;
	}
}

/***********************************************
Home Page Banner styles 
***********************************************/
/* Home Page Slider Styles */
.carousel-item {
	background: #ffccb6;
	min-height: 250px;
}
.carousel-item > img {
	min-height: 230px;
	display: none !important;
}
.carousel-caption { 
    right: 0;    
    bottom: 0;
    left: 0;
    top: 32%;
    transform: translateY(-42%);
    width: 90%;
    margin: 0 auto;
	padding: 10px 0;
    text-align: center;
}
.carousel-caption img { 
	display: block !important;
	border-radius: 100%;
	margin: 0 auto;
	height: auto !important;
}
.carousel-caption a {
	display: flex;
	width: 250px;
	justify-content: center;
	margin:  0 auto;

	background: #1a1d6d;
	padding: 15px 0px !important;
	width: 270px;
	color: #fff; 
	font-weight: 600;
	border-radius: 5px;
	border: 1px solid #1a1d6d;
	line-height: 1.25;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.7);
}
.carousel-caption span,
.carousel-caption i {
	align-self: center;
	display: inline;
}
.carousel-caption .btn {	
	font-size: 0.95rem;
	font-weight: 600;
	padding: 10px 0;
	/* text-transform: uppercase; */
	margin-top: 15px;
	transition: transform .2s;
}
.carousel-caption .btn:hover {
	color: #fff;
	transform: scale(1.1);
}
.carousel-caption .fas {
	font-size: 170%;
}
.carousel-caption .h2 {
	color: #333; 
    font-size: 1.125rem;    
    font-weight: 600;
    margin: 0 0 2px;
    line-height: 1.1;
}
.carousel-caption .h3 {
	color: #1a1d6d; 
    font-size: 1.325rem;    
    font-weight: 800;
    margin: 0 0 2px;
    line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -0.5px;
}
.carousel-caption p {
	color: #000;
	font-size: 0.9rem;
	font-weight: 500;
    margin: 0px;
	line-height: 1.1;
	display: none;
}
.carousel-caption .session-type li {	
    margin: 20px 7px 0;
	width: 85px;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.7);
}
.carousel-caption .session-type li a {
	background: #1a1d6d;
	padding: 5px 10px;
	width: auto;
	color: #fff; 
	font-weight: 600;
	border-radius: 5px;
	border: 1px solid #1a1d6d;
	line-height: 1.25;
}
.carousel-control-prev,
.carousel-control-next {
	width: 12%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
	background: #6e6962;
	background: rgba(0,0,0,0.65);
	background-image: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 5px;
}
.carousel-control-prev:hover, 
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  opacity: 0.75;
}
.carousel-control-prev-icon {
	padding: 5px 0px;
}
.carousel-control-next-icon {
	padding: 5px 14px;
}
@media (min-width: 768px) {
	.carousel-item > img {
		display: block !important;
		min-height: 250px;
	}		
	.carousel-caption .session-type {
		text-align: left;
	}
	.carousel-caption .session-type li {	
		width: 130px;
	}
	.carousel-caption .session-type li a {
		padding: 15px 10px !important;
	}
	.carousel-caption { 
		top: 35%;
		transform: translateY(-35%);
		left: 50%;
		width: 50%;
		text-align: left;
	}
	.carousel-caption a {
		margin: 0;
		width: 250px;

		display: inline-block;
	}

	.carousel-caption span,
	.carousel-caption i {
		align-self: center;
		display: block;
		margin: 10px 0;
	}
	.carousel-caption img {
		display: none !important;
	}
	.carousel-caption .btn {
		font-size: 1rem;
		padding: 0;
		margin-top: 20px;
	}
	.carousel-caption .h2 {
		font-size: 1.5rem;    
	}
	.carousel-caption .h3 {
		font-size: 1.75rem;    
	}
	.carousel-caption p {
		font-size: 1.25rem;
		display: block;
	}
	.carousel-control-prev,
	.carousel-control-next {
		width: 6%;
	}
}
@media (min-width: 992px) {
	.carousel-caption { 
		top: 45%;
		transform: translateY(-45%);
		left: 50%;
		width: 45%;
		text-align: left;
	}
}
@media (min-width: 1440px) {
	.carousel-caption { 
		top: 50%;
		transform: translateY(-50%);
		left: 50%;
		width: 45%;
	}
	.carousel-caption .h3 {
		font-size: 2.25rem;    
	}
	.carousel-caption p {
		font-size: 1.125rem;
	}
}
@media (min-width: 1920px) {
	.carousel-caption { 
		top: 57%;
		transform: translateY(-57%);
		left: 45%;
		width: 40%;		
	}
}

/*********************************************** 
Page styles 
***********************************************/
.chat-room {
	background: #1d1d2f url(../images/bg-chat-room.png) no-repeat center bottom;
	/* background-size: cover; */
	padding: 42px 0;
}
.chat-room h2 {
	font-family: 'Courgette', cursive;
	font-weight: 400;
	font-size: 2.25rem;
	letter-spacing: 2px;	
	margin: 0;
}
.chat-room p {
	margin-bottom: 0.5rem;
}
@media(max-width: 575px){
	.chat-room {
		background: #1d1d2f url(../images/bg-chat-room-mobile.png) no-repeat left bottom;
		padding: 20px 0;
	}
	.chat-room .col {
		text-align: center;
	}
	.chat-room h2,
	.chat-room .btnglow {
		margin-left: 50px;
	}
	.chat-room h2 {
		font-size: 1.875rem;
	}
	.chat-room p {
		display: none;
	}
	.btnglow {
		margin-top: 15px;
		padding: 6px 10px;
		font-size: 0.9rem;
	}
}
.btnglow {
	background-color: #117a8b;
	-webkit-border-radius: 60px;
	border-radius: 5px;
	border: none;
	color: #000;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-block;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	animation: glowing 1300ms infinite;
}
.btnglow:hover {
	color: #000;
}

@keyframes glowing {
	0% {
		background-color: #18ffcd;
		box-shadow: 0 0 5px #18ffcd;
	}
	50% {
		background-color: #18ffcd;
		box-shadow: 0 0 20px #18ffcd;
	}
	100% {
		background-color: #18ffcd;
		box-shadow: 0 0 5px #18ffcd;
	}
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 25px;
	text-align: center;
}
.page-title {
	background: #6767c7; /*#c2c2c8;*/
    padding: 15px 0;
}
.page-title h1 {
	color: #fff;
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
}
.page-title h6 {
	font-weight: 400;
	margin-top: 5px;
}
@media (min-width: 1024px) {
    .page-title h1 {
        font-size: 2.5rem;
    }
}
.hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    border-top: 3px solid rgba(0,0,0,0.15);
    width: 100px;
}

.services {
	list-style: none;
    margin: 0;
    padding: 0;
	text-align: center;
}
.services li {
	background: #fff;
	color: #000;
	font-size: 0.85rem;
	font-weight: 400;
	text-align: center;
	line-height: 1.25;
    display: inline-block;
    margin: 0 3px 10px;
	width: 130px;
	padding: 10px 5px 20px;
	vertical-align: middle;
	border-radius: 7px;
	box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.services li img {
	max-width: 100%;
	display: block;
    height: auto;
	margin: 10px auto;
}
@media (min-width: 768px){
	.services li {
		width: 140px;
	}
}
.health-issue {
	-ms-box-orient: horizontal;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}
.issue-items {
	background: #fff;
	border: 1px solid #ddd;
	flex: 0 0 98%; 
	max-width: 98%;
	margin: 65px 1% 0;
	position: relative;
	align-self: center;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0,0,0,0.18);
	transition: transform .2s;
}
.issue-items img {
	/* box-shadow: 0 5px 18px rgba(0,0,0,0.25); */
	transition: all 0.05s;
}
.issue-items:hover {
	transform: scale(1.1);
}
.issue-items:hover img {
    filter: grayscale(100%);
}
.issue-title {
	background: #192474;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	width: 80%;	
	padding: 5px 15px;
	text-align: center;
	border-radius: 5px;
	position: absolute;
	left: 10%;
	top: -20px;
	z-index: 99;
}
.issue-items:hover .issue-title {
    background: #333;
}
.issue-subtitle {
	background: #000;
	background: rgba(0,0,0,0.7);
	color: #fff;
	font-size: 0.825rem;
	font-weight: 600;
	padding: 7px;
	text-align: center;
	line-height: 1.2;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	margin: 0;
	z-index: 99;
}
.issue-subtitle1 {
	/* background: rgba(255,255,255,0.5); */
	/* color: #000;
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.2;
	padding: 15px;
	text-transform: uppercase;
	position: absolute;
	width: 42%;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 99; */

	background: rgb(213 228 255 / 1);
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 25px 70px;
    position: absolute;
    width: 120%;
    left: -10%;
    top: 0;
    margin: 0 auto;
    z-index: 99;
    text-align: center;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    height: 100px;
}
@media (min-width: 640px) {
	.issue-items {
		flex: 0 0 46%;
		max-width: 46%;
		margin: 65px 2% 0;
	}
}
@media (min-width: 1280px) {
	.issue-items {
		flex: 0 0 23%;
		max-width: 23%;
		margin: 65px 1% 0;
	}
	.issue-title {
		width: 90%;
		padding: 5px 10px;
		left: 5%;
	}
}
@media (min-width: 1440px) {
	.issue-title {
		width: 80%;
		padding: 5px 15px;
		left: 10%;
	}
}
.session-title {
	border-top: 1px solid #e4e4e9;
	padding-top: 50px;
    text-align: center;
    text-transform: uppercase;
}
.session-type {
	list-style: none;
    margin: 0;
    padding: 0;
	text-align: center;
}
.session-type li {
	background: #192474;
	text-align: center;
    display: inline-block;
    margin: 40px 10px 0;
	border-radius: 7px;
	width: 165px;
	box-shadow: 0 0 15px rgba(0,0,0,0.6);
	transition: transform .2s;
}
.session-type li a {
	color: #fff;
	text-align: center;
    display: block;
	padding: 45px 12px;
}
.session-type li:hover {
	transform: scale(1.1);
}
.session-type i {
	display: block;
	margin: 0 auto 10px;
}

.whatWeAssure .section-title {
	margin-bottom: 0px;
}
.whatWeAssure .h6 {
	font-weight: 600;
	margin-top: 15px;
}
.whatWeAssure p {
	color: #5e5e62;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 0;
}
.whatWeAssure i {
	color: #5e5e62;
}
.gallery-container .modal-header {
	padding: 1rem 1rem 0;
	border: 0px;
}
.gallery-container .modal-body {
	padding: 0 2rem 2rem;
}
.gallery-container .modal-title {
	font-size: 1.125rem;
	text-align: center;
	margin: 15px;
}
.gallery-container .modal-body img {
	display: block;
	margin: 0 auto;
	border-radius: 50%;
	max-width: 150px;
}
.gallery-container .modal-body p {
	font-size: 0.8rem;
	margin: 0;
}
.gallery-container .btn {
	margin: 15px auto 0;
	display: block;
	width: 200px;
}
.therapist,
.psychiatrist,
.photo-gallery {
	margin-bottom: 70px;
	padding-bottom: 25px;	
}
.photo-gallery {
	margin-top: 35px;
}
.gallery-inner {
	width: 92%;
	margin: 0 10px;
	text-align: center;
	cursor: pointer;	
}
.gallery-inner a {
	color: #1f2123;
}
.gallery-inner a:focus {
	outline: none;
	border: 0px;
}
.gallery-inner .therapist-title {
	font-size: 0.9rem;
	font-weight: 600;
	margin: 0;
}
.gallery-inner .therapist-ed {
	font-size: 0.8rem;
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
}
.gallery-inner img {
	border: 1px solid #e3e4e8;
	display: block;
	margin: 0 auto 7px;
	max-width: 100%;
    height: auto;
	border-radius: 7px;
}
.slick-prev-btn,
.slick-next-btn {
	background: transparent;
	color: #c9cdcf;
    position: absolute;
    top: 104%;
    display: block;
    width: 50px;
    height: 50px;
	line-height: 54px;
    cursor: pointer;
	text-align: center;
	border: 2px solid #c9cdcf;
	border-radius: 5px;
}
.slick-prev-btn {
	left: 50%;
	margin-left: -55px;
}
.slick-next-btn {
	right: 50%;
	margin-right: -55px;
}
.slick-prev-btn i,
.slick-next-btn i {
	font-size: 1.75rem;
}
.slick-prev-btn:hover,
.slick-prev-btn:focus,
.slick-next-btn:hover,
.slick-next-btn:focus {
	border-color: #929698;
    color: #929698;
    outline: none;
    background: transparent;
}
.photo-gallery .gallery-inner img {
	border: 5px solid #fff;
	display: block;
	margin: 0 auto;
	max-width: 100%;
    height: auto;
	border-radius: 0px;
	box-shadow: 0 0 15px rgba(0,0,0,0.35); 
}
.photo-gallery .slick-prev-btn,
.photo-gallery .slick-next-btn {
	background: transparent;
	color: #eee;
	border: 2px solid #eee;
}
.photo-gallery .slick-prev-btn:hover,
.photo-gallery .slick-prev-btn:focus,
.photo-gallery .slick-next-btn:hover,
.photo-gallery .slick-next-btn:focus {
	border-color: #fff;
    color: #fff;
}
.experts .card {
	border: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.experts .card-body {
	padding: 20px;
	text-align: center;
}
.experts .card-body h5,
.experts .card-body h6 {
	text-align: center;
	margin: 0 0 5px;
}
.experts .card-body h5 {
	font-size: 0.975rem;
	letter-spacing: -0.25px;
}
.experts .card-body h6 {
	font-size: 0.9rem;
	font-weight: 500;
}
.experts .card-body p {
	font-size: 0.825rem;
	margin: 0;
}
.experts img {
	display: block;
	margin: 0 auto 10px;
	max-width: 115px;
	border-radius: 50% !important;
}
.experts .modal-header {
	padding: 1rem 1rem 0;
	border: 0px;
}
.experts .modal-body {
	padding: 0 2rem 2rem;
	text-align: left;
}
.experts .modal-title {	
	margin: 15px;
	text-align: left !important;
}
.experts .modal-body p {
	font-size: 0.825rem;
	margin: 0;
}
.experts .modal-body strong {
	font-weight: 600;
}
.rating i {
	color: #FF9E00;
	font-size: 0.75rem;
}
.btn-row {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.btn-row .col {
	margin: 0 2px 5px;
}
.btn-row .btn-outline-info,
.experts .card-footer .btn-outline-info {
	border-color: #192474;
	color: #192474;
}
.btn-row .btn-outline-info:hover,
.btn-row .btn-outline-info:focus,
.experts .card-footer .btn-outline-info:hover,
.experts .card-footer .btn-outline-info:focus {
	border-color: #192474 !important;
	background: #192474 !important;
	color: #fff;
}
.btn-row .btn-sm,
.experts .card-footer .btn-sm {
	font-size: 0.7rem;
	font-weight: 600;
}

@media (min-width: 768px) {
	.experts .card-body {
		padding: 20px 20px 5px 20px;
	}
	.experts .card-body,
	.experts .card-body h5,
	.experts .card-body h6 {
		text-align: left;
	}
	.experts img {
		float: left;
		margin: 0 20px 20px 0;
	}
}

.expert-profile img {
	display: block;
	margin: 0 auto 50px;
	padding: .375rem;
    background-color: #fff;
    border-radius: 50%;
    max-width: 165px;
	height: auto;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
}
.expert-profile .btn {
	min-width: 125px;
	margin-bottom: 5px;
	padding: 0.625rem 0.75rem;
	font-size: 0.825rem;
	font-weight: 600;
	text-transform: uppercase;
}
@media (min-width: 576px) {
	.expert-profile img {
		display: inine-block;
		float: left;
		margin: 0 50px 50px 0;
	}
}
.expert-profile .social li a {
	color: #8f969f;
	background: #e6e8ea;
}
.expert-profile .social li a:hover {
	background: #5f6979;
	color: #fff;
}
.expert-profile h3,
.expert-profile h4 {
	font-size: 1.125rem;
	margin: 0 0 10px;
	letter-spacing: -0.5px;
}
.expert-profile h4 {
	font-size: 1rem;
	font-weight: 500;
}
.expert-profile h5 {
	font-size: 1.325rem;
	margin: 35px 0;
}
.expert-profile h5 span {
	background: #fff;
	display: inline-block;
	padding: 0 15px;
	margin: 0 0 0 15px;
}
.expert-profile h5::after {
	background: repeating-linear-gradient(-35deg, #fff, #fff 2px, #e6e6e6 2px, #e6e6e6 4px);
	height: 10px;
	content: "";
	width: 100%;
	position: absolute;
	top: 45px;
	left: 0;
	z-index: -10;
}
.expert-profile h5 i {
	color: #9ca1a9;
	display: inline-block;
	margin-right: 10px;
}
.skill {
	list-style: none;
	padding: 0;
	margin: 0;
}
.skill li {
	border: 1px solid #8f9396;
	display: inline-block;
	padding: 4px 12px;
	margin: 5px 2px;
}
.skill li:hover {
	background: #f1f1fb;
	cursor: pointer;
}
@media (min-width: 1440px) {
	.similar-expert {
		padding: 30px;
	}
}
.similar-expert .card-body {
	padding: 20px;
	text-align: center;
}
.similar-expert .card-body h5,
.similar-expert .card-body h6 {
	text-align: center;
	margin: 0 0 5px;
}
.similar-expert h3 {
	margin-bottom: 30px;
}
.similar-expert img {
	display: block;
	float: none;
	margin: 0 auto 10px;
	padding: .25rem;
    max-width: 100px;
}
.similar-expert .btn {
	min-width: inherit;
	margin: 3px;
	padding: 0.25rem 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: capitalize;
}
.appointment-profile {
	background: #fff;
	padding: 25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 0.25rem;
	margin-bottom: 50px;
}
.appointment-profile img {
	display: block;
	margin: 0 auto 10px;
	padding: .25rem;
    background-color: #fff;
    border-radius: 50%;
    max-width: 100px;
	height: auto;
	box-shadow: 0 0 5px rgba(0,0,0,0.25);
}
.appointment h3 {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.5px;
}
.appointment h4 {
	font-size: 1rem;
	font-weight: 500;
}
.appointment h5 {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 35px;
}
.expert-meta span:first-child {
	color: #737a82;
	font-size: 1rem;
	font-weight: 700;
	display: block;
}
.expert-meta span:last-child {
	font-size: 0.825rem;
	font-weight: 500;
} 
.expert-meta i {
	display: inline-block;
	margin-right: 5px;
} 
.row .col.c1,
.row .col.c2 {
	text-align: center;
}
.row .col.c1,
.row .col.c2,
.row .col.c3 {
	max-width: 100%;
	margin: 0;
}
.row .col.c3 {
	margin-top: 15px;
}
@media (min-width: 991px) {
	.appointment-profile img {
		margin: 0;
	}
	.row .col.c1,
	.row .col.c2 {
		text-align: left;
	}
	.row .col.c1 {
		max-width: 12%;
	}
	.row .col.c2 {
		max-width: 35%;
	}
	.row .col.c3 {
		max-width: 50%;
		margin: 0;
	}
}
.appointment .accordion .card {
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 0.25rem;
	margin-bottom: 15px;
}
.accordion .card-header {
	background: #e9ebf1;
	cursor: pointer;
	padding: 1.125rem 2.5rem;
}
.accordion .card-body {
	padding: 1.125rem;
}
.appointment p {
	font-size: 1rem;
	margin: 0;
	line-height: 1.5;
}
.appointment p.price {
	font-size: 1.75rem;
	font-weight: 500;
}
.appointment .contact-mode {
	color: #636467;
	font-size: 110%;
	font-weight: 700;
	text-transform: uppercase;
}
.appointment .card-header i,
.appointment-mode .card-body i {
	display: inline-block;
	font-size: 65%;
	color: #FF9E00;
	margin-right: 7px;
}
.appointment .btn-outline-info {
	border-color: #192474;
	border-width: 2px;
	color: #192474;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 10px 8px;
	margin-top: 10px;
	width: 100%;
}
.appointment .btn-outline-info:hover,
.appointment .btn-outline-info.focus,
.appointment .btn-outline-info:focus,
.appointment .btn-outline-info:active {
	border-color: #192474 !important;
	background: #192474 !important;
	color: #fff;
	outline: none; 
}
@media (min-width: 768px) {
	.appointment .btn-outline-info {
		margin: 0;
	}
}
.appointment-mode .card {
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 0.25rem;
}
.appointment-mode p.price,
.appointment-mode .contact-mode {
	text-align: center;
}
.appointment-mode .card-body p {
	font-size: 0.95rem;
	margin-top: 10px;
}
.appointment-mode p.small {
	font-size: 75%;
	font-weight: 600;
}
.appointment-mode .card-footer {
	border: none;
	background: #fff;
	padding: 0 1.25rem 1.25rem;
}
.appointment .btn-success {
	font-size: 0.925rem;
	font-weight: 600;
	padding: 10px 25px;
	text-transform: uppercase;
	margin: 15px 0 10px;
}
.appointment .btn-success:hover {
	background: #218838;
}
.daytab {
	border-bottom: 2px solid #6767c7;
	margin-bottom: 15px;
}
.daytab li {
	width: 12.28571%;
	text-align: center;
	margin: 0 1%;
	padding: 0 5px;
	line-height: 1.4; 
}
.daytab li a {
	color: #9a9ca0;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	padding: 5px 0;
}
.daytab li a span {
	color: #636467;
	display: block;
	text-transform: capitalize;
}
.daytab .nav-link.active, 
.daytab .show>.nav-link,
.daytab .nav-link.active span,
.daytab .show>.nav-link span {
    color: #fff;
    background-color:#6767c7;
}
.daytab .nav-link {
	border-radius: 0px;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}

.slot-time {
	width: 100%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}
.slot-time li {
	width: 12.28571%;
	text-align: center;
	text-transform: uppercase;
	margin: 3px 1%;
}
.slot-time i {
	display: inline-block;
	margin-right: 5px;
}
.slot-time li a {
	background: transparent;
	color: #636467;
	font-size: 0.85rem;
	font-weight: 500;
	display: inline-block;
	padding: 5px;
}
.slot-time a:hover,
.slot-time a.active {
	background: #666;
	color: #fff;
	border-radius: 4px;
}
@media (min-width: 768px){
	.daytab li {
		padding: 0 15px;
	}
	.daytab li a {
		font-size: 0.9rem;
		padding: 5px 10px;
	}
	.slot-time li a {
		font-size: 0.9rem;
	}
}

.package .card {
	border: none;
	background: #23235f;
	color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 0.5rem;
	text-align: center;
}
.package .card-header h5,
.package .card-body p {
	color: #fff;
}
.package .card-header {
	background-color: rgba(0,0,0,0.1);
	padding: 1.25rem;	
}
.package .card-header h5 {
	margin-bottom: 5px;
}
.package .card-body p {
	margin-top: 10px;
	font-weight: 400;
}
.package .card-body i {
	color: #7474ca;
	font-size: 2.25rem;
}
.package .card-body hr {
	border-top: 1px solid rgba(0,0,0,0.25);
}
.package .card-footer {
	border: none;
	background: transparent;
	padding: 0 1.25rem 1.25rem;
}
.package .btn {
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 10px 8px;
    width: 100%;
}

/*-------------------------*/
/*.day-cell,
.date-cell,
.slot-cell {
	width: 12.28571%;
	color: #636467;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	margin: 0 1%;
}
.date-cell-container {
	border-bottom: 2px solid #ddd;
	margin-bottom: 15px;
}
.date-cell {
	color: #1f2123;
	cursor: pointer;
	text-transform: capitalize;
	margin-bottom: 10px;
	padding: 5px 0;
}
.slot-cell {
	font-size: 0.9rem;
	margin-bottom: 10px;
}
.slot-cell i {
	display: inline-block;
	margin-right: 5px;
}
.slot-cell a {
	background: transparent;
	color: #636467;
	font-weight: 500;
	display: inline-block;
	padding: 5px 10px;
}
.slot-cell a:hover,
.slot-cell a.active {
	background: #6767c7;
	color: #fff;
	border-radius: 4px;
}*/
.booking .card {
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 0.25rem;
}
/*-------------------------*/
.booking .card-header,
.booking .card-footer,
.booking .card-body {
	padding: 30px 50px;
}
.booking h5 {
	margin: 0px !important;
}
#formLogin,
#form-Register,
#form-Register-Alt {
	display: none;
}
#login .modal-header {
	border: none;
	padding: 10px 10px 0 0;
}
#login .modal-title {
	margin-bottom: 25px;
}
#login .modal-body {
	padding: 0 70px 50px;
	text-align: center;
}
.login-area {
    background: #f2f4fb;
    min-height: 100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}
.login-area p {
	margin-top: 70px;
}
.login-box {
	background: #fff;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    width: 100%;
	text-align: center;
}
@media (min-width: 768px) {
	.login-box {
		-ms-flex: 0 0 60%;
		flex: 0 0 60%;
		max-width: 60%;
		padding: 30px 50px;
	}
}
@media (min-width: 991px) {
	.login-box {
		-ms-flex: 0 0 45%;
		flex: 0 0 45%;
		max-width: 45%;
		padding: 30px 50px;
	}
}
@media (min-width: 1440px) {
	.login-box {
		-ms-flex: 0 0 40%;
		flex: 0 0 40%;
		max-width: 40%;
		padding: 30px 100px;
	}
}
.login-box .login-form-head img {
    display: inline-block;
	margin-bottom: 15px;
}
.login-box .login-form-head h4 {
	text-transform: uppercase;
	margin-bottom: 25px;
}
.login-box .form-footer p {
	margin-top: 15px;
}
.form-gp {
    margin-bottom: 15px;
    position: relative;
}
.form-gp input {
    background: #f6f6f6;
    font-size: 0.9rem;
    width: 100%;
    height: 50px;
    line-height: 48px;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    padding-left: 40px;
    padding-right: 20px;
}

.form-gp input:focus {
    border: 1px solid #99caff;
	border-radius: 5px;
}
.form-gp input::-webkit-input-placeholder,
.form-gp input::-moz-placeholder,
.form-gp input:-ms-input-placeholder,
.form-gp input:-moz-placeholder {
    color: #1f2123;
}
.form-gp i {
    position: absolute;
    left: 15px;
    color: #737070;
    font-size: 1rem;
    top: 16px;
}
.submit-btn-area {
    text-align: center;
}
.submit-btn-area button {
    width: 100%;
    height: 50px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.submit-btn-area button:hover {
    background: #0062cc;
    color: #ffffff;
}
.submit-btn-area button i {
    margin-left: 7px;
    -webkit-transition: margin-left 0.3s ease 0s;
    transition: margin-left 0.3s ease 0s;
}
.submit-btn-area button:hover i {
    margin-left: 20px;
}
form p {
	margin-bottom: 5px;
}
.form-control {
	font-size: 0.85rem;
	height: 40px;
}
table {
	border-bottom: 2px solid #dee2e6;
}
table th,
table td {
	padding: 0.5rem !important;
}

/***********************************************
Chat Box styles 
***********************************************/
.chatBox .modal-content,
.chatBox .modal-header,
.chatBox .modal-footer {
	border: none;
	border-color: transparent;
}
.chatBox .modal-header {
	background: #333;
}
.chatBox .modal-footer {
	background: #e1e1e1;
}
.chatBox .modal-body {
	background: url(../images/bg-chat-box.jpg) no-repeat center center;
	padding: 1.5rem;
}
.chatBox .modal-title {
	color: #fff;
}
.chatBox .close {
	color: #ccc;
	text-shadow: none;
}
.chatBox .modal-footer>* {
	margin: 0;
}
.msg-box {
	width: 90%;
    height: 45px;
    padding: 10px;
    border: 1px solid #ddd;
	border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.btn-msg-submit {
	background: #28a745;
	width: 45px;
    height: 43px;
    border: none;
    color: #fff;
	border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.chat-history {
	list-style: none;
	padding: 0;
	margin: 0;
}
.chat-history li {
	clear: both;
	display: inline-block;
	list-style: none;
	padding: 0;
	margin-bottom: 5px;
	line-height: 1.25;
	width: 100%;
}
.chat-history img {
	display: inline-block;
	max-width: 70px;
	height: auto;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 6px rgba(0,0,0,0.15);
}
.chat-history li:nth-child(odd) img {
	float: left;
	margin: 0 25px 25px 0;
}
.chat-history li:nth-child(even) img {
	float: right;
	margin: 0 0 25px 25px;
}

.chat-history .chatMsg {
	background: #f1f1fb;
	font-size: 0.9rem;
	font-weight: 500;
	display: block;
	float: left;
	width: 78%;
	padding: 10px;
	border-radius: 4px;
	position: relative;
}
.chatMsg .arrow {
  	border-top: 10px solid transparent;
  	border-bottom: 10px solid transparent;  
	position: absolute;
}
.chat-history li:nth-child(even) .chatMsg {
	background: #C9EDFF;
}
.chat-history li:nth-child(even) .arrow {
  	border-top: 10px solid transparent;
  	border-bottom: 10px solid transparent;  
	border-left: 10px solid #C9EDFF;	
	top: 12px;
	right: -9px;
}
.chat-history li:nth-child(odd) .arrow {
  	border-top: 10px solid transparent;
  	border-bottom: 10px solid transparent;  
	border-right: 10px solid #f1f1fb;
	top: 12px;
	left: -9px;
}
.chat-history span.chatTime {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	color: #8c8d90;
	margin-bottom: 5px;
}

/* Static Chat Box */
#chat-box {
	width: 500px;
	margin: 0 auto;
}
.call-connect .modal-header {
	background: #828c9c;
}
.call-connect .modal-title {
	color: #fff;
}
.call-connect a {
	color: #1f2123;
}
.call-connect a:hover {
	color: #28a745;
}
.user-appointment,
.patient-list {
	background: #fff;
	padding: 15px;
	margin-top: 15px;
	box-shadow: 0 0 10px rgba(0,0,0,0.12);
	border-radius: 5px;
}
.patient-list {
	background: transparent;
	box-shadow: none;
	border-radius: 0px;
	padding: 10px 0;
	margin: 0;
	border-bottom: 1px solid #ddd;
}
.patient-list:last-child {
	border: none;
}
.user-appointment img,
.patient-list img {
	margin: 0 auto 10px;
	max-width: 75px;
	border: 4px solid #fff;
	border-radius: 50% !important;
	height: auto;
	box-shadow: 0 0 7px rgba(0,0,0,0.2);
}
.user-appointment .expert-name,
.patient-list .expert-name {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
}
.patient-list .expert-name {
	font-size: 1rem;
	font-weight: 500;
}
.user-appointment ul,
.patient-list ul {
	padding: 7px 0;
    list-style: none;
	margin: 0;
	text-align: center;
	display: flex;
	align-items: center;
}
.user-appointment li,
.patient-list li {
	display: inline-block;
	font-weight: 500;
	line-height: 1.4;
}
.user-appointment li small,
.patient-list li small {
	font-size: 0.85rem;
}
.user-appointment li:not(:last-child),
.patient-list li:not(:last-child) {
    margin-right: 5px;
}
.user-appointment .btn-circle,
.patient-list .btn-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border-width: 2px;
	padding: 0;
}
@media (min-width: 768px) {
	.user-appointment img,
	.patient-list img {
		margin: 0 10px 0 0;
	}
	.user-appointment ul,
	.patient-list ul {
		padding: 0;
		text-align: left;
	}
}
@media (min-width: 991px) {
	.user-appointment img,
	.patient-list img {
		margin: 0 20px 0 0;
	}
	.user-appointment li:not(:last-child),
	.patient-list li:not(:last-child) {
		margin-right: 10px;
	}

}
.user-appointment .btn-success,
.patient-list .btn-success {
	padding: 10px 25px;
}
.user-profile .section-title {
	font-size: 1.25rem;
	font-weight: 500; 
	margin: 30px 0 0;
	text-transform: capitalize;
	text-align: left;
}
.user-profile ul {
    list-style: none;
	margin: 0;
	padding: 0;
}
.user-profile li {
	display: inline-block;
	font-weight: 500;
}
.profile-container {
	border: 1px solid #d2d2d2;
	padding: 20px 30px;
	margin-top: 10px;
	border-radius: 7px;
}
.profile-container button {
	border: none;
}
.profile-container .row {
	margin: 0;
}
.profile-container hr {
	height: 1px;
	border: 0px;
	background: #e4e4e4;
}
.profile-container .c1,
.profile-container .c2 {
	flex: 0 0 75%;
	width: 75%;
}
.profile-container .c3 {
	flex: 0 0 25%;
	width: 25%;
}
@media(min-width:640px) {
	.profile-container .c1,
	.profile-container .c3 {
		flex: 0 0 25%;
		width: 25%;
	}
	.profile-container .c2 {
		flex: 0 0 50%;
		width: 50%;
	}
}

.terms {
	border: 1px solid #eee;
	height: 250px;
	padding: 10px 15px;
	margin-bottom: 10px;
	overflow: hidden;
	overflow-y: scroll;
	border-radius: 7px;
}
.terms ol {
	padding: 0 15px;
}
.terms ol li {
	font-size: 0.85rem;
	line-height: 1.65;
	padding-left: 15px;	
}
.terms li:not(:last-child) {
	margin-bottom: 10px;
}
#payment-terms .modal-title {
	margin: 0px;
}
#payment-terms .btn,
.feedback .btn {
	margin-top: 10px;
}

.feedback {
	background: #eee;
	padding: 20px;
}
@media(min-width:576px){
	.feedback {
		width: 500px;
	}
}
.feedback p {
	margin: 0;
}
.star-rating {
	display: flex;
	flex-direction: row-reverse;
	font-size: 1.5em;
	justify-content: space-around;
	padding: 0 .2em;
	text-align: center;
	width: 5em;
}

.star-rating input {
	 display:none;
}

.star-rating label {
	color:#a0a0a0;
	cursor:pointer;
}

.star-rating :checked ~ label {
	color: #ff8d00;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
 	color: #ff995d;
}

.medrec .user-appointment {
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    border-radius: 0px;
}
.medrec .accordion .card {
	background: #fff;
    padding: 0;
    margin-top: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.12);
    border-radius: 5px;
}
.medrec .card-header {
	background: #fff;
	cursor: pointer;
	padding: 1.125rem 2.5rem;
}
.medrec .card-body {
	background: #f3f3f3;
	padding: 1.125rem 2.5rem;
}

.patientinfo .card {
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border: none;
}
.patientinfo .card-header {
	background: rgba(0,0,0,0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	padding: 15px 20px;
}
.patientinfo .card-body {
	padding: 30px 20px;
}
.patientinfo .card-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0;
}
.patientinfo label {
	font-size: 0.8rem;
	font-weight: 500;
	margin-bottom: 0;
}
.patientinfo .form-group {
	margin-bottom: 0.5rem;
}
.patientinfo .custom-select {
	font-size: 0.9rem;
}
.patientinfo p {
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.125rem;
}

/***********************************************
Offset Slider styles 
***********************************************/
.settings-btn {
	text-align: center;
	cursor: pointer;
	position: absolute;
	top: -70px;
	right: 50px;
}
.settings-btn i {
	color: #81868e;
	font-size: 1.5rem;
	width: 50px;
	height: 50px;
	line-height: 45px;	
}
@media (min-width: 768px) {
    .settings-btn {
		display: block;
		float: right;
		margin-right: -15px;
		padding: 20px 25px 20px 0;
		width: 80px;
		position: relative;
		top: 0;
		right: 0;
    }
	.settings-btn i {
		background: #e4e4e4;
		border-radius: 50%;	
		font-size: 1.75rem;
	}
}
.offset-area {
    position: fixed;
    right: -320px;
    top: 0;
    height: 100vh;
    width: 320px;
    background: #f9f9f9;
    z-index: 9999;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s cubic-bezier(0.62, -0.01, 0.2, 0.83) 0s;
    transition: right 0.3s cubic-bezier(0.62, -0.01, 0.2, 0.83) 0s;
}
.show_hide.offset-area {
    right: 0;
}
.offset-close {
    font-size: 19px;
    position: absolute;
    right: 0;
    top: 15px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.offset-close:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.offset-header {
	background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px;
}
.offset-header h6 {
    margin-bottom: 0;
}
.offset-header i {
    background: #e6e6e6;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
}
.offset-body {
	padding: 20px 30px;
}
.offset-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.offset-content li a {
    color: #1f2123;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
}
.offset-content a i {
    display: inline-block;
    font-size: 1.125rem;
    color: #1f2123;
    margin-right: 15px;
}
.offset-content li a:hover {
    color: #777;
    text-decoration: none;
}

#grad1 {
    background-color: #f2f4fb;
    background-image: linear-gradient(120deg , #f2f4fb, #f2f4fb);
}
#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}
#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}
#msform fieldset .form-card {
    text-align: left;
    color: black;
}
#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 8px;
    box-shadow: 0px 0px 2px 2px rgb(0 0 0 / 20%);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;
    position: relative;
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}
.fs-title {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}
#msform .action-button {
    width: 100px;
    background: #28a745;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 12px;
    margin: 8px 5px;
}
/***********************************************
Footer styles 
***********************************************/
footer {
    background: #262c35;
    padding: 70px 0 35px;
}
footer .heading {
	color: #fff;
	font-weight: 600;
	font-size: 1.25rem;	
	margin-bottom: 1.75rem;
    text-transform: uppercase;
}
@media (max-width: 575px) {
	footer .heading {
		margin-bottom: 0.75rem;
		margin-top: 1.5rem;
	}
}
footer p,
footer a {
	color: #a6abb3;
    font-weight: 400;
    margin: 0;
}
footer p {
	margin: 25px 0 0;
}
footer a:hover {
	color: #fff;
}
footer ul {
    margin-bottom: 7px;
}
footer li {
    line-height: 1.75;
    margin-bottom: 10px;
}
footer li:last-child {
    margin-bottom: 0px;
}
footer .hr {
    margin-top: 30px;
    margin-bottom: 30px;
    border-top: 1px solid #40454c;
    width: 100%;
}
.social {
	margin-top: 25px;
	padding: 0;
	list-style: none;
}
.social li {
	display: inline-block;
	text-align: center;
}
.social li:not(:last-child) {
    margin-right: 5px;
}
.social li a {
	display: block;
	color: #8f969f;
	background: #363e4a;
	border-radius: 5px;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.social li a:hover {
	background: #5f6979;
	color: #fff;
}

/* Scroll up styles */
a.scrollup {
    background: #666;
	background: rgba(0,0,0,0.5);
    color: #eee;
    padding: 12px 0;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;    
}