.talktext a {
  vertical-align: 0.3em;
  font-size: 0.7em;
  margin-left: -0.3em;
}
.talktext a.index {
  background-color: transparent !important;
}

h6 {
  font-family: var(--font-special) !important;
}

section blockquote {
  margin-bottom: 0.5em;
}

article.hidden {
  display: none;
}

:root {
  --icon-logo: url("/assets/logo-icon.svg");
  --icon-logo-size: 50px;
  --icon-name: Material Symbols Outlined;
  --font-special: Josefin Sans, sans-serif;
  --font-mono: Share Tech Mono, monospace;
  --font-main: Open Sans, sans-serif;
  --font-secondary: Teko, sans-serif;
  --font-tertiary: Lexend, sans-serif;
  --font-samp: Open Sans, sans-serif;
  --color-bg: #3a3a3a;
  --color-fg: ivory;
  --color-primary: white;
  --color-secondary: floralwhite;
  --color-tertiary: #2cdd88;
  --color-link: #ffc100;
  --color-dark: gray;
  --color-theme: #ccff00;
  --color-bullet: gray;
  --color-row-odd: #2a2a2a;
  --color-row-even: #2f2f2f;
  --color-card-fg: #444;
  --color-card-bg: #f6ffd5;
  --color-code-bg: #222;
  --content-width: 600px;
  --grid-width: 180px;
  --grid-image-height: 180px;
  --grid-body-height: 300px;
  --card-font-size: 16px;
  --samp-font-size: inherit;
}

body {
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-fg);
}
body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
body::-webkit-scrollbar-corner {
  background-color: transparent;
}
body.no-scroll {
  overflow: hidden;
  padding-right: 6px;
}

hr {
  width: 300px;
  margin-bottom: 20px;
  margin-top: 40px;
  border-color: var(--color-bg);
}

a {
  color: var(--color-link);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: normal;
  color: var(--color-secondary);
  line-height: 1;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.7em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

.special {
  font-family: var(--font-special);
  text-align: center;
  color: var(--color-primary);
  margin: 10px 0 5px 0;
}

code, pre {
  font-family: var(--font-mono);
}

code {
  white-space: pre-wrap;
  color: var(--color-secondary);
}
code.rounded {
  border-radius: 5px;
  margin: 0 3px;
  padding: 2px 5px;
}

pre {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  padding: 10px;
  box-sizing: border-box;
}
pre code {
  color: inherit;
}

sub, sup {
  font-size: small;
}

sup {
  vertical-align: 6px;
}

sub {
  vertical-align: 0px;
}

.md-18 {
  font-size: 18px;
}

.md-24 {
  font-size: 24px;
}

.md-36 {
  font-size: 36px;
}

.md-48 {
  font-size: 48px;
}

.md-disabled {
  color: rgba(0, 0, 0, 0.6);
}

.middle-align {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-align: center;
}

.center-align {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
}

.spacer {
  margin-top: 100px;
}

footer {
  margin-top: 100px;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
  color: var(--color-dark);
  font-size: 14px;
}
footer ul {
  padding: 0;
  display: flex;
}
footer ul li {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-align: center;
  margin: 0 5px;
}
footer ul li a {
  color: var(--color-secondary);
}

article.center {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-direction: column;
}
article.center img {
  border-radius: 50%;
  object-fit: cover;
}
article.left img {
  float: left;
  object-fit: cover;
  margin: 5px 10px 0 0;
  display: inline-block;
}
article.tiles ul {
  list-style-type: none;
  padding-inline-start: unset;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
article.tiles ul li {
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--color-theme);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
article.tiles ul li a {
  color: var(--color-bg);
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
article.tiles ul li sup {
  vertical-align: 3px;
}

.card-tab {
  display: flex;
  flex-direction: column;
  position: relative;
  background-image: linear-gradient(225deg, var(--color-card-fg) 50%, transparent 50%);
  background-size: 120px 27px;
  background-repeat: no-repeat;
  background-position: right top;
  border-radius: 2px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  border-top-width: 22px;
  border-top-style: solid;
  border-top-color: var(--color-card-fg);
  background-color: var(--color-card-bg);
  color: var(--color-card-fg);
  text-transform: none;
  height: calc(100% - 22px);
}

.top-bar {
  color: var(--color-card-bg, "whitesmoke");
  font-family: var(--font-special);
  margin: -21px 0 0 5px;
  font-size: 15px;
  text-align: left;
}

.tab {
  color: var(--color-card-bg, "whitesmoke");
  font-family: var(--font-special);
  position: absolute;
  top: -10px;
  right: 3px;
  font-size: 45px;
  line-height: 30px;
  text-align: right;
}
.tab small {
  display: block;
  font-size: 12px;
}
.tab.icon {
  font-family: var(--icon-name);
  line-height: 0.7;
  font-size: 37px;
  cursor: pointer;
}

.header {
  margin: 4px 50px 0 5px;
  text-align: left;
  line-height: 1;
  height: 20px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: flex-end;
  font-family: var(--font-secondary);
}
.header a {
  color: var(--color-bg);
}

.body {
  flex-grow: 2;
  padding: 10px;
  overflow: hidden;
  text-align: left;
}
.body:not(.limit-height) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.body.limit-height {
  max-height: var(--grid-body-height);
  overflow-y: auto;
  padding-bottom: 0;
  box-sizing: border-box;
}
.body.limit-height.has-more {
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 100px), transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black calc(100% - 100px), transparent 100%);
  transition: mask-image 0.4s ease;
}
.body h2 {
  word-break: break-word;
  margin-top: 10px;
  line-height: 2.4rem;
}
.body h4 {
  color: inherit;
  margin: 5px 0;
}
.body .item:not(:first-child) {
  border-top: 1px solid;
}
.body .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.body .item {
  margin-bottom: 20px;
  text-align: left;
  font-size: var(--card-font-size);
  line-height: normal;
}
.body .item h3 {
  margin: 3px 5px 0 5px;
  color: var(--color-card-fg);
}
.body .item .due {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  margin: 0 3px;
  padding: 2px 5px;
}
.body .item .due .icon {
  font-size: 1.3em;
  font-variation-settings: "FILL" 1;
}
.body .item .due.past {
  background-color: var(--color-dark);
}
.body .item small {
  margin-left: 5px;
}
.body pre, .body code {
  color: inherit;
}

.control {
  margin-top: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.control a {
  text-decoration: none;
  font-size: var(--card-font-size);
  display: contents;
}
.control a.button {
  display: flex;
  border-radius: 5px;
  padding: 5px 10px;
  color: white !important;
  background-color: var(--color-card-fg);
}
.control a.button .rocket {
  font-variation-settings: "FILL" 1;
}
.control .tags {
  font-family: var(--font-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

html {
  --c1: #005F73;
  --c2: #03989E;
  --c3: #CA6702;
  --c4: #EE9B00;
  --c5: #355691;
  --c6: #4073A0;
  --c7: #3C5A14;
  --c8: #598B2C;
  --c9: #5F0A87;
  --c10: #9D4EDD;
  --c11: #D81B60;
  --c12: #F06292;
  --c13: #3E2723;
  --c14: #795548;
  --c15: #C62828;
  --c16: #EF5350;
  --c17: #2E7D32;
  --c18: #66BB6A;
  --c19: #212529;
  --c20: #495057;
}

.c1 {
  background-image: linear-gradient(225deg, #005F73 50%, transparent 50%);
  border-top-color: #005F73;
}
.c1 .control a, .c1 .header a {
  color: #005F73;
}
.c1 .control .button, .c1 .header .button {
  background-color: #005F73;
}
.c1 .body .card-color {
  color: #005F73;
}
.c1 .body code, .c1 .body .due {
  color: white;
  background-color: #005F73;
}
.c1 .body .item:not(:first-child) {
  border-color: #005F73;
}
.c1.current .control {
  background-color: #005F73;
}

.c2 {
  background-image: linear-gradient(225deg, #03989E 50%, transparent 50%);
  border-top-color: #03989E;
}
.c2 .control a, .c2 .header a {
  color: #03989E;
}
.c2 .control .button, .c2 .header .button {
  background-color: #03989E;
}
.c2 .body .card-color {
  color: #03989E;
}
.c2 .body code, .c2 .body .due {
  color: white;
  background-color: #03989E;
}
.c2 .body .item:not(:first-child) {
  border-color: #03989E;
}
.c2.current .control {
  background-color: #03989E;
}

.c3 {
  background-image: linear-gradient(225deg, #CA6702 50%, transparent 50%);
  border-top-color: #CA6702;
}
.c3 .control a, .c3 .header a {
  color: #CA6702;
}
.c3 .control .button, .c3 .header .button {
  background-color: #CA6702;
}
.c3 .body .card-color {
  color: #CA6702;
}
.c3 .body code, .c3 .body .due {
  color: white;
  background-color: #CA6702;
}
.c3 .body .item:not(:first-child) {
  border-color: #CA6702;
}
.c3.current .control {
  background-color: #CA6702;
}

.c4 {
  background-image: linear-gradient(225deg, #EE9B00 50%, transparent 50%);
  border-top-color: #EE9B00;
}
.c4 .control a, .c4 .header a {
  color: #EE9B00;
}
.c4 .control .button, .c4 .header .button {
  background-color: #EE9B00;
}
.c4 .body .card-color {
  color: #EE9B00;
}
.c4 .body code, .c4 .body .due {
  color: white;
  background-color: #EE9B00;
}
.c4 .body .item:not(:first-child) {
  border-color: #EE9B00;
}
.c4.current .control {
  background-color: #EE9B00;
}

.c5 {
  background-image: linear-gradient(225deg, #355691 50%, transparent 50%);
  border-top-color: #355691;
}
.c5 .control a, .c5 .header a {
  color: #355691;
}
.c5 .control .button, .c5 .header .button {
  background-color: #355691;
}
.c5 .body .card-color {
  color: #355691;
}
.c5 .body code, .c5 .body .due {
  color: white;
  background-color: #355691;
}
.c5 .body .item:not(:first-child) {
  border-color: #355691;
}
.c5.current .control {
  background-color: #355691;
}

.c6 {
  background-image: linear-gradient(225deg, #4073A0 50%, transparent 50%);
  border-top-color: #4073A0;
}
.c6 .control a, .c6 .header a {
  color: #4073A0;
}
.c6 .control .button, .c6 .header .button {
  background-color: #4073A0;
}
.c6 .body .card-color {
  color: #4073A0;
}
.c6 .body code, .c6 .body .due {
  color: white;
  background-color: #4073A0;
}
.c6 .body .item:not(:first-child) {
  border-color: #4073A0;
}
.c6.current .control {
  background-color: #4073A0;
}

.c7 {
  background-image: linear-gradient(225deg, #3C5A14 50%, transparent 50%);
  border-top-color: #3C5A14;
}
.c7 .control a, .c7 .header a {
  color: #3C5A14;
}
.c7 .control .button, .c7 .header .button {
  background-color: #3C5A14;
}
.c7 .body .card-color {
  color: #3C5A14;
}
.c7 .body code, .c7 .body .due {
  color: white;
  background-color: #3C5A14;
}
.c7 .body .item:not(:first-child) {
  border-color: #3C5A14;
}
.c7.current .control {
  background-color: #3C5A14;
}

.c8 {
  background-image: linear-gradient(225deg, #598B2C 50%, transparent 50%);
  border-top-color: #598B2C;
}
.c8 .control a, .c8 .header a {
  color: #598B2C;
}
.c8 .control .button, .c8 .header .button {
  background-color: #598B2C;
}
.c8 .body .card-color {
  color: #598B2C;
}
.c8 .body code, .c8 .body .due {
  color: white;
  background-color: #598B2C;
}
.c8 .body .item:not(:first-child) {
  border-color: #598B2C;
}
.c8.current .control {
  background-color: #598B2C;
}

.c9 {
  background-image: linear-gradient(225deg, #5F0A87 50%, transparent 50%);
  border-top-color: #5F0A87;
}
.c9 .control a, .c9 .header a {
  color: #5F0A87;
}
.c9 .control .button, .c9 .header .button {
  background-color: #5F0A87;
}
.c9 .body .card-color {
  color: #5F0A87;
}
.c9 .body code, .c9 .body .due {
  color: white;
  background-color: #5F0A87;
}
.c9 .body .item:not(:first-child) {
  border-color: #5F0A87;
}
.c9.current .control {
  background-color: #5F0A87;
}

.c10 {
  background-image: linear-gradient(225deg, #9D4EDD 50%, transparent 50%);
  border-top-color: #9D4EDD;
}
.c10 .control a, .c10 .header a {
  color: #9D4EDD;
}
.c10 .control .button, .c10 .header .button {
  background-color: #9D4EDD;
}
.c10 .body .card-color {
  color: #9D4EDD;
}
.c10 .body code, .c10 .body .due {
  color: white;
  background-color: #9D4EDD;
}
.c10 .body .item:not(:first-child) {
  border-color: #9D4EDD;
}
.c10.current .control {
  background-color: #9D4EDD;
}

.c11 {
  background-image: linear-gradient(225deg, #D81B60 50%, transparent 50%);
  border-top-color: #D81B60;
}
.c11 .control a, .c11 .header a {
  color: #D81B60;
}
.c11 .control .button, .c11 .header .button {
  background-color: #D81B60;
}
.c11 .body .card-color {
  color: #D81B60;
}
.c11 .body code, .c11 .body .due {
  color: white;
  background-color: #D81B60;
}
.c11 .body .item:not(:first-child) {
  border-color: #D81B60;
}
.c11.current .control {
  background-color: #D81B60;
}

.c12 {
  background-image: linear-gradient(225deg, #F06292 50%, transparent 50%);
  border-top-color: #F06292;
}
.c12 .control a, .c12 .header a {
  color: #F06292;
}
.c12 .control .button, .c12 .header .button {
  background-color: #F06292;
}
.c12 .body .card-color {
  color: #F06292;
}
.c12 .body code, .c12 .body .due {
  color: white;
  background-color: #F06292;
}
.c12 .body .item:not(:first-child) {
  border-color: #F06292;
}
.c12.current .control {
  background-color: #F06292;
}

.c13 {
  background-image: linear-gradient(225deg, #3E2723 50%, transparent 50%);
  border-top-color: #3E2723;
}
.c13 .control a, .c13 .header a {
  color: #3E2723;
}
.c13 .control .button, .c13 .header .button {
  background-color: #3E2723;
}
.c13 .body .card-color {
  color: #3E2723;
}
.c13 .body code, .c13 .body .due {
  color: white;
  background-color: #3E2723;
}
.c13 .body .item:not(:first-child) {
  border-color: #3E2723;
}
.c13.current .control {
  background-color: #3E2723;
}

.c14 {
  background-image: linear-gradient(225deg, #795548 50%, transparent 50%);
  border-top-color: #795548;
}
.c14 .control a, .c14 .header a {
  color: #795548;
}
.c14 .control .button, .c14 .header .button {
  background-color: #795548;
}
.c14 .body .card-color {
  color: #795548;
}
.c14 .body code, .c14 .body .due {
  color: white;
  background-color: #795548;
}
.c14 .body .item:not(:first-child) {
  border-color: #795548;
}
.c14.current .control {
  background-color: #795548;
}

.c15 {
  background-image: linear-gradient(225deg, #C62828 50%, transparent 50%);
  border-top-color: #C62828;
}
.c15 .control a, .c15 .header a {
  color: #C62828;
}
.c15 .control .button, .c15 .header .button {
  background-color: #C62828;
}
.c15 .body .card-color {
  color: #C62828;
}
.c15 .body code, .c15 .body .due {
  color: white;
  background-color: #C62828;
}
.c15 .body .item:not(:first-child) {
  border-color: #C62828;
}
.c15.current .control {
  background-color: #C62828;
}

.c16 {
  background-image: linear-gradient(225deg, #EF5350 50%, transparent 50%);
  border-top-color: #EF5350;
}
.c16 .control a, .c16 .header a {
  color: #EF5350;
}
.c16 .control .button, .c16 .header .button {
  background-color: #EF5350;
}
.c16 .body .card-color {
  color: #EF5350;
}
.c16 .body code, .c16 .body .due {
  color: white;
  background-color: #EF5350;
}
.c16 .body .item:not(:first-child) {
  border-color: #EF5350;
}
.c16.current .control {
  background-color: #EF5350;
}

.c17 {
  background-image: linear-gradient(225deg, #2E7D32 50%, transparent 50%);
  border-top-color: #2E7D32;
}
.c17 .control a, .c17 .header a {
  color: #2E7D32;
}
.c17 .control .button, .c17 .header .button {
  background-color: #2E7D32;
}
.c17 .body .card-color {
  color: #2E7D32;
}
.c17 .body code, .c17 .body .due {
  color: white;
  background-color: #2E7D32;
}
.c17 .body .item:not(:first-child) {
  border-color: #2E7D32;
}
.c17.current .control {
  background-color: #2E7D32;
}

.c18 {
  background-image: linear-gradient(225deg, #66BB6A 50%, transparent 50%);
  border-top-color: #66BB6A;
}
.c18 .control a, .c18 .header a {
  color: #66BB6A;
}
.c18 .control .button, .c18 .header .button {
  background-color: #66BB6A;
}
.c18 .body .card-color {
  color: #66BB6A;
}
.c18 .body code, .c18 .body .due {
  color: white;
  background-color: #66BB6A;
}
.c18 .body .item:not(:first-child) {
  border-color: #66BB6A;
}
.c18.current .control {
  background-color: #66BB6A;
}

.c19 {
  background-image: linear-gradient(225deg, #212529 50%, transparent 50%);
  border-top-color: #212529;
}
.c19 .control a, .c19 .header a {
  color: #212529;
}
.c19 .control .button, .c19 .header .button {
  background-color: #212529;
}
.c19 .body .card-color {
  color: #212529;
}
.c19 .body code, .c19 .body .due {
  color: white;
  background-color: #212529;
}
.c19 .body .item:not(:first-child) {
  border-color: #212529;
}
.c19.current .control {
  background-color: #212529;
}

.c20 {
  background-image: linear-gradient(225deg, #495057 50%, transparent 50%);
  border-top-color: #495057;
}
.c20 .control a, .c20 .header a {
  color: #495057;
}
.c20 .control .button, .c20 .header .button {
  background-color: #495057;
}
.c20 .body .card-color {
  color: #495057;
}
.c20 .body code, .c20 .body .due {
  color: white;
  background-color: #495057;
}
.c20 .body .item:not(:first-child) {
  border-color: #495057;
}
.c20.current .control {
  background-color: #495057;
}

ul.grid {
  list-style-type: none;
  padding-inline-start: unset;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(var(--grid-width), 1fr));
  clear: both;
}
ul.grid li {
  position: relative;
  text-align: center;
}
ul.grid li .disabled {
  opacity: 0.7;
}
ul.grid img {
  object-fit: cover;
  width: 100%;
  height: var(--grid-image-height);
}