body {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	color: #222;
	margin: 0;
}

.content {
	padding: 0 15px 15px 15px;
	position: relative;
}

.header {
	padding: 10px 0px;
	text-align: center;
	position: sticky;
	top: 0;
	background-color: #fff;
}

.header.sticky {
	box-shadow: 0 4px 5px -5px gray;
	backdrop-filter: blur(6px);
	background: rgba(255, 255, 255, 0.9);
}

.dis-txt-sel {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.sel-clinic {
	cursor: copy;
}

.sel-clinic:hover {
	background-color: #073c64;
	color: #fdcb2c;
}

input,
select {
	background-color: #fff;
}

input:focus,
select:focus {
	outline: none;
	box-shadow: 0px 0px 5px lightgrey;
}

input {
	min-width: 250px;
	border: 1px solid grey;
	height: 30px;
	padding-left: 10px;
}

input[name="date"] {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Lora, Georgia, "Times New Roman", Times, serif;
	line-height: 1.2;
}

h2,
h3,
h4,
h5,
h6 {
	color: #555;
	margin-top: 25px;
	margin-bottom: 5px;
}

table {
	border-collapse: collapse;
}

tr {
	background-color: #149fc0;
	transition: 0.3s;
}

td {
	padding: 10px;
	border: 1px solid #fff;
}

.hdr {
	background-color: #073c64;
	padding: 15px;
}

.hdr img {
	height: 80px;
	width: auto;
}

.spanred {
	color: red;
}

.spanwhite {
	color: #fff;
}

.bg-primary {
	background-color: #073c64;
}

.bg-secondary {
	background-color: #767676;
}

.bg-success {
	background-color: #149fc0;
}

.bg-info {
	background-color: #9cc2d8;
}

.bg-danger {
	background-color: #d4596f;
}

.primary {
	color: #073c64;
}

.secondary {
	color: #767676;
}

.success {
	color: #149fc0;
}

.info {
	color: #9cc2d8;
}

.danger {
	color: #d4596f;
}

.legend {
	cursor: help;
	font-size: 12px;
	font-family: "Courier New", Courier, monospace;
	border-bottom: 1.5px dotted #000;
	text-decoration: none;
}

.select-date {
	cursor: pointer;
	font-size: large;
	border: 0px;
	padding: 5px;
	transition: 0.3s;
}

.select-date:hover {
	background-color: #073c64;
	color: #fdcb2c;
}
.datepicker-cell.day {
	border-radius: 0px;
}

.datepicker-cell.day.selected.focused {
	background-color: #149fc0;
	color: #fff;
}

.datepicker-cell.day.today {
	background-color: #767676;
	color: #fff;
}

.modal {
	display: none;
	position: fixed;
	z-index: 999;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	width: 20%;
}

@media screen and (max-width: 800px) {
	.modal-content {
		width: 80%;
	}
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: 700;
}

.close:focus,
.close:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#snackbar {
	display: flex;
	visibility: hidden;
	width: 100%;
	background-color: transparent;
	color: #fff;
	justify-content: center;
	text-align: center;
	position: fixed;
	z-index: 1;
	bottom: 20px;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 20px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 20px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 20px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 20px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

.snackbar-content {
	max-width: 250px;
	background: rgba(51, 51, 51, 0.9);
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	font-size: 17px;
	backdrop-filter: blur(6px);
}

.marquee {
	color: red;
	font-size: 16px;
	font-style: italic;
	white-space: nowrap;
	overflow: hidden;
	animation: slideRightToLeft linear infinite;
}
