body,
html {
	margin: 0;
	padding: 0;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

h3,
h4 {
	margin: 0px;
}


.contenedor-formulario {
	width: 100%;
	height: 100vh;
	display: flex;
}

.tarjeta-formulario {
	background-color: rgb(255, 255, 255, 1);
	margin: auto;
	padding: 20px 40px;
	border-radius: 5px;
	height: 90vh;
	overflow-y: auto;
	border: 0.5px solid lightgray;
}

#scrollbar1::-webkit-scrollbar {
	width: 10px;
}

#scrollbar1::-webkit-scrollbar-track {
	border-radius: 8px;
	background-color: #e7e7e7;
	border: 1px solid #cacaca;
}

#scrollbar1::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: #5083a6 !important;
}

.contenedor-img-formulario {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	max-height: 150px;
	max-width: 450px;
	border-radius: 5px;
}

.contenedor-img-formulario img {
	min-width: 100%;
	min-height: 100%;
}

.contenedor-campos {
	margin: auto;
	width: 100%;
}

.titulo-formulario {
	margin-bottom: 5px;
	text-align: center;
}

.descripcion-formulario {
	text-align: center;
	margin-bottom: 15px;
}

.expandingcell {
	font-size: 20px;
	font-weight: bolder;
	margin: 10px 0px;
}

.informacion {
	padding: 3px 5px;
}

.info-etiqueta {
	margin: 3px 0px !important;
	font-size: 13px !important;
}

.table-dropzone {
	border: 2px dashed #242425;
	border-radius: 3px;
	padding: 5px;
	background-color: #7ca5c7;
	color: white;
}

input[type="text"] {
	outline: none;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 0.5px solid lightgray;
	height: 25px;
	width: 100%;
	border-radius: 3px;
	padding: 4px;
}

input[type="check"] {
	max-height: 25px;
}

input[type="date"] {
	max-height: 25px;
	border: none !important;
}

select {
	margin: 5px 0px;
	padding: 5px 0px;
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
	border-bottom: 0.5px solid lightgray;
	background-color: white;
	font-size: 16px;
	text-decoration: none;
}

select:focus {
	border: none;
}

.contenedor-boton {
	padding: 30px 0px;
	text-align: center;
}

.btn {
	font-weight: bold;
	padding: 10px;
	background-color: rgba(130, 181, 29, 0.733);
	margin: auto;
	color: rgb(48, 46, 46);
	border-radius: 5px;
	border: none;
	cursor: pointer;
}

.btn:hover {
	color: white;
	background-color: rgba(101, 143, 18, 0.733);
}

.contenedor-interior-formulario {
	margin: auto;
}

.contenedor-img-no-encontrado {
	text-align: center;
	margin: auto;
}

.img-no-encontrado {
	max-width: 500px;
}

.texto-no-encontrado {
	font-size: 25px;
	font-weight: bold;
}

.mensaje-enviado {
	padding: 5px;
	background-color: rgba(130, 181, 29, 0.733);
	color: white;
	text-align: center;
	margin-bottom: 3px;
	border-radius: 5px;
}

@media only screen and (max-width: 700px) {
	.tarjeta-formulario {
		width: 100% !important;
	}
}

@media (min-width: 1380px) {
	.contenedor-img-formulario {
		max-height: 250px;
	}

	.tarjeta-formulario {
		width: 50%;
		margin: auto;
	}

	.contenedor-campos {
		width: 70%;
	}
}

.btn-mp {
	text-align: center;
	font-weight: bold;
	padding: 10px;
	background-color: rgba(28, 181, 252, 0.733);
	margin: auto;
	color: rgb(48, 46, 46);
	border-radius: 5px;
	border: none;
	cursor: pointer;
}

.btn-mp:hover {
	color: white;
	background-color: rgba(25, 148, 206, 0.733);
}

/* Achicar un poco el label de los checkbox */
.informacion label span {
	font-size: .9em;
}

.html-texto {
	font-size: .9em;
	opacity: .8;
}