/*
 CSS for the main interaction
*/
.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;
}


.tabset > label {
    cursor: pointer;
    width: 35%;
    background-color: var(--nv-bgtrans);
    height: 6.5%;
    /* margin-bottom: 5px; */
    font-family: var(--nv-head);
    letter-spacing: 2px;
    font-size: clamp(10px, 1.3vw, 20px);
    color: var(--nv-txt);
    position: relative;
    /* padding-left: 25px; */
  border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
	    margin-right: 10px;
}


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



.tabset > input:checked + label {
    width: 35%;
    background-color: var(--nv-y);
    height: 6.5%;
    font-family: var(--nv-head);
    letter-spacing: 2px;
    font-size: clamp(10px, 1.3vw, 20px);
    color: var(--nv-bg);
    position: relative;
    align-items: center;
    /* padding-left: 25px; */
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    /* border-bottom: 1px solid #fff; */
    margin-right: 10px;
}

.tab-panel {
    padding-top: 20px;
	border: 3px solid var(--nv-y);
    background: var(--nvbglines);
  	border-top-left-radius: 0px;
    border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}