/*	
	Table Responsive
	===================
	Author: https://github.com/pablorgarcia
 */

 @charset "UTF-8";

 @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Roboto:300,400,500,700");
 body {
   /* font-family: 'Open Sans', sans-serif; */
   /* font-weight: 300; */
   /* line-height: 1.42em; */
   font-family: 'Poppins', sans-serif;
   color:#A7A1AE;
   background-color:#1f2739fa;
 }
 
 h1 {
   font-size:3em; 
   font-weight: 300;
   line-height:1em;
   text-align: center;
   color: #f1f6f9;
 }
 
 h2 {
   font-size:1em; 
   font-weight: 300;
   text-align: center;
   display: block;
   line-height:1em;
   padding-bottom: 2em;
   color: #f1f6f9;
 }
 
 h2 a {
   font-weight: 700;
   text-transform: uppercase;
   color: #f1f6f9;
   text-decoration: none;
 }
 
 .blue { color: #185875; }
 .yellow { color: #FFF842; }

 .cust-container{
    color: #f1f6f9;
 }
 
 .cust-container th h1 {
       font-weight: 5px;
       font-size: 1em;
   text-align: left;
   color: #f1f6f9;
 }
 
 .cust-container td {
       font-weight: normal;
       font-size: 1em;
       -webkit-box-shadow: 0 2px 2px -2px #0e1119f6;
       -moz-box-shadow: 0 2px 2px -2px #0E1119;
       box-shadow: 0 2px 2px -2px #0E1119;
 }
 
 .cust-container {
       text-align: left;
       overflow: hidden;
       width: 80%;
       margin: 0 auto;
   display: table;
   padding: 0 0 8em 0;
 }
 
 .cust-container td, .cust-container th {
       padding-bottom: 2%;
       padding-top: 2%;
   padding-left:2%;  
 }
 
 /* Background-color of the odd rows */
 .cust-container tr:nth-child(odd) {
       background-color: #323C50;
 }
 
 /* Background-color of the even rows */
 .cust-container tr:nth-child(even) {
       background-color: #2C3446;
 }
 
 .cust-container th {
       background-color: #1F2739;
 }
 
 .cust-container td:first-child { color: #f1f6f9; }
 
 .cust-container tr:hover {
    background-color: #464A52;
 -webkit-box-shadow: 0 6px 6px -6px #0E1119;
        -moz-box-shadow: 0 6px 6px -6px #0E1119;
             box-shadow: 0 6px 6px -6px #0E1119;
 }
 
 .cust-container tr:hover {
   background-color: #5e60ce;
   color: #f1f6f9;
   font-weight: bold;
   cursor: pointer;
   box-shadow: #e0e0e0  -1px 1px, #e0e0e0  -2px 2px, #e0e0e0  -3px 3px, #e0e0e0  -3px 3px, #e0e0e0  -3px 3px, #e0e0e0  -3.5px 3.5px !important;
   transform: translate3d(3px, -3px, 0);
   
   transition-delay: 0s;
       transition-duration: 0.4s;
       transition-property: all;
   transition-timing-function: line;
 }
 
 @media (max-width: 800px) {
 .cust-container td:nth-child(4),
 .cust-container th:nth-child(4) { display: none; }
 }