body {
	margin: 20px;
	font-family: Go;
}

/* This is needed to make anchor visible... Can be cleaned up. */
.markdown-header-anchor {
	margin-left: -30px;
	padding-left: 30px;
}
.black-link a, .black-link a:focus, .black-link a:hover {
	color: rgb(35, 35, 35);
}

div.subtle-border-bottom {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 8px;
}

div.reactable-container {
	display: inline-block;
	vertical-align: top;
}
.reaction-bar-appear:hover div.new-reaction {
	display: inline-block;
}
/* Make new-reaction button visible if there are no other reactions. */
div.reactable-container a:first-child div.new-reaction {
	display: inline-block;
}

span.emoji-inner {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background: url(/emojis/emojis.png);
	background-size: 4100% !important;
	vertical-align: middle;
}
span.emoji-outer {
	display: inline-block;
	height: 1em;
	width: 1em;
	font-size: 22px;
	margin-right: 4px;
}
.reaction strong {
	font-family: inherit;
	font-size: 14px;
}

div.reaction {
	cursor: pointer;
	display: inline-block;
	box-sizing: border-box;
	padding: 3px 5px;
	height: 30px;
	line-height: 0; /* TODO: Clean up. This just needs to be some low value to fix vertical middle alignment; likely can be simplified. */
	background-color: #f6fafd;
	color: #8ec0e6;
	border: 1px solid #92def9;
	border-radius: 4px;
}
a.reaction {
	display: inline-block;
	margin-right: 6px;
	margin-top: 4px;
}

div.others {
	background-color: #fff;
	color: #aaa;
	border: 1px solid #e0e0e0;
}
div.others:hover {
	border: 1px solid #92def9;
}

div.new-reaction {
	cursor: pointer;
	display: none;
	box-sizing: border-box;
	padding: 5px 4px;
	height: 30px;
	color: #aaa;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	margin-top: 4px;
	vertical-align: top;
}
div.new-reaction .smiley {
	width: 18px;
	height: 18px;
}
div.new-reaction .plus {
	top: -4px;
	width: 6px;
	position: relative;
}
div.new-reaction:hover {
	color: #eda000;
	border: 1px solid #92def9;
}

span.rm-emoji {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(/emojis/emojis.png);
	background-size: 4100%;
}
span.rm-large {
	width: 44px;
	height: 44px;
}

div.rm-reaction {
	display: inline-block;
	padding: 4px;
	border-radius: 4px;
	cursor: pointer;
}
div.rm-reaction:hover {
	background-color: #92def9;
}

div#rm-reactions-menu {
	position: absolute;
	z-index: 1000;

	background-color: white;
	border: 1px solid lightgray;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .12);
	border-radius: 6px;
	padding: 8px;
	width: 270px;
	box-sizing: content-box;
}
input.rm-reactions-filter {
	width: 100%;
	height: 30px;
	font-family: inherit;
	font-size: 14px;
	padding: 4px 16px;
	outline: 0;
	border: 1px solid #ccc;
	border-radius: 15px;
	margin-bottom: 8px;
	box-sizing: border-box;
}
div.rm-reactions-results {
	overflow-y: scroll;
	height: 300px;
	line-height: 0; /* TODO: Clean up. This is currently fixing a problem where div.rm-reaction height is 3px extra (30x33 instead of the intended square 30x30). */
}
div.rm-reactions-preview {
	height: 44px;
	margin-top: 10px;
	/*background-color: #eeeeee;*/
}
span#rm-reactions-preview-emoji {
}
span#rm-reactions-preview-label {
	margin-left: 10px;
	vertical-align: top;
	font-family: inherit;
	font-size: 14px;
	font-weight: bold;
}

div.rm-reactions-menu-container {
	position: relative;
}
div.rm-reactions-menu-disabled {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.75);
}
div.rm-reactions-menu-signin {
	font-family: inherit;
	margin-top: 185px;
	margin-left: auto;
	margin-right: auto;
	display: table;
	background-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 50px 10px rgba(255, 255, 255, 1.0);
}

@media (prefers-color-scheme: dark) {
	body {
		color: hsl(0, 0%, 90%);
		background-color: rgb(30, 30, 30);
	}
	div.subtle-border-bottom {
		border-bottom-color: hsl(0, 0%, 25%);
	}
}
