/*   Y O U R   C S S   S T Y L E S

** Add your CSS styles here
** Style all markdown content elements properly
** Use the markdown test file to check it: https://github.com/typemill/typemill/blob/master/content/00-Welcome/03-Markdown-Test.md
** You can activate and use the Tachyons CSS library: https://typemill.net/theme-developers/helper-functions#activate-tachyons

*/

a.link, a.link:active, a.link:focus, a.link:hover, a.link:link, a.link:visited, li:hover {
	/* transition: all .15s ease-in; */
	transition: background-color 150ms ease, color 150ms ease;	
}

.minw1  {  min-width: 1rem; }
.minw2  {  min-width: 2rem; }
.minw3  {  min-width: 4rem; }
.minw4  {  min-width: 8rem; }
.minw5  {  min-width: 16rem; }
.minw6  {  min-width: 32rem; }
.minw7  {  min-width: 48rem; }
.minw8  {  min-width: 64rem; }
.minw9  {  min-width: 96rem; }

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.icon {
    top: 0.125em;
    position: relative;
}
.fx{
	font-size: 5em;
}
.custom-blue{
	color: #ABD1C9;
}
.bg-custom-blue{
	background-color: #ABD1C9;
}
.hover-bg-custom-blue:hover{
	background-color: #ABD1C9;
}
footer ul{
	padding: 0;
}
footer li{
	padding: 0;
	margin-left: 15px;
}
.awesomplete{
	width: 100%;
	margin: auto;
}
.awesomplete > ul{
	text-align: left;
	padding: 0.5em;
}
.awesomplete > ul > li{
	padding: .8em .8em;
}

/*********************
*  Content Elements  *
*********************/

footer a, footer a:link, footer a:visited,
article a, article a:link, article a:visited{
	text-decoration: none;
	color: #7FA59D;
}
footer a:active, footer a:focus, footer a:hover,
article a:active, article a:focus, article a:hover{
	text-decoration: underline;
}
article .list a:active, article .list a:focus, article .list a:hover{
	text-decoration: none;
}
article ul, article p, article blockquote, article pre, article table, article dl, article img{
	margin: 1.7em 0;
}
article ul, article ol{
	padding-left: 15px;
}
article ul li{
	list-style: none;
}
article ul li::before {
/*	content: "•"; */ 
	color: #000;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
	float:left;
}
pre,code{ 
	background-color: #333;
	color: #fff;
}
code{
	display: inline-block;
	padding: 0 0.5em;
	font-size: 0.8em; 
	line-height: 1.4em;	
	border-radius: 3px;	
	word-break: break-all;
}
pre{
	white-space: pre;
	padding: 16px;
	display: block;	
	max-width: 100%;
	overflow-x: auto;
	box-sizing: border-box;
}
pre > code{
	font-size: 0.8em;
}
code.hljs{ background: transparent; }
blockquote{
	position: relative;
	font-family: times new roman,serif;
	font-size: 1.8em;
	font-style: italic;
	z-index: 2;
}
blockquote:before {
	content: '\201C';
	position: absolute;
	top: -0.25em;
	left: -0.25em;
	color: #f4f4f4;
	font-size: 4em;
	z-index: -1;
	font-family: times new roman,serif;
	line-height: 1em;
}
table{
	width: 100%;
	border-collapse: collapse;
}
thead{
	border-bottom: 1px solid #f4f4f4;
	border-top: 1px solid #f4f4f4;
	background: #f4f4f4;
	font-weight: 700;
	text-align: left;
}
tbody{}
tr{}
tr:nth-child(odd){ }
tr:nth-child(even){ 
	background-color: #f4f4f4;
}
td,th{ padding: 5px;}
dl{
	border-top: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	padding: 0.5em 0;
	box-sizing: border-box;
}
dt,dd{
	width: 100%;
	margin: 0;
	padding: 3px 5px;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
}
dt{
	font-weight: 700;
}
dt::after{
	content: ":";
}
dd{
	width: 80%
}

/************************
*  	TABLE OF CONTENTS 	*
************************/

ul.TOC,.TOC ul{
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.TOC li:before{
	content: "\2192";
	margin-left: -7px;
	margin-right: 7px;
}
.TOC li.h1:before{
	content: "";
}
ul.TOC{
	background: #f4f4f4;
	width: 100%;
	padding: 20px;
	box-sizing:border-box;
}
li.h1{
	font-weight: 700;
	height: auto;
}
li.h2, li.h3, li.h4, li.h5, li.h6
{
	font-weight: 400;
	padding-left: 25px;	
	height: auto;
}


@media only screen and (min-width: 30em) {
	.knowledgecover .awesomplete{
		width: 60%;
	}
}
@media only screen and (min-width: 60em) {
	dd{
		width: 80%;
	}
	dt{
		width: 19%;
		text-align: right;
	}
}