/*<meta />*/

:root
{
	font-size: 18px;
	--content-margin: 43%;
}

body
{
	margin: 0;
	font-family: 'Open Sans', "Lato", Arial;
}

.mermaid
{
	height: 100%;
	position: fixed;
	z-index: 1;
	top: 10%;
	left: 25px;
	margin-left: 20%;
	overflow-x: hidden;
	display: flex;
	align-items: center;
	max-width: var(--content-margin);
	width: var(--content-margin);
}

/* Style the content */

.content
{
	margin-left: var(--content-margin);
	padding-left: 50px;
	margin-right: 5%;
	padding-right: 50px;
}

p
{
	font-size: 1rem;
	margin-bottom: 1rem;
}

h2
{
	font-size: 1.5rem;
}

h1
{
	font-size: 3rem;
}

a
{
	color: #005aaa;
	text-decoration: none;
}

a::visited
{
	text-decoration: none;
}

li
{
	font-size: 1rem;
	margin-bottom: 0.2rem;
}

.node_link
{
	text-decoration: none;
	color: white;
}

.node_link::visited
{
	text-decoration: none;
}

.titleStep
{
	background-color: none;
	margin-top: 0px;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
}

.simpleStep
{
	margin-top: 50px;
	background-color: #12122d33;
	padding: 20px;
	border-radius: 10px;
}

.decisionStep
{
	background-color: #005aaa1A;
	margin-top: 50px;
	padding: 20px;
	border-radius: 10px;
}

.resultStep h2
{
	font-weight: normal;
}

.nextStepLink
{
	font-style: italic;
	margin-top: 1.5rem;
	text-align: center;
}

ul.resources
{
	list-style-type: none;
	padding-left: 0px;
}

ul.resources li
{
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

ul
{
	margin-top: 1.5rem;
}

.tutorialResource
{
	content: url('tutorials.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.documentationResource
{
	content: url('documentation.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.videoResource
{
	content: url('video.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.socResource
{
	content: url('soc.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.externalResource
{
	content: url('articles.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.publicationResource
{
	content: url('articles.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

.genericResource
{
	content: url('generic.svg');
	display: inline-block;
	padding: 5px;
	margin: auto;
	height: 3rem;
}

div.resource_row	/*This is a custom responsive layout row style (div class) in your stylesheet. To provide your own description for this style: (1) Open the stylesheet; (2) Find and select the div class with this name; and (3) In the Comment field, replace this text with your own. For more information on adding comments to styles, see the online Help.*/
{
	mc-grid-row: true;
	font-size: 1rem;
	margin: 0.5rem auto;
}

div.resource_row::before
{
	content: ' ';
	display: table;
}

div.resource_row::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.resource_row > div
{
	float: left;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

div.resource_row > div:nth-child(1)
{
	width: 10%;
	margin-left: 0%;
}

div.resource_row > div:nth-child(2)
{
	width: 90%;
	padding-top: 5px;
	padding-left: 5px;
}

@media only screen and (max-width: 1279px)
{
	.mermaid
	{
		height: 100%;
		position: fixed;
		z-index: 1;
		top: 15%;
		left: 25px;
		margin-left: 2%;
		overflow-x: hidden;
		display: flex;
		align-items: center;
		max-width: var(--content-margin);
		width: var(--content-margin);
	}

	div.resource_row > div:nth-child(1)
	{
		width: 15%;
		margin-left: 0%;
	}

	div.resource_row > div:nth-child(2)
	{
		width: 85%;
		padding-top: 5px;
		padding-left: 5px;
	}
}

