/**
 * Tabs
 */
.tabs {
	display: block;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    text-align: left;

}
.tabs label {
	order: 1; 
	display: block;
	padding: 1rem 2rem;
	margin-right: 0.2rem;
	cursor: pointer;
    background: #90CAF9;
    font-weight: bold;
    transition: background ease 0.2s;
    border: 1px solid #4B9327;
    border-bottom: 1px;
    margin-right: 0px;
    background-color: #CDE19C;
    color: black;
    margin-bottom: 0px;
}
.tabs .tab {
    order: 99; 
    flex-grow: 1;
	width: 100%;
	display: none;
    padding: 1rem;
    background: #fff;
    border: 1px solid #4B9327; 
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
    border: 1px solid #4B9327;
    border-bottom: 1px;
    background-color: #4B9327;
    color:white;
    margin-bottom: 0px;
}
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
  text-align: left;
    
}

@media (max-width: 45em) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }

}
@media only screen and (max-width: 1024px) {
    .tabs{display: block;}
  } 


/**
 * Generic Styling
*/
/* body {
  background: #eee;
  min-height: 100vh;
	box-sizing: border-box;
	padding-top: 10vh;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 300;
  line-height: 1.5;
  max-width: 60rem;
  margin: 0 auto;
  font-size: 112%;
} */

.tab-content{border: 1px solid #4B9327;}
  .nav-tabs>li.active>a {border: 1px solid #4B9327;border-bottom: 1px;background-color: #4B9327;color:white;}

.more{color: #4B9327; }
.tab-content{ padding-left: 20px;padding-bottom: 10px;}