body{
	background-color: #FBFBFB !important;
}

.main-section{
	margin-top: 20px;
	font-family: 'PT Sans Narrow', sans-serif;
}

/* TABLE EXPANDABLE - START */
table.table-expandable > tbody > tr:nth-child(odd) {
    cursor: pointer;
}

table.table-expandable.table-hover > tbody > tr:nth-child(even):hover td {
    background-color: white;
}
/* TABLE EXPANDABLE - END */



/** code by webdevtrick ( https://webdevtrick.com ) **/
body {
	background-color: #6DC4F4;
}
h1 { 
     color:black;

}

.container {
  width: 80%;
  max-width: 1700px;
  margin: 50px auto;
}

button.accordion {
  width: 100%;
  background-color: whitesmoke;
  border: none;
  outline: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s linear;
}

button.accordion:after {
  content: '\f055';
  font-family: "fontawesome";
  font-size: 14px;
  float: right;
	
}

button.accordion.is-open:after {
  content: '\f056';
}

button.accordion:hover, button.accordion.is-open {
  background-color: #ddd;
}

.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}