/* YEAROFTHELINUXDESKTOP.NET SPECIFIC CSS */

:root {
	--nebula: 125, 118, 193;
	--terminal: 0, 186, 102;
	--winblows: 46, 134, 211;
	--halt: 244, 68, 68;
	--loonix: 213, 187, 35;
	--firefox: 244, 130, 68;
	--amd: 232, 35, 35;
	--amd-old: 120, 65, 65;
	--intel: 22, 119, 255;
	--intel-old: 90, 125, 175;
	--nvidia: 11, 162, 8;
	--nvidia-old: 74, 126, 73;
	--starfield: 48, 50, 51;
	--void: 28, 29, 33;
	--neutron: 222, 222, 222;
}

body {
	display: flex;
	flex-flow: row;
	color: rgb(var(--neutron));
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}
body.lcd_void {
	background-color: #12141e;
}

::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	border-radius: 3px;
	padding: 3px;
	background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	min-height: 40px;
	background: rgba(var(--terminal), 1);
}

h2 {
	font-size: 32px;
	margin: 10px 0;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 16px;
}
h2,
h3,
h4,
h5 {
	margin: 15px 0px 15px;
	text-transform: uppercase;
}
h2 i,
h3 i,
h4 i,
h5 i {
	position: relative;
	top: 2px;
}

p {
	margin: 7px 0;
	line-height: 26px;
}
p a {
	color: rgb(var(--winblows));
	text-decoration: underline;
}

ol {
	--sl-line-height: 1.7;
	--bullet-size: calc(var(--sl-line-height) * 1rem);
	--bullet-margin: 5px;
	list-style: none;
	counter-reset: steps-counter var(--sl-steps-start, 0);
	padding-inline-start: 0;
}
ol > li {
	counter-increment: steps-counter;
	position: relative;
	padding-inline-start: calc(var(--bullet-size) + 1rem);
	padding-bottom: 10px;
	min-height: calc(var(--bullet-size) + var(--bullet-margin));
	line-height: 26px;
}
ol > li:before {
	content: counter(steps-counter);
	position: absolute;
	top: -1px;
	inset-inline-start: 0;
	width: var(--bullet-size);
	height: var(--bullet-size);
	line-height: var(--bullet-size);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	color: rgb(var(--neutron));
	background-color: rgba(var(--nebula), 0.3);
	border-radius: 20px;
	box-shadow: inset 0 0 0 1px rgba(var(--nebula), 1);
}
ol > li:after {
	--guide-width: 1px;
	content: "";
	position: absolute;
	top: calc(var(--bullet-size) + var(--bullet-margin));
	bottom: var(--bullet-margin);
	inset-inline-start: calc((var(--bullet-size) - var(--guide-width)) / 2);
	width: var(--guide-width);
	background-color: var(--sl-color-hairline-light);
}

.divider {
	height: 1px;
	background: rgb(255 255 255 / 15%);
	margin: 20px 0px;
}

.color.amd {
	color: rgb(var(--amd));
}
.color.intel {
	color: rgb(var(--intel));
}
.color.nvidia {
	color: rgb(var(--nvidia));
}
.color.amd.old {
	color: rgb(var(--amd-old));
}
.color.intel.old {
	color: rgb(var(--intel-old));
}
.color.nvidia.old {
	color: rgb(var(--nvidia-old));
}

.color.nebula {
	color: rgb(var(--nebula));
}
.bg.nebula {
	background: rgb(var(--nebula));
	color: rgb(var(--void));
}
.hollow.nebula {
	background: transparent;
	border: 1px solid rgb(var(--nebula));
	transition: background 200ms ease-in-out;
	color: rgb(var(--nebula));
}
.hollow.nebula:hover {
	background: rgb(var(--nebula));
	border: 1px solid rgb(var(--nebula));
	color: inherit;
}

.color.terminal {
	color: rgb(var(--terminal));
}
.bg.terminal {
	background: rgb(var(--terminal));
	color: rgb(var(--void));
}
.hollow.terminal {
	background: transparent;
	border: 1px solid rgb(var(--terminal));
	transition: all 200ms ease-in-out;
	color: rgb(var(--terminal));
}
.hollow.terminal:hover {
	background: rgb(var(--terminal));
	border: 1px solid rgb(var(--terminal));
	color: rgba(0, 0, 0, 0.65);
}

.color.winblows {
	color: rgb(var(--winblows));
}
.bg.winblows {
	background: rgb(var(--winblows));
	color: rgb(var(--void));
}
.hollow.winblows {
	background: transparent;
	border: 1px solid rgb(var(--winblows));
	transition: all 200ms ease-in-out;
	color: rgb(var(--winblows));
}
.hollow.winblows:hover {
	background: rgb(var(--winblows));
	border: 1px solid rgb(var(--winblows));
	color: rgba(0, 0, 0, 0.65);
}

.color.halt {
	color: rgb(var(--halt));
}
.bg.halt {
	background: rgb(var(--halt));
	color: rgb(var(--void));
}
.hollow.halt {
	background: transparent;
	border: 1px solid rgb(var(--halt));
	transition: background 200ms ease-in-out;
	color: rgb(var(--halt));
}
.hollow.halt:hover {
	background: rgb(var(--halt));
	border: 1px solid rgb(var(--halt));
	color: inherit;
}

.color.loonix {
	color: rgb(var(--loonix));
}
.bg.loonix {
	background: rgb(var(--loonix));
	color: rgb(var(--void));
}
.hollow.loonix {
	background: transparent;
	border: 1px solid rgb(var(--loonix));
	transition: all 200ms ease-in-out;
	color: rgb(var(--loonix));
}
.hollow.loonix:hover {
	background: rgb(var(--loonix));
	border: 1px solid rgb(var(--loonix));
	color: rgba(0, 0, 0, 0.65);
}

.color.firefox {
	color: rgb(var(--firefox));
}
.bg.firefox {
	background: rgb(var(--firefox));
	color: rgb(var(--void));
}
.hollow.firefox {
	background: transparent;
	border: 1px solid rgb(var(--firefox));
	transition: all 200ms ease-in-out;
	color: rgb(var(--firefox));
}
.hollow.firefox:hover {
	background: rgb(var(--firefox));
	border: 1px solid rgb(var(--firefox));
	color: rgba(0, 0, 0, 0.65);
}

.color.starfield {
	color: rgb(var(--starfield));
}
.bg.starfield {
	background: rgb(var(--starfield));
	color: rgb(var(--void));
}
.hollow.starfield {
	background: transparent;
	border: 1px solid rgb(var(--starfield));
	transition: background 200ms ease-in-out;
	color: rgb(var(--starfield));
}
.hollow.starfield:hover {
	background: rgb(var(--starfield));
	border: 1px solid rgb(var(--starfield));
	color: rgba(0, 0, 0, 0.65);
}

.color.void {
	color: rgb(var(--void));
}
.bg.void {
	background: rgb(var(--void));
	color: rgb(var(--neutron));
}
.hollow.void {
	background: transparent;
	border: 1px solid rgb(var(--void));
	transition: background 200ms ease-in-out;
	color: rgb(var(--void));
}
.hollow.void:hover {
	background: rgb(var(--void));
	border: 1px solid rgb(var(--void));
	color: rgba(0, 0, 0, 0.65);
}

.color.neutron {
	color: rgb(var(--neutron));
}
.bg.neutron {
	background: rgb(var(--neutron));
	color: rgb(var(--void));
}
.hollow.neutron {
	background: transparent;
	border: 1px solid rgb(var(--neutron));
	transition: background 200ms ease-in-out;
	color: rgb(var(--neutron));
}
.hollow.neutron:hover {
	background: rgb(var(--neutron));
	border: 1px solid rgb(var(--neutron));
	color: rgba(0, 0, 0, 0.65);
}

.iframe-video {
	width: 100%;
	height: 680px;
}

code {
	font-family: "Oxygen Mono";
	background: #101010;
	padding: 0px 6px;
	border-radius: 4px;
	color: rgb(var(--terminal));
	border: 1px solid darkslategray;
}

kbd {
	padding: 3px 5px;
	margin: 0px 4px;
	background: rgba(var(--starfield), 1);
	border-radius: 7px;
	box-shadow: 1px -1px 7px #0e0e0e;
	border-bottom: 4px solid #404040;
	border-right: 3px solid #202020;
	border-left: 3px solid #2c2c2c;
	font-family: "Oxygen Mono", monospace;
	font-size: 13px;
	position: relative;
	top: -3px;
}

.youtube-player {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	margin: 5px;
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}

.youtube-player img {
	object-fit: cover;
	display: block;
	left: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: 0.4s all;
	-moz-transition: 0.4s all;
	transition: 0.4s all;
}

.youtube-player img:hover {
	-webkit-filter: brightness(75%);
}

.youtube-player .play {
	height: 48px;
	width: 68px;
	left: 50%;
	top: 50%;
	margin-left: -34px;
	margin-top: -24px;
	position: absolute;
	background: url("https://i.ibb.co/j3jcJKv/yt.png") no-repeat;
	cursor: pointer;
}

quote {
	display: flex;
	flex-flow: column;
	margin-top: 10px;
	padding: 15px 20px;
	background: rgba(var(--starfield), 0.3);
	border-radius: 7px;
	border-left: 4px solid rgba(var(--winblows));
	border-right: 4px solid rgba(var(--winblows));
}
quote message {
	font-size: 18px;
	font-style: italic;
	text-align: center;
}
quote message::before,
quote message::after {
	content: '"';
	font-size: 32px;
	font-weight: 600;
}
quote message::before {
	padding-right: 15px;
}
quote message::after {
	padding-left: 15px;
}

quote by {
	font-family: cursive;
	text-align: right;
}

details {
	border: 1px solid rgb(var(--nebula));
	background: rgba(var(--nebula), 0.1);
	margin: 0 0 20px 0;
	transition: all 200ms ease-in-out;
}
details.terminal {
	border: 1px solid rgb(var(--terminal));
	background: rgba(var(--terminal), 0.02);
}

details summary {
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	transition: all 200ms ease-in-out;
	font-weight: 600;
}
details summary:hover {
	background: rgba(var(--nebula), 0.1);
}
details.terminal summary:hover {
	background: rgba(var(--terminal), 0.1);
}

details summary::after {
	content: "Click to Expand";
	font-weight: 500;
	transition: all 200ms ease-in-out;
	color: rgba(var(--neutron), 0.7);
}
details summary:hover::after {
	color: rgba(var(--loonix), 1);
}

details[open] > summary::after {
	content: "Click to Close";
}

details summary::marker {
	display: none;
}
details summary:first-of-type {
	list-style: none;
	cursor: pointer;
}
details summary span {
	display: flex;
	align-items: center;
}
details summary span i {
	margin-right: 10px;
}

details content {
	border-top: 1px solid rgb(var(--nebula));
	padding: 20px;
	display: flex;
	flex-flow: column;
}
details.terminal content {
	border-top: 1px solid rgb(var(--terminal));
}

button,
.button {
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	flex-flow: row;
	justify-content: center;
}
button.small,
.button.small {
	padding: 10px 15px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-self: end;
}

button i,
.button i {
	margin-right: 8px;
	margin-top: 2px;
}
.unavailable {
	opacity: 40%;
	cursor: not-allowed !important;
}

.copy-box {
	position: relative;
	display: flex;
	flex-flow: row;
	background: rgba(var(--void), 1);
	color: rgba(var(--terminal), 0.75);
	border: 1px solid rgba(var(--terminal), 0.75);
	cursor: pointer;
	transition: all 200ms linear;
}

.copy-box:hover {
	border: 1px solid rgba(var(--winblows), 0.75);
}
.copy-box:active {
	border: 1px solid rgba(var(--loonix), 0.75);
}

.copy-box input {
	background: none;
	border: none;
	padding: 0px 10px;
	font-family: "Oxygen Mono", monospace;
	color: rgba(var(--terminal), 0.75);
	cursor: pointer;
	transition: all 200ms ease-in-out;
}

.copy-box:hover input {
	color: rgba(var(--winblows), 1);
}

.copy-box button {
	display: flex;
	align-items: center;
	justify-items: center;
	padding: 5px 10px;
	background: none;
	border: none;
	color: rgba(var(--neutron), 0.75);
	transition: all 200ms ease-in-out;
}

.copy-box:hover > button {
	color: rgba(var(--winblows, 1));
}
.copy-box:active > button {
	color: rgba(var(--loonix, 1));
}

.copy-box span {
	visibility: hidden;
	position: absolute;
	top: -30px;
	/*right: -19%;*/
	left: 25%;
	background: rgba(16, 18, 26, 0.8);
	color: rgba(var(--winblows));
	padding: 5px 10px;
	border-radius: 4px;
	font-weight: 600;
	box-shadow: 0px 2px 7px -2px black;
	opacity: 0;
	transition: all 200ms linear;
}
.copy-box:hover > span {
	visibility: visible;
	opacity: 1;
	top: -34px;
}
.copy-box:active > span {
	color: rgba(var(--loonix, 1));
}

.table-contents {
	display: flex;
	flex-flow: column;
}

.table-contents li {
	display: flex;
	flex-flow: row;
	align-items: center;
	border-radius: 4px;
	transition: all 200ms ease-in-out;
	font-size: 16px;
	font-weight: 600;
}
.table-contents li i {
	padding-left: 10px;
}
.table-contents li:hover {
	background: rgba(var(--nebula), 0.5);
}

.table-contents li a {
	padding: 7px;
	flex: 2 1;
}

.menu-button {
	display: none;
	font-size: 44px;
	font-family: inherit;
	cursor: pointer;
	position: fixed;
	top: 10px;
	right: 35px;
	background: rgba(var(--void), 1);
	border-radius: 4px;
	padding: 8px;
	border: 1px solid rgba(var(--starfield), 1);
	box-shadow: 0px 0px 7px black;
	color: rgba(var(--terminal), 1);
	z-index: 9999;
}

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 10000;
	padding: 8px 16px;
	background: rgba(var(--void), 1);
	color: rgba(var(--terminal), 1);
	border: 1px solid rgba(var(--starfield), 1);
	border-radius: 4px;
	box-shadow: 0px 0px 7px black;
	/* visually hidden until focused */
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
	clip: auto;
	clip-path: none;
	width: auto;
	height: auto;
	overflow: visible;
	white-space: normal;
}

/* visible keyboard focus indicator (base.css strips outlines on text inputs) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
input[type]:focus-visible {
	outline: 2px solid rgb(var(--terminal));
	outline-offset: 2px;
}

/* SIDEBAR AND NAVIGATION */

sidebar {
	display: flex;
	flex-flow: column;
	height: 100vh;
	flex: 0 0 300px;
	width: 300px;
	padding: 15px 0px;
	border-right: none;
	background: rgba(0, 0, 0, 0.3);
}

sidebar nav_title {
	padding: 5px 30px 15px;
	font-weight: 600;
	font-size: 1.4em;
	color: rgb(var(--loonix));
	text-transform: uppercase;
	letter-spacing: 2px;
	display: flex;
	flex-flow: column;
	flex: 0 0;
}

sidebar nav_title a {
	display: flex;
	flex-flow: row;
	align-items: center;
}
sidebar nav_title > span {
	font-size: 12px;
	color: #c2c2c2;
	margin-top: 10px;
}

sidebar nav_scroll {
	display: flex;
	flex-flow: column;
	flex: 1 0;
	overflow-y: auto;
	overflow-x: hidden;
	&::-webkit-scrollbar-thumb {
		border-radius: 2px;
		min-height: 40px;
		background: rgba(var(--starfield), 1);
	}
}

sidebar nav {
	display: flex;
	flex-flow: column;
	flex: 2 2;
}

sidebar nav .nav-spacer {
	flex: 2 1;
}

sidebar nav a {
	display: inherit;
	border-right: 8px solid transparent;
	padding: 15px 30px;
	transition: all 200ms ease-in-out;
	flex: 0 0;
}

sidebar nav item {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 1.2em;
	font-weight: 500;
}

sidebar nav item i {
	padding-right: 20px;
}

sidebar nav a:hover {
	background-color: rgba(var(--nebula), 0.07);
	border-right-color: rgba(var(--loonix), 1);
}

sidebar nav a.active {
	background-color: rgba(var(--nebula), 0.1);
	border-right-color: rgba(var(--winblows), 1);
}

sidebar nav .subnav {
	display: none;
	flex-flow: column;
	flex: 1 1 200px;
	transition: all 200ms ease-in-out;
	overflow-y: auto;
	border-bottom: 1px dashed rgba(var(--winblows), 0.4);
	box-shadow: inset 0px -10px 10px -5px rgba(var(--winblows), 0.2);
	&::-webkit-scrollbar-thumb {
		border-radius: 2px;
		min-height: 40px;
		background: rgba(var(--starfield), 1);
	}
}

sidebar nav a.active + .subnav {
	display: flex;
}

sidebar nav .subnav a {
	padding: 7px 30px 7px 40px;
}

sidebar nav .subnav a::before {
	margin-right: 10px;
	content: "\f2ea";
	font-family: boxicons !important;
	font-weight: 400;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	display: flex;
	align-self: center;
	text-transform: none;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

sidebar nav .subnav a.active {
	background-color: rgba(var(--nebula), 0.1);
	border-right-color: rgba(var(--terminal), 1);
}

sidebar nav .subnav a strong {
	margin-right: 5px;
}

sidebar nav .nav-spacer {
	flex: 2 2;
}

sidebar nav .nav-title {
	padding: 0px 25px;
	font-weight: 600;
	text-transform: uppercase;
}

.main-content {
	display: flex;
	flex-flow: column;
	flex: auto;
	height: 100vh;
	overflow: scroll;
	align-items: center;
	padding: 20px 40px;
	scroll-behavior: smooth;
	&::-webkit-scrollbar {
		width: 20px;
	}
}

main {
	flex: 2 1;
	display: flex;
	flex-flow: column;
	max-width: 1300px;
}

featured {
	padding: 120px 0 160px 0;
	display: flex;
	flex-flow: row;
}

featured featured-content {
	flex: 2 1;
	display: flex;
	flex-flow: column;
	align-items: center;
}

featured featured-content h1 {
	font-size: 42px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	color: rgb(var(--neutron));
}
featured featured-content answer {
	font-weight: 600;
	font-size: 32px;
	padding-top: 20px;
}
featured featured-content answer span {
	font-weight: 300;
}
featured featured-content updated {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
	color: #9f9f9f;
}
featured featured-content updated date {
	font-weight: 600;
	color: rgb(var(--terminal));
}
featured featured-content p {
	font-size: 20px;
	font-weight: 500;
	max-width: 730px;
	color: #9c9c9c;
}
featured featured-content p.highlight {
	color: #58ac81;
}

p.brandingLogo {
	display: none;
}

/* width/height attributes reserve layout space for lazy images; keep the
   attribute height from pinning the rendered height when CSS (e.g.
   max-width on app icons) constrains the width — auto height + the
   attribute-derived aspect ratio keeps every image proportional. */
img {
	height: auto;
}

img.app-icon {
	max-width: 44px;
	margin-right: 15px;
	border-radius: 5px;
}

box-table {
	display: flex;
	flex-flow: column;
	padding: 14px;
	border: 1px solid rgba(var(--terminal), 0.4);
	border-radius: 2px;
	margin: 20px 0 20px 0;
	background: rgba(var(--terminal), 0.02);
	transition: all 300ms ease-in-out;
}
box-table.nebula {
	border: 1px solid rgba(var(--nebula), 0.4);
	background: rgba(var(--nebula), 0.02);
}
box-table:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--terminal), 0.4);
}
box-table.nebula:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--nebula), 0.4);
}

box-table box-meta {
	padding: 7px 7px 15px;
	margin-bottom: 10px;
	display: flex;
	flex-flow: row;
	align-items: center;
	border-bottom: 1px solid rgba(var(--terminal), 0.4);
}
box-table.nebula box-meta {
	border-bottom: 1px solid rgba(var(--nebula), 0.4);
}
box-table box-meta name {
	flex: 1 1 260px;
	font-size: 20px;
	color: rgb(var(--terminal));
	text-transform: uppercase;
}
box-table.nebula box-meta name {
	color: rgb(var(--nebula));
}

box-table items {
	display: flex;
	flex-flow: column;
}
box-table items item {
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-items: center;
	padding: 8px 10px;
	border-radius: 5px;
	transition: all 200ms ease-in-out;
	opacity: 1;
}
box-table items item > i {
	font-size: 20px;
	padding-right: 10px;
}
box-table items item:hover {
	background: rgba(var(--terminal), 0.1);
	opacity: 1;
}
box-table.nebula items item:hover {
	background: rgba(var(--nebula), 0.1);
	opacity: 1;
}

box-table items item pre-x {
	flex: 1 0;
	font-weight: 600;
	color: rgb(var(--terminal));
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

box-table items item pre-status {
	flex: 0 0 50px;
	font-weight: 600;
	font-size: 28px;
	color: rgb(var(--terminal));
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

/* State-of-features grid: status cards pack into columns; headings and
   dividers span the full width. */
box-table.features > items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	column-gap: 24px;
}
box-table.features > items > h5,
box-table.features > items > .divider {
	grid-column: 1 / -1;
}
box-table.features tag.muted {
	opacity: 0.55;
	font-style: italic;
	white-space: nowrap;
}
box-table.features > items > item item-meta {
	flex: 1 1 auto;
}
box-table.features > items > item > tags {
	flex: 0 1 auto;
}
box-table.features item-meta note {
	font-size: 12px;
	font-weight: 300;
	opacity: 0.8;
	margin-top: 2px;
	text-transform: none;
}
@media (max-width: 900px) {
	box-table.features > items {
		grid-template-columns: 1fr;
	}
}

box-table.nebula items item pre-x {
	color: rgb(var(--nebula));
}

box-table items item item-meta {
	display: flex;
	flex-flow: column;
	flex: 2 1;
	margin-right: 15px;
}
box-table items item item-meta name {
	font-weight: 600;
	text-transform: uppercase;
	color: rgb(var(--neutron));
}
box-table items item item-meta detail {
	font-size: 13px;
	font-weight: 100;
	opacity: 0.7;
	text-transform: uppercase;
}
box-table items item > name {
	flex: 1 1 100px;
	font-weight: 600;
}

tags {
	flex: 5 1;
	align-content: center;
	display: flex;
	flex-flow: wrap;
}
tags tag {
	padding: 3px 8px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.05);
	font-size: 12px;
	margin: 2px 5px 2px 0px;
	display: flex;
	flex-flow: row;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
}

tags tag i {
	font-size: 16px;
	padding-right: 5px;
}

box-table items item bar-wrapper {
	height: 40px;
	width: 100%;
	border-radius: 2px;
}
box-table items item bar-wrapper:hover {
	background: none !important;
}
box-table items item bar-wrapper bar {
	height: 100%;
	display: flex;
	flex-flow: row;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	border-radius: 1px;
	/*border: 1px solid rgb(255 255 255 / 35%);
    text-shadow: 1px 1px 1px rgb(255 255 255 / 40%);*/
}

box-table items item bar-wrapper bar name {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: rgba(var(--void), 1);
}
box-table items item bar-wrapper bar name i {
	padding-right: 10px;
}
box-table items item bar-wrapper bar per {
	font-weight: 400;
	color: rgba(var(--void), 1);
}
box-table items item bar-wrapper bar per::after {
	content: "%";
}

box-table items item .button.small {
	margin-left: 15px;
	flex: 0 0 82px;
	padding: 4px 15px;
}

box-table box-notes {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	border-top: 1px solid rgba(var(--terminal), 0.4);
	margin-top: 10px;
	padding: 22px 7px 7px;
}
box-table.nebula box-notes {
	border-top: 1px solid rgba(var(--nebula), 0.4);
}
box-table box-notes notes {
	flex: 2 1;
	padding-right: 30px;
}

box-table box-notes notes h4 {
	margin: 0;
	font-size: 16px;
	color: rgb(var(--terminal));
}
box-table.nebula box-notes notes h4 {
	margin: 0;
	font-size: 16px;
	color: rgb(var(--nebula));
}
box-table box-notes notes p {
	font-size: 16px;
	font-weight: 400;
}

notices {
	display: flex;
	flex-flow: column;
	margin-top: 10px;
}
notices notice {
	display: flex;
	flex-flow: column;
	border-radius: 2px;
	border: 1px solid rgba(var(--loonix), 0.4);
	background: rgba(var(--loonix), 0.05);
	border-radius: 2px;
	margin-bottom: 15px;
	transition: all 300ms ease-in-out;
}
notices notice.halt {
	border: 1px solid rgba(var(--halt), 0.4);
	background: rgba(var(--halt), 0.05);
}
notices notice.info {
	border: 1px solid rgba(var(--winblows), 0.4);
	background: rgba(var(--winblows), 0.05);
}
notices notice.warn {
	border: 1px solid rgba(var(--loonix), 0.4);
	background: rgba(var(--loonix), 0.05);
}
notices notice.good {
	border: 1px solid rgba(var(--terminal), 0.4);
	background: rgba(var(--terminal), 0.05);
}

notices notice:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--loonix), 0.4);
}
notices notice.halt:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--halt), 0.4);
}
notices notice.info:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--winblows), 0.4);
}
notices notice.warn:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--loonix), 0.4);
}
notices notice.good:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--terminal), 0.4);
}

notices notice heading {
	display: flex;
	align-items: center;
	font-size: 18px;
	font-weight: 800;
	padding: 15px;
	background: rgba(var(--loonix), 0.05);
}
notices notice.halt heading {
	background: rgba(var(--halt), 0.05);
}
notices notice.info heading {
	background: rgba(var(--winblows), 0.05);
}
notices notice.warn heading {
	background: rgba(var(--loonix), 0.05);
}
notices notice.good heading {
	background: rgba(var(--terminal), 0.05);
}

notices notice heading > i {
	margin-right: 10px;
	font-size: 22px;
}
notices notice.halt heading > i {
	color: rgba(var(--halt), 1);
}
notices notice.info heading > i {
	color: rgba(var(--winblows), 1);
}
notices notice.warn heading > i {
	color: rgba(var(--loonix), 1);
}
notices notice.good heading > i {
	color: rgba(var(--terminal), 1);
}

notices notice heading .button {
	margin-left: auto;
}

notices notice > content {
	padding: 15px;
	border-top: 1px solid rgba(var(--loonix), 0.4);
}
notices notice.halt > content {
	border-top: 1px solid rgba(var(--halt), 0.4);
}
notices notice.info > content {
	border-top: 1px solid rgba(var(--winblows), 0.4);
}
notices notice.warn > content {
	border-top: 1px solid rgba(var(--loonix), 0.4);
}
notices notice.good > content {
	border-top: 1px solid rgba(var(--terminal), 0.4);
}

faq {
	display: flex;
	flex-flow: column;
	margin-top: 10px;
}
faq item {
	display: flex;
	flex-flow: column;
	border: 1px solid rgba(var(--nebula), 0.4);
	background: rgba(var(--nebula), 0.05);
	border-radius: 2px;
	margin-bottom: 15px;
	transition: all 300ms ease-in-out;
}
faq item:hover {
	box-shadow: 0px 1px 15px -3px rgba(var(--nebula), 0.4);
}
faq item question {
	font-size: 18px;
	font-weight: 800;
	padding: 15px;
	border-bottom: 1px solid rgba(var(--nebula), 0.4);
	background: rgba(var(--nebula), 0.05);
}
faq item question:before {
	content: "Q: ";
	font-weight: 400;
	font-size: 18px;
	color: rgb(var(--halt));
	padding-right: 10px;
}
faq item answer {
	padding: 15px;
}
faq item answer:before {
	content: "A: ";
	font-weight: 400;
	font-size: 18px;
	color: rgb(var(--terminal));
	padding-right: 10px;
}

footer {
	display: flex;
	flex-flow: column;
	flex: 1 1;
	width: 85%;
	height: 300px;
	padding: 30px 0px;
	margin: 100px 0px;
}
footer row {
	display: flex;
	flex-flow: row;
}

footer column {
	flex: 2 1;
	display: flex;
	flex-flow: column;
	min-width: 150px;
	max-width: 300px;
}

footer logo {
	display: flex;
	flex-flow: row;
	margin-bottom: 40px;
	font-size: 30px;
	font-weight: 400;
	color: rgb(var(--loonix));
	text-transform: uppercase;
	letter-spacing: 4px;
	display: flex;
	flex-flow: column;
}
footer logo a {
	display: flex;
	flex-flow: row;
	align-items: center;
}
footer logo a:hover {
	text-decoration: none;
}
footer logo span {
	font-size: 12px;
	color: #c2c2c2;
	font-weight: 600;
}
footer logo img.logo-square {
	max-height: 50px;
}
footer logo img.logo-text {
	max-height: 40px;
	padding-left: 10px;
}

footer heading {
	font-weight: 400;
	font-size: 15px;
	padding-bottom: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

footer li {
	font-size: 14px;
	padding: 3px 0px;
}

footer a:hover {
	text-decoration: underline;
}

/* SCREEN SIZE CHANGES */

@media only screen and (max-device-width: 1300px),
	only screen and (max-width: 1300px) {
	sidebar {
		display: none;
		flex-flow: column;
		height: 100%;
		flex: 0 0 100%;
		width: 100%;
		padding: 15px 0px;
		margin-bottom: -20px;
		border-right: none;
		max-height: calc(100vh - 0px);
	}

	sidebar nav_scroll {
		margin-top: 15px;
	}
	sidebar nav a {
		display: inherit;
		border-bottom: 1px solid rgba(var(--nebula), 0.1);
		padding: 15px 30px;
	}

	sidebar nav item {
		width: 100%;
		display: flex;
		align-items: center;
		font-size: 1.2em;
		font-weight: 500;
	}
	sidebar nav:first-child {
		border-top: 1px solid rgba(var(--nebula), 0.1);
	}
	sidebar nav item {
		font-size: 1.4em;
	}
	sidebar app_info {
		font-size: 1.1em;
	}
	sidebar logo {
		display: none;
	}
	featured featured-content h1 {
		font-size: 2.2em;
		text-align: center;
	}
	featured featured-content answer {
		font-size: 1.6em;
		text-align: center;
	}
	tags {
		flex-flow: column !important;
	}
	tags span {
		display: flex;
		flex-flow: row;
		align-items: center;
	}
	.copy-box {
		display: none;
	}
	.install,
	.launch {
		display: none !important;
	}

	footer logo {
		text-align: center;
	}

	body {
		flex-flow: column;
	}
	main {
		padding: 10px 10px;
	}
	.main-content {
		padding-top: 80px;
		scroll-padding-top: 80px;
	}

	/* keep right-aligned "Back to top" chips clear of the fixed menu button */
	.flex.end {
		margin-right: 85px;
	}

	.menu-button {
		display: flex;
	}
}

@media only screen and (max-device-width: 750px),
	only screen and (max-width: 750px) {
	.main-content {
		align-items: normal;
		scroll-padding-top: 110px;
	}

	items tags {
		flex: 2 1;
	}

	/* Mobile item rows: wrap instead of overflowing both edges */
	box-table items item {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	box-table items item item-meta {
		flex: 1 1 auto;
		margin-right: 0;
	}
	box-table items item tags {
		flex: 1 1 100%;
		flex-flow: wrap !important;
		margin-top: 8px;
	}
	box-table items item .button.small {
		flex: 0 0 auto;
		margin: 8px 0 0 auto;
	}
	box-table items item pre-x {
		display: none !important;
	}
	box-table box-meta {
		flex-wrap: wrap;
	}
	box-table box-meta name {
		flex: 1 1 55%;
	}
	box-table box-meta .button.small {
		white-space: nowrap;
	}

	.iframe-video {
		height: 300px;
	}

	footer {
		padding-bottom: 30px;
		height: auto;
		align-self: center;
	}
	footer row {
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}
	footer column {
		flex: 1 1;
		margin-top: 30px;
		text-align: center;
	}
}

@media only screen and (max-device-width: 500px),
	only screen and (max-width: 500px) {
	::-webkit-scrollbar {
		width: 10px;
	}
	.main-content {
		padding: 80px 0px 15px;
		overflow-x: hidden;
	}

	.iframe-video {
		height: 250px;
	}

	item pre-x {
		display: none !important;
	}

	.menu-button {
		right: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fadein,
	.fadeinfast,
	.dropitdown,
	.dropitdown.slow {
		animation: none !important;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}

	.main-content {
		scroll-behavior: auto;
	}
}
