@import url(//fonts.googleapis.com/css?family=Ubuntu:300,400,700,300italic,400italic,700italic);

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-family: 'Ubuntu', sans-serif;
	color: #5a5a5a;
}

html {
	height: 100%;
	padding-bottom: 20px;
}

html,
body {
	width: 100%;
	background-color: #e5e5e5;
	font-size: 14px;
	min-height: 100%;
}

::selection {
	color: #fff;
	background-color: #ffa766;
}

::-moz-selection {
	color: #fff;
	background-color: #ffa766;
}

a {
	color: #00c5da;
	font-weight: 700;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
div:focus,
*:focus {
    outline: none;
}

input, textarea {
	transition: box-shadow 0.2s linear;
	-o-transition: box-shadow 0.2s linear;
	-moz-transition: box-shadow 0.2s linear;
	-webkit-transition: box-shadow 0.2s linear;
}

input:focus, textarea:focus {
	box-shadow: inset 0 0 15px -5px #00c5da;
}

button {
	font-weight: 700;
	font-size: 1em;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: #abdbe1;
	border: 0;
	transition: background-color 0.1s linear, color 0.1s linear;
}

button:hover {
	cursor: pointer;
	background-color: #00c5da;
	color: #fff;
	transition: background-color 0.3s linear, color 0.3s linear;
}

button:active {
	background-color: #0097a7;
	transition: background-color 0s linear, color 0s linear;
}

button.trix-active {
	background-color: #00a799;
	transition: background-color 0s linear, color 0s linear;
}
span.subScript {
	font-weight: 300;
	font-size: 0.8em;
}

span.profanityWarning {
	font-weight: 700;
	font-size: 0.8em;
	color: #d66565;
}

div.separator {
	width: 100%;
	height: 0px;
	border-bottom: 2px solid #ff7800;
	margin: 20px 0;

}

div.darkBackground,
div.laserAlertBackground {
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20000;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(15px);
	-moz-backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	display: none;
}

div.taskPreview,
h2.previewTitle {
	width: 100%;
	border-radius: 5px;
	background-color: #e5e5e5;
}

div.search svg {
	width: 60px;
	height: 60px;
	margin: 0px auto 10px auto;
	position: relative;
	display: block;
}

div.search svg * {
	fill: #00c5da;
}

div.searchResults div.taskPreview {
	margin-bottom: 20px;
}

div.searchResults div.taskPreview:last-of-type {
	margin-bottom: 0;
}

div.taskPreview.fullWidth,
h2.previewTitle.fullWidth {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	display: block;
	float: none;
	position: relative;
}

h2.previewTitle.fullWidth {
	margin-bottom: 10px;
}

h2.previewTitle {
	padding: 0 5px 5px 5px;
	background-color: transparent;
	text-align: center;
	font-weight: 100;
	margin-bottom: 10px;
	border-bottom: 1px solid #ff7800;
	border-radius: 0;
}

div.taskPreview h3.taskTitle {
	width: 100%;
	padding: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.5em;
}

div.taskPreview:nth-of-type(2),
h2.previewTitle:nth-of-type(2) {
	margin-right: 0;
}

div.taskPreview p.description {
	margin: 10px;
	padding: 5px;
	background-color: #fff;
	line-height: 1.3em;
	font-size: 1em;
	height: 5.7em;
	overflow: hidden;
	border-radius: 5px;
}

div.taskPreview a.moreDetails {
	width: 100%;
	text-align: center;
	padding: 5px;
	display: block;
	background-color: #d8d8d8;
	margin-top: 10px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	color: #0097a7;
}

div.taskPreview a.moreDetails:hover {
	background-color: #abdbe1;
	color: #fff;
}

div.taskPreview a.moreDetails:active {
	background-color: #00c5da;
}

div.taskPreview p.detail {
	padding: 0 10px;
}

div.taskPreview p.detail.category {
	padding: 0 5px 5px 5px;
	border-bottom: 2px solid;
}

div.taskPreview p.detail.priority,
div.taskPreview p.detail.taskNumber,
div.taskPreview p.detail.group,
div.taskPreview p.detail.status,
div.taskPreview p.detail.dateCreated,
div.taskPreview p.detail.client {
	margin: 10px;
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
}

div.taskPreview p.detail.group {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

div.taskPreview p.detail.group a.removeGroup,
div.taskPreview p.detail.status a.statusLink,
div.taskPreview p.detail.taskNumber a.statusLink,
div.taskPreview p.detail a.addToGroup,
a.editGroup,
a.addTasksToGroup {
	font-weight: 100;
	float: right;
	font-size: 0.9em;
}

a.addTasksToGroup {
	font-size: 0.8em;
}

div.newTask,
div.search,
div.newGroup,
div.addToGroup,
div.reorder,
div.addTasksToGroup {
	background-color: #fff;
	border-radius: 5px;
	height: auto;
	max-height: 90vh;
	width: 90%;
	max-width: 800px;
	margin: 0 auto 40px auto;
	position: relative;
	top: 5%;
	overflow-y: auto;
	display: none;
}

button.closeNewTask,
button.closeSearch, 
button.closeAddtoGroup,
button.closeReorder,
button.closeAddTasks {
	height: calc(100% - 20px);
	position: absolute;
	top: 10px;
	right: 10px;
	border: 2px solid #5a5a5a;
	padding: 0 20px;
	font-size: 0.9em;
	border-radius: 5px;
	background-color: transparent;
	font-weight: 700;
}

button.closeNewTask:hover,
button.closeSearch:hover,
button.closeAddtoGroup:hover,
button.closeReorder:hover,
button.closeAddTasks:hover {
	background-color: #00c5da;
	border-color: #00c5da;
	color: #fff;
}

button.closeNewTask:active,
button.closeSearch:active,
button.closeAddtoGroup:active,
button.closeReorder:active,
button.closeAddTasks:active {
	background-color: #ff7800;
	border-color: #ff7800;
}

select.addToExistingGroupGlobal,
input.newGroupGlobal {
	height: 40px;
	border-radius: 5px;
	border: 1px solid #5a5a5a;
	margin-bottom: 10px;
	font-size: 1.2em;
	padding: 5px 10px;
	display: block;
	width: 100%;
}

textarea.newGroupDescriptionGlobal {
	height: 150px;
	border-radius: 5px;
	border: 1px solid #5a5a5a;
	margin-bottom: 10px;
	padding: 10px;
	font-size: 1.2em;
	line-height: 1.5em;
	width: 100%;
	display: block;
}

p.detailLabel {
	border-bottom: 1px solid #ff7800;
	margin-bottom: 5px;
	margin-top: 20px;
	padding-bottom: 5px;
	font-weight: 700;
	font-size: 1.1em;
}

p.detailLabel:first-of-type {
	margin-top: 0;
}

div.newTask label,
div.newTask input:not(.category),
div.newTask select,
div.newTask textarea,
div.search label,
div.search input {
	display: block;
	width: 100%;
	max-width: 750px;
	font-size: 1.2em;
	padding: 5px 10px;
	position: relative;
	margin: auto;
}

div.newTask label,
div.search label {
	font-weight: 700;
	margin-bottom: 5px;
	padding: 0;
}

div.newTask input:not(.category),
div.newTask select,
div.newTask textarea,
div.search input {
	border: 1px solid #5a5a5a;
	border-radius: 5px;
	margin-bottom: 15px;
	height: 35px;
}

div.search input.search {
	text-align: center;
}

div.newTask textarea {
	height: 170px;
	text-align: left;
}

div.newTask button.saveNewTask {
	width: 100%;
	max-width: 400px;
	position: relative;
	display: block;
	margin: 0 auto 20px auto;
}

div.catList,
div.staffList {
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #5a5a5a;
	max-width: 750px;
	margin: 0 auto 20px auto;
}

div.catList > div.category {
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 3px;
	transform-origin: 50% 50%;
	transition: transform 0.4s linear;
	-o-transition: transform 0.4s linear;
	-moz-transition: transform 0.4s linear;
	-webkit-transition: transform 0.4s linear;
	min-height: 0;
}

div.catList > div.category > p {
	font-weight: 700;
	display: inline-block;
	margin-left: 10px;
	margin-top: 0;
}

div.catList:hover div.category {
	transform: scale(0.96);
}

div.catList > div.category:hover {
	cursor: pointer;
	transform: scale(1);
}

div.staffMember {
	padding: 5px;
	position: relative;
	border-radius: 5px;
	background-color: #e5e5e5;
	margin-top: 10px;
	margin-bottom: 0;
	transform-origin: 50% 50%;
	transition: transform 0.4s linear;
	-o-transition: transform 0.4s linear;
	-moz-transition: transform 0.4s linear;
	-webkit-transition: transform 0.4s linear;
	width: 100%;
}

div.staffList > div.staffMember:first-child {
	margin-top: 0;
}

div.staffList > div.staffMember > img.profilePic {
	height: 45px;
	width: 45px;
	border-radius: 25px;
	display: inline-block;
	float: left;
}

div.staffList > div.staffMember > p {
	height: 45px;
	line-height: 45px;
	display: inline-block;
	font-weight: 700;
	float: left;
	margin-left: 10px;
}

div.newTask > p.sub,
div.editTask > p.sub {
	max-width: 750px;
	display: block;
	position: relative;
	margin: 0 auto 20px auto;
}

div.staffList > div.staffMember:hover {
	cursor: pointer;
	background-color: #d1ebee;
}

div.staffList > div.staffMember.selected {
	background-color: #abdbe1;
}

div.staffList > div.priority,
div.staffList > div.globalPriority {
	width: calc(100% - 40px);
	padding: 10px;
	background-color: #abdbe1;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	margin-bottom: 10px;
	position: relative;
	margin: 0px auto 10px auto;
	display: none;
}

div.staffList > div.globalPriority {
	margin-bottom: 0;
	margin-top: 10px;
}

div.staffList > div.priority {
	border-top: 1px solid #40a6b3;
}

div.staffList > div.globalPriority {
	border-radius: 5px;
	width: 100%;
	background-color: #abdbe1;
}

div.staffList > div.globalPriority * {
	/*color: #fff;*/
}

div.prioritySlider,
div.globalPrioritySlider,
div.staffList > div.priority > div > span,
div.staffList > div.globalPriority > div > span {
	border-color: #40a6b3;
}

div.staffList > div.priority > div > span,
div.staffList > div.globalPriority > div > span {
	background: #abdbe1;
}

div.staffList > div.priority > div > span:focus,
div.staffList > div.globalPriority > div > span:focus {
	background: #00c5da;
}

div.staffList > div.priority > p.priorityValue,
div.staffList > div.globalPriority > p.priorityValue {
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
	font-size: 0.8em;
}

div.laserAlert {
	width: 100%;
	max-width: 400px;
	height: auto;
	position: fixed;
	left: 50%;
	margin-left: -200px;
	top: 20px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: rgb(178, 186, 194) 0px 15px 0px -12px;
	z-index: 30000;
	padding: 50px 10px 10px 10px;
	display: none;
}

div.laserAlert h3.alertTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #abdbe1;
	border-bottom: 2px solid #ff7800;
	padding: 10px;
	line-height: 20px;
	height: 40px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

div.laserAlert p.alertMessage {
	margin: 10px 0px 20px 0px;
}

div.laserAlert button.laserAlertOk {
	padding: 20px 40px;
	display: block;
	position: relative;
	margin: auto;
}

div.laserAlert button.laserAlertOk:active {
	background-color: #0097a7;
}

p.tip {
	padding: 10px;
	border: 1px solid #ff7800;
	border-radius: 5px;
	background-color: #ffe4cc;
	margin-bottom: 10px;
}

p.tip span.orange {
	font-weight: 700;
	color: #ff7800;
	font-size: 1.1em;
	display: block;
	margin-bottom: 5px;
}

#spinWrap {
	width: 60px;
	height: 60px;
	background-color: #5a5a5a;
	background-color: rgba(175, 175, 175, 0.8);
	border-radius: 5px;
	position: fixed;
	top: -70px;
	left: 50%;
	margin-left: -30px;
	z-index: 10000;
}

#globalSpin {
	width: 100%;
	height: 100%;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: block;
}

.bold {
	font-weight: 700;
}

/* dueClass */

.underdue {
	color: #5abf5a;
}

.soondue {
	color: #cbae3d;
}

.overdue {
	color: #d66565;
}

/* dueClass */

.italic {
	font-style: italic;
}

.indented {
	margin-left: 20px;
}

.underlined {
	text-decoration: underline;
}

.sub {
	vertical-align: sub;
	font-size: 0.8em;
}

.sup {
	vertical-align: super;
	font-size: 0.8em;
}

.light {
	font-weight: 100;
}

.centered {
	text-align: center;
}

p.empty {
	font-weight: 700 !important;
	text-align: center !important;
	padding: 40px 20px !important;
}

#headWrap {
	position: fixed;
	top: 20px;
	z-index: 2000;
	width: 100%;
	height: 133px;
	background-color: #abdbe1;
	border-bottom: 3px solid #ff7800;
}

#header {
	height: 150px;
	position: relative;
	margin-top: -10px;
	left: 10px;
	z-index: 2000;
	width: calc(100% - 20px);
	max-width: calc(1300px - 20px);
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 15px 0px -12px #b2bac2;
}

#header.full {
	max-width: none;
}

div.headBacking {
	background-color: #e5e5e5;
	width: 100%;
	height: 50px;
	z-index: 1500;
	position: fixed;
	top: 0;
	left: 0;
}

div#mainLogo {
	height: 150px;
	width: 390px;
	position: absolute;
	padding: 20px;
	/*border-radius: 5px;*/
	display: block;
	vertical-align: middle;
	white-space: nowrap;
	border-right: 1px solid #e5e5e5;
}

div#mainLogo:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin-right: -0.25em;
}

div#mainLogo img {
	height: auto;
	width: auto;
	max-width: 350px;
	max-height: 110px;
	display: inline-block;
	vertical-align: middle;
}

#userBox {
	position: absolute;
	right: 0;
	height: 150px;
	width: calc(100% - 390px);
	padding: 10px 150px 10px 10px;
	text-align: left;
	border-radius: 5px;
}

#userBox h4.userName {
	font-size: 1.2em;
	padding-bottom: 7px;
}

#userBox div.profilePic {
	width: 130px;
	height: 130px;
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 65px;
	overflow: hidden;
}

#userBox div.profilePic img.profilePic {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 50px;
}

#userBox div.profilePic div.clock {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 50px;
	background-color: transparent;
	background-image: url(../img/numbers2.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100.5%;
}

#userBox div.profilePic div.clock div.hourHand,
#userBox div.profilePic div.clock div.minuteHand,
#userBox div.profilePic div.clock div.secondHand {
	width: 4%;
	height: 25%;
	background-color: #fff;
	border-radius: 2000px;
	position: absolute;
	bottom: 50%;
	left: 50%;
	margin-left: -2%;
	transform-origin: bottom center;
	-ms-transform-origin: bottom center;
}

#userBox div.profilePic div.clock div.minuteHand {
	width: 2%;
	height: 44%;
	margin-left: -1%;
	background-color: #000;
}

#userBox div.profilePic div.clock div.secondHand {
	width: 2px;
	background-color: #ff7800;
	margin-left: -1px;
	height: 49%;
}

#userBox div.profilePic div.clock div.end {
	background-color: inherit;
	height: 50%;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	margin-bottom: -300%;
	border-radius: 2000px;
}

#userBox div.profilePic div.clock div.secondHand div.end {
	margin-bottom: -300%;
}

#userBox div.profilePic div.clock div.hourHand div.end {
	margin-bottom: -200%;
}

#userBox table.userDetails {
	text-align: left;
}

#userBox table.userDetails tr {
	padding: 0;
	height: 0.8em;
}

#userBox table.userDetails tr td {
	text-align: left;
	font-size: 0.8em;
	padding: 0;
	height: 0.8em;
	line-height: 0.8em;
}

#userBox table.userDetails tr td:first-child {
	padding-right: 10px;
}

div.progressWrap {
	width: 100%;
	height: 40px;
	position: relative;
	padding: 0;
	display: table;
	vertical-align: middle;
}

#userBox div.progressWrap {
	position: absolute;
	bottom: 10px;
	height: 40px;
	left: 10px;
	padding: 0;
	margin: 10px 0 0 0;
}

div.progressWrap div.progressOuter {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #5a5a5a;
	box-shadow: inset 0px 5px 10px -2px #000;
	position: relative;
	overflow: hidden;
}

div.progressWrap div.progressOuter div.progressWidth {
	height: 100%;
	position: relative;
}

div.progressWrap div.progressOuter div.progressWidth div.progressInner {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background-color: #00c5da;
	width: 100%;
	border-right: 3px solid #ff7800;
	background-image: url('../img/progressBarBGLight.png');
	animation: progressMove 1.5s linear infinite, progressLoad 1s ease 1;
	-webkit-animation: progressMove 1.5s linear infinite, progressLoad 1s ease 1;
}

div.progressWrap span.progressNumber {
	position: absolute;
	left: 0px;
	top: 0px;
	font-weight: 700;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	z-index: 200;
	color: #fff;
	text-shadow: 0 0 5px #5a5a5a;
	padding: 0;
	font-size: 1.2em;
}

div.statusIcons {
	width: 200px;
}

div.statusIcons a {
	display: block;
	width: 20%;
	margin-right: 5px;
	float: left;
	text-decoration: none;
}

div.statusIcons div {
	
	width: 100%;
	border-radius: 5px;
	margin-right: 4px;
	background-color: #abdbe1;
	padding-bottom: 5px;
}

div.statusIcons div:last-child {
	margin-right: 0;
}

div.statusIcons div.unread {
	border-color: #ff7800;
	background-color: #ff7800;
	-webkit-animation: colourPulse 6s infinite;
	-moz-animation: colourPulse 6s infinite;
	-o-animation: colourPulse 6s infinite;
	animation: colourPulse 6s infinite;
	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
	-moz-animation-timing-function: ease;
	-o-animation-timing-function: ease;
}

div.statusIcons div svg {
	width: 100%;
	height: auto;
	max-height: 20px;
	margin: auto;
}

div.statusIcons div svg * {
	fill: #abdbe1;
	fill: #fff;
}

div.statusIcons div.unread svg * {
	fill: #ff7800;
	fill: #fff;
}

div.statusIcons div p {
	display: block;
	height: 18px;
	font-size: 1em;
	line-height: 18px;
	font-weight: 400;
	color: #abdbe1;
	color: #fff;
	text-align: center;
}

div.statusIcons div.unread p,
div.statusIcons div.unread p span {
	color: #ff7800;
	color: #fff;
	font-weight: 700;
}

#navWrap {
	width: 200px;
	min-height: 100%;
	position: fixed;
	overflow: auto;
	top: 0px;
	padding-top: 170px;
	padding-bottom: 60px;
	background-color: #5a5a5a;
	box-shadow: inset -50px 0 60px -10px #333;
	z-index: 999;
	overflow: scroll;
}

div.nav {
	width: 200px;
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 170px;
	padding-bottom: 60px;
	overflow: auto;
}

button.navHide {
	width: 90%;
	width: calc(100% - 20px);
	background-color: transparent;
	margin: 0 10px;
	border: 3px solid #e5e5e5;
	font-weight: 700;
	padding: 20px;
	font-size: 1.1em;
	border-radius: 5px;
	color: #e5e5e5;
	display: none;
}

button.navHide:active {
	background-color: #e5e5e5;
	color: #5a5a5a;
}

div.nav ul.navList li.navItem {
	position: relative;
	padding: 0 0 0 50px;
	height: 50px;
	font-size: 0.9em;
	display: block;
	background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: 5px 5px;
}

div.nav ul.navList a {
	text-decoration: none;
}

div.nav ul.navList li.navItem span.navText {
	display: table-cell;
	vertical-align: middle;
	height: 50px;
	font-weight: 700;
	color: #e5e5e5;
	padding-right: 5px;
}

div.nav ul.navList li.navItem svg {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 5px;
	left: 5px;
}

div.nav ul.navList li.navItem svg * {
	fill: #e5e5e5;
}

div.nav ul.navList li.navItem:active {
	background-color: #00c5da;
	cursor: pointer;
}

div.nav ul.navList li.navItem:last-child {
	background-image: none;
}

div.nav ul.navList li.navItem span.navText span.navAlert {
	padding: 5px 9px;
	background-color: #e5e5e5;
	color: #5a5a5a;
	border-radius: 20px;
	text-align: center;
	width: auto;
	display: inline-block;
	margin-left: 10px;
	position: absolute;
	right: 10px;
	top: 12px;
}

div.nav ul.navList li.navItem span.navText span.navAlert.unread {
	background-color: #ff7800;
	color: #fff;
}

div.footer {
	padding: 10px 120px 10px 10px;
	background-image: url(../img/fadedLogo.png);
	background-image: url(../img/fadedLogo.svg);
	background-size: 100px;
	background-repeat: no-repeat;
	background-position: 95% 95%;
	background-position: calc(100% - 20px) 50%;
}

div.footer p {
	font-size: 0.9em;
	color: #b2bac2;
}

div.mainWrap,
div.loginWrap {
	position: relative;
	padding: 180px 10px 10px 220px;
	max-width: 1300px;
	background-size: 100px;
}

div.mainWrap.full {
	max-width: 100%;
}

button.actionButton {
	border: 0;
	background-color: #abdbe1;
	font-size: 1em;
	font-weight: 700;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 2px 10px -5px #000;
}

button.actionButton.smallButton {
	padding: 5px;
	font-size: 0.8em;
	margin-bottom: 10px;
}

button.actionButton.inlineButton {
	padding: 0 10px;
	border-radius: 3px;
	height: 1.5em;
	margin: 0 20px;
}

button.actionButton.titleButton {
	border: 2px solid #5a5a5a;
	position: absolute;
	right: 5px;
	top: 5px;
	padding: 0 20px;
	background-color: transparent;
	border-radius: 5px;
	height: calc(100% - 10px);
	font-weight: 700;
	font-size: 0.7em;
}

button.actionButton.titleButton:hover {
	border-color: #00c5da;
	background-color: #00c5da;
	color: #fff;
}

button.actionButton.titleButton:active {
	border-color: #ff7800;
	background-color: #ff7800;
}

button.navShow {
	width: 100%;
	margin-bottom: 10px;
	display: none;
	border: 3px solid #abdbe1;
	z-index: 100000;
}

button.navShow:active {
	border-color: #ff7800;
}

div.content {
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 15px 0px -12px #b2bac2;
	border-radius: 5px;
	position: relative;
	padding: 20px;
	margin-bottom: 20px;
}

div.content:nth-last-child(2) {
	margin-bottom: 0;
}

h3.containerTitle {
	font-size: 1.8em;
	padding: 1em;
	line-height: 1em;
	margin-bottom: 10px;
	border-bottom: 3px solid #ff7800;
	background-color: #abdbe1;
	border-radius: 5px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-weight: 700;
	text-align: left;
	position: absolute;
	width: auto;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

div.content.titleContainer {
	padding-top: 90px;
	padding-top: calc(5.4em + 20px);
}

div.subContainer {
	width: 100%;
	height: auto;
	border: 2px solid #abdbe1;
	padding: 10px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 20px;
}

div.subContainer:last-child {
	margin-bottom: 0;
}

div.subContainer.subTitleContainer {
	/*padding-top: 50px;*/
}

div.subContainer h3.subContainerTitle {
	height: 40px;
	position: relative;
	top: -10px;
	left: -10px;
	width: calc(100% + 20px);
	border-bottom: 2px solid #ff7800;
	padding: 10px;
	background-color: #abdbe1;
}

/* Hover Effects for Navigation and Action Buttons */

@media screen and (min-width: 1024px) {

	button.actionButton:hover {
		background-color: #00c5da;
		color: #fff;
	}

	div.nav ul.navList li.navItem:hover {
		background-color: #00c5da;
		cursor: pointer;
	}

	div.nav ul.navList li.navItem:hover span.navText {
		color: #fff;
	}

	div.nav ul.navList li.navItem:hover * {
		fill: #ffffff !important;
	}

	div.statusIcons div:hover {
		cursor: pointer;
		border-color: #00c5da;
		background-color: #00c5da;
	}

	div.statusIcons div.unread:hover {
		-webkit-animation: singleShake 0.3s 1;
		-moz-animation: singleShake 0.3s 1;
		-o-animation: singleShake 0.3s 1;
		animation: singleShake 0.3s 1;
	}

}

button.actionButton:active {
	background-color: #0097a7;
}

/* Global Media Queries */

@media screen and (max-width: 1024px) {



}

@media screen and (max-width: 800px) {

	div#headWrap {
		height: 150px;
	}

	#header {
		position: absolute;
		top: 0;
		left: 10px;
		background-color: #fff;
		border-radius: 5px;
		box-shadow: 0px 15px 0px -12px #b2bac2;
		height: 180px;
		width: calc(100% - 20px);
		padding: 10px;
	}

	div#mainLogo {
		top: 0;
		left: 0;
		background-color: transparent;
		width: 100%;
		height: 80px;
		margin-bottom: 10px;
		box-shadow: none;
		display: block;
		position: relative;
		padding: 0 0 10px 0;
		border-bottom: 1px solid #e5e5e5;
		border-right: 0;
		border-radius: 0;
	}

	div#mainLogo img {
		width: auto;
		max-height: 70px;
		max-width: calc(100% - 20px);
		display: block;
		position: relative;
		margin: auto;
	}

	div#mainLogo:before {
		content: none;
		display: none;
	}

	#userBox {
		background-color: transparent;
		width: 100%;
		box-shadow: none;
		min-width: 0px;
		position: relative;
		height: 70px;
		right: 0;
		left: 0;
		top: 0;
		padding: 0;
		padding-left: 80px;
	}

	#userBox div.profilePic {
		width: 70px;
		height: 70px;
		left: 0;
		top: 0;
		position: absolute;
	}

	div#userBox div.progressWrap {
		padding-left: 210px;
		padding-right: 0;
		padding-bottom: 0;
		padding-top: 0;
		bottom: 0px;
		left: auto;
		height: 40px;
		z-index: 190;
	}

	div#userBox div.progressWrap span.progressNumber {
		width: 100%;
		text-align: center;
		z-index: 200;
		color: #fff;
		text-shadow: 0 0 5px #5a5a5a;
		padding-left: 210px;
		padding-right: 0;
		font-size: 1.4em;
	}

	div#userBox h4.userName {
		height: 25px;
		line-height: 25px;
		font-size: 1.2em;
		padding: 0;
	}

	div.statusIcons {
		position: absolute;
		bottom: 0;
		left: 80px;
		height: 45px;
	}

	div.statusIcons a {
		width: calc(25% - 3.75px);
		height: 45px;
	}

	div.statusIcons a div {
		height: 45px;
	}

	div.statusIcons a:last-child {
		margin: 0;
	}

	div.mainWrap, 
	div.mainWrap.loginWrap,
	div#navWrap,
	div.nav {
		padding-top: 200px;
	}

	#userBox table.userDetails tr td:first-child {
		padding-right: 0px;
	}

	h3.containerTitle {
		font-size: 1.4em;
	}

	div.content.titleContainer {
		padding-top: calc(4.2em + 20px);
	}

}

@media screen and (orientation: landscape) and (max-height: 768px) {

	

}

@media screen and (max-width: 740px) {

	div.headBacking {
		display: none;
	}

	div#headWrap {
		height: 140px;
		position: relative;
	}

	div#header {
		height: 160px;
	}

	div#userBox {
		height: 50px;
		padding-left: 60px;
	}

	#userBox div.profilePic {
		height: 50px;
		width: 50px;
	}

	div#userBox div.progressWrap {
		padding-left: 0;
		height: 25px;
		z-index: 190;
	}

	div#userBox div.progressWrap span.progressNumber {
		width: 100%;
		text-align: center;
		z-index: 200;
		color: #fff;
		text-shadow: 0 0 5px #5a5a5a;
		padding-left: 0;
		padding-right: 0;
		font-size: 1.2em;
		height: 25px;
		line-height: 25px;
	}

	div#navWrap {
		position: fixed;
		height: 100%;
		width: 0%;
		padding: 0;
		padding-bottom: 80px;
		z-index: 10000;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}

	div.nav {
		padding-top: 10px;
		width: 100%;
		position: relative;
	}

	div#navWrap div.nav {
		width: 100%;
	}

	div.nav ul.navList a {
		width: 100%;
		position: relative;
	}

	button.actionButton {
		padding: 10px;
	}

	div.mainWrap {
		padding-left: 10px;
		padding-top: 50px;
	}

	div.mainWrap, 
	div.mainWrap.loginWrap {
		padding-top: 40px;
	}

	button.navShow {
		display: block;
	}

	button.navHide {
		display: block;
		white-space: nowrap;
		padding: 10px;
	}

	ul.navList {
		width: 100%;
	}

	div.nav ul.navList li.navItem {
		padding-left: 50px;
		height: 50px;
	}

	div.nav ul.navList li.navItem svg {
		height: 40px;
		width: 40px;
	}

	div.nav ul.navList li.navItem span.navText {
		height: 50px;
		font-size: 1em;
	}

	div.statusIcons {
		padding-right: 30px;
		display: none;
	}

	div.nav ul.navList li.navItem span.navText span.navAlert {
		top: 4px;
	}

	div.content {
		padding: 10px;
	}

}

@media screen and (orientation: landscape) and (max-height: 416px) {

}

@media screen and (max-width: 570px) {

	h3.containerTitle {
		font-size: 1.142em;
	}

	div.content {
		padding: 5px;
	}

	div.content.titleContainer {
		padding: 5px;
		padding-top: calc(3.568em + 5px);
	}

	div.nav ul.navList li.navItem span.navText span.navAlert {
		top: 12px;
	}

	.indented {
		margin-left: 5px;
	}

	div.footer p {
		font-size: 0.7em;
		color: #b2bac2;
	}

	div.mainWrap {
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
	}

	div#header {
		left: 5px;
		width: calc(100% - 10px);
	}

	div#userBox h4.userName {
		font-size: 1em;
	}

}

@media screen and (max-width: 375px) {

	h3.containerTitle {
		font-size: 1.142em;
	}

	div.statusIcons {
		padding-right: 50px;
	}

	div.statusIcons div {
		margin-right: 2px;
	}

	div.statusIcons div svg {
		width: 90%;
		max-height: 18px;
		margin: auto;
		margin-bottom: 2px;
		display: block;
	}

	div#userBox h4.userName {
		font-size: 0.9em;
	}

}
































