:root {
  --spacer-lg: 5rem;
  --spacer: 3rem;
  --spacer-md: 3rem;
  --spacer-sm: 2rem;
  --spacer-sm-md: 2rem;
}

@media (min-width: 782px) {
  :root {
    --spacer-lg: 6.5rem;
    --spacer: 4rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --spacer-lg: 8rem;
    --spacer: 6rem;
    --spacer-sm-md: 3rem;
  }
}
ul.tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  box-shadow: inset 0 5px 0 0 #fff;
}
ul.tabs li {
  margin: 0;
  padding: 0;
}
ul.tabs a {
  display: block;
  font-weight: 500;
  text-decoration: none !important;
  color: rgba(51, 51, 51, 0.3);
  background: transparent;
  padding: 15px 15px 6px 15px;
  box-shadow: inset 0 5px 0 0 #fff;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
ul.tabs a.active, ul.tabs a:hover, ul.tabs a:active, ul.tabs a:focus {
  text-decoration: none;
  color: #fff;
  background: #a57c08;
  box-shadow: inset 0 0 0 0 #fff;
  outline: none;
}
ul.tabs.fw li {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  flex-basis: 0;
}
ul.tabs.fw li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vert ul.tabs {
  display: flex;
  flex-direction: column;
  width: calc(35% - 30px);
  margin: 0 30px 0 0;
  padding: 0;
  border: none;
  box-shadow: none;
}
.vert ul.tabs li {
  width: 100%;
  margin: 0;
  border-bottom: 3px solid #fff;
}
.vert ul.tabs a {
  padding: 9px 15px 6px 15px;
  box-shadow: none;
}
@media (min-width: 750px) {
  .vert .tab-panel {
    width: 65%;
  }
}
@media (min-width: 1024px) {
  .vert ul.tabs {
    width: 180px;
  }
  .vert .tab-panel {
    width: calc(100% - 215px);
  }
}

@media (max-width: 749px) {
  .acc ul.tabs {
    display: none;
  }
}/*# sourceMappingURL=block-tab-nav.css.map */