@charset "utf-8";
:root {
	--theme-color: #243342;
	--theme-background-color: #243342;
	--theme-border-radius: 10px;
	--theme-oversize-color: currentColor;
}
body {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
/*	font-family: 'Barlow', sans-serif;*/
	overflow-y: hidden;
	background: var(theme-background-color);
	color: white;
	background-image: linear-gradient(to bottom right, #243342, #009FEC );
}
html,body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}
a, a:visited {
	color: #FFF;
}
a:hover {
	color: #09F;
	text-decoration: none;
}
/* Post Office Panel */



input,select,textarea {
	color: black;
}
.mm-page.mm-slideout {
	height: 100%;
}
#pushobj {
	display: flex;
	flex-direction: column;
	width: calc(100% - 4px);
	height: 100%;
	padding: 0px;
	margin: 0px 2px;
	top: 0px;
	left: 0px;
	bottom: 0px;
	z-index: 1;
}
#pushobj .header {
	color: white;
	width: 100%;
	height: 40px;
	z-index: 999;
}
.header #popmenu {
	color: inherit;
	font-size: 1.4em;
	padding: 0px;
	position: absolute;
	left: 10px;
	line-height: 40px;
	text-decoration: none;
}
.header #popconfigmenu {
	color: inherit;
	font-size: 1.0em;
	display: block;
	padding: 0px;
	position: absolute;
	right: 20px;
	line-height: 40px;
	text-decoration: none;
}
#pushobj .css-page-name {
	font-size: 1.2em;
	font-weight: 400;
	color: white;
	background-color: transparent;
	width: 100%;
	height: 40px;
}
.css-page-name #div-page-name {
	font-size: 1.1em;
	font-weight: 400;
	line-height: 40px;
	margin-left: 5px;
	text-transform: uppercase;
}
#pushobj .css-page-name .css-quick-checkin, #pushobj .css-page-name #quick-member {
	font-size: 1em;
	height: 30px;
	color: #000;
	font-variant: normal;
	text-transform: capitalize;
	vertical-align: middle;
}
#pushobj .css-page-name .css-quick-checkin{
	width: 150px;
	background-color: #FFC;
}
#pushobj .css-page-name .css-quick-member {
	width: 200px;
}
#pushobj .css-page-name .css-help-diag {
	font-size: 0.9em;
	margin-left: 10px;
	color: #FFFF66 !important;
}
#pushobj .css-page-name .css-help-diag:hover {
	color: green;
}
.css-message-wrapper .wrapper {
	width: auto;
	height: 40px;
	padding: 4px;
	padding-left: 0px;
}
.css-message-wrapper .wrapper i {
	width: auto;
	font-size: 1em;
	text-align: center;
	background-color: #82DFC0;
	color: #399;
	border-radius: 3px;
	border: 1px solid gray;
	height: auto;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 10px;
	margin-right: -4px !important;
	margin-left: 0px !important;
}
.css-message-wrapper .wrapper i:hover {
	background-color: green;
	box-shadow: none;
	border: 1px solid #CCC;
	color: #FFF;
}
.css-message-wrapper .wrapper i.fa-power-off {
	background-color: #900;
	margin-top: 0px;
}
.css-message-wrapper .wrapper i.fa-power-off:hover {
	background-color: red;
}
.css-message-wrapper .wrapper input {
	margin-top: 0px;
	margin-bottom: 0px;
}
#pushobj #div-main-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	overflow: hidden;
	gap: 5px;
}
.css-control-wrapper {
	display: flex;
	flex-direction: row;
	flex: 1;
	background-color: transparent;
	margin: 0px;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.css-control-wrapper .css-presentation-panel {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex: 1;
	overflow-x: hidden;
	overflow-y: auto;
}
.css-control-wrapper #div-messenger {
	width: 300px;
	display: none;
	flex-direction: column;
	background-color: #1679A9;
	padding-left: 2px;
	position: relative;
}
.css-control-wrapper.normal #div-messenger {
	display: flex;
	width: 300px;
	transition: width 0.5s ease-out;
/*	-webkit-animation-name: messenger-normal;
	-webkit-animation-duration: 2s;
	animation-name: messenger-normal;
	animation-duration: 2s;*/
}
@-webkit-keyframes messenger-normal {
	from { width: auto; }
	to { width: 300px; }
}
.css-control-wrapper.expand #div-messenger {
	display: flex;
	width: 500px;
	transition: width 0.5s ease-out;
/*	-webkit-animation-name: messenger-normal;
	-webkit-animation-duration: 2s;
	animation-name: messenger-expand;
	animation-duration: 2s;*/
}
@-webkit-keyframes messenger-expand {
	from { width: auto; }
	to { width: 500px; }
}

.css-control-wrapper.collapse #div-messenger {
	display: flex;
	width: 0px;
	transition: width 0.5s ease-out;
}
.css-control-wrapper.collapse #div-messenger .css-event-func-panel{
	position: fixed;
	left: calc(100% - 60px);
	top: 100px;
	padding-left: 5px;
	border: 1px solid grey;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	border-radius: 5px 0 0 5px;
}
.css-control-wrapper.collapse #div-messenger .css-date-wrapper,
.css-control-wrapper.collapse #div-messenger #event-refresh, 
.css-control-wrapper.collapse #div-messenger #admin-write,
.css-control-wrapper.collapse #div-messenger #ev-collapse,
.css-control-wrapper.normal #div-messenger #ev-normal,
.css-control-wrapper.expand #div-messenger #ev-expand{
	display: none;
}
button i.glyphicon {
	color: white;
}
#div-quick-menu {
	display: flex;
	flex-direction: row;
	margin: 1px;
	height: 40px;
	width: auto;
	float: right;
	padding: 0px;
	float: right;
}
@media screen and (max-width: 1024px) {
	body {
		overflow: hidden;
	}
	.css-control-wrapper .css-presentation-panel {
		display: flex;
		width: 100%;
		overflow-x: hidden;
	}
	.css-control-wrapper #div-messenger {
		width: 200px;
		display: none;
	}
	#div-quick-menu {
		display: none;
	}
}
#div-main-wrapper #div-panel-bottom {
	height: 100px;
	background-color: #FCC;
}
#menu {
	background-color: powderblue;
}
#config_menu {
	background-color: #F3F3F3;
	z-index: 2;
}
#config_menu * {
	color: #333;
}
#menu ul li a, #menu ul li span {
	color: brown;
}

.css-command-panel {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 2px;
	overflow: hidden;
	width: 100%;
	padding: 10px;
}
.css-command-panel * {
	border-radius: 3px;
	margin: 0px;
}
/*.css-command-panel button:first-child {
	border-radius: 5px 0px 0px 5px;
}
.css-command-panel button:last-child {
	border-radius: 0px 5px 5px 0px;
}
*/
nav:not(.mm-menu) {
	display: none;
}
.header, .content, .footer {
	text-align: center;
}
.header {
	font-size: 14px;
	font-weight: normal;
	color: #fff;
	line-height: 36px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 0 0px;
	background-color: #00699B;
	letter-spacing: 2px;
	display: block;
}
.header.fixed
{
	position: fixed;
	top: 0;
	left: 0;
}
.footer {
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	line-height: 20px;
	width: 100%;
	background-color: #00699B;
	letter-spacing: 2px;
	padding: 2px 0px;
	text-align: right;
}
.footer.fixed
{
	position: fixed;
	bottom: 0;
	left: 0;
}
.footer .css-footer-pill {
	font-size: 10px;
	width: auto;
	height: 100%;
	border: 1px ridge grey;
	border-radius: 5px;
	padding: 3px 5px;
	display: inline-block;
	text-transform: uppercase;
	word-spacing: 0px;
	letter-spacing: 0em;
}
a.glyphicon:hover, a.fa:hover{
	color: orange !important;
}
/*.header {
	z-index: 999;
}
.xheader a
{
	background: center center no-repeat transparent;
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 10px;
}
*/
/*table {
	background-color: transparent !important;
}*/
.ui-datepicker span {
	color: #333;
}
.css-inactive {
	color: lightgrey;
}
.css-message-A {
	font-size: 1em;
	color: #F00;
}
.css-message-H {
	font-size: 1em;
	color: #03C;
}
.css-message-M{
	font-size: 1em;
	color: #000;
}
.css-message-L {
	font-size: 1em;
	color: #333;
}
.mm-panels .glyphicon, .mm-panels .fa {
	font-size: 1em;
	padding: 0px 5px;
	color: brown;
	cursor: pointer;
}
.mm-panels .glyphicon:hover, .mm-panels .fa:hover {
	color: #FFFF00;
}
.mm-panel ul li div.mm-panel {
	padding: 0px 0px 0px 30px !important;
}
.mm-panel ul li div.mm-panel .glyphicon, .fa {
	font-size: 1em;
	padding: 0px 5px;
	color: white;
	cursor: pointer;
}
ul.mm-listview ul li a {
	color: black !important;
}
ul.mm-listview ul li a:hover {
	background-color: #0098E1 !important;
	color: #FFF !important;
}
/*.glyphicon:hover, .fa:hover {
	color: orange;
}*/
.fa-ban {
	color: red;
}
.css-ban {
	cursor: not-allowed;
}
.css-ban span{
	color: #666 !important;
}
.fa {
	margin-right: 5px;
}
.css-login-user {
	background-color: #069;
	color: white;
	padding: 3px 10px;
	maring-left: 20px;
	font-size: 0.7em;
	text-transform: uppercase;
}
/* Postoffice Panel */
#div-postoffice-panel {
	width: auto;
	margin: 0px;
}
#div-postoffice-panel div {
	width: auto;
	display: inline-block;
	font-size: inherit;
	text-transform: uppercase;
}
#div-postoffice-panel .css-label {
/*	padding-right: 5px;
	padding-left: 5px;
*/}
#div-postoffice-panel .css-status{
	padding-right: 2px;
	padding-left: 2px;
	text-align: center;
	line-height: 16px;
}
#div-postoffice-panel .css-light {
	width: 14px;
	height: 14px;
	text-align: center;
	vertical-align: middle;
	margin-left: 2px;
	display: inline-flex;
	justify-content: center;
	align-content: center;
	border-radius: 50%;
}
#div-postoffice-panel .css-light i {
	display: none;
}
#div-postoffice-panel .css-light.ON{
	background-color: #3F0;
}
#div-postoffice-panel .css-light.RUN{
	background-color: #FC0;
}
#div-postoffice-panel .css-light.RUN i {
	display: block;
	font-size: 10px;
	color: black;
	padding: 2px;
	-webkit-animation: rotation 2s infinite linear;
}
@-webkit-keyframes rotation {
		from { -webkit-transform: rotate(0deg);	}
		to 	 { -webkit-transform: rotate(359deg); }
}
.css-presentation-panel .css-frame-wrapper {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
	width: 100%;
}
#div-launch-page.css-is-launch-page i {
	color: #F90;
}
.css-help {
	font-size: 1em;
	font-style: italic;
	line-height: 1.2em;
	color: #F4F4F4;
	padding: 20px 5px;
}
.css-row-alert {
	background-color: #FBE9BD;
	color: #F00;
}
/* -- Quick Check In Panel: Begin -- */
#div-qcheckin-panel {
	font-size: 1.2rem;
	display: none;
	position: absolute;
	width: 600px;
	height: auto;
	top: 100px;
	z-index: 200;
	border-radius: 10px;
	background-color: #FFF;
	color: white;
}
#div-qcheckin-panel.css-warning {
	padding: 0;
}
#div-qcheckin-panel .row-error-msg {
	display: none;
}
#div-qcheckin-panel.css-warning .row-error-msg {
	display: table-row;
}
#div-qcheckin-panel .css-error {
	font-size: 1.4rem;
	color: red;
}
#div-qcheckin-panel table{
	color: black !important;
	background-color: transparent !important;
	font-size: 1em;
	margin: 0px;
	padding: 0px;
}
#div-qcheckin-panel #div-content {
	border: 5px solid green;
	border-radius: 10px;
	padding: 10px;
	background-color: #DFFDE1;
}
#div-qcheckin-panel.css-warning #div-content {
	border: 5px solid red;
	background-color: #FFECEC;
}
#div-qcheckin-panel a, #div-qcheckin-panel a:hover{
	color: red;
}
#div-qcheckin-panel .checkin-warning > ul {
	padding-left: 15px;
	color: red;
	font-size: inherit;
	line-height: 1.6;
}
#div-qcheckin-panel .css-member-name {
	cursor: pointer;
	text-decoration: underline;
}
#div-qcheckin-panel. css-photo {
	width: 100%;
}
#div-qcheckin-panel. css-photo img {
	object-fit: contain;
}
/* -- Quick Check In Panel: End -- */


/* BOOTSTRAP: Customization : Begin */
span[data-toggle=tooltip]{
	color: black;
}
.modal-body {
	background-color: white;
	padding: 10px;
}
/* BOOTSTRAP: Customization : End */

/* For Daily Schedule Sheet : Begin */
.footer #btn-daily-schedule-print {
	cursor: pointer
}
.footer #btn-daily-schedule-print.normal{
	color: white;
	-webkit-transition: all 1000ms ease 0ms;
	-moz-transition: all 1000ms ease 0ms;
	-ms-transition: all 1000ms ease 0ms;
	-o-transition: all 1000ms ease 0ms;
	transition: all 1000ms ease 0ms;
}
.footer #btn-daily-schedule-print.flashing, .footer #btn-daily-schedule-print:hover {
	color: #F00;
	-webkit-transition: all 1000ms ease 0ms;
	-moz-transition: all 1000ms ease 0ms;
	-ms-transition: all 1000ms ease 0ms;
	-o-transition: all 1000ms ease 0ms;
	transition: all 1000ms ease 0ms;
}
/* For Daily Schedule Sheet : End */

#fd_location {
	width: auto;
	font-size: 1.2vh;
	font-weight: 600;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: 10px;
	margin-right: 2px;
}
#schedule_date {
	display: inline-block;
	margin-left: 20px;
	font-size: 1.6rem;
	text-transform: uppercase;
}

#div-qcheckin-panel .wrapper-weekday {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-even;
	align-items: center;
	flex: 1;
	gap: 5px;
	font-size: 0.9rem;
	margin-top: 3px;
	border: 1px dotted grey;
}
#div-qcheckin-panel .wrapper-weekday .css-pday {
	width: auto;
	height: auto;
	flex-grow: 1;
	text-align: center;
	line-height: 2.4;
}
#div-qcheckin-panel .wrapper-weekday .css-pday.allowable {
	background: green;
	color: white;
}

.wrapper-location {
	display: flex;
	flex-direction: row;
	align-items: center;
	float: right;
}
#btn-daily-schedule-print {
	display: none;
}