html, body {
	margin: 0;
	width: 100%;
	min-width: 980px;
	height: 100%;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #000;
	-webkit-font-smoothing: antialiased;
	background: #fff;
}

/* EFFECTS */
.blured {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}
/*END*/

/* HELPERS */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.btn {
	display: inline-block;
	background: #fafafa;
	font-size: 16px;
	font-weight: bold;
	color: #777;
	border: 1px solid #ccc;
	cursor: pointer;
}
.btn:hover {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
}

.btn:active {
	box-shadow: 0 0px 0px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
}
/*END*/

/*LOGIN*/
#login {
	position: fixed;
	width: 340px;
	height: 213px;
	top: 50%;
	left: 50%;
	margin-top: -104px;
	margin-left: -170px;
	background: #fcfcfc;
	border-radius: 0px;
	border: 1px solid #ccc;
	box-shadow: 0px 5px 10px rgba(0, 0, 0, .1);
}

#login_container {
	margin: 0 auto;
	margin-top: 10px;
}

label {
	color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 16px;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 16px;
	outline: none;
	border: solid 1px #eee;
	padding: 1px;
}

input[type=name],
input[type=password] {
	color: #777;
	padding-left: 10px;
	margin: 5px;
	margin-top: 6px;
	margin-left: 18px;
	width: 290px;
	height: 25px;
}

input[type=name]:hover,
input[type=password]:hover {
	border: solid 1px #bbb;
}

input[type=name]:focus,
input[type=password]:focus {
	/*box-shadow: inset 0 1px 1px rgba(100, 100, 100, .4), 0 0 0 1px #efefef;*/
	border: solid 1px #aaa;
}

#lower {
	background: #f3f3f3;
	width: 100%;
	height: 50px;
	margin-top: 20px;
	border-top: 1px solid #ccc;
	text-align: center;
}

#login-btn {
	margin-top: 12px;
	width: 80px;
	height: 20px;
	padding-top: 5px;
}
/*END*/

/* APP */
#app {
	visibility: hidden;
	display: block;
	width: 100%;
}
#app-header {
	position: fixed;
	margin: 0;
	padding: 0;
	top: 0px;
	width: 100%;
	height: 40px;
	background: #f3f3f3;
	text-align: center;
	box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .3);
	z-index: 1;
}
#app-header-main {
	display: block;
	background: transparent;
	text-align: center;
	margin-top: 5px;
	color: #fff;
	font-size: 16px;
}
#app-header-main select {
	font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
}
input[type=date] {
	font-size: 16px;
	width: 125px;
	cursor: pointer;
}
#data-btn {
	width: 100px;
	height: 20px;
	padding-top: 3px;
	margin-left: 10px;
}
#data-block {
	z-index: 0;
	display: block;
	margin-top: 80px;
	padding-bottom: 10px;
	text-align: center;
}
#filter-input {
	text-align: center;
	width: 400px;
}
.user-block {
	display: block;
 	margin: 10px auto;
 	height: 30px;
	width: 400px;
	background-color: #f3f3f3;
	border: solid 1px #ccc;
	padding-top: 5px;
	font-size: 20px;
}
.user-block span {
	/*padding-right: 20px;*/
}
.user-block .action {
	width:  100px;
	height: 20px;
	padding: 4px 4px 0px 4px;
	margin-left: 20px;
}
.user-block:hover {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
}
/* END */

/* LOADING BLOCK */
#loading-block {
	display: block;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	visibility: hidden;
}
#loading-img {
	width: 200px;
	height: 200px;
	position: absolute;
    top: 45%;
    left: 50%;
    margin-right: -50%;
	transform: translate(-50%, -50%)
}
/* END */

/* MESSAGE BLOCK */
#message {
	position: fixed;
	visibility: hidden;
	z-index: 998;
	border: solid 1px #fff;
	min-width: 200px;
	max-width: 80%;
}
#message_title {
	text-align: left;
	background: #333;
	color: #eee;
	font-size: 16px;
}
#message_description {
	text-align: left;
	background: #fff;
	border: solid 1px #333;
	color: #000;
	font-size: 16px;
}
#message_button {
	background: #333;
	text-align: center;
	vertical-align: middle;
	color: #eee;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	margin: 2px auto;
	width: 80px;
}
/*END*/

/* CONFIRM BLOCK */
#confirm {
	position: fixed;
	visibility: hidden;
	z-index: 999;
	border: solid 1px #fff;
	min-width: 200px;
	max-width: 80%;
}
#confirm-title {
	text-align: left;
	background: #333;
	color: #eee;
	font-size: 16px;
}
#confirm-message {
	text-align: left;
	background: #fff;
	border: solid 1px #333;
	color: #000;
	font-size: 16px;
}
#confirm-options {
	text-align: center;
}
.confirm-button {
	display: inline-block;
	background: #333;
	text-align: center;
	vertical-align: middle;
	color: #eee;
	font-size: 16px;
	text-decoration: none;
	cursor: pointer;
	margin: 2px auto;
	width: 80px;
}
/*END*/

/* DISABLE */
#disabler {
	position: fixed;
	visibility: hidden;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(200, 200, 200, .5);
}
/* END */