﻿:root {
	--azul: #0069d9;
	--verde: #83c635;
	--rojo: #f01b18;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	/*	Usado para trabajar con definición 'em'	*/
	font-size: 16px;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	line-height: 1.8em;
	text-align: left;
	color: #000;
	font-weight: 400;
	margin: 2em;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.row>* {
	padding: 0;
}

.lista-verificacion {
	box-shadow: 0 0 0 10px #fff, 0 15px 50px;
}

.lista-verificacion .encabezado {
	margin-bottom: 10px;
}

.lista-verificacion .encabezado .info {
	background-color: var(--azul);
	color: #fff;
	text-align: right;
	padding: 10px 20px;
	margin-top: 20px;
}

.lista-verificacion .encabezado .titulo {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.lista-verificacion .encabezado .titulo .headings-int {
	color: #000;
	font-size: 1.8em;
	margin-top: 20px;
}

.lista-verificacion .encabezado .estilosinstruccion {
	background-color: var(--azul);
	color: #fff;
	padding: 5px 10px;
	margin-top: 3px;
}

.lista-verificacion #reactivos #encabezado {
	position: sticky;
	top: -2px;
	z-index: 100;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.25em;
	text-align: center;
	color: #fff;
	background: #969696;
	padding: 10px 0;
	display: flex;
	align-items: center;
}


.row {
	margin-left: 0;
	margin-right: 0;
}
.container {
	padding: 0;
}

@media (max-width: 869px) {
	.rubrica {
		box-shadow: none;
	}
}

.boton {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.boton,
.boton:hover,
.boton:active,
.boton:focus {
	background-color: var(--azul);
	color: #fff;
}

.boton:hover {
	background-color: #0062cc;
}

/*-------*/
.lista-verificacion #reactivos .reactivo {
	text-align: left;
	display: flex;
	align-items: center;
	border: 1px solid #fff;
}

.lista-verificacion #reactivos .reactivo:nth-of-type(1) {
	border-top: 1px solid;
}

.lista-verificacion #reactivos .reactivo:nth-child(even) {
	background-color: #e5e5e5;
}

.lista-verificacion #reactivos .reactivo:nth-child(odd) {
	background-color: #f0efef;
}

.lista-verificacion #reactivos .reactivo .texto {
	font-size: 1em;
	padding-left: 5px;
}

.lista-verificacion #reactivos .reactivo .opcion {	/*	 ALINEAR VERTICALMENTE */
	display: flex;
	justify-content: center;
	align-items: center;
}

.ir-arriba {
	display:none;
	padding:15px;
	background:#63c9e0;
	font-size:20px;
	color:#fff;
	cursor:pointer;
	position: fixed;
	bottom:20px;
	right:20px;
	border-radius: 50%;
	opacity: 0.75;
	z-index: 10000;
}

.pager {
	display: flex;
	justify-content: center;
	margin: 20px 0px;
}

.txt {
	display: none;
}

p {
	font-size: 1.1em;
	line-height: 1.8em;
	text-align: left;
}

.headings {
	font-family: 'Open Sans', sans-serif;
	color: #b1b1b1;
	letter-spacing: 1px;
	font-size: 1em;
	margin: 0;
}

.bloqueado {
	opacity: 0.65;
}

/* JLBG 08/09/2018 animar radiobuttons*/
.lista-verificacion #reactivos .reactivo .opcion .content-input input,
.content-select select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
 
.lista-verificacion #reactivos .reactivo .opcion .content-input input {
	visibility: hidden;
	position: absolute;
	right: 0;
}

/* Estas reglas se aplicarán a todos las elementos i después de cualquier input*/
.lista-verificacion #reactivos .reactivo .opcion .content-input input + i {
	border: 2px solid rgba(0, 0, 0, 0.2);
}
 
.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio] + i {
	height: 30px;
	width: 30px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio] + i.vacio {
	border: 2px solid var(--azul);
}
	 
.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio] + i:before {
	content: '';
	height: 18px;
	width: 18px;
	border-radius: 100%;
	position: absolute;
	z-index: 1;
	background: var(--azul);
	transform: scale(0);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio]:checked + i:before {
	transform: scale(1);
	opacity: 1;
}

.lista-verificacion #reactivos .reactivo .opcion .content-input:hover input[type=radio]:not(:checked) + i {
	background: #f4edd9;
}

.lista-verificacion #reactivos .reactivo .opcion .content-input:hover input[type=radio]:disabled + i {
	background: transparent;
	cursor: default;
}
/*******************************************/
/***** RESPONSIVE 900 *****************/
/*******************************************/

@media (max-width: 992px) {
	html {
		margin:0;
		padding: 0;
	}

	body {
		padding: 0;
		border: none;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		margin:0.5em;
	}

	.lista-verificacion #reactivos .reactivo .opcion {
		justify-content:flex-start;
		padding-left: 5px;
	}

	.lista-verificacion #reactivos .reactivo .opcion .content-input {
		position: initial;
	}

	.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio] + i {
		height: 25px;
		width: 25px;
		border-radius: 100%;
	}

	.lista-verificacion #reactivos .reactivo .opcion .content-input input[type=radio] + i:before {
		height: 15px;
		width: 15px;
		background: var(--azul);
		transition: all 0.25s ease;
		transform: scale(0);
		opacity: 0;
	}

	.txt {
		display: initial;
		font-weight: normal;
		font-family: 'Open Sans', sans-serif;
		color: var(--azul);
		padding-left: 5px;
	}
	.lista-verificacion #reactivos #encabezado {
		display: none;
	}
}

.lista-verificacion #reactivos .reactivo.vacio {
	border:	1px solid var(--azul);
}


/*	=================================	*/
/* The container */
 
.lista-verificacion #reactivos .reactivo .opcion .content-input {
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	display: flex;
	justify-content: center;
	align-items: center;

	padding: 5px 0;
}

/* Hide the browser's default radio button */
.lista-verificacion #reactivos .reactivo .opcion .content-input input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.lista-verificacion #reactivos .reactivo .opcion .content-input:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.lista-verificacion #reactivos .reactivo .opcion .content-input input:checked ~ .checkmark {
	background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.lista-verificacion #reactivos .reactivo .opcion .content-input input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.lista-verificacion #reactivos .reactivo .opcion .content-input .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

@media (max-width: 869px) {
	.lista-verificacion {
		box-shadow: none;
	}
}
