* {
	padding:0;
	margin:0;
}

html {
	height: 100%;
}

body {
	color: #06255B;
	font: 14px Sans-Serif;
	padding: 50px;
	background: linear-gradient(117deg, rgba(255,255,255,1) 0%, rgba(229,236,254,1) 100%) no-repeat;
	font-family: 'Poppins', sans-serif;
}

.headers{
	display:flex;
	align-items:center;
	align-content: center;
	text-align: center;
	justify-content: space-between;
}

.logo {
	width: 100px;

}

h1 {
	text-align: center;
	padding: 20px 0 12px 0;
	margin: 0;
}
h2 {
	font-size: 16px;
	text-align: center;
	padding: 0 0 12px 0; 
}



table {
	background-color: #F3F3F3;
	border-collapse: collapse;
	width: 60%;
	margin: 15px auto;
	border-radius: 25px;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.35);
	overflow: hidden; /* Con esta linea se va a mostrar el border-radius de la ultima fila, el color de la fila no se va a poner encima */
}

.col1 {
	border-right: solid #a2aec0 2px;
	text-align: left;
}

.col2 {
	border-left: solid #ccd1d7 2px;
	border-right: solid #a2aec0 2px;

}

.col3 {
	border-left: solid #ccd1d7 2px;
	border-right: solid #a2aec0 2px;
}

.col4 {
	border-left: solid #ccd1d7 2px;
}

th {
	background-color: #283650;
	color: #FFF;
	cursor: pointer;
	padding: 15px 10px;
}


th:nth-child(1) {
	border-radius: 25px 0 0 0;
}

th:nth-child(4) {
	border-radius: 0 25px 0 0;
}

th small {
	font-size: 9px; 
}

td, th {
	text-align: center;
}

a {
	text-decoration: none;
}

td a:nth-of-type(odd) {
	color: #002672 ;
	display: block;
	padding: 5px 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}

tr a:nth-of-type(even) {
	display: block;
	padding: 5px 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.dir:nth-of-type(even) a{
	color: #444444;
}

th a {
	padding-left: 0
}

td:first-of-type a {
	background: url(./.images/file.png) no-repeat 10px 50%;
	padding-left: 35px;
}
th:first-of-type {
	padding-left: 35px;
}

td:not(:first-of-type) a {
	background-image: none !important;
} 



tr:nth-of-type(odd) {
	background-color: #f2f8ff;
}

tr:nth-of-type(even){
	background-color:#e5f1ff;

}



tr:last-child {
	border-radius: 25px;
	
}

tr:hover td {
	background-color:#CACACA;
}

tr:hover td a {
	color: #000;
}





/* icons for file types (icons by famfamfam) */

/* images */
table tr td:first-of-type a[href$=".jpg"], 
table tr td:first-of-type a[href$=".png"], 
table tr td:first-of-type a[href$=".gif"], 
table tr td:first-of-type a[href$=".svg"], 
table tr td:first-of-type a[href$=".jpeg"]
{background-image: url(./.images/image.png);}

/* zips */
table tr td:first-of-type a[href$=".zip"] 
{background-image: url(./.images/zip.png);}

/* css */
table tr td:first-of-type a[href$=".css"] 
{background-image: url(./.images/css.png);}

/* docs */
table tr td:first-of-type a[href$=".doc"],
table tr td:first-of-type a[href$=".docx"],
table tr td:first-of-type a[href$=".ppt"],
table tr td:first-of-type a[href$=".pptx"],
table tr td:first-of-type a[href$=".pps"],
table tr td:first-of-type a[href$=".ppsx"],
table tr td:first-of-type a[href$=".xls"],
table tr td:first-of-type a[href$=".xlsx"]
{background-image: url(./.images/office.png)}

/* videos */
table tr td:first-of-type a[href$=".avi"], 
table tr td:first-of-type a[href$=".wmv"], 
table tr td:first-of-type a[href$=".mp4"], 
table tr td:first-of-type a[href$=".mov"], 
table tr td:first-of-type a[href$=".m4a"]
{background-image: url(./.images/video.webp);}

/* audio */
table tr td:first-of-type a[href$=".mp3"], 
table tr td:first-of-type a[href$=".ogg"], 
table tr td:first-of-type a[href$=".aac"], 
table tr td:first-of-type a[href$=".wma"] 
{background-image: url(./.images/audio.png);}

/* web pages */
table tr td:first-of-type a[href$=".html"],
table tr td:first-of-type a[href$=".htm"],
table tr td:first-of-type a[href$=".xml"]
{background-image: url(./.images/xml.png);}

table tr td:first-of-type a[href$=".php"] 
{background-image: url(./.images/php.png);}

table tr td:first-of-type a[href$=".js"] 
{background-image: url(./.images/script.png);}

/* directories */
table tr.dir td:first-of-type a
{background-image: url(./.images/folder.webp);}

/* pdf */
table tr td:first-of-type a[href$=".pdf"]
{background-image: url(./.images/pdf.png);}