table.gh {
  padding: 0;
  border-collapse: collapse;
}

table.gh tr {
  border-top: 1px solid var(--color-base-1);
  background-color: var(--color-base);
  margin: 0;
  padding: 0;
}

table.gh tr:nth-child(2n) {
  background-color: var(--color-base-2);
}

table.gh tr th {
  font-weight: bold;
  border: 1px solid var(--color-element);
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}

table.gh tr td {
  border: 1px solid var(--color-base-1);
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}

table.gh tr th :first-child, table.gh tr td :first-child {
  margin-top: 0;
}

table.gh tr th :last-child, table.gh tr td :last-child {
  margin-bottom: 0;
}

/* source: https://gist.github.com/andyferra/2554919 */
div.widget_container.note {
  position: relative;
  border-radius: 0 6px 6px 6px;
  margin-top: 48px;
}

.widget_top_float {
  position: absolute;
  bottom: calc(100% - 0px);
  left: -1px;
  border: 1px solid var(--color-base-1);
  background: var(--color-base-2);
  font-weight: 600;
  width: max-content;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem 0.3rem 0 0;
  border-bottom: none;
  text-decoration: none;
}
.widget_top_float:hover {
  text-decoration: underline;
}
.widget_top_float.right {
  left: unset;
  right: 1px;
  top: 0;
  bottom: unset;
  border: none;
  padding: 0.425rem 0.7rem;
}

.md_table_of_contents-wrapper {
  position: sticky;
  top: 0;
}

.md_table_of_contents {
  position: absolute;
  top: 1rem;
  right: calc(100% + var(--widget_container-padding));
  width: 24ch;
  background-color: var(--color-base-2);
  border-radius: 0.25rem 0 0 0.25rem;
  border: 1px solid var(--color-base-1);
  box-sizing: border-box;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}
.md_table_of_contents > a {
  display: block;
  text-decoration: none;
  background-color: var(--color-base-2);
  padding: 0.25rem;
}
.md_table_of_contents > a:hover {
  text-decoration: underline;
  background-color: var(--color-base-1);
}
.md_table_of_contents > a:not(:last-child) {
  border-bottom: 1px dotted var(--color-base-1);
}

.markdown *[id] {
  transition: background-color 0.75s;
}

.spell {
  position: relative;
  display: inline;
  text-decoration: none;
  font-style: italic;
}
.spell:hover {
  text-decoration: underline;
}

.markdown div.spell_desc {
  transition: visibility 0.15s, opacity 0.15s;
}

.spell_desc {
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  background-color: var(--color-base-2);
  border: 1px solid var(--color-accent-1);
  border-radius: 6px;
  max-width: 512px;
  padding: 0.5rem;
  z-index: 10;
  box-shadow: var(--bs-md);
  box-sizing: border-box;
}
.spell_desc.open {
  visibility: visible;
  opacity: 1;
  z-index: 11;
}
.spell_desc .level::before {
  font-weight: 600;
  content: "Level: ";
}
.spell_desc .school::before {
  font-weight: 600;
  content: "School: ";
}
.spell_desc .cast_time::before {
  font-weight: 600;
  content: "Cast Time: ";
}
.spell_desc .desc {
  overflow-y: auto;
}

#content_main {
  max-height: calc(100vh - 48px);
  background-color: var(--color-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  overflow-y: auto;
}

.widget_container {
  /* width: 80%;
  height: 80%;
  max-height: 80vh; */
  margin: 32px 0;
  width: clamp(256px, 1024px, 100vw);
  border-radius: 6px;
  background-color: var(--color-base-2);
  border: 1px solid var(--color-base-1);
  --widget_container-padding: 16px;
  padding: var(--widget_container-padding);
  box-sizing: border-box;
  overflow-y: none;
}

.widget_container > h1:first-child {
  margin-bottom: 8px;
}

.widget_container > hr {
  margin-bottom: 12px;
}

.widget_container > p {
  color: var(--color-text-1);
}

.widget_content {
  /* a {
    color: #4183C4; }
  a.absent {
    color: #cc0000; } */
  /* h1:hover a.anchor, h2:hover a.anchor, h3:hover a.anchor, h4:hover a.anchor, h5:hover a.anchor, h6:hover a.anchor {
    background: url("../../images/modules/styleguide/para.png") no-repeat 10px center;
    text-decoration: none; } */
}
.widget_content .widget_content {
  font-family: Helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  /* padding-top: 10px;
  padding-bottom: 10px; */
  /* background-color: white; */
  /* padding: 30px; */
}
.widget_content .widget_content > *:first-child {
  margin-top: 0 !important;
}
.widget_content .widget_content > *:last-child {
  margin-bottom: 0 !important;
}
.widget_content a.anchor {
  display: block;
  padding-left: 30px;
  margin-left: -30px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.widget_content h1, .widget_content h2, .widget_content h3, .widget_content h4, .widget_content h5, .widget_content h6 {
  margin: 20px 0 10px;
  padding: 0;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  cursor: text;
  position: relative;
}
.widget_content h1 tt, .widget_content h1 code {
  font-size: inherit;
}
.widget_content h2 tt, .widget_content h2 code {
  font-size: inherit;
}
.widget_content h3 tt, .widget_content h3 code {
  font-size: inherit;
}
.widget_content h4 tt, .widget_content h4 code {
  font-size: inherit;
}
.widget_content h5 tt, .widget_content h5 code {
  font-size: inherit;
}
.widget_content h6 tt, .widget_content h6 code {
  font-size: inherit;
}
.widget_content h1 {
  font-size: 28px;
  border-bottom: 1px solid var(--color-accent-1);
  color: var(--color-text);
}
.widget_content h2 {
  font-size: 24px;
  border-bottom: 1px solid var(--color-text-1);
  color: var(--color-text);
}
.widget_content h3 {
  font-size: 18px;
}
.widget_content h4 {
  font-size: 16px;
}
.widget_content h5 {
  font-size: 14px;
}
.widget_content h6 {
  color: #777777;
  font-size: 14px;
}
.widget_content p, .widget_content blockquote, .widget_content ul, .widget_content ol, .widget_content dl, .widget_content li, .widget_content table, .widget_content pre {
  color: var(--color-text-1);
  margin: 0.5em 0;
}
.widget_content hr {
  /* background: transparent url("../../images/modules/pulls/dirty-shade.png") repeat-x 0 0; */
  /* border-bottom: 1px solid var(--color-text-1); */
  color: var(--color-text-1);
  /* height: 4px; */
  padding: 0;
}
.widget_content .widget_content > h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.widget_content .widget_content > h1:first-child {
  margin-top: 0;
  padding-top: 0;
}
.widget_content .widget_content > h1:first-child + h2 {
  margin-top: 0;
  padding-top: 0;
}
.widget_content .widget_content > h3:first-child, .widget_content .widget_content > h4:first-child, .widget_content .widget_content > h5:first-child, .widget_content .widget_content > h6:first-child {
  margin-top: 0;
  padding-top: 0;
}
.widget_content a:first-child h1, .widget_content a:first-child h2, .widget_content a:first-child h3, .widget_content a:first-child h4, .widget_content a:first-child h5, .widget_content a:first-child h6 {
  margin-top: 0;
  padding-top: 0;
}
.widget_content h1 p, .widget_content h2 p, .widget_content h3 p, .widget_content h4 p, .widget_content h5 p, .widget_content h6 p {
  margin-top: 0;
}
.widget_content li p.first {
  display: inline-block;
}
.widget_content ul, .widget_content ol {
  padding-left: 30px;
}
.widget_content ul :first-child, .widget_content ol :first-child {
  margin-top: 0;
}
.widget_content ul :last-child, .widget_content ol :last-child {
  margin-bottom: 0;
}
.widget_content dl {
  padding: 0;
}
.widget_content dl dt {
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  padding: 0;
  margin: 15px 0 5px;
}
.widget_content dl dt:first-child {
  padding: 0;
}
.widget_content dl dt > :first-child {
  margin-top: 0;
}
.widget_content dl dt > :last-child {
  margin-bottom: 0;
}
.widget_content dl dd {
  margin: 0 0 15px;
  padding: 0 15px;
}
.widget_content dl dd > :first-child {
  margin-top: 0;
}
.widget_content dl dd > :last-child {
  margin-bottom: 0;
}
.widget_content blockquote {
  border-left: 4px solid var(--color-text-1);
  padding: 0 15px;
  color: var(--color-text-1);
}
.widget_content blockquote > :first-child {
  margin-top: 0;
}
.widget_content blockquote > :last-child {
  margin-bottom: 0;
}
.widget_content table {
  padding: 0;
  border-collapse: collapse;
}
.widget_content table tr {
  border-top: 1px solid var(--color-base-1);
  background-color: var(--color-base);
  margin: 0;
  padding: 0;
}
.widget_content table tr:nth-child(2n) {
  background-color: var(--color-base-2);
}
.widget_content table tr th {
  font-weight: bold;
  border: 1px solid var(--color-element);
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.widget_content table tr td {
  border: 1px solid var(--color-base-1);
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.widget_content table tr th :first-child, .widget_content table tr td :first-child {
  margin-top: 0;
}
.widget_content table tr th :last-child, .widget_content table tr td :last-child {
  margin-bottom: 0;
}
.widget_content img {
  max-width: 100%;
  border: 1px solid var(--color-base-1);
  border-radius: 0.25rem;
}
.widget_content span.frame {
  display: block;
  overflow: hidden;
}
.widget_content span.frame > span {
  border: 1px solid #dddddd;
  display: block;
  float: left;
  overflow: hidden;
  margin: 13px 0 0;
  padding: 7px;
  width: auto;
}
.widget_content span.frame span img {
  display: block;
  float: left;
}
.widget_content span.frame span span {
  clear: both;
  color: #333333;
  display: block;
  padding: 5px 0 0;
}
.widget_content span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.widget_content span.align-center > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: center;
}
.widget_content span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.widget_content span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.widget_content span.align-right > span {
  display: block;
  overflow: hidden;
  margin: 13px 0 0;
  text-align: right;
}
.widget_content span.align-right span img {
  margin: 0;
  text-align: right;
}
.widget_content span.float-left {
  display: block;
  margin-right: 13px;
  overflow: hidden;
  float: left;
}
.widget_content span.float-left span {
  margin: 13px 0 0;
}
.widget_content span.float-right {
  display: block;
  margin-left: 13px;
  overflow: hidden;
  float: right;
}
.widget_content span.float-right > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: right;
}
.widget_content code, .widget_content tt {
  margin: 0 2px;
  padding: 0 5px;
  white-space: nowrap;
  border: 1px solid var(--color-base-1);
  background-color: var(--color-base);
  border-radius: 3px;
}
.widget_content pre code {
  margin: 0;
  padding: 0;
  white-space: pre;
  border: none;
  background: transparent;
}
.widget_content .highlight pre {
  background-color: var(--color-base);
  border: 1px solid var(--color-base-1);
  font-size: 13px;
  line-height: 19px;
  overflow: auto;
  padding: 6px 10px;
  border-radius: 3px;
}
.widget_content pre {
  background-color: var(--color-base);
  border: 1px solid var(--color-base-1);
  font-size: 13px;
  line-height: 19px;
  overflow: auto;
  padding: 6px 10px;
  border-radius: 3px;
}
.widget_content pre code, .widget_content pre tt {
  background-color: transparent;
  border: none;
}

.widget_content_list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-start;
}

table.gh tr td > a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}
table.gh tr td > a:hover {
  text-decoration: underline;
}

.smalltext {
  font-size: 0.8em;
  color: var(--color-text-1);
}

/*# sourceMappingURL=widget_standalone.css.map */
