{
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Header/logo Title */
.header {
  padding: 10px;
  text-align: center;
  background: #1abc9c;
  color: white;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}


/*------------------------------------------------------------------------ NAVIGATION BAR ---------------------------------------------------------------------------*/


.navbar
{
  background-color: #09403A;
  width: 100%;
}


.navbar-toggler
{
  color:white;
}

.nav-link
{
  color: #fff;
  background-color:#09403A;
  align-self: center;
  text-align: center;
  padding: 14px 16px;   

  font-size: 16px;


}

.nav-link:hover
{
  
  color: white;
  background-color: #ED920E;
  align-self: center;
  
}


.dropdown-item{
  
  padding-top: 2px;
  padding-bottom: 2px;
  background: white;
}
.dropdown-style{
  background: none;
  padding: 0px;
  border: none;
}
.dropdown-item:hover
{
  background-color: #09403A;
  color: white;
 
}
.list a:link
{
  background-color: white;
  color: #421c52;
}
.list a:visited
{
  color: blue;
}
.list:hover
{
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .dropdown:hover .dropdown-menu{
     display:block;
  }
}
.active-style
{
  color: white;
  background-color: #421c52;
  border:1px solid #421c52;
  border-radius: 10px;
  font-weight: bold;
}
.nav-not-active
{
  border-bottom: 3px solid #421c52;
}
.nav-active-style
{
  color: #421c52;
  background-color: white;
  border-top: 3px solid #421c52;
  border-right:  3px solid #421c52;
  border-left:  3px solid #421c52;
  font-weight: bold;
  border-bottom: none;
  border-top-left-radius : 10px;
  border-top-right-radius: 10px;
}

.nav-tabs
{
  border-bottom: 3px solid white;
  font-size: 0.85em;
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------*/




/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  text-align: center;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}
.side_10 {
  -ms-flex: 10%; /* IE10 */
  flex: 10%;
  background-color: #f1f1f1;
  padding: 20px;
}
.side_30 {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  padding: 20px;
}

.side_50 {
  -ms-flex: 50%; /* IE10 */
  flex: 50%;
  padding: 20px;
}

.hside_10 {
  -ms-flex: 10%; /* IE10 */
  flex: 10%;
  background: #1abc9c;
  padding: 10px;
  
}

.nside_5 {
  -ms-flex: 5%; /* IE10 */
  flex: 5%;
  background: #1abc9c;
  
}
.fullrow {
  -ms-flex: 100%; /* IE10 */
  flex: 100%;
  background-color: #f1f1f1;
  
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  text-align: center;
  color: white;
  background: #09403A;
  -ms-flex: 100%; /* IE10 */
  flex: 100%;
  padding: 10px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

/*---------------------------------------------------------------------TABLE DESIGN--------------------------------------------------------------------------------*/

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
  font-size: 16px;
}

tr:nth-child(even){background-color: #797d7b; color: white;}

th {
  background-color: #09403A;
  color: white;
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------Image Align------------------------------------------------------------------------------------*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------Collapse tab----------------------------------------------------------------------------------------*/
.ccollapsible {
  background-color: #82c47e;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .ccollapsible:hover {
  background-color: #09403A;
}

.ccollapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.ccontent {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #black;
  color: black;
}

