.rct, .rct *, .rct *::before, .rct *::after {
  box-sizing: border-box;
}
.rct {
  --rct-fg: var(--text-primary, #222222);
  --rct-sub: var(--text-secondary, #5f6b7c);
  --rct-dim: #94969b;
  --rct-line: var(--border-color, #eef0f3);
  --rct-hover: var(--bg-hover, #f7f8fb);
  --rct-chip: var(--bg-hover, #f1f3f5);
  position: relative;
  color: var(--rct-fg);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.3px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.rct--white {
  --rct-fg: #222222;
  --rct-sub: #5f6b7c;
  --rct-dim: #94969b;
  --rct-line: #eef0f3;
  --rct-hover: #f7f8fb;
  --rct-chip: #f1f3f5;
}
.rct--black {
  --rct-fg: #e8eaed;
  --rct-sub: #9aa5b1;
  --rct-dim: #868b93;
  --rct-line: #2c3036;
  --rct-hover: #22262b;
  --rct-chip: #2a2e34;
}
.rct a {
  color: inherit;
  text-decoration: none;
}
.rct-blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.rct-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  margin-bottom: 6px;
}
.rct-more {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--rct-sub);
  transition: opacity 0.15s;
}
.rct-more:hover {
  opacity: 0.65;
}
.rct-more-arw {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rct-tabin, .rct-pgin {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.rct-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.rct-tabs::-webkit-scrollbar {
  display: none;
}
.rct-tab {
  flex: none;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--rct-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.rct-tab:hover {
  color: var(--rct-sub);
}
.rct-mores > .rct-more {
  display: none;
}
.rct--tab .rct-panes > .rct-pane {
  display: none;
}
.rct-tabin:nth-of-type(1):checked ~ .rct-panes > .rct-pane:nth-child(1) {
  display: block;
}
.rct-tabin:nth-of-type(1):checked ~ .rct-hd .rct-tab:nth-child(1) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(1):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(1) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(2):checked ~ .rct-panes > .rct-pane:nth-child(2) {
  display: block;
}
.rct-tabin:nth-of-type(2):checked ~ .rct-hd .rct-tab:nth-child(2) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(2):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(2) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(3):checked ~ .rct-panes > .rct-pane:nth-child(3) {
  display: block;
}
.rct-tabin:nth-of-type(3):checked ~ .rct-hd .rct-tab:nth-child(3) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(3):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(3) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(4):checked ~ .rct-panes > .rct-pane:nth-child(4) {
  display: block;
}
.rct-tabin:nth-of-type(4):checked ~ .rct-hd .rct-tab:nth-child(4) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(4):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(4) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(5):checked ~ .rct-panes > .rct-pane:nth-child(5) {
  display: block;
}
.rct-tabin:nth-of-type(5):checked ~ .rct-hd .rct-tab:nth-child(5) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(5):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(5) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(6):checked ~ .rct-panes > .rct-pane:nth-child(6) {
  display: block;
}
.rct-tabin:nth-of-type(6):checked ~ .rct-hd .rct-tab:nth-child(6) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(6):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(6) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(7):checked ~ .rct-panes > .rct-pane:nth-child(7) {
  display: block;
}
.rct-tabin:nth-of-type(7):checked ~ .rct-hd .rct-tab:nth-child(7) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(7):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(7) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(8):checked ~ .rct-panes > .rct-pane:nth-child(8) {
  display: block;
}
.rct-tabin:nth-of-type(8):checked ~ .rct-hd .rct-tab:nth-child(8) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(8):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(8) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(9):checked ~ .rct-panes > .rct-pane:nth-child(9) {
  display: block;
}
.rct-tabin:nth-of-type(9):checked ~ .rct-hd .rct-tab:nth-child(9) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(9):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(9) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(10):checked ~ .rct-panes > .rct-pane:nth-child(10) {
  display: block;
}
.rct-tabin:nth-of-type(10):checked ~ .rct-hd .rct-tab:nth-child(10) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(10):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(10) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(11):checked ~ .rct-panes > .rct-pane:nth-child(11) {
  display: block;
}
.rct-tabin:nth-of-type(11):checked ~ .rct-hd .rct-tab:nth-child(11) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(11):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(11) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(12):checked ~ .rct-panes > .rct-pane:nth-child(12) {
  display: block;
}
.rct-tabin:nth-of-type(12):checked ~ .rct-hd .rct-tab:nth-child(12) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(12):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(12) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(13):checked ~ .rct-panes > .rct-pane:nth-child(13) {
  display: block;
}
.rct-tabin:nth-of-type(13):checked ~ .rct-hd .rct-tab:nth-child(13) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(13):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(13) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(14):checked ~ .rct-panes > .rct-pane:nth-child(14) {
  display: block;
}
.rct-tabin:nth-of-type(14):checked ~ .rct-hd .rct-tab:nth-child(14) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(14):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(14) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(15):checked ~ .rct-panes > .rct-pane:nth-child(15) {
  display: block;
}
.rct-tabin:nth-of-type(15):checked ~ .rct-hd .rct-tab:nth-child(15) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(15):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(15) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(16):checked ~ .rct-panes > .rct-pane:nth-child(16) {
  display: block;
}
.rct-tabin:nth-of-type(16):checked ~ .rct-hd .rct-tab:nth-child(16) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(16):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(16) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(17):checked ~ .rct-panes > .rct-pane:nth-child(17) {
  display: block;
}
.rct-tabin:nth-of-type(17):checked ~ .rct-hd .rct-tab:nth-child(17) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(17):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(17) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(18):checked ~ .rct-panes > .rct-pane:nth-child(18) {
  display: block;
}
.rct-tabin:nth-of-type(18):checked ~ .rct-hd .rct-tab:nth-child(18) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(18):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(18) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(19):checked ~ .rct-panes > .rct-pane:nth-child(19) {
  display: block;
}
.rct-tabin:nth-of-type(19):checked ~ .rct-hd .rct-tab:nth-child(19) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(19):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(19) {
  display: inline-flex;
}
.rct-tabin:nth-of-type(20):checked ~ .rct-panes > .rct-pane:nth-child(20) {
  display: block;
}
.rct-tabin:nth-of-type(20):checked ~ .rct-hd .rct-tab:nth-child(20) {
  background: var(--rct-hover);
  color: var(--rct-fg);
}
.rct-tabin:nth-of-type(20):checked ~ .rct-hd .rct-mores > .rct-more:nth-child(20) {
  display: inline-flex;
}
.rct--tabside {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 0 20px;
}
.rct--tabside .rct-hd {
  display: block;
  margin-bottom: 0;
  padding-right: 16px;
  border-right: 1px solid var(--rct-line);
}
.rct--tabside .rct-tabs {
  display: block;
  overflow: visible;
}
.rct--tabside .rct-tab {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rct--tabside .rct-mores {
  margin-top: 10px;
  padding-left: 12px;
}
@media (max-width: 640px) {
  .rct--tabside {
    display: block;
  }
  .rct--tabside .rct-hd {
    display: flex;
    margin-bottom: 6px;
    padding-right: 0;
    border-right: 0;
  }
  .rct--tabside .rct-tabs {
    display: flex;
    overflow-x: auto;
  }
  .rct--tabside .rct-mores {
    margin-top: 0;
    padding-left: 0;
  }
}
.rct-pages > .rct-page {
  display: none;
}
.rct-pages > .rct-page:only-child {
  display: block;
}
.rct-pgin:nth-of-type(1):checked ~ .rct-pages > .rct-page:nth-child(1) {
  display: block;
}
.rct-pgin:nth-of-type(1):checked ~ .rct-pager > .rct-dot:nth-child(1) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(2):checked ~ .rct-pages > .rct-page:nth-child(2) {
  display: block;
}
.rct-pgin:nth-of-type(2):checked ~ .rct-pager > .rct-dot:nth-child(2) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(3):checked ~ .rct-pages > .rct-page:nth-child(3) {
  display: block;
}
.rct-pgin:nth-of-type(3):checked ~ .rct-pager > .rct-dot:nth-child(3) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(4):checked ~ .rct-pages > .rct-page:nth-child(4) {
  display: block;
}
.rct-pgin:nth-of-type(4):checked ~ .rct-pager > .rct-dot:nth-child(4) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(5):checked ~ .rct-pages > .rct-page:nth-child(5) {
  display: block;
}
.rct-pgin:nth-of-type(5):checked ~ .rct-pager > .rct-dot:nth-child(5) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(6):checked ~ .rct-pages > .rct-page:nth-child(6) {
  display: block;
}
.rct-pgin:nth-of-type(6):checked ~ .rct-pager > .rct-dot:nth-child(6) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(7):checked ~ .rct-pages > .rct-page:nth-child(7) {
  display: block;
}
.rct-pgin:nth-of-type(7):checked ~ .rct-pager > .rct-dot:nth-child(7) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(8):checked ~ .rct-pages > .rct-page:nth-child(8) {
  display: block;
}
.rct-pgin:nth-of-type(8):checked ~ .rct-pager > .rct-dot:nth-child(8) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(9):checked ~ .rct-pages > .rct-page:nth-child(9) {
  display: block;
}
.rct-pgin:nth-of-type(9):checked ~ .rct-pager > .rct-dot:nth-child(9) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(10):checked ~ .rct-pages > .rct-page:nth-child(10) {
  display: block;
}
.rct-pgin:nth-of-type(10):checked ~ .rct-pager > .rct-dot:nth-child(10) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(11):checked ~ .rct-pages > .rct-page:nth-child(11) {
  display: block;
}
.rct-pgin:nth-of-type(11):checked ~ .rct-pager > .rct-dot:nth-child(11) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(12):checked ~ .rct-pages > .rct-page:nth-child(12) {
  display: block;
}
.rct-pgin:nth-of-type(12):checked ~ .rct-pager > .rct-dot:nth-child(12) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(13):checked ~ .rct-pages > .rct-page:nth-child(13) {
  display: block;
}
.rct-pgin:nth-of-type(13):checked ~ .rct-pager > .rct-dot:nth-child(13) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(14):checked ~ .rct-pages > .rct-page:nth-child(14) {
  display: block;
}
.rct-pgin:nth-of-type(14):checked ~ .rct-pager > .rct-dot:nth-child(14) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(15):checked ~ .rct-pages > .rct-page:nth-child(15) {
  display: block;
}
.rct-pgin:nth-of-type(15):checked ~ .rct-pager > .rct-dot:nth-child(15) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(16):checked ~ .rct-pages > .rct-page:nth-child(16) {
  display: block;
}
.rct-pgin:nth-of-type(16):checked ~ .rct-pager > .rct-dot:nth-child(16) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(17):checked ~ .rct-pages > .rct-page:nth-child(17) {
  display: block;
}
.rct-pgin:nth-of-type(17):checked ~ .rct-pager > .rct-dot:nth-child(17) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(18):checked ~ .rct-pages > .rct-page:nth-child(18) {
  display: block;
}
.rct-pgin:nth-of-type(18):checked ~ .rct-pager > .rct-dot:nth-child(18) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(19):checked ~ .rct-pages > .rct-page:nth-child(19) {
  display: block;
}
.rct-pgin:nth-of-type(19):checked ~ .rct-pager > .rct-dot:nth-child(19) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pgin:nth-of-type(20):checked ~ .rct-pages > .rct-page:nth-child(20) {
  display: block;
}
.rct-pgin:nth-of-type(20):checked ~ .rct-pager > .rct-dot:nth-child(20) {
  background: var(--rct-sub);
  transform: scaleX(2.4);
  border-radius: 3px;
}
.rct-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.rct-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rct-line);
  cursor: pointer;
  transition: background-color 0.15s, transform 0.15s;
}
.rct-pane {
  position: relative;
}
.rct-empty {
  margin: 0;
  padding: 32px 0;
  font-size: 13px;
  color: var(--rct-dim);
  text-align: center;
}
.rct-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rct-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 40px;
  margin: 0 -12px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background-color 0.15s;
}
.rct-item:hover {
  background: var(--rct-hover);
}
.rct-body {
  order: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.rct-line {
  display: flex;
  align-items: center;
  min-width: 0;
}
.rct-topic {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 38%;
  margin-right: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--rct-sub);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rct-topic:hover {
  text-decoration: underline;
}
.rct-chip {
  flex: none;
  margin-right: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--rct-chip);
  font-size: 11px;
  line-height: 1.4;
  color: var(--rct-sub);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.rct-ico-img {
  display: inline-flex;
  flex: none;
  margin-right: 6px;
}
.rct-ico-img svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--rct-dim);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rct-tit {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: var(--rct-fg);
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rct-tit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.rct-extra {
  display: inline-flex;
  align-items: center;
  flex: none;
  margin-left: 4px;
}
.rct-extra img {
  vertical-align: middle;
}
.rct-desc {
  margin: 2px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 1.5;
  color: var(--rct-dim);
}
.rct-meta {
  order: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  margin-left: 12px;
  font-size: 12px;
  line-height: 16px;
  color: var(--rct-dim);
}
.rct-author, .rct-date {
  max-width: 90px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.rct-cnt {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: none;
  color: var(--rct-dim);
}
.rct-cnt--cmt {
  position: relative;
  z-index: 1;
}
.rct-cnt--cmt:hover {
  color: var(--rct-sub);
}
.rct-cnt-ico {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rct-thumb {
  order: 3;
  display: block;
  overflow: hidden;
  flex: none;
  width: 56px;
  height: 56px;
  margin-left: 12px;
  border-radius: 8px;
  background: var(--rct-hover);
}
.rct-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rct-thumb-none {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .rct-topic {
    max-width: 45%;
  }
  .rct-author, .rct-date {
    display: none;
  }
}
.rct-c0 {
  background: #f8dfdd;
  color: #853832;
}
.rct--black .rct-c0 {
  background: #492a27;
  color: #df9690;
}
.rct-c1 {
  background: #f8e4dd;
  color: #854932;
}
.rct--black .rct-c1 {
  background: #493027;
  color: #dfa590;
}
.rct-c2 {
  background: #f8eadd;
  color: #855932;
}
.rct--black .rct-c2 {
  background: #493727;
  color: #dfb590;
}
.rct-c3 {
  background: #f8f2dd;
  color: #857032;
}
.rct--black .rct-c3 {
  background: #494127;
  color: #dfcb90;
}
.rct-c4 {
  background: #e8f8dd;
  color: #548532;
}
.rct--black .rct-c4 {
  background: #354927;
  color: #b0df90;
}
.rct-c5 {
  background: #ddf8eb;
  color: #32855c;
}
.rct--black .rct-c5 {
  background: #274938;
  color: #90dfb8;
}
.rct-c6 {
  background: #ddf8f5;
  color: #32857a;
}
.rct--black .rct-c6 {
  background: #274944;
  color: #90dfd4;
}
.rct-c7 {
  background: #ddf1f8;
  color: #326f85;
}
.rct--black .rct-c7 {
  background: #274049;
  color: #90cadf;
}
.rct-c8 {
  background: #dde9f8;
  color: #325685;
}
.rct--black .rct-c8 {
  background: #273649;
  color: #90b2df;
}
.rct-c9 {
  background: #e5ddf8;
  color: #4b3285;
}
.rct--black .rct-c9 {
  background: #312749;
  color: #a890df;
}
.rct-c10 {
  background: #f3ddf8;
  color: #753285;
}
.rct--black .rct-c10 {
  background: #422749;
  color: #cf90df;
}
.rct-c11 {
  background: #f8ddeb;
  color: #85325c;
}
.rct--black .rct-c11 {
  background: #492738;
  color: #df90b8;
}
body.color_scheme_dark .rct--layout .rct-c0 {
  background: #492a27;
  color: #df9690;
}
body.color_scheme_dark .rct--layout .rct-c1 {
  background: #493027;
  color: #dfa590;
}
body.color_scheme_dark .rct--layout .rct-c2 {
  background: #493727;
  color: #dfb590;
}
body.color_scheme_dark .rct--layout .rct-c3 {
  background: #494127;
  color: #dfcb90;
}
body.color_scheme_dark .rct--layout .rct-c4 {
  background: #354927;
  color: #b0df90;
}
body.color_scheme_dark .rct--layout .rct-c5 {
  background: #274938;
  color: #90dfb8;
}
body.color_scheme_dark .rct--layout .rct-c6 {
  background: #274944;
  color: #90dfd4;
}
body.color_scheme_dark .rct--layout .rct-c7 {
  background: #274049;
  color: #90cadf;
}
body.color_scheme_dark .rct--layout .rct-c8 {
  background: #273649;
  color: #90b2df;
}
body.color_scheme_dark .rct--layout .rct-c9 {
  background: #312749;
  color: #a890df;
}
body.color_scheme_dark .rct--layout .rct-c10 {
  background: #422749;
  color: #cf90df;
}
body.color_scheme_dark .rct--layout .rct-c11 {
  background: #492738;
  color: #df90b8;
}
/*# sourceMappingURL=a7152c42c53a247667222b7f35a03c4459ad586a.root_contents.scss.map */
