.guide-sub-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.nav-toggle-button {
  color: #eeeeee;
  display: block;
  grid-column: 1 / 2;
  align-self: center;
  justify-self: center;
  text-transform: uppercase;
  border: 0;
  background-color: rgba(30, 30, 30, 0);
  padding: 10px;
  font-weight: bold;
}

.nav-toggle-button:hover {
  color: #811d18;
}

.nav-toggle-button:active {
  background-color: rgba(40, 40, 40, 0.9);
}

.nav-toggle-button-active-state {
  color: #811d18;
  background-color: rgba(53, 53, 53, 0.2);
}

.toggle-button-icon-active {
  fill: #811d18;
}

.toc {
  list-style-type: none;
  padding-left: 20px;
}

.toc * {
  list-style-type: none;
}

.toc-active {
  flex-grow: 1;
  display: flex;
  background-color: rgba(53, 53, 53, 0.2);
}

.guides-container {
  padding: 5px;
  padding-top: 0px;
  padding-bottom: 0px;
}

@media only screen and (max-width: 1000px) {
	.guides-container {
    padding: 3px;
	}
}


.active-guide {
  color: #44b0ff;
}

.guide-menu {
  display: flex;
  justify-content: space-evenly;
  grid-row: 3 / 4;
  grid-column: 1 / 4;
  background-color: #0c0c0c;
}

.SuperHUD {
  padding: 0;
}

.superhud-command {
  color: #ffbff1;
  margin-left: 20px;
}

.superhud-element {
	color: #98fde7;
}

.highlighted {
  color: orange;
  font-weight: bold;
}

.side-by-side {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  justify-content: space-around;
  align-items: center;
  	-webkit-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
	box-shadow: 
		0px 10px 25px rgba(50, 50, 93, 0.1),
		0px 5px 10px rgba(0, 0, 0, 0.18);
}

.side-by-side .with-caption {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  height: 100%;
  padding-bottom: 0;
}

.side-by-side pre {
  background-color: rgba(40, 40, 40, 0.6);
  border: 0px;
}

.column {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  justify-content: space-around;
  align-items: center;
}

.column code {
  background-color: rgba(40, 40, 40, 0.6);
  border-radius: 15px;
  color: orange;
}

.column blockquote {
  text-align: center;
  font-style: italic;
  color: #d3d3d3
}

.with-caption {
  display: flex;
  flex-direction: column;
  background-color: rgba(40, 40, 40, 0.6);
  border: 1px solid rgba(45, 45, 45, 0.5);
  border-radius: 15px;
  height: 100%;
}

.with-caption img {
  align-self: center;
  border-radius: 15px 15px 0px 0px;
}

.with-caption p {
  align-self: center;
  color: lightgray;
  font-size: 12px;
  font-style: italic;
}

.image-group {
  justify-self: stretch;
  background-color: rgba(40, 40, 40, 0.6);
  border: 1px solid rgba(45, 45, 45, 0.5);
  border-radius: 10px;
  height: 100%;
  padding: 8px;
}

.image-group-with-caption {
  display: flex;
  flex-direction: column;
}

.image-group-with-caption img {
  align-self: center;
  border-radius: 5px;
}

.image-group-with-caption p {
  color: lightgray;
  font-size: 12px;
  font-style: italic;
  align-self: center;
}

aside a {
  width: 100%;
  color: white;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

code {
  padding: 0.2em 0.4em;
}

pre code {
  padding: 0;
}

pre {
  background-color: #202020;
  border-radius: 15px;
  font-size: 85%;
  height: 100%;
  line-height: 1.45;
  overflow: auto;
  padding: 16px;
  white-space: pre-wrap;
}

pre code {
  word-wrap: normal;
}

ul {
  list-style-type: disc;
}

li ul {
  list-style-type: circle;
}