/*Woo css*/

/*@import 'https://fonts.googleapis.com/css?family=Roboto+Mono:400,500';*/

 @import '../font/robotoMono/robotomono.css';


@font-face {
  font-family: 'Graphik';
  src:  url('../font/graphik/Graphik-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Graphik';
  src:  url('../font/graphik/Graphik-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Graphik';
  src:  url('../font/graphik/Graphik-Semibold.otf') format('opentype');
  font-weight: 600;
}

*{
	box-sizing: border-box;
}

body{
	font-family: 'Graphik', sans-serif;
	background-color: white;
	/*color: rgba(35, 44, 47, 0.9);*/
	color: rgba(27, 27, 27, 1);
	margin: 0px;
	font-size: 16px;
	line-height: 1.7;
}

/* Base */
p, h1, h2, h3, h4, h5, img, table, hr{
	margin-left: 1rem;
	margin-right: 1rem;
}

p{
	font-size: 18px;
}

a{
	color: inherit;
}

a:hover{
	color: #0078E0;
}

hr{
	border: none;
	height: 1px;
	width: auto;
	background-color: rgba(33,40,43,0.2);
	margin-top: 0px;
	margin-bottom: 0px;
}

h1{
	color: #0078E0;
	font-weight: 500;
	font-size: 40px;
}

h2{
	font-size: 19px;
	font-weight: bold;
	color: #0078E0;
}

h3{
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.wide.quote{
	border-left: 1px solid rgba(33,40,43,0.2);
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.wide.quote blockquote{
	border-left: none;
	font-size: 18px;
	font-family: 'Graphik', sans-serif;
	margin-top: 1rem;
	margin-bottom: 1rem;
}


blockquote{
	font-family: 'Roboto Mono', monospace;
	border-left: 1px solid rgba(33,40,43,0.2);

	font-size: 19px;
	margin-left: 0rem;
	padding-left: 1rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

blockquote.alt{
	font-family: 'Graphik', sans-serif;
	font-weight: 500;
	border-left: 1px solid rgba(33,40,43,0.2);
	font-size: 25px;
	margin-left: 0rem;
	padding-left: 1rem;
	margin-top: 3rem;
	margin-bottom: 3rem;
}

blockquote.big{
	font-size: 30px;
}

blockquote span{
	display: inline-block;
    float: left;
    font-family: 'Graphik', sans-serif;
    font-size: 18px;
    margin-right: 50%;
    padding-left: 5px;
    font-style: italic;
    color: rgba(0,0,0,0.4);
}


ul{
	padding-left: 2rem;
}

li{
	font-size: 19px;
}

ol{
	font-family: 'Roboto Mono', monospace;
	margin: 1rem;
}

pre{
	padding: 1rem;
	margin: 1rem;
	background-color: #404d58;
	color: white;
	font-family: 'Roboto Mono', monospace;
	font-size: 16px;
	border-radius: 5px;
}

section, header{
	width: 100%;
	padding: 1rem;
	padding-bottom: 2rem;
	padding-top: 2rem;
	position: relative;

	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

section > img{
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: block;
	max-width: 100%;
}

section.wide-flex{
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
}

.interviewee{
	padding: 1rem;
	/*border: 1px solid rgba(0,0,0,0.2);*/
	background-color: rgba(0,0,0,0.05);
	border-radius: 3px;
	width: calc(50% - 2rem);
	margin: 1rem;
	float: left;
	text-decoration: none;
}

.interviewee h2{
	width: auto;
	border-bottom: 2px solid;
	font-size: 25px;
	font-weight: 400;
}

.interviewee h2 i{
    font-size: 30px;
    position: relative;
    top: 5px;
    transform: translateX(-30px);
    transition: ease all 0.2s;
    opacity: 0;
}

.interviewee:hover h2 i{
	transform: translateX(0px);
	opacity: 1;
}

.interviewee:hover{
	color: inherit;
}

.interviewee p{
	font-size: 25px !important;
	font-style: normal !important;
	opacity: 1 !important;
	margin-top: 0px;
}

.interviewee span{
	margin: 1rem;
	font-size: 16px;
	font-family: 'Roboto Mono', monospace;
	color: rgba(33,40,43,0.5);

}

.interviewee ul{
	padding-left: 1rem;
	color: rgba(33,40,43,0.2);
}

.interviewee ul li{
	font-size: 16px;
	margin-bottom: 1rem;
	color: rgba(33,40,43,0.8);
}

.interviewee a{
	font-size: 16px;
	padding: 1rem;
	margin: 1rem;
	border: 1px solid rgba(33,40,43,0.2);
}

.survey-table{
	text-align: left;
}

.survey-table th{
	vertical-align: bottom;
}

.survey-summary{
	max-width: 1200px;
}

.survey-summary > div{
	width: 100%;
	overflow: hidden;
	display: flex;
	margin-bottom: 1rem;
}

.survey-summary .m-800{
	display: block;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
	padding: 1rem;
}


.survey-summary div .l{
	width: 400px;
}

.survey-summary div .r{
	width: calc(100% - 400px);
	position: relative;
	max-height: 300px;
	transition: ease all 1s;
}

.survey-summary div .r.active{
	max-height: 800px;
}

.survey-summary div .r.active:after{
	max-height: 1000px;
	content: 'Hide';
}

.survey-summary div .r:before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
	background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));;
}

.survey-summary div .r:after{
	content: 'Show';
    position: absolute;
    bottom: 0px;
    left: calc(50% - 30px);
    width: 60px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    border-radius: 2px;
    text-align: center;
    padding: 3px;
    border: 1px solid #0078e0;
    color: #0078e0;
    background-color: white;
    cursor: pointer;
}

.survey-summary div .r:hover:after{
    color: white;
    background-color: #0078e0;
}


.survey-summary blockquote{
	background-color: rgba(0,0,0,0.05);
	font-size: 16px;
	font-family: 'Graphik', sans-serif;
	color: rgba(33,40,43,0.8);
	padding: 1rem;
	margin: 1rem;
	border: none;
}


div.wide{
	max-width: 150%;
    margin-left: -25%;
    margin-right: -25%;
}

.wide img{
	max-width: 100%;
}

.wide p{
	font-size: 16px;
	font-style: italic;
	opacity: 0.5;
	margin-top: 0px;
}

div.wide{
	max-width: 150%;
    margin-left: -25%;
    margin-right: -25%;
}

.wide img{
	max-width: 100%;
}

.wide p{
	font-size: 16px;
	font-style: italic;
	opacity: 0.5;
	margin-top: 0px;
}

div.full-width{
	max-width: 100%;
}

div.full-width img{
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

section iframe{
	padding: 1rem;
}

aside{
	position: absolute;
	width: 200px;
	text-align: right;
	left: -200px;
	top: auto;
	/*margin-top: -1rem;*/

	/*border-top: 1px solid rgba(35, 44, 47, 0.9);*/
}

aside h2, aside h3{
	font-weight: bold;
	margin-top: 0px; 
	color: rgba(27, 27, 27, 1);
}

aside:first-child h2, aside:first-child h3{
	margin-top: 1rem; /* No idea why I need this */
}

aside p{
	font-size: 16px;
	font-style: italic;
}


aside.ref{
	left: auto;
	right: -260px;
	text-align: left;
	width: 260px;
	opacity: 0.5;
	transition: ease opacity 0.3s;
}

aside.ref.left{
	left: -260px;
	right: auto;
}

aside.ref:hover{
	opacity: 1;
}

aside.ref h3{
	font-size: 14px;
	margin-left: 0px;
	margin-right: 0px;
	border-top: 1px solid rgba(35, 44, 47, 0.9);
}

aside.ref p{
	font-size: 14px;
	font-style: normal;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
}

aside.ref .hidden{
	overflow: hidden;
	max-height: 0px;
	transition: ease all 0.4s;
}

.hidden.active {
    max-height: 200px !important;
}

aside.ref a{
	text-decoration: none;
}

aside.ref span{
	font-size: 13px;
	cursor: pointer;
	margin-bottom: 2rem;
	display: inline-block;
}

aside.ref span:hover{
color: #0078E0;
}

aside.ref span i{
	position: relative;
	top: 7px;
	left: -5px;
}

summary{
	font-size: 14px;
	cursor: pointer;
}

.wide{
	max-width: 1000px;
}

.wide-1320{
	max-width: 1320px;
}


.logo, .code, h1, h3{
	font-family: 'Roboto Mono', monospace;
}

.logo{
	margin: 1rem;
	font-weight: 400;
}

#logo{
	font-size: 30px;
	margin-left: 1rem;
}

.pill{
	padding: 8px;
	border: 1px solid rgb(33,40,43);
	border-radius: 5px;
	margin: 1rem;
	font-size: 12px;
	opacity: 0.2;
}

.bar{
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(33,40,43,0.1);
}

.bar > a{
	text-decoration: none;
	color: inherit;
}

.bar .right{
	margin-left: auto;
	display: flex;
    align-items: center;
    margin-right: 49px;
}

.bar .right a{
	margin-right: 1rem;
	text-decoration: none;
	border-bottom: 1px solid rgba(33,40,43,0.1);
	color: rgba(33,40,43,0.8);
}

header{
	margin-top: 200px;
	margin-bottom: 200px;
}

#board{
	position: absolute;
	right: 1rem;
	top: calc(50% - 106px);
}

.hero{
	margin-top: auto;
	margin-bottom: auto;
	width: 50%;
}


.inline{
	display: inline-block;
	padding: 5px;
	padding-top: 2px;
	background-color: rgba(33,40,43,0.2);
	border-radius: 5px;
}

h3{
	font-weight: 500;
	font-size: 20px;
}

.module-wrap{
	display: flex;
	flex-wrap: wrap;
	margin-left: -1rem;
	margin-right: -1rem;
}

.module{
	display: flex;
	flex-direction: column;
	float: left;
	border: 2px solid rgba(33,40,43,0.2);
	border-radius: 5px;
	width: calc(20% - 2rem);
	margin: 1rem;
	text-align: center;
	padding: 1rem;
	cursor: pointer;
}

.module p{
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0.5rem;
}

.module img{
	width: 100%;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.module .footer{
	width: calc(100% + 2rem);
	background-color: rgba(33,40,43,0.2);
	margin-top: auto;
	margin-left: -1rem;
	margin-right: -1rem;
	margin-bottom: -1rem;
	padding: 0.5rem;
}

.module:hover{
	border: 2px solid rgba(33, 40, 43, 0.8);
}

.module:hover .footer{
	background-color: rgba(33, 40, 43, 0.8);
}


.module.selected{
	border: 2px solid #0078E0;
}

.module.selected .footer{
	background-color: #0078E0;
}


.module.big{
	width: 250px;
	margin-left: 0;
}

.module.big img{
	width: auto;
}

#chip-blurb{
	max-width: 520px;
	float: left;
	margin-top: 75px;
}

.blurb{
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;

	margin-bottom: 100px;

	font-size: 19px;

	background-color: white;
	padding: 50px;

	/*border: 2px solid rgba(33,40,43,0.2);
	border-radius: 5px;*/

}

.blurb p, .blurb li{
	font-size: 19px;
	line-height: 1.5;
}

.g-50{
	width: 50%;
	display: block;
	float: left;
}

.g-33{
	width: 33.33%;
	display: block;
	float: left;
}

.g-100{
	width: 100%;
	display: block;
	float: left;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.br-r{
	border-right: 1px solid rgba(33,40,43,0.2);
}

.br{
	border: 1px solid rgba(33,40,43,0.2);
	border-radius: 5px;
}

.pd{
	padding: 1rem;
}

table{
	border-collapse: collapse;
}

td{
	border: 1px solid rgb(77, 83, 85);
	padding: 0.5rem;
	font-size: 16px;
}

/*DIAGRAMS*/

.diagram{
	width: 100%;
	overflow: hidden;
}
 
.diagram-modules div{
	width: calc(20% - 2rem);
	height: 150px;
	font-family: 'Roboto Mono', monospace;
	font-size: 14px;
	padding: 1rem;
	margin: 1rem;
	float: left;
	background-color: rgba(33,40,43,0.1);
}

.diagram-modules .dotted{
	background-color: white;
	border: 2px dotted rgba(33,40,43,0.1);
}

.diagram-module{
	width: calc(40% - 2rem);
	height: 350px;
	font-family: 'Roboto Mono', monospace;
	font-size: 16px;
	padding: 1rem;
	margin: 1rem;
	float: left;
	clear: right;
	background-color: rgba(33,40,43,0.1);
}

.diagram-module p{
	font-size: 16px;
	margin: 0px;
}


/*Sidebar*/


#sidebar{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	background-color: rgba(0, 120, 224, 1);
	z-index: 1;
	color: rgba(0,0,0,0.65);
	overflow-y: auto;
	opacity: 0;
	transform: translateY(100%);
	transition: ease all 0.3s;
}

#sidebar.active{
	opacity: 1;
	width: 100%;
	transform: translateY(0%);
	/*display: block;*/
	/*transform: rotateZ(180deg);*/
}

#sidebar .contents{
	max-width: 1200px;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;
	padding-bottom: 100px;
}

#sidebar .contents .g-50{
	padding: 14px;
}

#sidebar .close{
	position: absolute;
	   top: 19px;
    right: 13px;
    font-size: 30px;
	cursor: pointer;
}

#sidebar .close:hover{
	transform: scale(1.5);
}

#sidebar h1, #sidebar h2, #sidebar h3{
	color: rgba(0,0,0,0.80);
}


#sidebar h1{
	font-family: 'Graphik', sans-serif;
	font-size: 60px;
}

#sidebar h2{
	font-family: 'Roboto Mono', monospace;
	font-size: 18px;
	font-weight: 400;
	line-height: 60px;
	margin-top: 30px;
	margin-bottom: 0px;
}

#sidebar hr{
	height: 2px;
	background-color: rgba(0,0,0,0.8);
}

#sidebar a{
	text-decoration: none;
	margin-top: 30px;
	margin-bottom: 30px;
	display: block;
}

#sidebar a:hover{
	text-decoration: underline;
	color: inherit;
}

#sidebar h3{
	font-size: 18px;
	font-family: 'Graphik', sans-serif;
	font-weight: 600;
	margin-bottom: 0px;
	margin-top: 0px;
}

#sidebar a p{
	margin-top: 0px;
	margin-bottom: 0px;
}

#sidebar .content-wrapper{
	overflow: hidden;
}

#sidebar #free-pages{
	text-align: right;
	margin-top: 50px;
}

#sidebar #free-pages a{
	display: initial;
	margin: 0px;
	color: rgba(0, 0, 0, 0.65);
}

@media all and (max-width: 750px) {
	#sidebar .contents .g-50{
		width: 100%;
	}
}









.open{
	margin: 1rem;
	cursor: pointer;
	position: fixed;
   	top: 7px;
    right: 7px;
    z-index: 1;
}

.open:hover{
	color: #0078E0;
}

.marketing{
	color: #333333;
}


.marketing section, .marketing header{
	max-width: 1200px;
	overflow: hidden;
}

.marketing section{
	display: flex;
}

.marketing header h1{
	color: #37A4FF;
	font-size: 60px;
}

.marketing header h2{
	font-size: 25px;
	font-weight: 400;
	color: #333;
}

.marketing h4{
	color: #A8A8A8;
	font-size: 16px;
	font-family: 'Roboto Mono', monospace;
}

.marketing h3{
	color: #4BADFF;
	font-size: 25px;
	font-family: 'Roboto Mono', monospace;
	margin-top: 40px;
	margin-bottom: 0px;
}

.marketing h2{
	font-size: 25px;
	font-family: 'Graphik', sans-serif;
	color: #333;
	font-weight: 500;
}

.marketing p{
	color: #333333;
}

.marketing .fl{
	display: flex;
}

.marketing .db{
	display: block;
}

.marketing .g-50 img{
	margin: auto;
	display: block;
}

/* END */
footer{
	background-color: #efefef;
	overflow: hidden;
	text-align: right;
	padding: 20px;
}

footer a{
	padding: 10px;
	background-color: #0078e0;
	color: white;
	border-radius: 3px;
	margin: 10px;
	font-size: 18px;
	text-decoration: none;
	float: right;
}

footer a:first-child{
	float: left;
	background-color: rgba(0,0,0,0);
	border: 2px solid rgba(0,0,0,0.2);
	color: rgba(0,0,0,0.2);
}

footer a:hover{
	background-color: white;
	color: #0078e0;
}

footer a i{
	vertical-align: middle;
}

footer hr{
	background-color: white;
}


.overview h3{
	margin-bottom: 0px;
}

.overview p{
	margin-top: 2px;
	margin-bottom: 2px;
}

.overview ul{
	margin-top: 0px;
	margin-bottom: 0px;
}

.lit-wide{
	max-width: calc(100% - 400px);
}

.lit-wide .g-50 p{
    overflow-wrap: break-word;
}

.fix-pls:after {
  content: "";
  display: table;
  clear: both;
}


@media all and (max-width: 1145px) {
	aside{
		position: static;
		width: auto;
		text-align: left;
		top: auto;
	}

	aside.ref{
		width: auto;
		margin: 1rem;
	}

	aside.ref h3, aside.ref p{
		display: inline;
	}
}


