body {
	font-family: Poppins, sans-serif;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.5;
	color: #67757c;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0.5rem;
	font-weight: 400;
	line-height: 1.2;
	color: #455a64;
}

.h5,
h5 {
	font-size: 1rem;
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #67757c;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 4px;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

.btn:hover {
	color: #67757c;
	text-decoration: none;
}

.btn.focus,
.btn:focus {
	outline: 0;
	box-shadow: transparent;
}

.btn.disabled,
.btn:disabled {
	opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
	pointer-events: none;
}

.btn-primary {
	color: #fff;
	background-color: #1e88e5;
	border-color: #1e88e5;
}

.btn-primary:hover {
	color: #fff;
	background-color: #0565b9;
	border-color: #0565b9;
}

.btn-primary.focus,
.btn-primary:focus {
	color: #fff;
	background-color: #0565b9;
	border-color: ##0565b9;
	box-shadow: 0 0 0 0.2rem #0565b9;
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #7460ee;
	border-color: #7460ee;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #4c32e9;
	border-color: #4226e8;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(137, 120, 241, 0.5);
}

.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
}

.btn-secondary.focus,
.btn-secondary:focus {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62;
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-success:hover {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-success.focus,
.btn-success:focus {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
	box-shadow: 0 0 0 0.2rem rgba(52, 214, 33, 0.3);
}

.btn-success.disabled,
.btn-success:disabled {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 214, 33, 0.3);
}

.btn-info {
	color: #fff;
	background-color: #1e88e5;
	border-color: #1e88e5;
}

.btn-info:hover {
	color: #fff;
	background-color: #1774c6;
	border-color: #166dba;
}

.btn-info.focus,
.btn-info:focus {
	color: #fff;
	background-color: #1774c6;
	border-color: #166dba;
	box-shadow: 0 0 0 0.2rem rgba(64, 154, 233, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
	color: #fff;
	background-color: #1e88e5;
	border-color: #1e88e5;
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
	color: #fff;
	background-color: #166dba;
	border-color: #1467af;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(64, 154, 233, 0.5);
}

.btn-warning {
	color: #212529;
	background-color: #ffb22b;
	border-color: #ffb22b;
}

.btn-warning:hover {
	color: #212529;
	background-color: #ffa405;
	border-color: #f79d00;
}

.btn-warning.focus,
.btn-warning:focus {
	color: #212529;
	background-color: #ffa405;
	border-color: #f79d00;
	box-shadow: 0 0 0 0.2rem rgba(222, 157, 43, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
	color: #212529;
	background-color: #ffb22b;
	border-color: #ffb22b;
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
	color: #212529;
	background-color: #f79d00;
	border-color: #ea9500;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(222, 157, 43, 0.5);
}

.btn-danger {
	color: #fff;
	background-color: #fc4b6c;
	border-color: #fc4b6c;
}

.btn-danger:hover {
	color: #fff;
	background-color: #fb254d;
	border-color: #fb1943;
}

.btn-danger.focus,
.btn-danger:focus {
	color: #fff;
	background-color: #fb254d;
	border-color: #fb1943;
	box-shadow: 0 0 0 0.2rem rgba(252, 102, 130, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
	color: #fff;
	background-color: #fc4b6c;
	border-color: #fc4b6c;
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #fb1943;
	border-color: #fb0c39;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(252, 102, 130, 0.5);
}

.btn-light {
	color: #212529;
	background-color: #f2f4f8;
	border-color: #f2f4f8;
}

.btn-light:hover {
	color: #212529;
	background-color: #d9dfeb;
	border-color: #d1d8e6;
}

.btn-light.focus,
.btn-light:focus {
	color: #212529;
	background-color: #d9dfeb;
	border-color: #d1d8e6;
	box-shadow: 0 0 0 0.2rem rgba(211, 213, 217, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
	color: #212529;
	background-color: #f2f4f8;
	border-color: #f2f4f8;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
	color: #212529;
	background-color: #d1d8e6;
	border-color: #c9d1e2;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(211, 213, 217, 0.5);
}

.btn-dark {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.btn-dark:hover {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
}

.btn-dark.focus,
.btn-dark:focus {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124;
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1d2124;
	border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
	color: #7460ee;
	border-color: #7460ee;
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: #7460ee;
	border-color: #7460ee;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
	box-shadow: 0 0 0 0.2rem rgba(116, 96, 238, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: #7460ee;
	background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #7460ee;
	border-color: #7460ee;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(116, 96, 238, 0.5);
}

.btn-outline-secondary {
	color: #6c757d;
	border-color: #6c757d;
}

.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
	color: #11b557;
	border-color: #11b557;
}

.btn-outline-success:hover {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 214, 33, 0.3);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
	color: #11b557;
	background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #11b557;
	border-color: #11b557;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 214, 33, 0.3);
}

.btn-outline-info {
	color: #1e88e5;
	border-color: #1e88e5;
}

.btn-outline-info:hover {
	color: #fff;
	background-color: #1e88e5;
	border-color: #1e88e5;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
	box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
	color: #1e88e5;
	background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
	color: #fff;
	background-color: #1e88e5;
	border-color: #1e88e5;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.5);
}

.btn-outline-warning {
	color: #ffb22b;
	border-color: #ffb22b;
}

.btn-outline-warning:hover {
	color: #212529;
	background-color: #ffb22b;
	border-color: #ffb22b;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 178, 43, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
	color: #ffb22b;
	background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #ffb22b;
	border-color: #ffb22b;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 178, 43, 0.5);
}

.btn-outline-danger {
	color: #fc4b6c;
	border-color: #fc4b6c;
}

.btn-outline-danger:hover {
	color: #fff;
	background-color: #fc4b6c;
	border-color: #fc4b6c;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
	box-shadow: 0 0 0 0.2rem rgba(252, 75, 108, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
	color: #fc4b6c;
	background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #fc4b6c;
	border-color: #fc4b6c;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(252, 75, 108, 0.5);
}

.btn-outline-light {
	color: #f2f4f8;
	border-color: #f2f4f8;
}

.btn-outline-light:hover {
	color: #212529;
	background-color: #f2f4f8;
	border-color: #f2f4f8;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
	box-shadow: 0 0 0 0.2rem rgba(242, 244, 248, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
	color: #f2f4f8;
	background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #f2f4f8;
	border-color: #f2f4f8;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(242, 244, 248, 0.5);
}

.btn-outline-dark {
	color: #343a40;
	border-color: #343a40;
}

.btn-outline-dark:hover {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: #343a40;
	background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.nav-tabs {
	margin-bottom: 40px;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 0 solid rgba(0, 0, 0, 0.125);
	border-radius: 4px;
	margin-bottom: 30px;
}

.card-body {
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem;
}

h4.card-title {
	font-size: 1.125rem;
	margin-bottom: 10px;
	font-weight: 400;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #a1a229;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #e9ecef;
	border-radius: 4px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.form-control:focus {
	color: #a1a229;
	background-color: #fff;
	border-color: rgba(0, 0, 0, 0.25);
	outline: 0;
	box-shadow: none;
}

.col-form-label {
	padding-top: calc(0.375rem + 1px);
	padding-bottom: calc(0.375rem + 1px);
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.5;
}

.card-subtitle {
	margin-bottom: 10px;
	font-weight: 300;
	color: #a1aab2;
	margin-top: -0.375rem;
	font-size: .875rem;
}

.custom-file-label::after {
	content: 'Procurar';
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.custom-file-label {
	color: #67757c;
	border: 1px solid #e9ecef;
}
.page-titles {
	padding: 15px 20px;
	background: #fff;
	box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
}
.page-titles .text-themecolor {
	color: #1e88e5;
	margin-left: 16px;
}
.text-muted{
	color: #b5b702!important;
}
.breadcrumb-item + .breadcrumb-item::before {
	display: inline-block;
	padding-right: 0.5rem;
	padding-top: 1px;
	color: #6c757d;
	content: '\f178';
	font-family: 'Font Awesome 5 Pro';
}

a {
	color: #009efb;
}
a:focus,
a:hover {
	text-decoration: none;
	color: #1e88e5;
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #54667a;
	text-align: center;
	white-space: nowrap;
	background-color: #f2f4f8;
	border: 1px solid #e9ecef;
	border-radius: 4px;
}

.bg-primary {
	background-color: #7460ee !important;
}
.bg-inverse {
    background-color: #2f3d4a!important;
}

.modal-colored-header {
	color: #fff;
	border-radius: 0;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #e9ecef;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}
.modal-colored-header .close {
	color: #fff !important;
}
.modal-header .close {
	padding: 1rem 1rem;
	margin: -1rem -1rem -1rem auto;
}
button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
}

.close {
	float: right;
	font-size: 1.3125rem;
	font-weight: 500;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: 0.5;
}

.h3,
h3 {
	font-size: 1.3125rem;
}

.table tfoot th,
.table th,
.table thead th {
	font-weight: 500;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: none;
}
.table td,
.table th {
	padding: 0.75rem;
	vertical-align: top;
	border-top: 1px solid #5a5a5a40;
}

.table {
	width: 100%;
	margin-bottom: 1rem;
	color: #67757c;
}
input[type='date'] {
	color: #a1aab2;
}

.border{
	border: none !important;
    box-shadow: inset 0px 0px 0px 1px #2f3d4a;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #d4d4d463;
}
.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgb(0 0 0 / 5%);
}