@font-face {
	font-family: 'Segoe WPN Semilight';
	src: local('Segoe UI Semilight'), local('SegoeUI-Semilight'), url('/files/fonts/segoewpn/semilight/SegoeWPN-SemiLight.eot?#iefix') format('embedded-opentype'), url('/files/fonts/segoewpn/semilight/SegoeWPN-SemiLight.woff') format('woff'), url('/files/fonts/segoewpn/semilight/SegoeWPN-SemiLight.ttf') format('truetype'), url('/files/fonts/segoewpn/semilight/SegoeWPN-SemiLight.svg#SegoeWPN-SemiLight') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Segoe WPN Light';
	src: local('Segoe UI Light'), local('SegoeUI-Light'), url('/files/fonts/segoewpn/light/SegoeWPN-Light.eot?#iefix') format('embedded-opentype'), url('/files/fonts/segoewpn/light/SegoeWPN-Light.woff') format('woff'), url('/files/fonts/segoewpn/light/SegoeWPN-Light.ttf') format('truetype'), url('/files/fonts/segoewpn/light/SegoeWPN-Light.svg#SegoeWPN-Light') format('svg');
	font-weight: normal;
	font-style: normal;
}

html, body {
	font-family: "Segoe WPN Light", sans-serif;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 0;
	margin: 0;
	padding: 0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	background: transparent;
}

/* START */
/**/
/* TITLEBAR */
/**/
/**/

.titlebar {
	position: fixed;
	background: #FF6666;
	color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 45px;
	z-index: 90;
	transition: .5s;
}

.titlebar-offline {
	border-bottom: 5px solid #FF4040!important;
}

.titlebar-app {
	position: absolute;
	height: 45px;
	font-size: 21px;
	line-height: 45px;
	padding-left: 10px;
	color: #fff;
}

.titlebar-commands {
	height: 45px;
	text-align: right;
	margin-right: 40px;
}

.titlebar-commands-command {
	margin: 6px;
	font-family: "Segoe WPN Semilight", sans-serif;
	font-size: 18px;
	line-height: 33px;
	cursor: pointer;
	display: inline-block;
	margin-left: 18px;
	color: #fff !important;
	opacity: 0.8;
	transition: all 0.33s ease;
}
.titlebar-commands-command:hover {
	opacity: 1;
}
.titlebar-commands-command:active {
	color: #CA5252;
}

.titlebar-maximize {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 13px;
	right: 10px;
	background-image:url('/files/images/cloud/resize.svg');
	background-size: 60px;
	background-position: 0 0;
	cursor: pointer;
	position: absolute;
}
.titlebar-maximize:hover {
	background-position: 0 -20px;
}
.titlebar-maximize:active {
	background-position: 0 -40px;
}
@media screen and (min-width: 820px) {
	.titlebar-maximize {
		display: none;
	}
}

/**/ 
/**/
/* TITLEBAR */
/**/
/* END */

/* START */
/**/
/* CONTENT */
/**/
/**/

.view {
	position: absolute;
	top: 46px;
	bottom: 0;
	left: 0;
	right: 0;
	background: #FFF;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.view-content {
	position: absolute;
	top: 0;
	bottom: 41px;
	left: 0;
	right: 0;
	overflow-x: hidden;
	overflow-y: auto;
}

.view-footer {
	position: absolute;
	bottom: 0;
	height: 40px;
	left: 0;
	right: 0;
	//box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
	background: transparent;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.view-footer-left {
	position: absolute;
	left: 0;
}

.view-footer-right {
	position: absolute;
	right: 0;
}

.view-footer-label {
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	color: #FF6666;
	font-family: "Segoe WPN Semilight", sans-serif;
	padding: 8px;
}

.view-footer-command {
	height: 24px;
	line-height: 24px;
	font-size: 18px;
	color: #FF6666;
	font-family: "Segoe WPN Semilight", sans-serif;
	padding: 8px;
	cursor: pointer;
}
.view-footer-command:hover {
	color: #E85D5D;
}
.view-footer-command:active {
	color: #CA5252;
}

.view-footer-unselectable {
	cursor: default;
	color: #FF6666!important;
	opacity: 0.5;
}

/**/
/* SELECTOR */
/**/

.selector {
	margin: 6px;
	border-radius: 4px;
	font-size: 0;
}

.selector-item {
	border: 1px solid #FF6666;
	border-right: none;
	display: inline-block;
	min-width: 70px;
	font-family: "Segoe WPN Semilight", sans-serif;
	font-size: 16px;
	color: #FF6666;
	height: 26px;
	line-height: 25px;
	margin: 0;
	padding: 0;
	text-align: center;
	cursor: pointer;
	transition: .2s;
}
.selector-item:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.selector-item:last-child {
	border-right: 1px solid #FF6666;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.selector-item:hover {
	background: rgba(255, 102, 102, 0.1);
	color: #FF6666;
}
.selector-item:active {
	background: #FF6666;
	color: #FFF;
}

.selector-item-selected {
	background: #FF6666!important;
	color: #FFF!important;
}

/**/
/* CONTENT MAIN */
/**/

.view-content-note {
	display: block;
	height: 45px;
	overflow: hidden;
	cursor: pointer;
	border-bottom: 1px solid #F7D7D7;
	background: #fafafa;
	transition: .1s;
}
.view-content-note:hover {
	background: rgb(255, 236, 236);
}

.view-content-note-title {
	height: 41px;
	line-height: 41px;
	display: block;
	left: 0;
	right: 158px;
	position: absolute;
	font-size: 22px;
	margin: 2px;
	margin-left: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.view-content-note-date {
	height: 41px;
	line-height: 41px;
	display: block;
	width: 70px;
	right: 84px;
	position: absolute;
	font-size: 15px;
	margin: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: "Segoe WPN Semilight", sans-serif;
}

.view-content-note-owner {
	height: 41px;
	line-height: 41px;
	display: block;
	right: 0;
	width: 80px;
	position: absolute;
	font-size: 15px;
	margin: 2px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: "Segoe WPN Semilight", sans-serif;
}

.view-content-nonotes {
	font-family: "Segoe WPN Semilight", sans-serif;
	color: #FF6666;
	text-align: center;
}

.view-content-nonotes-title {
	font-size: 20px;
	padding: 30px;
}

.view-content-nonotes-info {
	font-size: 16px;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	padding: 25px;
}

/**/
/* CONTENT DETAIL */
/**/

.view-content-top {
	position: absolute;
	top: 0;
	height: 40px;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.view-content-textareabox {
	position: absolute;
	top: 41px;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	overflow: hidden;
}

.view-content-textareabox textarea {
	background: #fff;
	width: 100%;
	height: 100%;
	padding: 12px;
	margin: 0;
	resize: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
	overflow-y: auto;
	border: none;
	position: relative;
	font-family: "Segoe WPN Semilight", sans-serif;
	outline: none;
	font-size: 18px;
	line-height: 24px;
}

/**/
/**/
/* CONTENT */
/**/
/* END */