@import url(https://fonts.googleapis.com/css?family=Roboto);
@import "~bootstrap-icons/font/bootstrap-icons.css";

:root {
	--primary-bg-color: #5161cb;
	--default-primary-bg-color: #5161cb;
}
.item-disp-div {
	line-height: 30px;
	height: auto;
}

.textbox .autoComplete {
	left: 0;
	position: absolute;
	top: calc(100% + 5px);
	width: 100%;
}

.textbox .autoComplete .item {
	animation: showItem .3s ease forwards;
	background-color: #fff;
	box-shadow: 0 8px 8px -10px rgba(0, 0, 0, .4);
	box-sizing: border-box;
	color: #7C8487;
	cursor: pointer;
	display: block;
	font-size: .8rem;
	opacity: 0;
	outline: none;
	padding: 10px;
	text-decoration: none;
	transform-origin: top;
	/* transform: rotateX(-90deg); */
	transform: translateX(10px);
}

.textbox .autoComplete .item:hover,
.textbox .autoComplete .item:focus {
	background-color: #fafafa;
	color: #D1822B;
}

@keyframes showItem {
	0% {
		opacity: 0;
		/* transform: rotateX(-90deg); */
		transform: translateX(10px);
	}

	100% {
		opacity: 1;
		/* transform: rotateX(0); */
		transform: translateX(0);
	}
}




.dataTables_filter {
	float: right;
}

body.swal2-shown>[aria-hidden="true"] {
	transition: 0.1s filter;
	filter: blur(10px);
}

/* width */
::-webkit-scrollbar {
	width: 1rem;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px #6c6e81;
	border-radius: 0.5rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #adbaff;
	border-radius: 0.5rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #adbaff;
}

#example_paginate {
	float: right;
}

.modal-custom {
	padding-top: 15%;
	background-color: rgba(0, 0, 0, 0.8);
}


.btn {
	border-radius: 0px;
}

.select2-search__field {
	font-size: 0.8rem;
	text-transform: uppercase;
}

.align-my-baby {
	text-align: end !important;
}

.page-header-image {
	position: relative;
	width: 100%;
	height: 300px;
	/* Adjust height as needed */
	overflow: hidden;
}

.background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.lazy-image {
	position: absolute;
	bottom: 20px;
	/* Adjust position */
	left: 20px;
	/* Adjust position */
	max-width: 100%;
	height: auto;
}


.req {
	border-left: 1px solid rgb(197, 195, 195);
	height: 50px;
	margin: 0 10px;
	margin-bottom: 10px;
	/* border-radius: 30px; */
}

/* .ng-invalid{
	border: 1px solid #ff0000;
} */

/**  =====================
      Switches css start
==========================  **/

/* The switch - the box around the slider */
.switch {
	border-radius: 30px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 32px;
	/* // padding: 3px; */
	margin: 0 10px 10px 0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	/* // border-radius: 18px; */
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	box-sizing: content-box;
}

.displayInline {
	width: 300px;
	overflow: hidden;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.displayInlineReturn {
	width: 500px;
	overflow: hidden;
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing: content-box;
}

.salesView {
	width: 100px;
	padding-left: 5px;
}

.salesViews {
	width: 80px;
	padding-left: 5px;
}

.switch-label {
	border-radius: 30px;
	position: relative;
	display: block;
	height: inherit;
	font-size: 15px;
	text-transform: uppercase;
	background: #eceeef;
	/* // border-radius: inherit; */
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	box-sizing: content-box;
}

.switch-label:before,
.switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	box-sizing: content-box;
}

.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #aaaaaa;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
	content: attr(data-on);
	left: 8px;
	color: #FFFFFF;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}

.switch-input:checked~.switch-label {
	background: var(--primary-bg-color);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switch-input:checked~.switch-label:before {
	opacity: 0;
}

.switch-input:checked~.switch-label:after {
	opacity: 1;
}

.switch-handle {
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: 5px;
	width: 25px;
	height: 25px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	/* // border-radius: 100%; */
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-handle:before {

	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);

	/* // border-radius: 6px; */
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}

.switch-input:checked~.switch-handle {
	left: 39px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Transition
========================== */
.switch-label,
.switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}

/* table {
    width: 100%;
} */



.switchs {
	border-radius: 30px;
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 70px;
	height: 30px;
	/* // padding: 3px; */
	margin: 0 0px 0px 0;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	/* // border-radius: 18px; */
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	box-sizing: content-box;
}

.switchs-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	box-sizing: content-box;
}

.switchs-label {
	border-radius: 100px;
	position: relative;
	display: block;
	height: inherit;
	font-size: 12px;
	text-transform: uppercase;
	background: #eceeef;
	/* // border-radius: inherit; */
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
	box-sizing: content-box;
}

.switchs-label:before,
.switchs-label:after {
	position: absolute;
	top: 50%;
	margin-top: -6px;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
	box-sizing: content-box;
}

.switchs-label:before {
	content: attr(data-off);
	right: 13px;
	color: #fffbfb;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switchs-label:after {
	content: attr(data-on);
	left: 6px;
	color: #FFFFFF;
	text-shadow: 0 1px rgba(0, 0, 0, 0.2);
	opacity: 0;
}

.switchs-input:checked~.switchs-label {
	background: var(--primary-bg-color);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.switchs-input:checked~.switchs-label:before {
	opacity: 0;
}

.switchs-input:checked~.switchs-label:after {
	opacity: 1;
}

.switchs-handle {
	border-radius: 30px;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 19px;
	height: 19px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	/* // border-radius: 100%; */
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switchs-handle:before {

	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);

	/* // border-radius: 6px; */
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}

.switchs-input:checked~.switchs-handle {
	left: 45px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}



/* Transition
========================== */
.switchs-label,
.switchs-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}

.ng-autocomplete {
	width: 100%;
	height: 33px;

}

/* button margin */

.margin-top {
	margin-top: -25px;
}

.list {
	list-style:
		none;
}

.pull-right {
	float: right;
}

/* input group*/

.input-group {
	position: relative !important;
	display: flex !important;
	flex-wrap: wrap !important;
	-webkit-box-align: stretch !important;
	align-items: stretch !important;
	width: 100% !important;
}

.page-header .container>.content-center {
	max-width: 35% !important;
	background: white;
	border-radius: 1rem;
	height: 27rem;
}


/* button colour*/


/* datatable button css */
.dt-button {
	background: var(--primary-bg-color);
	border: 0;
	padding: 10px;
	color: white;
}

.dt-buttons {
	margin-bottom: 5px;
}

.dimension-fields {
	display: flex;
	border: 1px solid #b0c0d6;

}

.dimension-fields .dimension-input {
	flex-basis: 33%;
}

.dimension-fields .dimension-seperator {
	padding: 8px 7px;
	color: #ccc;
	background-color: #fff;
	font-size: 12px;
}



.modal-content .modal-header {
	border-bottom: 1px solid #dee2e6;
	padding-left: 0px;
	margin-right: 24px;
	margin-left: 24px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.modal-content .modal-footer {
	border-top: 1px solid #dee2e6;
	padding-right: 0px;
	padding-left: 0px;
}

.modal-footer>* {
	margin: .25rem;
	padding: 0px;
}

.modal-content .modal-header button {
	top: 5px;
	font-size: 40px;
}

.modal-content {
	overflow-x: auto;
	/* Enable horizontal scrolling if needed */
}

.modal-dialog {
	max-width: 90vw;
	/* Adjust width as needed */
}

.appointment {
	border-color: #ffffff !important;
	color: #ffffff !important;
}

.dataTables_wrapper {
	overflow-x: scroll !important;
}

.current-nav {
	border-bottom: 1px solid var(--primary-bg-color) !important;
	border-radius: 0px !important;
	color: #2c2c2c !important;
	margin: 0 !important;
	margin-right: 5px !important;
	background-color: transparent !important;
	font-size: 14px !important;
	padding: 11px 23px !important;
	line-height: 1.5 !important;
}

.border-row {
	border-bottom: 1px solid #aaaaaa75;
	/* margin-top: 15px !important;
    margin-bottom: 0px !important; */
}

.label {
	margin-top: 8px !important;
	margin-left: 5px;
}

.form {
	margin-top: 10px !important;
}

.logo-container {
	margin-bottom: 20px;
	margin-top: 20px;
}


.form-control+.input-group-addon {
	background-color: white !important;
}

.login-error {
	font-size: 100%;
	color: red;
}

.login-bg {
	background: white;
	border-radius: 10px;
}


.stepperr {
	width: 25px;
	height: 23px;
	line-height: 22px;
	display: inline-block;
	border-radius: 25px;
	background: #fff;
	border: 2px solid #34bc9b;
	color: #34bc9b;
	font-size: 14px;
}

.editCk {
	max-width: 400px;
	min-height: 10px !important;
	max-height: 10px;
}

#ex1Slider .slider-selection {
	background: #BABABA;
}

.reset-button {
	margin: 5%;
	font-size: medium;
	font-weight: 500;
}

.reset-button-container {
	text-align: center;
	align-items: center;
	align-content: center;
}

.form-group .form-control+.input-group-addon,
.input-group .form-control+.input-group-addon {
	padding: 8px 11px 2px 11px;
}

.navbar-nav.navbar-left .input-group .input-group-addon {
	color: #8a8585;
}

label {
	font-weight: 700;
	/* width: 110%; */
	font-size: 12px;
}

.menu-child {
	padding-left: 15% !important;
}


.blood-sugar-block {
	font-size: 50px;
	color: #6dbb70;
	font-weight: 800;
}

.blood-sugar-block small {
	font-size: 20px;

}

.blood-sugar-block img {
	margin-left: 27%;
}


.bp-block {
	font-size: 40px;
	color: #6dbb70;
	font-weight: 800;
}

.bp-block sup {
	font-size: 40px;
	color: #6dbb70;
	font-weight: 800;
}

.bp-block small {
	font-size: 15px;

}

.bp-block img {
	margin-left: 10%;
}

.haemoglobin-block {
	font-size: 50px;
	color: #6dbb70;
	font-weight: 800;
}

.haemoglobin-block sup {
	font-size: 40px;
	color: #6dbb70;
	font-weight: 800;
}

.haemoglobin-block small {
	font-size: 15px;

}

.haemoglobin-block img {
	margin-left: 40%;
}

.platelets-block {
	font-size: 50px;
	color: #6dbb70;
	font-weight: 800;
}

.platelets-block sup {
	font-size: 40px;
	color: #6dbb70;
	font-weight: 800;
}

.platelets-block small {
	font-size: 15px;

}

.platelets-block img {
	margin-left: 25%;
}

.dashboard-book-button {
	margin-top: 95%;
	background: #ffffff82 !important;
	color: black;
	font-size: 15px;
	font-weight: 500;
}

.height-block {
	font-size: 40px;
	color: #ddb266;
	font-weight: 800;
}

.height-block sub {
	font-size: 10px;
	color: #ddb266;
}


.height-block small {
	font-size: 15px;
}

.patient-book-bg {
	background-image: url(../images/dashboard/patient/doct-img.png);
	height: 400px;
	background-repeat: no-repeat;
}

.online-consult-bg {
	background-image: url(../images/dashboard/patient/online-cons.png);
	height: 400px;
	background-repeat: no-repeat;
}

table.dataTable tbody th,
table.dataTable tbody td {
	padding: 0px 15px !important;
}


.badge {
	margin-top: 5px;
	font-size: 15px;
}

.badge-success {
	border-color: var(--primary-bg-color);
	color: var(--primary-bg-color);
}

.badge-intinfo {
	border-color: #0be512;
	color: #0be549;
}

a.badge-success:focus,
a.badge-success:hover {
	color: #fff;
	background-color: var(--primary-bg-color);
}

/* .ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    height: 250px;
} */

@media screen and (max-width: 1200px) {

	.page-header .container>.content-center {
		max-width: 90% !important;
	}

	.blood-sugar-block img {
		margin-left: 15px;
	}

	.blood-sugar-block {
		font-size: 35px;
	}

	.bp-block {
		font-size: 25px;
		padding-top: 25px;
	}

	.bg {
		padding-top: 8px;
	}

	.bp-block small {
		font-size: 8px;
	}


	.bp-block img {
		margin-left: 10px;
	}

	.bp-block sup {
		font-size: 15px;
	}

	.height-block {
		font-size: 15px;
		color: #ddb266;
		font-weight: 800;
		padding-top: 45px;
	}

	.height-block sub {
		font-size: 10px;
		color: #ddb266;
	}


	.height-block small {
		font-size: 15px;

	}

	.dashboard-book-button {
		margin-top: 150%;
	}

	.patient-book-bg {
		background-image: url(../images/dashboard/patient/doct-img.png);
		height: 370px;
		background-repeat: round;
	}

	.online-consult-bg {
		background-image: url(../images/dashboard/patient/online-cons.png);
		height: 370px;
		background-repeat: round;
	}

	.haemoglobin-block img {
		margin-left: 35px;
	}

	.haemoglobin-block {
		font-size: 40px;
	}

	.platelets-block {
		font-size: 20px;
	}

	.platelets-block img {
		margin-left: 37px;
	}
}



.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.ngx-pagination {
	padding-left: 0px;
}

.table td {
	padding: 4px 0px 0px 20px;
}

.btn-danger {
	background-color: #F96332;
}

.btn-white {
	color: var(--primary-bg-color)
}

.ngx-pagination .current {
	background: var(--primary-bg-color) !important
}

.p-r-5,
.right-sidebar .choose-skin li {
	left: 260px;
}

.member-card .header {
	min-height: 50px !important
}

/* .member-card .member-img img{
	width: 85px !important
} */

.btn-pad {
	margin-top: 21px;
}

.autocomplete-container {
	border-radius: 30px;
	border: 1px solid #E3E3E3;
	height: 28px !important;
}

.autocomplete-container .input-container input {
	border-radius: 30px;
	border: 1px solid #E3E3E3;
	height: 28px !important;
	width: 100% !important;
}

.ng-autocomplete {
	width: 100% !important;
}

.autocomplete-container.active {
	margin-right: 10px;
}

.autocomplete-container {
	margin-right: 10px;
}

.modal-xl {
	max-width: 1250px !important;
}

.btn-white:hover {
	background-color: #ffffff;
	color: var(--primary-bg-color);
}

.button {
	color: white;
	background-color: blue;
	padding: 4px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 2px;
}

ul.links {
	padding-bottom: 10px;
}

.form-control {
	font-size: 13px
}

.button {
	color: white;
	background-color: blue;
	padding: 4px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 2px;
}

ul.links {
	padding-bottom: 10px;
}



#app {
	text-align: center;
	color: #2c3e50;
	margin-top: 60px;
}

#video {
	background-color: #000000;
}

#canvas {
	display: none;
}

textarea.form-control {
	line-height: 3 !important
}

.imgNew {
	width: 150px;
	margin-left: 65px;
	/* border-radius: %; */
}

.sidebar .menu .list {
	margin: 0 0px;
}

.sidebar .menu .list a {
	padding: 10px 10px;
	font-weight: 700;
	font-size: 13px;
}

/*
*	UI changes
*
*/

.card .body {
	font-weight: 400;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #2c2c2c;
	font-size: 13px;
	/* width: 100%; */
}

.historySelect .select2-container--default .select2-selection--single .select2-selection__rendered {

	width: 250px
}

footer {
	/* text-align: center; */
	padding: 3px;
	/* background-color: DarkSalmon; */
	color: white;
	/* position: fixed; */
	bottom: 0;
}




.tempSe.select2-container--default .select2-selection--single .select2-selection__rendered {
	width: 250px;

}

/* form {
    padding: 0px !important;
} */

.p-r-10,
section.content {
	padding-right: 0px !important;
	padding-left: 0px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 10px;
}

.card,
.row {
	margin-left: 0px;
	margin-right: 0px;
	padding-top: 10px;
}

.block-header {
	padding: 0px;
}

.table thead th {
	font-weight: 700;
	font-size: 14px;
	white-space: normal;
	padding-left: 20px;
	padding-right: 0px;
}

.table th {
	font-size: 14px;
}

.table td {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: -0.5px;
	white-space: nowrap
}

.theme-cyan .card .headers h2:before {
	background-color: white !important;
}

.headermargin {
	border-bottom: 1px solid black
}

.headerdottedline {
	border-bottom: 1px dashed;
}

.border-line {
	border-bottom: 1px solid #0000003b;
	margin-bottom: 8x !important;
}

#my_camera {
	width: 320px;
	height: 240px;
	border: 1px solid black;
}

.table-responsive {
	overflow-x: initial;
}

.table-margin {
	margin-left: 70px;
}

h6,
.h6 {
	margin-top: 8px !important;
}


.clearfix {
	display: block;
	content: "";
	clear: both;
}

.notify .heartbit {
	position: -webkit-sticky;
	position: absolute;
	top: -20px;

}

@media screen and (min-width: 768px) {
	.imgNew {
		margin-left: 35px;
		margin-top: 53px;
	}
}


.switch-input:checked~.arrived-checked {
	background: #00d137 !important;
}

.flashingAlert {
	-webkit-animation: alert 1500ms infinite;
	-moz-animation: alert 1500ms infinite;
	-o-animation: alert 1500ms infinite;
	animation: alert 1500ms infinite;
}

@keyframes alert {
	0% {
		color: #E72929;
		box-shadow: 0 0 3px #E72929;
	}

	50% {
		color: #E72929;
		box-shadow: 0 0 40px #E72929;
	}

	100% {
		color: #E72929;
		box-shadow: 0 0 3px #E72929;
	}
}

.ck-editor__editable {
	min-height: 250px !important;
}

.custome-table thead th {
	vertical-align: bottom;
	border-bottom: 0px !important;
	border-top: 0px !important;
	/* padding-top: 20px;
    padding-bottom: 20px; */
}

.neha {
	font-size: 25px;
	font-weight: 600;
	color: #FFFFFF;
	margin-top: 10px;
	margin-right: 5px;
	background: #ffffff96;
	border-radius: 5px;
	padding: 10px;

}


/*
*	Author : Durgaprasad	
*	code block for sidebar css starts
*/
.sidebar {
	width: 250px;
}

.navbar {
	width: calc(100% - 250px);
}



.doc-desk-patient-block .card-drug {
	height: 30px;

}

section.content {
	margin: 60px 0px 15px 250px;
}

.p-l-0 .sidebar .menu .list,
.sidebar .menu .list .ml-menu,
.invoice .nav-tabs {
	padding-left: 15px;
}


.theme-cyan .block-header h2 {
	margin-top: 15px;
}

/*
*	code block for sidebar css Ends
*/


/*
*	Author : Durgaprasad
*	code block for chat view in history tab
*/

.chat-app .people-list {
	width: 280px;
	position: absolute;
	left: -15px;
	top: 0;
	z-index: 999
}

.chat-app .chat {
	margin-left: 280px;
	border-left: 1px solid #eaeaea
}

.chat-app .list_btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	padding: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	display: none;
	box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.3);
	border-radius: 3px
}

.people-list {
	-moz-transition: .5s;
	-o-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s
}

.people-list .chat-list li {
	padding: 10px 15px;
	list-style: none;
	border-radius: 3px
}

.people-list .chat-list li:hover {
	background: #efefef;
	cursor: pointer
}

.people-list .chat-list li.active {
	background: #efefef
}

.people-list .chat-list li .name {
	font-size: 15px
}

.people-list .chat-list img {
	width: 45px;
	border-radius: 50%
}

.people-list img {
	float: left;
	border-radius: 50%
}

.people-list .about {
	float: left;
	padding-left: 8px
}

.people-list .status {
	color: #999;
	font-size: 13px
}

.chat .chat-header {
	padding: 20px;
	border-bottom: 2px solid white
}

.chat .chat-header img {
	float: left;
	border-radius: 50%;
	width: 45px
}

.chat .chat-header .chat-about {
	float: left;
	padding-left: 10px
}

.chat .chat-header .chat-with {
	font-weight: bold;
	font-size: 16px
}

.chat .chat-header .chat-num-messages {
	color: 434651
}

.chat .chat-history {
	padding: 20px;
	border-bottom: 2px solid white;
}

.chat .chat-history ul {
	padding: 0
}

.chat .chat-history ul li {
	list-style: none
}

.chat .chat-history .message-data {
	margin-bottom: 15px
}

.chat .chat-history .message-data .message-data-name {
	font-size: 16px;
	font-weight: 700
}

.chat .chat-history .message-data-time {
	color: #434651;
	padding-left: 6px
}

.chat .chat-history .message {
	color: #444;
	padding: 10px 10px;
	line-height: 26px;
	font-size: 16px;
	border-radius: 7px;
	margin-bottom: 30px;
	width: 100%;
	position: relative
}

.chat .chat-history .message:after {
	bottom: 100%;
	left: 7%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px
}

.chat .chat-history .my-message {
	background: #fff
}

.chat .chat-history .my-message:after {
	bottom: 100%;
	left: 7%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px
}

.chat .chat-history .other-message {
	background: #fff
}

.chat .chat-history .other-message:after {
	border-bottom-color: #fff;
	left: 93%
}

.chat .chat-message {
	padding: 20px
}

.chat .chat-message textarea {
	width: 100%;
	border: none;
	padding: 10px 20px;
	font: 14px/22px "Lato", Arial, sans-serif;
	margin-bottom: 10px;
	border-radius: 5px;
	resize: none
}

.chat .chat-message .fa-file-o,
.chat .chat-message .fa-file-image-o {
	font-size: 16px;
	color: gray;
	cursor: pointer
}

.online,
.offline,
.me {
	margin-right: 3px;
	font-size: 10px
}

.online {
	color: #86BB71
}

.offline {
	color: #E38968
}

.me {
	color: #0498bd
}

.float-right {
	float: right
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0
}

@media only screen and (max-width: 767px) {
	.chat-app {
		margin: 0
	}

	.chat-app .list_btn {
		display: block
	}

	.chat-app .people-list {
		height: 465px;
		width: 100%;
		overflow-x: auto;
		background: #fff;
		left: -400px
	}

	.chat-app .people-list.open {
		left: 0
	}

	.chat-app .chat {
		margin: 0
	}

	.chat-app .chat-history {
		height: 240px;
		overflow-x: auto
	}
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
	.chat-app {
		margin: 0
	}

	.chat-app .chat-list {
		height: 650px;
		overflow-x: auto
	}

	.chat-app .chat-history {
		height: 600px;
		overflow-x: auto
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
	.chat-app {
		margin: 0
	}

	.chat-app .chat-list {
		height: 450px;
		overflow-x: auto
	}

	.chat-app .chat-history {
		height: 380px;
		overflow-x: auto
	}
}


.submenu {
	background-color: rgb(245, 244, 244);
	margin: 15px 15px 15px 15px;
}

.doc-desk-patient-block .card {
	height: 105px;
}

.doc-desk-patient-block .new {
	height: 20px;
}

.doc-desk-patient-block .table td {
	border-top: none;
	font-size: 12px;
	float: left;
}

.doc-desk-patient-block .table th {
	border-top: none;
	padding: 4px 0px 0px 15px;
	float: left;
}

.img-responsive {
	height: 100%;
	width: 100%;
}

.vital-sign .table td {
	padding: 4px 10px 10px 15px;

	font-weight: 600;
}

.vital-sign .table th {
	padding: 4px 10px 10px 15px;
}

.nav-tabs>.nav-item>.nav-link {
	padding: 11px 11px;
}

.nav-tabs>.nav-item>.nav-link {
	margin: 0px 0px 5px 5px;
}

.nav-tabs>.nav-item>.nav-link {
	color: #000000 !important;
	font-size: 15px !important;
	font-weight: 600;
}

.theme-cyan .nav-tabs .nav-link.active {
	background-color: var(--primary-bg-color) !important;
	color: #f7f7f7;
	font-weight: bold;
	border-radius: 0px;
	border: 0px solid var(--primary-bg-color) !important;
	border-bottom: 3px solid var(--primary-bg-color) !important;
}

.theme-cyan .nav-tabs .nav-link.active svg {
	color: var(--primary-bg-color);

}

li.nav-item-child-tab {
	background: #f7f7f7;
	color: var(--primary-bg-color);
}

.nav-tabs>.nav-item>.nav-link {
	color: #746b6b;
	font-size: 12px;
}


.breakdiv-border::after {

	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 90%;
	width: 50%;
	border-right: 2px solid #f7f7f7;
}

.btn-blue {
	background-color: #277CBA;
}

.btn-blue.disabled,
.btn-blue.disabled:hover,
.btn-blue.disabled:focus,
.btn-blue.disabled.focus,
.btn-blue.disabled:active,
.btn-blue.disabled.active,
.btn-blue:disabled,
.btn-blue:disabled:hover,
.btn-blue:disabled:focus,
.btn-blue:disabled.focus,
.btn-blue:disabled:active,
.btn-blue:disabled.active,
.btn-blue[disabled],
.btn-blue[disabled]:hover,
.btn-blue[disabled]:focus,
.btn-blue[disabled].focus,
.btn-blue[disabled]:active,
.btn-blue[disabled].active,
fieldset[disabled] .btn-blue,
fieldset[disabled] .btn-blue:hover,
fieldset[disabled] .btn-blue:focus,
fieldset[disabled] .btn-blue.focus,
fieldset[disabled] .btn-blue:active,
fieldset[disabled] .btn-blue.active {
	background-color: #277CBA;
	border-color: #277CBA;
}

.list-group-item {
	position: relative;
	display: block;
	padding: 0px;
	background-color: #fff;
	border: 0px solid rgba(0, 0, 0, .125);
}

.font-10-p {
	font-size: 10px;
}

.font-12-p {
	font-size: 12px;
}

.font-8-p {
	font-size: 8px;
}

.media {
	margin-bottom: 0px;
}

.media .media-body {
	margin-top: 10px;
}

.doctor-desk-li {
	border-bottom: 1px solid #00000030;
	padding: 5px 0px 5px 0px;
}

sub,
sup {
	font-size: 100%;
}

.top-div-block {
	border: 1px solid;
	padding: 5px 5px 5px 5px;
	margin: 5px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.hidden_div {
	display: none;
}

.bootstrap-select>select {
	position: absolute !important;
	bottom: 0;
	left: 50%;
	display: block !important;
	width: 0.5px !important;
	height: 100% !important;
	padding: 0 !important;
	opacity: 0 !important;
	border: none;
}

.bootstrap-select.btn-group.show .dropdown-menu {
	overflow: unset !important;
}

.bootstrap-select {
	border-radius: 30px;
}


.imageCss {
	width: 150px;
}

.p-r-0 {
	padding-right: 0px !important;
}

.p-l-0 {
	padding-left: 0px !important;
}

.p-t-0 {
	padding-top: 0px !important;
}

.p-b-0 {
	padding-bottom: 0px !important;
}

.m-r-0 {
	margin-right: 0px !important;
}

.m-l-0 {
	margin-left: 0px !important;
}

.m-t-0 {
	margin-top: 0px !important;
}

.m-b-0 {
	margin-bottom: 0px !important;
}

@media screen and (max-width: 360px) {
	.page-header .container>.content-center {
		max-width: 65% !important;
	}
}

.underlineDoctor {
	cursor: pointer;
	text-decoration: underline;
	font-weight: bold;
	color: #000;
}

.patient-registration {
	overflow: unset;
}

.p-5 {
	padding: 5px !important;
}

.table-visit th {
	padding: 0px !important;
}

.member-card .header {
	width: 100%;
}

.suggestions-container {
	width: auto !important;
}


.autocomplete-container .suggestions-container ul li a {
	font-size: 12px !important;
	text-align: left !important;
}

.placeHolderCapital {
	text-transform: uppercase;
}

.modal {

	z-index: 90 !important;

}

.select2-dropdown {
	z-index: 90 !important;
}

.modal-backdrop {

	/* --bs-backdrop-zindex: 0 !important;
		--bs-backdrop-bg: 0 !important;
		--bs-backdrop-opacity: 0 !important;
		position: fixed !important; */
	z-index: 0;
	/* .modal-backdrop {
		--bs-backdrop-zindex: 0 !important;
		--bs-backdrop-bg: 0 !important;
		--bs-backdrop-opacity: 0 !important;
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		z-index: 0 !important;
		width: 0 !important;
		height: 0 !important;
		background-color: 0 !important
	} */
}

.modal-open .select2-container {
	z-index: 90;
}

.navbar {
	z-index: 71;
}

.t-w-a {
	width: auto;
}


/* 
body {
  font-family: Roboto, sans-serif;
} */

#chart {
	max-width: 650px;
	margin: 35px auto;
}

.custome-td-font {
	color: var(--primary-bg-color);
}

.a {
	white-space: nowrap;
	width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.profile-dropdown {
	right: 0 !important;
}

.profile-dropdown:before {
	right: 0 !important;
	left: auto;
}

#billWidth {
	width: 100px;
}

#billwitdh1 {
	width: 250px;
	left: 121px;
}

#billwitdh2 {
	width: 235px;
	left: 121px;
}

#billPadding {
	padding-left: 5px;
}

.dashboard-value {
	/* margin-bottom: 67px; */
	text-align: center;
	margin: 189px;
}

/* .QrCodeDiv > div{
display: inline-grid!important;
} */


.mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	will-change: transform;
	transform: translateZ(0);
	display: flex;
	height: 25px;
	background-color: #fff;
}

.bebo {
	background-color: transparent;
	/* border: 1px solid #E3E3E3; */
	border-radius: 30px;
	color: #2C2C2C;
	line-height: normal;
	font-size: .8571em;
	-webkit-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	-moz-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	-ms-transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	-webkit-box-shadow: none;
	box-shadow: none
}

.clsmodalbtn {
	margin-right: 20px;
	color: red;
	font-size: 50px;
	border: none;
	background: none;
}


.forgotpassword {
	font-size: 15px;
	text-align: center;
	color: #4652A3;
}

.securityHeader {
	color: red;
	font-weight: bold;
	border: none;
	background: none;
}

.closebtn {
	color: red;
	font-weight: bold;
	border: none;
	background: none;
	font-size: 30px;
}


.datepicker-container input {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid #E3E3E3;
	border-radius: 30px;
	color: #2c2c2c;
	line-height: normal;
	font-size: 1.8571em;
	transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	box-shadow: none;
	width: 100%;
	height: 100%;
	padding: 5px;
}

.display {
	display: none;
}

.select2-container--default .select2-selection--multiple {
	border-radius: 20px !important;
}

.notify .heartbit {
	border-color: #ffffff;
}

.notify .point {
	background-color: #ffffff;
}

.surgery-margin {
	margin-left: 470px;
}

.Modal-Headers {
	color: var(--primary-bg-color) !important;
}

.p-r-b-t {
	padding-top: 0px !important;
	padding-right: 0px !important;
	padding-bottom: 0px !important;
}

/* Thirumal */
.select2-results {
	display: block;
	font-size: 13px;
}

.sidetable {
	overflow-y: auto;
}

.sizefont {
	font-size: 13px;
}

.newBorder {
	border: 1px solid black;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Styles go here */

.space {
	margin-left: 90px;
}


.blinking {
	-webkit-animation: 3s blink ease infinite;
	-moz-animation: 3s blink ease infinite;
	-ms-animation: 3s blink ease infinite;
	-o-animation: 3s blink ease infinite;
	animation: 3s blink ease infinite;

}

@keyframes blink {

	from,
	to {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}
}

.notify-record .circle {
	background-color: var(--primary-bg-color);
	height: 10px;
	width: 10px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(50%, -50%);
}

.col-sm-3half {
	width: 29.16666667%;
}

/* .headers, .headers-space,
.footers, .footers-space {
  height: 500px !important;
  
}
.headers {
  position: fixed;
  top: 0;
  
}
.footers {
  position: fixed;
  bottom: 0;
} */
.tablecolor {
	color: #495057;
	background-color: #e9ecef;
	border-color: #dee2e6;
	font-weight: 900;
}

.row-blink {
	-webkit-animation: 1s row-blink ease infinite;
	-moz-animation: 1s row-blink ease infinite;
	-ms-animation: 1s row-blink ease infinite;
	-o-animation: 1s row-blink ease infinite;
	animation: row-blink 2s ease infinite;
}

@keyframes row-blink {

	from,
	to {
		background-color: white;
	}

	50% {
		background-color: rgb(154, 208, 255);
	}
}

.select2-selection {
	border: 2px solid var(--primary-bg-color) !important;
}

input {
	border: 2px solid var(--primary-bg-color) !important;
}

.mat-datepicker-input {
	border: 0px !important;
}

.form-control[readonly] {
	border: 0px !important;
}

.mat-form-field-flex {
	background-color: white !important;
	border: 2px solid var(--primary-bg-color) !important;
	border-radius: 30px !important;
}

.mat-form-field-underline {
	display: none !important;
}

.table thead th {
	border-top: 1px solid var(--primary-bg-color);
	border-bottom: 1px solid var(--primary-bg-color);
}

/* .table td {
	border-bottom: 1px solid var(--primary-bg-color);
} */

.select2-selection {
	border: 2px solid var(--primary-bg-color) !important;
}

input {
	border: 2px solid var(--primary-bg-color) !important;
}

input.mat-input-element {
	border: none !important;
}

.mat-datepicker-input {
	border: 0px !important;
}

.form-control[readonly] {
	border: 0px !important;
}

.mat-form-field-flex {
	background-color: white !important;
	border: 2px solid var(--primary-bg-color) !important;
	border-radius: 30px !important;
}

.mat-form-field-underline {
	display: none !important;
}

.table thead th {
	border-top: 1px solid var(--primary-bg-color);
	border-bottom: 1px solid var(--primary-bg-color);
}

/* .table td {
	border-bottom: 1px solid var(--primary-bg-color);
} */
.row-blink {
	-webkit-animation: 1s row-blink ease infinite;
	-moz-animation: 1s row-blink ease infinite;
	-ms-animation: 1s row-blink ease infinite;
	-o-animation: 1s row-blink ease infinite;
	animation: row-blink 2s ease infinite;
}

@keyframes row-blink {

	from,
	to {
		background-color: white;
	}

	50% {
		background-color: rgb(154, 208, 255);
	}
}

/* .header, .header-space,
.footer, .footer-space {
  height: 200px;
} */
.header {
	position: fixed;
	top: 0;
}

.footer {
	position: fixed;
	bottom: 0;
}


/*
  *	Mat Input date css
  *
  */
.mat-form-field-appearance-fill .mat-form-field-flex {
	padding: 0 0.75em 0 0.75em !important;
}

.card {
	margin-bottom: 15px;
}

.payment-button {
	border-radius: 1rem;
	border: 0.1rem solid black;
	font-size: 1rem;
}

#card-dashborad2 {
	border-radius: 20px;
	height: 165px;
	margin-bottom: 10px;
}

#card-dashborad {
	border-radius: 20px;
}

.button-baby {
	background-color: transparent;
	border: transparent;
}

.blog-post h2 {
	text-align: center;
	font-size: 20px;
}

@media print {
	.hidden_div {
		display: block;
	}

	.blog-post h2 {
		text-align: center !important;
		font-size: 20px !important;
	}

	* {
		-webkit-print-color-adjust: exact !important;
		/*Chrome, Safari */
		color-adjust: exact !important;
		/*Firefox*/
	}
}

.uppercaseAllPat {
	text-transform: uppercase;
	font-size: 12px;
}

/* JSON VIEWER PACKAGE CONFIG */
:root {
	--ngx-json-font-size: 1rem;
}

.ng-input>input {
	border: none !important;
}

.numberCircle {
	font: 32px Arial, sans-serif;

	width: 2em;
	height: 2em;
	box-sizing: initial;


	border: 0.1em solid #206bf7;
	color: #000000;
	text-align: center;
	border-radius: 50%;

	line-height: 2em;
	box-sizing: content-box;
}

.doctorDash {
	cursor: pointer;
	font-size: 25px;
	color: black;
}

.changebillingColor:hover {
	background-color: #2781D5;
	color: white;
}

.opCashCredit {
	color: #0D6EFD;
}

.widthChanges {
	max-width: 195px;
}

.buttonChange {
	width: 180px;
}

.opNew {
	color: #2DD8B4;
}

.opRevisit {
	color: #2781D5;
}

.opCross {
	color: #F72B50;
}

.opFollow {
	color: #450B5A;
}

.otYellow {
	color: #F5AB18;
}

.fontDoctorDesk {
	font: normal normal 600 22px/18px Montserrat;
}

.ipAdmitted {
	color: #209F84;
}

.link {
	font-size: 24px;
	color: #746b6b
}

.DoctorGraphColor:hover {
	color: red;
}

.flashingbutton {
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
}

@keyframes glowing {
	0% {
		color: #2781D5;
		box-shadow: 0 0 3px #2781D5;
	}

	50% {
		color: #2781D5;
		box-shadow: 0 0 40px #2781D5;
	}

	100% {
		color: #2781D5;
		box-shadow: 0 0 3px #2781D5;
	}
}

.totalBed {
	width: 86px;
	height: 42px;
	border-radius: 35px;
	margin-top: -12px;
}

.dash-tooltip {
	position: relative;
	display: inline-block;
	/* border-bottom: 1px dotted black; */
}

.dash-tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: white;
	color: black;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	/* Position the tooltip */
	position: absolute;
	z-index: 1;
}

.dash-tooltip:hover .dash-tooltiptext {
	visibility: visible;
}

.blink_me {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.otDashboardFont {
	font-size: 17px;
}

.icdChart {
	height: 35px;
	width: 130px;
	text-align: center;
}

#table {
	width: 100%;
	display: table;
}

#top {
	display: table-cell;
	position: relative;
	width: 100%;
	height: 100px;

	vertical-align: middle;
}

#top h2 {

	text-align: center;

}

@media print {
	body {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* Center align the text for printing */
	h2 {
		text-align: center !important;
	}
}

.mlcColor {
	background-color: yellow;
}

.badge-scheme {
	background-color: violet;
}

.campTypeReg {
	background-color: #888;
	color: #ffffff;
}


/* material bold letter code */
app-manage-indent * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-indent * .select2-selection {
	font-weight: bold !important;
}

app-capital-indent * .select2-selection {
	font-weight: bold !important;
}

app-capital-indent * input {
	font-weight: bold !important;
	color: black !important;
}


app-vendor-master-details * input {
	font-weight: bold !important;
}

app-vendor-master-details * .select2-selection {
	font-weight: bold !important;
}


app-material-issue * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-issue * .select2-selection {
	font-weight: bold !important;

}

app-item-master * input {
	font-weight: bold !important;
	color: black !important;
}

app-item-master * .select2-selection {
	font-weight: bold !important;

}


app-material-indent-authorizations * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-indent-authorizations * td {
	font-weight: bold !important;
	color: black !important;
}


app-material-indent-authorizations * .select2-selection {
	font-weight: bold !important;

}


app-po-generation * input {
	font-weight: bold !important;
	color: black !important;
}

app-po-generation * td {
	font-weight: bold !important;
	color: black !important;
}

app-po-generation * .select2-selection {
	font-weight: bold !important;

}

app-po-authorization-cancellation * input {
	font-weight: bold !important;
	color: black !important;
}

app-po-authorization-cancellation * td {
	font-weight: bold !important;
	color: black !important;
}

app-po-authorization-cancellation * .select2-selection {
	font-weight: bold !important;

}

app-purchase-order-release * input {
	font-weight: bold !important;
	color: black !important;
}

app-purchase-order-release * td {
	font-weight: bold !important;
	color: black !important;
}

app-purchase-order-release * .select2-selection {
	font-weight: bold !important;

}

app-gate-entry-incoming * input {
	font-weight: bold !important;
	color: black !important;
}

app-gate-entry-incoming * td {
	font-weight: bold !important;
	color: black !important;
}

app-gate-entry-incoming * .select2-selection {
	font-weight: bold !important;

}

app-gate-entry-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-gate-entry-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-gate-entry-list * .select2-selection {
	font-weight: bold !important;

}

app-material-grn * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-grn * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-grn * .select2-selection {
	font-weight: bold !important;

}

app-manage-material-grn * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-material-grn * td {
	font-weight: bold !important;
	color: black !important;
}

app-manage-material-grn * .select2-selection {
	font-weight: bold !important;

}

app-manage-material-grn * div {
	font-weight: bold !important;
	color: black !important;
}

app-material-issue-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-issue-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-issue-list * .select2-selection {
	font-weight: bold !important;

}

app-material-store-receipt * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-store-receipt * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-store-receipt * .select2-selection {
	font-weight: bold !important;

}


app-material-store-receipt-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-store-receipt-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-store-receipt-list * .select2-selection {
	font-weight: bold !important;

}

app-material-consumption-details * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-consumption-details * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-consumption-details * .select2-selection {
	font-weight: bold !important;

}

app-material-consumption * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-consumption * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-consumption * .select2-selection {
	font-weight: bold !important;

}

app-material-stock-adjustment * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-stock-adjustment * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-stock-adjustment * .select2-selection {
	font-weight: bold !important;

}

app-material-stock-adjustment-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-stock-adjustment-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-stock-adjustment-list * .select2-selection {
	font-weight: bold !important;

}

app-vendor-master * input {
	font-weight: bold !important;
	color: black !important;
}

app-vendor-master * td {
	font-weight: bold !important;
	color: black !important;
}

app-vendor-master * .select2-selection {
	font-weight: bold !important;

}

app-manage-store-master * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-store-master * td {
	font-weight: bold !important;
	color: black !important;
}

app-manage-store-master * .select2-selection {
	font-weight: bold !important;

}

app-store-master * input {
	font-weight: bold !important;
	color: black !important;
}

app-store-master * td {
	font-weight: bold !important;
	color: black !important;
}

app-store-master * .select2-selection {
	font-weight: bold !important;

}

app-manage-work-order * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-work-order * td {
	font-weight: bold !important;
	color: black !important;
}

app-manage-work-order * div {
	font-weight: bold !important;
	color: black !important;
}

app-manage-work-order * .select2-selection {
	font-weight: bold !important;

}

app-work-order-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-work-order-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-work-order-list * .select2-selection {
	font-weight: bold !important;

}

app-item-master-list * input {
	font-weight: bold !important;
	color: black !important;
}

app-item-master-list * td {
	font-weight: bold !important;
	color: black !important;
}

app-item-master-list * .select2-selection {
	font-weight: bold !important;

}

app-material-item-status * input {
	font-weight: bold !important;
	color: black !important;
}

app-material-item-status * td {
	font-weight: bold !important;
	color: black !important;
}

app-material-item-status * .select2-selection {
	font-weight: bold !important;

}

app-purchase-order * input {
	font-weight: bold !important;
	color: black !important;
}

app-purchase-order * td {
	font-weight: bold !important;
	color: black !important;
}

app-purchase-order * .select2-selection {
	font-weight: bold !important;

}

app-manage-purchase-order * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-purchase-order * td {
	font-weight: bold !important;
	color: black !important;
}

app-manage-purchase-order * .select2-selection {
	font-weight: bold !important;

}

app-manage-purchase-order * div {
	font-weight: bold !important;
	color: black !important;
}



app-capital-indent * td {
	font-weight: bold !important;
	color: black !important;
}

/* srn */
app-manage-store-retrun * input {
	font-weight: bold !important;
	color: black !important;
}

app-manage-store-retrun * td {
	font-weight: bold !important;
	color: black !important;
}

app-manage-store-retrun* .select2-selection {
	font-weight: bold !important;

}

app-manage-store-retrun * div {
	font-weight: bold !important;
	color: black !important;
}


app-store-retrun-list * td {
	font-weight: bold !important;
	color: black !important;
}


.campTypeReg {
	background-color: #888;
	color: #ffffff;
}

.wrapper {
	position: relative;
	overflow: auto;
	border: 1px solid black;
	white-space: nowrap;
}

.view {
	margin: auto;
	width: 90%;
}

.sticky-col {
	position: -webkit-sticky;
	position: sticky;
	background-color: white;
}

.first-col {
	width: 100px;
	min-width: 100px;
	max-width: 100px;
	left: 0px;
}

.second-col {
	width: 150px;
	min-width: 150px;
	max-width: 150px;
	left: 100px;
}

.third-col {
	width: 250px;
	min-width: 250px;
	max-width: 250px;
	left: 250px;
}

.fourth-col {
	width: 250px;
	min-width: 250px;
	max-width: 250px;
	left: 400px;
}

.colorDischarge {
	font-size: 14px;
	font-weight: 600;
	/* color : var(--primary-bg-color); */
}

.notes-view-container table {
	border: 1px solid #475569;
}

.notes-view-container table td,
.notes-view-container table th {
	border: 1px solid #475569;
	/* Customize the border style and color for table cells */
}

.vulnerable-color {
	color: #d63384;
}

.black-color {
	color: #000000;
}

.circleTop {
	margin-top: -9px !important;
}

.vulnerPosition {
	position: relative;
}

.underline {
	text-decoration: underline;
	color: blue;
}

.view-more-link {
	color: var(--primary-bg-color);
	cursor: pointer;
}

.dropdown-menu {
	/* max-height: 250px; */
	/* Set a maximum height for the dropdown menu */
	overflow-y: auto;
	/* Enable vertical scrollbar when content exceeds the height */
	scrollbar-width: none;
	/* Hide scrollbar in Firefox */
	-ms-overflow-style: none;
	/* Hide scrollbar in IE and Edge */
}

/* Hide scrollbar in WebKit-based browsers (Chrome, Safari, etc.) */
.dropdown-menu::-webkit-scrollbar {
	display: none;
}

.custom-scroll::-webkit-scrollbar {
	display: none !important;
	/* Hide scrollbar for Chrome, Safari, and Opera */
}

.custom-scroll {
	-ms-overflow-style: none !important;
	/* Hide scrollbar for IE and Edge */
	scrollbar-width: none !important;
	/* Hide scrollbar for Firefox */
}

.vitalAlign {
	margin-left: 230px;
}

.nav-tabs .nav-link.active {
	color: #F7F7F7 !important;
}



.vulnerable-color {
	color: #d63384;
}

.black-color {
	color: #000000;
}

.circleTop {
	margin-top: -9px !important;
}

.vulnerPosition {
	position: relative;
}

.underline {
	text-decoration: underline;
	color: blue;
}

.vitalAlign {
	margin-left: 230px;
}

.vulnerable-color {
	color: #d63384;
}

.black-color {
	color: #000000;
}

.circleTop {
	margin-top: -9px !important;
}

.vulnerPosition {
	position: relative;
}

.noScrollData {
	line-height: 0.35em;
	margin: 0px 0px;
	padding: 7px 10px;
}

.cameraOption {

	cursor: pointer;
}

.otp-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	;
	margin: 20px 0;
}

.otp-container label {
	font-size: 1.2em;
	margin-bottom: 10px;
}

.otp-inputs {
	display: flex;
	justify-content: center;
	gap: 10px;
	/* Space between input fields */
}

.otp-input {
	width: 40px;
	/* Adjust width to suit your preference */
	height: 50px;
	/* Adjust height to suit your preference */
	text-align: center;
	font-size: 1.5em;
	border: 1px solid #ccc;
	/* Border color */
	border-radius: 5px;
	/* Rounded corners */
	outline: none;
	transition: border-color 0.3s;
}

.otp-input:focus {
	border-color: #007bff;
	/* Border color on focus */
}

.otp-input::placeholder {
	color: #ccc;
	opacity: 1;
	/* Ensures placeholder is visible */
}

.otp-inputs .otp-input:not(:last-child) {
	margin-right: 10px;
	/* Space between input fields */
}

@media (max-width: 600px) {
	.otp-input {
		width: 30px;
		/* Adjust width for smaller screens */
		height: 40px;
		/* Adjust height for smaller screens */
		font-size: 1.2em;
		/* Adjust font size for smaller screens */
	}
}

.close {
	opacity: 1;
	/* Set opacity to 1 to remove transparency */
	color: #ff0018;
}

.departmentDropDown .ng-select-container {
	border: 2px solid var(--primary-bg-color) !important;
	border-radius: 50px !important;
	min-height: 29px !important;
	/* Override default min-height */
	height: 29px !important;
	/* Ensure the height is also set */
	padding: 0 8px !important;
	/* Adjust padding as needed */
}

.departmentDropDown .ng-select-container .ng-value-container {
	min-height: 29px !important;
	/* Override default min-height */
	height: 29px !important;
	/* Ensure the height is also set */
	padding: 0 !important;
	/* Adjust padding as needed */
	display: flex;
	align-items: center;
	/* Center align text vertically */
}

.departmentDropDown .ng-select-container .ng-input {
	min-height: 29px !important;
	/* Override default min-height */
	height: 29px !important;
	/* Ensure the height is also set */
	padding: 0 !important;
	/* Adjust padding as needed */
	line-height: 29px !important;
	/* Adjust line-height */
}

.drug-description {
	display: inline-block;
	white-space: normal;
	max-width: 100%;
	word-wrap: break-word;
}

.wrap-text {
	display: inline-block;
	/* Ensure the label takes up the full width available */
	max-width: 200px;
	/* Adjust the max-width to your desired value */
	word-wrap: break-word;
	/* Allow breaking words at the end of the line */
	overflow-wrap: break-word;
	/* Break long words onto the next line */
	white-space: normal;
	/* Allow the text to wrap to the next line */
}

.ng-select .ng-select-container {
	border: 2px solid var(--primary-bg-color) !important;
	border-radius: 30px !important;
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
	font-size: medium !important;
	font-weight: 600 !important;
}

.ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
	font-size: medium !important;
}


.ng-select div,
.ng-select input,
.ng-select span {
	font-size: 15px;
}


/* yes - blue and no red */
.yes-label[data-on="Satisfactory"] {
	background-color: blue;
}

.no-label[data-off="NOT-Satisfactory"] {
	background-color: #b12f31;
	color: white;
}
.yes-label[data-on="N/A"] {
	background-color: blue;
	color: white; /* Optional for better contrast */
  }
  
  /* No (OFF) state - red */
  .no-label[data-off="OFF"] {
	background-color: #b12f31;
	color: white; /* Optional for better contrast */
  }
  
.switchs-label[data-on="NOT-Satisfactory"].yes-label::before {
	background-color: blue;
	content: attr(data-on);
}

.switchs-label[data-off="Satisfactory"].no-label::after {
	background-color: #b12f31;
	color: white;
	content: attr(data-off);
}

.yes-label[data-on="Yes"] {
	background-color: blue;
}

.no-label[data-off="No"] {
	background-color: red;
	color: white;
}


.switchs-label[data-on="No"].yes-label::before {
	background-color: blue;
	content: attr(data-on);
}


.switchs-label[data-off="Yes"].no-label::after {
	background-color: #b12f31;
	content: attr(data-off);
}

/* .switchs-label[data-on="Yes"]::before {
    color: blue;
    content: attr(data-on);
}

.switchs-label[data-off="No"]::after {
    color: red;
    content: attr(data-off);
} */


.hicc-tab-bg {
	background: #c0c5ef;
	width: max-content;
}

.remarks-container {
	border: 1px solid #ccc;
	/* Adjust the border color as needed */
	padding: 15px;
	/* Adjust the padding as needed */
	border-radius: 5px;
	/* Optional: Add border-radius for rounded corners */
	margin-top: 15px;
	border-color: var(--primary-bg-color);
	/* Optional: Add margin for spacing */
}

.red-text {
	color: red;
}

.tablebodyFluid {
	padding: 15px;
	border-radius: 5px;
}

.custombodyfluid-table {
	border: 1px solid var(--primary-bg-color) !important;
	border-radius: 5px;
}

.custombodyfluid-table th,
.custom-table td {
	padding: 12px !important;
}

.bodyfluidCheck {
	border: 1px solid var(--primary-bg-color);
	padding: 30px;
	width: 100%;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	/* font-size:20px; */
}

.inline-container {
	display: flex;
	align-items: center;
	gap: 15px;
	/* Space between elements */
	width: 100%;
	/* Adjust width as needed */
}

.label-text {
	font-size: 18px;
	/* Adjust font size as needed */
	font-weight: bold;
	/* Optional: make text bold */
	white-space: nowrap;
	/* Prevent text wrapping */
	margin-right: 20px;
	/* Space to the right of the text */
}

.inline-container .form-control {
	margin-left: 10px;
	/* Adjust margin as needed */
	width: 130px;
}

.inline-container .switch {
	margin-left: 10px;
	/* Adjust margin as needed */
	width: 70px;
}

.body-fluid-margin {
	margin-left: 60px;
}

.body-fluid-check {
	margin-left: 20px;
}

.body-fluid {
	border: 1px solid var(--primary-bg-color);
	border-radius: 5px;
	padding: 20px;
	width: 100%;
}

.proceed-reg {
	border: 1px solid var(--primary-bg-color);
	border-radius: 5px;
	padding: 30px;
	width: 30%;
}

.proceed-vac {
	border: 1px solid var(--primary-bg-color);
	border-radius: 5px;
	padding: 30px;
	width: 50%;
}

.hosp-details {
	border: 1px solid var(--primary-bg-color);
	border-radius: 5px;
	padding: 10px;
	margin-left: 20px;
	margin-right: 20px;
}

.count-group {
	display: flex;
	align-items: center;
}

.count-group-append {
	margin-left: 5px;
	display: flex;
	align-items: center;
	margin-top: 15px;
	color: var(--primary-bg-color);
}

.inline-body-wrapper {
	display: flex;
	align-items: center;
	/* Align items vertically centered */
	gap: 1rem;
	/* Adjust spacing between items as needed */
}

.inline-body-item {
	margin-right: 1rem;
	/* Add some spacing between items if needed */
}

.inline-body-item input[type="text"] {
	width: auto;
	/* Adjust the width of the text input as needed */
}


.table-body-fluid {
	border: 0px !important;
	padding: 12px !important;
}

.table-body-struct {
	border: 0px !important;
}
.image-container-DemoChange{
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.dashboard-count-question {
	border-radius: 20px;
	height: 165px;
	margin-bottom: 10px;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.dashboard-count-question {
	border-radius: 20px;
	height: 165px;
	margin-bottom: 10px;
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


.sur-h6 {
	font-size: 1.3em;
}

.no-label[data-off="No"] {
	background-color: #993d3d;
	color: white;
}

.envsurtr {
	border-bottom: 1px #c1bbbb solid;
	border-top: 1px #c1bbbb solid;
}

.envsurtr h4 {
	padding: 0px;
	margin: 0px;
}

.theme-cyan section.content:before {
	z-index: -1;
}

.score-block {
	border: 3px solid;
	padding: 10px;
	background: yellow;
}

.dark-border-table {
	border: 2px solid var(--primary-bg-color);
	border-collapse: collapse;
}

.dark-border-table th,
.dark-border-table td {
	border: 1px solid var(--primary-bg-color);
}

.dark-border-top {
	border: 2px solid var(--primary-bg-color);
}

.dark-border-top td {
	min-height: 50px;
	padding: 10px;
}

.selected-option {
	color: green;
	/* Change this to your desired color */
	font-weight: bold;
}

.planOfCare {
	font-size: 14px;
}

.ipbillingDate {
	width: 135px;
}

.ipbillingDays {
	width: 60px;
}


.fontSize {
	font-size: 30px;
}

.fontSizeValue {
	font-size: 30px;
	color: #FF8B00;
}

.text-indigo {
	color: #6f42c1;
}

.bg-bblue {
	color: var(--primary-bg-color) !important
}

.ckeditor {
	font-size: 1.0rem !important;
	font-weight: 500 !important;
}

  .large-checkbox {
    width: 20px;
    height: 20px;
    transform: scale(1.5);
    margin-right: 10px;
    margin-top: 10px;
  }
.histo-submit-button {
    background-color: var(--primary-bg-color);
    color: #FFFFFF;
    font-size: 14px;
    padding: 5px 15px;
    border-width: 1px;
    border-radius: 30px !important;
}
.histo-cancel-button {
    border: 1px solid #888;
    color: #FFFFFF;
    font-size: 14px;
    padding: 5px 15px;
    border-width: 1px;
    border-radius: 30px !important;
    background-color: #888;
}
.small-icon {
    font-size: 20px !important;
  }
.histo-submit-button:hover,
.histo-cancel-button:hover {
    opacity: 0.8;
}
.actions-right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.sentinel-text-editor .ck-editor__editable  {
    min-height: 120px !important; /* Adjust to the height you want */
}

.emailContent-text-editor .ck-editor__editable {
    height: 120px !important;      /* Fixed height */
    max-height: 120px !important;  /* Prevents growing */
    overflow-y: auto;              /* Scrollbar when content exceeds */
}

.instructions-list {
	list-style: none;
	padding: 0;
  }
  
  .instructions-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 10px;
	font-size: 14px;
  }
  
  .instructions-list li::before {
	content: "◆";
	color: #007bff;
	position: absolute;
	left: 0;
	font-size: 12px;
  }
  
  .other-input {
	border: 1px solid #007bff;
	border-radius: 15px;
	padding: 4px 10px;
	outline: none;
	margin-left: 10px;
	width: 200px;
  }

  
  .vas-container {
	display: flex;
	gap: 10px;
  }
  
  .vas-item {
	text-align: center;
	padding: 10px;
	border: 2px solid #ccc;
	border-radius: 8px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  .vas-item:hover, .vas-item.selected {
	border-color: blue;
  }
  
  .emoji {
	font-size: 2rem;
  }
  
  .pain-text {
	font-size: 14px;
	font-weight: bold;
  }
  
  .pain-value {
	font-size: 16px;
  }
  
  .scale-display {
	margin-top: 80px;
	font-size: 16px;
  }
  
  .scale-display input {
	width: 50px;
	text-align: center;
	font-size: 16px;
	border: 1px solid #ccc;
  }

  .custom-box {
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 800px;
}
select.form-control {
	width: 150px;
	border: 1px solid blue;
	color: gray;
}
  
.rotate-down {
	transform: rotate(180deg);
	/* Rotate to indicate expanded state */
	transition: transform 0.3s ease-in-out;
}

.rotate-up {
	transform: rotate(0deg);
	/* Default state */
	transition: transform 0.3s ease-in-out;
}

.review-header {
	background-color: #EEEEEE;
	padding: 10px 23px;
	color: #2E3A59;
	font-size: 16px;
	font-weight: 700;
  }
  
  .review-title {
	font-size: 16px;
	margin: 0;
  }
  
  .gap-2 {
	gap: 10px;
  }
.timeline {
  position: relative;
  margin-left: 20px;
  border-left: 2px solid #ccc;
  padding-left: 20px;
}

.timeline-step {
  position: relative;
  padding-bottom: 20px;
}

.timeline-step .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  position: absolute;
  left: -26px;
  top: 2px;
}

.timeline-step .circle.completed {
  background-color: #4CAF50; /* green for completed */
}

.timeline-step .content {
  margin-left: 10px;
}

.timeline-step .status-name {
  font-weight: 600;
}

.timeline-step .status-info {
  font-size: 12px;
  color: #555;
}
.mat-fab .mat-button-wrapper {
    padding: 0px 0 !important;
    display: inline-block;
    line-height: 24px;
}
.governance-accept-button {
    background-color: var(--bs-success); /* Bootstrap green */
    color: #ffffff;
    font-size: 14px;
    padding: 5px 15px;
    border: none;
    border-radius: 30px !important;
}

.governanc-reject-button {
    background-color: var(--bs-danger); /* Bootstrap red */
    color: #ffffff;
    font-size: 14px;
    padding: 5px 15px;
    border: none;
    border-radius: 30px !important;
}


