*[data-visible="false"], *[data-active="false"] {
	display: none !important;
	opacity: 0 !important;
}
  
html, body {
	background: black;
	font-display: swap;
	font-family: 'Urbanist', sans-serif;
	color: white;
	font-size: 11pt;
	margin: 0px;
	background-attachment: scroll;
	background-repeat: repeat-y;
	width: 100%;
	min-height: 100%;
	font-weight: 400;
	height: 100%;
	overflow-y: scroll;
}
  
html {
	/* background-image: url('/images/background.jpg'); */
	box-sizing: border-box;
	height: 100vh;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
}
  
body {
	height: 100vh;
	margin: 0;
	padding: 0;
	min-height: 100%;
}
  
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
}

input {
	font-family: sans-serif;
}

video::cue {
	font-family: 'Urbanist', sans-serif;
	background-color: rgba(0,0,0,0.5);
	color: white;
	font-weight: 200;
}

.homelink{
	color:white;
}

.smallerText{
	font-size: 0.9em;
}
  
.heavy{
	font-weight: 800;
}

main{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow-y: scroll;
	padding-top: 5em;
	box-sizing: border-box;
	flex-direction: column;
	position: relative;
	width: 100%;
}

main h1.pageTitle {
	position: absolute;
	top: 2.5em;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	box-sizing: border-box;
	padding: 1em;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	background: black;
	border-bottom: 1px solid rgb(255, 255, 255, 0.15);
	z-index: 50000;
}

nav ul {
	margin: 0;
	padding: 0;
	display: flex;
}

nav ul li {
	list-style-type: none;
}

nav ul li:not(.homelink) {
    font-size: 0.8em;
}

nav a {
	margin-right: 2em;
	display: block;
	text-decoration: none;
	color: rgba(255,255,255,0.5);
}

nav ul li:last-of-type a{
	margin-right: 0;
}

nav a:hover {
	color: white;
}

.hstacksName {
	font-weight: 400 !important;
}

.column{
	flex-direction: column;
}

button, .buttonLikeLink, .smallerButton{
	padding: 1em;
	background: black;
	color: white;
	border: 1px solid white;
	cursor: pointer;
	display: flex;
	font-size: 1em;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.8em;
	font-family: 'Urbanist', sans-serif;
	text-align: center;
	justify-content: center;
	max-width: 200px;
	align-self: center;
}

button:hover, .buttonLikeLink:hover{
	background-color: rgba(255,255,255,0.25);
}

.buttonLikeLink.reducedPadding{
	padding: 0.5em;
}

a.buttonLikeLink img{
	height: 1em;
}

.buttonsGrouper{
	display: flex;
	align-items: center;
	justify-items: flex-end;
	justify-content: flex-end;
}

button.copyBtn{
	padding: 0;
    border: 0 transparent solid;
    display: inline-block;
}

button.copyBtn img {
	height: 1.2em;
}

.rowGrouper{
	display: flex;
	align-items: center;
	justify-items: flex-end;
	justify-content: flex-end;
	width: 100%;
}

.buttonsGrouper a.buttonLikeLink{
	margin-left: 1em;
}

a.destructive{
	border-color: red;
	outline: transparent;
	color: red;
}

.noItems{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 4em;
}

.noItems h2{
	margin-bottom: 1em;
}

.halfFlex{
	display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
}

input[type="checkbox"]{
	appearance: none;
	background-color: black;
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1em;
	height: 1em;
	border: 1px solid currentColor;
	border-radius: 0;
	display: block;
	min-width: 1em;
	min-height: 1em;
	margin-right: 0.5em;
	cursor: pointer;
}

input[type="checkbox"]:checked{
	background-color: white;
	background-image: url('/images/check.png');
	background-position: 50%;
	background-size: 80%;
	background-repeat: no-repeat;
}

span.checkLabel{
	color: grey;
	font-size: 0.8em;
}

span.highlight{
	color: black;
    background: white;
    padding: 0.1em;
    margin-left: 0.5em;
    margin-right: 0.5em;
    padding: 0.2em 0.4em;
    font-weight: 600;
}

form {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 400px;
	text-align: left;
	margin: 1em;
	box-sizing: border-box;
}

form label{
	margin-bottom: 0.5em;
}

form input, input[type="text"], textarea{
	background-color: black;
	font-size: 1em;
	margin-bottom: 1em;
	padding: 1em 0.75em;
	border: 1px solid white;
	color: white;
	font-family: "Urbanist", sans-serif;
	outline:1px solid white;
	box-sizing: border-box;
	outline: 0;
}

form input[type="submit"]{
	font-family: 'Urbanist', sans-serif !important;
	margin-top: 2.5em;
	max-width: 250px;
	justify-self: center;
	align-self: center;
	width: 100%;
}

form input[type="submit"]:hover{
	background-color: rgba(255,255,255,0.2);
	font-weight: 600;
	cursor: pointer;
}

form select{
	width: 100%;
	padding: 1em;
	background: black;
	color: white;
	font-weight: 600;
	font-size: 1em;
	box-sizing: border-box;
	margin-bottom: 1em;
	border: 1px solid white;
	font-family: 'Urbanist', sans-serif;
}

form .rangeContainer{
	display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 2.25em;
}

form .rangeContainer input[type="range"]{
	flex: 6;
    margin-bottom: 0 !important;
    outline: 0;
    appearance: none;
    color: white;
    outline: 0;
    border: 0;
}

form input[type='range']::-webkit-slider-runnable-track{
	appearance: none;
	height: 1px;
	background-color: white;
}

form input[type='range']::-webkit-slider-thumb{
	width: 20px;
	height: 20px;
	-webkit-appearance: none;
	cursor: ew-resize;
	background: white;
	/* box-shadow: -80px 0 0 80px #43e5f7; */
	border-radius: 100%;
	margin-top: -10px;

}

form input[type="range"]::-moz-range-thumb{
	background-color: white;
	appearance: none;
	border: 0 solid transparent;
	width: 20px;
	height: 20px;
	border-radius: 100%;
}

form input[type="range"]::-moz-range-progress {
	background-color: white; 
}

input[type="range"]::-moz-range-track {  
	background-color: white;
}

form .rangeContainer span{
	word-wrap: break-word;
    flex: 1;
	text-align: center;
	font-weight: 600;
}

pre{
	text-align: left;
	border: 1px solid white;
	flex: 1;
	padding: 1em;
	box-sizing: border-box;
	max-width: 50%;
	overflow: scroll;
	font-family: monospace;
	outline: 0px solid transparent;
	line-height: 1.5em;
}

pre code{
	background-color: black;
	font-family: monospace;
}

main .danger{
	color: red;
	font-weight: 800;
}

main .monospace{
	font-family: monospace;
}

main .overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	z-index: 50;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

main .overlay.blue{
	background: linear-gradient(to right, rgb(58 207 213 / 50%) 0%, rgb(58 78 213 / 50%) 100%);
}

main .overlay.destructive{
    background-color: rgba(97, 0, 0, 0.9);
    font-weight: 400;
    background: linear-gradient(90deg, rgba(233, 30, 64, 0.7) 0%, rgba(173, 21, 46, 0.7) 100%);
}

main .overlay.destructive strong{
	text-decoration: underline;
}

main .overlay .overlayContent{
	width: 100%;
	max-width: 450px;
	background: black;
	padding: 2em;
	text-align: left;
	border: 1px solid white;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.75);
}

main .overlay.destructive .overlayContent {
	border-color: red;
}

main .overlay .overlayContent a[href]{
	color: white;
    font-weight: 800;
}

main .overlay .overlayContent .closeBtnContainer{
	position: absolute;
	top: 1em;
	right: 1em;
	cursor: pointer;
}

main .overlay .overlayContent .closeBtnContainer button{
	background: transparent;
	border: 0;
	cursor: pointer;
}

main .overlay .overlayContent .closeBtnContainer button img{
	height: 1em;
	cursor: pointer;
}

main .overlay .overlayContent form{
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	margin-top: 2em;
}

main .overlay .overlayContent form input[type="submit"]{
	border: 1px solid white;
	color: white;
	margin-top: 1em
}

main .overlay .overlayContent form input[type="submit"]:hover{
	background-color: rgba(255,255,255,0.2);
}

main .overlay.destructive .overlayContent form input[type="submit"] {
	border-color: red;
	outline: transparent;
	color: red;
}

main .overlay.destructive .overlayContent form input[type="submit"]:hover{
	background-color: rgba(255,0,0,0.2);
}

main#home{
	display: inherit;
}

main#home section{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

main#home section#hero #centralText {
	display: flex;
	flex-direction: column;
	z-index: 5;
}

main#home section#hero #centralText h1{
	font-weight: 400;
	font-size: 10em;
	margin-bottom: 0;
}

main#home section#hero #centralText p{
	font-weight: 200;
	font-size: 1.25em;
	margin: 0; 
}

main#home section#hero #centralText a[href], main#home section#getStartedCTA a[href]{
	font-size: 1em;
	color: white;
	text-decoration: none;
	padding: 0.75em 1em;
	background: transparent;
	display: block;
	border: 2px solid white;
	max-width: 200px;
	align-self: center;
	justify-self: center;
	width: 100%;
	margin: 2em;
}

main#home section#hero #centralText a[href]:hover, main#home section#getStartedCTA a[href]:hover{
	background-color: rgba(255,255,255,0.2);
	font-weight: 600;
	cursor: pointer;
}

main#home section#whatIs, main#home section#roadmap, main#home section#whoBuilt, main#home section#howMuch {
    flex-direction: column;
    color: white;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 4em;
	position: relative;
}

main#home section#whatIs h2, main#home section#whoBuilt h2, main#home section#howMuch h2{
	font-weight: 200;
	position: absolute;
	top: 2em;
}

main#home section#whatIs .sectionLayout, main#home section#whoBuilt .sectionLayout, main#home section#howMuch .sectionLayout{
	display: flex;
    justify-content: space-between;
}


main#home section#whatIs article, main#home section#whoBuilt article, main#home section#howMuch article {
	display: flex;
    flex-direction: column;
	max-width: 50%;
    text-align: left;
	justify-content: center;
}

main#home section#whoBuilt article{
	max-width: 40%;
}

main#home section#whatIs article h3, main#home section#whoBuilt article h3{
	font-weight: 200;
}

main#home section#whatIs article p, main#home section#whoBuilt article p, main#home section#howMuch article p{
	color: white;
	margin-bottom: 1em;
	line-height: 1.3em;
	font-weight: 200;
	font-size: 1.1em;
}

main#home section#howMuch article p.invert{
	color: black;
	background-color: white;
	padding: 0.5em;
    box-sizing: border-box;
    font-weight: 400;
}

main#home section#whoBuilt .sectionLayout article h6{
	font-weight: 200;
	font-size: 0.8em;
	line-height: 1.5em;
}

main#home section#whoBuilt article p a[href], main#home section#howMuch article p a[href] {
	color: white;
	font-weight: 600;
}

main#home section#whatIs .sectionLayout #stacksColorWheel, main#home section#whoBuilt .sectionLayout #mePhoto{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 33vw;
}

main#home section#whoBuilt .sectionLayout #mePhoto{
	width: 40vw;
	flex-direction: column;
}

main#home section#whoBuilt .sectionLayout #mePhoto p{
	margin: 0;
    font-size: 1.5em;
}

main#home section#whatIs #stacksColorWheel img, main#home section#whoBuilt #mePhoto img{
	height: 60vh;
}

main#home section#roadmap{
	justify-content: flex-start;
}

main#home section#roadmap h2{
	position: absolute;
	top: 2em;
	font-weight: 200;
}

main#home section#roadmap p{
	margin-top: 0;
	margin-bottom: 0.5em;
	font-weight: 200;
    font-size: 1.1em;
}

main#home section#roadmap p:first-of-type{
	margin-top: 2em;
}

main#home section#roadmap #timeline{
	width: 100%;
    align-items: center;
    display: flex;
	position: relative;
	top: 20vh;
}

main#home section#roadmap #timeline .timelineBack{
	width: 100%;
    display: flex;
    align-items: center;
}

main#home section#roadmap #timeline .timelineBack h4, main#home section#roadmap #timeline .timelineBack h5{
	margin-bottom: 0;
	padding: 1em;
	background: black;
	font-size: 1.5em;
}

main#home section#roadmap #timeline .timelineBack h4{
	transform: rotate(-90deg);
}

main#home section#roadmap #timeline .timelineBack h4.clockwise{
	transform: rotate(90deg);
}

main#home section#roadmap #timeline #timelineEvents{
	position: absolute;
	display: flex;
	flex-direction: row;
	top: 0;
	padding-left: 100px;
    padding-right: 100px;
}

main#home section#roadmap #timeline #timelineEvents .event{
	margin: 0 2em 0 2em;
	max-width: 15%;
}

main#home section#roadmap #timeline #timelineEvents .event h5{
	font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 0.25em;
}


main#home section#roadmap #timeline #timelineEvents .event h6{
	font-size: 0.8em;
    font-weight: 200;
    margin-bottom: 1em;
}

main#home section#roadmap #timeline #timelineEvents .event p{
	margin-top: 0%;
	font-weight: 200;
}

main#home section#roadmap #timeline #timelineEvents img{
	width: 70px;
}

main#home section#roadmap #timeline #line{
	width: 100%;
	height: 10px;
	background-color: white;
}

main#home section#howMuch #price{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
} 

main#home section#howMuch #price h1{
	padding: 0 0.5em;
    background: white;
    color: black;
    font-weight: 800;
    font-size: 11em;
	margin-bottom: 0;
}

main#home section#howMuch #price p{
	margin-bottom: 0;
    margin-top: 1em;
}

main#home section#getStartedCTA{
	height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4em;
    box-sizing: border-box;
}

main#home section#getStartedCTA h2{
	font-size: 3em;
    margin-bottom: 0.5em;
}

main#home #boxCanvas{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
	top:0;
}

main#account section#formContainers {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: center;
	align-items: center;
}

main#account section#formContainers[data-form="login"] form#createForm{
	display: none;
}

main#account section#formContainers #eventStatus{
	border-color: white;
	border: 1px solid;
	color: white;
	padding: 1em;
	width: 100%;
	max-width: 400px;
	font-weight: 600;
}

main#account section#formContainers #eventStatus p#reason{
	margin-bottom: 0;
}

main#account section#formContainers #eventStatus[data-event="success"]{
	border-color: #5cd551;
	border-image: linear-gradient(to right, #82d5a0 0%, #5cd551 100%) 1;
	color: #5cd551;
}

main#account section#formContainers #eventStatus[data-event="failed"]{
	border-color: #ad152e;
	border-image: linear-gradient(to right, #e91e40 0%, #ad152e 100%) 1;
	background-color: #e91e40AA;
}

main#account section#formContainers #eventStatus[data-event="success"] div[data-type="failed"]{
	display: none;
}

main#account section#formContainers #eventStatus[data-event="failed"] div[data-type="success"]{
	display: none;
}

main#account section#formContainers form#createForm{
	position: relative;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker{
	position: absolute;
    left: 100%;
    width: 300px;
    top: 50%;
    transform: translateY(-45%);
    margin-left: 2em;
    line-height: 1.3em;
    border: 1px solid white;
    padding: 0.5em;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker p{
	margin: 0;
    margin-bottom: 0.5em;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker .requirement{
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.25em;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker .requirement[data-compliant="false"]{
	color: lightgrey;
	border-color: lightgrey;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker .requirement[data-compliant="true"]{
	color: #5cd551;
	border-color: #5cd551;
}

main#account section#formContainers form#createForm #passwordRequirementsChecker .requirement span{
	font-size: 1em;
    border: 1px solid lightgray;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1em;
    border-radius: 100%;
    font-weight: 800;
	border-color: inherit;
	color: inherit;
}

main#account section#formContainers[data-form="login"] #formSwitcher a{
	cursor: pointer;
}

main#account section#formContainers[data-form="login"] #formSwitcher a:hover{
	text-decoration: underline;
}

main#account section#formContainers[data-form="login"] #formSwitcher #switchToLogin{
	display: none;
}

main#account section#formContainers[data-form="create"] form#loginForm{
	display: none;
}

main#account section#formContainers[data-form="create"] #formSwitcher #switchToCreate{
	display: none;
}

main#dashboard {
	justify-content: flex-start;
	align-items: flex-start;
	padding-left: 2em;
	padding-right: 2em;
}

main#dashboard #dashboardHeader{
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main#dashboard #dashboardHeader h2{
	margin-bottom: 0;
}

main#dashboard ul#dashboardMenu{
	width: auto;
	list-style-type: none;
	display: flex;
	padding: 0;
	margin: 0;
	font-size: 1em;
	border-bottom: 1px solid white;
}

main#dashboard ul#dashboardMenu li {
	margin-left: 1em;
	align-items: center;
	justify-content: center;
	display: flex;
}

main#dashboard ul#dashboardMenu li:first-of-type{
	margin-left: 0;
}

main#dashboard ul#dashboardMenu li[data-selected="true"] {
    color: black;
    background: white;
}

main#dashboard ul#dashboardMenu li a{
	color:grey;
	text-decoration: none;
	padding: 0.5em;
	padding-top: 0.55em;
}

main#dashboard ul#dashboardMenu li a img{
	height: 0.8em;
	margin-right: 0.5em;
}

main#dashboard ul#dashboardMenu li[data-selected="true"] a{
	color: black;
	font-weight: 600;
	border-bottom: 1px solid white;
}

main#dashboard ul#dashboardMenu li:not([data-selected="true"]) a:hover{
	/* border-bottom: 1px solid white; */
	cursor: pointer;
	font-weight: 400;
	color: white;
}

main#dashboard section.overviewContainer{
	width: 100%;
	height: 100%;
	display: flex;
	overflow-y: scroll;
	box-sizing: border-box;
	padding: 0 0 0.5em;
	padding-bottom: 0.5em;
	overflow-y: hidden;
	flex-direction: column;
}

main#dashboard section ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
	width: 100%;
	padding-bottom: 0;
	overflow-y: scroll;
	position: relative;
	height: 100%;
}

main#dashboard section ul li{
	width: 100%;
	border: 1px solid white;
	border-width: 1px 1px 1px 4px;
	padding: 1.25em;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 200;
	margin-bottom: 1.5em;
}

main#dashboard section ul li.legend{
	border: 0;
	border-bottom: 1px solid white;
	background: black;
	text-align: left;
	position: sticky;
	top: 0;
	z-index: 20;
}
main#dashboard section ul li.legend div{
	font-family: 'Urbanist' !important;
}

main#dashboard section #tools{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

main#dashboard section #tools #tableActions{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

main#dashboard section #tools #tableActions #stacksFilter{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
}

main#dashboard section #tools #tableActions #stacksFilter button#clearFilter{
	height: 1em;
    padding: 0.5em;
    margin: 0;
    width: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
	transform: translate(-300%, -62%);
    border: 0 transparent;
}

main#dashboard section #tools #tableActions #stacksFilter button#clearFilter img{
	height: 1em;
}

main#dashboard section#stacksOverview ol#legend {
	display: flex;
	flex-direction: row;
	list-style-type: none;
	padding: 0;
	font-size: 0.8em;
}

main#dashboard section#stacksOverview ol#legend li {
	width: auto;
	display: flex;
	margin-right: 1em;
	align-items: center;
	animation: none;
}

main#dashboard section#stacksOverview ol#legend li .statusIndicator {
	margin-right: 0.5em;
}

main#dashboard section #tools #tableActions input[type="text"]{
	border: 1px solid white;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	outline: transparent;
	margin-right: 1px;
	width: 100%;
	max-width: 300px;
	margin-right: 1em;
}

main#dashboard section ul li[data-status="live"]{
	border-color: #5cd551;
	border-image: linear-gradient(to right, #82d5a0 0%, #5cd551 100%) 1;
}

main#dashboard section ul li[data-status="deleted"]{
	opacity: 0.5;
	border-image: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 100%) 1;
}

main#dashboard section#stacksOverview li[data-status="deleted"] .statusIndicator{
	opacity: 0.5;
}

main#dashboard section#stacksOverview li[data-status="live"] .statusIndicator{
	background-color: #5cd551;
	background: linear-gradient(to right, #82d5a0 0%, #5cd551 100%);
}

main#dashboard section#stacksOverview li[data-status="initialising"], main#dashboard section#stacksOverview li[data-status="deploying"]{
	border-color: #3a4ed5;
	border-image: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%) 1;
	animation: fadeAnimation 2.5s infinite ease-in-out;
}

main#dashboard section#stacksOverview li[data-status="initialising"] .statusIndicator, main#dashboard section#stacksOverview li[data-status="deploying"] .statusIndicator{
	background-color: #3a4ed5;
	background: linear-gradient(to right, #3acfd5 0%, #3a4ed5 100%);
}

main#dashboard section#stacksOverview li[data-status="deleting"]{
	border-color: #f7f21b;
	border-image: linear-gradient(to right, #f7f21b 0%, #ffc207 100%) 1;
	animation: fadeAnimation 2.5s infinite ease-in-out;
}

main#dashboard section#stacksOverview li[data-status="deleting"] .statusIndicator{
	background-color: #ad152e;
	background: linear-gradient(to right, #f7f21b 0%, #ffc207 100%);
}

main#dashboard section#stacksOverview li[data-status="failed"]{
	border-color: #ad152e;
	border-image: linear-gradient(to right, #e91e40 0%, #ad152e 100%) 1;
}

main#dashboard section#stacksOverview li[data-status="failed"] .statusIndicator{
	background-color: #ad152e;
	background: linear-gradient(to right, #e91e40 0%, #ad152e 100%);
}

main#dashboard section ul li div{
	width: 100%;
	text-align: left;
	margin-right: 1em;
}

main#dashboard section#stacksOverview li .statusIndicator{
	height: 0.8em;
	width: 0.8em;
	background: white;
	border-radius: 100%;
	min-width: 0.8em;
}

main#dashboard section#keysOverview ul li .actions button, main#dashboard section#tokensOverview ul li .actions button{
	display: block;
}

main#dashboard section ul li .stackName {
    font-weight: 600;
    text-overflow: ellipsis;
    max-width: 220px;
    overflow: hidden;
}

main#dashboard section ul li .stackName a, main#dashboard section ul li .stackId a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

main#dashboard section ul li .stackName a:hover, main#dashboard section ul li .stackId a:hover{
	text-decoration: underline;
}

main#dashboard section ul li .stackName.noName a{
	color: grey;
}

main#dashboard section ul li .stackName.noName a:hover{
	color: white;
}

main#dashboard section ul li .stackId{
	font-family: monospace;
}

main#dashboard section ul li .stackCreated{
	font-family: monospace;
}

main#dashboard section ul li .actions{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}

main#dashboard section ul li .actions button{
	z-index: 1;
	background: 0;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0.5em;
	display: none;
}

main#dashboard section ul li[data-status="live"] .actions button{
	display: inherit;
}

main#dashboard section ul li .actions button img{
	width: 1.25em;
}

main#dashboard section ul li .actions[data-open="true"] button{
	z-index: 5;
}

main#dashboard section ul li .actions[data-open="false"] ol{
	display: none;
}

main#dashboard section ul li .actions ol{
	position: absolute;
	margin: 0;
	width: 200px;
	background: black;
	top: -0.75em;
	padding: 2em 0 1em 0;
	border: 1px solid white;
	right: -0.5em;
	z-index: 2;
	flex-direction: column;
	display: flex;
}

main#dashboard section ul li .actions ol li {
	font-family: 'Urbanist', sans-serif;
	padding: 0;
	margin: 0;
	width: 100%;
	border: 0;
	padding: 0.5em 1em;
	margin-bottom: 0.5em;
}

main#dashboard section ul li .actions ol li:hover {
	background-color: white;
	cursor: pointer;
}

main#dashboard section ul li .actions ol li.destructive:hover{
	background: linear-gradient(90deg, rgba(233,30,64,1) 0%, rgba(173,21,46,1) 100%);   
}

main#dashboard section ul li .actions ol li.destructive:hover a{
	color: white;;
}

main#dashboard section ul li .actions ol li a{
	text-decoration: none;
	color:white
}

main#dashboard section ul li .actions ol li:hover a{
	color: black;
	font-weight: 600;
}

main#dashboard section.overviewContainer{
	margin-top: 2em;
}

main#dashboard section.overviewContainer ul li.legend{
	font-weight: 800;
}

main#dashboard section.overviewContainer ul li div:last-of-type{
	text-align: right;
}

main#dashboard section#accountOverview ol#basicInfo{
	list-style-type: none;
	width: 100%;
	text-align: left;
	padding: 0;
	margin: 0;
	font-size: 1.2em;
	line-height: 1.3em;
}

main#dashboard section#accountOverview ol#basicInfo h4{
	margin-top: 1em;
}

main#dashboard section#accountOverview ol#basicInfo strong{
	margin-right: 1em;
}

main#dashboard section#stackCreation{
	flex-direction: row;
	padding-bottom: 2em;
}

main#dashboard section#stackCreation #codeContainer{
	display: flex;
	flex-direction: column;
	width: 50%;
	overflow: scroll;
	box-sizing: border-box;
	height: 100%;
	background-color: black !important;
	
}

main#dashboard section#stackCreation #codeContainer #codeEditor{
	height: 100%;
}

main#dashboard section#stackCreation #codeContainer h3{
	margin-bottom: 0;
	box-sizing: border-box;
	color: black;
	background: white;
	text-align: left;
	padding: 0.5em;
	font-size: 1em;
	display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

main#dashboard section#stackCreation #codeContainer h3 #errorsHighlighter{
    color: white;
    background: black;
    position: absolute;
    right: 0;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

main#dashboard section#stackCreation #codeContainer h3 #errorsHighlighter a {
	color: white;
	text-decoration: none;
	padding: 0.25em 1.5em;
    background: red;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: translate(0px, 8px); */
	/* transition: transform 0.18s ease-in-out; */
}

main#dashboard section#stackCreation #codeContainer h3 #errorsHighlighter a:hover {
	/* transform: translate(0px, 0px); */
	text-decoration: underline;
	cursor: pointer;
}

main#dashboard section#stackCreation #stackValidationResult{
	color: white;
	font-weight: 600;
}

main#dashboard section#stackCreation #stackValidationResult[data-isvalid="true"]{
	color: #5cd551;
}

main#dashboard section#stackCreation #stackValidationResult[data-isvalid="false"]{
	color: #e91e40;
}

main#dashboard section#stackCreation #stackValidationResult[data-isvalid="unknown"]{
	color: grey;
}

main#dashboard #errorOverlay ol{
	padding: 0 0 0 1em;
}

main#dashboard #errorOverlay ol li{
	padding: 0.5em;
    background: #7a0202;
    margin-bottom: 0.75em;
    font-weight: 600;
    border: 1px solid red;
}

main#dashboard section#stackCreation #stackAssistant{
	display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    margin-left: 2em;
}

main#dashboard section#stackCreation #stackAssistant #assistantHeader{
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

main#dashboard section#stackCreation #stackAssistant p{
    margin-bottom: 0;
    margin-top: 1em;
    text-align: left;
    line-height: 1.5em;
    font-size: 0.8em;
	align-self: flex-start;
	margin-right: 1em;
	color: grey;
}

main#dashboard section#stackCreation #stackAssistant h3{
	margin-bottom: 0em;
	font-size: 1.5em;
	width: 100%;
	text-align: left;
}

main#dashboard section#stackCreation #stackAssistant ul{
	padding: 0;
    margin: 0;
    list-style-type: none;
    width: 100%;
    padding-bottom: 0;
    overflow-y: scroll;
    position: relative;
    display: flex;
    margin-top: 1em;
	height: auto;
	margin-bottom: 1em;
}

main#dashboard section#stackCreation #stackAssistant ul li {
	box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 2em 0 0;
    font-size: 1.2em;
    font-weight: 400;
	width: initial;
    border: 0 transparent solid;
    border-width: initial;
    padding: 0;
	padding-bottom: 0.5em;
	border-bottom: 1px solid transparent;
}

main#dashboard section#stackCreation #stackAssistant ul li[data-selected="true"]{
	font-weight: 600;
    border-bottom: 1px solid white;
}

main#dashboard section#stackCreation #stackAssistant ul li a{
	color: white;
	text-decoration: none;
}

main#dashboard section#stackCreation #stackAssistant button{
	align-self: flex-end;
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

main#dashboard section#stackCreation #stackAssistant #helperForms{
	width: 100%;
	height: 100%;
    overflow: scroll;
	border-color: white;
	border-width: 0 0 1px 1px;
	border-left: 5px solid white;
    padding-left: 1.5em;
    box-sizing: border-box;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form{
	padding: 0;
    margin: 0;
    margin-top: 1em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form label{
    margin-bottom: 0.75em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form label span{
	font-size: 0.8em;
    margin-left: 0.5em;
    font-weight: 600;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form input{
	margin-bottom: 2.25em;
	width: 100%;
	font-family: monospace;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form textarea{
	font-family: monospace;
	margin-bottom: 2.25em;
	width: 100%;
	height: 215px;
    line-height: 1.5em;
    font-weight: 100;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form input[type="submit"]{
	margin: 0;
    outline: 0;
    width: auto;
    margin-left: 1em;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form label a.tokenOptionBtn{
	margin-left: 1em;
    /* color: black; */
	color: white;
    text-decoration: none;
    font-size: 0.75em;
    padding: 0.25em 0.75em;
    border-radius: 10px;
	border: 1px solid white;
    cursor: pointer;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form label a.tokenOptionBtn:hover{
	font-weight: 600;
	background: rgba(255,255,255,0.25);
}

main#dashboard section#stackCreation #stackAssistant .suggestionsHelper, main#dashboard section#stackCreation #stackAssistant .configurationHelper {
	display: flex;
    align-items: center;
    margin-bottom: 2.25em;
    justify-content: space-evenly;
}

main#dashboard section#stackCreation #stackAssistant #helperForms form .suggestionsHelper input, main#dashboard section#stackCreation #stackAssistant #helperForms form .configurationHelper input{
	margin-bottom: 0;
	margin-right: 1em;
}

main#dashboard section#stackCreation #stackAssistant button.moreInfo{
    padding: 0;
    border: 0;
    margin: 0;
    margin-left: 0.75em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

main#dashboard section#stackCreation #stackAssistant button.moreInfo:hover{
	background-color: transparent;
}

.helperForm label button.moreInfo img{
	height: 1.65em;
    transform: translateY(-3px);
}

.helperForm div.moreInfo{
	background: white;
    padding: 0.5em;
    font-weight: 400;
    font-size: 1.1em;
    max-height: 0px;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
	transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
	position: relative;
}

.helperForm div.moreInfo[data-active="true"]{
	max-height: 1000px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

main#dashboard section#stackCreation #stackAssistant .helperForm div.moreInfo p{
	margin-bottom: 0 !important;
	color: black;
	font-weight: 400;
}

main#dashboard section#stackCreation #stackAssistant .helperForm div.moreInfo p:first-of-type{
	margin-top: 0;
}

.helperForm div.moreInfo button.closeMoreInfoBox{
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	margin: 0 !important;
    padding: 0.1em !important;
	background: transparent;
}

.helperForm div.moreInfo button.closeMoreInfoBox:hover{
	border: 1px solid black;
}

.helperForm div.moreInfo button.closeMoreInfoBox img{
	height: 1em;
}

.suggestionsHelper ul.suggestionOptions {
	margin-bottom: 0 !important;
}

.suggestionsHelper ul.suggestionOptions li{
	background: black;
    padding: 0.5em !important;
    margin: 0 !important;
    border: 1px solid grey !important;
	font-weight: 200;
	border-right: 0 solid transparent !important;
}

.suggestionsHelper ul.suggestionOptions li a{
	color: grey !important;
	font-family: monospace;
	font-size: 0.8em;
}

.suggestionsHelper ul.suggestionOptions li[data-selected="true"]{
	background: white;
	font-weight: 600;
	border-color: white;
}

.suggestionsHelper ul.suggestionOptions li[data-selected="true"] a{
	color: black !important;
}

.suggestionsHelper ul.suggestionOptions li:last-of-type{
	border-right: 1px solid grey !important;
}

.suggestionsHelper .keyValuePairContainer{
	display: flex;
    width: 100%;
    align-items: center;
    font-weight: 800;
}

.suggestionsHelper .keyValuePairContainer input{
	margin-right: 0;
}

.suggestionsHelper .keyValuePairContainer input:first-of-type{
	margin-right: 0.5em !important;
}

.suggestionsHelper .keyValuePairContainer input:last-of-type{
	margin-left: 0.5em !important;
}

.suggestionsHelper .keyValuePairContainer a.buttonLikeLink{
	text-wrap: nowrap;
}

.suggestionsHelper .labelsContainer, .suggestionsHelper .envvarsContainer{
	flex-wrap: wrap;
}

.suggestionsHelper .labelsContainer li, .suggestionsHelper .envvarsContainer li{
	align-items: center;
    display: flex;
    justify-content: center;
    justify-items: center;
	background: white;
	padding: 0 !important;
	margin-right: 0.75em !important;
    margin-bottom: 0.75em !important;
}

.suggestionsHelper .labelsContainer li button, .suggestionsHelper .envvarsContainer li button{
	margin: 0 !important;
	padding: 0;
	align-self: auto !important;
	border: 0 solid transparent !important;
	background-color: transparent;
	color: black;
	padding-left: 0.5em;
}

.suggestionsHelper .labelsContainer li button img, .suggestionsHelper .envvarsContainer li button img{
	height: 0.5em;
}

.suggestionsHelper .labelsContainer li a, .suggestionsHelper .envvarsContainer li a{
	padding: 0.5em !important;
	font-size: 0.8em;
	/* border: 1px solid white !important; */
}

.suggestionsHelper .labelsContainer li a[data-key], .suggestionsHelper .envvarsContainer li a[data-key]{
	color: black !important;
}

.suggestionsHelper .labelsContainer li a[data-value], .suggestionsHelper .envvarsContainer li a[data-value]{
	background-color: black;
	color: white;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer{
	flex-direction: column;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li{
	width: 100%;
    text-align: left;
	justify-content: flex-start;
    margin: 0;
	padding: 0.5em;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li.rule{
	border: 1px solid white;
	margin-top: 0.5em;
	border-left: 5px solid white;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a{
	/* display: flex;
	flex: 1; */
	font-size: 0.8em;
	width: 100%;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a[data-direction]{
	text-transform: capitalize;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a[data-protocol]{
	text-transform: uppercase;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a:last-of-type{
	/* align-self: flex-end; */
	text-align: right;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a.actions button{
	margin: 0;
    padding: 0;
    font-size: 1em;
    border: 0;
    margin-right: 1em;
	display: block;
}

main#dashboard section#stackCreation #stackAssistant ul.rulesContainer li a img{
	height: 0.75em;
	width: auto;
}

main#dashboard section#stackCreation #stackAssistant a.suggestion, main#dashboard section#stackCreation #stackAssistant a.configure {
	font-size: 0.7em;
    border: 1px solid white;
    color: white;
    height: auto;
    margin-bottom: 0 !important;
    text-wrap: nowrap;
}

main#dashboard section#stackCreation #stackAssistant a.suggestion:hover, main#dashboard section#stackCreation #stackAssistant a.configure:hover{
	cursor: pointer;
}

main#dashboard section#stackView{
	display: flex;
    flex-direction: row;
    flex: 2;
    padding-bottom: 1em;
}

main#dashboard section#stackView #codeContainer{
	flex: 1;
	text-align: left;
	padding-bottom: 3em;
	max-width: 50%;
}

main#dashboard section#stackView #codeContainer h3{
	margin-bottom: 0;
    box-sizing: border-box;
    color: black;
    background: white;
    text-align: left;
    padding: 0.5em;
    font-size: 1em;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

main#dashboard section#stackView #codeContainer h3 button{
	padding: 0;
    background: transparent;
	opacity: 0.5;
	transition: transform 0.3s ease-in-out;
}

main#dashboard section#stackView #codeContainer h3 button:hover{
	opacity: 1.0;
	transform: scale(1.2);
}

main#dashboard section#stackView #codeContainer h3 button img{
	height: 1.2em;
}

main#dashboard section#stackView .CodeMirror-code {
	outline: 0;
	background: black;
}

main#dashboard section#stackView #codeContainer pre{
	max-width: 100%;
	background-color: rgba(255,255,255,0.075) !important;
	background: rgb(255,255,255);
	background: linear-gradient(311deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
	margin: 0;
	height: 100%;
	overflow-x: scroll;
}

main#dashboard section#stackView #stackDetails{
	flex: 1;
    text-align: left;
    box-sizing: border-box;
    padding-left: 2em;
	overflow: scroll;
}

main#dashboard section#stackView #stackDetails p{
	display: flex;
    justify-content: space-between;
    background-image: url("/images/dot_50p.png");
    background-repeat: repeat-x;
    background-position: 50%;
}

main#dashboard section#stackView #stackDetails p strong{
	background-color: black;
	padding: 0 1em 0 0;
}

main#dashboard section#stackView #stackDetails p a{
	margin-left: 1em;
	background-color: black;
	padding: 0 0 0 1em;
}

main#dashboard section#stackView #stackDetails p a.live{
	color: #5cd551;
}

main#dashboard section#stackView #stackDetails p a.initialising, main#dashboard section#stackView #stackDetails p a.deploying{
	color: #3a4ed5;
}

main#dashboard section#stackView #stackDetails p a.deleting{
	color: #f7f21b;
}

main#dashboard section#stackView #stackDetails p a.failed{
	color: #ad152e;
}

main#dashboard section#stackView #stackDetails ol{
	height: 100%;
    overflow: scroll;
    background: #222;
    padding: 0.5em;
	padding-left: 0;
    padding-right: 0;
	overflow-x: scroll;
}

main#dashboard section#stackView #stackDetails ol li{
	line-height: 1.75em;
	padding: 0 0.5em;
	/* white-space: nowrap;
	display: flex;
	align-items: center;
    justify-content: flex-start; */
}

main#dashboard section#stackView #stackDetails ol li span{
	font-weight: 800;
    color: grey;
    font-size: 0.9em;
    margin-right: 1em;
}

main#dashboard section#stackView #stackDetails ol li:nth-child(even){
	background-color: #363636;
}

main#documentation{
	flex-direction: row;
    height: 100%;
	padding-top: 3em;
	justify-content: flex-start;
}

main#documentation #docSidebar{
	height: 100%;
	padding: 1em;
    box-sizing: border-box;
    min-width: 150px;
}

main#documentation #docSidebar ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

main#documentation #docSidebar ul li{
	margin-bottom: 1em;
	text-align: left;
}

main#documentation #docSidebar ul li a{
	color: white;
	text-decoration: none;
}

main#documentation video{
	width: 640px;
}

main#documentation #documentationContent{
    text-align: left;
    overflow: scroll;
    background: black;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-right: 2em;
}

main#documentation #documentationContent article{
	padding-bottom: 2em;
    border-bottom: 5px solid white;
    margin-bottom: 5em;
}

main#documentation #documentationContent h1{
	font-size: 2em;
	padding-top: 1em;
}

main#documentation #documentationContent p.articleDescription{
	margin-bottom: 3em;
}

main#documentation #documentationContent #endpoints h2{
	display: flex;
    padding: 0.2em 0;
    align-items: center;
    justify-content: flex-start;
}

main#documentation #documentationContent #endpoints ul{
	margin-bottom: 3em;
}

main#documentation #documentationContent #endpoints ul li{
	margin-bottom: 0;
}

main#documentation #documentationContent #endpoints ul li.route{
	margin-bottom: 5em;
}

main#documentation #documentationContent #endpoints ul li p.description{
	font-size: 1.1em;
	font-style: italic;
	margin-bottom: 2em;
}

main#documentation #documentationContent #endpoints ul li pre, main#documentation #documentationContent #examples ul li pre{ 
    line-height: 1.5em;
    padding-bottom: 0;
    border: 1px solid grey;
    max-height: 50vh;
    overflow: scroll;
    border-left: 5px solid white;
    max-width: 75%;
    margin-bottom: 2em;
}

main#documentation #documentationContent #endpoints h2 span{
	font-family: monospace;
	font-size: 0.75em;
    padding: 0.25em 0.5em;
    color: black;
    background: white;
    margin-right: 1em;
}

main#documentation #documentationContent ul li{
	margin-bottom: 2em;
	list-style-type: none;
}

main#documentation #documentationContent ul li ol li {
	margin-bottom: 0.5em;
	list-style-type: decimal;
}

main#termsAndConditions{
	justify-content: flex-start;
    padding: 3em;
	padding-top: 6em;
    text-align: justify;
}

main#termsAndConditions h1{
	margin-bottom: 2em;
}

main#termsAndConditions article{
	margin-bottom: 4em;
	line-height: 1.75em;
	width: 100%;
	max-width: 600px;
}

main#termsAndConditions article h2{
	text-align: left;
	padding: 0.5em 0;
    border: 1px solid white;
    border-left: 0;
    border-right: 0;
}

main#termsAndConditions article p {
	margin-bottom: 2em;
}

main#termsAndConditions article a[href]{
	color: white;
}

footer{
	display: flex;
	justify-content: space-around;
	padding: 1em;
	box-sizing: border-box;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 200;
}

footer a {
	color: inherit;
}

.CodeMirror, .CodeMirror > * {
	font-family: monospace !important;
}

.CodeMirror{
	border: 1px solid white;
	margin-bottom: 1em;
	box-sizing: border-box;
}

span.CodeMirror-line {
	font-family: monospace !important;
}

.cm-s-material-darker.CodeMirror{
	background-color: rgba(255,255,255,0.075) !important;
	background: rgb(255,255,255);
	background: linear-gradient(311deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
	/* border: 1px solid white; */
}

.CodeMirror-gutter{
	background-color: rgba(255,255,255,0.75) !important;
}

.cm-property, .cm-atom{
	font-family: monospace !important;
}

.CodeMirror-selected {
	background-color: rgba(255,255,255,0.25) !important;
}

/*
Note to self: Nice gradient - 

background: rgb(233,30,64);
background: linear-gradient(90deg, rgba(233,30,64,1) 0%, rgba(255,255,25,1) 100%);

*/

@keyframes fadeAnimation{
	0% {opacity: 1.0;}
	50% {opacity: 0.5;}
	100% {opacity: 1.0;}
}

@media all and (max-width: 768px){

	main#home section#hero #centralText h1{
		font-size: 6em;
	}

	main#home section#whatIs{
		height: auto;
	}

	main#home section#whatIs h2{
		top: 1em;
	}

	main#home section#whatIs .sectionLayout{
		position: relative;
		margin-top: 2em;
	}

	main#home section#whatIs .sectionLayout article{
		width: 100%;
		max-width: 100%;
	}

	main#home section#whatIs .sectionLayout #stacksColorWheel{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		opacity: 0.2;
	}

	main#home section#roadmap h2{
		top: 1em;
	}

	main#home section#roadmap p{
		text-align: center;
	}

	main#home section#roadmap #timeline{
        overflow: scroll;
        min-height: 350px;
        top: 2em;
	}

	main#home section#roadmap #timeline .timelineBack{
		min-width: 1500px;
		position: absolute;
		top: 0;
	}

	main#home section#roadmap #timeline #timelineEvents{
		min-width: 1500px;
	}

	main#home section#whoBuilt{
		height: auto;
	}

	main#home section#whoBuilt h2{
		top: 1em;
	}

	main#home section#whoBuilt .sectionLayout{
		flex-direction: column-reverse;	
	}

	main#home section#whoBuilt .sectionLayout article{
		max-width: 100%;
	}

	main#home section#whoBuilt .sectionLayout #mePhoto{
		width: 100%;
		margin-top: 3em;
		margin-bottom: 1em;
	}

	main#home section#whoBuilt #mePhoto img {
		height: auto;
		width: 100%;
	}

	main#home section#howMuch{
		height: auto;
	}

	main#home section#howMuch h2{
		top: 1em;
	}

	main#home section#howMuch .sectionLayout{
		flex-direction: column-reverse;
	}

	main#home section#howMuch article{
		max-width: 100%;
	}

	main#home section#howMuch article p{
		text-align: justify;
	}

	main#home section#howMuch #price{
		font-size: 0.5em;
		margin-top: 2em;
		margin-bottom: 2em;
	}

	main#home section#howMuch #price p{
		font-size: 1.5em;
		line-height: 1.5em;
		text-align: center;
	}

	nav ul li a {
		font-size: 0.8em;
	}

	main#documentation {
		height: auto;
		flex-direction: column;
		width: 100%;
	}

	main#documentation video{
		width: 100%;
	}

	main#documentation #docSidebar {
		width: 100%;
	}

	main#documentation #docSidebar ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	main#documentation #documentationContent{
		margin: 0;
		padding: 1em;
		box-sizing: border-box;
	}

	main#documentation #documentationContent article#gettingStarted ul{
		padding: 0;
	}

	main#documentation #documentationContent #endpoints ul li pre, main#documentation #documentationContent #examples ul li pre{
		width: 100%;
		max-width: 100%;
	}

	main .overlay .overlayContent{
		margin: 1em;
	}

	main#account section#formContainers{
		padding: 2em;
		box-sizing: border-box;
	}

	main#account section#formContainers form#createForm #passwordRequirementsChecker {
		position: static;
		transform: none;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1em;
	}

	main#dashboard #dashboardHeader{
		flex-direction: column;
	}

	main#dashboard #dashboardHeader h2{
		margin-bottom: 1em;
	}

	main#dashboard section ul li.legend, main#dashboard section ul li.stackListing, main#dashboard section ul li.tokenListing, main#dashboard section ul li.keyListing{
		min-width: 800px;
	}

	main#dashboard section #tools #tableActions{
		flex-direction: column-reverse;
	}

	main#dashboard section #tools #tableActions #stacksFilter{
		width: 100%;
		margin-top: 1em;
	}

	main#dashboard section #tools #tableActions .buttonsGrouper{
		width: 100%;
	}

	main#dashboard.fitContentHeight{
		height: auto;
	}

	main#dashboard section#stackView{
		flex-direction: column-reverse;
		height: auto;
	}

	main#dashboard section#stackView #codeContainer{
		max-width: 100%;
		margin-top: 1em;
	}

	main#dashboard section#stackView #stackDetails{
		height: auto;
		padding: 0;
	}

	footer{
		flex-direction: column;
		font-size: 0.75em;
		line-height: 2em;
	}

}