.light-theme {
	--color-body: #FFF;
	--color-font: #333;
	--color-font-ck: #333;
}

.dark-theme {
	--color-body: #1E1E2F;
	--color-font: #FFF;
	--color-font-ck: #333;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	background-color: var(--color-body);
}

html, body {
    display: flex;
    flex-direction: column;
    font-family: 'D-DIN';
    /* font-family: Verdana, Tahoma; */

	/* EXTREMAMENTE IMPORTANTE **NÃO REMOVER */
	margin: 0 !important;
	padding: 0 !important;
	height: 100% !important;
	/* EXTREMAMENTE IMPORTANTE **NÃO REMOVER */
}

ol, ul {
	list-style: none;
}

li {
    margin-left: 20px;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input {
	outline: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none;
}

input[type="checkbox"], select {
    cursor: pointer !important;
}

strong {
    font-weight: bold;
}

i {
    font-style: italic;
}

p {
    font-size: 15.5px;

    padding-top: 2.5px;
    padding-bottom: 2.5px;

    color: var(--color-font);
}

sub {
	font-size: 10px;
	vertical-align: sub;
}

sup {
	font-size: 10px;
	vertical-align: super;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.light-theme .dot--public {
  background-color: #175796;
}

.dark-theme .dot--public {
  background-color: #6699FF;
}

.light-theme .dot--private {
  background-color: #990000;
}

.dark-theme .dot--private {
  background-color: #FF9999;
}


/* TAMANHO MÁXIMO DOS MOBILES */
@media (max-width: 1490px) {
	#body {
		/* flex: 1 !important; */
		/* width: 100vw - 50px !important; */
		/* width: 100vw !important; */
		overflow-x: hidden !important;
		overflow-y: auto !important;
	}
}