/*
 CSS for the main interaction
*/
h3 {
  font-weight: 100;
}

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
  width: 300px;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/
body {

  font: 13px/1.5em "Overpass", "Open Sans", Helvetica, sans-serif;
  color: grey;
  background-color: black;
  font-weight: 100;
}

.tabset > label {
  border-color: grey;
  position: relative;
  display: inline-block;
  padding: 15px 15px 12px;
  border: 1px solid transparent;
  border-bottom: 0;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
  font-weight: 100;
  color: grey;
}

#mainText {
    -webkit-flow-into: main;
}

#bottomText {
    font-size: 9px;
    position:absolute;                  
    bottom:0;
    
}



.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 2px;
  background: #8d8d8d;
}

.tabset > label:hover{
    color: grey/*#ccccb38/;
}
.tabset > input:focus + label {
  color:  #009933/*#06c;*/
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background:  #009933/*#06c;*/
}

.tabset > input:checked + label {
  border-color: grey/*#ccc*/;
  border-bottom: 1px solid grey/*#fff*/;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 25px 0;
  border-top: 1px solid grey/*#ccc*/;
}
a {
    
    color: grey;
}

/*
 Demo purposes only
*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  padding: 25px;
}

.tabset {
  max-width: 65em;
}
