/*!
 * tabbyjs v12.0.3
 * Lightweight, accessible vanilla JS toggle tabs.
 * (c) 2019 Chris Ferdinandi
 * MIT License
 * http://github.com/cferdinandi/tabby
 */

/**
 * The tablist
 */

[role="tablist"] a, [role="tablist"] a:hover, [role="tablist"] a:focus, [role="tablist"] a:active {
   text-decoration: none;
   color: inherit;
}

[role="tablist"] {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 510px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: space-between;
}

[role="tablist"] * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * The tablist item
 */
[role="tablist"] li {
  display: inline-block;
}

/**
 * The tabs
 */
[role="tab"] {
  border-bottom: 4px solid transparent;
  border-bottom-color: #16421c;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  background-color: #2c5b3b;
  border-top-color: transparent;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
  margin-bottom: -1px;
  transition: background-color .2s;
  /**
	 * Active tab styling
	 */
  /**
	 * Tabs on hover
	 */
}

[role="tab"] a {
  color: white;
}

[role="tab"][aria-selected="true"] {
  background-color: #366244;
  border-color: #366244;
}

@media (min-width: 30em) {
  [role="tab"][aria-selected="true"] {
    border: 4px solid transparent;
    border-bottom-color: #366244;
  }
}

[role="tab"]:hover:not([aria-selected="true"]) {
  background-color: #5a956c;
}

/*
@media (min-width: 30em) {
  [role="tab"]:hover:not([aria-selected="true"]) {
    border: 1px solid lightgray;
    border-bottom-color: transparent;

  }
}
*/
/**
 * [hidden] fallback for IE10 and lower
 */
[hidden] {
  display: none;
}
