﻿ 
/***************/

.pad0 {
	padding: 0;
}

.pad-r {
	padding-right: 0;
}

.pad-l {
	padding-left: 0;
}


.btn-warning {
	background-color: #F44336;
	border-color: #F44336;
}

.btn-warning:hover{
	background-color: #c5271b;
	border-color: #b72418;
}


.label_box {
	width:150px;
}

.session_bg {
	background-image: url(../../images/doctorbg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	height: 100vh;
	margin: 0;
	overflow: hidden;
}

.session_bg:before {
	content: "";
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
}

.session_box .session-group {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	background-color: #fff;
	padding: 50px 80px;
	border: 20px solid #333a44;
}
/*
.input-group span {
	padding: 6px 10px;
	border: 1px solid #6f6c6c;
	border-right: 0;
}
*/
.table-scroll {
	margin-top: 10px;
	max-height: 95px;
	overflow: hidden;
	overflow-y: scroll;
	display: block;
}

/* Works on Firefox */
 
	/* Works on Chrome, Edge, and Safari */
	.table-scroll::-webkit-scrollbar {
		width: 5px; 
	}

	.table-scroll::-webkit-scrollbar-track {
		background: #c8ced3;
	}

	.table-scroll::-webkit-scrollbar-thumb {
		background-color: #007bff;
		border-radius: 20px; 
	}

.info_border {
	border-right: 1px solid #ddd !important;
	padding: 20px;
}

/***************/
#header {
	background-color: #20a8d8 !important;
}

.loader {
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #3498db;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}


/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.inline {
	display: inline-block;
}

.frmbold label {
	font-weight: 500
}

.frmbold {
	font-weight: 500
}

.frmreq:after {
	content: "*";
	color: red;
}

input[type=radio] + label {
	font-weight: normal;
}

/*table thead tr {
	background-color: #20a8d8 !important;
	color: white;
}*/

.theproblem {
	margin-left: 140px;
	margin-top: 140px;
}

.text-Underline {
	text-decoration: underline;
}

.padding-0 {
	padding: 0px !important;
}

.margin-less-45 {
	margin-left: -45px;
}

.margin-less-100 {
	margin-left: -100px;
}

.input-group-btn {
	height: 35px;
	border: 1px solid black;
}


@media screen and (max-width: 768px) {

	.table-scroll {
		width: 100%;
		overflow:inherit;
	}
}


.chat-button-container {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 1000;
}

	.chat-button-container button {
		width: 200px; /* Increase button width */
		height: 50px; /* Increase button height */
		background-color: #dc3545;
		color: white;
		border: none;
		cursor: pointer;
		text-align: center;
		line-height: 80px; /* Align text vertically */
		border-radius: 10px; /* Rounded corners */
		font-size: 20px; /* Larger font size */
		padding: 10px 20px; /* Increase padding for a bigger button */
	}
