:root {
	--gray: #888888;
	--mine-shaft: #292929;
}

body {
	overflow: hidden;
	background-image: url("/imgs/bg-noise.png");
	background-color:  var(--mine-shaft);
	font-family: JetBrainsMono, "Courier New", monospace;
}

#successBox {
	position: fixed;
	top: 15px;
	right: 15px;
	width: auto;
	height: auto;
	z-index: 9001;
	border-radius: 6px;
	box-shadow: 4px 4px 5px -3px black;
	color: black;
}
.success {
	background-color: chartreuse;
}
.failure {
	background-color: red;
}
.fade-in-out {
	opacity: 0;
	animation: fadeInOut 5s ease-out 0s 1 normal forwards running;
}

@keyframes fadeInOut {
    0% {
        opacity:0;
    }
    50% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}
#successBox h1 {
	margin: 15px;
	width: auto;
	height: auto;
}

#iframeFooter {
	overflow-y: hidden;
	color: var(--gray);
	font-size: x-small;
}
#iframeFooter a, #iframeFooter a:hover {
	color: pink;
	font-size: x-small;
	text-decoration: none;
}
footer {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	height: 35px;
}
footer iframe {
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: 0;
	height: 100%;
	width: 100%;
}

#editor {
	margin: 0;
	position: absolute;
	top: 125px;
	bottom: 65px;
	left: 15px;
	right: 300px;
	box-shadow: 4px 4px 5px -3px  black;
}

#optionsContainer {
	width: 300px;
	position: absolute;
	margin: 0 0 15px 0;
	right: 0;
	top: 110px;
	bottom: 50px;
	overflow-y: auto;
}
	
#qrCode {
	margin: 15px;
	display: inherit;
}

#qrCode img {
	border: 3px solid white;
}

#optionsContainer .rows>div {
	display: inline-block;
	width: 100%;
}

#subOptions input {
	width: 30px;
}

#subOptions label {
	color: pink;
	margin: 2px 15px;
	display: inline-block;
}

#optionsContainer .check {
	text-align: justify;
	margin-bottom: 15px;
}

#optionsContainer li {
	margin-bottom: 5px;
}

#optionsContainer ul {
	margin: 0 15px 15px 0;
	font-size: small;
}

.basic-text {
	text-align: left;
}

#mainOptions a {
	color: var(--gray);
}

#optionsContainer>div {
	margin: 15px;
	margin-bottom: 0;
	display: inline-block;
	position: relative;
	left: 0;
	right: 0;
	text-align: center;
	color: darkorange;
	background-color: #ffffff30;
	box-shadow: inset 0px 0px 2px 1px  black;
	text-shadow: 1px 1px 1px  var(--mine-shaft);
}

#optionsContainer a {
	cursor: pointer;
}

#optionsContainer select {
	margin: 0 10px;
	color: pink;
	border: 0;
	background-color:  var(--mine-shaft);
}

.hidden {
	display: none;
}

#saveNote {
	margin: 20px;
	z-index: 9001;
	position: relative;
}

#optionsContainer button, #optionsContainer select {
	box-shadow: 1px 1px 1px 0px  var(--mine-shaft);
}

#optionsContainer h3 {
	margin-bottom: 8px;
}

header {
	position: absolute;
	margin: 0;
	top: 0;
	left: 0;
	right: 0;
	height: 110px;
}

#logoImg {
	float: left;
	width: 220px;
	height: 100%;
	margin: 0;
	position: relative;
}

#logoImg img {
	width: 220px;
	margin: 5px;
}

#logo {
	margin: 15px;
	position: relative;
	top: 0;
	bottom: 0;
	font-family: FiraCode, "Courier New", monospace;
	color:  var(--gray);
	font-size: xx-large;
	text-shadow: 1px 1px 1px  black;
	float: left;
}

.accent-1 {
	color: pink;
}

.accent-2 {
	color: darkorange;
}

.accent-3 {
	color: var(--gray);
}

#loading {
	width: 40px;
	position: absolute;
	bottom: 10px;
	right: 15%;
	display: none;
}

#loadingBar {
	width: 256px;
	position: absolute;
	bottom: 2px;
	padding: 3px;
	margin: 3px;
}
