:root {
	--blue: #00A9D4;
	--hover-bkg: #02627a;
	--lilac: #D42AFF;
	--darklilac: #911ead;
	--hilite-bkg: #3f0b4c;
	--insidepanel-bkg: #333344bb;
	--panel-bkg: #192033;
	--btn-bkg: #192033;
	--btn-clr: #eee;
	--def-bkg: #2a313d;
	--headfoot-bkg: #030508;
	--panelbtn-bkg: #030508;
}

html,
body {
	position: relative;
	padding: 0;
	margin: 0;
	height: 100%;
	overflow: hidden;
	/* SERÁ QUE FUNCIONA? Coloquei para remover um scrollbar extra em domains */
}

body {
	font-family: "Oxanium", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	color: #333;
	background-color: #efefef;
	box-sizing: border-box;
	scrollbar-color: var(--blue) var(--def-bkg);
	scrollbar-width: 12px;
	line-height: 1.4;
}

* {
	box-sizing: border-box;
}


a {
	color: rgb(48, 14, 143);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

b {
	font-weight: bold;
}

label {
	display: block;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

input[type=text],
input[type=date],
input[type=datetime-local],
input[type=number],
input[type=password],
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	padding: 8px 12px;
	margin: 0;
	box-sizing: border-box;
	background-color: var(--btn-bkg);
	color: var(--btn-clr);
	border-radius: 5px;
	border: none;
	width: 100%;
	box-shadow: 2px 2px 7px #000;
}

.large {
	max-width: 500px;
	width: 100%;
}

.medium {
	max-width: 300px;
	width: 100%;
}

.small {
	max-width: 200px;
	width: 100%;
}

.tiny {
	max-width: 120px;
	width: 100%;
}

.autowidth {
	width: max-content;
}

.full {
	width: 100%;
}

.totheend {
	flex-grow: 1;
}



select {
	min-width: 100px;
	padding: 9px 12px;
}

input:disabled {
	color: #ccc;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

button {
	position: relative;
	padding: 6px 15px;
	background: var(--blue);
	border: none;
	border-radius: 9px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	font-size: 16px;
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.7px;
	transition: background-color 0.3s ease;
}



button:hover {
	background-color: var(--lilac);
}

.simplebtn {
	display: flex;
	align-items: center;
	padding: 1px 6px 0;
	background-color: dodgerblue;
	color: #fff;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.simplebtn:hover {
	background-color: purple;
}

h2 {
	margin: 0;
	text-transform: uppercase;
	font-weight: 900;
	color: #fff;
	font-size: 28px;
}

.strokeme {
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.container {
	padding: 5px 15px;
	background-color: #fff7;
	color: rgb(7, 33, 78);
	border: 1px solid #fff;
	border-radius: 7px;
	width: fit-content;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.disabled {
	opacity: 0.5;
	pointer-events: none;
}

label {
	cursor: pointer;
	display: block;
	margin: 15px 0;
}

label > input[type=checkbox] {
	display: none;
}

label i {
	display: inline-block;
	width: 32px;
	height: 20px;
	border-radius: 10px;
	vertical-align: middle;
	transition: 0.25s 0.09s;
	position: relative;
	background: #557787;
	transform: translateY(-2px);
}

label i:after {
	content: ' ';
	display: block;
	width: 15px;
	height: 15px;
	top: 2px;
	left: 2px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.4);
	transition: 0.15s;
}

label>input[type=checkbox]:checked+i {
	background: #1094fb;
}

label>input[type=checkbox]:checked+i:after {
	transform: translateX(12px);
}

section {
	display: flex;
	flex-direction: column;
	height: 100%;
}

section > article {
	flex-grow: 1;
	padding: 10px 12px;
	overflow-y: scroll;
	height: 100%;
}