/* white palette
*/

.tabbed-set {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  border: .05rem solid rgba(0,0,0,.07);
}

.tabbed-set .highlight {
  background: #f5f5f5;
}

.tabbed-set .tabbed-content {
  display: none;
  order: 99;
  width: 100%;
  background-color: hsla(0,0%,92.5%,.5);
}

.tabbed-set label {
  width: auto;
  margin: 0 0.5em;
  padding: 0.25em;
  cursor: pointer;
  font-size: 120%;
  font-color: #000 !important;
}

.tabbed-set input {
  position: absolute;
  opacity: 0;
}

.tabbed-set input:nth-child(n+1) {
}

.tabbed-set input:nth-child(n+1):checked + label {
    color: #75aadb;
    border-bottom: .1rem solid transparent;
}

.tabbed-set input:nth-child(n+1):checked + label + .tabbed-content {
    display: block;
}


.md-typeset .tabbed-set>label {
  font-size: .64rem !important;
}

.md-typeset .tabbed-set>label:hover {
  color: #4c83b6 !important;
}

/* black palette
*/


[data-md-color-primary=black] .tabbed-set input:nth-child(n+1):checked + label {
  color: #75aadb;
  border-bottom: .1rem solid #4c83b6;
  
}