body{
	padding: 0;
	margin: 0;
}
.ProseMirror { 
	position: relative; 
} 
.ProseMirror-menubar{
	border: 0px !important;
}
.ProseMirror-menubar-wrapper{
	border: 0px !important;
}
#editor.disabled .ProseMirror-menubar{
	display: none !important;
}
#editor.disabled .ProseMirror-menubar-wrapper{
	border: 0 !important;
}
.notedisabled{
	display: none !important;
}
.ProseMirror { 
	word-wrap: break-word; 
	white-space: pre-wrap; 
	-webkit-font-variant-ligatures: none; 
	font-variant-ligatures: none; 
} 
.ProseMirror pre { 
	white-space: pre-wrap; 
} 
.ProseMirror li { 
	position: relative; 
} 
.ProseMirror-hideselection *::selection { 
	background: transparent; 
} 
.ProseMirror-hideselection *::-moz-selection { 
	background: transparent; 
} 
.ProseMirror-hideselection { 
	caret-color: transparent; 
} 
.ProseMirror-selectednode { 
	outline: 2px solid #8cf; 
} 
/* Make sure li selections wrap around markers */ 
li.ProseMirror-selectednode { 
	outline: none; 
} 
li.ProseMirror-selectednode:after { 
	content: ""; 
	position: absolute; 
	left: -32px; 
	right: -2px; 
	top: -2px; 
	bottom: -2px; 
	border: 2px solid #8cf; 
	pointer-events: none; 
} 
.ProseMirror-textblock-dropdown { 
	min-width: 3em; 
} 
.ProseMirror-menu { 
	margin: 0 -4px; 
	line-height: 1; 
} 
.ProseMirror-tooltip .ProseMirror-menu { 
	width: -webkit-fit-content; 
	width: fit-content; 
	white-space: pre; 
} 
.ProseMirror-menuitem { 
	margin-right: 3px; 
	display: inline-block; 
} 
.ProseMirror-menuseparator { 
	border-right: 1px solid #ddd; 
	margin-right: 3px; 
} 
.ProseMirror-menu-dropdown, 
.ProseMirror-menu-dropdown-menu { 
	font-size: 90%; 
	white-space: nowrap; 
} 
.ProseMirror-menu-dropdown { 
	vertical-align: 1px; 
	cursor: pointer; 
	position: relative; 
	padding-right: 15px; 
} 
.ProseMirror-menu-dropdown-wrap { 
	padding: 1px 0 1px 4px; 
	display: inline-block; 
	position: relative; 
} 
.ProseMirror-menu-dropdown:after { 
	content: ""; 
	border-left: 4px solid transparent; 
	border-right: 4px solid transparent; 
	border-top: 4px solid currentColor; 
	opacity: 0.6; 
	position: absolute; 
	right: 4px; 
	top: calc(50% - 2px); 
} 
.ProseMirror-menu-dropdown-menu, 
.ProseMirror-menu-submenu { 
	position: absolute; 
	background: white; 
	color: #666; 
	border: 1px solid #aaa; 
	padding: 2px; 
} 
.ProseMirror-menu-dropdown-menu { 
	z-index: 15; 
	min-width: 6em; 
} 
.ProseMirror-menu-dropdown-item { 
	cursor: pointer; 
	padding: 2px 8px 2px 4px; 
} 
.ProseMirror-menu-dropdown-item:hover { 
	background: #f2f2f2; 
} 
.ProseMirror-menu-submenu-wrap { 
	position: relative; 
	margin-right: -4px; 
} 
.ProseMirror-menu-submenu-label:after { 
	content: ""; 
	border-top: 4px solid transparent; 
	border-bottom: 4px solid transparent; 
	border-left: 4px solid currentColor; 
	opacity: 0.6; 
	position: absolute; 
	right: 4px; 
	top: calc(50% - 4px); 
} 
.ProseMirror-menu-submenu { 
	display: none; 
	min-width: 4em; 
	left: 100%; 
	top: -3px; 
} 
.ProseMirror-menu-active { 
	background: #eee; 
	border-radius: 4px; 
} 
.ProseMirror-menu-active { 
	background: #eee; 
	border-radius: 4px; 
} 
.ProseMirror-menu-disabled { 
	opacity: 0.3; 
} 
.ProseMirror-menu-submenu-wrap:hover .ProseMirror-menu-submenu, 
.ProseMirror-menu-submenu-wrap-active .ProseMirror-menu-submenu { 
	display: block; 
} 
.ProseMirror-menubar { 
	border-top-left-radius: inherit; 
	border-top-right-radius: inherit; 
	position: relative; 
	min-height: 1em; 
	color: #666; 
	padding: 1px 6px; 
	top: 0; 
	left: 0; 
	right: 0; 
	border-bottom: 1px solid silver; 
	background: white; 
	z-index: 10; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box; 
	overflow: visible; 
} 
.ProseMirror-icon { 
	display: inline-block; 
	line-height: 0.8; 
	vertical-align: -2px; 
	/* Compensate for padding */ 
	padding: 2px 8px; 
	cursor: pointer; 
} 
.ProseMirror-menu-disabled.ProseMirror-icon { 
	cursor: default; 
} 
.ProseMirror-icon svg { 
	fill: currentColor; 
	height: 1em; 
} 
.ProseMirror-icon span { 
	vertical-align: text-top; 
} 
.ProseMirror-gapcursor { 
	display: none; 
	pointer-events: none; 
	position: absolute; 
} 
.ProseMirror-gapcursor:after { 
	content: ""; 
	display: block; 
	position: absolute; 
	top: -2px; 
	width: 20px; 
	border-top: 1px solid black; 
	animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite; 
} 
@keyframes ProseMirror-cursor-blink { 
	to { 
		visibility: hidden; 
	} 
} 
.ProseMirror-focused .ProseMirror-gapcursor { 
	display: block; 
} 
/* Add space around the hr to make clicking it easier */ 
.ProseMirror-example-setup-style hr { 
	padding: 2px 10px; 
	border: none; 
	margin: 1em 0; 
} 
.ProseMirror-example-setup-style hr:after { 
	content: ""; 
	display: block; 
	height: 1px; 
	background-color: silver; 
	line-height: 2px; 
} 
.ProseMirror ul, 
.ProseMirror ol { 
	padding-left: 30px; 
} 
.ProseMirror blockquote { 
	padding-left: 1em; 
	border-left: 3px solid #eee; 
	margin-left: 0; 
	margin-right: 0; 
} 
.ProseMirror-example-setup-style img { 
	cursor: default; 
} 
.ProseMirror-prompt { 
	background: white; 
	padding: 5px 10px 5px 15px; 
	border: 1px solid silver; 
	position: fixed; 
	border-radius: 3px; 
	z-index: 11; 
	box-shadow: -0.5px 2px 5px rgba(0, 0, 0, 0.2); 
} 
.ProseMirror-prompt h5 { 
	margin: 0; 
	font-weight: normal; 
	font-size: 100%; 
	color: #444; 
} 
.ProseMirror-prompt input[type="text"], 
.ProseMirror-prompt textarea { 
	background: #eee; 
	border: none; 
	outline: none; 
} 
.ProseMirror-prompt input[type="text"] { 
	padding: 0 4px; 
} 
.ProseMirror-prompt-close { 
	position: absolute; 
	left: 2px; 
	top: 1px; 
	color: #666; 
	border: none; 
	background: transparent; 
	padding: 0; 
} 
.ProseMirror-prompt-close:after { 
	content: "âœ•"; 
	font-size: 12px; 
} 
.ProseMirror-invalid { 
	background: #ffc; 
	border: 1px solid #cc7; 
	border-radius: 4px; 
	padding: 5px 10px; 
	position: absolute; 
	min-width: 10em; 
} 
.ProseMirror-prompt-buttons { 
	margin-top: 5px; 
	display: none; 
} 
#editor, 
.editor { 
	background: white; 
	color: black; 
	background-clip: padding-box; 
	border-radius: 4px; 
	border: 2px solid rgba(0, 0, 0, 0.2); 
	padding: 5px 0; 
	margin-bottom: 23px; 
} 
.ProseMirror p:first-child, 
.ProseMirror h1:first-child, 
.ProseMirror h2:first-child, 
.ProseMirror h3:first-child, 
.ProseMirror h4:first-child, 
.ProseMirror h5:first-child, 
.ProseMirror h6:first-child { 
	margin-top: 10px; 
} 
.ProseMirror { 
	padding: 4px 8px 4px 14px; 
	line-height: 1.2; 
	outline: none; 
} 
.ProseMirror p { 
    margin-bottom: 2px;
	margin-top: 2px; 
}
 @font-face {
	font-family: "Inter";
	src: url("../../public/fonts/inter.ttf");
 }

  body {
	
    /*max-width: 50em;*/
	font-family: Inter;
    
  }
  .ProseMirror-menubar-wrapper {
    border: 1px solid silver;
    outline: none;
  }
  .ProseMirror {
    padding: 5px 15px;
  }
  .ProseMirror table {
    margin: 0;
  }
  .ProseMirror th, .ProseMirror td {
    min-width: 1em;
    border: 1px solid #ddd;
    padding: 3px 5px;
  }
  .ProseMirror .tableWrapper {
    margin: 1em 0;
  }
  .ProseMirror th {
    font-weight: bold;
    text-align: left;
  }

  #foldersContainer{
	display: inline-block;
	width: 20%;
	height: 100%;
	font-size: 17px;
	background-color: #f2f2f7;

  }

  #notesContainer{
	display: inline-block;
	width: 20%;
	height: 100%;
	background-color: #f2f2f7;
	overflow-y: scroll;

  }

  #editorContainer{
	display: inline-block;
	width: 59%;
	height: 100%;
	background-color: white;

  }
  #editor{
	height: calc(100% - 64px);
  }
  #editor.disabled{
	height: calc(100% - 64px);
  }
  

  .ProseMirror-example-setup-style{
	height: 100%;
	overflow-y: scroll;
  }

  .ProseMirror-menubar-wrapper{
	height: 100%;
	overflow-y:scroll;
  }

  .fa-folder{
	color: #ebb800;
	margin-right: 6px;
  }

  .fa-plus{
	color: #ebb800;
	margin-left: 10px;

  }
  #addNoteBtn{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-left: 10px;
	margin-right: 10px;
	cursor: pointer;

  }
   #createFolderBtn{
	width: 40px;
	height: 40px;
	display: inline-block;
	cursor: pointer;
   }

   .folder_item{
	height: 40px;
	display: flex;
	align-items: center;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
	border-radius: 8px;
	flex-direction: 'row';
   }

   .folder_item.active{
		background-color: rgba(255,223,13,.3)

   }

   .folder_item:hover:not(.active){
	background-color: rgba(120,120,128,.16);

   }

   .noteActionBtn{
	width: 35px;
	height: 35px;
	cursor: pointer;
   }

   .textActionBtn{
	padding-left:12px; 
	padding-top: 6px;
	 padding-bottom: 6px; 
	 padding-right:12px; 
	 background-color: black; 
	 border-radius: 18px; color: white;
	 cursor: pointer;
   }

   .noteActionBarCenter{
	display:flex; justify-content:space-between; align-items:center; min-width:250px; 
   }

   .noteActionBarRight:not(.disabled){
	display: flex; align-items:center;
   }

   .note_item{
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 20px;
	padding-bottom:0px;
	border-bottom: 1px solid hsla(0,0%,52.9%,.2);;
   }

   .note_item.active{
	background-color: rgba(120,120,128,.16);

   }

   .note_time{
	font-size: 14px;
   }

   .note_folder{
	color: #3c3c4399
   }

   .note_short_content{
	color: #3c3c4399;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

   }

   /* #searchNote {
	width: 85%;
	color: white;
	border-radius: 14px;
	border-color: rgba(120,120,128,.16);
	background-color:  rgba(120,120,128,.16);
	height: 28px;
	padding-left: 44px;
	margin-left: 20px;
	
	
  }
  
  .note-search-icon {
	position: relative;
	margin-right: -60px;
	width: 20px;
	height:20px;
	z-index: 1;
	vertical-align: middle;
  } */

  form {
	display: flex;
	padding: 2px;
	border: 1px solid transparent;
	border-radius: 10px;
	background: rgba(120,120,128,.16);
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
  }
  
  input[type="search"] {
	border: none;
	background: rgba(120,120,128,.16);
	margin: 0;
	padding: 7px 8px;
	font-size: 14px;
	color: inherit;
	border: 1px solid transparent;
	border-radius: 10px;
	background-color:  rgba(120,120,128,.16);
  }
  #searchNote:focus{
	outline: none !important;
	border-color: rgba(120,120,128,.16);
  }
  
  input[type="search"]::placeholder {
	color: #3c3c4399;
  }
  

  
  form.nosubmit {
   border: none;
   padding: 0;
  }
  
  input.nosubmit {
	border: 1px solid transparent;
	width: 100%;
	
	padding: 9px 4px 9px 40px;
	 background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'  width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
  }
  
  #editorContainer #editModeActionBar{
	display: block;
	position:absolute; top: 65px; right: 16px; z-index:500
  }

  #editorContainer.disabled #editModeActionBar{
	display: none;
  }

  #editorContainer #viewModeActionBar{
	display: none;
  }
  #editorContainer.disabled #viewModeActionBar:not(.disabled){
	display: flex ;
	justify-content:space-between; align-items:center; padding-left: 10px; padding-right:16px;
  }

  #editorContainer.disabled #editModeActionBar{
	display: none !important;
  }

  .dialog {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	z-index: 999;
	background-color: #fff;
	padding: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	
  }

  #dialog{
	width: 500px;
	height:500px;
  }

  #folderDialog{
	width: 200px;
	max-height: 400px;
	overflow-y: scroll;
  }
  
  .folder_attach_item{
	height: 40px;
	cursor: pointer;
  }
  .folder_attach_item:hover:not(.active){
	background-color: rgba(120,120,128,.16);

   }

  .noteInfoChannel{
	width: 100%;
  }
  
  #search-input {
	width: 100%;
	padding: 5px;
	margin-bottom: 10px;
	box-sizing: border-box;
  }

  #viewModeActionBar.disabled{
	display: none;
  }

  .noteActionBarRight.disabled{
	visibility: hidden;
  }

  .noteActionBarLeft.disabled{
	visibility: hidden;

  }
  .noteActionBarCenter.disabled {
	justify-content: center;
  }
  .noteActionBarCenter.disabled .noteActionBtn:not(.noteActionBtnUser){
	display: none;

  }

  .textActionBtn.disabled{
	display: none;
  }
  .logo {
	width: 89px;
	height: 24px;
	margin-left: 7%;
	margin-right: 16px;
  }
  .userLogo{
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-left: 10px;
  }
  .navbar-nav .nav-item.active{
	text-decoration: underline;
  }
  .login_button {
	position: absolute;
	margin-top: 14px;
	border:none;
	background-color: #F6F6F6;
	text-decoration: underline;
  }
  .login_button_next {
	position: absolute;
	margin-top: 14px;
	border:none;
	background-color: #F6F6F6;
	text-decoration: underline;
	margin-left: 100px;
  }
  .nav-link{
	font-size: 14px;
  }

  .guestBody #editorContainer.disabled #editModeActionBar{
	display: none !important;
  }

  .guestBody #editorContainer #viewModeActionBar{
	display: none !important;
  }
  .guestBody #editor{
	height: 100% !important; 
  }
#noteName {
	margin-top: 36px;
}
  #noteName.disabled{
	margin-top: 0px;
  }
  

  /* .guestBody #foldersContainer{
	display: none !important;
  }

  .guestBody #notesContainer{
	display: none !important;
  }
  .guestBody #editorContainer{
	display: flex;
	justify-content: center;
  } */