@charset "utf-8";
/**
 *
 * Generic CSS for CakePHP
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       app.webroot.css
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 **/

/** General Style Info **/

.printInfo {
	display: none;
}

@media print {
	body {
		padding-top: 0px;
	}
	h2 {
		margin: 0px !important;
	}
	.printInfo {
		display: inline;
	}
	.container {
		margin: 0px !important;
		padding: 0px !important;
		width: 100% !important;
	}

	a[href]:after {
		content: none !important;
	}

	.actions {
		display: none !important;
	}

	.cake-sql-log {
		display: none !important;
	}

	.btn {
		display: none !important;
	}
	.noPrint {
		display: none;
	}
	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
}

.container {
	background: #fff;
	padding: 1em;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(50, 50, 50, 0.25);
	-moz-box-shadow: 0px 0px 5px 5px rgba(50, 50, 50, 0.25);
	box-shadow: 0px 0px 5px 5px rgba(50, 50, 50, 0.25);
	margin-bottom: 20px;
	border-radius: 5px;
}

.page-title {
	border-bottom: 1px solid #eee;
	margin: 0 1em 1em;
}

.nav-tabs {
	margin-bottom: 1em !important;
}

/** Bootstrap Menu - Second Level **/

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu > .dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
	display: block;
}

.dropdown-submenu > a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
	border-left-color: #fff;
}

.dropdown-submenu.pull-left {
	float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}

/** Header **/

nav.navbar form input[placeholder="Buscar..."] {
	width: 70%;
	display: inline-block;
}

/** Menu topo **/
.menu-topo {
	font-size: 12px;
}

.menu-img {
	padding-top: 5px;
	padding-bottom: 2px;
}

#version {
	position: absolute;
	bottom: 9px;
	color: #888;
	left: 124px;
}

/** Busca Header **/
#header-busca {
	display: inline;
}
@media (max-width: 1100px) {
	#header-busca {
		display: none;
	}
}

/** Form **/
.form-group {
	padding: 5px 15px;
	margin-bottom: 5px !important;
}

form .required label:after {
	color: #e32;
	content: " *";
	display: inline;
}

form .error {
	background: #ffdacc;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-weight: normal;
}

.submit {
	border-top: 1px solid #eee;
	padding-top: 1em;
}

/** Actions **/

div.actions {
	margin-top: 1.5em;
}

td.actions > .btn {
	padding: 3px 9px;
}

.busca {
	margin-top: 26px;
}

.busca-input {
	display: inherit !important;
	width: inherit !important;
}

/** Tabela **/

td {
	vertical-align: middle !important;
}

th.actions,
td.actions {
	text-align: center;
}

th a.asc:after {
	content: " ⇣";
	display: inline-block;
}
th a.desc:after {
	content: " ⇡";
	display: inline-block;
}

table .thumbnail,
.view .thumbnail {
	margin: 0;
	display: inline-block;
}

.linhaInativo > td {
	background-color: #e83030 !important;
	color: #fff !important;
}

.linhaInativo:hover > td {
	background-color: #ce2727 !important;
	color: #fff !important;
}

/** Paginação **/

div.pagination {
	width: 100%;
	text-align: center;
}

.acl-view .fa-check {
	color: green;
}

.acl-view .fa-times {
	color: red;
}

/** Minimapa **/
div.minimapa {
	height: 400px;
	width: 100%;
	border: 1px solid #eee;

	box-shadow: 0px 0px 8px #555;
	border-radius: 5px;
}

div.minimapa-painel {
	position: absolute;
	top: 25px;
	left: 25%;
	width: 50%;
	z-index: 5;
	background-color: #fff;
	padding: 0.75%;
	border: 1px solid #999;
	border-radius: 4px;
}

div.minimapa-painel input[type="text"] {
	height: 22px;
	font-size: 90%;
	width: 100%;
	line-height: normal;
	padding: 2%;
}

#relatorio-map {
	height: 400px;
}

.accordion-inner {
	line-height: 1.7em;
}

.d-flow {
	display: flow-root !important;
}

.ml-1 {
	margin-left: 10px !important;
}
.ml-2 {
	margin-left: 20px !important;
}
.ml-3 {
	margin-left: 30px !important;
}
.mt-1 {
	margin-top: 10px !important;
}
.mt-2 {
	margin-top: 20px !important;
}
.mb-1 {
	margin-bottom: 10px !important;
}
.mb-2 {
	margin-bottom: 20px !important;
}

.m-05 {
	margin: 5px !important;
}

.padding-top-25 {
	padding-top: 25px;
}

.padding-5,
.p-5 {
	padding: 5px !important;
}
.pt-5 {
	padding: 5px !important;
}
.pb-5 {
	padding: 5px !important;
}

/* drag de ordenacao */
.dragTR {
	background: #97d0c7;
}

/* Element de Horas de Alerta */
.headElementAlerta_horario {
	margin: 0px 0px 10px 0px;
	padding: 10px;
	background: #eeeeee;
	font-weight: bold;
}
.rowElementAlerta_horario {
	margin: 10px 0px;
}

.rowElementAlerta_horario input {
	padding: 10px;
}
/* ul de empresas */
.ulEmpresas {
	right: -100px !important;
	-webkit-column-count: 5;
	-moz-column-count: 5;
	column-count: 5; /* 3 is just placeholder -- can be anything */
}

.ulEmpresas {
	font-size: 12px !important;
}

.ulEmpresas li a {
	padding: 3px 10px !important;
	line-height: 1.2 !important;
}

/* cerca */
.cerca-checkbox-ativacao {
	border: 2px solid #59a1db;
	padding: 7px 9px;
	background: #3071a9;
	color: #fff;
	border-radius: 5px;
	margin-top: -9px;
}
#cerca-minimapa {
	z-index: 0;
}

/* Alerta de Informacoes */
.badgeAlerts {
	background: #c23336 !important;
	color: #fff !important;
}
.badgeSuccess {
	background: #429e01 !important;
	color: #fff !important;
}

.iconAlerts {
	background: #fff;
	margin: 0px 3px;
	padding: 4px;
	color: #c23336;
	border-radius: 10px;
}

/* ANimacao de Pisca Pisca */
.blink_me {
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;

	-moz-animation-name: blinker;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;

	animation-name: blinker;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
	20% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
}

@-webkit-keyframes blinker {
	20% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
}

@keyframes blinker {
	20% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	80% {
		opacity: 1;
	}
}
/**/

.circulo_info {
	background: #fff;
	border-radius: 100%;
	width: 150px;
	height: 150px;
	border: 25px solid #333;

	text-align: center;
	font-size: 4em;
	display: inline-block;
	margin: 10px;
}
.circulo_info i {
	line-height: 100px;
}
.circulo_info_ativo {
	border: 25px solid #7dc24b !important;
}

.bolder {
	font-weight: bold;
}

/* Controle de Rotas (Painel) */
.divConditions {
	float: left;
	margin: 0px 5px 0px 0px;
	margin-bottom: 0px !important;
}
.containerConditions {
	width: 100%;
	display: inline-block;
	padding: 10px;
	margin-bottom: 0px;
}
.infoRotaTD {
	background: #efefef;
	padding: 5px;
	border-radius: 4px;
	font-size: 12px;
	color: #333;
	border: 0px !important;
}
.infoRota {
	/*display: inherit;*/
	display: block;
	padding-bottom: 5px;
}
.infoRota div {
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	align-self: top;
}
.tableRotas {
	border-spacing: 5px;
	border-collapse: inherit;
}
.tableLegenda td {
	border: 0px !important;
}
/**/

.leaflet-div-icon {
	border-radius: 10px !important;
}

/* TABLE -> Danger 2 */
.table > thead > tr > td.danger2,
.table > tbody > tr > td.danger2,
.table > tfoot > tr > td.danger2,
.table > thead > tr > th.danger2,
.table > tbody > tr > th.danger2,
.table > tfoot > tr > th.danger2,
.table > thead > tr.danger2 > td,
.table > tbody > tr.danger2 > td,
.table > tfoot > tr.danger2 > td,
.table > thead > tr.danger2 > th,
.table > tbody > tr.danger2 > th,
.table > tfoot > tr.danger2 > th {
	background-color: #d5bbed;
}
.table-hover > tbody > tr > td.danger2:hover,
.table-hover > tbody > tr > th.danger2:hover,
.table-hover > tbody > tr.danger2:hover > td,
.table-hover > tbody > tr:hover > .danger2,
.table-hover > tbody > tr.danger2:hover > th {
	background-color: #cbabea;
}
/**/

/* Timeline */
ul.timeline {
	list-style-type: none;
	position: relative;
}
ul.timeline:before {
	content: " ";
	background: #d4d9df;
	display: inline-block;
	position: absolute;
	left: 29px;
	width: 2px;
	height: 100%;
	z-index: 400;
}
ul.timeline > li {
	margin: 20px 0;
	padding-left: 20px;
}
ul.timeline > li:before {
	content: " ";
	background: white;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: 3px solid #22c0e8;
	left: 20px;
	width: 20px;
	height: 20px;
	z-index: 400;
}
ul.timeline > li.vinc:before {
	background: #56c33f;
}
ul.timeline > li.desv:before {
	background: #e81616;
}
ul.timeline > li.exc:before {
	background: #000;
}
/**/

.swal2-popup {
	font-size: 1.6rem !important;
}
.swal2-bigger {
	width: 90% !important;
}

/**/
table {
	text-align: left;
	position: relative;
	border-collapse: collapse;
}
th,
td {
	padding: 0.25rem;
}
th {
	background: white;
	position: sticky;
	top: 55px; /* Don't forget this, required for the stickiness */
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}

.wrapText {
	word-wrap: break-word;
}

.tableFixed {
	table-layout: fixed;
}

.line-bold {
	height: 5px;
	border: none;
	color: rgb(51, 51, 51);
	background-color: rgb(142 142 142);
}

.line-sign {
	height: 3px;
	border: none;
	color: rgb(0, 0, 0);
	background-color: rgb(0, 0, 0);
}
@media print {
	.line-sign {
		background-color  : rgb(0, 0, 0) !important;
		print-color-adjust: exact;
		-webkit-print-color-adjust: exact;
	}
}

.table-responsive {
	overflow-x: unset !important;
}

.hover {
	cursor: pointer;
}

.widthAuto {
	width: auto !important;
}

.blinkMe {
	animation: blinker 1s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

@media print {
	.pagebreak {
		clear: both;
		page-break-after: always;
	}
}
.selectDisable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.text-danger2 {
   color: #da1310;
}
.text-success2 {
   color: #22ba24;
}