@font-face {
    font-family: "Century Gothic";
    src: url(century-gothic.ttf);
	font-weight: normal;
}

@font-face {
    font-family: "Century Gothic";
    src: url(century-gothic-bold.ttf);
	font-weight: bold;
}
body {
	margin: 0;
	font-family: "Century Gothic", sans-serif;
	font-size: 20px;
}
header {
	width: 100%;
	font-size: 24px;
	background: black;
	position: fixed;
	height: 30px;
	padding: 10px;
	top: 0;
	z-index: 10000;
}
a {
	color: rgb(0, 168, 228);
}

a:hover {
	color: black;
}

header .nuvola {
	color: rgb(0, 168, 228);
	font-weight: normal;
}
header .nuvola img {
	height: 30px;
}

header .ts {
	color: white;
	font-weight: bold;
	float: right;
	margin-right: 2em;
	font-size: 16px;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	height: 40px;
	background: white;
	width: 100vw;
}
footer ul {
	display: flex;
	padding: 0;
	margin: 0;
	width: 100%;
}
footer ul li {
	text-align: center;
	width: 20%;
	list-style: none;
	background-color: transparent;
	transition: background-color .4s;
	font-size: 24px;
	font-weight: bold;
	padding: 5px 0;
}

footer ul li.active {
	background-color: rgba(255,102,0,0.3);
}
footer ul li img {
	width: 30px;
	height: 30px;
}


.section-holder {
	width: 100vw;
	display: block;
	position: absolute;
	height: 100vh;
	left: 0;
	transition: left 0.4s;
	background-color: white;
}

section {
	box-sizing: border-box;
	height: 100vh;
	width: 100vw;
	padding: 100px 10px 100px 10px;
	overflow: scroll;
	z-index: 0;
	display: none;
}

section.active {
	z-index:1;
}
section:first-child {
	display: block;
}

input {
	padding: 5px;
	border-radius: 2px;
	border: 1px solid #333;
}

.action-button {
	border: 2px solid black;
	color: white;
	background: rgb(0, 168, 228);
	font-size: 30px;
}
.cancel-button {
	border: 2px solid black;
	color: rgb(0, 168, 228);
	background: white;
	font-size: 30px;
}
.action-object {
	cursor: pointer;
}

.date-selector span.move-date {
	font-size: 24px;
	font-weight: bold;
	color: rgb(0, 168, 228);
}
.date-selector input {
	font-size: 24px;
	font-family: "Century Gothic";
}

.field-holder {
	padding: 10px 0;
}
.field-holder label {
	display: block;
}
.field-holder label.checkbox-label {
	display: inline-block;
}

.field-holder input, .field-holder select {
	display: inline-block;
	width: 70%;
	border: 1px solid #555;
	border-radius: 0;
	padding: 5px;
	vertical-align: top;
}
.field-holder input[type=checkbox] {
	width: auto;
}

.plus-minus {
	display: inline-block;
	color: rgb(0, 168, 228);
	font-size: 24px;
	font-weight: bold;
	border: 1px solid black;
	text-align: center;
	width: 1em;
	vertical-align: top;
}

#time.submitted .plus-minus {
	display: none;
}
/**LIGHTBOXES**/
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	margin: 0;
	padding: 35px;
	background: rgba(0, 0, 0, .75);
	box-sizing: border-box;
}
.lightbox.message {
	padding-top: 20vh;
	padding-bottom: 20vh;
}
.lightbox-inner {
	margin: auto;
	padding: 10px;
	background: white;
	max-height: 100%;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	overflow: auto;
	position: relative;
}
/*.lightbox-inner::before {
	content: "\00d7";
	position: fixed;
	top: 5px;
	right: 5px;
	color: white;
	font-size: 35px;
	cursor: pointer;
}*/
#lightbox-loader .lightbox-inner {
	background: #eee;
}

.lightbox-inner li {
	margin-left: 2em;
}

.lightbox-inner h2 {
	text-align: center;
}

.lightbox-inner .buttons {
	margin: 20px 0;
}
/** END LIGHTBOXES **/

#apple-install-prompt .lightbox-inner div,
#apple-install-prompt .lightbox-inner p {
	text-align: center;
}

#apple-install-prompt .app-icon {
	width: 60vw;
	max-width: 256px;
	background: #eee;
}

img.inline-icon {
	display: inline;
	height: 1.5em;
}

.locked-message {
	display: none;
}
.locked .locked-message {
	display: block;
}

button, .action-button, .lightbox-closer {
	background: white;
	border: 2px solid rgb(0, 168, 228);
	color: black;
	padding: 10px;
	font-size: 120%;
	font-weight: normal;
	cursor: pointer;
	border-radius: 10px;
}
.lightbox-closer {
	border-color: black;
	font-weight: normal;
}

.locked button.lock-button {
	display: none;
}

.date-selector-prevnext {
	font-size: 24px;
	padding: 5px;
	border: 1px solid black;
	cursor: pointer;
}

ul.record-list {
	margin: 0;
	padding: 5px;
}
ul.record-list li {
	list-style: none;
	margin: 3px 0;
	border: 1px solid black;
	padding: 5px;
}
ul.record-list li div {
	position: relative;
}
ul.record-list li div span.title {
	font-weight: bold;
	display: block;
}
ul.record-list li div span.priority {
	/*position: absolute;
	bottom: 0;
	right: 0;*/
	display: block;
	font-style: italic;
}

#valueLists .record-list .action-link {
	font-size: 20px;
}
#valueLists .record-list .action-link img {
	width: 20px;
}

#login-login div {
	margin: 10px 30px;
}
#login-login div label {
	width: 10em;
	display: inline-block;
}

ul.pager li {
	list-style: none;
	display: inline-block;
	margin: 0 1em 0 0;
}

#report-detail-holder table {
	border-collapse: collapse;
}
#report-detail-holder table th {
	font-weight: bold;
}
#report-detail-holder table th, #report-detail-holder table td {
	text-align: left;
	border: 1px solid #777;
	padding: 3px 8px;
}


#user-integration-data li {
	margin-bottom: 10px;
}
#user-integration-data li span {
	font-weight: bold;
}