.tabset{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
}

.tab-panels{
  flex-basis:100%;
}

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

.tabset .tab-panel {
  display: none;
}

.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
*/


.tabset > label {
  font-size:0.8em;
  position: relative;
  display: block;
  padding: 1.5em 0;
  cursor: pointer;
  background-color: var(--mid-blue);
  flex-basis:calc(25%);
  text-align:center;
}

input:focus-visible+label {
  outline: 2px solid rgba(0, 102, 204, 1);
  border-radius: 3px;
}

.tabset label:hover,
.tabset>input:focus+label,
.tabset>input:checked+label {
  color: #FFF;
  background: var(--dark-blue);
}

.tabset label:hover::after,
.tabset>input:focus+label::after,
.tabset>input:checked+label::after {
  background: var(--navy-blue);
}

.tabset>input:checked+label {
  background-color: var(--base-blue);
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 15px 30px 15px;
  background-color: var(--base-blue);
}
p.title {
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  padding:0;
}

h3.signatur {
  margin: 0;
  position: relative;
  z-index: 100;
  padding:0;
}

h3.signatur:before {
  content: '';
  display: block;
  height: 90px;
  width: 300px;
  background: url('../imgs/as-signatur.svg') no-repeat;
  background-size: contain;
  margin: 0 0 -18px 0;
  position: relative;
  z-index: 10;
}

a.showing::after{
  content: '\025BE';
}
a.notShowing::after{
  content: '\025B8';
}

ol#top10liste{
  width:90%;
  padding-left:5%;
  line-height:1.5em;
}

ol#top10liste li{
  margin-bottom:1em;
}