/* Set height of body and the document to 100% to enable "full page tabs" */
body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: Avenir Next,Avenir,Segoe UI,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
}

#tabsection {
  width:80%;
  margin-left: 10%;
  margin-right: 10%;
  overflow: auto;
  white-space: nowrap;
}

@media only screen and (max-width: 800px) {
  #tabsection {
    width:100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    }
}

/* Style tab links */
.tablink {
  background-color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: auto;
    display: inline-block;
    font-family: Avenir Next,Avenir,Segoe UI,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    text-align: center;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    color:#656565;
    font-weight: 500;
    transition-duration: 150ms;
}

.tablink:hover {
  border-bottom: 1.5px solid #656565;  
}

/* .tablink:focus {
  border-bottom: 1.5px solid #010101;
  color: #010101;
} */

.tablink:active { 
  border-bottom: 1.5px solid #010101;
  color: #010101;
  }   

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  display: none;
    padding: 10px 20px;
    height: 100%;
}

#Home {background-color: red;}
#News {background-color: green;}
#Contact {background-color: blue;}
#About {background-color: orange;}


table {
  font-family: Avenir Next,Avenir,Segoe UI,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
  border-collapse: collapse;
  width: 80%;
  text-align: center;
  table-layout: auto;
  border: 2px solid #010101;
  margin-left: 10%;
  margin-right: 10%;
}

tr {
  border-bottom: 1px solid #ffe291;
  padding-bottom: 1em;
  padding-top:1em;
  color: #010101;  
}
td {
  padding-bottom: 1em;
  padding-top:1em;
}
.show_time {
  color: #010101;
}
.show_title{
  color: #010101;
  font-weight: 500;
}
h1 {
  font-family: Avenir Next,Avenir,Segoe UI,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.cardimg {
  width: 7em;
  
}
.description {
  text-align: left;
  width: 50%;
  padding-right: 3em;
  overflow: auto;
}
@media only screen and (max-width: 800px) {
  .description {
    display: none;
  }
}
@media only screen and (max-width: 800px) {
  table {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    border: none;
    }
}
@media only screen and (max-width: 800px) {
  tr {
    border-bottom: 1px solid #ffe291;
    }
}

/*-ol {background:white;width:120%;padding:20px;list-style: none;}
.active a{color:#010101;text-decoration:none;}
li a{color:#010101;background:white;padding:5px; float: right; display:line-block;}
li a:hover{text-decoration:none;}
li::before {
    content: counter(my-awesome-counter) ". ";
    color: red;
    font-weight: bold;
  }
li:after {
    content: "";
    display: block;
    height: 4px;
    width: 40%;
    margin: 1px;
    background: #F5F5F5;
} */

.scroll {
 overflow-y: scroll; /* Add the ability to scroll */
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .scroll::-webkit-scrollbar {
      display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
