:root {
	--rounded-default: 0 !important;
	/* inner = default - 1 */
	--rounded-inner: 0 !important;
	/* sm = default / 2 */
	--rounded-sm: 0 !important;
	/* inner: top-left, top-right, bottom-right, bottom-left */
	--rounded-top: var(--rounded-inner) var(--rounded-inner) 0 0 !important;
	--rounded-bottom: 0 0 var(--rounded-inner) var(--rounded-inner) !important;
	--rounded-start: var(--rounded-inner) 0 0 var(--rounded-inner) !important;
	--rounded-end: 0 var(--rounded-inner) var(--rounded-inner) 0 !important;
	--bs-card-cap-bg: blue !important;
}

.ucase {
	text-transform: uppercase;
}

.lcase {
	text-transform: lowercase;
}

.capitalize {
	text-transform: capitalize;
}

/* border-radius */
.alert,
.area-ocioso,
.btn,
.card,
.dropdown-menu,
.filter-area,
.form-control,
.form-select,
.list-group,
.modal-content,
.overlay-trabalho>div,
.rounded {
	border-radius: var(--rounded-default) !important;
}

.rounded-top {
	border-radius: var(--rounded-top) !important;
}

.rounded-bottom {
	border-radius: var(--rounded-bottom) !important;
}

.rounded-start,
.rounded-left {
	border-radius: var(--rounded-start) !important;
}

.rounded-end,
.rounded-right {
	border-radius: var(--rounded-end) !important;
}

.rounded-sm {
	border-radius: var(--rounded-sm) !important;
}

.rounded-0,
.rounded-none {
	border-radius: 0 !important;
}

.rounded-start-0 {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.rounded-end-0 {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* btn */
.btn:active,
.btn:focus {
	outline: none;
	box-shadow: none;
}

/* card, modal */
.card-header:first-child,
.modal-header:first-child {
	border-radius: var(--rounded-top);
}

.card-footer:last-child,
.modal-footer:last-child {
	border-radius: var(--rounded-bottom);
}

.card-header,
.modal-header,
.card-header>.row>div,
.table-active {
	font-weight: normal !important;
	color: var(--bs-secondary-color) !important;
}

.card-body {
	padding: .6em .5em;
}

/* dropdown */
.dropdown-menu {
	border-color: #ddd;
}

.dropdown-item:hover {
	background-color: #eee;
	color: #222;
}

/* form-group */
.form-group {
	margin-bottom: 5px;
}

/* page-item */
.page-item.active>.page-link {
	background: var(--secondary);
	border-color: #666;
}

.page-item>.page-link {
	color: #666;
}

/* nav */
.nav-item {
	margin-bottom: 1px;
	margin-right: 1px;
}

.nav-link.active {
	background: rgba(0, 0, 0, .03) !important;
}

/* bs-table */
.fixed-table-toolbar>.search {
	margin-top: 0 !important;
}

.fixed-table-pagination>div {
	margin-bottom: 0 !important;
}

label {
	color: #666 !important;
}

.very-small {
	font-size: .675em;
}

.ovf-hidden {
	overflow: hidden !important;
}

.area-300 {
	width: 100%;
	height: 300px;
	overflow-y: auto;
}

.ff-arial {
	font-family: Arial, Helvetica, sans-serif;
}

.ff-tahoma {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ff-verdana {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* bootstrap-table-jump-to plugin */
.bootstrap-table.bootstrap5 .fixed-table-pagination>.pagination .page-jump-to {
	display: inline-block
}

.bootstrap-table.bootstrap5 .fixed-table-pagination>.pagination .page-jump-to>button {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.bootstrap-table.bootstrap5 .fixed-table-pagination>.pagination .input-group-btn {
	width: auto
}

.bootstrap-table .fixed-table-pagination>.pagination .page-jump-to input {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	width: 70px;
	margin-left: 5px;
	text-align: center;
	float: left
}