/* -*- coding: utf-8 -*-

 Copyright 2023 Thomas Castleman <contact@draugeros.org>

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 MA 02110-1301, USA. */
* {
    margin: 0;
    padding: 0;
}
:root {
  --nav-font-size: 1vw;
  --nav-summary-tittle-size: 1.5vw;
  --nav-summary-text-size: 1vw;
  --container-width: 65vw;
  --nav-width: 40vw;
  --font-color: #e8e6e3; /*debug var*/
}


input[type=checkbox] {
	transform: scale(1.2);
}

@media only screen and (max-width: 1200px) {
	:root {
		--nav-font-size: 2vw;
		--nav-summary-tittle-size: 3vw;
		--nav-summary-text-size: 2vw;
		--container-width: 75vw;
		--nav-width: 50vw;
		--font-color: #e8e6e3; /*debug var*/
	}
	input[type=checkbox] {
		transform: scale(1.5);
		font-size: 3vw;
	}
}

@media only screen and (max-width: 600px) {
	:root {
		--nav-font-size: 3vw;
		--nav-summary-tittle-size: 4vw;
		--nav-summary-text-size: 3vw;
		--container-width: 85vw;
		--nav-width: 70vw;
		--font-color: #e8e6e3; /*debug var*/
	}
	input[type=checkbox] {
		transform: scale(1.7);
	}
}


body :not(iframe) {
    border-color: #FFFFFF00;
    color: var(--font-color);
    font-family: Open Sans, Ubuntu, Helvetica, Arial, sans-serif;
}

body {
    opacity: 1 !important;
    transition: none !important;
    background-color: #101112;
    border-color: #101112 !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

summary {
	font-size: var(--nav-summary-tittle-size);
}
.footer {
    text-align: center;
    opacity: 1 !important;
    background: rgb(59, 59, 59);
    filter: drop-shadow(0 0 0.25em white); 
    bottom: 0;
    padding: 1em 0;
    margin-top: auto;
}
.title {
    color:#FFFFFF;
    font-size:2rem;
    font-weight:600;
    line-height:1.125;
}
.subtitle {
    color:#FFFFFF;
    font-size:1.25rem;
    font-weight:400;
    line-height:1.25;
}

h1, h2, h3, h4, p {
    font-family: Open Sans, Ubuntu, Helvetica, Arial, sans-serif;
    z-index: 1;
}

.centered-container {
    z-index: 100;
    background-color: #101112;
    width: 90%; /* - Sets the width to 90% the screen width - */
    margin: 0 5%; /* - Keeps it Centered - */
	box-shadow: 0 0 400px #990000;
    border-radius: 10px;
}

.warning {
    color: rgb(209, 108, 128);
    filter: drop-shadow(0 0 0.25em rgb(190, 121, 133));
    font-size: 1.25rem;
    width: 70%;
    margin-left: 15%;
    margin-bottom: 1em;
}
.warning span {
    color: white;
    filter: drop-shadow(0 0 0);
}
.warning-message {
    color: rgb(194, 62, 88);
    position: relative;
    width: 75%;
    margin-left: 12.5%;
}
.warning-message i {
    color: orange;
    opacity: 0.5;
    position: absolute;
    transform: translate(-12px, -12px);
}
.warning-message:hover i {
    opacity: 1;
}
.explanation {
    margin: 1em 0;
}
.bolded {
    color: inherit;
    font-weight: bolder;
}
.column {
     width:400px;
     float:left
}
/* Links [I liked this, it's smart] */
a:link {
    color: white;
}
a:visited {
    color: grey;
}
a:hover {
    color: #FF3939;
}
/* End Links*/
/* Desktop Top Nav */
#topnav {
    z-index: 9999;
    display: block;
    text-align: center;
    background-color: #101112;
    filter: drop-shadow(0 0 0.25em crimson);
    position: sticky;
    top: 0;
}
#topnav ul {
    list-style: none;
    font-size: 0;
}
#topnav ul li {
    font-size: 1rem;
    display: inline-flex;
}
#topnav ul li a {
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 1em;
}
#topnav ul li a:hover {
    background-color: red;
}
#topnav ul li button {
    font-weight: bold;
    padding: 1em;
    font-size: 1rem;
    background: none;
    border: none;
    color: white;
}
#topnav ul li button:hover {
    background-color: red;
    cursor: pointer;
}
.nav-dropshadow {
    background-color: red ;
    width: 100%;
    height: 4px;
}
#desktopAbout,
#desktopContributing,
#desktopCommunity {
    position: absolute;
    z-index: 2000;
    width: 100%;
    top: -50em;
    text-align: center;
    transition: 0.35s;
}
#desktopAbout ul, 
#desktopContributing ul,
#desktopCommunity ul {
    list-style: none;
    /* display: none; */
}
#desktopAbout ul li,
#desktopContributing ul li,
#desktopCommunity ul li {
    display: inline-flex;
    width: 100%;
    background-color: #101112;
}
#desktopAbout ul li a,
#desktopContributing ul li a,
#desktopCommunity ul li a {
    width: 100%;
    color: white;
    text-decoration: none;
    padding: 1em;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
}
#desktopAbout ul li a:hover,
#desktopContributing ul li a:hover,
#desktopCommunity ul li a:hover {
    background-color: crimson;
}
/* End Desktop Top Nav */
/* Start Mobile Nav */
#mobile-nav {
    z-index: 1000;
    display: none;
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #101112;
    filter: drop-shadow(0 0 0.25em gray);
}
#mobile-nav button {
    border: none;
    background: none;
    font-size: 2rem;
    color: white;
    padding-top: 0.5em;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    transition: 0.35s;
    float: left;
}
#mobile-nav button:hover {
    color: crimson;
    cursor: pointer;
    transition: 0.35s;
}
#mobile-nav .siteName {
    font-family: 'Ubuntu';
    color: white;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    padding: 0.4em 0;
    width: 90%;
}
#mobileSacrafice {
    z-index: 900;
    width: 100%;
    position: sticky;
    top: 4.18em;
}
#mobile-options {
    background-color: rgb(65, 62, 62);
    width: 100%;
    position: absolute;
    left: -50em;
    top: 0;
    z-index: 9990;
    transition: 0.35s;
}
#mobile-options ul {
    list-style: none;
}
#mobile-options ul li {
    display: flex;
}
#mobile-options ul li a {
    font-weight: bold;
    width: 100%;
    color: white;
    text-decoration: none;
    padding: 1.5em;
    border-bottom: 2px solid red;
    transition: 0.35s;
}
#mobile-options ul li a:hover {
    background-color: crimson;
    transition: 0.35s;
}

#mobileAbout {
    font-weight: bold;
    z-index: 800;
    background-color: rgb(65, 62, 62);
    position: absolute;
    left: -50em;
    width: 100%;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    top: 4em;
    transition: 0.35s;
}
#mobileContributing {
    font-weight: bold;
    z-index: 800;
    background-color: rgb(65, 62, 62);
    position: absolute;
    left: -50em;
    width: 100%;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    transition: 0.35s;
}
#mobileCommunity {
    font-weight: bold;
    z-index: 800;
    background-color: rgb(65, 62, 62);
    position: absolute;
    left: -50em;
    width: 100%;
    border-top: 2px solid red;
    border-bottom: 2px solid red;
    transition: 0.35s;
}
#mobileAbout ul,
#mobileContributing ul,
#mobileCommunity ul {
    list-style: none;
}
#mobileAbout ul li,
#mobileContributing ul li,
#mobileCommunity ul li {
    display: flex;
}
#mobileAbout ul li a,
#mobileContributing ul li a,
#mobileCommunity ul li a {
    color: white;
    width: 100%;
    text-align: left;
    padding: 1.5em 1em;
    border-bottom: 2px solid red;
    text-decoration: none;
}
#mobileAbout ul li a:hover,
#mobileContributing ul li a:hover,
#mobileCommunity ul li a:hover {
    background-color: crimson;
}

/* End Mobile Nav */
summary {
	padding: 2px 8px;
	border-radius: 6px;
	background-color: #333333;
}

summary:hover{
	background-color: #555555;
}

details[open] summary{
	background-color: #555555;
}

.image-menu {
  background-color: #101112;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.horizontal-block {
  background-color: #101112;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
}

/* Style the links inside the navigation bar */
.image-menu a {
  float: left;
  color: #f2f2f2;
  background-color: #101112;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
  font-size: 17px;
}

.image-menu p {
  float: left;
  color: #f2f2f2;
  background-color: #101112;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
  font-size: 17px;
}

.image-menu h2 {
  float: left;
  color: #f2f2f2;
  background-color: #101112;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.image-menu a:hover {
  background-color: #dddddd;
  color: black;
}

@media only screen and (max-width: 1200px) {
	.image-menu {
		display: grid;
	}
}

.bg
{
  width: 99%;
  height: 300px;
  z-index: 0;
  position: absolute;
}

.table-visible {
	border: 1px solid #ffffff !important;
}

table{
    border-collapse: collapse;
	border-spacing: 0;
	width: 70%;
	display: table;
}

.tr {
    border: 1px solid #ffffff !important;
    width: 100%;
    padding: 14px 16px;
}

.th {
    border: 1px solid #ffffff !important;
    padding: 14px 16px;
}

.td {
    border: 1px solid #ffffff !important;
    padding: 14px 16px;
}

.tr-hidden {
    width: 100%;
    padding: 14px 16px;
}

.th-hidden {
    padding: 14px 16px;
}

.td-hidden{
    padding: 14px 16px;
}


/* The dropdown container */
.dropdown {
	float: left;
	overflow: hidden;
	background-color: #101112;
}

/* Dropdown button */
.dropdown .dropbtn {
	overflow: hidden;
	font-size: var(--nav-font-size);
	border: none;
	outline: none;
	color: white !important;
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit; /* Important for vertical align on mobile phones */
	margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn {
  background-color: #FF3939 !important;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9 !important;
  color: white !important;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 200;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: white !important;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #dddddd !important;
  color: black !important;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.field:not(:last-child) {
    margin-bottom: 0.75rem;
}

.field.has-addons {
    display: flex;
    justify-content: flex-start;
}

.field.has-addons .control:not(:last-child) {
    margin-right: -1px;
}

.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
    border-radius: 0;
}

.field.has-addons .control:first-child .button,
.field.has-addons .control:first-child .input,
.field.has-addons .control:first-child .select select {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.field.has-addons .control:last-child .button,
.field.has-addons .control:last-child .input,
.field.has-addons .control:last-child .select select {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.field.has-addons .control .button:not([disabled]).is-hovered,
.field.has-addons .control .button:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]).is-hovered,
.field.has-addons .control .input:not([disabled]):hover,
.field.has-addons .control .select select:not([disabled]).is-hovered,
.field.has-addons .control .select select:not([disabled]):hover {
    z-index: 2;
}

.field.has-addons .control .button:not([disabled]).is-active,
.field.has-addons .control .button:not([disabled]).is-focused,
.field.has-addons .control .button:not([disabled]):active,
.field.has-addons .control .button:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]).is-active,
.field.has-addons .control .input:not([disabled]).is-focused,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .input:not([disabled]):focus,
.field.has-addons .control .select select:not([disabled]).is-active,
.field.has-addons .control .select select:not([disabled]).is-focused,
.field.has-addons .control .select select:not([disabled]):active,
.field.has-addons .control .select select:not([disabled]):focus {
    z-index: 3;
}

.field.has-addons .control .button:not([disabled]).is-active:hover,
.field.has-addons .control .button:not([disabled]).is-focused:hover,
.field.has-addons .control .button:not([disabled]):active:hover,
.field.has-addons .control .button:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]).is-active:hover,
.field.has-addons .control .input:not([disabled]).is-focused:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover,
.field.has-addons .control .select select:not([disabled]).is-active:hover,
.field.has-addons .control .select select:not([disabled]).is-focused:hover,
.field.has-addons .control .select select:not([disabled]):active:hover,
.field.has-addons .control .select select:not([disabled]):focus:hover {
    z-index: 4;
}

.field.has-addons .control.is-expanded {
    flex-grow: 1;
}

.field.has-addons.has-addons-centered {
    justify-content: center;
}

.field.has-addons.has-addons-right {
    justify-content: flex-end;
}

.field.has-addons.has-addons-fullwidth .control {
    flex-grow: 1;
    flex-shrink: 0;
}

.field.is-grouped {
    display: flex;
    justify-content: flex-start;
}

.field.is-grouped > .control {
    flex-shrink: 0;
}

.field.is-grouped > .control:not(:last-child) {
    margin-bottom: 0;
    margin-right: 0.75rem;
}

.field.is-grouped > .control.is-expanded {
    flex-grow: 1;
    flex-shrink: 1;
}

.field.is-grouped.is-grouped-centered {
    justify-content: center;
}

.field.is-grouped.is-grouped-right {
    justify-content: flex-end;
}

.field.is-grouped.is-grouped-multiline {
    flex-wrap: wrap;
}

.field.is-grouped.is-grouped-multiline > .control:last-child,
.field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
    margin-bottom: 0.75rem;
}

.field.is-grouped.is-grouped-multiline:last-child {
    margin-bottom: -0.75rem;
}

.field.is-grouped.is-grouped-multiline:not(:last-child) {
    margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
    .field.is-horizontal {
        display: flex;
    }
}

.field-label .label {
    font-size: inherit;
}

@media screen and (max-width: 768px) {
    .field-label {
        margin-bottom: 0.5rem;
    }
}

@media screen and (min-width: 769px), print {
    .field-label {
        flex-basis: 0;
        flex-grow: 1;
        flex-shrink: 0;
        margin-right: 1.5rem;
        text-align: right;
    }

    .field-label.is-small {
        font-size: 0.75rem;
        padding-top: 0.375em;
    }

    .field-label.is-normal {
        padding-top: 0.375em;
    }

    .field-label.is-medium {
        font-size: 1.25rem;
        padding-top: 0.375em;
    }

    .field-label.is-large {
        font-size: 1.5rem;
        padding-top: 0.375em;
    }
}

.field-body .field .field {
    margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
    .field-body {
        display: flex;
        flex-basis: 0;
        flex-grow: 5;
        flex-shrink: 1;
    }

    .field-body .field {
        margin-bottom: 0;
    }

    .field-body > .field {
        flex-shrink: 1;
    }

    .field-body > .field:not(.is-narrow) {
        flex-grow: 1;
    }

    .field-body > .field:not(:last-child) {
        margin-right: 0.75rem;
    }
}

.control {
    clear: both;
    font-size: 1rem;
    position: relative;
    text-align: left;
}

.control.has-icon .icon {
    color: #dbdbdb;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4;
}

.control.has-icon .input:focus + .icon {
    color: #7a7a7a;
}

.control.has-icon .input.is-small + .icon {
    font-size: 0.75rem;
}

.control.has-icon .input.is-medium + .icon {
    font-size: 1.25rem;
}

.control.has-icon .input.is-large + .icon {
    font-size: 1.5rem;
}

.control.has-icon:not(.has-icon-right) .icon {
    left: 0;
}

.control.has-icon:not(.has-icon-right) .input {
    padding-left: 2.25em;
}

.control.has-icon.has-icon-right .icon {
    right: 0;
}

.control.has-icon.has-icon-right .input {
    padding-right: 2.25em;
}

.control.has-icons-left .input:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon,
.control.has-icons-right .input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
    color: #7a7a7a;
}

.control.has-icons-left .input.is-small ~ .icon,
.control.has-icons-left .select.is-small ~ .icon,
.control.has-icons-right .input.is-small ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
    font-size: 0.75rem;
}

.control.has-icons-left .input.is-medium ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon,
.control.has-icons-right .input.is-medium ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
    font-size: 1.25rem;
}

.control.has-icons-left .input.is-large ~ .icon,
.control.has-icons-left .select.is-large ~ .icon,
.control.has-icons-right .input.is-large ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
    font-size: 1.5rem;
}

.control.has-icons-left .icon,
.control.has-icons-right .icon {
    color: #dbdbdb;
    height: 2.25em;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2.25em;
    z-index: 4;
}

.control.has-icons-left .input,
.control.has-icons-left .select select {
    padding-left: 2.25em;
}

.control.has-icons-left .icon.is-left {
    left: 0;
}

.control.has-icons-right .input,
.control.has-icons-right .select select {
    padding-right: 2.25em;
}

.control.has-icons-right .icon.is-right {
    right: 0;
}

.control.is-loading::after {
    position: absolute !important;
    right: 0.625em;
    top: 0.625em;
    z-index: 4;
}

.control.is-loading.is-small:after {
    font-size: 0.75rem;
}

.control.is-loading.is-medium:after {
    font-size: 1.25rem;
}

.control.is-loading.is-large:after {
    font-size: 1.5rem;
}

/*
 * This might look a bit messy...
*/

.button,
.file-cta,
.file-name,
.input,
.pagination-ellipsis,
.pagination-link,
.pagination-next,
.pagination-previous,
.select select,
.textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.25em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.375em - 1px);
    padding-left: calc(0.625em - 1px);
    padding-right: calc(0.625em - 1px);
    padding-top: calc(0.375em - 1px);
    position: relative;
    vertical-align: top;
}

.button:active,
.button:focus,
.file-cta:active,
.file-cta:focus,
.file-name:active,
.file-name:focus,
.input:active,
.input:focus,
.is-active.button,
.is-active.file-cta,
.is-active.file-name,
.is-active.input,
.is-active.pagination-ellipsis,
.is-active.pagination-link,
.is-active.pagination-next,
.is-active.pagination-previous,
.is-active.textarea,
.is-focused.button,
.is-focused.file-cta,
.is-focused.file-name,
.is-focused.input,
.is-focused.pagination-ellipsis,
.is-focused.pagination-link,
.is-focused.pagination-next,
.is-focused.pagination-previous,
.is-focused.textarea,
.pagination-ellipsis:active,
.pagination-ellipsis:focus,
.pagination-link:active,
.pagination-link:focus,
.pagination-next:active,
.pagination-next:focus,
.pagination-previous:active,
.pagination-previous:focus,
.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus,
.textarea:active,
.textarea:focus {
    outline: 0;
}

.button[disabled],
.file-cta[disabled],
.file-name[disabled],
.input[disabled],
.pagination-ellipsis[disabled],
.pagination-link[disabled],
.pagination-next[disabled],
.pagination-previous[disabled],
.select select[disabled],
.textarea[disabled] {
    cursor: not-allowed;
} /*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css */

blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    margin: 0;
}

.input {
    margin: 0;
    color: var(--font-color);
    background-color: #151515;
    border: 1px solid var(--font-color) !important;
    border-radius: 5px;
}

.wide {
    width: 45em;
}

.button:hover {
    background-color: #505050;
}

/* Start Index CSS */
.banner {
    border-radius: 7.5px 7.5px 0 0;
    background-image: url("../images/banner.webp");
    background-position: center;
    background-size: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    padding: 3em 0;
}
.downloadButton {
    font-weight: bold;
    padding: 1em 2em;
    background-color: rgb(165, 14, 14);
    color: white;
    border: 2px solid black;
    border-radius: 2.5px;
    filter: drop-shadow(0 0 0.25em black);
    margin-bottom: 1em;
    transition: 0.35s;
}
.downloadButton:hover {
    color: white;
    background-color: crimson;
    cursor: pointer;
    transition: 0.35s;
}
.downloadButton:active {
transform: translateY(0.5em);
}
.aboutDraugerOS {
    color: white;
    text-align: center;
    width: 80%;
    margin-bottom: 2em;
}
.aboutDraugerOS h1 {
    margin-bottom: 0.5em;
}
.osName {
    font-family: 'Ubuntu';
    color: crimson;
}
.rightForYou {
    color: white;
    width: 80%;
    margin: 0 10%;
    text-align: center;
}
.rightForYou h1 {
    margin-bottom: 0.5em;
}
.goals {
    color: white;
    text-align: center;
    margin-top: 1em;
    width: 80%;
    padding-bottom: 2em;
}
.goals h1 {
    margin-bottom: 0.5em;
}
.dono_section {
    display: inline-flex;
    width: 100%;
    height: 10em;
    align-items: center;
    text-align: center;
    margin-bottom: 1em;
    /* border: 1px solid red; */
    transform: translateY(-3em);
  }
  .dono_span{
    height: 1em;
    margin: auto 0.5em auto auto;
  }
  .dono_span span{
    font-size: 1rem;
  }
  .dono_1{
    /* margin: auto -1.5em auto 0; */
    margin: auto -1.25em auto 0;
  }
  .dono_1 button{
    border: 2px solid black;
    /* background-color: #990000; */
    padding: 0.75em;
    color: white;
    cursor: pointer;
  }
  .dono_1 button:hover{
    background-color: red;
  }
  .dono_2{
    transform: translateY(0.4em);
    margin: auto 0 auto 0;
  }
  .dono_2 #dono_custom{
    /* background-color: #990000; */
    width: 8rem;
    height: 2rem;
    font-size: 1rem;
    text-align: center;
    color: white;
    cursor: pointer;
  }
  #dono_custom:hover{
    background-color: red;
  }
  #dono_custom::placeholder{
    color: white;
  }
  .dono_2 .dono_currency_icon{
    display: inline-block;
    position: relative;
    left: 1.25em;
    color: white;
    font-weight: bold;
  }
  .dono_2 input::-webkit-outer-spin-button,
  .dono_2 input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .dono_2 #custom_dono_message{
    font-size: 0.75rem;
    font-weight: bold;
    position: relative;
    left: -1em;
    top: 0.5em;
    color: gray;
    opacity: 0;
    transition: 0.3s;
  }
  #dono_custom:focus + #custom_dono_message{
    opacity: 100;
    transition: 0.3s;
  }
  .dono_3{
    margin: auto auto auto 0;
    height: 3em;
  /*   border: 1px solid red; */
    text-align: center;
    }
  #purchase_button {
    border: 1px solid black;
    background-color: #990000;
    font-weight: bold;
    font-size: 1.25rem;
    height: 3rem;
    width: 14rem;
    color: white;
    transition: 0.3s;
  }
  #purchase_button:hover {
    background-color: red;
    cursor: pointer;
  }
  #purchase_button:active{
    transition: 0.3s;
    transform: translateY(4px);
  }
  .download_descriptor{
    position: relative;
    top: 0.75em;
  }
  .unselectable{
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
  }
  .not_selected{
    background-color: #990000;;
  }
  .dono_selected{
    background-color: crimson;
  }
  .desktopPreview {
    max-width: 1000px;
    position: relative;
    border: 2px solid crimson;
    margin: 2em auto auto auto;
  }
  .previewImage {
    width: 100%;
    height: 100%;
  }
  .previewImage img {
    width: 100%;
  }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    filter: drop-shadow(0 0 0.75rem crimson);
  }
  .next {
    right: 0;
  }
  .prev {
    left: 0.25em;
  }
  .prev:hover, .next:hover {
    background-color: rgba(153, 0, 0, 0.5);
  }
  .captions {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: sans-serif;
    font-size: 15px;
    padding: 1em 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    /* transform: translateX(2px); */
    text-align: center;
  }
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
/* End Index CSS */

@media only screen and (max-width: 750px) {
    #mobile-nav {
        display: block;
}
    #topnav {
        display: none;
    }
    .desktopPreview img {
        width: 98%;
    }
    .desktopPreview img:active {
        width: 98%
    }
    .banner .tagline {
        height: 1em;
        font-size: 1.5rem;
    }
    .contentContainer img {
        width: 80%;
        transition: 0.35s;
    }
    .contentContainer .downloadImage {
        width: 75vw;
        transition: 0.35s;
    }
    .desktopPreview img:hover {
        filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
        cursor: default;
    }
    #mobileAbout {
        display: block;
    }
    #mobileContributing {
        display: block;
    }
    #mobileCommunity {
        display: block;
    }
    .contributors_list {
        margin-left: -1em;
        margin-top: 0.5em;
        width: 100%;
    }
    .contributors_list tr {
        display: flex;
    }
    .contributors_list tr td img{
        align-items: start;
        width: 50px;
        height: 50px;
    }
    .JCExpectations {
        margin-left: 0.5em;
    }
}
@media only screen and (min-width: 752px) {
    #mobile-nav {
        display: none;
    }
    #mobile-options {
        display: none;
    }
    #mobileAbout {
        display: none;
    }
    #mobileContributing {
        display: none;
    }
    #mobileCommunity {
        display: none;
    }
}
/* Donation Mobile changes */
@media only screen and (max-width: 769px) {
    .dono_section {
      display: block;
      height: 16em;
      /* border: 1px solid red; */
      transform: translateY(0em);
    }
    .dono_span {
      width: 100%;
      margin: 0.5em auto;
    }
    .dono_1{
      margin: auto;
    }
    .dono_1 button{
      width: 5em;
    }
    .dono_2{
    margin: 0.5em auto 1em auto;
  /*   border: 1px solid green; */
    }
    .dono_2 #dono_custom{
  /*     width: 10rem; */
      width: 12.8rem;
      margin: 0 auto;
      transform: translateX(-6px);
    }
    .dono_2 #custom_dono_message{
      position: static;
      padding-top: 0.25em;
    }
    #purchase_button {
      width: 14em;
      height: 3em;
    }
  }
/* New Container to use that matches styles on all pages */
.contentContainer {
    text-align: center;
    width: 90%;
    margin-left: 5%;
    /* margin: 1em 0 2em 0; */
    margin-top: 1em;
}
.spacer {
    width: 100%;
    height: 1em;
    background: none;
    color: none;
}
.CTA_Download {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 2rem;
}
.choice {
    padding: 1em;
}
.contentContainer img:hover {
    filter: drop-shadow(0 0 0.25em white);
}
.contentContainer img {
    padding-bottom: 1em;
    width: 25%;
    transition: 0.35s;
}
.torrent {
    margin-bottom: 2em;
}
.DownloadsMoreInfo {
    padding-bottom: 1em;
}
.check5ums {
    padding-bottom: 2rem;
}
.ContactPageTitle {
    padding: 1em;
    font-size: 2rem;
    color: crimson;
    font-weight: bold;
}
.SubTitle {
    font-size: 2rem;
    margin-top: 1em;
}
.options {
    margin: 0.5em;
    font-size: 1.25rem;
}
.options ul {
    list-style: none;
}
.options ul li {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
}
.options ul li a {
    padding: 1em;
    position: relative;
    text-decoration: none;
}
.options ul li a i {
    color: rgba(0, 0, 0, 0.25%);
    position: absolute;
    top: 0;
    width: 40%;
    margin-left: 20%;
}
.options ul li a:hover i {
    color: crimson;
}
.contactSocials {
    padding-bottom: 1em;
}
.AboutTitle {
    font-weight: bold;
    font-size: 2rem;
    padding: 1em 0;
}
.aboutSubTitle {
    text-align: left;
    font-size: 1.5rem;
    margin: 1em 0 0.25em 0;
}
.aboutDescription {
    text-align: left;
}
.aboutAlert {
    margin-top: 1em;
    color: gray;
    position: relative;
    padding: 0 1em;
}
.aboutAlert .osName {
    color: rgb(202, 84, 84);
}
.aboutAlert i {
    position: absolute;
    top: -8px;
    left: 4px;
    opacity: 0.5;
    color: orange;
}
.aboutAlert:hover i {
    opacity: 1;
}
.tenets {
    color: rgb(204, 102, 102);
    margin-left: 1em;
}
.aboutRequirements {
    text-align: left;
    padding-bottom: 2rem;
}
.contrubutingNeeds {
    margin: 1em 0 0 0;
}
.contributing-options {
    margin: 0.25rem 0; 
}
.requirementsSubTitle {
    font-weight: bold;
    color: red;
    font-size: 1.25rem;
}
.requirementTables {
    margin: 1em auto 2em auto;
    background-color: rgb(121, 64, 64);
    border: 2px solid white;
    filter: drop-shadow(0 0 0.25em crimson);
}
.BestResultsAlert {
    color: gray;
    padding-bottom: 2em;
}
.ContributingTitle {
    font-size: 2rem;
    margin: 0 0 0.25rem 0;
    padding-top: 1em;
}
.ContributingSubTitle {
    font-size: 1.25rem;
}
.projects {
    text-align: left;
}
.projects ul {
    margin: 0.5em 0 0.5em 0;
    list-style: none;
}
.projects ul li {
    margin: 0.35rem 0 0.35rem 0;
}
.artwork {
    margin: 1em 0;
}
.betaOptions {
    color: rgb(207, 121, 121);
    font-size: 1.2rem;
}
.enableDevRepos {
    margin: 0.25rem 3em 1em 3em;
    padding-bottom: 2em;
}
.codeText {
    color: gray;
}
.enableDevRepos ol li {
    margin: 0.5em;
}
.githubCTA {
    font-size: 1.25rem;
    padding: 1rem 0 2rem 0;
}
.Error404Title {
    font-size: 2rem;
    color: crimson;
    padding: 1em 0 2em 0;
}
.Error404img img {
    width: 50%;
    height: auto;
}
.Error404SubTitle {
    font-size: 1.5rem;
    padding-bottom: 2em;
}
.error500Title {
    font-size: 2rem;
    color: crimson;
    padding: 1em 0 2rem 0;
}
.error500Message {
    font-size: 1.25rem;
    padding-bottom: 2rem;
}
.error418Title { 
    font-size: 2rem;
    color: crimson;
    padding: 1em 0 1em 0;
}
.error418img img {
    width: 75%;
}
.error418Message {
    font-size: 1.25rem;
    padding-bottom: 2em;
}
.thankYouTitle {
    font-size: 2rem;
    color: crimson;
    padding: 1em 0 1em 0;
}
.thankYouPassword {
    padding: 0.5em 0 1em 0;
}
.ThankYouPassword {
    color: gray;
}
.thankYouMessage .torrent {
    padding: 1em;
}
.JCTitle {
    font-size: 1.5rem;
    color: crimson;
    margin-bottom: 1em;
}
.joinContributors {
    padding-bottom: 2em;
}
.JCDescription {
    padding-bottom: 1em;
}
.contributors_list img{
    width: 195px;
    height: 200px;
}
.JCExpectations { 
    text-align: left;
    position: relative;
    padding-bottom: 0.5em;
}
.JCExpectations img {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 2px;
    left: -16px;
}
.searchBoxTitle {
    font-size: 1.25rem;
}
.wikiHomeTitle {
    font-size: 2rem;
    font-weight: bold;
    padding: 1em 0;
}
.wikiSearchBar {
    width: 100%;
    padding: 0.25rem 0;
    padding-left: 0.5em;
    margin-bottom: 1em;
    font-size: 1.5rem;
    border-radius: 5px;
    border: 1px solid white;
    background: none;
}
.wikiPosts {
    width: 90%;
    margin: 0 5%;
}
.wikiSearchBar::placeholder {
    font-size: 1.25rem;
}
.TSM, .FBT {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0.5em 0;
}
.wikiContent {
    width: 80%;
    margin: 2em 10%;
}
.tags {
    border: 1px solid white;
    padding: 1em;
    border-radius: 5px;
}
.wikiSearchButton {
    margin-top: 1em;
    width: 100%;
}
.wikiSearchButton button {
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #151515;
    border: 1px solid white;
    cursor: pointer;
}
.wikiSearchButton button:hover {
    color: white;
    background-color: red;
}
.wikiSearchButton button:active {
    transform: translateY(4px);
}
