body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

p {
	margin-bottom: 1em !important;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}


/* PROSEMIRROR START */

/* prose mirror suggestions */
.suggestion-item-active {
	background: #08c;
	color: #fff;
}
.prosemirror-mention-node {
	color: #08c;
}
.prosemirror-tag-node {
	color: #08c;
}
.prosemirror-suggestion {
	background: rgba(0, 0, 0, 0.05);
	border: 1px solid #999;
}
.suggestion-item-list {
	background: #fff;
	border: 1px solid #999;
}
.suggestion-item {
	padding: 5px;
}
.suggestion-item:before {
	border-top: 1px solid;
}

/* prose mirror todo task */
li[data-type="todo_item"] {
	display: flex;
	flex-direction: row;
}

.todo-checkbox {
	border: 1px solid;
	height: 0.7em;
	width: 0.7em;
	box-sizing: border-box;
	margin-right: 10px;
	margin-top: 14px;
	user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
	border-radius: 0.2em;
}

.todo-checkbox-checked {
	background-color: black;
}

.todo-content {
	flex: 1;
}

li[data-done="true"] {
	text-decoration: line-through;
}

li[data-done="true"] .todo-checkbox-unchecked {
	display: none;
}

li[data-done="false"] .todo-checkbox-checked {
	display: none;
}

li[data-done="true"] li[data-done="false"] .todo-checkbox-checked {
	display: inline-block;
}

li[data-done="false"] li[data-done="true"] .todo-checkbox-checked {
	display: inline-block;
}

li[data-done="false"] {
	text-decoration: none;
}
/* PROSEMIRROR END */

.schmil-blick-edit {
	border: 1px solid yellow;
}


/* POPPER */
.tooltip {
	/*background: #333;*/
	/*color: white;*/
	/*font-weight: bold;*/
	padding: 4px 8px;
	font-size: 13px;
	border-radius: 4px;
	display: none;
	max-width: 50%;
}

.tooltip[data-show] {
	display: block;
}

.arrow,
.arrow::before {
	position: absolute;
	width: 8px;
	height: 8px;
	z-index: -1;
	display: none;
}

.arrow::before {
	content: '';
	transform: rotate(45deg);
	/*background: #333;*/
	display: none;
}

.tooltip[data-popper-placement^='top'] > .arrow {
	bottom: -4px;
}

.tooltip[data-popper-placement^='bottom'] > .arrow {
	top: -4px;
}

.tooltip[data-popper-placement^='left'] > .arrow {
	right: -4px;
}

.tooltip[data-popper-placement^='right'] > .arrow {
	left: -4px;
}

.tooltip-help {
	float: right;
	margin-right: 20px;
	margin-top: -40px;
	border-radius: 50px;
	background-color: green;
	color: white;
	font-weight: bold;
	border: none;
}

/* Prosemirror simple help*/
div.simple.help {
	background-color: lightyellow;
}

.notification.is-success.is-light {
	background-color: #effaf3;
	color: #257942;
	border: 1px solid #257942;
}

/* ANIMATION */

div.animatedHelp {
	animation: createBox 0.5s;
	/*transform-origin: 100% 0%;*/
}

@keyframes createBox {
	0%   { opacity: 0; }
	100% { opacity: 1; }
}
