/* ----- Normalize ----- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    margin: 0;
}

button,
input[type='button'] {
    cursor: pointer;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

input, textarea {
    border: none;
}

button {
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0;
}

.table-responsive {
    padding-right: 1px;
}

.card {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.btn {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* CSS Document */
html,
body,
#contenedor{
	background: url("../imgs/fondo.png") repeat;
    height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#fondo{
	width: 100%;
    background: url("../imgs/front_bg.jpg") repeat center center;
    background-size: contain;
	border: 1px rgba(73,8,8,1) solid;
	box-shadow: 1px 1px 10px 3px rgba(73,8,8,1);
	display: block;
	position: relative;
}
#fondo>img{
	display: block;
	width: 100vw;
	max-width: 1080px;
	min-width: 720px;
}
#fondo #ingreso{
	position: absolute;
	top:10px;
	left: 1%;
	background-color: rgba(255,255,255,0.8);
	border-radius: 5px;
}
#fondo>#ingreso>img{
	width: 200px;
}
#fondo #ingreso form{
	margin-top: 5px;
}
#fondo #ingreso table th{
	padding: 2px;
}
#fondo #ingreso table td{
	padding: 2px;
}
.btn-primary {
    color: #fff;
    background-color: #490808;
    border-color: #490808;
}
.btn-primary {
    color: #fff;
    background-color: #490808;
    border-color: #490808;
}
.btn-primary:hover {
    color: #490808;
    background-color: #eb8823;
    border-color: #490808;
}
.modal-content {
    border-radius: 10px;
	box-shadow: 1px 1px 10px 3px rgba(73,8,8,1);
}
#error .modal-header {
    padding:9px 15px;
    border-bottom:1px solid rgba(73,8,8,1);
    background-color: #FF0000;
	color: #FFFF00;
	box-shadow: 1px 1px 5px 1px rgba(73,8,8,1);
 }
