ul.tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  margin: 0 0 var(--wp--preset--spacing--normal) 0;
  padding: 0;
  border-bottom: rgba(79, 91, 103, 0.25) 1px solid;
}
ul.tabs li {
  margin: 0;
  padding: 0 2rem 0 0;
  position: relative;
  z-index: 2;
}
ul.tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--font-20);
  font-family: var(--wp--preset--font-family--secondary);
  font-weight: 300;
  padding-bottom: 12px;
  color: #313D49;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  text-align: center;
  width: 100%;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
ul.tabs a.active, ul.tabs a:hover, ul.tabs a:active, ul.tabs a:focus {
  color: #0A2948 !important;
  border-color: #E8BF55;
  font-weight: 500;
  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;
  background: transparent;
  border: none;
  border-radius: 0;
}
.vert ul.tabs li {
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 0;
}
.vert ul.tabs a {
  display: block;
  height: auto;
  padding: 0.9ch 1.4rem;
  color: #313D49 !important;
  background: transparent;
  border: 1px solid #E8BF55;
  border-radius: 4px;
}
.vert ul.tabs a:hover, .vert ul.tabs a:active, .vert ul.tabs a:focus, .vert ul.tabs a.active {
  background: rgba(232, 191, 85, 0.05);
  color: #E8BF55 !important;
  cursor: pointer;
}
@media (min-width: 750px) {
  .vert .tab-panel {
    width: 65%;
  }
}
@media (min-width: 1024px) {
  .vert ul.tabs {
    width: 180px;
    border-right: 1px solid #E8BF55;
    padding-right: 30px;
  }
  .vert .tab-panel {
    width: calc(100% - 215px);
  }
}

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