/*/*
    DEMO STYLE
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
*/
body {
    font-family: Arial, sans-serif;
    font-size: 0.9em;
	color: #666666;
    background: #fafafa;
}

p {
	font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 300;
    line-height: 1.1em;
    color: #999;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.75;
}

.spin {
	height: 50px;
	width: 50px;
	border-width: 5px;
	border-style: solid;
	border-color: rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.25) rgba(114, 140, 176, 0.25);
	border-radius: 100%;
	-webkit-animation: clockwise 1s linear infinite;
	animation: clockwise 1s linear infinite;
}

.loader {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.spin-sm {
	height: 20px;
	width: 20px;
	border-width: 3px;
	border-style: solid;
	border-color: rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.75) rgba(114, 140, 176, 0.25) rgba(114, 140, 176, 0.25);
	border-radius: 100%;
	-webkit-animation: clockwise 1s linear infinite;
	animation: clockwise 1s linear infinite;
}

@-webkit-keyframes clockwise {
	to {
		transform: rotate(360deg) translatez(0);
	}
}

@keyframes clockwise {
	to {
		transform: rotate(360deg) translatez(0);
	}
}
/* /preloader */

.bg-primary {
	#849dbf;
}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

@media print {
	#sidebar {
		position: fixed;
		top: 0px;
		left: 0px;
		display: none;
	}
}


#sidebar {
	position: fixed;
	top: 0px;
	left: 0px;
	padding-top: 80px;
	min-width: 250px;
	max-width: 250px;
	background: #849dbf;
	color: #fff;
	transition: all 0.3s;
	z-index: 90;
	min-height: 100vh;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #546680;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid #47748b;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1em;
    display: block;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #546680;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background:#728cb0;
}

a[data-bs-toggle="collapse"] {
    position: relative;
}

.active-menu {
	color: #849dbf;
	background: #eee;
}

#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar a[aria-expanded="true"]::after {
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0;
	border-right: 0.3em solid transparent;
	border-bottom: 0.3em solid;
	border-left: 0.3em solid transparent;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #93aac9;
}

ul.ths {
    padding: 20px;
}

ul.ths a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #849dbf;
}

a.article,
a.article:hover {
    background: #546680 !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

@media print {
	#content {
		width: 100%;
		padding: 40px 40px 40px 40px;
		min-height: 90vh;
		transition: all 0.3s;
		background-color: #fff;
	}
}

@media screen {
	#content {
		width: 100%;
		padding: 30px 40px 40px 280px;
		min-height: 90vh;
		transition: all 0.3s;
		background-color: #fff;
	}
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
.top-header {
	background-color: #fff;
	padding-left:20px;
	padding-right:20px;
	padding-top:10px;
	padding-bottom:10px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.btn-collapse {
	background-color: #849dbf;
	position:fixed;
	margin-left:-28px;
	z-index: 80;
	color: #c7d6eb;
}

.menu-selected {
	background-color: #fff;
	color: #546680;
}

h3 {
	font-family: Arial, sans-serif;
	font-weight: 700;
}

.page-header {
	border-bottom: 1px solid #bdbdbd;
}

.label-required {
	color: #993333;
	font-weight: 500;
}

.label-required:after {
	content: "*";
}

.btn-primary {
	border-radius: 16px;
	padding-right: 20px;
	padding-left: 20px;	
	border-color: #546680;
	background-color: #546680;
	font-size: 1.1em;
/*	border-top-left-radius: 0;
	border-bottom-left-radius: 0;	*/
}

.btn-primary:hover {
	border-color: #728cb0;
	background-color: #728cb0;
}

/*
Disable Sidebar Collapse

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
}

[data-sidebar-style^=full] #sidebar-btn-collapse {
	display:none;
}

[data-sidebar-style^=full] #sidebar-btn-panout {
	display:;
}
*/

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
	border-radius: 0.25rem;
	padding: 0.75rem 0.75rem;
}

.card-body {
	flex: 1 1 auto;
	padding: 1.0rem;
}

.card-shadow {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
}

.card-icon {
	font-size:84px;
	position:absolute;
	right:32px;
	opacity: 0.25;
}

.gradient-1 {
	background-image: linear-gradient(230deg, #6f7050, #dadbb6); 
	color: #fff !important;
}

.gradient-2 {
	background-image: linear-gradient(230deg, #50706c, #adbab9); 
	color: #fff !important;
}

.gradient-3 {
	background-image: linear-gradient(230deg, #354d38, #b3c9b6); 
	color: #fff !important;
}

.gradient-4 {
	background-image: linear-gradient(230deg, #a32629, #cf8f91); 
	color: #fff !important;
}

.opacity-5 {
	opacity: 0.5;
}

.display-5 {
	font-size: 3rem;
}

.btn-plain {
	border:0px solid #000;
	background: transparent;
}

.user-menu {
	width:240px;
	padding: 5px 2px 5px 2px;
	font-size: 0.85rem;	
	color:#546680;	
}

.user-menu a {
	padding: 5px 10px 5px 10px;	
	display: block;
	line-height: 1.25rem;
}

.user-menu a:hover {
	background-color: #eee;
}

hr {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.table-striped td {
	font-size: 0.9em;
	color:#777;
}

.table-striped th {
	font-size:0.9em;
	font-weight: 1600;
	color:#eee;
	background-color: #666;
}

.pagination > li > a
{
    background-color: white;
    color: #546680;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover
{
    color: #546680;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a
{
    color: white;
    background-color: #666 !Important;
    border: solid 1px #666 !Important;
}

.pagination > .active > a:hover
{
    background-color: #333 !Important;
    border: solid 1px #333;
}

.dropdown-item.active{
	background-color:#666;
}
.action-menu {
	width:48px;
	height:48px;
	background-color: #fff;
	background-clip: border-box;
	padding: 5px;
	align-items: center;
	justify-content: center;	
}

.action-menu-label {
	position: relative;
	white-space: no-wrap;
	font-size:9px;
	line-height:12px;
}

.action-menu-icon {
	font-size:24px;
	color: #336699;
/*
	border:1px solid #990000;
	border-radius: 10%;
	padding: 5px;
	background-color: #990000;
*/
}

.btn-plain:hover {
	color: #546680;
}

.icon-menu {
	font-size: 16px;
}

.nav-link {
	color: #728cb0;
}

.nav-link:hover {
	color: #546680;
}

/* File Icon Colors */
.fa-file-archive {
	color: #d1b813;
	/* text-shadow: 1px 1px 3px #666666; */
}
.fa-file-audio {
	color: #705aed;
	background: -webkit-linear-gradient(#a49dd1, #705aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
.fa-file-excel {
	color: #3ba32f;
}

.fa-file-image {
	color: #9c4614;
}

.fa-file-pdf {
	color: #c71a1a;
}

.fa-file-video {
	color: #704f1a;
}

.fa-file-word {
	color: #22479c;
}
.fa-file-powerpoint {
	color: #a13d1f;
}

.fa-file-alt {
	color: #556b2e;
}

.icon-sm {
	font-size: 16px;
}

.icon-title {
	font-size: 32px;
	opacity: 0.75;
}

.fixed-vh-75 {
	height: 75vh;
	min-height: 75vh;
	max-height: 75vh;
}

.fixed-vh-50 {
	height: 50vh;
	min-height: 50vh;
	max-height: 50vh;
}

.ui-datepicker-calendar > tbody > tr {
	border: 1px solid white;
}

.ui-datepicker-calendar > tbody > tr:hover td a:not(.ui-state-highlight) {
	font-weight: normal;
	color: #555555;
	border: 1px solid #999999;
}

.ui-datepicker-calendar > tbody > tr:hover td {
	border-top: 1px solid #ffaf46;
	border-bottom: 1px solid #ffaf46;
}

.ui-datepicker-calendar > tbody > tr:hover td:first-child {
	border-left: 1px solid #ffaf46;
}

.ui-datepicker-calendar > tbody > tr:hover td:last-child {
	border-right: 1px solid #ffaf46;
}

.form-control-sm {
	font-size: 0.9em;
	line-height: 1.3em;
}

.form-control-xs {
	font-size: 0.8em;
	line-height: 1.1em;
}

.form-control-xf {
	font-size: 0.6em;
	line-height: 0.9em;
}

#modal-message {
	z-index: 2010;
}

.card-icon-sm {
	font-size: 40px;
	position: absolute;
	right: 32px;
	opacity: 0.25;
}

.input-invisible {
	width: 1px;
	height: 1px;
	position: relative;
	top: -20px;
	left: -10px;
	z-index: -1;
	border: 0px solid #fff;
	color: #fff;
	opacity: 0;
}

.customLegend {
	border: 1px solid #e5e5e5;
	padding: 1em 0 1em;
	margin-top: 0.75em;
	position: relative;
}

.customLegend legend {
	border: 0;
	background: #fff;
	width: auto;
	transform: translateY(-50%);
	position: absolute;
	top: 0;
	left: 1em;
	padding: 0;
}

.basebackgroundcolor {
	background-color: #c2dbfe !important;
}

.greybackgroundcolor {
	background-color: #E2E3E5;
}

.timesheet-pointer > tbody > tr:hover:not(.no-records-found) {
	cursor: pointer;
}

@media print {
	.form-control-print {
		border: 0px solid #fff;
		border-bottom: 1px solid #999;
		background-color: #fff;
		border-radius: 0;
		font-weight: 500;
	}

	.form-control-print-noline {
		border: 0px solid #fff;
		background-color: #fff;
		font-weight: 500;
	}

	.form-control-print:disabled {
		background-color: #fff;
	}

	.form-control-print:read-only {
		background-color: #fff;
	}

	input[type="date"]::-webkit-inner-spin-button,
	input[type="date"]::-webkit-calendar-picker-indicator {
		display: none;
		-webkit-appearance: none;
	}

	input[type="date"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
	input[type="date"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
	input[type="date"]::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
		color: transparent;
	}

	.ths-billing-item {
		min-height: 25vh;
	}

	a.link-printable {
		text-decoration:none;
		color: #000;
	}
}

.fixed-position {
	position: fixed;
}

.remove-sidebar-padding {
	padding: 40px 40px 40px 40px !important;
}

.hamburger-button {
	font-size: 1.5em;
}

.week-label-font {
	font-size: .65em;
}

.week-input-size {
	width: 50px !important;
}

.action-items{
	z-index: 2000;
}

.timesheet-block-format {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.timesheet-block-format {
		width: 100%;
	}
}

.select-container {
	padding: 0.25rem 0.25rem;
	font-size: 0.75rem;
	font-weight: 400;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	display: inline-block;
}

.select-container-item {
	padding: 0.25rem 0.25rem;
	line-height: 1.2;
	background-color: #dfe5f5;
	border: 1px solid #b1bdde;
	border-radius: 0.25rem;
	margin-bottom: 0.25rem;
	margin-right: 0.25rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
}

.departmentblock{
	position: relative;
}

.departmentblockdelete {
	position: absolute;
	bottom: 0;
	right: 0;
}