/*	
	Side Navigation Menu V2, RWD
	===================
	License:
	https://goo.gl/EaUPrt
	===================
	Author: @PableraShow

 */

@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

body {
    
    color:black;
    background-color:white;
}

.blue { color: #185875; }
.yellow { color: #FFF842; }

.containerMain {
    text-align: left;
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    display: table;
    padding: 0 0 8em 0;
    border: 1px solid black;
}

.containerMain th h1 {
	  font-weight: bold;
	  font-size: 1em;
      text-align: left;
      color: #185875;
      border: 1px solid black;
}

.containerMain td {
	  font-weight: normal;
	  font-size: 1em;
      -webkit-box-shadow: 0 2px 2px -2px #0E1119;
      -moz-box-shadow: 0 2px 2px -2px #0E1119;
      box-shadow: 0 2px 2px -2px #0E1119;
      border: 1px solid black;
}



.containerMain td, .containerMain th {
	  padding-bottom: 0%;
	  padding-top: 0%;
      padding-left:1%;
      border: 1px solid black;
}

/* Background-color of the odd rows */
.containerMain tr:nth-child(odd) {
	  background-color: white;
      border: 1px solid black;
}

/* Background-color of the even rows */
.containerMain tr:nth-child(even) {
	  background-color: white;
      border: 1px solid black;
}

.containerMain th {
	  background-color: white;
      border: 1px solid black;
}

.containerMain td:first-child { color: #FB667A; }

.containerMain tr:hover {
   background-color: white;
   -webkit-box-shadow: 0 6px 6px -6px #0E1119;
    -moz-box-shadow: 0 6px 6px -6px #0E1119;
    box-shadow: 1px 6px 6px -6px #0E1119;
}

.containerMain td:hover {
  background-color: yellow;
  color: #403E10;
  font-weight: bold;
  
  box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
  transform: translate3d(6px, -6px, 0);
  
  transition-delay: 0s;
	  transition-duration: 0.4s;
	  transition-property: all;
  transition-timing-function: line;
}

@media (max-width: 800px) {
.containerMain td:nth-child(4),
.containerMain th:nth-child(4) { display: none; }
}

/*	
	End of the <Table> Responsive
	===================
	Author: @PableraShow

*/

