@font-face {
	font-family: 'ROBOTO';
	src: url('/fonts/Roboto-Regular.ttf');
}

.search-input-container {
	position: relative;
	width: 300px;
}

body {
	font-family: 'ROBOTO', sans-serif;
	background-color: #ffffff!important;
}

.bg-primary {
	background-color: #3880ff;
}

.bg-danger {
	background-color: #ff9595!important;
}

.bg-special {
	background-color: rgb(0 134 174) !important;
}

tr.bg-special a {
    color: white!important;
}

.dataTable tr a {
	color: black;
	text-decoration: underline;
}

.bg-success {
	background-color: #1bff7661 !important;
}

.bg-warning {
	background-color: #ffe490 !important;
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1500ms infinite linear;
	-moz-animation: spinner 1500ms infinite linear;
	-ms-animation: spinner 1500ms infinite linear;
	-o-animation: spinner 1500ms infinite linear;
	animation: spinner 1500ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
		rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0,
		rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */
@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.spinner {
	border: 8px solid rgba(0, 0, 0, 0.1);
	border-left-color: #22a6b3;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10rem;
	position: absolute;
	top: 50%;
	left: 50%;
}

.spinner.warning {
	border-left-color: #ffe490 !important;
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}

	;
}

@font-face {
	font-family: lemonMilk_light;
	src: url('/fonts/LEMONMILK-Light.otf');
}

@font-face {
	font-family: lemonMilk_medium;
	src: url('/fonts/LEMONMILK-Medium.otf');
}

@font-face {
	font-family: lemonMilk_regular;
	src: url('/fonts/LEMONMILK-Regular.otf');
}

.font-lemon-light {
	font-family: lemonMilk_light;
}

.font-lemon-medium {
	font-family: lemonMilk_medium;
}

.font-lemon-regular {
	font-family: lemonMilk_regular;
}

.font-calibri {
	font-family: calibri;
}

.font-size-32 {
	font-size: 32px;
}

.font-size-46 {
	font-size: 46px;
}

.dropdown-nav a.drop-down-link:last-child {
	padding: 0.2rem 1rem 0.2rem 1rem;
	margin-bottom: 0;
}

nav {
	width: 100%;
	background-color: white;
	height: 4rem;
	transition: 1s;
	position: fixed;
	top: 0;
	z-index: 999;
}

.nav-link:hover {
	color: black;
}

nav .profile {
	margin-left: auto;
	display: inline;
	margin-top: auto;
	margin-bottom: auto;
	margin-right: 2rem;
}

.nav-links {
	display: flex;
}

.dropdown-subitens.dropdown-itens {
	position: relative;
	width: 15rem;
	z-index: 999;
	margin-top: -5.6rem;
	margin-left: 14.86rem;
}

.bg-danger-light {
	background-color: #ff000042;
}

.bg-success-light {
	background-color: #00800059;
}

.dropdown-submenu>.drop-down-link::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .3em .3em .3em .3em;
	border-color: transparent transparent transparent #007bff;
	position: absolute;
	margin-top: 0.5rem;
	float: right;
	right: 4px;
}

.dropdown-itens {
	background-color: white;
	position: absolute;
	border: 1px solid #00000057;
	z-index: 999;
	top: 3rem;
	width: 15rem;
	border-radius: 5px;
	box-shadow: 0 0.15rem 1.75rem 0 rgb(58 59 69 / 15%) !important;
}

a.drop-down-link {
	display: block;
	color: #007bff;
	margin-bottom: 0.2rem;
	padding: 0.2rem 1rem 0.2rem 1rem;
}

a.drop-down-link:hover,
.drop-down-link.selected {
	text-decoration: none;
	color: white;
	background-color: #0747a6;
}

.mb-1.dropdown-submenu {
	height: 1.8rem;
}

.content {
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	height: 4rem;
}

.nav-content.hide-mobile.container-fluid.nav-links {
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
}

.img-profile {
	max-width: 35px;
}

#content-wrapper {
	max-width: 100%;
}

.card-body {
	padding-top: 0;
}

ul#accordionSidebar {
	position: fixed;
	left: 0;
	top: 0;
}

.nav-item .collapse.show {
	max-height: 14rem;
	overflow-y: auto;
}

.table-responsive {
	min-height: 100px;
}

.table-responsive .table {
	margin-left: auto;
	margin-right: auto;
	min-width: 100%;
}

table.nowrap thead th,
table.nowrap tbody td {
	white-space: nowrap;
}

table.text-center th,
table.text-center td {
	text-align: center;
}

.table-responsive th {
	position: sticky;
	z-index: 2;
}

.navbar-nav.hidden {
	width: 0 !important;
}

div#wraper {
	display: flex;
	margin-top: 5.5rem;
}

div#content-wrapper {
	flex-grow: 1;
}

.btn-group {
	float: left;
}

.dataTables_length {
	float: left;
	margin-left: 24rem;
	margin-top: 4px;
}

.dataTables_filter {
	float: right;
	margin-top: 4px;
}

.dataTables_info {
	float: left;
}

.dataTables_paginate {
	float: right;
	margin-top: 8px;
}

.cursor-pointer {
	cursor: pointer;
}

.btn-icon-split .icon {
	padding-top: 10px !important;
}

tr.bg-danger td {
	color: #000000;
}

tr.bg-danger td a {
	text-decoration: underline;
}

.context-menu-trigger {
	text-decoration-style: dotted;
	text-decoration-color: #777777;
	text-decoration-line: underline;
	text-decoration-thickness: 1.2px;
	cursor: alias;
}

.context-menu {
	background-color: white;
	position: fixed;
	top: 200px;
	left: 200px;
	width: auto;
	min-width: 150px;
	box-shadow: 0px 0px 6px 2px;
	border: 1px solid #acacac;
}

.context-menu-item {
	display: block;
	border-bottom: 1px solid #e1e1e1;
	color: black;
	cursor: pointer;
	padding: 4px 10px 4px 10px;
}

.context-menu-item:hover {
	background-color: #d8d8d8;
	text-decoration: none;
	color: black;
}

.form-group {
	position: relative;
}

.form-group label {
	position: absolute;
	top: 3px;
	left: 15px;
	color: rgb(100, 100, 100);
	pointer-events: none;
	text-wrap: nowrap;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input:not([type]),
.form-group select {
    height: 40px !important;
    padding-left: 6px;
    padding-top: 15px;
    width: 100%;
}

i.fas.fa-arrow-right {
	margin-top: -3px;
}

td[aria-editable="true"] {
	background-color: #adca3233;
	cursor: pointer;
}

.table-sm th,
.table-sm td {
	font-size: inherit;
}

.table-sm {
	font-size: 10px;
}

div#searchResults {
	background-color: white;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	position: absolute;
	top: 20px;
	left: 0;
	padding: 10px;
	border: 1px solid black;
	padding-top: 5px;
	padding-bottom: 5px;
	min-width: 300px;
	gap: 10px;
}

.form-group textarea {
	min-height: 40px !important;
	padding-left: 6px;
	padding-top: 15px;
	width: 100%;
	border-color: rgba(118, 118, 118, 0.3);
}

.nowrap {
	white-space: nowrap;
}

@media (min-width: 900px) {
	.mobile-only {
		display: none!important;
	}
}

@media (max-width: 1250px) {
	.form-group input[type="text"], .form-group input:not([type]), .form-group select {
		height: 35px!important;
		padding-top: 11px;
	}

	.hide-mobile {
		display: none!important;
	}
}

@media only screen and (max-width: 1920px) {
	html {
		font-size: 11px;
	}

	nav {
		height: 60px !important;
		padding-top: 8px !important;
	}

}

@media only screen and (min-width: 1921px) {
	* {
		font-size: 1rem;
	}
}

@media (max-width: 900px) {
	.chart-area {
		height: 350px !important;
	}

	div#content-wrapper {
		flex-grow: 1;
	}

	nav {
		width: 100%;
		position: relative;
	}

	div#wraper {
		margin-top: 0!important;
	}
	
	.search-input-container {
		width: 100%;
	}
}