@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', arial;
}

i {
	padding: 4px 8px;
}

hr {
	border: 1px solid #ddd;
	width: 96%;
	margin: 0 auto;
}

/*------------------ ESTRUCTURALES -------------------*/

body {
	background-color: #fff;
	padding: 0 0 0 38px;
	transition: 0.5s;
}

header {
	background-color: #fff;
}

header h1 {
	font-family: 'Kaushan Script', cursive;
	font-size: 20px;
	color: #0f9d58;
	padding: 6px 16px;
	margin: 0;
}

header .encabezado {
	overflow: auto;
	padding: 4px 10px;
	width: 100%;
}

header .encabezado i {
	font-size: 32px;
	color: #0f9d58;
	padding-top: 6px;
}

header .usuario {
	padding: 6px 56px 6px 4px;
	font-size: 12px;
}

header .logout i {
	border-radius: 6px;
	color: #fff;
	background-color: #ccc;
	padding: 8px;
	margin: 2px;
	font-size: 20px;
	transition: 0.5s;
}

header .logout i:hover {
	background-color: red;
}

header .titulo {
	background-color: #0f9d58;
	padding: 4px 20px;
	color: #fff;
	box-shadow: 0px 3px 12px -1px rgba(0, 0, 0, 0.75);
	margin-bottom: 6px;
	width: 100%;
	min-width: 400px;
	overflow: hidden;
}

header .titulo h3 {
	font-size: 17px;
	color: #fff;
	font-family: 'Oswald', arial;
	display: inline;
}

header .switch {
	position: fixed;
	top: 8px;
	left: 186px;
	width: 12px;
	background-color: #ccc;
	height: 32px;
	cursor: pointer;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	transition: 0.5s;
	z-index: 200;
}

header .switch:hover {
	background-color: #0f9d58;
}

nav {
	background-color: #333;
	width: 44px;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.75);
	overflow-y: scroll;
	transition: 0.25s;
	z-index: 100;
}

nav::-webkit-scrollbar {
	width: 0;
}

nav div {
	margin-bottom: 20px;
	width: 180px;
}

nav img {
	width: 100%;
	padding: 16px 44px 0 44px;
	margin: 0 auto;
	opacity: 0;
}

nav label {
	padding: 16px;
	color: #ccc;
	font-size: 11px;
	letter-spacing: 0.5px;
	opacity: 0;
}

nav ul {
	list-style-type: none;
	margin: 2px 0 20px 0;
}

nav ul a {
	color: #ccc;
	text-decoration: none;
	font-size: 12px;
}

nav ul li {
	padding: 10px 6px;
	background-color: #444;
	border-left: 4px solid #00C968;
	transition: 0.3s;
}

nav ul li:hover {
	background-color: #333;
	color: #00C968;
	border-left: 4px solid #333;
}

nav i {
	padding: 4px 8px;
}

nav span {
	opacity: 0;
}

nav:hover {
	width: 180px;
}

nav:hover img,
nav:hover label,
nav:hover span {
	opacity: 1;
}

section {
	background-color: #fff;
	padding: 16px;
	min-width: 360px;
}

section i {
	color: #0f9d58;
}

section .subsection {
	background-color: #fff;
	padding: 22px 32px;
	overflow: auto;
	box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.75);
	font-size: 12px;
	background-image: url('../../Public/images/fondo.png');
	background-repeat: no-repeat;
	background-position: center 350px;
	background-size: 1400px;
	background-attachment: fixed;
}

section .subsection h1 {
	color: #0f9d58;
	font-family: 'Oswald', arial;
	font-size: 20px;
}

footer {
	background-color: #fff;
	padding: 16px 16px 32px 16px;
	text-align: center;
	font-size: 12px;
}

table {
	border-collapse: collapse;
	font-size: 12px;
	text-align: center;
}

table tr {
	border: none;
	border: 1px solid #ddd;
}

table tr:hover {
	background-color: rgba(237, 237, 237, 0.3);
}

table th,
table td {
	border: none;
	border-bottom: 1px solid #ddd;
}

table th {
	color: #333;
	font-size: 11px;
	letter-spacing: 0.5px;
	padding: 9px 12px;
	background-color: #f5f5f5;
}

table td {
	padding: 10px 12px;
}

table td i {
	color: #0f9d58;
	padding: 0 4px 0 0;
}

table td a {
	text-decoration: none;
	color: #0f9d58;
	margin: 0;
	padding: 3px 4px;
	border: 1px solid #0f9d58;
	transition: 0.3s;
	border-radius: 2px;
	font-size: 11px;
	background-color: #fff;
}

table td a:hover {
	color: #fff;
	background-color: #0f9d58;
	border: 1px solid #0f9d58;
}

table td a:hover i {
	color: #fff;
}

table td form {
	padding: 0;
	margin: 0;
}

table td select,
table td textarea,
table td input {
	margin: 0 3px;
	padding: 0;
	border: none;
	background-color: transparent;
}

table .acciones {
	padding: 2px 10px;
}

table .acciones-micro {
	padding: 2px 10px;
}

table .acciones-micro a {
	padding: 4px;
}

table .acciones-micro i {
	padding: 4px 3px;
}

table .acciones-micro span {
	padding-left: 5px;
	padding-right: 5px;
}

.patio-etapas {
	text-align: center;
	margin: 4px auto 20px auto;
}

.patio-etapas div {
	display: inline-block;
	margin: 6px;
	padding: 6px 8px;
	border-radius: 4px;
	color: #fff;
}

.patio-layout {
	overflow: hidden;
}

.patio-locacion {
	border: 1px solid #ccc;
	margin: 8px;
	border-radius: 4px;
	float: left;
}

.patio-locacion-header {
	border-bottom: 1px solid #ccc;
	padding: 6px 10px;
	text-align: center;
}

.patio-locacion-header p {
	letter-spacing: 1px;
	font-family: 'Oswald', arial;
	font-size: 15px;
	color: #0f9d58;
	padding: 3px 9px;
}

.patio-locacion-header a {
	text-decoration: none;
}

.patio-locacion-section {
	padding: 9px;
	overflow: hidden;
	background-color: #f9f9f9;
}

.patio-bahia {
	margin: 10px;
	width: 100px;
	text-align: center;
	float: left;
	border-radius: 2px;
	background-color: #fff;
}

.patio-bahia-header {
	border: 6px solid;
}

.patio-bahia-section {
	padding: 10px;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

.patio-bahia-section p {
	font-size: 34px;
	font-weight: bold;
}

.patio-bahia-footer {
	border: 1px solid #ccc;
	padding: 6px 2px;
}

.patio-bahia-footer p {
	font-size: 14px;
	margin: 2px;
}

/*----------------- FORM -----------------*/

form {
	margin-top: 16px;
}

input,
select,
textarea {
	outline: none;
	width: 100%;
	margin-top: 2px;
	font-size: 12px;
	border: none;
}

input[type=search] {
	width: auto;
	background-color: #f1f1f1;
	border: none;
	border-radius: 2px;
}

form button,
input[type=button],
form input[type=submit],
.caja-buscador input[type=button] {
	cursor: pointer;
	width: auto;
	margin-top: 18px;
	background-color: #0f9d58;
	border: 3px solid #b9e7d1;
	color: #fff;
	border-radius: 2px;
	transition: 0.5s;
	background-image: url(../images/checked-symbol.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: 5px 5px;
	font-size: 12px;
}

form button,
input[type=button]:hover,
form input[type=submit]:hover,
.caja-buscador input[type=button]:hover {
	border: 3px solid #54be8b;
	background-color: #0c7b45;
}

/*------------------ PADDING INPUTS ---------------------*/

input[type=text] {
	padding: 9.36px 9px;
}

input[type=email] {
	padding: 9.36px 9px;
}

input[type=password] {
	padding: 9.36px 9px;
}

input[type=number] {
	padding: 9.36px 9px;
}

input[type=date] {
	padding: 8.4px 9px;
}

input[type=time] {
	padding: 7.23px 9px;
}

input[type=datetime-local] {
	padding: 7.23px 9px;
}

input[type=file] {
	padding: 6.02px 9px;
}

input[type=button] {
	padding: 8px 9px 8px 30px;
}

input[type=submit] {
	padding: 8px 9px 8px 30px;
}

input[type=search] {
	padding: 9.34px 10px;
}

input[type=color] {
	padding: 9.34px 10px;
}

button {
	padding: 9.2px 10px;
}

select {
	padding: 8.6px 9px;
}

textarea {
	padding: 7px 9px;
}

/*------------------ BARRAS DE PROGRESO -------------------*/

progress {
	height: 25px;
	-webkit-appearance: none;
	border: none;
	margin-right: 4px;
	padding: 0;
}

progress::-webkit-progress-bar {
	background-color: #ddd;
	border-radius: 2px;
	padding: 2px;
}

progress::-webkit-progress-value {
	border-radius: 2px;
	-webkit-animation: move 5s linear 0 infinite;
}

/*IDENTIFICADORES*/




/*CLASES*/
.caja-login {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(../images/pantallamin.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: bottom;
	background-position-x: right;
	overflow: auto;
	background-color: #f1f1f1;
}

.login {
	width: 360px;
	margin: 16px auto;
	padding: 20px 36px 18px 36px;
	border-radius: 3px;
	transition: 1s;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0px 0px 19px -3px rgba(0, 0, 0, 0.75);
}

.login h1 {
	font-family: 'Kaushan Script', cursive;
	color: #0f9d58;
	font-size: 30px;
	text-align: center;
}

.login h3 {
	font-family: 'Russo One', sans-serif;
	color: #0f9d58;
	font-size: 1em;
	text-align: center;
	letter-spacing: 3px;
}

.login label {
	font-size: 11px;
	letter-spacing: 1px;
	color: #444;
}

.login input {
	margin-bottom: 12px;
	border-radius: 2px;
	padding-left: 30px;
}

.login input[type=text],
.login input[type=password] {
	background-color: #f1f1f1;
	border: none;
	background-image: url(../images/checked-symbol.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: 5px 7px;
}

.login input[type=text] {
	background-image: url(../images/businessman.png);
}

.login input[type=password] {
	background-image: url(../images/lock.png);
}

.login input[type=submit] {
	margin: 6px 0;
	width: 100%;
	color: #fff;
	transition: 0.5s;
	font-size: 12px;
}

.login p {
	margin: 12px 0 6px 0;
	padding: 6px;
	font-size: 12px;
	text-align: center;
	color: #0f9d58;
}

.login-img {
	text-align: center;
}

.login-img img {
	margin: 30px auto 0 auto;
	width: 120px;
}

.col35 {
	width: 35%;
}

.col65 {
	width: 65%;
}

.right {
	float: right;
}

.left {
	float: left;
}

.der {
	text-align: right;
}

.izq {
	text-align: left;
}

.volver i {
	color: #0f9d58;
}

.caja-inputs {
	overflow: hidden;
}

.caja-input {
	float: left;
	width: 25%;
	padding: 8px;
	height: 65px;
}

.caja-input input,
.caja-input select,
.caja-input textarea {
	background-color: #f1f1f1;
	border: none;
	border-radius: 2px;
}

.caja-buscador {
	margin-bottom: 16px;
	min-width: 980px;
	overflow: hidden;
}

.caja-buscador i {
	border-radius: 50%;
	transition: 0.3s;
	padding: 8px;
	font-size: 20px;
}

.caja-buscador i:hover {
	background-color: #eee;
}

.caja-buscador input,
.caja-buscador select {
	background-color: #f1f1f1;
	border: none;
	border-radius: 2px;
	float: left;
	width: 140px;
	margin-right: 10px;
}

.caja-buscador input[type="number"] {
	width: 90px;
}

.caja-buscador input[type="checkbox"] {
	width: 30px;
	margin: 12px 0;
}

.caja-buscador p {
	margin: 12px 3px;
}

.caja-botones {
	text-align: right;
	padding: 6px 8px;
}

.celda-detalles {
	border: none;
	padding: 0;
	margin: 0;
}

.celda-detalles:hover {
	border: none;
	background-color: #fff;
}

.celda-detalles div {
	padding: 0;
	margin: 0;
	text-align: center;
}

.caja-tabla {
	overflow: auto;
}

.arriba-abajo {
	position: fixed;
	bottom: 16px;
	right: 10px;
}

.arriba-abajo i {
	font-size: 26px;
	margin: 0;
	padding: 0;
}

.arriba-abajo a {
	text-decoration: none;
	opacity: 0.5;
	color: #bbb;
	transition: 0.5s;
}

.arriba-abajo a:hover {
	color: #0f9d58;
	opacity: 1;
}

.caja-confirmacion {
	text-align: center;
	display: none;
}

.caja-confirmacion h1 {
	color: #0f9d58;
	font-family: 'Oswald', arial;
	font-size: 20px;
	margin-bottom: 12px;
}

.caja-confirmacion table {
	margin: auto;
}

.caja-confirmacion textarea {
	width: 560px;
	border: 1px solid #ddd;
	margin-top: 16px;
	margin-bottom: 0;
	padding: 12px;
}

.caja-confirmacion input {
	margin-top: 14px;
}

.caja-criterios {
	margin: 16px 0;
	padding: 8px;
}

.caja-criterio {
	padding: 18px 18px 2px 18px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-bottom: 8px;
}

.caja-criterio-texto p {
	text-align: justify;
}

.caja-criterio-opciones {
	margin: 18px 0;
	text-align: center;
	overflow: hidden;
}

.bg-conforme {
	background-color: #00C968;
}

.criterio-default {
	width: 50%;
	float: left;
	padding: 12px;
}

.criterio-default-nombre {
	padding: 4px;
}

.criterio-default-nombre span {
	color: #c8ffe5;
}

.criterio-default-input {
	padding: 4px;
}

.criterio-default-input div {
	display: inline;
	padding: 0;
}

.criterio-default-input div input {
	padding: 10px 20px;
	width: 86px;
	font-size: 20px;
}

.criterio-default-input div i {
	font-size: 20px;
	padding: 8px;
	cursor: pointer;
}

.criterio-conforme {
	background-color: #c8ffe5;
}

.criterio-noconforme {
	background-color: #ffd7d7;
}

.criterio-conforme i {
	color: #0f9d58;
}

.criterio-noconforme i {
	color: #c20707;
}

.criterio-cumple {
	background-color: #00C968;
}

.criterio-nocumple {
	background-color: #e05c5c;
}

.criterio-adjunto {
	background-color: #5694cd;
}

.criterio-url {
	background-color: #2e6da6;
}

.criterio-cumple i,
.criterio-nocumple i,
.criterio-adjunto i,
.criterio-url i {
	color: #fff;
}

.caja-criterio-inputs textarea {
	border: none;
	font-size: 11px;
}

.caja-criterio-mt {
	font-size: 10px;
	text-align: right;
	margin-top: 12px;
}

.caja-progreso {
	position: fixed;
	bottom: 0;
	left: 0;
	height: 8px;
	z-index: 1000;
	width: 100%;
	background-color: #333;
}

.caja-progreso div {
	height: 100%;
	float: left;
	transition: 1s;
}

.progreso-porcentaje {
	width: 50px;
	float: right;
	margin: 4px 0;
	text-align: right;
	height: 12px;
}

.progreso-verde::-webkit-progress-value {
	background-color: #0D854B;
}

.progreso-amarillo::-webkit-progress-value {
	background-color: yellow;
}

.progreso-rojo::-webkit-progress-value {
	background-color: red;
}

.progreso-verde-suave::-webkit-progress-value {
	background-color: #05b661;
}

/******************************* FIJAR FILAS Y COLUMNAS **********************************/

.table-scroll {
	position: relative;
	z-index: 1;
	overflow: auto;
	height: 560px;
}

.table-scroll thead th {
	position: -webkit-sticky;
	position: sticky;
	top: -1px;
	box-shadow: 1px 1px 2px -1px rgba(0, 0, 0, 0.5);
}

.table-scroll th:first-child {
	position: -webkit-sticky;
	position: sticky;
	left: -1px;
	z-index: 2;
	box-shadow: 1px 1px 2px -1px rgba(0, 0, 0, 0.5);
}

.table-scroll thead th:first-child {
	z-index: 5;
}

.columna-fija {
	min-width: 260px;
	background-color: #fbfbfb;
	border-right: 1px solid #ddd;
}

.columna-fija-trabajador {
	min-width: 90px;
	background-color: #fbfbfb;
	border-right: 1px solid #ddd;
}

/**********************************BUTTON ESPECIAL***************************************/

.btn-comentario {
	color: #0f9d58 !important;
	background-color: #fff !important;
	border: 3px solid #fff !important;
	background-image: url(../images/message2.png) !important;
	margin-left: 4px !important;
}

.btn-comentario:hover {
	border: 3px solid #fff !important;
	background-color: #f1f1f1 !important;
}

/********************************NAV DEVENGADO***********************************/

.caja-detalles {
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	width: 350px;
	background-color: rgb(255, 255, 255);
	padding: 0px 0 12px 0;
	overflow-y: scroll;
	border-left: none;
	z-index: 1000;
}

.caja-detalles::-webkit-scrollbar {
	width: 0;
}

.caja-detalles .div1 {
	float: left;
}

.caja-detalles .div1 i {
	color: #fff;
	padding: 12px;
	font-size: 17px;
	cursor: pointer;
	transition: 0.3s;
}

.caja-detalles .div1 i:hover {
	color: #eee;
}

.caja-detalles .div2 h2 {
	text-align: left;
	font-size: 17px;
	background-color: #0f9d58;
	color: #fff;
	padding: 7px 0;
	font-family: 'Oswald', arial;
}

.caja-detalles .div3 {
	padding: 0 30px;
	text-align: left;
}

.caja-detalles .div-ico {
	text-align: center;
	padding: 12px 0 0 0;
	transition: 0.7s;
}

.caja-detalles .div-ico i {
	font-size: 32px;
	color: #ccc;
	transition: 0.7s;
	cursor: pointer;
	opacity: 0;
}

.caja-detalles .div-ico:hover i {
	opacity: 1;
}

.caja-detalles .div-ico i:hover {
	color: #0f9d58;
}

.caja-detalles a,
.caja-detalles a:hover {
	border: none;
	background-color: transparent;
}

.caja-pendientes {
	float: left;
	margin: 0 15px 15px 0;
}

.br-conforme {
	display: none;
}

.btn-flotante {
	margin-bottom: 6px;
	position: fixed;
	;
	bottom: 0;
	left: 45%;
	right: 45%;
}

/********************************GRÁFICAS***********************************/

.caja-fila-graficas {
	overflow: hidden;
}

.caja-graficas {
	width: 100%;
	float: left;
	min-height: 400px;
}

.caja-graficas-grafica {
	margin: 8px 0;
	padding: 8px 0;
	text-align: center;
}

.caja-graficas-grafica a {
	color: #fff;
	padding: 4px 6px;
	margin: 4px 6px;
	border-radius: 2px;
	text-decoration: none;
}

.caja-graficas-grafica .grafica {
	height: 280px;
}

.caja-graficas-grafica .titulo {
	color: #444;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
}

.caja-graficas-grafica .tabla {
	height: 290px;
	padding: 22px;
	overflow: auto;
}

.caja-graficas-grafica .tabla table {
	width: 100%;
}

/********************************OTROS***********************************/

.oculto {
	display: none;
}

.cb-2 {
	width: 20px;
	margin: 10px 2px;
}

.cb-input {
	display: block;
	height: 20px;
	margin: 6px 1px;
	width: 20px;
}

.tabla-nav {
	margin-bottom: 15px;
}

.tabla-nav td {
	border: 1px solid #fff;
	padding: 1px 4px;
}

.tabla-nav .linea-total {
	border-bottom: 1px solid #bbb;
}

.fondo-contactamos {
	background-image: url('../../Public/images/fondo.png');
	background-repeat: no-repeat;
	background-size: cover, cover;
}

/********************************SISTEMA DE CONTROL***********************************/

.td-sub {
	font-size: 11px;
	color: #666;
}

.mensaje {
	background-color: #fff;
	border-radius: 4px;
	margin-right: 8px;
	padding: 10px 18px !important;
	color: #00C968;
	border: 1px solid #00C968;
	width: 260px;
}

/********************************ANIMACIONES***********************************/

.animatezoom {
	animation: animatezoom 0.4s;
}

@keyframes animatezoom {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

.animateleft {
	animation: animateleft 0.5s;
}

@keyframes animateleft {
	from {
		transform: translateX(600px);
	}

	to {
		transform: translateX(0);
	}
}

.span-no {
	display: none;
}

/********************************RESPONSIVE***********************************/

@media only screen and (max-width: 1200px) {
	.caja-graficas {
		width: 100%;
	}
}

@media only screen and (max-width: 1080px) {
	.col35 {
		width: 40%;
	}

	.col65 {
		width: 60%;
	}

	.caja-inputs {
		width: 100%;
	}

	.caja-input {
		width: 50%;
	}
}

@media only screen and (max-width: 900px) {
	.encabezado {
		min-width: 360px;
	}

	.col35 {
		width: 80%;
	}

	.col65 {
		width: 20%;
	}

	.col65 .usuario,
	.col65 .icousuario {
		display: none;
	}

	.patio-locacion {
		width: 100%;
		margin: 8px 0;
	}

	.caja-login {
		background-image: url(../images/fondomovil.jpg);
		background-color: transparent;
		background-position-x: center;
	}
}

@media only screen and (max-width: 680px) {
	.criterio-default-input div {
		display: block;
	}
}

@media only screen and (max-width: 580px) {
	.login {
		width: 100%;
		border: none;
		padding: 40px;
		margin: 0;
		box-shadow: none;
		background-color: transparent;
	}

	.login h1 {
		font-size: 24px;
	}

	.login p {
		font-size: 11px;
	}

	.subsection h1 {
		min-width: 340px;
	}

	.caja-inputs {
		min-width: 200px;
	}

	.caja-inputs,
	.caja-input {
		width: 100%;
	}

	.caja-detalles {
		width: 100%;
		left: 0;
	}

	.caja-criterio-opciones div label {
		display: none;
	}
}

@media only screen and (max-width: 480px) {
	.span-no {
		display: block;
	}
}

.info-item {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 31%;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.info-item {
	width: 23%;
	margin-left: 8px;
	margin-right: 8px;
}

.item-container {
	width: 100%;
	margin-left: 4px;
	margin-right: 4px;
	margin-bottom: 5px;
}

@media (max-width: 1024px) {
	.info-item {
		width: 47%;
		margin-left: 8px;
		margin-right: 8px;
	}

	.item-container {
		width: 100%;
		margin-left: 4px;
		margin-right: 4px;
		margin-bottom: 5px;
	}
}

@media (max-width: 772px) {
	.info-item {
		width: 100%;
		margin-left: 8px;
		margin-right: 8px;
	}

	.item-container {
		width: 100%;
		margin-left: 4px;
		margin-right: 4px;
		margin-bottom: 5px;
	}
}

@media (max-width: 426px) {
	.info-item {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

.info-item h2 {
	margin-top: 0;
	color: #333;
}

.info-item p {
	margin: 10px 0;
	color: #555;
}


.info-item-header {
	background-color: #0f9d58;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 15px;
}

.info-item-header h2 {
	margin: 0;
	color: #ffffff;
}

input[type="radio"] {
	margin-right: 3px !important;
	display: flex;
}

.form-check-input {
	width: 13px !important;
}

.row {
	justify-content: flex-start;
	display: flex;
	flex-wrap: wrap;
}

.col {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	flex: 1 0 0%;
}

/* prueba */
.radio-container {
	display: flex;
	align-items: center;
	margin: 5px;
	padding-left: 20px;
	margin-bottom: 8px;
}

.radio-container label {
	margin-right: 11px;
	cursor: pointer;
	font-size: small;
}

.radio-container input[type="radio"] {
	display: none;
}

.radio-container input[type="radio"]+label::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 10px;
	border: 1px solid #0f9d58;
	border-radius: 50px;
	vertical-align: middle;
}

.radio-container input[type="radio"]:checked+label::before {
	background-color: #0f9d58;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}


/* .containerLlantas {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 592px !important;
    min-width: 592px !important;
    max-height: 110px !important;
    min-height: 110px !important;
    margin-left: 14px;
} */

.containerMula,.containerPatineta {
	overflow-x: auto !important;
	width: 100% !important;
	height: 260px;
	max-width: 667px;
}



.tire {
	width: 80px;
	height: 40px;
	border: 2px solid rgb(13, 104, 55);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 15px;
	margin-left: 10px;
	color: #0c7b45;
	font-weight: bold;
}

#tire6,
#tire17,
#tireP4,
#tireP11 {
	margin-top: 30px;
	margin-left: 30px;
}

#tire3,
#tire9,
#tire14,
#tire20 {
	margin-right: 20px;
}

.bad {
	border-color: red;
	background-color: rgba(255, 0, 0, 0.1);
	color: red;
	font-weight: bold;
}

#tireP2,
#tireP6,
#tireP9,
#tireP13 {
	margin-right: 160px;
}

.bgTractomula {
	position: relative;
	background-image: url(../images/Tractomula.png);
	background-size: cover;
	opacity: 0.2;
	height: 252px;
	width: 667px;
}

.bgPatineta {
	position: relative;
	background-image: url(../images/Patineta.png);
	background-size: cover;
	opacity: 0.2;
	height: 252px;
	width: 667px;
}

.containerLlantas {
	display: flex;
	justify-content: flex-start;
	margin-top: 5px;
	flex-wrap: wrap;
	align-items: center;
	max-width: 592px !important;
	min-width: 592px !important;
	max-height: 110px !important;
	min-height: 110px !important;
	margin-left: 14px;
	z-index: 99;
	/* Asegura que las llantas estén encima */
}

.Tractomula {
	position: relative;
	top: -241px;
	left: -3px;
	height: 0;
}

.Patineta {
	position: relative;
	top: -241px;
	left: -3px;
	height: 0;
}

.alert {
	position: relative;
	padding: 1rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

table.table-print{
	font-size: 12px !important;
	width: 100%;
}

table.table-print thead th, table.table-print tbody td{
	vertical-align: middle !important;
	border: 1px solid black !important;
}

.imgprint{
	max-width: 100px;
}

.bodyPrint{
	padding:0 !important;
}

.tituloVerdeClaro{
	border: solid 1px !important;
	font-weight: bold !important;
	background-color: #70ad47 !important; 
	color: white !important;
	border: solid 1px black !important;
	padding-top: 3px !important;
	padding-bottom: 3px !important;
}

.tituloVerdeOscuro{
	border: solid 1px !important;
	font-weight: bold !important;
	background-color: #005d29 !important; 
	color: white !important;
	border: solid 1px black !important;
	font-size: 16;
	height: 35.2px !important;
	padding-top: 3px !important;
	padding-bottom: 3px !important;
}

.itemverdeClaro{
	border: solid 1px !important;
	text-align: center !important;
	font-weight: 500 !important;
}

.tableItems{
	margin-top: 10px !important;
	margin-bottom: 10px !important;
	margin-left: 10px !important;
	/* width: 493px !important; */
	width: 744px !important;	
}

.table-header{
	margin-left: 10px !important;
	width: 1498px !important;
}

.headerformato{
	margin-left: 10px !important;
	width: 1498px !important;
	margin-bottom: 10px!important;
}

.btn-primary{
	color: white !important;
	font-weight: bolder !important;
	background-color: #05b661 !important;
	border-radius: 5px !important;
	cursor: pointer !important;
	border: solid 1px #005d29 ;
	box-shadow: 0 5px 5px 0 rgba(50, 50, 50, 0.25);
	padding: 5px !important;
}

#daterange {
	font-size: 12px;
	padding: 5px;
	width: 80%; /* Ajusta el ancho del input */
	margin: 0 auto; /* Centrar el input */
}

/* Reducir el tamaño del calendario de daterangepicker */
.daterangepicker {
	font-size: 11px; /* Cambiar el tamaño de fuente */
}

.daterangepicker .calendar-table {
	font-size: 9px; /* Cambiar el tamaño del texto en el calendario */
}

.daterangepicker td, .daterangepicker th {
	padding: 3px; /* Reducir padding en las celdas del calendario */
}

.ok-button {
	font-size: 12px;
	padding: 10px 10px;
	background-color: #4CAF50;
	color: white; 
	border-radius: 5px;
	margin-top: 10px;
}

.ok-button:hover {
	background-color: #005d29;
}

.cancel-button{
	font-size: 12px;
	padding: 10px 10px;
	background-color: #e64242; 
	color: white;
	border-radius: 5px;
	margin-top: 10px;
}

.cancel-button:hover{
	background-color: #770909; /* Color de fondo al pasar el cursor */
}

.form-select {
	display: block;
	width: 100%;
	padding: 0.375rem 1.75rem 0.375rem 0.75rem;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.375rem;
	appearance: none;
  }
  
  .form-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .form-select[multiple], .form-select[size]:not([size="1"]) {
	padding-right: 0.75rem;
  }
  