/**
 * @file
 * Visual styles for tabs.
 */

div.tabs {
  margin: 1em 0;
}
ul.tabs {
  background-color: #f5f5f5;
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}
.tabs > li {
  display: inline-block;
  margin-right: 0.3em; /* LTR */
}
[dir="rtl"] .tabs > li {
  margin-right: 0;
  margin-left: 0.3em;
}
.tabs a {
  display: block;
  /*padding: 0.2em 1em;*/
  padding: 8px 16px;
  text-decoration: none;
}
.tabs a.is-active {
  background-color: #18453b;
  color: #fff;
}

.tabs a:focus,
.tabs a:hover {
  background-color: #008934;
  color: #fff;
}
