@keyframes arrow-shoot {
  0% {
    background-position: center;
    opacity: 1;
  }
  44% {
    background-position: 200% center;
    opacity: 0;
  }
  45% {
    background-position: -200% center;
    opacity: 0;
  }
  100% {
    background-position: center;
    opacity: 1;
  }
}
ul.tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  margin: 0 0 2.5rem 0;
  padding-left: 0;
  padding-bottom: 3rem;
  border-bottom: 1px solid #C5964C;
}
@media (min-width: 1024px) {
  ul.tabs {
    padding-bottom: 4rem;
  }
}
ul.tabs li {
  margin: 0;
  padding: 0 1.5rem 0 0;
  position: relative;
  z-index: 2;
}
ul.tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 20px;
  border: 1px solid #C5964C;
  border-radius: 4px;
  background-color: #f5f4f1;
  font-size: 1.4rem;
  color: #2D293F;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 5rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: color 0.25s ease-in-out, background 0.25s ease-in-out !important;
}
ul.tabs a:after, ul.tabs a:before {
  display: none;
}
ul.tabs a.active, ul.tabs a:hover, ul.tabs a:active, ul.tabs a:focus {
  color: #fff !important;
  background: #C5964C;
  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: #2D293F !important;
  background: transparent;
  border: 1px solid #C5964C;
  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(197, 150, 76, 0.05);
  color: #C5964C !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 #C5964C;
    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 */