/*=== Links ===*/
article .btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid var(--brand_color);
  text-decoration: none;
  border-radius: 0.25rem;
  color: #fff;
  background-color: var(--brand_color);
  cursor: pointer;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

article a.btn:hover, article a.btn:active, article a.btn:visited {
  color: #fff;
  text-decoration: none;
}

article a.btn:hover {
  background-color: zass-darken(var(--brand_color), 20%);
}

article a.btn:active {
  color: #fff;
  background-color: zass-darken(var(--brand_color), 20%);
}
/*=== Links ===*/

/*=== Accordions ===*/
.accordion {
  padding-top: 0;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.accordion .item {
  margin-bottom: 1rem;
  border: 1px solid #f8f7f7;
}

.accordion .item.active, .accordion .item:hover {
  border: 1px solid var(--brand_color);
}

.accordion .item-title {
  position: relative;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: #56589d;
  background-color: #f8f7f7;
  transition: background-color 150ms ease;
}

.accordion .item-title em {
  display: block;
  float: right;
  transition: transform 250ms ease;
  transform: rotate(0);
  font-size: 1rem;
  padding: 0.325rem;
}

.accordion .item-title em::before {
  position: relative;
  left: 2px;
}

.accordion .item-title.active, .accordion .item-title:hover {
  color: white;
  background-color: var(--brand_color);
}

.accordion .item-title.active em {
  transform: rotate(180deg);
}

.accordion .item-title:hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--brand_color);
}

.accordion .item-content {
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.accordion .item-content p:last-child {
  margin-bottom: 0;
}

/*=== Notes ===*/
.note {
  padding: 16px 8px 16px 32px;
  margin-bottom: 2rem;
  border: 1px solid #e5e5e5;
  border-left-width: 5px;
  border-radius: 3px;
}

.note .note-title {
  margin-top: 0;
  font-weight: normal;
  margin-bottom: 1rem;
}

.note p:last-child {
  margin-bottom: 0;
}

.note-primary {
  border-color: #56589d;
}

.note-primary .note-title {
  color: #56589d;
}

.note-secondary {
  border-color: #ff7070;
}

.note-secondary .note-title {
  color: #ff7070;
}

.note-info {
  border-color: #26b1d0;
}

.note-info .note-title {
  color: #26b1d0;
}

.note-success {
  border-color: #28870e;
}

.note-success .note-title {
  color: #28870e;
}

.note-warning {
  border-color: #fbc74e;
}

.note-warning .note-title {
  color: #fbc74e;
}

.note-danger {
  border-color: #fb4e4e;
}

.note-danger .note-title {
  color: #fb4e4e;
}

.note-default {
  border-color: #8a8a8a;
}

.note-default .note-title {
  color: #8a8a8a;
}

/*=== Tabs ===*/
ul.tabs-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  border-color: transparent;
  border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 400px) {
  ul.tabs-menu {
    flex-direction: row;
  }
}

ul.tabs-menu .tab-link {
  display: block;
  margin-bottom: -0.125rem;
  padding: 1rem 1.5rem;
  color: #8a8a8a;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: 0.3s;
}

ul.tabs-menu .tab-link:hover {
  color: var(--link_color);
}

ul.tabs-menu .tab-item.active .tab-link {
  color: var(--link_color);
  border-bottom-color: var(--link_color);
}

ul.tabs-menu .tab-item:not(:last-child) {
  margin-right: 0.25rem;
}

ul.tabs-menu .tab-item:not(:first-child) {
  margin-left: 0.25rem;
}

.tab-content .tab-panel {
  display: none;
  max-height: 700px;
  overflow-y: auto;
  overflow-x: hidden;
}

.tab-content .active {
  display: block;
}

.tab-content .fade {
  transition: opacity 0.15s linear;
}

.tab-content .fade:not(.show) {
  opacity: 0;
}

/*=== Lists ===*/
ul ul li {
  list-style: circle;
}

ul.list-colored {
  list-style: none;
}

ul.list-colored li::before {
  content: "\2022";
  color: var(--brand_color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

ul.list-colored ul {
  list-style: none;
}

ul.list-colored ul li {
  list-style: none;
}

ul.list-colored ul li::before {
  content: "\25CB";
}

ul.list-check {
  list-style: none;
}

ul.list-check li::before {
  font-family: 'Font Awesome 5 Free', Arial, sans-serif;
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-right: 0.5rem;
}

ol.list-numbered {
  counter-reset: counter-name 0;
  list-style: none;
  padding-left: 0;
}

ol.list-numbered li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  counter-increment: counter-name;
}

ol.list-numbered li::before {
  content: counter(counter-name);
  counter-increment: counter-name1;
  position: absolute;
  top: -3px;
  left: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  line-height: 30px;
  color: #fff;
  text-align: center;
  background-color: var(--brand_color);
  border-radius: 50%;
}

ol.list-numbered ol.list-numbered {
  padding-top: 1rem;
}

dl.description-list {
  display: flex;
  flex-wrap: wrap;
}

dl.description-list dt {
  font-weight: 600;
  flex: 0 0 25%;
  max-width: 75%;
}

dl.description-list dd {
  flex: 0 0 75%;
  max-width: 75%;
  margin-bottom: .5rem;
  margin-left: 0;
}

/*=== Blockquotes ===*/
blockquote.blockquote {
  padding: 0.75rem 1.25rem;
  margin: 0 0 1.25rem;
  font-style: italic;
  background-color: var(--background_color);
  border-left: 5px solid #cccccc;
}

blockquote.blockquote .footer {
  background: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.85rem;
}

blockquote.blockquote .footer::before {
  content: '-';
}

blockquote.blockquote.colored {
  border-left-color: var(--brand_color);
}

/*=== Videos ===*/
.embed {
  position: relative;
  z-index: 1;
  display: block;
  height: 0;
  padding: 0 0 56.25%;
  margin-bottom: 2rem;
  overflow: hidden;
}

.embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/***** Tables *****/
.table.table-striped tbody tr:nth-of-type(odd) {
  background: linear-gradient(0, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), var(--brand_color);
}

.table.table-hover tbody tr:hover {
  background: linear-gradient(0, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), var(--brand_color);
}

.table.table-bordered,
.table.table-bordered th,
.table.table-bordered td {
  border: 1px solid #e7eaf3;
}

.table thead.thead-color {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), var(--brand_color);
  color: var(--brand_text_color);
}

.table thead.thead-color tr th {
  color: white;
}
