.hidden {
	display: none !important;
}

html,
body {
	background: rgb(29, 29, 29);
}
body {
	width: 100%;
	height: 100%;
	font-family: Arial, Helvetica, non-serif;
	padding: 20px;
	margin: 0;
	overflow: hidden;
}
body > header {
	height: 30px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	display: flex;
	background: rgb(203, 203, 203);
	border-bottom: 1px solid rgb(153, 153, 153);
	font-size: 14px;
	z-index: 4;
	color: #222;
	align-items: center;
}
body[data-presenting="1"] > header,
body[data-presenting="1"] > #canvas {
	opacity: 0.1;
	pointer-events: none;
}
body[data-panning="1"]:not([data-hovering="1"]) > header,
body[data-panning="1"]:not([data-hovering="1"]) #blackboard-container,
body[data-panning="1"]:not([data-hovering="1"]) #inspector {
	opacity: 0.5;
	pointer-events: none;
}
body > header > span {
	flex-grow: 1;
}
header > * {
	margin: 0;
}
header h1 {
	font-size: 16px;
	color: #555;
	flex-grow: 1;
	text-align: center;
}
body > header > h1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
header h1 {
	padding-left: 10px;
	text-align: left;
}
.page-embed header h1 a {
	font-weight: normal;
	font-size: 14px;
	color: #333;
	text-decoration: none;	
}
.page-embed header h1 a:hover {
	text-decoration: underline;
}
header label {
	padding: 5px 10px 5px 5px;
}
header #zoom {
	display: none;
    font-size: 12px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    color: rgba(255,255,255,0.5);
    pointer-events: none;
    font-weight: bold;
    padding: 0;
}
header .tools {
	display: flex;
	justify-content: flex-end;
	align-self: stretch;
}
header .tools span {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
header button,
a#create {
	background-color: rgb(203, 203, 203);
	border: none;
	border-left: 1px solid rgb(153, 153, 153);
	margin: 0;
	color: #000;
}
a#create {
	flex-shrink: 0;
}
header button {
	opacity: 0.5;	
}
#share {
	padding: 0 10px;
	margin: 0;
}
header button:not(:disabled) {
	cursor: pointer;
	opacity: 1.0;
}
#library.open,
header button:not(:disabled):hover,
#blackboard[data-opened="1"] {
	background-color: #fff;
	color: #333;
}
#blackboard-container {
	border-radius: 5px;
	display: none;
	position: fixed;
    left: 10px;
    top: 40px;
    background: rgb(38,38,38);
    min-width: 300px;
	border: 1px solid #111;
	user-select: none;
	-webkit-user-select: none;		
}
#embed-container,
#preview-form,
#submission-form,
#inspector {
    background: rgb(38,38,38);
}
#inspector {
	position: fixed;
    right: 10px;
    top: 40px;
    background: rgb(38,38,38);
    min-width: 400px;
	border: 1px solid #111;
	user-select: none;
	-webkit-user-select: none;	
	transition: transform 0.25s ease-in;
	transform: translate3d(0, 0, 0);
}
#inspector.open {
	transform: translate3d(0, 0, 0);
}
#inspector.close {
	transform: translate3d(420px, 0, 0);
}
#inspector body {
	display: flex;
	flex-direction: column;
}
#blackboard-container header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#blackboard-container header span {
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
	margin-left: 10px;
}
#blackboard-container header div {
	display: flex;
	align-items: center;
}
#blackboard-container header h3 {
	flex-shrink: 0;
}
#embed-container h5,
#preview-form h5,
#submission-form h5,
#inspector h5,
#blackboard-container h5 {
	user-select: none;
	-webkit-user-select: none;	
	margin: 0;
	color: #fff;
	text-shadow: 0 0 1px rgba(0,0,0,.5);
	padding: 10px 10px;
	background: rgb(50, 50, 50);
	border-bottom: 1px solid #111;
}
#inspector h5 span,
#blackboard-container h5 span {
	display: block;
	font-size: 12px;
	font-weight: normal;
	margin-top: 10px;
	color: rgba(255,255,255,.3);
}
#submission-form h5,
#preview-form h5,
#embed-container h5 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#submission-form h5 em:hover,
#preview-form h5 em:hover,
#embed-container h5 em:hover {
	background-color: #000;
}
#inspector h5 {
	position: relative;
}
#inspector h5 em {
	position: absolute;
	right: 5px;
	top: 10px;
	opacity: 0.25;
}
#inspector h5 em:hover {
	opacity: 0.5;
}
#inspector .body,
#blackboard-container .property-list {
	overflow: auto;
	resize: vertical;
	height: 300px;
	min-height: 200px;
}
#embed-container .body {
	display: flex;
	align-items: initial;
	padding: 10px;
}
#embed-container .body input {
	flex-grow: 1;
}
#embed-container .body button {
	cursor: pointer;
}

.page-embed #blackboard-container {
	bottom: 20px;
	overflow-x: inherit;
}
.page-embed #blackboard-container h5 {
	display: none;
}
.page-embed #blackboard-container .property-list {
	min-height: 0;
	height: auto;
	resize: none;
}

#container {
	user-select: none;
	-webkit-user-select: none;	
}
#inspector .body {
	height: auto;
}
#blackboard-container h6 {
	color: rgb(91, 91, 91);
	padding: 10px;
	margin: 0;
}
#blackboard-container ul {
	padding: 0 10px;
	margin: 0;
}
#blackboard-container h3 {
	margin: 0;
	border-radius: 15px;
	background-color: rgb(72,73,73);
	display: inline-block;
	padding: 5px 15px;
	color: #fff;	
	font-weight: normal;
	font-size: 14px;
	border: 1px solid rgb(0,0,0);
}
#blackboard-container li {
	list-style: none;
	margin-bottom: 15px;
}
#blackboard-container li em.chevron {
	margin-right: 5px;
}
#inspector dl,
#blackboard-container dl {
	color: #d9d9d9;
	padding: 10px 0 0 5px;
	font-size: 12px;
	text-shadow: 0 0 1px #111;
	display: flex;
	align-items: center;
}
#inspector dl {
	padding: 10px;
}
#inspector dt,
#blackboard-container dt {
	width: 70px;
}
#inspector dd,
#blackboard-container dd {
	user-select: all;
	box-sizing: border-box;
	padding: 5px 7px;
	background-color: rgb(42,42,42);
	border: 1px solid rgba(0,0,0,.5);
	flex-grow: 1;
	border-radius: 5px;
}
#inspector dd a {
	display: block;
	color: #fff;
}
#inspector dd a:hover {
	text-decoration: none;
}
#preview-form .note p,
#submission-form .note p {
	margin: 0 0 10px;
}
#blackboard-container dd {
	display: flex;
	align-items: center;
}
#blackboard-container dd .color-container {
	display: flex;
	flex-grow: 1;
	background: #000;
	flex-direction: column;
}
#blackboard-container dd .color-container .color {
	flex-grow: 1;
	height: 10px;
}
#blackboard-container dd .color-container .opacity {
	height: 4px;
	background: #fff;
}
#inspector textarea {
	margin: -10px 10px 10px;
	box-sizing: border-box;
	display: block;
	min-height: 300px;
	width: calc(100% - 20px);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	font-size: 16px;
	resize: none;
	padding: 5px;
	flex-grow: 1;
}

#uploader {
	display: none;
/*	padding: 5px 10px 5px 5px;
	border-right: 1px solid rgb(153, 153, 153);
*/}
.node[data-hovering=true],
body[data-dragging="1"],
body[data-panning="1"] {
	cursor: move;
}
.node h5 .tools {
	display: flex;
	align-items: center;
}
.node h5 .tools .settings {
	margin-right: 10px;
}
.node h5 em {
	display: none;
	opacity: 0.25;
}
.node h5 .chevron[data-disabled='1'] {
	opacity: 0.1;
	pointer-events: none;
}
.node h5 .settings:hover,
.node h5 .chevron:not([data-disabled='1']):hover {
	opacity: 0.5;
}
.node[data-hovering=true] h5 em {
	display: block;
}
.container {
	padding: 0px;
	position: relative;
	background-color: rgb(25, 25, 25);
}
.page-embed .container {
	background-color: transparent;
}
.group {
	position: absolute;
	z-index: 1;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	border: 1px solid rgb(52, 52, 52);
}
.sticky {
	background: rgb(247, 215, 146);
	user-select: none;
	-webkit-user-select: none;	
	position: absolute;
	box-sizing: border-box;
	padding: 10px;
	font-weight: normal;
	z-index: 2;
}
.sticky h5 {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: normal;
}
.sticky p {
	margin: 0;
}
.sticky a {
	color: #000;
}
.sticky a:hover {
	text-decoration: none;
}
.node {
	user-select: none;
	-webkit-user-select: none;	
	position: absolute;
	border-radius: 5px;
	box-sizing: border-box;
	border: 1px solid rgb(41, 41, 41);
	z-index: 3;
}
.node h5 {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.input-slot {
	position: absolute;
	transform: translate3d(-100%,0,0);
	left: -10px;
	border: 1px solid rgb(41, 41, 41);
	border-radius: 5px;
	padding: 5px;
	background: rgb(50, 50, 50);
	padding-right: 20px;
}
.input-slot:after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    width: 5px;
    height: 5px;
    border: 1px solid rgb(200, 200, 200);
    border-radius: 50%;
    transform: translate3d(0,-50%,0);
}
.input-slot:before {
    content: '';
    width: 36px;
    height: 2px;
    background: rgb(200,200,200);
    border-radius: 5px;
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translate3d(0,-50%,0);
    z-index: 1;
}
.input-slot span {
    background: rgb(38, 38, 38);
    padding: 2px 4px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid rgb(41, 41, 41);
}

body[data-dragging="1"] .group,
body[data-dragging="1"] .node,
body[data-dragging="1"] svg {
	pointer-events: none;
}
.sticky[data-hovering=true],
.group[data-hovering=true],
.node[data-hovering=true] {
	box-shadow: 0 0 0 2px rgb(82, 149, 193);
}
.sticky[data-dragging=true],
.group[data-dragging=true],
.node[data-dragging=true] {
	box-shadow: 0 0 0 4px rgb(82, 149, 193);
}
.group[data-hovering=true] h5,
.group[data-dragging=true] h5 {
	color: rgb(82, 149, 193);
	cursor: pointer;
}
.node.property {
	border-radius: 15px;
	overflow: hidden;
}
.node:not([data-expanded="1"]) .slot-container li:not(.filled) {
	display: none;
}
.node h5,
.group h5 {
	user-select: none;
	-webkit-user-select: none;	
	color: rgb(177, 177, 177);
	font-size: 12px;
	padding: 10px 10px;		
	margin: 0;	
	font-weight: normal;
	background: rgb(56, 56, 56, .75);
}
.node h5 {
	display: flex;
	background: rgb(50, 50, 50);
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgb(32, 32, 32);
}
.node h5 em {
	padding: 0;
}
.group h5 {
	text-align: center;
	background: transparent;
	border:none;
	font-size: 20px;
	color: rgba(255, 255, 255, .75);
}
.node .slot-container {
	display: flex;
	font-size: 12px;
}
.node .slot-container:not(:last-child) {
	border-bottom: 1px solid rgb(34, 34, 34);			
}
.node .slot-container ul {
	list-style: none;
	padding: 0;
	margin: 0;
	color: rgb(177, 177, 177);
	flex-grow: 1;
	padding: 0 10px;
}
.node .slot-container ul li {
	padding: 5px 0;
	flex-direction: row;
	display: flex;			
	align-items: center;
}
.node .slot-container ul span {
	white-space: nowrap;
}
.node .slot-container .slot-inputs li {
	justify-content: flex-start;
}
.node .slot-container .slot-outputs li {
	justify-content: flex-end;
}
.node .slot-container .slot-inputs {
	text-align: left;
}
.node .slot-container {
	text-align: right;
}
.node .slot-inputs {
	background-color: rgba(50, 50, 50, 0.5);	
}
.node .slot-outputs {
	text-align: left;
	background-color: rgba(38, 38, 38, 0.5);
}
.node[data-generatepropertyblock="true"] .slot-outputs li,
#blackboard-container h3.exposed {
	position: relative;
	padding-left: 10px;
}
.node[data-generatepropertyblock="true"] .slot-outputs li:before,
#blackboard-container h3.exposed:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: rgb(172, 234, 120);
    position: absolute;
    left: 0;
    transform: translate3d(0, -50%, 0);
    top: 50%;
    border-radius: 50%;		
}
#blackboard-container h3.exposed {
	padding-left: 25px;
}
#blackboard-container h3.exposed:before {
	left: 10px;
}
#share {
	display: none;
	align-items: center;
}
.node .slot-container ul li em {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: 1px solid rgb(200, 200, 200);
	display: block;
}
.node .slot-container ul li i {
	font-style: normal;
}
.node .slot-container em.filled {
	background: #fff;
}
.node .slot-container .filled .input-slot {
	display: none;
}
.node .slot-container .slot-inputs em {
	margin-right: 7px;
}
.node .slot-container .slot-outputs em {
	margin-left: 7px;
}
svg {
	position: absolute;
}
svg g:hover * {
	stroke: rgb(103,191,249);
	stroke-Width: 6;
}
em.chevron,
em.settings,
em.close {
	cursor: pointer;
}
form input[name="full-name"] {
	display: none;
}
#embed-container,
#preview-form,
#submission-form {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	width: 500px;
	max-height: 500px;
	color: #fff;
	flex-direction: column;
	z-index: 10;
}
#preview-form .form-group,
#submission-form .form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
#submission-form .form-group#form-subgraph-note {
	margin-bottom: 0;
}
#submission-form .form-group label {
    width: 150px;
    flex-shrink: 0;
    display: inline-block;
    padding: 5px 0;
    margin-right: 10px;
}
#submission-form .form-group label em {
	font-style: normal;
	margin-left: 5px;
    color: #666;
}
#submission-form .form-group > div {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
#submission-form .tags,
#submission-form #form-subgraph {
	align-items: inherit;
	margin: 0;
}
#submission-form .form-group > div .note {
	padding: 10px 0;
	margin: 0;
}
#submission-form input {
    flex-grow: 1;
    border-radius: 2px;
    border: none;
    padding: 5px;
}
#submission-form .note {
    padding: 10px;
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}
#preview-form .note {
    color: #999;
    padding: 10px;
	margin-bottom: 0;
}
#submission-form .form-group#form-subgraph-note .note {
	margin-bottom: 0;
}
#preview-form .form-footer,
#submission-form .form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}
#preview-form .form-footer {
	padding: 10px;
}
#preview-link {
	display: none;
	padding: 20px;
	text-align: center;
	text-decoration: underline;
	cursor: pointer;	
	background: rgba(255,255,255,.05);
	color: #fff;
	word-break: break-all;	
}
#preview-link:hover {
	text-decoration: none;
}
button[type="submit"] {
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}
#submission-form .form-group#form-subgraph { display: none; }
#submission-form .body {
	padding: 10px;
}
#open-form {
	display: none;
	align-items: center;
	padding-right: 10px;
	border-left: 1px solid rgb(153, 153, 153);
}
button#preview {
	display: none;
	align-items: center;
}
#uploader-button,
a#create {
	color: rgb(203, 203, 203);
    background-color: rgba(0,0,0,.75);
    align-items: center;
    font-size: 11px;
    text-decoration: none;
    padding: 5px 10px;
    border: 2px solid rgb(203,203,203);
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: 5px;
    height: 24px;
    display: flex;
}
#uploader-button {
	margin-left: 10px;
}
#uploader-button:hover,
a#create:hover {
	background-color: gray;
	color: #fff;
}
em.chevron,
em.settings,
em.close,
em.texture,
em.share,
em.reset,
em.fullscreen,
em.upload,
em.library,
em.download,
em.left,
em.preview,
em.embed,
em.copy {
	width: 10px;
	height: 10px;
	display: block;
	background-size: 20px;
	color: #fff;
	padding: 5px;
}
em.copy {
 	background: transparent url('img/copy.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.embed {
 	background: transparent url('img/embed.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.preview {
 	background: transparent url('img/preview.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.left {
 	background: transparent url('img/chevron-left.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.library {
 	background: transparent url('img/library.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.download  {
 	background: transparent url('img/download.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.upload {
 	background: transparent url('img/upload.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.reset {
 	background: transparent url('img/reset.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.fullscreen {
 	background: transparent url('img/fullscreen.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.share {
 	background: transparent url('img/share.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
 	margin-right: 5px;	
}
em.close {
 	background: transparent url('img/x.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;	
}
em.settings {
 	background: transparent url('img/settings.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;
}
em.texture {
 	background: transparent url('img/texture.svg') no-repeat center center;
 	background-size: 15px;
 	width: 14px;
 	height: 14px;
 	padding: 0;
 	margin-right: 5px;
}
em.chevron[data-expanded="1"] {
 	background: transparent url('img/chevron-down.svg') no-repeat center center;
}
em.chevron[data-expanded="0"],
em.left {
 	background: transparent url('img/chevron-left.svg') no-repeat center center;
}
#blackboard-container em.chevron[data-expanded="0"] {
 	background: transparent url('img/chevron-right.svg') no-repeat center center;
}

#readme {
	padding: 20px;
	position: fixed;
	color: rgb(200, 200, 200);
	bottom: 0;
	overflow: auto;
	border-radius: 5px;
	top: 30px;
	left: 0;
	right: 0;
	max-width: 600px;
	margin: 0 auto;
}
#readme p {
	margin: 0 0 10px;
}
#readme p a:hover {
	text-decoration: none;
}
#readme header {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#readme header img {
	width: 100px;
    height: 100px;
	margin: 0 0 15px;
}
#readme header h1 {
	color: #fff;
	font-size: 28px;
	text-align: left;
	padding-left: 0;
	margin-bottom: 30px;
}
#readme .cta {
	margin: 30px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
#readme .cta span {
    padding-left: 35px;
}
#readme .cta > * {
	width: 250px;
	padding: 15px;
	font-size: 20px;
	border: none;
	background: #444;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	border: none;
	transition: filter 0.15s ease-in;
}
#readme .cta > *:first-child {
	background-color: rgb(122,223,226);
	color: rgba(0, 0, 0, .5);
}
#readme .cta > *:hover {
	filter: brightness(1.2);
}
#readme header h3 {
	color: #999;
}
@media (max-width:950px) {
	.page-homeheader .tools #open-form em,
	.page-homeheader .tools #preview em,
	.page-home header .tools #library em {
		display: none;
	}
}
@media (max-width:650px) {
	label[for="uploader"] {
		display: none;
	}
	#readme .cta {	
		flex-direction: column;
		align-items: center;
	}
	#readme .cta > *:first-child {
		margin-bottom: 20px;
	}
}
#readme pre {
	display: inline;
}
#readme a {
	color: rgb(200, 200, 200);
}
#readme h1,
#readme h3 {
	margin: 0;
}
#readme ul {
	margin: 0;
	padding: 0;
}
#readme li {
	list-style: none;
	margin-bottom: 10px;
}
#readme li em {
	margin-right: 5px;
	font-style: normal;
}

#library,
#download,
#embed {
	display: flex;
	align-items: center;
}
#download {
	display: none;
}
#library-container {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 30px;
	display: block;
	width: 100%;
	height: calc(100% - 30px);
	border: none;
	transition: transform 0.15s ease-in;
	overflow-x: hidden;
	transform: translate3d(0, 100%, 0);	
}}
#library-container.close {
	transform: translate3d(0, 100%, 0);	
}
#library-container.open {
	transform: translate3d(0, 0, 0);	
}

#page-library {
	color: #fff;
	width: auto;
	height: auto;
	overflow: inherit;
}
#page-library h1 {
	margin: 0 0 20px;
}
#page-library ul {
    margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
    padding: 0;
}
#page-library a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px 10px; 
    background-color: rgba(255, 255, 255, .7);
	border-radius: 5px;
	transition: background-color 0.15s ease-in;
}
#page-library a:hover {
	color: #111;
    background-color: rgba(255, 255, 255, 0.9);
}
#page-library li {
	width: 300px;
    list-style: none;
    text-align: center;
	flex-shrink: 0;
	margin: 0 20px 20px 0;    
	position: relative;
}
#page-library li[data-subgraph="1"]:before {
	content: 'Subgraph';
	position: absolute;
	right: 0;
	top: 0;
	padding: 2px 5px;
	font-size: 12px;
	background-color: rgb(0, 0, 0, 0.5);
	color: #fff;
	border-bottom-left-radius: 5px;
}

#page-thanks {
	color: white;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
#page-thanks .main {
   	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100vw;
}
#page-thanks .body {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 75%;
	max-width: 364px;
	padding: 24px;
	background: white;
	color: rgb(14, 30, 37);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}
#page-thanks .body.header {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
#page-thanks .body.footer {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-color: rgb(50, 50, 50);
}
#page-thanks .body.footer a {
	color: #fff;
	display: flex;
	align-items: center;
}