.error{
	color: red;
}
.bg-white{
	background-color:#fff;
}
.modal {
    background-color: #0000007a;
}

.section-banner { 
	background: #f9f9f9 url(../img/search-bg.png) no-repeat bottom center;
    min-height: 500px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
}
.section-header {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h5 {
	font-size: 18px;
	color: #ee344e;
	position: relative;
	display: inline-block;
}
.section-header h5:before {
	content: "";
	position: absolute;
	left: -30px;
	top: 50%;
	width: 20px;
	height: 1px;
	background-color: #afc8e6;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.section-header h5:after {
	content: "";
	position: absolute;
	right: -30px;
	top: 50%;
	width: 20px;
	height: 1px;
	background-color: #afc8e6;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.section-header h2 {
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 600;
    color: #0168b3;
}
.section-header h2 span {
	color: #ee314e;
}
.section-header .sub-title {
    color: #393939;
    font-size: 16px;
    margin: 15px auto 0;
    line-height: 1.42;
}
.section-header p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
}
.banner-wrapper {
    margin: 0;
    max-width: 550px;
    width: 100%;
}
.banner-wrapper .banner-header {
	margin-bottom: 0px;
}
.banner-wrapper .banner-header h5 {
	font-size: 20px;
	font-weight: 600;
	color: #0e5087;
}
.banner-wrapper .banner-header h1 {
    margin-bottom: 15px;
	font-size: 40px;
	font-weight: 600;
	color: #ee344e;
}
.banner-wrapper .banner-header h1 span {
	color: #0e5087;
}
.banner-wrapper .banner-header p {
	color: #363a3d;
	margin-bottom: 0;
	line-height: 1.7;
	font-size: 16px;
}
.search-section {
	padding: 70px 0;
	background-color: #0168b3;
	position: relative;
}
.search-box h2 {
	font-size: 34px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 15px;
}
.form-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.form-col ul li {
	width: 50%;
	padding: 7px;
}
.form-col ul li input[type=submit], 
.form-col ul li .btn {
	background-color: #ee344e;
	color: #fff;
	border-color: #ee344e;
	font-weight: 600;
	transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
}
.form-col ul li input[type=submit]:hover, 
.form-col ul li .btn:hover {
	background-color: #065691;
	border-color: #065691;
	transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
}
.form-col .form-control {
	height: 50px;
}
.search-right-img {
	position: absolute;
	right: 30px;
	bottom: 0;
	text-align: right;
}
.search-right-img img {
	max-width: 75%;
}
.profile-widget {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius:10px;
    margin-bottom:30px;
    position:relative;
    -webkit-transition:all .3s ease 0s;
    -moz-transition:all .3s ease 0s;
    -o-transition:all .3s ease 0s;
    transition:all .3s ease 0s;
	padding: 15px;
}
.doc-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px;
}
.doc-img img {
    border-radius: 4px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
	transform: translateZ(0);
	-moz-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-ms-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-o-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
    width: 100%;
}
.doc-img:hover img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.profile-widget .fav-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #fff;
    width: 30px;
    height: 30px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
    border-radius: 3px;
    color: #2E3842;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
	z-index: 99;
}
.profile-widget:hover .fav-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.profile-widget .fav-btn:hover {
	background-color: #fb1612;
	color: #fff;
}
.pro-content {
    padding: 20px 0 0;
    position: relative;
}
.pro-content h5 {
	font-size: 16px;
	color: #ee344e;
	font-weight: 500;
}
.pro-content .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0168b3;
}
.profile-widget .pro-content .title a {
    display: inline-block;
}
.profile-widget .verified {
	color: #28a745;
	margin-left: 3px;
}
.profile-widget p.speciality {
    font-size: 14px;
    color: #4f4f4f;
    margin-bottom: 5px;
    min-height: 40px;
}
.rating {
    list-style: none;
    margin: 0 0 7px;
    padding: 0;
    width: 100%;
}
.rating i {
    color: #dedfe0;
}
.rating i.filled {
    color: #f4c150;
}
.profile-widget .rating {
    color: #757575;
    font-size: 14px;
    margin-bottom: 15px;
}
.profile-widget .rating i {
	font-size: 14px;
}
.available-info {
    font-size: 13px;
    color: #757575;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}
.available-info li + li {
	margin-top: 5px;
}
.available-info li i {
	width: 22px;
}
.row.row-sm {
    margin-left: -3px;
    margin-right: -3px;
}
.row.row-sm > div {
    padding-left: 3px;
    padding-right: 3px;
}
.view-btn {
    color: #ee344e;
    font-size: 13px;
    border: 2px solid #ee344e;
    text-align: center;
    display: block;
    font-weight: 500;
	padding: 6px;
}
.view-btn:hover, .view-btn:focus {
	background-color: #ee344e;
	color: #fff;
}
.book-btn {
	background-color: #ee344e;
    border: 2px solid #ee344e;
    color: #fff;
    font-size: 13px;
    text-align: center;
    display: block;
    font-weight: 500;
	padding: 6px;
}
.book-btn:hover, .book-btn:focus {
	background-color: #01cae4;
	border-color: #01cae4;
	color: #fff;
}
.popular-section {
	padding: 60px 0 40px;
	background-color: #fff5f5;
}
.solution-slider .slick-slide {
	display: block;
	margin-left: 0;
	padding: 10px;
}
.solution-slider {
	padding: 0 30px;
}
.specialities-img {
	position: absolute;
	right: 20px;
	top: -43px;
	z-index: 1;
}
.specialities-img img {
	max-width: 86px;
	border-radius: 90px;
}
.readmore-btn {
	color: #273353;
	font-size: 16px;
	display: inline-block;
	margin-top: 13px;
}
.readmore-btn i {
	color: #ee314e;
	margin-right: 3px;
}
.aboutus-section {
	padding: 70px 0;
}
.aboutus-section .section-header {
	margin-bottom: 20px;
}
.aboutus-section .section-header h5 {
	margin-left: 30px;
}
.aboutus-section .left p {
	font-size: 14px;
	line-height: 1.85;
	color: #111111;
}
.aboutus-section .right {
	text-align: right;
}
.aboutus-section .right img {
	border-radius: 15px;
}
.aboutus-section .feature-col {
	margin-top: 15px;
}
.aboutus-section .feature-box {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(159,159,159,0.17);
	border-radius: 6px;
	padding: 15px 15px 15px 100px;
	position: relative;
	margin: 8px 0;
}
.aboutus-section .feature-box h2 {
	font-size: 40px;
	color: #0168b3;
	font-weight: 600;
	margin-bottom: 3px;
}
.aboutus-section .feature-box h6 {
	font-size: 14px;
	color: #111;
}
.aboutus-section  .corner-img {
	position: absolute;
	left: 0;
	top: 0;
}
.feature-list .feature-list-box .feature-icon {
	margin-bottom: 15px;
}
.feature-list .feature-list-box h4 {
	font-size: 20px;
	font-weight: 600;
	color: #575757;
	margin-bottom: 0;
}
.feature-list .feature-list-box {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(159,159,159,0.17);
	padding: 20px;
	border-radius: 10px;
}
.feature-list-box .feature-icon {
	min-height: 75px;
}
.feature-list-box .number-col h5 {
	color: #c7c7c7;
	font-size: 20px;
	font-weight: 600;
}
.feature-list-box .plus-icon {
	color:#ee2e4f;
	font-size: 26px;
}
.testimonials {
	background-color: #fff5f5;
	padding: 210px 0 60px;
	margin-top: -124px;
}
.testimonials .slick-slide {
	margin:0px 8px;
}
.testimonials .patient-details {
	padding-left: 15px;
	margin-right: auto;
}
.testimonials .patient-details h5 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	color: #323030;
	margin-bottom: 5px;
}
.testimonials .patient-details h6 { 
	font-size: 14px;
	color: #ee2e4f;
	font-weight: 500;
	margin-bottom: 0;
}
.testimonials-item p {
	margin-bottom: 0;
}
.testimonials .slick-dots {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	-webkit-justify-content: center;
}
.testimonials .slick-dots li {
	width: 8px;
	height: 8px;
	font-size: 0;
	background-color: #0168b3;
	border-radius: 50px;
	margin: 2px;
	cursor: pointer;
	transition: ease all 0.5s;
	-webkit-transition: ease all 0.5s;
	-ms-transition: ease all 0.5s;
}
.testimonials .slick-dots li.slick-active {
	width: 23px;
	transition: ease all 0.5s;
	-webkit-transition: ease all 0.5s;
	-ms-transition: ease all 0.5s;
}
.testimonials .slick-dots button {
	border: 0;
}
.choose-us {
	padding: 60px 0;
	background-image: url(https://doccure-html.dreamguystech.com/cardiology/assets/img/choose-us.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.choose-us .section-header h5 {
	margin-left: 30px;
}
.choose-us .top-title {
	margin-bottom: 20px;
}
.choose-us .top-title span {
	font-size: 18px;
	font-weight: 600;
	color: #0168b3;
}
.choose-us .top-title img {
	margin-right: 10px;
}
.choose-us .left p {
	font-size: 14px;
}
.choose-us .choose-col {
	margin: 15px 0;
}
.blog-section {
	padding: 70px 0 40px;
}
.blog-section .row {
	margin-top: 60px;
}
.blog-widget {
	position: relative;
	margin-bottom: 30px;
}
.blog-widget .blog-img {
	overflow: hidden;
	display: inline-block;
	border-radius: 10px;
}
.blog-widget .blog-img img {
	border-radius: 10px;
	transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transition: ease all 0.5s;
	-webkit-transition: ease all 0.5s;
	-ms-transition: ease all 0.5s;
}
.blog-widget .blog-img:hover img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transition: ease all 0.5s;
	-webkit-transition: ease all 0.5s;
	-ms-transition: ease all 0.5s;
}
.blog-widget .date-col {
	position: absolute;
	top: -17px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.blog-widget .date-col span {
	background-color: #ee344e;
	border-radius: 8px;
	min-width: 206px;
	height: 35px;
	color: #fff;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	padding: 5px 10px;
}
.blog-widget .blog-content {
	background-color: #fff;
	padding: 15px 10px 15px;
	margin: -40px 20px 0;
	border-radius: 10px;
}
.blog-widget .blog-content h6 {
	color: #ee344e;
	font-size: 15px;
	margin-bottom: 20px;
}
.blog-widget .blog-content h5 {
	font-size: 20px;
	font-weight: 600;
	color: #2f2f2f;
	margin-bottom: 15px;
}
.blog-widget .blog-content p {
	color: #2f2f2f;
	margin-bottom: 5px;
	text-align: justify;
}

/*-----------end-----------------*/



/*-----------------
	15. Home
-----------------------*/

.home-banner { 
	background-image: url('../img/home-bg.png');
    min-height: 450px;
	background-size: cover;
	background-repeat: no-repeat;
    position: relative;
	padding: 150px 0;
	margin-top: -1px;
}
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 500;
}
.section-header .sub-title {
    color: #757575;
    font-size: 16px;
    max-width: 600px;
    margin: 15px auto 0;
}
.section-header p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
}
.banner-wrapper {
	align-items: center;
}
.banner-wrapper .banner-header {
	margin-bottom: 30px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: rgb(255 255 255 / 0.1);
}
.banner-wrapper .banner-header h3 {
    font-weight: 500;
    color: #fff;
}
.banner-wrapper .banner-header h1 {
	margin: 15px 0px;
    font-size: 56px;
    font-weight: 600;
    color: #fff;
	text-transform: uppercase;
	line-height: 55px;
}
.banner-wrapper .banner-header h1>span {
	font-weight: 700;
    color: #e23e56;
}
.banner-wrapper .banner-header p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 0;
}
.banner-bottom {
	position: relative;
	padding: 60px 0px 30px;
}
.banner-bottom .card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
	border: none;
}
.banner-bottom .card img {
	width: 60px;
}
.banner-bottom .care-text {
	margin-left: 20px;
}
.banner-bottom .card h2 {
	color: #232323;
	font-size: 20px;
	font-weight: 600 !important;
}
.banner-bottom .card p {
	margin: 0px;
	line-height: 20px;
	font-size: 14px;
}
.title-icon {
	font-size: 36px;
	color: #ececec;
}
.title-top {
	font-size: 16px;
	color: #e23e56;
	text-transform: uppercase;
	font-weight: 900;
	margin: 8px 0px 5px;
}
.section-title {
	font-size: 36px;
	color: #47466c;
    font-weight: 600;
    text-transform: uppercase;
}
.section-title:before {
	content: '';
    border-top: 3px solid #e23e56;
    width: 50px;
    height: 0px;
    display: block;
    position: relative;
    top: -10px;
}
.blue-text {
	color: #47466c;
	font-weight: 600;
}
.about-us {
	padding: 60px 0px;
    background-image: url(https://doccure-html.dreamguystech.com/surgery/assets/img/about-us-bg.png);
    background-size: 35% 100%;
    background-repeat: no-repeat;
    position: relative;
    margin-right: auto;
    background-position: right;
}
.about-us img {
	width: 90%;
}
.about-us .media {
	background-color: #e23e56;
    padding: 20px 30px;
    width: 85%;
    position: absolute;
    margin-top: -90px;
    color: #fff;
    right: 0;
}
.about-us .media img {
	width: 80px;
}
.about-us .media-body h5 {
	color: #fff;
	font-weight: 600;
}
.about-us .media-body p {
	font-size: 14px;
	margin-bottom: 10px;
}
.about-us .media-body a {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.about-us h3 {
	font-weight: 600;
	color: #47466c;
}
.health-care {
	background-image: url('https://doccure-html.dreamguystech.com/surgery/assets/img/health-care-bg.png');
	padding: 30px 0;
	background-size: cover;
}
.health-care img {
	width: 80px;
    margin-right: 25px;
}
.health-care .btn-primary {
	background-color: #fff;
	border-color: #fff;
	color: #202020 !important;
	font-size: 14px;
}
.health-care .btn-primary.active:not(:disabled):not(.disabled), .health-care  .btn-primary:active:not(:disabled):not(.disabled), .health-care  .show > .btn-primary.dropdown-toggle {
	color: #fff !important;
}
.health-care h3 {
	color: #fff;
    font-weight: 600;
}
.health-care p {
	color: #fff;
	margin: 0px;
}
.general-section {
	padding: 60px 0 50px;
	background-color: #f3f3f3;
}
.general-slider .slick-slide, .surgeon-slider .slick-slide {
	display: block;
	margin-left: 0;
	padding: 10px;
	width: 280px;
}
.service-img {
	width: 85%;
	position: relative;
	z-index: 99;
}
.service-img img {
	width: 100%;
	border-radius: 5px;
}
.service-name {
	background-color: #fff;
    padding: 45px 30px 20px;
    position: relative;
    width: 90%;
    margin-left: auto;
	margin-top: -30px;
	text-align: center;
}
.service-name a {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
}
.service-name a>i {
	color: #e23e56;
}
.service-name a:hover {
	color: #e23e56;
}
.watch-video {
	padding-bottom: 60px 0px 0px;
}
.video-title {
	background-color: #47466c;
	padding: 60px 0 200px;
	position: relative;
}
.watch-video .section-title {
	color: #fff;
	text-align: center;
}
.watch-video .section-title:before {
	margin: 0 auto;
}
.watch-video p {
	width: 65%;
	color: #fff;
	margin: 0 auto;
	text-align: center;
}
.video-main {
	background-color: #f3f3f3;
	padding-bottom: 50px;
}
.video-sec {
	margin: -150px 0px 50px;
	position: relative;
}
.video-sec img {
	width: 60%;
	position: relative;
}
.video-sec .play-btn {
	position: absolute;
    top: 42%;
    left: 47%;
    background-color: #fff;
    border: 10px solid #f1f1f1;
    font-size: 30px;
    padding: 20px 31px;
    border-radius: 50%;
    width: 100px;
	height: 100px;
	color: #47466c;
}
.video-sec .play-btn:hover {
	cursor: pointer;
}
.video-sec iframe {
	width: 60%;
	position: relative;
	height: 340px;
}
.counts h3 {
	text-align: center;
	color: #47466c;
}
.counts h4 {
	text-align: center;
	color: #202020;
	font-size: 20px;
	font-weight: 400;
	margin: 0px;
}
.our-surgeon {
	padding: 60px 0 50px;
}
.our-surgeon .card {
	border: none;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.1);
}
.our-surgeon .card-img-top {
	border-radius: 0px;
}
.our-surgeon .card-body {
	padding: 20px;
    text-align: center;
}
.our-surgeon .card-title {
	text-transform: uppercase;
    color: #47466c;
    font-weight: 600;
}
.our-surgeon h6 {
	background-color: #e23e56;
    color: #fff;
    font-weight: 400;
    position: relative;
    margin: 15px auto;
    width: max-content;
    padding: 6px 25px;
    text-align: center;
}
.our-surgeon .card-text {
	font-size: 14px;
    line-height: 22px;
}
.our-surgeon .btn-primary {
	box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.1);
    color: #e23e56 !important;
    background-color: #fff;
    border-color: transparent;
    padding: 10px 15px;
    position: absolute;
    left: 40%;
}
.our-customer-says {
	padding: 60px 0 50px;
	background-color: #fafafa;
}
.our-customer-says img {
	width: 85%;
}
.our-customer-says h5 {
	font-size: 15px;
    color: #e23e56;
    margin-top: 30px;
    font-weight: 500;
}
.our-customer-says h5>span {
	color: #47466c;
}
.our-customer-says h5::after {
	content: '';
    border: 2px solid #e23e56;
    width: 40px;
    display: block;
    margin-top: 60px;
}
.our-blog {
	padding: 60px 0 50px;
}
.our-blog img {
	width: 200px;
}
.our-blog .media-body h5 {
	font-size: 12px;
	color: #e23e56;
}
.our-blog .media-body p {
	font-size: 12px;
    color: #47466c;
    font-weight: 600;
    line-height: 18px;
}
.blog-img img {
	width: 100%;
}
.blog-text {
	background-color: #fff;
    padding: 15px;
    width: 90%;
    margin-left: auto;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.1);
    margin-top: -50px;
    z-index: 99;
    position: relative;
}
.blog-text h6 {
	font-size: 12px;
	color: #e23e56;
}
.our-blog h5 {
	font-size: 14px;
    color: #47466c;
    font-weight: 600;
    line-height: 18px;
}
.our-blog p {
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
}


.search-box form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}	
.search-box .form-control {
    border: 1px solid #ccc;
    box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
    border-radius: 5px;
    padding-left: 35px;
}
.search-box .search-location {
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    margin-right: 12px;
    position: relative;
    width: 240px;
}
.search-location .form-control {
	background: #fff url(../img/location.png) no-repeat 10px center;
}
.search-box .search-info {
    -ms-flex: 0 0 490px;
    flex: 0 0 490px;
    margin-right: 12px;
    position: relative;
    width: 490px;
}
.search-info .form-control {
	background: #fff url(../img/search.png) no-repeat 10px center;
}
.search-box .search-btn {
    width: 46px;
    -ms-flex: 0 0 46px;
    flex: 0 0 46px;
    height: 46px;
}
.search-box .search-btn span {
	display: none;
	font-weight: 500;
}
.search-box .form-text {
    color: #757575;
    font-size: 13px;
}
.section-specialities {
	background-color: #fff;
	padding: 60px 0 50px;
}
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 5px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 5px;
    padding: 0;
    cursor: pointer;
    color: transparent;
	border: 0;
	outline: none;
	background: #C0C0C0;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
	display: none;
    font-family: 'slick';
	font-size: 76px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '-';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
    background-color: #0de0fe;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0de0fe;
}
.slick-slide {
	outline: none !important;
}
.speicality-img {
	position: relative;
	height: 150px;
	box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
	border-radius: 100%;
	width: 150px;
	background: #fff;
}
.speicality-img img {
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
}
.speicality-img span {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
    bottom: 10px;
    right: 10px;
    box-shadow: 1px 6px 14px rgba(0,0,0,0.2);
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
}
.speicality-img span i {
    font-size: 15px;
	color:#0de0fe;
}
.speicality-item p {
    font-size: 16px;
    font-weight: 500;
    margin: 30px 0 0;
}
.section-doctor {
	background-color: #f8f9fa;
	padding: 60px 0px;
}
.section-doctor .section-header {
	margin-bottom: 30px;
}
.section-doctor .section-header p {
	margin-top: 10px;
}
.profile-widget {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius:4px;
    margin-bottom:30px;
    position:relative;
    -webkit-transition:all .3s ease 0s;
    -moz-transition:all .3s ease 0s;
    -o-transition:all .3s ease 0s;
    transition:all .3s ease 0s;
	padding: 15px;
}
.doc-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 4px;
}
.doc-img img {
    border-radius: 4px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
	transform: translateZ(0);
	-moz-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-ms-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-o-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
    width: 100%;
}
.doc-img:hover img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.profile-widget .fav-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #fff;
    width: 30px;
    height: 30px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
    border-radius: 3px;
    color: #2E3842;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
	z-index: 99;
}
.profile-widget:hover .fav-btn {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.profile-widget .fav-btn:hover {
	background-color: #fb1612;
	color: #fff;
}
.pro-content {
    padding: 13px 0 0;
}
.pro-content .title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 5px;
}
.profile-widget .pro-content .title a {
	display: inline-block;
	font-weight: 600;
}
.profile-widget .verified {
	color: #28a745;
	margin-left: 3px;
}
.profile-widget p.speciality {
    font-size: 13px;
    color: #757575;
    margin-bottom: 5px;
    min-height: 40px;
}

.profile-widget .rating {
    color: #858585;
    font-size: 14px;
    margin-bottom: 15px;
}
.profile-widget .rating i {
	font-size: 14px;
}
.available-info {
    font-size: 13px;
    color: #858585;
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}
.available-info li + li {
	margin-top: 5px;
}
.available-info li i {
	width: 22px;
	color: #032c4f;
}
.btn-view {
	color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
	padding: 10px 6px;
	width: 100%;
	background-color: #e23e56;
	border-radius: 0px;
}
.btn-view:hover {
	border-color: #e23e56;
	color: #e23e56;
	background-color: transparent;
}
.btn-book-now {
	color: #fff;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
	padding: 10px 6px;
	width: 100%;
	background-color: #032c4f;
	border-radius: 0px;
}
.btn-book-now:hover {
	border-color: #032c4f;
	color: #032c4f;
	background-color: transparent;
}



.row.row-sm {
    margin-left: -3px;
    margin-right: -3px;
}
.row.row-sm > div {
    padding-left: 3px;
    padding-right: 3px;
}
.view-btn {
    color: #e23e56;
    font-size: 13px;
    border: 2px solid #e23e56;
    text-align: center;
    display: block;
    font-weight: 500;
    padding: 6px;
}
.view-btn:hover, .view-btn:focus {
	background-color: #e23e56;
	color: #fff;
}
.book-btn {
	background-color: #032c4f;
    border: 2px solid #032c4f;
    color: #fff;
    font-size: 13px;
    text-align: center;
    display: block;
    font-weight: 500;
	padding: 6px;
}
.book-btn:hover, .book-btn:focus {
	background-color: transparent;
	border-color: #032c4f;
	color: #032c4f;
}
.section-doctor .profile-widget {
    box-shadow: 2px 2px 13px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}
.about-content p {
	font-size: 14px;
	font-weight: 400;
	line-height: 26px;
	margin: 0;
}
.about-content p + p {
	margin-top: 20px;
}
.section-features {
	background-color: #fff;
	padding: 60px 0 50px;
}
.feature-item img {
    border-radius: 100%;
    box-shadow: 1px 6px 14px rgba(0,0,0,0.2);
    height: 115px;
    object-fit: cover;
	width: 115px;
}
.feature-item p {
    font-weight: 500;
    margin: 20px 0 0;
}
.section-blogs {
    background-color: #f8f9fa;
    padding: 60px 0 50px;
}
.view-all .btn {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
}

/*---------------end---------------*/



.section-search { 
	background: #f9f9f9 url(../img/search-bg.png) no-repeat bottom center;
    min-height: 450px;
    background-size: 100% auto;
    position: relative;
    background-blend-mode: Darken;
    padding: 80px 0;
}
.section-search-1 { 
	background: #f9f9f9 url(../img/slider-bg.jpg) no-repeat bottom center;
    min-height: 450px;
    position: relative;
    background-blend-mode: Darken;
}
.section-search-2 { 
	background: #4d72d0 url(../img/pattern.html) no-repeat bottom center;
    min-height: 450px;
    position: relative;
    background-blend-mode: Darken;
    background-repeat-x: repeat;
} 
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 500;
}
.section-header .sub-title {
    color: #757575;
    font-size: 16px;
    max-width: 600px;
    margin: 15px auto 0;
}
.section-header p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
}
.banner-wrapper {
    margin: 0 auto;
    max-width: 850px;
    width: 100%;
}
.banner-wrapper .banner-header {
	margin-bottom: 30px;
}
.banner-wrapper .banner-header h1 {
    margin-bottom: 10px;
	font-size: 40px;
	font-weight: 600;
	color:black;
}
.banner-wrapper .banner-header p {
	color: #757575;
	font-size: 20px;
	margin-bottom: 0;
}



.med_tittle_section {
    width: 100%;
    height: 100%;
    background-position: center 0;
    background-size: cover !important;
    float: left;
    position: relative;
    text-align: center;
    padding-top: 130px;
    padding-bottom: 50px;
}
.med_img_overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background: rgba(245, 245, 245, 0.7);
}
.med_tittle_cont {
    text-align: right;
    margin-top: 45px;
}
.med_tittle_cont h1 {
    font-size: 32px;
    color: #111111;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.breadcrumb {
    background-color: white;
    display: inline-block;
}
.breadcrumb li {
    float: left;
}
.breadcrumb li:last-child {
    color: #2ec8a6;
    float: left;
}

/*Admin Dashbord css*/
.select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: #f5f6f8;
    border: 1px solid #f6f6f6;
    border-radius: 1px;
    padding: 0 7px;
}
.modal{
	background-color:#0000007a;
}

.cu-btn{
	padding: 4px 7px;
    font-size: 14px;
}
.head-card{
	padding: 15px 10px 10px;
    border-bottom: 1px solid #00000042;
}
.mdl-button-fab {
    border-radius: 20%;
    font-size: 15px;
    height: 30px !important;
    margin: auto;
    min-width: 30px !important;
    width: 30px !important;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 1.5px 0 rgb(0 0 0 / 12%), 0 1px 1px 0 rgb(0 0 0 / 24%);
    position: relative;
    line-height:1.9;
}
.mdl-button-lable{
	font-size: 13px;
    font-weight: 600;
    padding: 5px 7px;
    letter-spacing: 0.5px;
    border-radius: 5px;
}
.btn-default, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .btn-default.focus, .btn-default:active, .btn-default:focus, .btn-default:hover, .open > .dropdown-toggle.btn-default, .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
    background-color: #e1e5ec !important;
    border-color: #e1e5ec !important;
}


*-----------------
	9. Sidebar
-----------------------*/

.sidebar {
    background-color:white;
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    bottom: 0;
    left: 0;
    margin-top: 0;
    position: fixed;
    top: 60px;
    transition: all 0.2s ease-in-out 0s;
    width: 240px;
    z-index: 1001;

}
.sidebar.opened {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.sidebar-inner {
	height: 100%;
	min-height: 100%;
	transition: all 0.2s ease-in-out 0s;
}
.sidebar-menu {
    padding: 0px;
    background-color:white;
    border:1px solid #f0f0f0;
}
.sidebar-menu ul {
	font-size: 14px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.sidebar-menu li a {
	color: #757575;
	display: block;
	font-size: 16px;
	height: auto;
	padding: 0 20px;
}
.sidebar-menu li a:hover {
    color: #5ae8ff;
}

.sidebar-menu > ul > li.active > a:hover {
    background-color: #19c1dc;
    color: #fff;
}
.sidebar-menu li.active a {
    background-color: #00d0f1;
    color: #fff;
}
.menu-title {
    color: #757575;
    display: flex;
    font-size: 14px;
    opacity: 1;
    padding: 5px 15px;
    white-space: nowrap;
}
.menu-title > i {
	float: right;
	line-height: 40px;
}
.sidebar-menu li.menu-title a {
    color: #ff9b44;
    display: inline-block;
    margin-left: auto;
    padding: 0;
}
.sidebar-menu li.menu-title a.btn {
    color: #fff;
    display: block;
    float: none;
    font-size: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
}
.sidebar-menu ul ul a.active {
	color: #20e3ff;
	text-decoration: underline;
}
.mobile_btn {
	display: none;
	float: left;
}
.sidebar .sidebar-menu > ul > li > a span {
	transition: all 0.2s ease-in-out 0s;
	display: inline-block;
	margin-left: 2px;
	white-space: nowrap;
}
.sidebar .sidebar-menu > ul > li > a span.chat-user {
    margin-left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar .sidebar-menu > ul > li > a span.badge {
	margin-left: auto;
}
.sidebar-menu ul ul a {
    display: block;
    font-size: 14px;
    padding: 7px 10px 7px 40px;
    position: relative;
}
.sidebar-menu ul ul li a i{
    margin-right:5px;
}
.sidebar-menu ul ul {
	display: none;
}
.sidebar-menu ul ul ul a {
	padding-left: 65px;
}
.sidebar-menu ul ul ul ul a {
	padding-left: 85px;
}
.sidebar-menu > ul > li {
    margin-bottom: 0px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}
.sidebar-menu > ul > li:last-child {
    margin-bottom: 0;
}
.sidebar-menu .menu-arrow {
    -webkit-transition: -webkit-transform 0.15s;
    -o-transition: -o-transform 0.15s;
    transition: transform .15s;
    position: absolute;
    right: 15px;
    display: inline-block;
    font-family: 'FontAwesome';
    text-rendering: auto;
    line-height: 40px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    line-height: 18px;
    top: 11px;
}

.sidebar-menu li a.subdrop .menu-arrow {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}
.sidebar-menu ul ul a .menu-arrow {
	top: 10px;
}
.sidebar-menu > ul > li > a {
    align-items: center;
    border-radius: 3px;
    display: flex;
    justify-content: flex-start;
    padding: 10px 15px;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
	color: #757575;
	font-size:14px;
}
.sidebar-menu ul li a i {
	display: inline-block;
	line-height: 24px;
	text-align: left;
	vertical-align: middle;
	transition: all 0.2s ease-in-out 0s;
	font-size: 16px;
    margin-right: 10px;
    width: 16px;
}
.sidebar-menu ul li.menu-title a i {
	font-size: 16px !important;
	margin-right: 0;
	text-align: right;
	width: auto;
}
.sidebar-menu li a > .badge {
    color: #fff;
}
.list-group .list-group-item {
    display: block;
}
.pull-right {
    float: right!important;
}
.profile-userpic{
	width: 100%;
    text-align: center;
}
