.featured content.flex {
  flex-direction: column;
  min-height: 80vh;
  justify-content: space-evenly;
}
.featured row.flex {
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.featured .doc-card .label {
  margin-left: 4px;
  background-color: #ff6d66;
}

.doc-card {
  margin: 10px;
  width: 30%;
  flex-direction: column;
  text-align: center;
  min-width: 240px;
}
.doc-card img {
  max-height: 120px;
  align-self: center;
}
.doc-card a {
  margin-bottom: 5px;
}

.kl-sidenav .accordion-group {
  padding-left: 0px;
  margin-top: 0px;
}

.label-important,
.badge-important {
  background-color: #b94a48;
}

/*
 CSS for toggleable tabs above tutorial code snippets
*/
.tabset > input[type='radio'] {
  position: absolute;
  left: -200vw;
}

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

.tabset .tab-panels:active {
  display: block;
}

.tabset > input:nth-of-type(1):checked ~ .tab-panels > .tab-panel:nth-of-type(1),
.tabset > input:nth-of-type(2):checked ~ .tab-panels > .tab-panel:nth-of-type(2),
.tabset > input:nth-of-type(3):checked ~ .tab-panels > .tab-panel:nth-of-type(3) {
  display: block;
}

.tabset > label {
  border-top: 1px solid #cacdcf;
  border-left: 1px solid #cacdcf;
  border-right: 1px solid #cacdcf;
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  margin: 0px 5px 0px 0px;
  cursor: pointer;
  background-color: #dcdcdc;
}

.tabset > label:hover {
  background-color: #c4c4c4;
}

.tabset > input:focus + label,
.tabset > input:checked + label {
  background-color: #f5f5f5;
}

.tabset > input:checked + label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #009968;
}

.tabset > input:focus-visible + label {
  outline: 2px solid currentcolor;
  outline: 2px solid -webkit-focus-ring-color;
}
