body {
	font-family: "Segoe UI";
	font-size: 13px;
}

a {
	color: #6959CD;
}

a:hover {
	text-decoration: none;
	color: #6959CD;
}

ul {
	list-style-type: none;
}

::-webkit-scrollbar-track {
	background-color: #F4F4F4;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: #F4F4F4;
}

::-webkit-scrollbar-thumb {
	background: #DAD7D7;
	border-radius: 25px;
}


/* loading */
#loading {
	width: 100vw;
	height: 100vh;
	background: rgb(0, 0, 0, 0.6);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000000000;
	user-select: none;
}


/* Rodape */
footer {
	position: absolute;
	left: 0;
	bottom: 0;
/*	background-color: rgb(235, 235, 235);*/
	background-color: transparent;
	color: rgb(200, 200, 200);
	width: 100%;
	padding: 2 10;
	text-align: right;
	border-radius: 3px 3px 0 0;
}

footer img {
	position: relative;
	height: 20px;
}


/* input */
input[type="text"], input[type="password"], input[type="date"], input[type="number"], input[type="tel"], input[type="email"], input[type="datetime-local"], textarea {
	box-shadow: 0 0 0 0;
	outline: 0;
	border: none;
	width: 100%;
	background-color: white;
	color: gray;
	padding: 4 8;
	border-radius: 3px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

input[type="date"]::-webkit-calendar-picker-indicator, input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	filter: invert(0.8) brightness(50%) sepia(100%) saturate(10000%) hue-rotate(3.142rad);
}

input[type="date"], input[type="datetime-local"] {
	font-size: 12px;
}

select {
	box-shadow: 0 0 0 0;
	outline: 0;
	border: none;
	width: 100%;
	background-color: white;
	color: gray;
	padding: 4 8;
	border-radius: 3px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

select option {
	border-radius: 0px;
}

input[type="button"] {
	box-shadow: 0 0 0 0;
	outline: 0;
	border: none;
	background-color: white;
	color: gray;
	padding: 4 8;
	border-radius: 3px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: 0.4s;
}


/* Login */
#container {
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#container.login-image {
	background-image: url("/img/background/background.jpg");
	background-size: cover;
}

#login {
	width: 300px;
	background: #DCDCDC;
	border-radius: 7px;
	padding: 10px;
	position: relative;
}

#login img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: relative;
	left: 10;

	margin-top: -40;
}

/*#link-login {
	width: 50%;
	background-color: #010060;
	color: white;
	padding: 4 8;
	border-radius: 3px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}*/


/* Modal Alert */
#modalAlert {
	/*background: rgb(0, 0, 0, 0.6);*/

	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000000000;
	user-select: none;
	padding: 5px;
/*	height: 100vh;*/
	overflow: auto;
/*	background-color: red;*/
}

#modalAlert .modalAlert-alert {
	background-color: rgb(1, 0, 96, 0.5);
	border-radius: 10px;
	min-width: 100px;
	max-width: 500px;
	min-height: 40px;
	max-height: 100px;
	position: relative;
	overflow: auto;
	margin-bottom: 10px;
}

#modalAlert .modalAlert-alert a {
	position: absolute;
	right: 5px;
	top: 5px;
	color: white;
}

#modalAlert .modalAlert-alert p {
	padding: 10px;
	color: white;
}

#modalAlert .modalAlert-alert p svg{
	display: block;
	margin-bottom: 10px;
}

#modalAlert .modalAlert-alert p svg.alertError{
	color: red;
}

#modalAlert .modalAlert-alert p svg.alertOk{
	color: green;
}


/* NEW MODAL */
.new-modal {
	width: 100vw;
	height: 100vh;
	background: rgb(0, 0, 0, 0.6);
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0;
	padding: 30px;
	display: none;
}

.new-modal-body {
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 10px;
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}

.new-modal-body-content {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
	border-radius: 0px 0px 10px 10px;
	padding: 20px;
	font-size: 12px;
	color: gray;
}

.new-modal-close {
	position: absolute;
	right: 5;
	top: 5;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	user-select: none;
	font-size: 18px;
	color: gray;
	transition: 0.5s;
}

.new-modal-close:hover {
	color: gray;
	background-color: rgb(240, 240, 240, 1.0);
	transition: 0.5s;
}

.new-modal-save {
	position: absolute;
	right: 10;
	bottom: 5;
	width: 80px;
	height: 30px;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	user-select: none;
	font-size: 14px;
	font-weight: 500;
	color: gray;
	background-color: rgb(1, 0, 96, .6);
	color: white;
	transition: 0.5s;
}

.new-modal-save:hover {
	background-color: rgb(1, 0, 96, 0.7);
	color: white;
	transition: 0.5s;
}



/* Nav User */
nav {
	position: absolute;
	height: 94px;
	width: 100%;
	padding: 0 28px 0 20px;
	background-color: transparent;

	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
}

nav img {
	scale: 1.0;
}

nav .nav-section {
	background-color: white;
	width: 340px;
	height: 77px;
	position: relative;
}

nav .nav-link-avatar {
	height: 80px;
	width: 80px;
	position: absolute;
	display: block;
	border-radius: 50%;
	top: 7px;
	right: 0px;
	z-index: 1;
	background-color: white;
	padding: 4px;
}

nav .nav-link-avatar img {
	height: 100%;
	width: 100%;
	border-radius: 50%;
	scale: 1;
}

nav .nav-section .nav-section-data {
	background-color: rgb(240, 240, 240);
	border-radius: 7px 0px 0px 7px;
	height: 60px;
	width: 300px;
	position: absolute;
	top: 17px;
	right: 40px;
	z-index: 0;
	padding-right: 50px;
	padding-top: 5px;
}

nav .nav-section .nav-section-data span {
	display: inline-block;
	width: 100%;
	text-align: right;
}

nav .nav-section .nav-section-data div.nav-section-data-link {
	position: absolute;
	left: 12px;
	bottom: 5px;
}

nav .nav-section .nav-section-data .nav-section-data-name {
	font-weight: bold;
}


/* section */
section {
	background-color: white;
	width: 100%;
	height: 100vh;
	overflow: auto;
	padding: 100px 20px 30px 20px;
}

.section {
	height: 100%;
	width: 100%;
	overflow: auto;
	display: flex;
}

.section .section-left {
	height: 100%;
	width: 250px;
	min-width: 250px;
	overflow: auto;
	padding: 5px 10px;
	border-radius: 5px;

	background-color: rgb(240, 240, 240, 1.0);
}

.section .section-right {
	background-color: rgb(230, 230, 230);
	height: 100%;
	width: 100%;
	overflow: auto;
	padding: 60px 20px 20px 20px;
	border-radius: 5px;
	position: relative;
	margin-left: 20px;

	background-color: white;
}

.section .section-right .section-screen {
	height: 100%;
	overflow: auto;
	position: relative;
}

.section-left ul {
	padding-left: 0px;
}

.section-left-link-header a {
	width: 100%;
	display: block;
	color: rgb(1, 0, 96, 1);
	color: gray;
}

.section-left-link-header a svg {
	margin-right: 5px;
}

.section-left-link-header {
	color: rgb(1, 0, 96, 1);
	background-color: rgb(240, 240, 240, 1.0);
	width: 100%;
	display: block;
	padding: 5px 10px;
	transition: 0.5s;
}

.section-left-link-header:hover {
	color: white;
	background-color: rgb(1, 0, 96, 0.5);
	
	background-color: rgb(220, 220, 220, 1.0);
	color: gray;

	transition: 0.5s;
}

.section-left-link-header:hover a {
	color: white;
	color: gray;
}

.section-left-ul-body {
	margin: 5px;
	margin-left: 10px;
}

.section-left-link-body {
	color: rgb(1, 0, 96, 1);
	width: 100%;
	display: block;
	padding: 5px 10px;
	transition: 0.5s;
}

.section-left-link-body a {
	display: block;
	width: 100%;
	color: rgb(1, 0, 96, 1);
	color: gray;
}

.section-left-link-body:hover {
	color: white;
	background-color: rgb(1, 0, 96, 0.3);
	background-color: rgb(220, 220, 220, 1.0);
	transition: 0.5s;
}

.section-left-link-body:hover a {
	color: white;
	color: gray;
}

.section-left-link-body a svg {
	margin-right: 5px;
}

.section-left-link-header.active {
	color: white;
	background-color: rgb(1, 0, 96, 0.5);
	background-color: rgb(220, 220, 220, 1.0);
	transition: 0.5s;
}

.section-left-link-header.active a {
	color: white;
	color: gray;
}

.section-left-link-body.active {
	color: white;
	background-color: rgb(1, 0, 96, 0.3);
	background-color: rgba(220, 220, 220, 1.0);
	transition: 0.5s;
}

.section-left-link-body.active a {
	color: white;
	color: gray;
}


/* Screen Link */
.screen-link {
	background-color: rgb(1, 0, 96, 0.5);
	background-color: #002D55;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: right;
	padding: 10px;
}

.screen-link a {
	margin-right: 5px;
}

.screen-link svg {
	color: white;
}

.btn-phoenix-1 {
	background-color: rgb(1, 0, 96, 0.5);
	color: white;
}

.color-phoenix-1 {
	color: rgb(1, 0, 96, 0.5);
}

.modal .modal-body div span {
	color: gray;
}

.modal .modal-body div label {
	color: gray;
}


/* Table */
table {
	width: 100%;
	font-size: 13px;
	position: relative;
}

table thead {
	border-bottom: 1px solid rgb(215, 215, 215);
	position: relative;
}

table thead tr {
	background-color: rgb(250, 250, 250);
	position: relative;
}

table thead th {
	border-left: 1px solid rgb(215, 215, 215);
	border-right: 1px solid rgb(215, 215, 215);
	text-align: center;
	padding: 5px;
}

table thead th a {
	font-weight: normal;
	font-size: 11px;
}

table tbody tr {
	background-color: transparent;
	transition: 0.2s;
	border-bottom: 1px solid rgb(215, 215, 215);
}

table tbody tr:hover {
	background-color: rgb(250, 250, 250, 0.4);
	transition: 0.2s;
}

table tbody th {
	border-left: 1px solid rgb(215, 215, 215);
	border-right: 1px solid rgb(215, 215, 215);
	text-align: center;
	padding: 5px;
}

table tbody td {
	border-left: 1px solid rgb(215, 215, 215);
	border-right: 1px solid rgb(215, 215, 215);
	text-align: center;
	padding: 5px;
}

table tbody td a {
	margin-right: 7px;
}

table tbody td svg {
	color: rgb(100, 100, 100);
}

table thead tr input[type="text"]{
	border: none;
	margin: 0px;
	background-color: transparent;
	border-bottom: 1px solid rgb(230, 230, 230);
}

.div-search-snag-close {
	position: absolute;
	right: 10px;
	top: 10;
	color: white;
	cursor: pointer;
}

.div-search-snag-close:hover{
	color: white;
}

.div-search-input {
	width: 100%;
	height: 100%;
	overflow: auto;
}

.div-search-input::-webkit-scrollbar {
	display: none;
}


#login-user {
	
}