@charset "UTF-8";
/* CSS Document */


/* -------------------------------------------------- */
/*  GLOBAL */
/* -------------------------------------------------- */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}

.no-text-select {
	user-select: none; /* Non-prefixed version - Chrome and Opera */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer - Edge */
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
}

html {
	position: relative;
	width: 100%;  /* needed for sticky header and footer */
	height: 100%; /* needed for sticky header and footer */
	margin: 0px;
	padding: 0px;
}

body {
	position: relative;
	width: 100%;  /* needed for sticky header and footer */
	height: 100%; /* needed for sticky header and footer */
	margin: 0px;
	padding: 0px;
	/*color: #696969;*/ /* dark gray */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #fefefe; /* almost white */
	overflow: hidden;
	opacity: 0; /* To Start - setupApplication sets to 1.0 */
}
.theme-button {
	box-shadow: none !important;
	border: 1px solid #aaa !important;
	height: 28px;
	font-size: 13px !important;
	border-radius: 6px;
}
#application {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}



/* -------------------------------------------------- */
/*  JQuery Dialog Overrides */
/* -------------------------------------------------- */
.ui-dialog {
	padding: 10px !important;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;  
	
	border: 1px solid #7F96A7 !important; 
}

/* Title Bar */
.ui-dialog .ui-dialog-titlebar {
	border: 1px solid #8096a6;
	background-color: #6084a3;
	border-radius: 5px;
	
	
	background-color: #ADC2D1 !important; 
	border: 1px solid #ADC2D1 !important; 
	margin-left: -10px;
	margin-right: -10px;
	margin-top: -10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.ui-dialog .ui-dialog-title {
	margin: 0px !important;
	padding: 5px 0px 3px 0px !important;
	font-size: 16px !important;
	color: #fff;
	
	
	color: #000;
	
	
}
/*.ui-dialog .ui-dialog-titlebar-close {
	display: none;
	visibility: hidden;
}*/
/* Dialog Content */
.ui-dialog .ui-dialog-content {
	margin: 10px 0px 10px 0px !important;
	padding: 0px !important;
}
/* Dialog Buttons */
.ui-dialog .ui-dialog-buttonpane {
	margin: 0px !important;
	padding: 0px !important;
	background-color: #6084a3;
	border-radius: 5px;
	
	
	/*border: none;
	background-color: transparent;*/
	background-color: #ADC2D1 !important; 
	border: 1px solid #ADC2D1 !important; 
	margin-left: -10px !important; 
	margin-right: -10px !important; 
	margin-bottom: -10px !important; 
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	
	
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    text-align: center !important;
    float: none !important;
} 
.ui-dialog .ui-dialog-buttonpane button {
	margin: 10px 5px 10px 5px !important;
	width: 100px;
	box-shadow: none !important;
	border: 1px solid #aaa !important;
	height: 28px;
	font-size: 13px !important;
	border-radius: 6px;
}



/* -------------------------------------------------- */
/* Header */
/* -------------------------------------------------- */
#header {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	min-height: 40px;
	background: #525252;
	display: table;
}

#header .slideout-menu-button-container { 
	position: relative;
	left: 12px;
	width: 34px;
	display: table-cell;
	vertical-align: middle;
}
#header .slideout-menu-button {
	height: auto;
	background-color: transparent;
	border-radius: 3px;
	padding: 6px;

}
#header .slideout-menu-button:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

#header .slideout-menu-button-line {
	position: relative;
	width: auto;
	height: 2px;
	margin-bottom: 5px;
	background-color: #ffffff; 
}

#header .slideout-menu-button-line:last-child {
	margin-bottom: 0px;
}

#header .title-text {
	position: relative;
	left: 20px;
	height: auto;
	color: #fff;
	font-size: 18px;
	display: table-cell;
	vertical-align: middle;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 40px;
}



/* -------------------------------------------------- */
/* Footer */
/* -------------------------------------------------- */
#footer {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	min-height: 40px;
	background: #525252;
}

#footer .copyright {
	position: absolute;
	left: 0px;
	top: 0px;
	height: auto;
	font-size: 14px;
	color: #fff;
	margin: 12px;
}



/* -------------------------------------------------- */
/* Admin */
/* -------------------------------------------------- */
#login-dialog .email {
	width: 100%;
}
#login-dialog .password {
	width: 100%;
}
#password-dialog .password {
	width: 100%;
}
#invalid-login-dialog .incorrect-login {
	color: red;
}


.no-close-button .ui-dialog-titlebar-close {
	display: none;
}

#users-dialog {
	max-height: 200px !important;
}

#users-dialog ul {
	/*margin-top: 10px;
	margin-bottom: 10px;*/
	overflow: auto;
}
#users-menu {
	border: none;
	overflow: hidden !important;
}

.device-warning {
	font-weight: bold;
	color: red;
}



/* -------------------------------------------------- */
/* Month Controls */
/* -------------------------------------------------- */
#month-screen .controls {
	position: absolute;
	height: 60px;
	width: 100%;
	background-color: #6084a3;
	border-bottom: 1px solid #888;
	display: table;
	
	background-color: #ADC2D1; 
}

#month-screen .controls .month-year {
	position: relative;
	left: 12px;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	
	
	color: #000;
	
}

#month-screen .controls .month-text {
	font-weight:500;
	font-size: 32px;
}

#month-screen .controls .year-text {
	margin-left: 10px;
	font-size: 32px;
	opacity: .5;
}

#month-screen .controls .nav-buttons {
	position: absolute;
	bottom: 0px;
	right: 0px;
	left: auto;
	height: auto;
	margin: 16px 12px 16px 12px;
}

#month-screen .controls button {
	position: relative;
	float: right;
	top: 0px;
	height: 28px;
}
#month-screen .controls .next-button {
	width: 34px;
}

#month-screen .controls .today-button {
	width: 65px;
}

#month-screen .controls .previous-button {
	width: 34px;
}
#month-screen .controls .day-button {
	width: 65px;
}
#month-screen .controls .nav-buttons .divider {
	position: relative;
	float: right;
	top: 0px;
	width: 2px;
	height: 28px;
	background-color: #fff;
	margin: 0px 10px 0px 10px;
}



/* -------------------------------------------------- */
/* Month Calendar */
/* -------------------------------------------------- */
#month-screen .calendar {
	position: absolute;
	left: 0px;
	width: 100%;
	height: calc(100% - 140px);
	background-color: #fff;
}

#month-screen .calendar .clndr-grid {
	position: absolute;
	width: 100%;
	height: 100%;
	/*border-right: 2px solid white;*/
}

#month-screen .calendar .clndr-grid .days-of-the-week {
	position: relative;
	width: 100%;
	height: 40px;
	/*background-color: #3883a3;*/
	background-color: #ffffff;
	border-bottom: 1px solid #888;
}

#month-screen .calendar .clndr-grid .days-of-the-week .header-day {
	float: left;
	width: 14.2857%;
	padding: 14px;
	padding: 16px;
	text-align: center;
	text-align: right;
	font-size: 16px;
	color: #000;
}

#month-screen .calendar .clndr-grid .days {
	position: relative;
	width: 100%;
	height: calc(100% - 47px);
}
#month-screen .calendar .clndr-grid .days .day,
#month-screen .calendar .clndr-grid .days .empty {
	position: relative;
	float: left;
	width: 14.2857%;
	/*height: 66px;*/
	height: 16.6667%;
	padding: 16px;
	text-align: center;
	text-align: right;
	font-size: 16px;
	color: #000;
	background-color: #fff;

	/*background-image: url('http://kylestetz.github.io/CLNDR/css/./triangle.svg');
	background-size: cover;
	background-position: center;*/
	border-bottom: 1px solid #e6e6e6;
	border-right: 1px solid #e6e6e6;
}

#month-screen .calendar .clndr-grid .days .day.event .day-number,
#month-screen .calendar .clndr-grid .days .empty.event .day-number {
	padding-bottom: 4px;
	border-bottom: 2px solid #3883a3;
}

#month-screen .calendar .clndr-grid .days .day.adjacent-month .day-number,
#month-screen .calendar .clndr-grid .days .empty.adjacent-month .day-number {
	opacity: 0.3;
}

#month-screen .calendar .clndr-grid .days .today {
	background-color: #f5f5f5;
	border: 1px solid #6084a3;	
}

/*#month-screen .calendar .clndr-grid .days .today .day-number {
	background-color: red;
	border-radius: 14px;
	padding: 6px;
	color: #fff;
}
*/



/* -------------------------------------------------- */
/* Day Controls */
/* -------------------------------------------------- */
#day-screen .controls {
	position: absolute;
	height: 60px;
	width: 100%;
	background-color: #6084a3;
	border-bottom: 1px solid #888;
	display: table;
	
	
	background-color: #ADC2D1; 
	
}

#day-screen .controls .month-day-year {
	position: relative;
	left: 0px;
	padding-left: 12px;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	
	color: #000
	
}

#day-screen .controls .month-text {
	font-weight:500;
	font-size: 32px;
}

#day-screen .controls .date-text {
	margin-left: 10px;
	font-weight:500;
	font-size: 32px;
}

#day-screen .controls .year-text {
	margin-left: 10px;
	font-size: 30px;
	opacity: .5;
}

#day-screen .controls .nav-buttons {
	position: absolute;
	bottom: 0px;
	right: 0px;
	left: auto;
	height: auto;
	margin: 16px 12px 16px 12px;
}

#day-screen .controls button {
	position: relative;
	float: right;
	top: 0px;
	height: 28px;
}
#day-screen .controls .next-button {
	width: 34px;
}

#day-screen .controls .today-button {
	width: 65px;
}

#day-screen .controls .previous-button {
	width: 34px;
}
#day-screen .controls .month-button {
	width: 65px;
}


#day-screen .controls .nav-buttons .divider {
	position: relative;
	float: right;
	top: 0px;
	width: 2px;
	height: 28px;
	background-color: #fff;
	margin: 0px 10px 0px 10px;
}



/* -------------------------------------------------- */
/* Day Times and Tasks  (container for times and tasks and drag bar) */
/* -------------------------------------------------- */
#day-screen .times-tasks {
	position: absolute;
	top: 140px;
	left: 0px;
	width: 100%;
	height: calc(100% - 140px);
	background-color: transparent;
}



/* -------------------------------------------------- */
/* Day Times */
/* -------------------------------------------------- */
#day-screen .times {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 50%;
	height: 100%;
	background-color: transparent;
}
#day-screen .times .day-text {
	position: absolute;
	top: 0px;
	left: 12px;
	right: 24px;
	height: 44px;
	line-height: 44px;
	font-size: 20px;
	color: #525252;
	border-bottom: 1px solid #525252;
}
#day-screen .times .add-task-button {
	position: relative;
	float: right;
	height: 26px;
	margin-right: 24px;
	top: 8px;
}
#day-screen .times .preview-button {
	position: relative;
	float: right;
	height: 26px;
	margin-right: 12px;
	top: 8px;
	visibility: hidden;
}
#day-screen .times .add-task-button.ui-button { 
	font-size: 14px !important;
	font-weight:bold;
}
#day-screen .times .time-slots {
	position: absolute;
	left: 12px;
	top: 44px;
	right: 25px;
	bottom: 0px;
	padding-top: 2px;;
	/*border: 1px solid red;*/ /* for testing - to see its rect*/
	overflow-y: scroll;
	overflow-x: hidden;
}

#day-screen .times .time-slots .time-slot {
	position: relative;
	left: 0px;
	width: 100%;
	display: table;
	height: 30px;
	line-height: 30px;
	cursor: pointer;
}

#day-screen .times .time-slots .time-slot .time-header {
	position: absolute;
	left: 0px;
	width: 50px;
	font-size: 16px;
	text-align: right;
}
#day-screen .times .time-slots .time-slot .task {
	position: absolute;
	left: 50px;
	right: 0px;
	margin-left: 10px;
	padding-left: 5px;
	border-top: 1px solid #888;
	background-color: #eef1f5;
	white-space: nowrap;
}

#day-screen .times .time-slots .time-slot:first-child .task {
	border-top: none;
}
#day-screen .times .time-slots .time-slot .task:hover {
	background-color: #6084a3;
	background-color: #dedede;
}



/* -------------------------------------------------- */
/* Day Tasks */
/* -------------------------------------------------- */
#day-screen .times-tasks .tasks {
	position: absolute;
	right: 0px;
	width: 50%;
	height: 100%;
	background-color: #eef1f5;
}

#day-screen .times-tasks .tasks .day-text {
	position: absolute;
	top: 0px;
	left: 12px;
	right: 12px;
	height: 44px;
	line-height: 44px;
	font-size: 20px;
	color: #525252;
	border-bottom: 1px solid #525252;
	visibility: hidden;
}
#day-screen .times-tasks .tasks .add-task-button {
	position: relative;
	float: right;
	height: 26px;
	margin-right: 12px;
	top: 8px;
	visibility: hidden;
}
#day-screen .times-tasks .tasks .time-slots-button {
	position: relative;
	float: right;
	height: 26px;
	margin-right: 12px;
	top: 8px;
	visibility: hidden;
}
#day-screen .times-tasks .tasks .header {
	position: absolute;
	top: 0px;
	right: 12px;
	left: 12px;
	height: 44px;
	line-height: 44px;
	font-size: 20px;
	color: #525252;
	border-bottom: 1px solid #525252;
}
#day-screen .times-tasks .tasks .day-preview {
	
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	
	margin-top: 44px;
	margin-right: 12px;
	margin-left: 12px;
	
	overflow: auto;
	
}
#day-screen .times-tasks .tasks .time {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-top: 24px;
}
#day-screen .times-tasks .tasks .task {
	font-size: 18px;
	border-bottom: 1px solid #333;
	margin-top: 12px;
	padding-bottom: 24px;
}
#day-screen .times-tasks .tasks .task-icon {
	display: table-cell;
	min-width: 36px;
}
#day-screen .times-tasks .tasks .task-text {
	display: table-cell;
	vertical-align: middle;
	padding-left: 12px;
}

#day-screen .times-tasks .tasks .day-preview img {
	width: 36px;
	height: 36px;
	vertical-align: middle;
}

#day-screen .times-tasks .tasks .day-preview .complete-indicator {
	color: green;
	margin-left: 10px;
}
#day-screen .times-tasks .tasks .day-preview .incomplete-indicator {
	color: red;
	margin-left: 10px;
}



/* -------------------------------------------------- */
/* Task Editor (dialg) */
/* -------------------------------------------------- */

.task-editor-shadow {
	box-shadow: 5px 5px 20px #555;
}



#task-editor .editor {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
#task-editor .editor .section {
	position: relative;
	left: 0px;
	width: calc(100% - 2px);
	display: table;
	margin-bottom: 12px;
	border: 2px solid #7196B1;
	border-radius: 8px;
	padding: 8px;
}
#task-editor .editor .section .header {
	position: relative;
	width: 70%;
	font-size: 18px;
	padding-bottom: 5px;
}
#task-editor .editor .time .header {
	padding-bottom: 10px;
}
#task-editor .editor .section textarea {
	margin-bottom: 10px;
}


#task-editor .editor .time .time-slot {
	position: relative;
	/*float; left;*/
	font-size: 24px;
}
#task-editor .editor .time .time-slot div {
	position: relative;
	float: left;
}
#task-editor .editor .time .time-slot .colon {
	margin-left: 3px;
	margin-right: 3px;
}
#task-editor .editor .time .time-slot .meridiem {
	margin-left: 6px;
	margin-right: 12px;
	display: table-cell;
}
#task-editor .editor .time .time-slot button {
	position: relative;
	margin-top: -6px !important;
	margin-right: 6px;
	font-size: 14px !important;
	font-weight: bold !important;
}

#task-editor .editor .task .text,
#task-editor .editor .feedback .text {
	position: relative;
	left: 0px;
	width: 100%;
	height: 70px;
	font-size: 18px;
	padding: 5px;
    box-sizing: border-box;
    background-color: #f8f8f8;
    border: 2px solid #ccc;
    border-radius: 4px;
    resize: none;
}
#task-editor .editor .repeatable .days {
	margin-left: 20px !important;
}
#task-editor .editor .icons img {
	width: 36px;
	height: 36px;
	border-radius: 5px;
	padding: 5px;
	margin-right: 10px;
}
#task-editor .editor .icons img:hover {
	border: 1px solid #000;
}
.task-editor-icon-selected {
	border: 1px solid #000;
	background-color: #bbb;
}
#task-editor .editor .feedback .sounds .header {
	margin-top: 8px;
}



/* -------------------------------------------------- */
/* Day Times and Tasks Drag Width Bar */
/* -------------------------------------------------- */
#day-screen .times-tasks .drag-width-bar {
	position: absolute;
	left: calc(50% - 6px);
	top: 0px;
	bottom: 0px;
	width: 12px;
	height: 100%;
	border-left: 1px solid #525252;
	border-right: 1px solid #525252;
	display: table;
	background-color: #fefefe;
	cursor: col-resize;
}
#day-screen .times-tasks .drag-width-bar .dots {
	position: relative;
	width: inherit;
	display: table-cell;
	vertical-align: middle;
}
#day-screen .times-tasks .drag-width-bar .dots .dot {
	position: relative;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #777;
	margin: 2px;
}




/* -------------------------------------------------- */
/* Slideout Menu */
/* -------------------------------------------------- */

/* Overlay */
.slideout-menu-overlay {
	position: fixed;
	top: 0px;        /* in mobile chrome if you do not use top, right, bottom, left there will be a significant lag */
	right: 0px;      /* when scrolling the page vetically - the bottom portion of the scroll has a hard time keeping up */
	bottom: 0px;     /* this is a known and well documented issue */
	left: 0px;
	
	width: 100%;
	height: 100%;
	
	background-color: #000000;
	opacity: 0.35;
	
	-webkit-backface-visibility: hidden;     /* these were suppose to fix the lagging scroll issue */
	-webkit-overflow-scrolling: touch;       /* however these did not work and the addition of top, right, bottom, left seemed to do the trick */
	-webkit-perspective: 1000;
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
}

/* Slideout Menu */
#slideout-menu {
	position: absolute;
	
	left: -225px;  /* JQ Animate with JS */
	opacity: 1.0;  /* JQ Animate with JS */
	
	top: 40px;
	bottom: 40px;
	/*height: calc(100% - 80px);*/
	width: 201px;
	
	margin: 0px;
	padding: 0px;
	
	border-right: 1px solid #000000;
	background-color: #ffffff;
	
	box-shadow:  4px 0px 3px -3px #333 ;
	-ms-box-shadow: 4px 0px 3px -3px #333 ;
	-webkit-box-shadow: 4px 0px 3px -3px #333 ;
	
	/* TESTING - TO SEE AT START */
	/*
	left: 0px;  
	opacity: 1.0;
	background: red;
	*/
		
	overflow-x: hidden; /* the overflows are ABSOLUTELY required or major funkiness happens */
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	
	z-index: 10000;
}

/* Slideout Menu Items */
#slideout-menu .header {
	position: relative;
	width: 200px;
	height: 100px;
	
	margin: 0px 0px 5px 0px;
	padding: 0px;
	
	/*background-image: url("../images/content_menu_book_cover.jpg");
	background-position: top left;
	background-repeat: no-repeat;*/
	
	background-color: #6084a3;
	border-bottom: 1px solid #000000;
	
	
	background-color: #ADC2D1;
}

#slideout-menu .header .month-text,
#slideout-menu .header .year-text {
	position: absolute;
	color: white;
	height: 50px;
	line-height: 30px;
	margin-left: 15px;
	
	
	color: #000;
}

#slideout-menu .header .month-text {
	top: 10px;
	font-size: 24px;
	font-weight: 500;
}

#slideout-menu .header .year-text {
	top: 40px;
	font-size: 20px;
	font-weight: 100;
	
	
	color: #000;
}

/* Slideout Menu Text */
#slideout-menu .menu-text {
	position: relative;
	width: 200px;
	height: auto;
	
	margin: 0px;
	padding: 0px;
}

/*#slideout-menu .heading {
	position: relative;
	display: block;
	
	width: 100%;
	height: auto;
	
	margin: 0px;
	padding: 5px 10px 5px 10px;
	
	color: #000000;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
	
	background-color: #ffffff;
}*/

#slideout-menu .link {
	position: relative;
	display: block;
	
	width: 100%;
	height: auto;
	
	margin: 0px;
	padding: 5px 10px 5px 10px;
	
	color: #000000;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	text-decoration: none;
	
	cursor: pointer;
}

#slideout-menu .link:hover {
	background-color: #efefef;
}






/* -------------------------------------------------- */
/* CUSTOM RADIO BUTOTNS AND CHECKBOXES */
/* -------------------------------------------------- */
.input-container {
	display: inline-block;
	position: relative;
	
	min-width: 28px; /* width of icon - this is needed in case there is no label */
	min-height: 28px; /* height of icon - this is needed in case there is no label */
	
	margin: 0px 5px 0px 0px;
	padding: 0px;
}

.input-container label {
	display: inline-block;
	position: relative;
	
	margin: 0px;
	padding: 0px 0px 0px 31px; /* width of icon plus a little white space */
	
	line-height: 28px; /* height of icon */
}

/* checkboxes */
input[type='checkbox'],
input[type='radio'] {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 28px;
	height: 28px;
	
	margin: 0px;
	padding: 0px;
	
	cursor: pointer;
	
	opacity: 0;
	z-index: 9999; /* extremely important - this is needed so that the invisble input is on top of the graphic so that the input can be clicked */
}

input[type='checkbox'] + span,
input[type='radio'] + span {
  display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 28px;
	height: 28px;
	
	margin: 0px;
	padding: 0px 0px 0px 28px;

	cursor: pointer;
	
	z-index: 9998; /* extremely important - this is needed so that the graphic is below the invisble input so that the input can be clicked */
}

/* Radio Buttons */
input[type='radio'] + span {
	background-image: url("../images/custom_input_icons_radio.png");
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

input[type='radio']:focus + span,
input[type='radio']:hover + span {
	background-position: -28px 0px;
}

input[type='radio']:checked + span {
	background-position: -56px 0px;
}

input[type='radio']:checked:focus + span,
input[type='radio']:checked:hover + span {
	background-position: -84px 0px;
}

input[type='radio'][disabled] {
	cursor: default;
}

input[type='radio'][disabled] + span {
	background-position: -112px 0px;
}

input[type='radio'][disabled]:checked + span {
	background-position: -140px 0px;
}

/* ---------------------------------------------- */

input[type='checkbox'] + span {
	background-image: url("../images/custom_input_icons_checkbox.png");
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

input[type='checkbox']:focus + span,
input[type='checkbox']:hover + span {
	background-position: -28px 0px;
}

input[type='checkbox']:checked + span {
	background-position: -56px 0px;
}

input[type='checkbox']:checked:focus + span,
input[type='checkbox']:checked:hover + span {
	background-position: -84px 0px;
}

input[type='checkbox'][disabled] {
	cursor: default;
}

input[type='checkbox'][disabled] + span {
	background-position: -112px 0px;
}

input[type='checkbox'][disabled]:checked + span {
	background-position: -140px 0px;
}


/* -------------------------------------------------- */
/* User Screen */
/* -------------------------------------------------- */
#user-screen .controls {
	position: absolute;
	height: 60px;
	width: 100%;
	background-color: #6084a3;
	border-bottom: 1px solid #888;
	display: table;
	
	
	background-color: #ADC2D1;
	
}


#user-screen .controls .month-day-year {
	position: relative;
	left: 0px;
	padding-left: 12px;
	color: #fff;
	display: table-cell;
	vertical-align: middle;
	
	
	color: #000;
	
	
}

#user-screen .controls .day-text {
	font-weight:500;
	font-size: 28px;
}

#user-screen .controls .month-text {
	margin-left: 10px;
	font-weight:500;
	font-size: 28px;
}

#user-screen .controls .date-text {
	margin-left: 10px;
	font-weight:500;
	font-size: 28px;
}

#user-screen .controls .year-text {
	margin-left: 10px;
	font-size: 28px;
	opacity: .5;
}


#user-screen .tasks {
	position: absolute;
	top: 125px;
	left: 0px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	overflow: auto;
}


#user-screen .tasks .task-table {
	width: 100%;
	border-bottom: 1px solid #333;
	margin-top: 12px;
	padding-bottom: 12px;
}
#user-screen .tasks .task-table .checkbox-td {
	width: 50px;
	vertical-align: top;
}

#user-screen .tasks img {
	width: 20px;
	height: 20px;
	margin-top: -2px;
}

#user-screen .tasks .time {
	font-size: 22px;
	font-weight: bold;
	color: #333;
	margin-right: 18px;
	vertical-align: top;
}
#user-screen .tasks .task-text {
	font-size: 18px;
}



/*#user-screen .tasks .complete-indicator {
	color: green;
	margin-left: 10px;
}
#user-screen .tasks .incomplete-indicator {
	color: red;
	margin-left: 10px;
}*/





#user-screen .input-container {
	display: inline-block;
	position: relative;
	
	min-width: 60px; /* width of icon - this is needed in case there is no label */
	min-height: 60px; /* height of icon - this is needed in case there is no label */
	
	margin: 0px 5px 0px 0px;
	padding: 0px;
}

/* checkboxes */
#user-screen input[type='checkbox'] {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 60px;
	height: 60px;
	
	margin: 0px;
	padding: 0px;
	
	cursor: pointer;
	
	opacity: 0;
	z-index: 9999; /* extremely important - this is needed so that the invisble input is on top of the graphic so that the input can be clicked */
}

#user-screen input[type='checkbox'] + span {
  display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 60px;
	height: 80px;
	
	margin: 0px;
	padding: 0px 0px 0px 60px;

	cursor: pointer;
	
	z-index: 9998; /* extremely important - this is needed so that the graphic is below the invisble input so that the input can be clicked */
}
#user-screen input[type='checkbox'] + span {
	background-image: url("../images/checkbox_60.png");
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

#user-screen input[type='checkbox']:focus + span,
#user-screen input[type='checkbox']:hover + span {
	background-position: -60px 0px;
}

#user-screen input[type='checkbox']:checked + span {
	background-position: -120px 0px;
}

#user-screen input[type='checkbox']:checked:focus + span,
#user-screen input[type='checkbox']:checked:hover + span {
	background-position: -180px 0px;
}

#user-screen input[type='checkbox'][disabled] {
	cursor: default;
}

input[type='checkbox'][disabled] + span {
	background-position: -240px 0px;
}

#user-screen input[type='checkbox'][disabled]:checked + span {
	background-position: -300px 0px;
}

#user-screen .hooray {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 10000;
	text-align: center;
}

/* -------------------------------------------------- */
/* Audio Player */
/* -------------------------------------------------- */
#audio-player {
	position: absolute;
	top: 0px;
	left: 0px;
	wdith: 200px;
	height: 50px;
}



/* -------------------------------------------------- */
/* Media Query for Responsive */
/* -------------------------------------------------- */
@media (max-width: 767px) { /* xs */

	#month-screen .controls {
		min-height: 90px;
	}
	
	#month-screen .controls  .month-year {
		vertical-align: top;
		padding-top: 8px;
	}
	
	#month-screen .controls  .month-year span {
		font-size: 28px;
	}
	
	#month-screen .controls .nav-buttons {
		right: auto;
		left: 0px;
		margin-bottom:12px;
	}
	
	

	#day-screen .controls {
		min-height: 90px;
	}
	
	#day-screen .controls  .month-day-year {
		vertical-align: top;
		padding-top: 8px;
	}
	
	#day-screen .controls  .month-yday-year span {
		font-size: 28px;
	}
	
	#day-screen .controls .nav-buttons {
		right: auto;
		left: 0px;
		margin-bottom:12px;
	}
	
	
	#day-screen .times-tasks .times {
		width: 100% !important;
	}
	#day-screen .times-tasks .times .time-slots {
		right: 12px;
	}
	#day-screen .times-tasks .times .add-task-button {
		margin-right: 12px;
	}
	#day-screen .times-tasks .times .preview-button {
		visibility: visible;
	}

	
	#day-screen .times-tasks .tasks {
		right: 100%;
		width: 100% !important;
	}
	
	#day-screen .times-tasks .drag-width-bar {
		visibility: hidden;
	}
	

	#day-screen .times-tasks .tasks .day-text,
	#day-screen .times-tasks .tasks .time-slots-button,
	#day-screen .times-tasks .tasks .add-task-button {
		
		visibility: visible;
	}
	
	#day-screen .times-tasks .tasks .header {
		top: 50px;
		border-bottom: none;
	}
	
	#task-editor .editor .section {
		margin-bottom: 12px;
	}
	#task-editor .editor .text .task-text,
	#task-editor .editor .feedback .feedback-text {
		height: 40px;
	}
	
}
@media (min-width: 768px) {
	
	#day-screen .times-tasks .tasks {
		right: 0px !important;
	}
}