@import url( "./framework.css" );
body{
	font-size: 14px;
	overflow: hidden;
	position: relative;
}

#app-container{
	background: #fff;
	border-radius: 0px 0px 5px 5px ;
	display: block;
	overflow: hidden;
	max-width: 500px;
	margin: auto;
	margin-top: 0px;
    height: 100vh;

}

body.win32,
body.win32 #app-container{
	background: #fcfcfc;
}

.form-container{
	background: #fff;
	border-radius: 5px;
	position: relative;
	transition: all 0.5;
}

.note-container{
	background: #fff;
	display: none;
	position: absolute;
	top: 0px;
	width: 100%;
}

.footer-container{
	background: #fff;/* linear-gradient(360deg, rgba(255,255,255,1) 75%, rgba(255,255,255,0.5) 100%);*/
	border-radius: 0px 0px 5px 5px;
	box-shadow: -3px 0px 25px 0px rgba( 0,0,0,0.10);
	bottom: 0px;
	display: inline-block;
	padding: 15px 10px 10px 10px;
	position: fixed;
	width: 100%;
	max-width: 500px;
}

.input-container label:not(.hide){
	display: inline-block;
	position: relative;
	width: 100%;
}

.notice{
	cursor: pointer;
	text-align: center;
	margin-top: -5px;
	margin-bottom: 5px;
	padding: 4px 10px;
	width: 100%;
}
.notice span{
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}
.notice i{
	content: url( '../img/notification.svg' );
	height: 12px;
	padding-top: 2px;
	padding-right: 5px;
	margin-right: 3px;
}

.notice.success{
	background: #3cc381;
}

.notice.info{
	background: #3c9bc3;	
}

.notice.warning{
	background: #f78042;
}

.notice.success svg{
	fill: #fff;
	float: left;
	max-width: 15px;
}
.notice::before{
}

input[type="text"],
textarea{
	border: 1px solid #e0e6ec;
	border-radius: 5px;
	box-shadow: 0px 1px 6px 0px rgba( 0,0,0,0.05 );
	color: #000;
	font-size: 14px;
	font-weight: 500;
	padding: 0px 10px;
	width: calc( 100% );
}

input[type="text"]:focus,
textarea:focus{
	outline: none;
}

input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
	color: #a0a0a0;
}

input[type="text"]{
	height: 40px;
}

input[type="text"].error{
	border-color: #f58f8f;
	transition: all 0.15s;

}

textarea{
	transition: all 0.25s;
	margin-top: 10px;
	padding: 10px;
	line-height: 1.5em;
}

textarea#note-body.active{
	opacity: 1;
	min-height: 170px;
}

textarea + span{
	display: none;
}

textarea.active + span{
	color: #a0a0a0;
	display: inline-block; 
	font-size: 12px;
	position: absolute;
	bottom: 15px;
	right: 10px;
	margin-top: 0px;
}
textarea.active + span i{
	border-radius: 4px;
	border: 1px solid #f0f0f0;
	background: #fcfcfc;
	padding: 0px 3px;
}

#note-submit{
	background: #6883E9;
	border-radius: 4px;
	border: none;
	box-shadow: 0px 1px 6px 0px rgba( 0,0,0,0.05 );
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	padding: 8px;
	transition: box-shadow 0.25s;
	width: 100%;
}
#note-cancel{
	color: #5B8ABB;
	display: inline-block;
	margin-top: 5px;
	text-align: center;
	text-decoration: underline;
	width: 100%;
}
#note-submit:hover{
	box-shadow: 0px 1px 6px 0px rgba( 0,0,0,0.25 );
}
#app-container .form-container{
	border-radius: 5px;
	margin-top: 5px;
	display: block;
}

/* */
#app-container .chevron {
	background-size: 24px;
	display: none;
	height: 27px;
	left: 168px;
	top: -11px;
	width: 62px;
	position: absolute;
	z-index: 2;
}

body.win32 #app-container{
	margin-top: 0px;
}
body.win32 #app-container .chevron{
	display: none;
}

#app-container .input-container{
	background: #fff;
	display: none;
    margin: auto;
    position: relative;
    padding: 8px 10px 8px 10px;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99999;
}

.list-container {
    position: relative;
    height: 100vh;
}

#no-notes p{
	color: #444;
	padding: 30px;
	text-align: left;
}

p.loading,
#no-notes a{
	color: #478CD4;
}
p.loading key{
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 2px;
    color: #444;
    font-size: 12px;
    padding: 0px 4px;
    font-family: "Courier New";
    margin: 0px 4px;
}
.note-cover{
	position: absolute;
	bottom: 0px;
	display: block;
	height: 25px;
	width: 100%;
	z-index: 3;
}

#notes{
    max-height: 100%;
    overflow-y: scroll;
    transition: height 0.55s;
}
#notes::-webkit-scrollbar {
    width: 0em;
}

#notes .sortable-drop{
	display: block;
	background: transparent;
	height: 100px;
	line-height: 1.2em;
}

#notes li{
	padding: 5px 10px;
	position: relative;
}

#notes li div{
	display: table;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
	box-shadow: 0px 1px 10px 0px rgba( 0,0,0,0.05 );
    width: 100%;
    padding: 10px 0px;
    background: #fff;
	transition: all 0.25s ease-in, transform 0.35s ease-out, opacity 0.33s;
}

#notes li.archiving,
#notes li.deleting{
	overflow: hidden; 
}

#notes li.deleting div{
	opacity: 0.1;
	transform: translateY( -110% );
	transition: transform 0.15s ease-out, opacity 0.33s;
}

#notes li.archiving div{
	opacity: 0.1;
	transform: translateX( 110% );
}
#notes li.unarchiving div{
	opacity: 0.1;
	transform: translateX( -110% );
}

#notes li.sorting .actions{
	display: none;
}

#notes.compact li.sorting  span.draggable{
	left: 0px;
	top: 12px;
}

#notes li.sorting div{
	box-shadow: 0px 5px 30px 5px rgba( 0,0,0,0.15);
	transform: rotate(0.75deg);
}

#notes li.status-archive:last-child,
#notes li.status-active:last-child{
	border-bottom: none;
	padding-bottom: 60px;
}

#notes li:hover div{	
	background: #fcfcfc;
}

#notes li.status-archive{
	display: none;
}

#notes li span.title{
    color: #222;
    display: inline-block;
    float: none;
    font-size: 15px;
    clear: both;
    display: block;
    line-height: 24px;
    max-width: 100%;
    /*
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    */
    padding: 0px 13px;
    padding-top: 4px;
    font-weight: 500;
  	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; 
}
#notes li span.excerpt{
    color: rgb(114, 128, 142);
    clear: both;
    display: block;
    float: none;

	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 13px;
}
#notes li span.date{
    color: #909090;
    display: block;
    font-size: 12px;
    font-weight: 500;
    padding: 0px 15px;
    width: 100%;
}

#notes li.scrolling span.title{
  	text-overflow: unset;
} 

#notes li span.actions{
    display: inline-block;
    float: right;
    line-height: 24px;
    opacity: 1.0;
    padding-left: 38px;
    position: absolute;
    transition: opacity 0.25s ease-in-out;
    top: 13px;
    right: 15px;
}

#notes li:hover span.actions{
	opacity: 0.85;
}

#notes li.has-body span.title{
	cursor: pointer;
	padding-bottom: 4px;
}

/*
#notes li.has-body span.title::before{
	content: "";
    cursor: pointer;
    background-color: #a0a0a0;
    -webkit-mask-image: url(../img/chevron.svg);
    background-size: 24px;
    display: inline-block;
    float: right;
    height: 24px;
    opacity: 0.75;
    font-size: 40px;
    transition: margin 0.25s;
    width: 24px;
}
*/

#notes li.has-body:hover span.title::before{
	margin-left: 7px;
}

#notes li.has-body:not(.status-archive) a.more{
	cursor: pointer;
    display: block;
    float: left;
    line-height: 17px;
}

#notes li span.actions a {
	position: relative;
	cursor: pointer;
}

#notes li span.actions a span{
	background-color: #a0a0a0;
    float: left;
    height: 16px;
    width: 16px;
    margin-top: 4px;
    display: block;
    transition: margin 0.25s, background 0.25s;
    margin-right: 8px;
    position: relative;
    -webkit-mask-size: 16px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

#notes li span.actions a:hover span{
    margin-top: 2px;
}

#notes li span.actions a.trash span{
    -webkit-mask-image: url( '../img/trash.svg' );
}
#notes li span.actions a.copy span{
    -webkit-mask-image: url( '../img/copy.svg' );
}
#notes li.active span.actions a.view span{
    -webkit-mask-image: url( '../img/view-off.svg' );
}

#notes li span.actions a.view span{
    -webkit-mask-image: url( '../img/view-on.svg' );
}

#notes li span.actions a.edit span{
    -webkit-mask-image: url( '../img/edit.svg' );
}

#notes li.status-active:hover a.check span,
#notes li.status-active:hover a.copy span,
#notes li.status-active:hover a.edit span,
#notes li.status-active:hover a.view span,
#notes li.status-archive:hover a.trash span{
    display: block;
    opacity: 1;
}

body.win32 #notes li.status-active:hover a.view{
	display: none;
}

#notes li span.actions a.check span{
	background: transparent;
	display: inline-block;
	margin-left: 1px;
    margin-top: 4px;
    transition: none;
}

#notes li.status-archive span.actions a.check span{
	margin-left: 2px;
}

#notes li a.check:before{
	border: 2px solid #6883E9;
	background: #f2f7fb;
    border-radius: 14px;
    content: '';
    height: 18px;
    left: -1px;
    position: absolute;
    top: 1px;
    width: 18px;
}

#notes li.status-archive span.actions a.check:hover span{
    -webkit-mask-image: url( '../img/dot.svg' );
    -webkit-mask-size: 6px;
}

#notes li span.actions a.check:hover span{
	background-color: #6883E9;
    -webkit-mask-image: url( '../img/check.svg' );
    -webkit-mask-size: 9px;
	fill: #6883E9;
}

#notes li a.check:hover:before{
	border: 3px solid #6883E9;
	box-shadow: 0px 0px 15px 0px rgba( 0,0,0,0.15);
    left: -2px;
    top: 0px;
}

#notes.compact li{
	padding: 3px 10px;
}

#notes.compact li div{
	border-radius: 3px;
	box-shadow: 0px 0px 10px 0px rgba( 0,0,0,0.05);
	padding-top: 5px;
	padding-bottom: 7px;
	/*
	box-shadow: none;
	padding-top: 5px;
	padding-bottom: 7px;
	*/
}

#notes.compact li span.draggable{
	position: absolute;
	left: 9px;
	top: 17px;
}

#notes.compact li span.actions{
	background: #fcfcfc;
   	top: 13px;
    right: 15px;
}
#notes.compact li:hover span.actions{
	opacity: 1;
 }

#notes.compact li span.excerpt,
#notes.compact li span.date{
    display: none;
}

#notes.compact li span.title,
#notes.compact li.has-body span.title{
	padding-bottom: 2px;
	padding-top: 4px;
	padding-left: 25px;
}

.note-container .header a#back{
	background-color: #6883E9;
    -webkit-mask-image: url( '../img/back.svg' );
    -webkit-mask-size: 20px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    display: block;
    height: 20px;
    width: 20px;
    float: left;
    margin-left: 0px;
    transition: margin 0.25s;
}

.note-container .header a#back:hover{
	margin-left: -5px;
}

.note-container h3.heading{
	display: inline-block;
    float: none;
    font-size: 22px;
    line-height: 32px !important;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 10px;
    width: 100%;
}

.note-container .header{
    border-bottom: 1px solid #e0e6ec;
    line-height: 46px;
    padding: 15px 20px;
    width: 100%;
    display: inline-block;
}
.note-container{
	height: 440px;
	overflow-y: scroll;
}
.note-container .display-body{
	background: #fff;
	padding: 10px 20px;
	position: relative;
}

.note-container .edit-button{
	color: #a0a0a0;
    position: absolute;
	font-size: 12px;
	line-height: 14px;
	padding: 2px 18px;
    top: 14px;
    right: 60px;
}

.note-container .copy-button{
	border-radius: 3px;
	border: 1px solid #a0a0a0;
	color: #a0a0a0;
    position: absolute;
	font-size: 12px;
	line-height: 14px;
	padding: 2px 12px;
    top: 13px;
    right: 10px;
}

.note-container .copy-button:hover{
	border: 1px solid #6883E9;
	color: #6883E9;
}
.note-container .copy-button:active{
	opacity: 0.5;
}

.footer-container .footer-actions{
	float: left;
	width: 105px;
}

.footer-container .footer-actions a:not(.cloud){
	    line-height: 24px;
    display: block;
    float: left;
    text-align: center;
}
.footer-container .footer-actions svg{
	fill: #a0a0a0;
	opacity: 0.75;
	margin-right: 8px;
	transition: opacity 0.25s;
}
.footer-container .footer-actions a:hover svg{
	opacity: 1.0;
}

.footer-container .footer-actions .list-mode.active svg,
.footer-container .footer-actions .scroll.active svg{
	fill: #6883E9;
	opacity: 1.0;
}

.footer-container .footer-actions .login .logged-in{
	display: none;
}

.footer-container .footer-actions .login .logged-out{
	display: block;
}

.footer-container .footer-actions .login.active .logged-in{
	display: block;
}

.footer-container .footer-actions .login.active   svg .logged-in{
	fill: #6883E9;
}

.footer-container .footer-actions .login.active .logged-out{
	display: none;
}


.footer-container .footer-actions .cloud{
	display: none;
	padding-top: 4px;
	float: right;
}

.footer-container .footer-actions .cloud span{
	color: #666;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	float: left;
}

.footer-container .footer-actions .cloud i{
	background: #6883E9;
	display: block;
	float: left;
	margin-top: 4px;
	margin-left: 6px;
	margin-right: 0px;
	height: 9px;
	width: 9px;
    -webkit-mask-size: 9px;
    -webkit-mask-image: url( '../img/dot.svg' );
}

.footer-container .footer-actions .cloud.off{
	display: inline-block;
}
.footer-container .footer-actions .cloud.off i{
	background: #666;
}

.footer-container .list-switcher{
    background: #F5F7F9;
    border: 1px solid #e0e6ec;
    border-radius: 3px;
    float: none;
    margin-left: 28px;
    width: 115px;
    display: inline-block;
    position: relative;
    padding: 1px;
}
.footer-container .list-switcher a{
	border-radius: 3px;
    color: #444;
    font-size: 12px;
    padding: 3px 12px;
    position: relative;
    float: left;
    width: 50%;
}

.footer-container .list-switcher a.active{
	background: #6883E9;
	padding: 3px 12px;
	color: #fff;
}

.footer-container .list-switcher a.active:nth-child(1){
	border-right: 1px solid #e0e6ec;
    
}
.footer-container .list-switcher a.active:nth-child(2){
	border-left: 1px solid #e0e6ec;
	border-radius: 3px;
	color: #e0e6ec;
	font-size: 12px;
}

.footer-container .list-switcher a.active{
	background: #6883E9;
	padding: 3px 12px;
	color: #fff;
}

.footer-container .list-switcher a.active:nth-child(1){
	border-right: 1px solid #e0e6ec;
}
.footer-container .list-switcher a.active:nth-child(2){
	border-left: 1px solid #e0e6ec;
}

.footer-container .add-button{
	position: absolute;
    right: -15px;
    bottom: -15px;
    height: 90px;
    width: 90px;
    border-radius: 45px;
    text-align: center;
    padding: 32px 0px;
    background: #6883E9;
    box-shadow: 0px 0px 15px 0px rgba( 0,0,0,0.15);
}


/* Tooltip */
.tooltip{
	background: rgba( 0,0,0,0.75);
	border-radius: 4px;
	color: #fff;
	display: inline;
	font-size: 12px;
	padding: 2px 6px;
	position: absolute;
}

/* Alert Text */
.swal-overlay--show-modal .swal-modal{
	max-width: 350px;
}

.swal-text,
.swal-text:first-child{
    display: block;
    font-size: 14px;
    max-width: 100%;
    margin-top: 20px;
    padding: 0px 20px;
    width: 100%;
}

.swal-footer {
    text-align: center;
    padding-top: 0;
    margin-top: 0;
	max-width: calc(100% - 10px);
    padding: 5px;
    padding-top: 10px;
    float: none;
    clear: both;
}

.swal-button{
	border: none;
	border-radius: 3px;
    box-shadow: none;
	font-weight: 400;
	padding: 4px 15px;
}

.swal-button--confirm:hover{
	box-shadow: 0px 0px 10px 0px rgba( 0,0,0,0.25);
}
.swal-button--cancel{
	background: none;
	border: none;
	box-shadow: none;
>>>>>>> 8ff41ec215476efa5f9798180bd4ed725a0c42c2
}