* {
    font-family: 'Roboto Slab', sans-serif;
    box-sizing: border-box;
  }
  
h1{
  font-size: 40px;
  text-align: center;
  color: dimgrey;
  }

h2{
  font-size: 30px;
  text-align: center;
  color: dimgrey;
  }

h3{
  font-size: 20px;
  text-align: left;
  color: dimgrey;
  text-decoration: none;
  }

h4{
  color: dimgrey;
  }

h5{
  color: dimgrey;
  }

p {
  color: dimgrey;
}

ul {
  color: dimgrey;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 15px;
}
tr:nth-child(even) {
  background-color: #f2f2f2
}

/* link */
/* unvisited*/
a:link {
    color: dimgrey;
    text-decoration: none;
}

/* visited */
a:visited {
  color: green;
}

/* mouse over*/
a:hover {
  color: hotpink;
}

/* selected*/
a:active {
  color: blue;
}


.header {
  float: center;
}

.row {
  font-size: 18px;
  line-height: 2;
  text-align: left;
}

.footer {
  color:white;
  padding: 20px;
  text-align: left;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/*------------- 
Navigation Bar 
a:link       when the user has not visited, hovered, or clicked on a link
a:visited    after the user has visited the link
a:hover      when the user hovers their mouse over the link
a:active     as the user is clicking on the link
--------------*/
.navbar {
  overflow: hidden;
  background-color: white;
}

.navbar a {
  float: left;
  font.size: 72px;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

.navbar a:visited {
  color: dimgrey;
}

.navbar a:link {
  color: dimgrey;
}

.navbar a:hover {
  background-color: #009933;
  color: white;
}


/* KPI */
/* Create three equal columns that floats next to each other */

.columnKPI {
  float: left;
  width: 33.33%;
  padding: 10px;
  border-style: solid;
  border-color: white;
  border-width: 5px;
  border-radius: 15px
}

/* Table Format*/
  
  .headerRow {
    background-color:#04325B;
    color: white;
    font-size: 30px;
  }

  .tableRow {
    background-color:white;
    color: #5E5F61;
	  font-size: 20px;

  }

  .oddTableRow {
    background-color:white;
    color: #5E5F61;
	font-size: 20px;

  }

  .selectedTable {

  }

  .hoverTableRow {

  }

  .headerCell {

  }

  .tableCell {

  }

  .rowNumberCell {
    text-decoration: underline;
    color: blue;
  }


/* diariofotografico */
.row_df {
  display: -ms-flexbox; /* IE 10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE 10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column_df {
  -ms-flex: 50%; /* IE 10 */
  flex: 50%;
  padding: 0 4px;
}

.column_df img {
  margin-top: 8px;
  vertical-align: middle;
}

/* box row*/
/* The grid: Three equal columns that floats next to each other */
.columnBox {
  float: left;
  width: 33.33%;
  padding: 50px;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
  color: white;
}

.containerTabBox {
  padding: 20px;
  color: white;
}

/* Clear floats after the columns */
.rowBox:after {
  content: "";
  display: table;
  clear: both;
}

/* Closable button inside the image */
.closebtnBox {
  float: right;
  color: white;
  font-size: 35px;
  cursor: pointer;
}




/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
/* Responsive layout - when the screen is less than 600px wide, 
make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .columnKPI {width: 100%;}
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

