* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}

body {
	background:#F2F2F2;
	font-size: 16px;
	font-family:"Roboto", Arial, sans-serif, helvetica;

}
/*contenedor*/
.wrap {
	width: 90%;
	max-width: 500px;
	margin: auto;
}

form {
	width: 100%;
	margin: 20px 0;
	padding: 20px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 0 3px grey;
	border-top:4px solid #536DFE;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
	border: 1px solid #536DFE;
	border-radius: 2px;
	padding: 3px;
	width: 100%;
	display: block;
	margin-bottom:10px;
	font-family:"Roboto", Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
}

.btn,
form input[type="submit"]{
	padding: 15px;
	background: #ED572A;
	color:#E1E9FA;
	font-size: 1em;
	font-family:"Roboto", Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	float: right;
	cursor: pointer;

}

form input[type="submit"]:hover{
	background: #E64A19;
}




/*-----------*/

/*Estilo Tabla Responsive*/
.contenedor .tabla{
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    color: #000;
    height: 100%;
    font-size: 13px;
    margin: auto;
    margin-top: 20px;
    background-color: #fff;
}
th{
    background-color: #00aeee;
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
}
thead th{
    text-align: center;
}
td, th {
    border: 1px solid #000;
    text-align: left;
    padding: 8px;
}
td{
    color: #000;
}
tr:nth-child(even) {
    background-color: #ddd;
}





/*---------------------------------*/

/*Estilo Paginación*/
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 20px;
}

.pagination a {
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    background-color: var(--colorprimary);
    color: #fff;
    border-radius: 5px;
    margin-left: 1px;
    margin-right: 1px;
    font-size: 1.2em;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.pagination a.active {
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 1px;
    margin-right: 1px;
}

.pagination a:hover:not(.active) {
    background-color: #fff;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
}
/*-----------------*/
.valores{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.valores > div{
    width: 250px;
    margin: auto;
    margin-top: 10px;
}
@media screen and (max-width: 1191px) {
    .tabla{
        margin: auto;
    }
    table {
        display: block;
        margin: auto;
        overflow-x: auto;
    }
}
@media screen and (max-width:768px){
    .tabla{
        width: 90%;
    }
    main .contenedor{
        margin: auto;
        width: 90%;
    }
    main .contenedor .card{
        width: 90%;
        margin: auto;
    }
    form input, form select{
        width: 180px;
    }
    .contenedor h1{
        text-align: center;
    }
    .atras i{
        position: relative;
    }
}