@charset "UTF-8";
/* font */
/* flex align */
/* flex justify-content */
/* flex direction*/
/* flex row */
/* flex */
/* scrollbar mixin */
/* ==================
    uis 도시기반시설 관리시스템 
================== */
/* 왼쪽 map_sidebar */
.map_sidebar {
  position: relative;
  left: 0;
  display: flex;
  height: 100%;
  width: 0;
  background-color: var(--krds-light-color-background-dim2);
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
.map_sidebar.active {
  width: 33rem;
  z-index: 2;
}
.map_sidebar.active .map_sidebar_toggle {
  display: block;
  z-index: 2;
  background-color: var(--krds-light-color-background-dim2);
}
.map_sidebar.active .map_sidebar_toggle::before {
  transform: translate(-50%, -50%);
}
.map_sidebar.active .map_sidebar_tabs {
  opacity: 1;
  visibility: visible;
}
.map_sidebar.active .layout_panel {
  display: block;
}
.map_sidebar .layout_panel {
  display: none;
}
.map_sidebar .map_sidebar_tabs {
  opacity: 0;
  visibility: hidden;
}
.map_sidebar .map_sidebar_toggle {
  z-index: 2;
  position: absolute;
  right: -18px;
  top: 0;
  width: 18px;
  height: 46px;
  background-color: var(--krds-light-color-background-dim2);
  border-radius: 0 4px 4px 0;
}
.map_sidebar .map_sidebar_toggle::before {
  content: "";
  position: absolute;
  background: url("../images/common/ico/ico-toggle.svg") no-repeat center;
  width: 10px;
  height: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-180deg);
  transition: all 0.3s;
}
.map_sidebar .krds-tab-area {
  gap: 1.2rem;
  height: 100%;
  width: 33rem;
}
.map_sidebar .tab {
  margin-top: 1rem;
}
.map_sidebar .tab.full {
  padding: 0 16px;
}
.map_sidebar .tab-conts-wrap {
  overflow-y: auto;
  max-height: calc(100vh - 48px - 38px - 36px - 25px);
  padding: 0 16px;
}

.layout_panel {
  width: 100%;
}
.layout_panel .layout_header {
  margin: 0 var(--krds-padding-6);
  border-bottom: 0.1rem solid var(--krds-light-color-border-gray-dark);
  height: 4.4rem;
  padding: 0.87rem 0;
}
.layout_panel .layout_header .title-text {
  gap: var(--krds-gap-3);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.layout_panel .layout_header .title-text.traffic::before {
  content: "";
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  background: url("../images/common/ico/ico-title-traffic.svg") center no-repeat;
  background-size: contain;
}
.layout_panel .layout_header .title-text.pen::before {
  content: "";
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  background: url("../images/common/ico/ico-title-pen.svg") center no-repeat;
}
.layout_panel .layout_body.col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: var(--krds-gap-4);
}
.layout_panel .layout_body section {
  width: 100%;
}
.layout_panel .layout_body {
  margin: 0 var(--krds-padding-6);
  padding: var(--krds-padding-5) 0;
}

/* 하단 map_sidebar */
.map_bottom {
  position: relative;
  flex: 1;
  display: flex;
  margin-top: auto;
  bottom: 0;
  height: 0px;
  z-index: 1;
  flex-shrink: 0;
}
.map_bottom.active {
  z-index: 2;
  border-bottom: none;
  height: 26rem;
  margin-top: auto;
  transform: translateX(0%);
  background-color: var(--krds-light-color-background-dim2);
  backdrop-filter: blur(4px);
  border: 1px solid var(--krds-color-light-gray-90);
  border-bottom: none;
}
.map_bottom.active .map_bottom_toggle {
  display: block;
  z-index: 2;
  background-color: var(--krds-color-light-gray-90);
  right: 50%;
  top: -18px;
}
.map_bottom.active .map_bottom_toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.map_bottom.active .layout_panel {
  opacity: 1;
  visibility: visible;
}
.map_bottom .map_bottom_toggle {
  z-index: 2;
  position: absolute;
  right: 50%;
  top: -18px;
  width: 46px;
  height: 18px;
  background-color: var(--krds-light-color-background-dim2);
  border-radius: 4px 4px 0 0;
}
.map_bottom .map_bottom_toggle::before {
  content: "";
  position: absolute;
  background: url("../images/common/ico/ico-toggle.svg") no-repeat center;
  width: 10px;
  height: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all 0.3s;
}
.map_bottom .layout_panel {
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: var(--krds-padding-6);
}
.map_bottom .layout_panel .layout_header {
  min-width: 30rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding-bottom: var(--krds-padding-3);
  margin: 0;
  border-bottom: none;
}
.map_bottom .layout_panel .layout_header .title-area.row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}
.map_bottom .layout_panel .layout_header .title-text-sub {
  font-size: var(--krds-pc-font-size-heading-xxsmall);
  color: var(--krds-light-color-text-basic-inverse);
  gap: var(--krds-gap-3);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.map_bottom .layout_panel .layout_header .btn-group {
  margin-left: auto;
}
.map_bottom .layout_panel .layout_body {
  height: calc(100% - 4rem);
  width: auto;
  position: relative;
  margin-left: 0;
  padding: 0;
}
.map_bottom .layout_panel .layout_body .krds-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 0.1rem solid var(--krds-high-contrast-color-surface-white);
  height: 100%;
  overflow: hidden;
}
.map_bottom .layout_panel .layout_body .krds-table-wrap .table-scroll {
  width: 100%;
  height: auto;
  overflow: auto;
  display: grid;
  overflow-y: auto;
  max-height: 100%;
  min-height: 18rem;
  background-color: var(--krds-high-contrast-color-divider-gray-light);
}
.map_bottom .layout_panel .layout_body .krds-table-wrap .table-scroll .table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 40px;
}
.map_bottom .layout_panel .layout_body .krds-table-wrap .table-scroll .table thead tr th {
  position: sticky;
  top: 0;
}
.map_bottom .toc-panel {
  background-color: var(--krds-light-color-background-dim3);
  width: calc(100% - 34rem);
  height: auto;
}
.map_bottom .toc-panel .toc__header {
  padding-top: var(--krds-padding-6);
  border-bottom: none;
}

/* 오른쪽 map_sidebar */
.map_rightbar {
  z-index: 1;
  position: relative;
  right: 0;
  display: flex;
  height: 100%;
  width: 0;
  background-color: var(--krds-light-color-background-dim2);
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  flex-shrink: 0;
}
.map_rightbar.active {
  width: 40rem;
  z-index: 2;
}
.map_rightbar.active .map_sidebar_toggle {
  display: block;
  z-index: 2;
  background-color: var(--krds-light-color-background-dim2);
}
.map_rightbar.active .map_sidebar_toggle::before {
  transform: translate(-50%, -50%);
}
.map_rightbar.active .map_sidebar_tabs {
  opacity: 1;
  visibility: visible;
}
.map_rightbar .map_sidebar_tabs {
  opacity: 0;
  visibility: hidden;
}
.map_rightbar .map_rightbar_toggle {
  z-index: 2;
  position: absolute;
  left: -18px;
  top: 0;
  width: 18px;
  height: 46px;
  background-color: var(--krds-light-color-background-dim2);
  border-radius: 4px 0 0 4px;
}
.map_rightbar .map_rightbar_toggle::before {
  content: "";
  position: absolute;
  background: url("../images/common/ico/ico-toggle.svg") no-repeat center;
  width: 10px;
  height: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.3s;
}
.map_rightbar .layout_panel {
  width: 40rem;
}
.map_rightbar .layout_panel .layout_header {
  height: 4.4rem;
  padding: 0.87rem 0;
}
.map_rightbar .layout_panel .layout_body {
  height: calc(100vh - 121px);
}
.map_rightbar .layout_panel .section {
  overflow: auto;
  width: 100%;
  height: auto;
  max-height: calc(100% - 30rem);
}
.map_rightbar .layout_panel .section + .section {
  overflow: hidden;
  max-height: 30rem;
  height: 100%;
}
.map_rightbar .layout_panel .section + .section .section_scroll {
  overflow: auto;
  width: 100%;
  height: 100%;
}
.map_rightbar .layout_panel .section + .section .section_scroll .btn-wrap {
  padding-top: 0;
}
.map_rightbar .layout_panel .section .box-group {
  margin-top: 0;
}
.map_rightbar .layout_panel .section .table_scroll {
  height: auto;
  overflow: hidden;
  max-height: 18rem;
}
.map_rightbar .layout_panel .section .table_scroll.btn-none {
  max-height: 221px;
}
.map_rightbar .layout_panel .section .btn-wrap.bottom {
  padding: var(--krds-padding-6);
}
.map_rightbar .layout_panel .section .krds-tab-area {
  height: 100%;
  padding-top: var(--krds-padding-5);
}
.map_rightbar .layout_panel .section .krds-tab-area .tab.tablist_react {
  padding-bottom: 0;
}
.map_rightbar .layout_panel .section .krds-tab-area .tab-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.map_rightbar .krds-tab-area {
  gap: 1.2rem;
  height: 100%;
}
.map_rightbar .krds-tab-area.gpa0 {
  gap: 0;
}
.map_rightbar .tab-conts-wrap {
  overflow-y: auto;
  max-height: calc(100vh - 48px - 38px - 36px - 25px);
  padding: 0 16px;
}

/* 탭 영역 */
.krds-tab-area {
  width: 100%;
  height: 100%;
}
.krds-tab-area .tab.line {
  padding: var(--krds-padding-3) var(--krds-padding-6) 0 var(--krds-padding-6);
}
.krds-tab-area .tab.line.full .btn-tab {
  border: 0;
  height: 3.6rem;
}
.krds-tab-area .tab.line.full .btn-tab::before {
  bottom: 0rem;
}
.krds-tab-area .tab.line .btn-tab:before {
  height: 0.3rem;
}
.krds-tab-area .tab.line ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: var(--krds-gap-3);
  padding: 0 0.8rem;
  border-bottom: 1px solid var(--krds-light-color-border-gray-dark);
}
.krds-tab-area .tab.line ul li .btn-tab {
  font-size: 1.4rem;
  color: var(--krds-light-color-border-gray);
  font-weight: 500;
}
.krds-tab-area .tab.line ul li .btn-tab:not(:disabled):hover {
  background-color: transparent;
}
.krds-tab-area .tab.line ul li .btn-tab:focus {
  font-weight: bold;
  color: var(--krds-light-color-action-white);
}
.krds-tab-area .tab.line ul li .btn-tab:focus:before {
  position: absolute;
  bottom: 0;
  left: 0%;
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: var(--krds-tab--line-button-color-line-active);
}
.krds-tab-area .tab.line ul li:hover .btn-tab, .krds-tab-area .tab.line ul li.active .btn-tab {
  font-weight: bold;
  color: var(--krds-light-color-action-white);
}
.krds-tab-area .tab.line ul li:hover .btn-tab:before, .krds-tab-area .tab.line ul li.active .btn-tab:before {
  position: absolute;
  bottom: 0;
  left: 0%;
  content: "";
  width: 100%;
  height: 0.3rem;
  background-color: var(--krds-tab--line-button-color-line-active);
  transition: var(--krds-transition-base);
}
.krds-tab-area .tab.tablist_react {
  padding-bottom: 0.8rem;
}
.krds-tab-area .tab.tablist_react .tab_scroll {
  overflow-y: auto;
}
.krds-tab-area .tab.tablist_react ul {
  display: flex;
  flex-wrap: nowrap;
}
.krds-tab-area .tab.tablist_react ul li {
  width: 100%;
}
.krds-tab-area .tab.tablist_react ul li:not(:first-child) {
  border-left: 0.1rem solid var(--krds-high-contrast-color-surface-disabled);
}
.krds-tab-area .tab.tablist_react ul li .btn-tab {
  min-width: 92px;
  padding: 0 1rem;
  width: 100%;
  border-radius: 0;
}
.krds-tab-area .tab.fill ul li:first-of-type .btn-tab {
  border-radius: var(--krds-radius-medium3) 0 0 var(--krds-radius-medium3);
}
.krds-tab-area .tab.fill ul li:last-of-type .btn-tab {
  border-radius: 0 var(--krds-radius-medium3) var(--krds-radius-medium3) 0;
}
.krds-tab-area .tab.fill ul li:only-child .btn-tab {
  border-radius: var(--krds-radius-medium3);
}
.krds-tab-area .tab.fill ul li .btn-tab {
  height: 3.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--krds-light-color-border-gray);
  border: none;
  background-color: var(--krds-high-contrast-color-surface-gray-subtler);
}
.krds-tab-area .tab.fill ul li.active .btn-tab {
  color: var(--krds-light-color-text-basic-inverse);
  background-color: var(--krds-color-light-secondary-70);
  outline: 0 !important;
}
.krds-tab-area .tab.fill ul li:hover .btn-tab, .krds-tab-area .tab.fill ul li:active .btn-tab, .krds-tab-area .tab.fill ul li:focus .btn-tab {
  font-weight: bold;
  color: var(--krds-light-color-text-basic-inverse);
}
.krds-tab-area .tab-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.krds-tab-area .tab-inner .tab-conts-wrap {
  width: 100%;
  padding: 0;
}
.krds-tab-area .tab.fill .active .btn-tab {
  background-color: var(--krds-tab--fill-button-color-action-active);
  border-color: var(--krds-tab--fill-button-color-border-active) !important;
  color: var(--krds-tab--fill-button-color-text);
}
.krds-tab-area .tab-line-conts-wrap {
  width: 100%;
  padding-left: var(--krds-padding-6);
  margin-top: var(--krds-padding-5);
}
.krds-tab-area .tab-line-conts-wrap .tab-scroll {
  width: 100%;
  height: calc(100vh - 4.8rem - 4.5rem - 5.5rem);
  overflow-y: auto;
  padding-right: var(--krds-padding-6);
}
.krds-tab-area .tab-line-conts-wrap .tab-conts {
  width: 100%;
  margin-top: 0;
}
.krds-tab-area .tab-line-conts-wrap .tab-conts.col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.krds-tab-area .tab-line-conts-wrap .tab-conts.active {
  display: block;
}
.krds-tab-area .tab-line-conts-wrap .tab-conts .btn-wrap {
  padding-right: var(--krds-padding-6);
}

.map_sidebar_tabs {
  width: 100%;
}

/* krds-badge-wrap */
.krds-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.krds-badge-wrap.gap8 {
  gap: var(--krds-gap-3);
}
.krds-badge-wrap .krds-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.krds-badge-wrap .krds-badge.small {
  height: 2rem;
  border-radius: 10rem;
  padding: 0 var(--krds-padding-3);
}
.krds-badge-wrap .krds-badge {
  /* color */
}
.krds-badge-wrap .krds-badge.bg-secondary {
  background-color: var(--krds-color-light-secondary-70);
  font-size: var(--krds-pc-font-size-body-xsmall);
  font-weight: bold;
  color: var(--krds-light-color-text-basic-inverse);
}
.krds-badge-wrap .krds-badge.bg-disabled {
  background-color: var(--krds-light-color-text-disabled-on);
  font-size: var(--krds-pc-font-size-label-xsmall);
  color: var(--krds-light-color-text-basic-inverse);
}
.krds-badge-wrap .krds-badge.radius {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100rem;
}
.krds-badge-wrap .krds-badge.bg-success {
  background-color: var(--krds-color-light-success-40);
  color: var(--krds-badge--color-text-basic);
}
.krds-badge-wrap .label {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--krds-light-color-text-subtle-inverse);
}

/* structured */
.tab-scroll {
  width: 100%;
}
.tab-scroll.btn-bottom {
  padding-bottom: 5.4rem;
}

.structured-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.6rem;
}
.structured-item {
  width: 100%;
  padding: 0 1.2rem;
  background: var(--krds-high-contrast-color-surface-gray-subtle);
  border: 0.1rem solid var(--krds-high-contrast-color-surface-white-subtle);
  border-radius: var(--krds-radius-medium1);
}
.structured-item.active {
  background: var(--krds-high-contrast-color-surface-white-subtle);
  border: 0.1rem solid var(--krds-high-contrast-color-surface-white-subtle);
}
.structured-item.active .structured-title .krds-badge-wrap .label {
  color: var(--krds-light-color-text-basic-inverse);
}
.structured-item.active .structured-item-2D {
  visibility: visible;
  opacity: 1;
  display: block;
  background: var(--krds-high-contrast-color-divider-gray-light);
  border-radius: var(--krds-radius-medium1);
  padding: var(--krds-padding-3) var(--krds-padding-5);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--krds-padding-3);
}
.structured-item.active .structured-item-2D li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.6rem;
}
.structured-item.active .structured-item-2D li .tructured-2D-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.4rem;
}
.structured-item.active .structured-item-2D li .tructured-2D-header.is-open .st-box_btn {
  background: url("../images/common/ico/ico-box-minus.svg") no-repeat center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}
.structured-item.active .structured-item-2D li .tructured-2D-header .krds-form-check {
  height: 2rem;
  padding-top: 2px;
}
.structured-item.active .structured-item-2D li .tructured-2D-header.is-open + .structured_depth {
  display: block;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.6rem;
}
.structured-item.active .structured-item-2D .structured_depth {
  padding-left: 2rem;
  display: none;
}
.structured-item.active .structured-item-2D .st-box_btn {
  background: url("../images/common/ico/ico-box-pluse.svg") no-repeat center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}
.structured-item.active .structured-item-2D span {
  font-size: var(--krds-pc-font-size-body-xsmall);
  font-weight: 400;
  color: var(--krds-light-color-surface-white);
  text-justify: auto;
}
.structured-item.active .structured_btn {
  height: 1.6rem;
}
.structured-item.active .structured_btn::after {
  display: none;
}
.structured-item.active .structured_btn::before {
  content: "";
  background: url("../images/common/ico/ico-minus.svg") no-repeat center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}
.structured-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 3.6rem;
}
.structured-title.type-on {
  margin: var(--krds-padding-5) 0 0.6rem 0;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: var(--krds-gap-2);
}
.structured-title.type-on .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.structured-title.type-on .badge.small {
  width: 4rem;
  height: 2rem;
  border-radius: 10rem;
  padding: 0 var(--krds-padding-3);
}
.structured-title.type-on .badge.on {
  background-color: var(--krds-color-light-secondary-70);
  font-size: var(--krds-pc-font-size-body-xsmall);
  font-weight: bold;
  color: var(--krds-light-color-text-basic-inverse);
}
.structured-title.type-on .badge.on.icon {
  position: relative;
  margin-right: 16px;
}
.structured-title.type-on .badge.on.icon::after {
  content: "";
  background: url("../images/common/ico/ico-badge_on.svg") no-repeat center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  position: absolute;
  right: -1.6rem;
}
.structured-title.type-on .badge.off {
  background-color: var(--krds-light-color-text-disabled-on);
  font-size: var(--krds-pc-font-size-label-xsmall);
  color: var(--krds-light-color-text-basic-inverse);
}
.structured-title.type-on .badge.off.icon {
  position: relative;
  margin-right: 16px;
}
.structured-title.type-on .badge.off.icon::after {
  content: "";
  background: url("../images/common/ico/ico-badge_off.svg") no-repeat center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  position: absolute;
  right: -1.6rem;
}
.structured-title.type-on .car-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--krds-light-color-text-basic-inverse);
}
.structured-title.type-on .date {
  font-size: 1.2rem;
  white-space: nowrap;
  color: var(--krds-light-color-text-subtle-inverse);
}
.structured-sub-box .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: var(--krds-gap-3);
}
.structured-sub-box .row li {
  width: 100%;
}
.structured-sub-box .row li.structured-item-2D {
  padding: var(--krds-padding-2) var(--krds-padding-5);
  gap: var(--krds-gap-1);
  margin-bottom: var(--krds-padding-5);
}
.structured-sub-box .row li.structured-item-2D .sub-text {
  font-size: var(--krds-pc-font-size-body-xsmall);
  color: var(--krds-light-color-text-subtle-inverse);
}
.structured-sub-box .row li.structured-item-2D .car-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--krds-light-color-text-basic-inverse);
}
.structured_btn::after {
  content: "";
  background: url("../images/common/ico/ico-more.svg") no-repeat center;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
}
.structured_btn_more {
  margin-left: auto;
}
.structured_btn_more::after {
  content: "";
  background: url("../images/common/ico/ico-more_2.svg") no-repeat center;
  width: 2rem;
  height: 2rem;
  display: flex;
}
.structured-item-2D {
  visibility: hidden;
  opacity: 0;
  display: none;
}

/* font ============================== */
.nowrap {
  white-space: nowrap;
}

.text-wrap.row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.text-wrap.row .btn-wrap {
  margin-left: auto;
  width: auto;
}
.text-wrap.col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.text-wrap.gap12 {
  gap: var(--krds-gap-4);
}

/* size */
.label_xsmall {
  font-size: var(--krds-pc-font-size-label-xsmall);
}

.body_xsmall {
  font-size: var(--krds-pc-font-size-body-xsmall);
}

.head_xxsmall {
  font-size: var(--krds-pc-font-size-heading-xxsmall);
  color: var(--krds-light-color-text-basic-inverse);
}

/* color */
.gray10 {
  color: var(--krds-light-color-surface-gray-subtle);
}

.fff75 {
  color: var(--krds-light-color-alpha-base75);
}