/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here...

.primary-term a,
.primary-term {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 2px 8px;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1.35;
}
.primary-term a:hover { text-decoration: none; }
 */ 

/****************
 * Table of contents 
 * 
 * ********************/
.shortcode-toc {
  background: #fff;
  border-radius:0px;
  box-shadow: 0 1px 2px rgba(17,24,39,.06);
  overflow: hidden;
  position: relative;
}

/* header bar text (uses data-title). Provide a default if not set */
.shortcode-toc::before {
  content: attr(data-title);
  display: block;
  background: #00e0c6; /* teal */
  color: #000;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 14px 12px;
}
.shortcode-toc:not([data-title])::before,
.shortcode-toc[data-title=""]::before {
  content: "Table of contents";
}

/* caret icon on the right of the header */
.shortcode-toc::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 14px;
  width: 8px; height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  opacity: .9;
}

/* list reset */
.shortcode-toc ul {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}
.shortcode-toc ul ul { margin: 0; padding: 0; }

/* rows */
.shortcode-toc li { margin: 0; }
.shortcode-toc a {
  display: block;
  padding: 10px 12px;   /* base left pad is 12px; deeper levels override below */
  color: #111;
  text-decoration: none;
  border-radius: 6px;
}
.shortcode-toc li + li a { margin-top: 2px; }

/* hover/focus */
.shortcode-toc a:hover,
.shortcode-toc a:focus {
  background: #f3f4f6;
  outline: none;
}

/* mark current item by adding .is-current to <li> */
.shortcode-toc li.is-current > a {
  background: #f3f4f6;
  font-weight: 600;
}

/* depth-based indentation using your data-tag values (h2–h6) */
.shortcode-toc li[data-tag="2"] > a { padding-left: 12px; }  /* h2 */
.shortcode-toc li[data-tag="3"] > a { padding-left: 30px; }  /* 12 + 1*18 */
.shortcode-toc li[data-tag="4"] > a { padding-left: 48px; }  /* 12 + 2*18 */
.shortcode-toc li[data-tag="5"] > a { padding-left: 66px; }  /* 12 + 3*18 */
.shortcode-toc li[data-tag="6"] > a { padding-left: 84px; }  /* 12 + 4*18 */

/* optional muted text utility */
.shortcode-toc .muted { color: #6b7280; }

/* small screens */
@media (max-width: 420px) {
  .shortcode-toc a { padding: 9px 10px; }
  .shortcode-toc::before { padding: 12px 10px; }
}

.test{
	background-color:#fff;
}