/* Global */
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
a {
  color: #00FF00;
  text-decoration: none;
}
a:hover {
  color: #008000;
  text-decoration: underline;
}
a:hover code {
  color: green;
}
a:focus {
  outline-color: #00FF00;
}

hr {
  border-color: #161616;
}

h1, h2, h3 {
  color: #00FF00;
  font-weight: 500;
}

pre {
  background: #000;
  border: 1px solid #161616;
  color: lime;
  padding: 1em 1.5em;
  overflow-x: auto;
}

code {
  color: #A9A9A9;
  font-size: 1.1em;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
blockquote {
  background: #000;
  border-left: 4px solid #008000;
  color: rgb(127.5, 127.5, 127.5);
  margin: 15px 0;
}
blockquote p {
  padding: 1em;
  margin: 0;
}
blockquote p + p {
  padding-top: 0;
}
blockquote p + .highlighter-rouge {
  margin-top: -15px;
}
blockquote ul {
  margin: 0;
  padding-left: 3em;
  padding-bottom: 1.5em;
}
blockquote strong {
  color: #008000;
}
blockquote.pkg-cmd::before {
  content: "$";
  color: lime;
  padding-right: 2px;
}
blockquote.pkg-cmd {
  padding: 10px;
}
blockquote.alert {
  border-color: #800000;
}
blockquote.alert strong {
  color: #800000;
}
blockquote.warning {
  border-color: #e6ac00;
}
blockquote.warning strong {
  color: #e6ac00;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.btn {
  background-color: #323232;
  color: #D6D6D6;
  border: 2px solid #2D2D2D;
  display: inline-flex;
  text-decoration: none;
  padding: 0.25em 1em;
  margin: 0.25em;
  font-size: 1em;
  line-height: 1.5em;
}
.btn:focus {
  background-color: rgb(37.25, 37.25, 37.25);
  color: #fff;
}
.btn:hover {
  background-color: rgb(62.75, 62.75, 62.75);
  color: #fff;
  text-decoration: none;
}
.btn:active {
  background-color: rgb(37.25, 37.25, 37.25);
  border-color: rgb(32.25, 32.25, 32.25);
  color: #00FF00;
}
.btn:disabled, .btn.disabled {
  /* For best results, do not use as <a> tag */
  background: #000;
  color: rgb(170.85, 170.85, 170.85);
  cursor: not-allowed;
  transition: border-color 0.25s;
}
.btn:disabled img, .btn:disabled span, .btn.disabled img, .btn.disabled span {
  filter: grayscale(1);
  opacity: 0.75;
}
.btn:disabled:active, .btn.disabled:active {
  border-color: #800000;
  transition: none;
}
.btn {
  /* Icons */
}
.btn img,
.btn svg {
  height: 24px;
  width: 24px;
  margin: auto;
  margin-right: 0.25em;
}
.btn svg {
  height: 16px;
  width: 16px;
  margin-right: 0.5em;
}
.btn svg path {
  fill: #D6D6D6;
}

.btn.ext {
  background-image: url(/assets/fa/external.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 1em;
  padding-right: 2em;
  filter: grayscale(1);
}
.btn.ext:active {
  filter: grayscale(0);
}

/* Copy button for code blocks */
pre {
  position: relative;
  white-space: break-spaces;
}
pre.copied {
  animation: pre-block-copied 0.75s ease-in-out forwards;
  border-image-slice: 1;
}
pre.copied .copy-btn {
  background: #161616;
  border-color: transparent;
}
pre:hover .copy-btn, pre:focus .copy-btn {
  opacity: 1;
}

.copy-btn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  padding: 0.35em;
  margin: 0;
}
.copy-btn:hover, .copy-btn:focus {
  background: #323232;
  color: #fff;
}
.copy-btn img {
  height: 1em;
  width: 1em;
  margin: auto;
}

@keyframes pre-block-copied {
  0% {
    border-image: linear-gradient(315deg, #161616, #161616, #161616, #161616) 1;
  }
  10% {
    border-image: linear-gradient(315deg, #008000, #161616, #161616, #161616) 1;
  }
  20% {
    border-image: linear-gradient(315deg, #008000, #008000, #161616, #161616) 1;
  }
  30% {
    border-image: linear-gradient(315deg, #008000, #008000, #008000, #161616) 1;
  }
  40% {
    border-image: linear-gradient(315deg, #008000, #008000, #008000, #008000) 1;
  }
  50% {
    border-color: #008000;
  }
  100% {
    border-color: #161616;
  }
}
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
footer {
  border-top: 1px solid gray;
  padding: 1em 0;
  color: gray;
  font-size: 0.9em;
  margin-top: auto;
  background: #000;
  line-height: 18px;
  z-index: 5;
}
footer .left {
  float: left;
}
footer .left a {
  color: gray;
  text-decoration: dashed;
  text-decoration-line: underline;
}
footer .right {
  float: right;
  position: relative;
  top: 0.6em;
}
footer .social-links {
  float: right;
  position: relative;
  top: 0.2em;
  margin-left: 0.5em;
}
footer .social-links svg {
  width: 32px;
  height: 32px;
  padding: 0 0.15em;
  transition: opacity 0.2s;
  opacity: 1;
}
footer .social-links svg path {
  fill: #00FF00;
}
footer .social-links a {
  text-decoration: none;
}
footer .social-links a:hover svg, footer .social-links a:focus svg {
  opacity: 0.75;
}

@media screen and (max-width: 600px) {
  footer.left, footer.right {
    text-align: center;
    padding: 0.5em 0;
    float: none;
    position: static;
  }
  footer .social-links {
    margin-top: 0.5em;
  }
}
/* Sticky footer */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.site-header {
  background: rgba(0, 0, 0, 0.25);
  background-image: url(/assets/img/header.svg);
  background-size: contain;
  background-position: -350px center;
  backdrop-filter: blur(20px);
  box-shadow: 0px 1px 4px #000;
  height: 125px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease-out;
}
.site-header .site-inner {
  padding-top: 15px;
  padding-bottom: 15px;
}

#mobile-menu-button,
#mobile-menu-toggle {
  display: none;
}

.site-header-content {
  display: flex;
  height: 90px;
}

.site-title {
  text-decoration: none !important;
  margin: auto auto auto 0;
  transition: opacity 0.25s ease-in-out;
}
.site-title * {
  vertical-align: middle;
}
.site-title span {
  font-size: 2em;
}
.site-title:hover {
  color: #00FF00;
  opacity: 0.66;
}
.site-title:active {
  color: white;
  opacity: 1;
  transition: none;
}
.site-title:active img {
  filter: grayscale(1) contrast(2);
}

.site-nav {
  margin: auto;
  margin-right: 0;
}

/* Desktop */
@media (min-width: 721px) {
  .nav-menu {
    display: flex;
  }
  .nav-menu .nav-btn {
    color: #00FF00;
    margin: auto;
  }
  .nav-menu .nav-btn.active {
    color: white;
    font-weight: bold;
  }
  .nav-menu .nav-btn + .nav-btn {
    padding-left: 0.5em;
    margin-left: 0.5em;
    border-left: 2px solid #008000;
  }
}
/* Improve background */
@media (max-width: 920px) {
  .site-header {
    background-size: cover;
  }
}
/* Mobile */
@media (max-width: 720px) {
  html, body {
    min-width: 340px;
  }
  #mobile-menu-button {
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    display: block;
    position: fixed;
    top: 3.85em;
    right: 1.5em;
    padding: 0.5em;
    z-index: 10;
  }
  #mobile-menu-button svg {
    height: 1.5em;
    width: 1.5em;
  }
  #mobile-menu-button svg path {
    fill: #00FF00;
  }
  .nav-menu {
    position: fixed;
    top: 105px;
    right: 1em;
    background: #000;
    border: 1px solid #2D2D2D;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    max-width: 15em;
    /* Initially & animation */
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transform-origin: top right;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, visibility 0.25s ease-in-out;
  }
  .nav-menu .nav-btn {
    padding: 0.5em;
    width: 100%;
  }
  .nav-menu .nav-btn:hover, .nav-menu .nav-btn:focus {
    color: #008000;
    text-decoration: none;
  }
  .nav-menu .nav-btn.active, .nav-menu .nav-btn:active {
    color: white;
  }
  .nav-menu .nav-btn.active {
    background: #222;
    margin: 0 -1em;
    padding: 0.5em 1.5em;
    width: calc(100% + 2em);
  }
  #mobile-menu-toggle:checked ~ .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  #mobile-menu-toggle:checked ~ #mobile-menu-button {
    background: #000;
    border-color: #2D2D2D;
  }
}
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
html, body {
  background: #161616;
  color: white;
  margin: 0;
}

body {
  overflow-y: scroll;
}

main {
  padding-top: 125px;
}

p {
  margin: 1em 0;
  line-height: 24px;
}

::selection {
  background-color: green;
  color: white;
}

.wrapper {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (max-width: 800px) {
  .wrapper {
    max-width: 770px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* Clearfix */
.wrapper:after,
.footer-col-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

article {
  margin: auto 0 4em 0;
}

.center {
  text-align: center;
}

.shrink {
  max-width: 600px;
  margin: auto;
}

.grey {
  color: grey;
}

::-webkit-scrollbar {
  width: 18px;
  height: 18px;
  z-index: 100;
  background: black;
}

::-webkit-scrollbar-thumb {
  height: 6px;
  border: 4px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
  z-index: 100;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
  z-index: 100;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.site-switcher {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  padding-top: 6px;
}
.site-switcher .tab {
  background: transparent;
  border: 1px solid #2D2D2D;
  border-bottom: 1px solid #2D2D2D;
  border-bottom-color: transparent !important;
  color: white;
  display: inline-block;
  padding: 4px 8px;
}
.site-switcher .tab:hover, .site-switcher .tab:focus {
  border-color: rgb(70.5, 70.5, 70.5);
  color: rgb(229.5, 229.5, 229.5);
  text-decoration: none;
}
.site-switcher .tab:active {
  border-color: #606060;
}
.site-switcher .tab.active {
  background: #000;
  color: #00FF00;
  border-color: #00FF00;
}
.site-switcher .tab.disabled {
  cursor: not-allowed;
  color: rgb(170.85, 170.85, 170.85);
  opacity: 0.5;
}

.language-diff {
  /* Insert */
}
.language-diff .gi {
  color: lime;
}
.language-diff {
  /* Delete */
}
.language-diff .gd {
  color: red;
}

.language-json {
  /* "Parent" */
}
.language-json .p {
  color: grey;
}
.language-json {
  /* Key */
}
.language-json .nl {
  color: aqua;
}
.language-json {
  /* Value (string) */
}
.language-json .s2 {
  color: lime;
}
.language-json {
  /* Value (integer) */
}
.language-json .mi {
  color: orange;
}
.language-json {
  /* Value (boolean) */
}
.language-json .kc {
  color: magenta;
}

.language-ini {
  /* Workaround for .desktop files */
}
.language-ini .s + .err {
  /* Key */
  color: aqua !important;
}
.language-ini .s + .err + .nn {
  color: orange;
}
.language-ini .s + .err + .nn ~ .err {
  color: lime;
}
.language-ini {
  /* Key + Equals */
}
.language-ini .py,
.language-ini .p {
  color: aqua;
}
.language-ini {
  /* Value */
}
.language-ini .s {
  color: lime;
}
.language-ini {
  /* Group */
}
.language-ini .nn {
  color: darkgrey;
}

.language-shell .nb {
  color: white;
}
.language-shell {
  /* Comment */
}
.language-shell .c {
  color: rgb(86.7, 86.7, 86.7);
}
.language-shell {
  /* Parameter starting with dash */
}
.language-shell .nt {
  color: white;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
table {
  width: 100%;
  border-spacing: 0;
}
table tr {
  background: #121212;
}
table tr:nth-child(even) {
  background: #181818;
}
table th, table td {
  text-align: left;
  padding: 0.5em 1em;
  vertical-align: middle;
  border-left: 1px solid #121212;
}
table th {
  background: #282828;
  color: #969696;
  font-weight: 600;
}
table tbody td {
  vertical-align: top;
}
table.has-icons tbody td {
  vertical-align: middle;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.transition-fade {
  transition: opacity 0.3s;
  opacity: 1;
}

html.is-animating .transition-fade {
  opacity: 0;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
@font-face {
  font-family: "Play";
  src: url("/assets/lib/Play-Regular.ttf") format("truetype");
}
body {
  font-family: "Play", "Ubuntu", "DejaVu Sans", "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
/* Local */
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
#error-page {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-color: black;
  background-image: url(/assets/img/error.jpg);
  background-position: center;
  background-repeat: no-repeat;
}

#error-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 6em;
  padding: 1em 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
}
#error-text h3 {
  font-size: 2em;
  margin: 0;
  margin-bottom: 0.25em;
  color: red;
}
#error-text p {
  font-size: 1em;
  margin: 0;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.splash {
  height: calc(40vh + 125px);
  background: black;
  overflow: hidden;
  position: relative;
  font-size: 1.1em;
  margin-top: -125px;
  margin-bottom: 4em;
}
.splash h2 {
  color: white;
}
.splash .chroma-backdrop {
  height: calc(40vh + 125px);
  pointer-events: none;
}
.splash .chroma-backdrop .chroma-ring {
  position: absolute;
  height: 150vh;
  top: -65vh;
  left: -5vw;
  animation: rotate 5s linear infinite;
}
.splash .splash-details {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  position: absolute;
  left: 50vw;
  top: 125px;
  bottom: 0;
  right: 0;
  max-width: 720px;
  padding: 1em 2em;
}

.splash-details-inner {
  margin: auto 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@media (min-width: 721px) {
  .splash .splash-details {
    max-width: 600px;
  }
}
@media (max-width: 720px) {
  .splash {
    height: 70vh;
  }
  .splash .splash-details {
    left: 0;
  }
}
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.tab-container {
  margin: 30px 0;
}

.tabs {
  display: flex;
}

.btn-tab {
  background: rgb(12.75, 12.75, 12.75);
  border: 1px solid #121212;
  color: #fff;
  cursor: pointer;
  display: flex;
  padding: 8px 12px;
  margin: 0;
  outline: 0;
}
.btn-tab img {
  filter: grayscale(1);
  max-height: 15px;
  min-width: 15px;
  vertical-align: middle;
}
.btn-tab span {
  padding-left: 5px;
}
.btn-tab:hover, .btn-tab:focus {
  border-color: rgb(43.5, 43.5, 43.5);
  color: rgb(229.5, 229.5, 229.5);
  border-bottom-color: transparent;
}
.btn-tab:disabled {
  pointer-events: none;
  color: rgb(170.85, 170.85, 170.85);
}

#radio-download-stable:checked ~ .tabs #btn-tab-stable {
  background: #000;
  color: #00FF00;
  cursor: default;
  border-color: #00FF00;
  border-bottom-color: transparent;
}
#radio-download-stable:checked ~ .tabs #btn-tab-stable img {
  filter: grayscale(0);
}
#radio-download-stable:checked ~ #tab-content-stable {
  display: block;
}

#radio-download-preview:checked ~ .tabs #btn-tab-preview {
  background: #000;
  color: #00FF00;
  cursor: default;
  border-color: #00FF00;
  border-bottom-color: transparent;
}
#radio-download-preview:checked ~ .tabs #btn-tab-preview img {
  filter: grayscale(0);
}
#radio-download-preview:checked ~ #tab-content-preview {
  display: block;
}

.tab-content {
  background: #000;
  border: 1px solid #121212;
  display: none;
  margin: -1px 0;
  padding: 10px;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
.device-list-info {
  background: #000;
  border: 1px solid #2D2D2D;
  padding: 1em;
  margin: 1em 0;
}

.device-backend-links .link {
  display: inline-flex;
  margin-right: 2em;
}
.device-backend-links svg {
  height: 16px;
  width: 16px;
  margin: auto 0.25em;
}
.device-backend-links svg path {
  fill: #00FF00;
}

.device-table img {
  height: 24px;
  width: 24px;
  vertical-align: middle;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
/****************************
 * Index page
*****************************/
.distros {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
}

.distro {
  --distro-accent: $secondary;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  background: #000;
  border: 1px solid #2D2D2D;
  margin: 0.5em;
  padding: 1em;
  width: 12em;
  transition: border-color 0.25s, filter 0.25s;
}
.distro img {
  height: 5em;
  margin: 0 auto;
  filter: brightness(0.8);
  transition: filter 0.25s;
}
.distro span {
  display: block;
  margin: 1em auto 0.25em;
  color: rgb(170.85, 170.85, 170.85);
  transition: color 0.25s;
}
.distro:hover, .distro:focus {
  border-color: var(--distro-accent);
  text-decoration: none;
}
.distro:hover img, .distro:focus img {
  filter: none;
}
.distro:hover span, .distro:focus span {
  color: var(--distro-accent);
}
.distro:active, .distro.active {
  background-color: var(--distro-accent);
}
.distro:active img, .distro.active img {
  filter: drop-shadow(0px 0px 10px black);
  transition: none;
}
.distro:active span, .distro.active span {
  color: black;
}
.distro:active, .distro.active {
  /* Some logos contrast better with a 'mono' filter */
}
.distro:active#arch img, .distro:active#debian img, .distro:active#fedora img, .distro:active#opensuse img, .distro:active#manjaro img, .distro:active#zorin img, .distro.active#arch img, .distro.active#debian img, .distro.active#fedora img, .distro.active#opensuse img, .distro.active#manjaro img, .distro.active#zorin img {
  filter: grayscale(1) brightness(0.25);
}

@media screen and (max-width: 720px) {
  .distros {
    justify-content: center;
  }
  .distro {
    width: 8em;
  }
  .distro img {
    height: 3.5em;
  }
}
/* Badges */
.distro.community {
  position: relative;
  overflow: hidden;
}
.distro.community::before {
  content: "Community";
  background: #2D2D2D;
  color: white;
  font-size: 0.7em;
  position: absolute;
  top: 1.5em;
  right: -4.25em;
  padding: 0.25em 4em;
  transform: rotate(45deg);
}

.distro.detected {
  animation: distro-detected 2s infinite;
  border-radius: 5px;
}

@keyframes distro-detected {
  0% {
    box-shadow: 0px 0px 2px var(--distro-accent);
  }
  50% {
    box-shadow: 0px 0px 10px var(--distro-accent);
  }
  100% {
    box-shadow: 0px 0px 2px var(--distro-accent);
  }
}
#unsupported-os {
  background: #000;
  border: 1px solid #800000;
  display: flex;
  margin: 1.75em;
  animation: unsupported-glow 2s infinite;
}
#unsupported-os img {
  margin: auto 4em;
  height: 5em;
}
#unsupported-os h2 {
  color: #ff8080;
}

@keyframes unsupported-glow {
  0% {
    box-shadow: 0px 0px 2px #800000;
  }
  50% {
    box-shadow: 0px 0px 10px #800000;
  }
  100% {
    box-shadow: 0px 0px 2px #800000;
  }
}
.logo-legal {
  font-size: 0.75em;
  margin-top: 4em;
}
.logo-legal p {
  margin: 0;
}

/****************************
 * Distro Instructions
*****************************/
.download-page .distro-logo {
  width: 100%;
  padding: 2em;
}
.download-page .download-instructions img {
  max-width: 100%;
}

.backend-list .backend {
  display: inline-flex;
}
.backend-list .backend img {
  height: 32px;
  width: 32px;
  vertical-align: middle;
  margin: auto 0.25em;
}
.backend-list .backend span {
  margin: auto;
}

@media screen and (max-width: 720px) {
  .download-page .distro-logo {
    padding: 1em;
  }
}
@media screen and (max-width: 540px) {
  .download-page .distro-logo {
    display: none;
  }
}
.back-arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  margin-top: 1.75em;
}
.back-arrow img {
  position: absolute;
  right: -1em;
  width: 1.5em;
  height: 1.5em;
}
.back-arrow:hover img, .back-arrow:focus img {
  opacity: 0.5;
}

.view-externally {
  font-size: 0.8rem;
}
.view-externally svg {
  height: 0.9em;
  width: 0.9em;
  vertical-align: middle;
  margin-left: 0.1em;
  margin-right: 0.25em;
}
.view-externally svg path {
  fill: #00FF00;
}
.view-externally:hover svg path {
  fill: #008000;
}

/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
@media screen and (min-width: 541px) {
  .feature {
    display: flex;
    flex-direction: row;
    padding: 1em 0;
    margin: 0;
  }
  .feature.last {
    margin-bottom: 4em;
  }
  .feature-image-wrapper,
  .feature-text-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .feature-image-wrapper img {
    margin: auto;
    width: 100%;
    max-height: 12em;
    max-width: 12em;
    margin: 1em 0;
  }
  .feature-text-wrapper {
    max-width: 540px;
  }
  .feature-title {
    margin-top: auto;
    margin-bottom: 0;
  }
  .feature-text {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 0;
    margin-left: 0;
    max-width: 360px;
  }
  .feature-image-wrapper img {
    /* Align right */
    margin-left: auto;
    margin-right: 1em;
  }
  .btn {
    /* Align left */
    margin-right: auto;
  }
  /* Alternating rows */
  .feature:nth-of-type(even) {
    background: #000;
  }
  /* Feature page tweaks */
  .feature.large .feature-image-wrapper img {
    max-height: 24em;
    max-width: 24em;
  }
  .feature.large {
    /* Swap sides for every other one */
  }
  .feature.large:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .feature.large:nth-child(odd) .feature-text-wrapper {
    text-align: right;
  }
  .feature.large:nth-child(odd) .feature-text {
    margin-left: auto;
    margin-right: 0;
  }
  .feature.large:nth-child(odd) .btn {
    margin-left: auto;
    margin-right: 0;
  }
  .feature.large:nth-child(odd) .feature-image-wrapper img {
    /* Align left */
    margin-left: 1em;
    margin-right: auto;
  }
}
@media screen and (max-width: 540px) {
  .feature {
    padding: 2em;
  }
  .feature .feature-image-wrapper {
    display: flex;
  }
  .feature .feature-text-wrapper {
    text-align: center;
  }
  .feature img {
    margin: auto;
    width: 10em;
  }
  .feature.last {
    margin-bottom: 2em;
  }
  .feature:nth-of-type(even) {
    background: #000;
  }
}
/* Colours */
/* Fonts */
/* Screen Sizes */
/* Transitions */
/* Dimensions */
/* Desktop */
@media (min-width: 541px) {
  .image-box {
    box-shadow: 0px 0px 0px #008000;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: stretch;
    position: relative;
    min-height: 380px;
    margin-bottom: 4em;
    width: 100%;
  }
  .image-box .item {
    flex-basis: 100%;
  }
  .image-box .item:last-of-type .item-box {
    border-bottom: none;
  }
  .image-box .item:hover .item-box, .image-box .item:focus .item-box {
    background: linear-gradient(to right, rgba(0, 128, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .image-box .item-box {
    border-bottom: 1px solid #2D2D2D;
    cursor: pointer;
    padding: 8px;
    width: 33%;
  }
  .image-box .item-title {
    display: flex;
    font-size: 1.1em;
  }
  .image-box .item-title span {
    margin: auto 4px;
  }
  .image-box p {
    color: rgb(170.85, 170.85, 170.85);
    margin-left: 2.25em;
  }
  .image-box .item-icon {
    padding: 4px;
    height: 32px;
    width: 32px;
  }
  .image-box .image-box-radio:checked + .item .item-box {
    background: linear-gradient(to right, rgba(0, 128, 0, 0.25), rgba(0, 0, 0, 0));
  }
  .image-box .image-box-radio:checked + .item + .image {
    opacity: 1;
  }
  .image-box .image {
    position: absolute;
    left: 33%;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    max-height: 380px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .image-box .image img {
    max-height: 380px;
    margin: auto;
    object-fit: contain;
  }
}
/* Mobile */
@media (max-width: 540px) {
  .image-box .item-title {
    display: flex;
    color: #00FF00;
    font-size: 1.1em;
    text-align: center;
    border-bottom: 1px solid #00FF00;
    padding-bottom: 0.5em;
  }
  .image-box .item-title img {
    height: 1.5em;
    width: 1.5em;
    margin-left: auto;
  }
  .image-box .item-title span {
    margin: auto 0.5em;
    margin-right: auto;
  }
  .image-box p {
    text-align: center;
    padding: 0 2em;
    margin: 1em 0;
  }
  .image-box .image img {
    max-width: 100%;
  }
  .image-box .item ~ .item .item-box {
    margin-top: 2em;
  }
}

/*# sourceMappingURL=polychromatic.css.map */