ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.tabs li {
  margin: 0;
  padding: 0;
}
ul.tabs a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
  text-decoration: none;
  color: #006450;
  padding: 0.9ch 2ch 1ch 2ch;
  background: transparent;
  border: 1px solid #006450;
  border-radius: 32px;
  transition: color 0.2s ease-in-out, background 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: #006450;
  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 {
  text-align: center;
}
@media (min-width: 800px) {
  .vert .tab-panel {
    width: 65%;
    padding: var(--wp--preset--spacing--normal);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1024px) {
  .vert ul.tabs {
    width: 250px;
    margin: 0 50px 0 0;
  }
  .vert .tab-panel {
    width: calc(100% - 300px);
  }
}

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