/*------------- 
#7030A0
#3d2270
#e2d2ff
#c5a6ff

--------------*/

* {
    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: #7030A0
}

/* 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;
}

/*------------- 
Columns Style
--------------*/

[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: #7030A0
  color: #2c73d2;
}

.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: #7030A0;
  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:#7030A0;
    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;
  }

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}




/* 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%;}
}

