body {
	margin: 0;
	background: #f1f2f7;
}

#app {
	display: none;
}

#header {    
	background: url('../images/head-bg.png') rgb(236, 29, 36);
	height: 53px;
	width: 100%;
}

#header .logo {
	float: left;
	margin: 12px 0 0 20px;
}

.group .select-dropdown {
	top: 10px !important;
    /* height: 200px !important; */
}

#header .appname {
	color: white;
	font-size: 18px;
	font-family: sans-serif;
	float: left;
	margin: 13px;
	margin-left: 10px;
}

/* Change the white to any color ;) */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px white inset !important;
}

/*Change text in autofill textbox*/
input:-webkit-autofill {
	-webkit-text-fill-color: black !important;
}

#pages > div {
	display: none;
}

#pages > .page {
	width: calc(80vw);    
	height: 100%;
	margin-left: 10vw;
	overflow-x: auto;
	overflow-y: unset;
	padding-top: 100px
}

#pages > .page > .header {
	height: 80px;
}

#pages > .page > .header > .left {
	float: left;
}

#pages > .page > .header > .left > .title {
	margin: 0;
}

#pages > .page > .header > .right {
	float: right;
}

#login .form {
	width: 400px;
	background: white;
	padding: 20px;
	margin-left: calc(50vw - 200px);
	margin-top: calc(50vh - 200px);
}

#login #loginBtn {
	float: right;
}

#login #loginError {
	display: none
}

.menu {
	position: absolute;
	left: 20px;
	top: 70px;
	margin-left: 0;
	padding: 0;
	padding-left: 30px;
	width: 650px;
	height: 40px;
	box-sizing: border-box;
	font-size: 20px;
	text-align: left;
}
.menu-item, .sub-item i, .menu-open-button {
	background: #ec1d24;
	border-radius: 100%;
	width: 45px;
	height: 45px;
	line-height: 45px;
	left: 0;
	margin-left: 0;
	position: absolute;
	color: white;
	text-align: center;
	transform: translate3d(0, 0, 0);
	transition: transform ease-out 200ms;
}
.sub-item{
	display: inline-block;
}
.menu-open:checked ~ .menu-item.sub-item .title{
	visibility: visible;
	margin-left: 30px;
}

.sub-item .icon {
	padding-top: 10px;
}

.sub-item .title{
	border-radius: 0;
	color: #ec1d24;
	margin-left: 15px;
	visibility: hidden;
	font-size: 16px;
	position: absolute;
}

.menu-open {
	display: none;
}

.hamburger {
	width: 25px;
	height: 1.3px;
	background: white;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12.5px;
	margin-top: -1.5px;
	transition: transform 200ms;
}

.hamburger-1 {
	transform: translate3d(0, -8px, 0);
}

.hamburger-2 {
	transform: translate3d(0, 0, 0);
}

.hamburger-3 {
	transform: translate3d(0, 8px, 0);
}

/* .menu-open:checked + .menu-open-button .hamburger-1 {
	transform: translate3d(0, 0, 0) rotate(45deg);
}

.menu-open:checked + .menu-open-button .hamburger-2 {
	transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.menu-open:checked + .menu-open-button .hamburger-3 {
	transform: translate3d(0, 0, 0) rotate(-45deg);
} */


.menu-item:hover {
	text-decoration: none;
	background: white;
	color: red;
	transition: all .3s;
}

.menu-item:nth-child(3) {
	transition-duration: 180ms;
}

.menu-item:nth-child(4) {
	transition-duration: 180ms;
}

.menu-item:nth-child(5) {
	transition-duration: 180ms;
}

.menu-item:nth-child(6) {
	transition-duration: 180ms;
}

/* .menu-open-button {
	z-index: 2;
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-duration: 400ms;
	transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	cursor: pointer;
} */

.menu-open-button:hover {
	transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}

/* .menu-open:checked + .menu-open-button {
	transition-timing-function: linear;
	transition-duration: 200ms;
	transform: scale(0.8, 0.8) translate3d(0, 0, 0);
} */

.menu-open:checked ~ .menu-item {
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-open:checked ~ .menu-item:nth-child(3) {
	transition-duration: 190ms;
	transform: translate3d(80px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(4) {
	transition-duration: 290ms;
	transform: translate3d(210px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(5) {
	transition-duration: 390ms;
	transform: translate3d(360px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(6) {
	transition-duration: 440ms;
	transform: translate3d(480px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(7) {
	transition-duration: 540ms;
	transform: translate3d(625px, 0, 0);
}


.menu-open:checked ~ .menu-item:nth-child(8) {
	transition-duration: 640ms;
	transform: translate3d(735px, 0, 0);
}

.menu-open:checked ~ .menu-item:nth-child(9) {
	transition-duration: 640ms;
	transform: translate3d(870px, 0, 0);
}

