/** @format */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--primary-color: #258cfb;
	--text-color: white;
}

/* @media only screen and (max-width: 767px) {
  .card {
    pointer-events: none;
  }
} */

@media (prefers-contrast: more) {
	:root {
		--text-color: black;
	}
}

@font-face {
	font-family: 'Poppins';
	src: url('/fonts/Poppins-Regular.ttf');
	font-weight: 400;
	font-style: normal;
}

.ui-sortable-helper {
	display: table;
	background-color: #fff3cd;
}

html {
	font-size: 14px;
}

.printable {
	display: none;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

@media print {
	@page {
		size: auto;
		margin: 1cm;
	}

	label {
		font-weight: 600;
	}

	.printable {
		display: block !important;
	}

	.quebra-pagina {
		break-before: page;
	}

	.input-group > span {
		display: none;
	}

	.input-group > input {
		border: none;
		border-bottom: 1px solid #ced4da;
	}

	.input-group-text {
		display: block;
	}
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 400;
}

.poppins-thin {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 100;
	font-style: normal;
}

.poppins-extralight {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 200;
	font-style: normal;
}

.poppins-light {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 300;
	font-style: normal;
}

.poppins-regular {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 400;
	font-style: normal;
}

.poppins-medium {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 500;
	font-style: normal;
}

.poppins-semibold {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600;
	font-style: normal;
}

.poppins-bold {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 700;
	font-style: normal;
}

.poppins-extrabold {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 800;
	font-style: normal;
}

.poppins-black {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 900;
	font-style: normal;
}

.poppins-thin-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 100;
	font-style: italic;
}

.poppins-extralight-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 200;
	font-style: italic;
}

.poppins-light-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 300;
	font-style: italic;
}

.poppins-regular-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 400;
	font-style: italic;
}

.poppins-medium-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 500;
	font-style: italic;
}

.poppins-semibold-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600;
	font-style: italic;
}

.poppins-bold-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 700;
	font-style: italic;
}

.poppins-extrabold-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 800;
	font-style: italic;
}

.poppins-black-italic {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 900;
	font-style: italic;
}

.datepicker td,
th {
	text-align: center;
	padding: 8px 12px;
	font-size: 14px;
}

td.active {
	color: white !important;
	display: revert !important;
}

.step {
	display: none;
}

.active {
	display: block;
}

input:focus {
	border: 1px solid var(--primary-color);
	outline: 0;
}

.invalid {
	border: 1px solid #ffaba5;
}

.progress {
	margin-bottom: 20px;
}

.app-btn-outline-primary {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-check:checked + .app-btn-outline-primary {
	background-color: var(--primary-color);
	color: white;
	transition: 0.15s ease-in-out;
}

.app-btn-outline-primary:hover {
	background-color: var(--primary-color);
	color: white;
}

.app-btn-primary,
.app-bg-primary {
	background-color: var(--primary-color);
	color: var(--text-color);
	transition: 0.15s ease-in-out;
}

.app-btn-primary:hover {
	background-color: hsl(from var(--primary-color) h s calc(l - 7));
	cursor: pointer;
	color: white;
}

.navbar-nav .dropdown ul a {
	transition: 0.1s ease-in-out;
}

.navbar-nav .dropdown ul a:hover {
	color: var(--primary-color);
	background-color: transparent;
}

.page-link {
	color: var(--primary-color);
}

.dt-paging-button.page-item > .page-link:hover {
	color: hsl(from var(--primary-color) h s calc(l - 7));
}

.dt-paging-button.page-item.active > .page-link {
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.dt-paging-button.page-item.active > .page-link:hover {
	color: white;
}

.app-text-primary {
	color: var(--primary-color);
}

.shake {
	position: relative;
	animation-name: shakeAnim;
	animation-duration: 1s;
	animation-timing-function: ease-in;
}

@keyframes shakeAnim {
	0% {
		left: 0;
	}

	10% {
		left: -3px;
	}

	20% {
		left: 3px;
	}

	30% {
		left: -8px;
	}

	40% {
		left: 8px;
	}

	50% {
		left: -5px;
	}

	60% {
		left: 3px;
	}

	70% {
		left: 0;
	}
}

.btns-header > button {
	transition: 0.15s ease-in-out;
}

.btns-header > button:hover {
	transform: scale(1.5);
}

.apexcharts-legend {
	justify-content: center !important;
	top: 0 !important;
}

.grid-stack-item-content {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

ol li::marker {
	font-weight: bold;
	color: var(--primary-color);
	font-size: 1.1em;
}

#list-anexos i {
	transition: 0.1s ease-in-out;
}

#list-anexos i:hover {
	transform: scale(1.3);
}

#canvas {
	border: 2px dotted #cccccc;
	border-radius: 15px;
	cursor: crosshair;
}

canvas {
	touch-action: none;
}

.grid-stack {
	background: #efefef;
}

.grid-stack-item-content {
	background-color: white;
	border-radius: 0.3rem;
}

.btns-header > button {
	transition: 0.15s ease-in-out;
}

.btns-header > button:hover {
	transform: scale(1.5);
}

.app-bg-warning {
	background-color: #fff3cd;
}

.nav-link {
	color: #6c757d;
}

.nav-link:hover {
	color: var(--primary-color);
}

#notificationDropdown::after {
	display: none;
}

.grabbing * {
	cursor: grab;
}

@keyframes blinkBorder {
	0% {
		background-color: #dc3545;
	}

	50% {
		background-color: transparent;
	}

	100% {
		background-color: #dc3545;
	}
}

.template-pmp {
	height: 100%;
}

::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

::-webkit-scrollbar-track {
	background: #ffffff !important;
}

::-webkit-scrollbar-thumb {
	background-color: var(--primary-color) !important;
	/* border: 2px solid #1a1a1a !important; */
	border-radius: 5px !important;
}

#calendar::-webkit-scrollbar,
#tab-menu::-webkit-scrollbar {
	display: none;
}

.accordion-button::after {
	background-image: initial;
}

.accordion-button:not(.collapsed)::after {
	background-image: initial;
}

@media (max-width: 768px) {
	/* .modal-dialog {
		width: 100%;
		margin: 0;
		max-width: none;
	}

	.modal-content:not('#modal-nfc') {
		height: 100%;
		border-radius: 0;
	}

	.modal-header {
		border-radius: 0;
	}

	.modal-body {
		overflow-y: auto;
		background-color: white;
		height: 100vh;
	}

	.btns-header {
		display: none;
	} */

	::-webkit-scrollbar {
		display: none;
	}
}

#calendar td.fc-day-sun,
#calendar td.fc-day-sat {
	background-color: rgb(240, 240, 240);
}

#modal-substituir-tag-nfc,
#modal-acesso-contratos {
	z-index: 1060 !important; /* valor maior que o padrão do Bootstrap (1050) */
}

.fc-event-local {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-width: 280px;
}

.fc-local {
	/* white-space: nowrap; */
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-width: auto;
}
