/* cspell:disable-file */
/* webkit printing magic: print all background colors */

:root {
  /* Colors */
  --color-text: rgb(55, 53, 47);
  --color-text-muted: rgba(115, 114, 110, 1);
  --color-accent: rgba(68, 131, 97, 1);
  --color-accent-light: rgba(68, 131, 97, 0.1);
  --color-border: rgba(55, 53, 47, 0.09);
  --color-card-bg: #fafafa;
  --color-card-border: #eee;

  /* Spacing */
  --section-gap: 2.5rem;
  --subsection-gap: 1.5rem;
  --card-padding: 1.25rem;

  /* Typography */
  --font-size-base: 0.95rem;
  --font-size-small: 0.85rem;
}

html {
  -webkit-print-color-adjust: exact;
}
* {
  box-sizing: border-box;
  -webkit-print-color-adjust: exact;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-size-base);
}
@media only screen {
  body {
    margin: 2em auto;
    max-width: 900px;
    color: rgb(55, 53, 47);
  }
}

body {
  line-height: 1.5;
  white-space: normal;
}

a,
a.visited {
  color: inherit;
  text-decoration: underline;
}

.pdf-relative-link-path {
  font-size: 80%;
  color: #444;
}

h1,
h2,
h3 {
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.25em;
}

/* Header Section */
.resume-header {
  text-align: center;
  padding-bottom: var(--section-gap);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--section-gap);
}

.resume-header .page-title {
  margin-bottom: 0.1em;
}

.resume-header .job-title {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.resume-header .contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: var(--font-size-small);
  color: var(--color-text);
}

.resume-header .contact-info a {
  text-decoration: none;
  color: inherit;
}

.resume-header .contact-info a:hover {
  color: var(--color-accent);
}

.resume-header .contact-info .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.resume-header .contact-info .contact-item img {
  width: 1em;
  height: 1em;
}

h1 {
  font-size: 1.875rem;
  margin-top: 1.875rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

h4 {
  font-size: 1.125rem; /* Slightly smaller than h3 */
  font-weight: 500; /* Medium weight for distinction */
  margin: 0.75em 0; /* Adjust spacing */
  color: rgb(55, 53, 47); /* Match the color theme */
  line-height: 1.4; /* Ensure readability */
}

.source {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 1.5em;
  word-break: break-all;
}

/* About Me section */
.about-section {
  margin-bottom: var(--section-gap);
}

.about-section .quote {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
}

.about-section .description {
  color: var(--color-text);
  line-height: 1.7;
}

.about-section .description p {
  margin-bottom: 0.5rem;
}

/* Achievement highlight */
.achievement {
  display: inline-block;
  background: var(--color-accent-light);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-weight: 500;
}

@media print {
  body {
    margin: 0.5in; /* 여백 조정 */
  }

  .project-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
  }

  .callout {
    margin: 0.8rem 0; /* PDF용으로 여백 줄임 */
  }

  .resume-header {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* 강제 페이지 나누기가 필요한 곳에 */
  .page-break-before {
    page-break-before: always;
  }
}

/* Project Card Style */
.project-card {
  background: var(--color-card-bg);
  border-radius: 8px;
  padding: var(--card-padding);
  margin: 1rem 0 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-card-border);
}

.project-card h4 {
  margin: 0 0 0.75rem 0;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
}

.project-card .project-summary {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.project-card .project-section {
  margin-bottom: 0.75rem;
}

.project-card .project-section:last-child {
  margin-bottom: 0;
}

.project-card .project-section strong {
  display: block;
  font-size: var(--font-size-small);
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.project-card .result {
  background: var(--color-accent-light);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-top: 0.75rem;
  font-size: var(--font-size-small);
}

.project-card .result strong {
  display: inline;
}

.project-card ul {
  margin: 0.25rem 0;
  padding-left: 1.2rem;
}

.project-card li {
  font-size: var(--font-size-small);
  margin-bottom: 0.25rem;
}

/* Legacy callout support */
.callout {
  /*border-radius: 10px;*/
  padding-left: 1rem;
  /*border: 1px solid rgba(68, 131, 97, 0.3); !* 기존 teal 색상의 연한 버전 *!*/
  border-left: 3px solid rgba(68, 131, 97, 0.8); /* 왼쪽에 강조 border */
  /*border-radius: 6px; !* 현재 3px에서 조금 더 둥글게 *!*/
  text-align: justify; /* 양쪽 정렬 */
  word-break: keep-all; /* 한글 단어 단위로 줄바꿈 */
  word-wrap: break-word; /* 긴 단어는 필요시 줄바꿈 */
  background: transparent !important; /* 또는 background: none; */
  /* 또는 */
  /*background-color: transparent !important;*/
}

.callout-blue {
  padding-left: 1rem;
  border-left: 3px solid rgba(51, 126, 169, 0.8); /* 파란색 강조 border */
  text-align: justify;
  word-break: keep-all;
  word-wrap: break-word;
  background: transparent !important;
}

.callout h3 {
  margin-top: 0;
}

.callout li {
  line-height: 1.2; /* Adjust line spacing */
  margin-bottom: 0.5em; /* Optional: Add spacing between list items */
}

.callout * {
  line-height: 1.6; /* Adjust line spacing */
}

figure {
  margin: 1.25em 0;
}

figcaption {
  opacity: 0.5;
  font-size: 85%;
  margin-top: 0.5em;
}

mark {
  background-color: transparent;
}

.indented {
  padding-left: 1.5em;
}

hr {
  background: transparent;
  display: block;
  width: 100%;
  height: 1px;
  visibility: visible;
  border: none;
  border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}

img {
  max-width: 100%;
}

@media only print {
  img {
    max-height: 100vh;
    object-fit: contain;
  }
}

@page {
  margin: 1in;
}

.collection-content {
  font-size: 0.875rem;
}

.column-list {
  display: flex;
  justify-content: space-between;
}

.column {
  padding: 0 1em;
}

.column:first-child {
  padding-left: 0;
}

.column:last-child {
  padding-right: 0;
}

.table_of_contents-item {
  display: block;
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.125rem;
}

.table_of_contents-indent-1 {
  margin-left: 1.5rem;
}

.table_of_contents-indent-2 {
  margin-left: 3rem;
}

.table_of_contents-indent-3 {
  margin-left: 4.5rem;
}

.table_of_contents-link {
  text-decoration: none;
  opacity: 0.7;
  border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}

table,
th,
td {
  border: 1px solid rgba(55, 53, 47, 0.09);
  border-collapse: collapse;
}

table {
  border-left: none;
  border-right: none;
}

th,
td {
  font-weight: normal;
  padding: 0.25em 0.5em;
  line-height: 1.5;
  min-height: 1.5em;
  text-align: left;
}

th {
  color: rgba(55, 53, 47, 0.6);
}

ol,
ul {
  margin: 0;
  margin-block-start: 0.6em;
  margin-block-end: 0.6em;
}

li > ol:first-child,
li > ul:first-child {
  margin-block-start: 0.6em;
}

ul > li {
  list-style: disc;
}

ul.to-do-list {
  padding-inline-start: 0;
}

ul.to-do-list > li {
  list-style: none;
}

.to-do-children-checked {
  text-decoration: line-through;
  opacity: 0.375;
}

ul.toggle > li {
  list-style: none;
}

ul {
  padding-inline-start: 1.7em;
}

ul > li {
  padding-left: 0.1em;
}

ol {
  padding-inline-start: 1.6em;
}

ol > li {
  padding-left: 0.2em;
}

.mono ol {
  padding-inline-start: 2em;
}

.mono ol > li {
  text-indent: -0.4em;
}

.toggle {
  padding-inline-start: 0em;
  list-style-type: none;
}

/* Indent toggle children */
.toggle > li > details {
  padding-left: 1.7em;
}

.toggle > li > details > summary {
  margin-left: -1.1em;
}

.selected-value {
  display: inline-block;
  padding: 0 0.5em;
  background: rgba(206, 205, 202, 0.5);
  border-radius: 3px;
  margin-right: 0.5em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
  white-space: nowrap;
}

.collection-title {
  display: inline-block;
  margin-right: 1em;
}

.page-description {
  margin-bottom: 2em;
}

.simple-table {
  margin-top: 1em;
  font-size: 0.875rem;
  empty-cells: show;
}
.simple-table td {
  height: 29px;
  min-width: 120px;
}

.simple-table th {
  height: 29px;
  min-width: 120px;
}

.simple-table-header-color {
  background: rgb(247, 246, 243);
  color: black;
}
.simple-table-header {
  font-weight: 500;
}

time {
  opacity: 0.5;
}

.icon {
  display: inline-block;
  max-width: 1.2em;
  max-height: 1.2em;
  text-decoration: none;
  vertical-align: text-bottom;
  margin-right: 0.5em;
}

img.icon {
  border-radius: 3px;
}

.user-icon {
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  margin-right: 0.5rem;
}

.user-icon-inner {
  font-size: 0.8em;
}

.text-icon {
  border: 1px solid #000;
  text-align: center;
}

.page-cover-image {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 30vh;
}

.page-header-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header-icon-with-cover {
  margin-top: -0.72em;
  margin-left: 0.07em;
}

.page-header-icon img {
  border-radius: 3px;
}

.link-to-page {
  margin: 1em 0;
  padding: 0;
  border: none;
  font-weight: 500;
}

p > .user {
  opacity: 0.5;
}

td > .user,
td > time {
  white-space: nowrap;
}

input[type="checkbox"] {
  transform: scale(1.5);
  margin-right: 0.6em;
  vertical-align: middle;
}

p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.image {
  border: none;
  margin: 1.5em 0;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

/* Skill badges */
.skill-badge,
.code,
code {
  background: rgba(135, 131, 120, 0.15);
  border-radius: 3px;
  padding: 0.2em 0.4em;
  font-size: 85%;
  tab-size: 2;
}

code {
  color: var(--color-accent);
  font-family: inherit;
  font-weight: 500;
}

.skills-section {
  margin: var(--subsection-gap) 0;
}

.skills-section .skill-group {
  margin-bottom: 0.5rem;
}

.skills-section .skill-label {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: var(--font-size-small);
  margin-right: 0.5rem;
}

/* Section styles */
.resume-section {
  margin-bottom: var(--section-gap);
}

.resume-section > h1 {
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 0.5rem;
  margin-bottom: var(--subsection-gap);
}

/* Company header */
.company-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.company-header h2 {
  margin: 0;
}

.company-header .duration {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  font-style: italic;
}

.company-role {
  color: var(--color-text-muted);
  font-size: var(--font-size-small);
  margin-bottom: 0.75rem;
}

.company-tech {
  margin-bottom: var(--subsection-gap);
}

/* TF/Project background description */
.tf-background {
  font-size: var(--font-size-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0.5rem 0 1rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border);
}

/* Team/Period header */
.team-header {
  margin-top: var(--subsection-gap);
  margin-bottom: 0.75rem;
}

.team-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.code {
  padding: 1.5em 1em;
}

.code-wrap {
  white-space: pre-wrap;
  word-break: break-all;
}

.code > code {
  background: none;
  padding: 0;
  font-size: 100%;
  color: inherit;
}

blockquote {
  font-size: 1.25em;
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid rgb(55, 53, 47);
}

.bookmark {
  text-decoration: none;
  max-height: 8em;
  padding: 0;
  display: flex;
  width: 100%;
  align-items: stretch;
}

.bookmark-title {
  font-size: 0.85em;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 1.75em;
  white-space: nowrap;
}

.bookmark-text {
  display: flex;
  flex-direction: column;
}

.bookmark-info {
  flex: 4 1 180px;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bookmark-image {
  width: 33%;
  flex: 1 1 180px;
  display: block;
  position: relative;
  object-fit: cover;
  border-radius: 1px;
}

.bookmark-description {
  color: rgba(55, 53, 47, 0.6);
  font-size: 0.75em;
  overflow: hidden;
  max-height: 4.5em;
  word-break: break-word;
}

.bookmark-href {
  font-size: 0.75em;
  margin-top: 0.25em;
}

.sans {
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Variable Display",
    "Segoe UI",
    Helvetica,
    "Apple Color Emoji",
    Arial,
    sans-serif,
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}
.code {
  font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace;
}
.serif {
  font-family: Lyon-Text, Georgia, ui-serif, serif;
}
.mono {
  font-family: iawriter-mono, Nitti, Menlo, Courier, monospace;
}
.pdf .sans {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Variable Display",
    "Segoe UI",
    Helvetica,
    "Apple Color Emoji",
    Arial,
    sans-serif,
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans CJK JP";
}
.pdf:lang(zh-CN) .sans {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Variable Display",
    "Segoe UI",
    Helvetica,
    "Apple Color Emoji",
    Arial,
    sans-serif,
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans CJK SC";
}
.pdf:lang(zh-TW) .sans {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Variable Display",
    "Segoe UI",
    Helvetica,
    "Apple Color Emoji",
    Arial,
    sans-serif,
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans CJK TC";
}
.pdf:lang(ko-KR) .sans {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Variable Display",
    "Segoe UI",
    Helvetica,
    "Apple Color Emoji",
    Arial,
    sans-serif,
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans CJK KR";
}
.pdf .code {
  font-family:
    Source Code Pro,
    "SFMono-Regular",
    Menlo,
    Consolas,
    "PT Mono",
    "Liberation Mono",
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK JP";
}
.pdf:lang(zh-CN) .code {
  font-family:
    Source Code Pro,
    "SFMono-Regular",
    Menlo,
    Consolas,
    "PT Mono",
    "Liberation Mono",
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK SC";
}
.pdf:lang(zh-TW) .code {
  font-family:
    Source Code Pro,
    "SFMono-Regular",
    Menlo,
    Consolas,
    "PT Mono",
    "Liberation Mono",
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK TC";
}
.pdf:lang(ko-KR) .code {
  font-family:
    Source Code Pro,
    "SFMono-Regular",
    Menlo,
    Consolas,
    "PT Mono",
    "Liberation Mono",
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK KR";
}
.pdf .serif {
  font-family:
    PT Serif,
    Lyon-Text,
    Georgia,
    ui-serif,
    serif,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Serif CJK JP";
}
.pdf:lang(zh-CN) .serif {
  font-family:
    PT Serif,
    Lyon-Text,
    Georgia,
    ui-serif,
    serif,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Serif CJK SC";
}
.pdf:lang(zh-TW) .serif {
  font-family:
    PT Serif,
    Lyon-Text,
    Georgia,
    ui-serif,
    serif,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Serif CJK TC";
}
.pdf:lang(ko-KR) .serif {
  font-family:
    PT Serif,
    Lyon-Text,
    Georgia,
    ui-serif,
    serif,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Serif CJK KR";
}
.pdf .mono {
  font-family:
    PT Mono,
    iawriter-mono,
    Nitti,
    Menlo,
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK JP";
}
.pdf:lang(zh-CN) .mono {
  font-family:
    PT Mono,
    iawriter-mono,
    Nitti,
    Menlo,
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK SC";
}
.pdf:lang(zh-TW) .mono {
  font-family:
    PT Mono,
    iawriter-mono,
    Nitti,
    Menlo,
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK TC";
}
.pdf:lang(ko-KR) .mono {
  font-family:
    PT Mono,
    iawriter-mono,
    Nitti,
    Menlo,
    Courier,
    monospace,
    "Twemoji",
    "Noto Color Emoji",
    "Noto Sans Mono CJK KR";
}
.highlight-default {
  color: rgba(50, 48, 44, 1);
}
.highlight-gray {
  color: rgba(115, 114, 110, 1);
  fill: rgba(115, 114, 110, 1);
}
.highlight-brown {
  color: rgba(159, 107, 83, 1);
  fill: rgba(159, 107, 83, 1);
}
.highlight-orange {
  color: rgba(217, 115, 13, 1);
  fill: rgba(217, 115, 13, 1);
}
.highlight-yellow {
  color: rgba(203, 145, 47, 1);
  fill: rgba(203, 145, 47, 1);
}
.highlight-teal {
  color: rgba(68, 131, 97, 1);
  fill: rgba(68, 131, 97, 1);
}
.highlight-blue {
  color: rgba(51, 126, 169, 1);
  fill: rgba(51, 126, 169, 1);
}
.highlight-purple {
  color: rgba(144, 101, 176, 1);
  fill: rgba(144, 101, 176, 1);
}
.highlight-pink {
  color: rgba(193, 76, 138, 1);
  fill: rgba(193, 76, 138, 1);
}
.highlight-red {
  color: rgba(205, 60, 58, 1);
  fill: rgba(205, 60, 58, 1);
}
.highlight-default_background {
  color: rgba(50, 48, 44, 1);
}
.highlight-gray_background {
  background: rgba(248, 248, 247, 1);
}
.highlight-brown_background {
  background: rgba(244, 238, 238, 1);
}
.highlight-orange_background {
  background: rgba(251, 236, 221, 1);
}
.highlight-yellow_background {
  background: rgba(251, 243, 219, 1);
}
.highlight-teal_background {
  background: rgba(237, 243, 236, 1);
}
.highlight-blue_background {
  background: rgba(231, 243, 248, 1);
}
.highlight-purple_background {
  background: rgba(248, 243, 252, 1);
}
.highlight-pink_background {
  background: rgba(252, 241, 246, 1);
}
.highlight-red_background {
  background: rgba(253, 235, 236, 1);
}
.block-color-default {
  color: inherit;
  fill: inherit;
}
.block-color-gray {
  color: rgba(115, 114, 110, 1);
  fill: rgba(115, 114, 110, 1);
}
.block-color-brown {
  color: rgba(159, 107, 83, 1);
  fill: rgba(159, 107, 83, 1);
}
.block-color-orange {
  color: rgba(217, 115, 13, 1);
  fill: rgba(217, 115, 13, 1);
}
.block-color-yellow {
  color: rgba(203, 145, 47, 1);
  fill: rgba(203, 145, 47, 1);
}
.block-color-teal {
  color: rgba(68, 131, 97, 1);
  fill: rgba(68, 131, 97, 1);
}
.block-color-blue {
  color: rgba(51, 126, 169, 1);
  fill: rgba(51, 126, 169, 1);
}
.block-color-purple {
  color: rgba(144, 101, 176, 1);
  fill: rgba(144, 101, 176, 1);
}
.block-color-pink {
  color: rgba(193, 76, 138, 1);
  fill: rgba(193, 76, 138, 1);
}
.block-color-red {
  color: rgba(205, 60, 58, 1);
  fill: rgba(205, 60, 58, 1);
}
.block-color-default_background {
  color: inherit;
  fill: inherit;
}
.block-color-gray_background {
  background: rgba(248, 248, 247, 1);
}
.block-color-brown_background {
  background: rgba(244, 238, 238, 1);
}
.block-color-orange_background {
  background: rgba(251, 236, 221, 1);
}
.block-color-yellow_background {
  background: rgba(251, 243, 219, 1);
}
.block-color-teal_background {
  background: rgba(237, 243, 236, 1);
}
.block-color-blue_background {
  background: rgba(231, 243, 248, 1);
}
.block-color-purple_background {
  background: rgba(248, 243, 252, 1);
}
.block-color-pink_background {
  background: rgba(252, 241, 246, 1);
}
.block-color-red_background {
  background: rgba(253, 235, 236, 1);
}
.select-value-color-default {
  background-color: rgba(84, 72, 49, 0.08);
}
.select-value-color-gray {
  background-color: rgba(84, 72, 49, 0.15);
}
.select-value-color-brown {
  background-color: rgba(210, 162, 141, 0.35);
}
.select-value-color-orange {
  background-color: rgba(224, 124, 57, 0.27);
}
.select-value-color-yellow {
  background-color: rgba(236, 191, 66, 0.39);
}
.select-value-color-green {
  background-color: rgba(123, 183, 129, 0.27);
}
.select-value-color-blue {
  background-color: rgba(93, 165, 206, 0.27);
}
.select-value-color-purple {
  background-color: rgba(168, 129, 197, 0.27);
}
.select-value-color-pink {
  background-color: rgba(225, 136, 179, 0.27);
}
.select-value-color-red {
  background-color: rgba(244, 171, 159, 0.4);
}

.checkbox {
  display: inline-flex;
  vertical-align: text-bottom;
  width: 16;
  height: 16;
  background-size: 16px;
  margin-left: 2px;
  margin-right: 5px;
}

.checkbox-on {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}

.checkbox-off {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}