@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@font-face {
  font-family: "Pretendard Variable";
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/PretendardVariable.woff2") format("woff2-variations");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
  unicode-range: U+AC00-D7A3, U+1100-11FF, U+3130-318F, U+A960-A97F, U+D7B0-D7FF;
}
:root {
  --font-family-primary:
    "Pretendard Variable", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, "Noto Sans", "Noto Sans KR", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-mono: "Fira Code", "Consolas", "Monaco", "Courier New", monospace;
}

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2f38;
  background-color: #ffffff;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background-color: #ed1438;
  color: #ffffff;
}

::-moz-selection {
  background-color: #ed1438;
  color: #ffffff;
}

:focus {
  outline: 2px solid #0075ff;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid #0075ff;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f6f7f9;
}

::-webkit-scrollbar-thumb {
  background: #d5d7db;
  border-radius: 0.6rem;
}
::-webkit-scrollbar-thumb:hover {
  background: #aaadb2;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #d5d7db #f6f7f9;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.is-hidden {
  display: none !important;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /**
   * 프로젝트 기준: 1rem = 10px
   */
  font-size: 10px;
  line-height: 1.15;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-text-size-adjust: 100%;
}
@supports (overflow-x: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  background-color: var(--color-bg-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 150ms ease;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

fieldset {
  min-width: 0;
  border: 0;
}

legend {
  padding: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}

button {
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

::placeholder {
  color: var(--color-text-tertiary);
  opacity: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-text-primary);
  -webkit-box-shadow: 0 0 0 1000px var(--color-bg-primary) inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th {
  text-align: left;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--color-border-default);
  margin: 2.4rem 0;
}

code,
kbd,
samp,
pre {
  font-family: var(--font-family-mono);
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * 모바일 스크롤 동작 제어
 *
 * 전략:
 * 1. 기본적으로 바운스 스크롤 방지
 * 2. 특정 영역만 스크롤 허용
 * 3. 모달/드래그 시 body 스크롤 잠금
 */
[data-filter=root] [data-list],
[data-filter=root] [data-chip],
[data-scroll=panel] {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

html[data-scroll-lock=on],
body[data-scroll-lock=on] {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

[data-slider],
[data-thumb] {
  touch-action: pan-y;
}

/**
 * iOS Safari 주소창 문제 해결
 *
 * 문제: 100vh가 주소창 높이를 포함하여 계산됨
 * 해결: JavaScript로 실제 뷰포트 높이 계산 후 CSS 변수에 저장
 *
 * JavaScript:
 * const setVH = () => {
 *   const vh = window.innerHeight * 0.01;
 *   document.documentElement.style.setProperty('--vh', `${vh}px`);
 * };
 * setVH();
 * window.addEventListener('resize', setVH);
 */
:root {
  --vh: 1vh;
}

[data-viewport=full] {
  height: calc(var(--vh, 1vh) * 100);
  min-height: -webkit-fill-available;
}

*[data-ui] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: max(16px, 1em);
  }
}
::selection {
  background-color: rgba(237, 20, 56, 0.2);
  color: var(--color-text-primary);
}

::-moz-selection {
  background-color: rgba(237, 20, 56, 0.2);
  color: var(--color-text-primary);
}

/**
 * 키보드 포커스만 표시 (마우스 클릭 시 제거)
 *
 * :focus-visible을 사용하면 브라우저가 자동으로
 * 키보드 네비게이션 시에만 포커스 링을 표시
 */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-border-focus);
  outline-offset: 2px;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  img,
  tr,
  table,
  thead,
  tbody,
  tfoot {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2f38;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.6rem 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

h6 {
  font-weight: 600;
}

p {
  margin: 0 0 1.6rem 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text-body);
}
p:last-child {
  margin-bottom: 0;
}

.lead,
.u-lead {
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

small,
.small {
  font-size: 1.3rem;
}

a {
  color: var(--color-interactive-default);
  text-decoration: none;
  transition: all 150ms ease;
}
a:hover {
  color: var(--color-interactive-hover);
  text-decoration: underline;
}
a:focus-visible {
  outline: 2px solid var(--color-border-focus);
  outline-offset: 2px;
  border-radius: 0.6rem;
}

ul,
ol {
  margin: 0 0 1.6rem 0;
  padding-left: 2.4rem;
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
ul li,
ol li {
  margin-bottom: 0.4rem;
  line-height: 1.75;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

.list-unstyled li,
.u-list-unstyled li {
  margin-bottom: 0;
}

.list-inline,
.u-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

mark {
  padding: 0.125rem 0.25rem;
  background-color: #ffe7ab;
  color: var(--color-text-primary);
}

del {
  text-decoration: line-through;
  color: var(--color-text-tertiary);
}

ins {
  text-decoration: underline;
  color: var(--color-text-primary);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

code,
kbd,
samp {
  font-family: "Fira Code", "Consolas", monospace;
  font-size: 0.875em;
  padding: 0.125rem 0.375rem;
  background-color: #f6f7f9;
  border-radius: 0.6rem;
  color: var(--color-text-primary);
}

pre {
  margin: 0 0 1.6rem 0;
  padding: 1.6rem;
  overflow-x: auto;
  background-color: #f6f7f9;
  border-radius: 0.8rem;
}
pre code {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

blockquote {
  margin: 0 0 2.4rem 0;
  padding: 1.6rem 2.4rem;
  border-left: 4px solid var(--color-primary);
  background-color: #f6f7f9;
  font-style: italic;
  color: var(--color-text-secondary);
}
blockquote p {
  margin-bottom: 0.8rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote cite {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  font-style: normal;
  color: var(--color-text-tertiary);
}
blockquote footer::before,
blockquote cite::before {
  content: "— ";
}

hr {
  margin: 2.4rem 0;
  border: 0;
  border-top: 1px solid var(--color-border-default);
}

::selection {
  background-color: rgba(237, 20, 56, 0.2);
  color: var(--color-text-primary);
}

::-moz-selection {
  background-color: rgba(237, 20, 56, 0.2);
  color: var(--color-text-primary);
}

@media print {
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 20pt;
  }
  h3 {
    font-size: 16pt;
  }
  h4 {
    font-size: 14pt;
  }
  h5 {
    font-size: 12pt;
  }
  h6 {
    font-size: 12pt;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }
  code,
  pre {
    border: 1px solid #999;
  }
  blockquote {
    border-left: 4px solid #999;
  }
}
.site-header {
  padding-top: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  transition: all 150ms ease;
}
.site-header .header-logo {
  margin: 0;
  flex-shrink: 0;
}
.site-header .header-logo .logo-link {
  display: block;
  line-height: 1;
}
.site-header .header-logo .logo-link svg {
  display: block;
  width: 7.4rem;
  height: auto;
}

.header-container {
  border-bottom: 1px solid #edeff2;
}
.header-container .header-inner {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.2rem;
}

.header-nav {
  flex: 1;
  margin: 0 4rem;
}
@media (max-width: 767.98px) {
  .header-nav {
    display: none;
  }
}
.header-nav .nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.header-nav .nav-item {
  position: relative;
  margin: 0;
}
.header-nav .nav-item:hover .nav-dropdown {
  display: flex;
}
.header-nav .nav-link {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2f38;
  text-decoration: none;
  padding: 1.5rem 0;
  display: block;
  transition: all 150ms ease;
}
.header-nav .nav-link:hover {
  color: #2a2f38;
}
.header-nav .nav-dropdown {
  display: none;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  top: 101%;
  left: -1.6rem;
  min-width: 14rem;
  background-color: #ffffff;
  border-radius: 0 0 0.8rem 0.8rem;
  transition: all 150ms ease-out;
  z-index: 101;
  padding: 1.6rem 0 2.4rem;
  margin: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.header-nav .nav-dropdown li {
  margin: 0;
  line-height: 0;
}
.header-nav .nav-dropdown li .num {
  display: inline-block;
  font-weight: 500;
  margin-right: 0.2rem;
}
.header-nav .nav-dropdown li:hover .nav-dropdown-link {
  color: #ed1438;
  font-weight: 600;
}
.header-nav .nav-dropdown-link {
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
  color: #2a2f38;
  text-decoration: none;
  line-height: 1.4;
  padding: 0 1.6rem;
  transition: all 150ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header-link {
  font-size: 1.4rem;
  color: #2a2f38;
  text-decoration: none;
  transition: all 150ms ease;
}
.header-link:hover {
  text-decoration: none;
}

.header-divider {
  color: #d5d7db;
}

.mobile-header-row2 button.is-active,
.mobile-header-row2 a.is-active,
.submenu-row button.is-active,
.submenu-row a.is-active {
  font-weight: 700;
  color: #2a2f38;
}
.mobile-header-row2 button.is-active::before,
.mobile-header-row2 a.is-active::before,
.submenu-row button.is-active::before,
.submenu-row a.is-active::before {
  content: "";
  position: absolute;
  display: block;
  background: #2a2f38;
  height: 0.2rem;
  width: 100%;
  bottom: 0;
}

.mobile-header-row2 {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-header-row2 {
    display: block;
    background-color: #ffffff;
  }
}

.submenu-row {
  /*  max-height: 0;
  overflow: hidden;*/
  background-color: #ffffff;
  transition: max-height 150ms ease-out;
  display: none;
  position: relative;
  letter-spacing: -0.01em;
}
.submenu-row .submenu-inner {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .submenu-row .submenu-inner {
    display: block;
    background-color: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .submenu-row {
    display: block;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 767.98px) {
  .submenu-row {
    display: flex;
    justify-content: end;
  }
}
.submenu-row {
  /* @include respond-to("lg") {
    display: none;
  }*/
}
.submenu-row:hover {
  max-height: 50rem;
}
.submenu-row:has(.submenu-list.is-active) {
  max-height: 50rem;
}

.submenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
@media (max-width: 767.98px) {
  .submenu-list {
    gap: 0.8rem;
  }
}
.submenu-list.is-active {
  margin-top: 0;
  width: 100%;
  flex-wrap: nowrap;
}
.submenu-list li {
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
}

.submenu-link {
  display: inline-block;
  transition: all 150ms ease;
  position: relative;
  line-height: 1.4rem;
  padding: 1.1rem 0;
  font-weight: 500;
  text-decoration: none;
  color: #aaadb2;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .submenu-link {
    padding: 1.4rem 0;
  }
}
.submenu-link .num {
  display: inline-block;
  font-weight: 500;
}
.submenu-link:hover {
  text-decoration: none;
  font-weight: 700;
  color: #2a2f38;
}
.submenu-link:hover::before {
  content: "";
  position: absolute;
  display: block;
  background: #2a2f38;
  height: 0.2rem;
  width: 100%;
  bottom: 0;
}

.mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  min-width: min-content;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-nav-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-nav-list {
    justify-content: space-between;
    gap: 0;
  }
}

.mobile-nav-item {
  flex-shrink: 0;
  margin: 0;
}
.mobile-nav-item .mobile-nav-button {
  transition: all 150ms ease;
}
.mobile-nav-item .mobile-nav-button:hover {
  font-weight: 700;
  color: #2a2f38;
}
.mobile-nav-item .mobile-nav-button:hover::before {
  content: "";
  position: absolute;
  display: block;
  background: #2a2f38;
  height: 0.2rem;
  width: 100%;
  bottom: 0;
}
.mobile-nav-item .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-nav-button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.mobile-nav-button:focus {
  outline: none;
}
.mobile-nav-button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: #2a2f38;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: all 150ms ease;
  cursor: pointer;
  position: relative;
  padding: 1.2rem 0;
}
.mobile-nav-button[aria-expanded=true] {
  color: #ed1438;
}
.mobile-nav-button[aria-expanded=true] .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-nav-arrow {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  transition: transform 150ms ease-out;
}
.mobile-nav-arrow path {
  stroke: currentColor;
}

.hamburger-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.hamburger-btn:focus {
  outline: none;
}
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.4rem;
  height: 2rem;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}
.hamburger-btn .hamburger-line {
  width: 100%;
  height: 0.2rem;
  background-color: #2a2f38;
  border-radius: 0.4rem;
  transition: all 150ms ease;
}
.hamburger-btn:hover .hamburger-line {
  background-color: #ed1438;
}
.hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 102;
  visibility: hidden;
  transition: visibility 0s linear 300ms;
}
.mobile-menu.active {
  visibility: visible;
  transition-delay: 0s;
}
.mobile-menu.active .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 300ms ease-out;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32.7rem;
  max-width: 85vw;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 300ms ease-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
}

.mobile-menu-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}

.mobile-menu-close {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.mobile-menu-close:focus {
  outline: none;
}
.mobile-menu-close {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.mobile-menu-close {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2f38;
  transition: all 150ms ease;
}
.mobile-menu-close:hover {
  color: #ed1438;
}
.mobile-menu-close svg {
  width: 2.4rem;
  height: 2.4rem;
}

.mobile-menu-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0;
  margin: 0 2.4rem;
  border-radius: 0.8rem;
  background-color: #f6f7f9;
}
.mobile-menu-auth .auth-tab {
  display: flex;
  flex: 1 0 0;
  justify-content: center;
  font-size: 1.4rem;
  color: #696e77;
  text-decoration: none;
  transition: all 150ms ease;
  position: relative;
}
.mobile-menu-auth .auth-tab:first-child::after {
  position: absolute;
  right: 0;
  content: "|";
  color: #bdbdbf;
}
.mobile-menu-auth .auth-tab:hover {
  color: #ed1438;
}
.mobile-menu-auth .auth-divider {
  color: #d5d7db;
}

.mobile-menu-nav {
  padding: 2.4rem;
}
.mobile-menu-nav .menu-section .menu-section-title {
  border-top: 1px solid #e9e9e9;
  padding-top: 2rem;
  margin: 0;
}
.mobile-menu-nav .menu-section:first-child .menu-section-title {
  border-top: none;
  padding-top: 0;
}

.menu-section {
  /* & + & {
    margin-top: $spacing-xl; // 40px
  }*/
}

.menu-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2f38;
  padding-bottom: 1.6rem;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 1.6rem;
  color: #2a2f38;
  text-decoration: none;
  transition: all 150ms ease;
}
.menu-item:hover {
  color: #ed1438;
  text-decoration: none;
}
.menu-item:hover .menu-item-arrow {
  transform: translateX(4px);
}
.menu-item {
  /*& + & {
    border-top: 1px solid $color-border-subtle;
  }*/
}

.menu-item-text {
  font-size: 1.4rem;
  flex: 1;
}

.menu-item-arrow {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: #000714;
  transition: transform 150ms ease-out;
}
.menu-item-arrow path {
  stroke: currentColor;
}

footer {
  color: #e9e9e9;
  background-color: #2a2f38;
}
footer .footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer__header button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f0f2f5;
  width: 3.2rem;
  height: 3.2rem;
}
footer .container {
  padding-top: 3.2rem;
  padding-bottom: 6rem;
}
footer .footer__content {
  margin-top: 2.4rem;
}
footer .footer__content ul {
  width: 80%;
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
}
footer .footer__content ul li {
  margin: 0;
}
footer .footer__footer {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  margin-top: 2.4rem;
}
footer .footer__footer .bottons {
  display: flex;
  gap: 0.8rem;
}
footer .footer__footer button {
  background-color: #696e77;
  padding: 1.5rem 1.2rem;
  border-radius: 0.4rem;
}
footer .footer__footer a {
  display: flex;
  gap: 0.4rem;
}
footer .footer__footer i {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  footer .footer__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.layer-popup {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 150ms, opacity 150ms ease-out;
}
.layer-popup.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.layer-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.layer-popup__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  width: 90%;
  max-width: 80rem;
  max-height: 90vh;
  background-color: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease-out;
}
@media (max-width: 767.98px) {
  .layer-popup__panel {
    width: 95%;
    max-width: none;
    max-height: 95vh;
  }
}
.layer-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem;
  border-bottom: 1px solid #e9e9e9;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .layer-popup__header {
    padding: 1.6rem 2.4rem;
  }
}
.layer-popup__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}
@media (max-width: 767.98px) {
  .layer-popup__title {
    font-size: 1.8rem;
  }
}
.layer-popup__close {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.layer-popup__close:focus {
  outline: none;
}
.layer-popup__close {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.layer-popup__close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.layer-popup__close {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2f38;
  transition: all 150ms ease;
}
.layer-popup__close:hover {
  color: #ed1438;
}
.layer-popup__close svg {
  width: 2.4rem;
  height: 2.4rem;
}
.layer-popup__content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.layer-popup__text {
  padding: 0 4rem 4rem;
  color: #aaadb2;
}
@media (max-width: 767.98px) {
  .layer-popup__text {
    padding: 2.4rem;
  }
}
.layer-popup__text p:first-child,
.layer-popup__text h4:first-child {
  margin-top: 0;
}
.layer-popup__text h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2f38;
  margin-top: 4rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 767.98px) {
  .layer-popup__text h4 {
    font-size: 1.8rem;
  }
}
.layer-popup__text p {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .layer-popup__text p {
    font-size: 1.3rem;
  }
}
.layer-popup__text p:last-child {
  margin-bottom: 0;
}
.layer-popup__text p.title {
  font-weight: 600;
  color: #2a2f38;
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}
.layer-popup__text a {
  color: #ed1438;
  text-decoration: underline;
}
.layer-popup__text a:hover {
  text-decoration: none;
}
.layer-popup__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
}
.layer-popup__text table th {
  background-color: #f0f2f5;
  font-weight: 600;
  color: #2a2f38;
}
.layer-popup__text table th,
.layer-popup__text table td {
  padding: 0.8rem;
  text-align: left;
  border: 1px solid #d5d7db;
  font-size: 1.3rem;
  color: #2a2f38;
  word-break: break-all;
}
@media (max-width: 767.98px) {
  .layer-popup__text table th,
  .layer-popup__text table td {
    padding: 0.4rem;
    font-size: 1.2rem;
  }
}

/*
  공통 style
*/
.page-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
  margin-top: 4rem;
}
@media (max-width: 767.98px) {
  .page-titlebar {
    align-items: end;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .page-titlebar .mobile-select {
    width: fit-content;
  }
  .page-titlebar .mobile-select .select-field--small {
    text-align: right;
    padding: 0 1.5rem 0 0;
    height: 2.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: #696e77;
    background-color: transparent;
    border: none;
    border-radius: 0.4rem;
    transition: all 150ms ease;
    outline: none;
    cursor: pointer;
    appearance: none;
  }
  .page-titlebar .mobile-select::after {
    right: 0;
  }
}

.page-titlebar__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .page-titlebar__title {
    font-size: 2rem;
  }
}

.page-titlebar__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #aaadb2;
}
@media (max-width: 767.98px) {
  .page-titlebar__breadcrumb {
    display: none;
  }
}
.page-titlebar__breadcrumb .primary {
  color: #2a2f38;
}
.page-titlebar__breadcrumb a {
  color: #aaadb2;
  text-decoration: none;
  transition: all 150ms ease;
}
.page-titlebar__breadcrumb a:hover {
  color: #ed1438;
}
.page-titlebar__breadcrumb .is-gird-show {
  display: grid;
}
.page-titlebar__breadcrumb .is-hidden {
  display: none;
}
.page-titlebar__breadcrumb {
  /*span:not(a) {
    color: $color-text-tertiary;
  }*/
}

.text-left {
  text-align: left !important;
}

.btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.btn:focus {
  outline: none;
}
.btn {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  transition: all 150ms ease;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.btn:focus-visible:focus-visible {
  outline: 2px solid #0075ff;
  outline-offset: 2px;
}
.btn:disabled {
  cursor: not-allowed;
  color: #aaadb2;
  background-color: #edeff2;
  border-color: #d5d7db;
  opacity: 1;
}

/* 기본 버튼 */
.btn-styled-default {
  font-weight: 600;
  border-radius: 0.6rem;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
}

.vehicle-interest-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.vehicle-interest-btn:focus {
  outline: none;
}
.vehicle-interest-btn {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.vehicle-interest-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.vehicle-interest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 150ms ease;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.vehicle-interest-btn.active {
  background-color: #edeff2;
  color: #bdbdbf;
  border: 1px solid #d5d7db;
}
.vehicle-interest-btn:focus-visible:focus-visible {
  outline: 2px solid #0075ff;
  outline-offset: 2px;
}
.vehicle-interest-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/*=============================================================================
===============================================================================
===============================================================================*/
.red_num {
  color: #ed1438;
}

@media (max-width: 767.98px) {
  .mobile_search_button {
    padding: 1.6rem;
    background-color: #2a2f38;
    border-radius: 9999px;
    transition: bottom 0.2s ease;
    right: -1rem;
  }
}

.btn--primary {
  background-color: #ed1438;
  color: #ffffff;
  font-weight: 600;
  border: none !important;
}
.btn--secondary {
  background-color: transparent;
  color: #ed1438;
  border: 1px solid #ed1438;
}
.btn--secondary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn--tertiary {
  background-color: #f0f2f5;
  color: #2a2f38;
}
.btn--tertiary:active:not(:disabled) {
  transform: translateY(1px);
}

.btn--fourth {
  background-color: #2a2f38;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn--fourth:active:not(:disabled) {
  transform: translateY(1px);
}

.btn--fifth {
  background-color: transparent;
  color: #aaadb2;
  padding: 0;
}
.btn--fifth:active:not(:disabled) {
  transform: scale(0.98);
}

.btn--large {
  height: 6rem;
  padding: 0 4rem;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  line-height: 1.5;
}

.btn--medium {
  height: 4.8rem;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  line-height: 1.5;
}

.btn--small {
  height: 3.2rem;
  padding: 0 1.2rem;
  font-size: 1.3rem;
  border-radius: 0.6rem;
  line-height: 1.5;
}

.btn--block {
  width: 100%;
  display: flex;
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn--icon .btn__icon {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.btn--icon-only {
  padding: 0;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
}
.btn--icon-only.btn--large {
  width: 6rem;
  height: 6rem;
}
.btn--icon-only.btn--small {
  width: 3.6rem;
  height: 3.6rem;
}
.btn--icon-only .btn__icon {
  width: 2rem;
  height: 2rem;
}

.btn--loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 50%;
  left: 50%;
  margin-left: -0.8rem;
  margin-top: -0.8rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
  gap: 1.2rem;
}
.btn-group--vertical {
  flex-direction: column;
}
.btn-group--block {
  display: flex;
  width: 100%;
}
.btn-group--block .btn {
  flex: 1;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox input[type=checkbox]:checked + .checkbox__control {
  border-color: #d11938;
  background-color: #d11938;
}
.checkbox input[type=checkbox]:checked + .checkbox__control::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}
.checkbox input[type=checkbox]:disabled + .checkbox__control {
  border-color: #dfe0e3;
  background-color: #dfe0e3;
  cursor: not-allowed;
  /*&::after {
    border-color: map.get($gray-shades, "04");
  }*/
}
.checkbox input[type=checkbox]:disabled ~ .checkbox__label {
  color: #80858b;
  cursor: not-allowed;
}
.checkbox input[type=checkbox]:focus-visible + .checkbox__control {
  outline: 2px solid #ed1438;
  outline-offset: 2px;
}

.checkbox__control {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0.15rem solid #bdbdbf;
  border-radius: 0.4rem;
  background-color: #ffffff;
  transition: all 100ms ease-out;
  flex-shrink: 0;
}
.checkbox:hover input[type=checkbox]:not(:disabled) + .checkbox__control {
  border-color: #bdbdbf;
}
.checkbox__control::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 1rem;
  border: solid #ffffff;
  border-width: 0 0.2rem 0.2rem 0;
  opacity: 0;
  transform: scale(0) rotate(45deg);
  bottom: 0.6rem;
  transition: all 100ms ease-out;
}

.checkbox__label {
  font-size: 1.4rem;
  color: #2a2f38;
  margin-left: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color 100ms ease-out;
}
.checkbox:hover .checkbox__label {
  color: #2a2f38;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.checkbox-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.checkbox-group__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  margin-bottom: 0.8rem;
  display: block;
}

.checkbox input[type=checkbox]:indeterminate + .checkbox__control {
  border-color: #ed1438;
  background-color: #ed1438;
}
.checkbox input[type=checkbox]:indeterminate + .checkbox__control::after {
  width: 1rem;
  height: 0;
  border: none;
  border-bottom: 0.2rem solid #ffffff;
  opacity: 1;
  transform: scale(1) rotate(0);
}

.c-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
}
.c-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
}
.c-icon--xs {
  width: 1.2rem;
  height: 1.2rem;
  font-size: 1.2rem;
}
.c-icon--sm {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 1.6rem;
}
.c-icon--md {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}
.c-icon--lg {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 2.4rem;
}
.c-icon--xl {
  width: 3.2rem;
  height: 3.2rem;
  font-size: 3.2rem;
}

svg.c-icon {
  display: inline-flex;
  vertical-align: middle;
  fill: currentColor;
}
svg.c-icon use {
  pointer-events: none;
}

.c-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.c-icon-text--reverse {
  flex-direction: row-reverse;
}
.c-icon-text--vertical {
  flex-direction: column;
  text-align: center;
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.c-icon--spin {
  animation: icon-spin 1s linear infinite;
}

@keyframes icon-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.c-icon--pulse {
  animation: icon-pulse 2s ease-in-out infinite;
}

.c-icon--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.c-icon--clickable {
  cursor: pointer;
  transition: all 150ms ease;
}
.c-icon--clickable:hover {
  transform: scale(1.1);
}
.c-icon--clickable:active {
  transform: scale(0.95);
}

.c-icon--primary {
  color: #ed1438 !important;
}

.c-icon--success {
  color: #0075ff !important;
}

.c-icon--warning {
  color: #ffaa00 !important;
}

.c-icon--error {
  color: #ff2700 !important;
}

.c-icon--info {
  color: #0075ff !important;
}

.c-icon--muted {
  color: #000714 !important;
}

.c-icon--inverse {
  color: #ffffff !important;
}

.input-group {
  width: 100%;
}
.input-group .input-error-message {
  margin-top: 0.8rem;
}

.input-wrapper {
  position: relative;
  width: 100%;
}
.input-wrapper .input-icon {
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  pointer-events: none;
  z-index: 1;
  display: block;
  color: #2a2f38;
}
.input-wrapper .input-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.input-wrapper .input-icon use {
  fill: currentColor;
}

.input-field {
  width: 100%;
  height: 4.8rem;
  padding: 1.6rem 4.2rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  transition: all 150ms ease;
  outline: 0.4rem;
}
.input-field::placeholder {
  color: #aaadb2;
  font-weight: 400;
}
.input-field:focus {
  border-color: #000714;
  background-color: #ffffff;
}
.input-field:focus::placeholder {
  color: transparent;
}
.input-field:disabled {
  background-color: #edeff2;
  color: #80858b;
  cursor: not-allowed;
  border-color: #d5d7db;
  opacity: 1;
}
.input-field.error, .has-error .input-field {
  border-color: #ff2700;
  background-color: #ffffff;
}
.input-field.error:focus, .has-error .input-field:focus {
  border-color: #ff2700;
}

.input-error-message {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ff2700;
  line-height: 1.4;
}
.has-error .input-error-message {
  display: block;
}

.input-field--large {
  height: 3.75rem;
}

.input-field--medium {
  height: 3rem;
  padding: 0.8rem 3rem;
}

.input-field--small {
  height: 2.5rem;
  padding: 0.4rem 2.5rem;
  font-size: 1.4rem;
}

.input-wrapper--no-icon .input-field {
  padding-left: 1.6rem;
}

.input-clearable {
  position: relative;
  width: 100%;
}
.input-clearable .input-field {
  width: 100%;
  padding-right: 4rem;
}
.input-clearable__btn {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.input-clearable__btn:hover {
  opacity: 0.8;
}
.input-clearable__btn svg {
  width: 1.6rem;
  height: 1.6rem;
}

.input-wrapper--icon-right .input-icon-right {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 1;
}
.input-wrapper--icon-right .input-icon-right svg {
  width: 100%;
  height: 100%;
  fill: #000714;
}
.input-wrapper--icon-right .input-icon-right svg path {
  fill: #000714;
}
.input-wrapper--icon-right .input-icon-right:hover svg, .input-wrapper--icon-right .input-icon-right:hover svg path {
  fill: #aaadb2;
}
.input-wrapper--icon-right .input-field {
  padding-right: 3.5rem;
}

.upload-field {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.upload-field__label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.upload-field__label .required {
  color: red;
}
.upload-field__box {
  border: 1px solid red;
  border-radius: 1.2rem;
  background-color: #f6f7f9;
  padding: 1.6rem;
}
.upload-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid red;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
.upload-field__title {
  font-weight: 500;
}
.upload-field__count {
  color: #aaadb2;
  font-size: 0.9em;
}
.upload-field__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.upload-field__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
}
.upload-field__filename {
  flex: 1;
  font-size: 0.95rem;
  color: #2a2f38;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-field__delete {
  background: none;
  border: none;
  color: #aaadb2;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.upload-field__delete:hover {
  color: red;
}
.upload-field__notice {
  font-size: 0.85rem;
  color: #aaadb2;
}
.upload-field__notice p {
  margin: 0;
  line-height: 1.4;
}

.radio {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio input[type=radio]:checked + .radio__control {
  border-color: #d11938;
  background-color: #ffffff;
}
.radio input[type=radio]:checked + .radio__control::after {
  opacity: 1;
  transform: scale(1);
}
.radio input[type=radio]:disabled + .radio__control {
  border-color: #bdbdbf;
  background-color: #f0f2f5;
  cursor: not-allowed;
}
.radio input[type=radio]:disabled + .radio__control::after {
  background-color: #e9e9e9;
}
.radio input[type=radio]:disabled ~ .radio__label {
  color: #80858b;
  cursor: not-allowed;
}
.radio input[type=radio]:focus-visible + .radio__control {
  outline: 2px solid #ed1438;
  outline-offset: 2px;
}

.radio__control {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0.15rem solid #bdbdbf;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 100ms ease-out;
  flex-shrink: 0;
}
.radio:hover input[type=radio]:not(:disabled) + .radio__control {
  background-color: #ffffff;
}
.radio__control::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #d11938;
  opacity: 0;
  transform: scale(0);
  transition: all 100ms ease-out;
}
.radio__control::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #d5d7db;
  opacity: 1;
  transform: scale(1);
  transition: all 100ms ease-out;
}

.radio__label {
  font-size: 1.4rem;
  color: #2a2f38;
  margin-left: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
  transition: color 100ms ease-out;
}
.radio:hover .radio__label {
  color: #2a2f38;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.4rem;
}

.radio-group__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  margin-bottom: 0.8rem;
  display: block;
}

.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4L6 8L2 4' stroke='%23000714' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  transition: all 150ms ease;
}
.select-wrapper.is-open::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8L6 4L2 8' stroke='%23000714' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.select-wrapper.select-wrapper--disabled::after {
  opacity: 0.4;
}

.select-field {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  transition: all 150ms ease;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.select-field:focus {
  border-color: #000714;
  background-color: #ffffff;
}
.select-field:hover:not(:disabled) {
  border-color: #80858b;
}
.select-field:disabled {
  background-color: #f6f7f9;
  color: #80858b;
  cursor: not-allowed;
  border-color: #e9e9e9;
}
.select-field option[value=""] {
  color: #80858b;
}

.select-field--large {
  height: 6rem;
  font-size: 1.6rem;
}

.select-field--medium {
  height: 4.8rem;
}

.select-field--small {
  height: 3.6rem;
  padding: 0.4rem 3rem 0.4rem 0.8rem;
  font-size: 1.3rem;
}

.select-group {
  width: 100%;
}
.select-group .select-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2a2f38;
  line-height: 1.4;
}
.select-group .select-error-message {
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ff2700;
  line-height: 1.4;
  display: none;
}
.select-group.has-error .select-field {
  border-color: #ff2700;
}
.select-group.has-error .select-field:focus {
  border-color: #ff2700;
}
.select-group.has-error .select-error-message {
  display: block;
}

.textarea-field {
  width: 100%;
  position: relative;
}
.textarea-field__wrapper {
  position: relative;
}
.textarea-field__wrapper .textarea-field__footer {
  right: 0;
  bottom: 5px;
}
.textarea-field__styled {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 14px 16px;
  border-radius: 0.4rem;
  border: 1px solid #d5d7db;
  background: var(--bg);
  font-size: 1.3rem;
  color: #2a2f38;
  outline: none;
  line-height: 1.4;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
  caret-color: var(--border-focus);
}
.textarea-field__styled::placeholder {
  color: #aaadb2;
}
.textarea-field__styled:focus {
  /* todo 나중에 추가 */
}
.textarea-field__footer {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 12px 16px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.textarea-field__footer--counter {
  font-size: 12px;
  color: #aaadb2;
  min-width: 72px;
  text-align: right;
}
.textarea-field:focus-visible:focus-visible {
  outline: 2px solid #0075ff;
  outline-offset: 2px;
}
.textarea-field:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.textarea-field.has-error .textarea-field__styled {
  border-color: #ff2700;
}
.textarea-field.has-error .textarea-field__error {
  display: block;
}
.textarea-field__error {
  display: none;
  color: #ff2700;
  font-size: 1.3rem;
  font-weight: 400;
}

.info_msg {
  color: #0075ff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
}

.info-list {
  margin: 0;
  padding: 0;
  color: #0075ff;
  font-size: 1.3rem;
}
.info-list > li {
  margin: 0;
  line-height: 1.4;
}
.info-list > li:before {
  display: inline-block;
  margin-right: 0.4rem;
  content: "-";
}

.no-search-results {
  font-size: 1.3rem;
  text-align: center;
}

.red-info {
  color: #ed1438;
}

.fail_msg {
  color: #ff2700;
  font-size: 1.4rem;
  font-weight: 600;
}

.search-not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 32px 0 52px;
  border-bottom: 1px solid #dfe0e3;
}

.search-not-found .text {
  font-size: 1.6rem;
  color: #696e77;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}

.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.search-popup.is-active {
  display: block;
  pointer-events: all;
}
.search-popup .popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 20, 0.5);
  backdrop-filter: blur(4px);
}
.search-popup .popup__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 95vh;
  background-color: #ffffff;
  border-radius: 1.6rem 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.search-popup .popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid #d5d7db;
}
.search-popup .popup__header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2f38;
  line-height: 1.2;
  margin: 0;
}
.search-popup .popup__header__close {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.search-popup .popup__header__close:focus {
  outline: none;
}
.search-popup .popup__header__close {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.search-popup .popup__header__close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.search-popup .popup__header__close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2f38;
  transition: all 150ms ease;
}
.search-popup .popup__header__close:hover {
  color: #ed1438;
}
.search-popup .popup__header__close svg {
  width: 2.4rem;
  height: 2.4rem;
}
.search-popup .popup__body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.search-popup .popup__body__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.search-popup .popup__body__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.search-popup .popup__body__group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.search-popup .popup__body__group .select-wrapper {
  flex: 1;
}
.search-popup .popup__body__separator {
  font-size: 1.4rem;
  color: #aaadb2;
  flex-shrink: 0;
}
.search-popup .popup__body .checkbox-items {
  display: grid;
  margin: 1.6rem 0 1rem;
  grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
}
.search-popup .popup__footer {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  border-top: 1px solid #d5d7db;
}
.search-popup .popup__footer--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
}
.search-popup .reset {
  flex: 1;
  max-width: 4.8rem;
  max-height: 4.8rem;
  background-color: #f0f2f5;
}
.search-popup .interest {
  flex: 4;
  color: #d11938;
  border: 1px solid #ed1438;
  font-weight: 700;
}
.search-popup .search {
  flex: 4;
  color: #ffffff;
  border-color: #ed1438;
  background: #ed1438;
}

.tobid-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.tobid-search-popup.is-active {
  display: block;
  pointer-events: all;
}
.tobid-search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 20, 0.5);
  backdrop-filter: blur(4px);
}
.tobid-search-popup__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  max-height: 95vh;
  background-color: #ffffff;
  border-radius: 1.6rem 1.6rem 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tobid-search-popup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid #d5d7db;
}
.tobid-search-popup__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2f38;
  line-height: 1.2;
  margin: 0;
}
.tobid-search-popup__close {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.tobid-search-popup__close:focus {
  outline: none;
}
.tobid-search-popup__close {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tobid-search-popup__close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.tobid-search-popup__close {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2f38;
  transition: all 150ms ease;
}
.tobid-search-popup__close:hover {
  color: #ed1438;
}
.tobid-search-popup__close svg {
  width: 2.4rem;
  height: 2.4rem;
}
.tobid-search-popup__body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tobid-search-popup__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tobid-search-popup__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.tobid-search-popup__group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.tobid-search-popup__group .select-wrapper {
  flex: 1;
}
.tobid-search-popup__separator {
  font-size: 1.4rem;
  color: #aaadb2;
  flex-shrink: 0;
}
.tobid-search-popup__footer {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  padding: 1.2rem 1.6rem;
  border-top: 1px solid #d5d7db;
}
.tobid-search-popup__footer--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  border-radius: 0.6rem;
  font-size: 1.4rem;
}
.tobid-search-popup .reset {
  flex: 1;
  background-color: #f0f2f5;
}
.tobid-search-popup .interest {
  flex: 4;
  color: #d11938;
  border: 1px solid #ed1438;
  font-weight: 700;
}
.tobid-search-popup .search {
  flex: 4;
  color: #ffffff;
  border-color: #ed1438;
  background: #ed1438;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.8rem;
  border: 1px solid;
  background-color: #ffffff;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  position: relative;
  width: 100%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 150ms ease;
}
@media (max-width: 767.98px) {
  .alert {
    padding: 1.2rem 1.6rem;
    gap: 1.2rem;
  }
}

.alert__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert__icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .alert__icon {
    width: 2rem;
    height: 2rem;
  }
}

.alert__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.alert__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: inherit;
}
@media (max-width: 767.98px) {
  .alert__title {
    font-size: 1.4rem;
  }
}

.alert__message {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: inherit;
}
@media (max-width: 767.98px) {
  .alert__message {
    font-size: 1.3rem;
  }
}

.alert__close {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.alert__close:focus {
  outline: none;
}
.alert__close {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.alert__close:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.alert__close {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  transition: all 150ms ease;
  color: inherit;
  opacity: 0.7;
}
.alert__close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.05);
}
.alert__close:active {
  transform: scale(0.95);
}
.alert__close svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 767.98px) {
  .alert__close {
    width: 2rem;
    height: 2rem;
  }
}

.alert--success {
  background-color: #e6fbf3;
  border-color: #c3f6e2;
  color: #0075ff;
}
.alert--success .alert__icon {
  color: #0075ff;
}
.alert--text {
  flex-direction: column;
  align-items: stretch;
  padding: 4rem 4rem 4rem;
  max-width: 40rem;
  border: none;
  background-color: #ffffff;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .alert--text {
    padding: 2.4rem 2.4rem 1.6rem;
    max-width: calc(100vw - 4rem);
  }
}
.alert--text .alert__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  color: #aaadb2;
  opacity: 1;
}
.alert--text .alert__close:hover {
  color: #2a2f38;
  background-color: #f0f2f5;
}
.alert--text .alert__content {
  text-align: center;
  gap: 1.2rem;
  padding-top: 1.6rem;
}
.alert--text .alert__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  /* @include mobile-only {
    font-size: $font-size-level-5; // 16px
  }*/
}
.alert--text .alert__message {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2a2f38;
  line-height: 1.5;
  /* @include mobile-only {
    font-size: $font-size-level-3; // 13px
  }*/
}
.alert--text .alert__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.alert--text .alert__actions .btn {
  min-width: 10rem;
  flex: 1;
}
@media (max-width: 767.98px) {
  .alert--text .alert__actions .btn {
    min-width: 8rem;
  }
}
.alert--text .alert__actions:has(.btn:only-child) .btn {
  max-width: 16rem;
}

.alert--text.alert--no-close .alert__content {
  padding-top: 0;
}

.alert--text.alert--fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 500;
  animation: scaleIn 0.3s ease-out;
  margin-bottom: 0;
}

.alert--error {
  background-color: #fef6f7;
  border-color: #ffd1d4;
  color: #ff2700;
}
.alert--error .alert__icon {
  color: #ff2700;
}
.alert--warning {
  background-color: #fff5da;
  border-color: #ffe7ab;
  color: #ffaa00;
}
.alert--warning .alert__icon {
  color: #ffaa00;
}
.alert--info {
  background-color: #e3f5ff;
  border-color: #c6eaff;
  color: #0075ff;
}
.alert--info .alert__icon {
  color: #0075ff;
}
.alert--simple .alert__icon {
  display: none;
}

.alert--compact .alert__close {
  display: none;
}

.alert--position-top {
  position: fixed;
  top: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 60rem;
  z-index: 500;
  animation: slideInTop 0.3s ease-out;
}
@media (max-width: 767.98px) {
  .alert--position-top {
    top: 1.6rem;
    width: calc(100% - 2.4rem);
    max-width: none;
  }
}

.alert--position-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4rem);
  max-width: 50rem;
  z-index: 500;
  animation: scaleIn 0.3s ease-out;
}
@media (max-width: 767.98px) {
  .alert--position-center {
    width: calc(100% - 2.4rem);
    max-width: none;
  }
}

.alert--position-bottom {
  position: fixed;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 60rem;
  z-index: 500;
  animation: slideInBottom 0.3s ease-out;
}
@media (max-width: 767.98px) {
  .alert--position-bottom {
    bottom: 1.6rem;
    width: calc(100% - 2.4rem);
    max-width: none;
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translate(-50%, -2rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translate(-50%, 2rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 499;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.main-page {
  color: #2ecc71;
  padding-top: 5.2rem;
}
@media (max-width: 767.98px) {
  .main-page br.br_control--active {
    display: inline;
  }
  .main-page br.br_control--hidden {
    display: none;
  }
}
.main-page .section-content {
  max-width: 1192px;
  padding-top: 9.6rem;
  padding-bottom: 9.6rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 767.98px) {
  .main-page .section-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.main-page .visual-section {
  height: 100%;
  max-height: 718px;
  padding: 16rem 0 9.6rem;
  background-image: url("../images/2604/visual/bg_acmain_pc.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .main-page .visual-section {
    background-image: url("../images/2604/visual/bg_acmain_ta.png");
  }
}
@media (max-width: 767.98px) {
  .main-page .visual-section {
    min-height: 594px;
    background-image: url("../images/2604/visual/bg_acmain_mo.png");
    padding: 18rem 0 6rem;
  }
}
.main-page .visual-section > .inner .visual__content {
  width: 100%;
}
.main-page .visual-section > .inner .visual__title {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 78.4px */
  letter-spacing: -1.4px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .main-page .visual-section > .inner .visual__title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
}
.main-page .visual-section > .inner .visual__description {
  margin: 2.8rem 0 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .visual-section > .inner .visual__description {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .visual-section > .inner .visual__description strong {
  font-weight: 700;
}
.main-page .visual-section > .inner .visual-buttons {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 6.4rem;
}
@media (max-width: 767.98px) {
  .main-page .visual-section > .inner .visual-buttons {
    margin-top: 4rem;
  }
}
.main-page .visual-section > .inner .visual-buttons .visual--button {
  max-width: 328px;
  width: 100%;
  max-height: 328px;
  height: 52px;
  padding: 15px 16px;
  text-align: center;
  border-radius: 6px;
  background: #ed1438;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.45px;
}
@media (max-width: 767.98px) {
  .main-page .visual-section > .inner .visual-buttons .visual--button {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
}
.main-page .visual-section > .inner .visual-buttons .visual--button:hover {
  text-decoration: none;
}
.main-page .visual-section > .inner .visual-buttons .visual__info {
  margin-top: 8px;
  color: #edeff2;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  letter-spacing: -0.35px;
}
.main-page .hero-section {
  background-color: #f6f7f9;
}
.main-page .hero-section > .section-content .hero__title {
  margin-bottom: 1.2rem;
  color: #2a2f38;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}
@media (max-width: 767.98px) {
  .main-page .hero-section > .section-content .hero__title {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}
.main-page .hero-section > .section-content .hero__description {
  margin-bottom: 4rem;
  color: #2a2f38;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .hero-section > .section-content .hero__description {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .hero-section > .section-content .hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0;
}
@media (max-width: 767.98px) {
  .main-page .hero-section > .section-content .hero-card {
    grid-template-columns: 1fr;
  }
}
.main-page .hero-section > .section-content .hero-card .hero-card__item {
  border-radius: 16px;
  border: 1px solid #f0f2f5;
  background: #fff;
  padding: 2.4rem;
  margin: 0;
}
.main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__icon {
  display: block;
  margin-bottom: 1.6rem;
}
.main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__content .hero-card__title {
  margin-bottom: 0.6rem;
  color: #2a2f38;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__content .hero-card__title {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__content .hero-card__description {
  color: #696e77;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
@media (max-width: 767.98px) {
  .main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__content .hero-card__description {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}
.main-page .hero-section > .section-content .hero-card .hero-card__item .hero-card__content .hero-card__info {
  margin-top: 0.6rem;
  color: #aaadb2;
  /* Bod-XS-M */
  font-size: 12px;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
}
.main-page .process-section > .section-content .process__title {
  margin-bottom: 1.2rem;
  color: #2a2f38;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process__title {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}
.main-page .process-section > .section-content .process__description {
  margin-bottom: 0.4rem;
  color: #2a2f38;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process__description {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .process-section > .section-content .process__info {
  display: inline-block;
  width: 100%;
  color: #696e77;
  text-align: center;
  /* Bod-XS-R */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 16.8px */
  letter-spacing: -0.3px;
  margin-bottom: 4rem;
}
.main-page .process-section > .section-content .process-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process-card {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.8rem;
  }
}
.main-page .process-section > .section-content .process-card:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 1px;
  background: #f0f2f5;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process-card:before {
    display: none;
  }
}
.main-page .process-section > .section-content .process-card .process-card__item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
}
.main-page .process-section > .section-content .process-card .process-card__item .process-card__icon {
  display: inline-block;
  margin: 0 auto 1.6rem;
}
.main-page .process-section > .section-content .process-card .process-card__item .process-card__content .process-card__title {
  color: #2a2f38;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process-card .process-card__item .process-card__content .process-card__title {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .process-section > .section-content .process-card .process-card__item .process-card__content .process-card__description {
  color: #696e77;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
@media (max-width: 767.98px) {
  .main-page .process-section > .section-content .process-card .process-card__item .process-card__content .process-card__description {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}
.main-page .member-section {
  background-color: #f6f7f9;
}
.main-page .member-section > .section-content .member__title {
  margin-bottom: 1.2rem;
  color: #2a2f38;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member__title {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}
.main-page .member-section > .section-content .member__description {
  margin-bottom: 4rem;
  color: #2a2f38;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member__description {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .member-section > .section-content .member-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.8rem;
  }
}
.main-page .member-section > .section-content .member-card:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 1px;
  background: #e9e9e9;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card:before {
    display: none;
  }
}
.main-page .member-section > .section-content .member-card .member-card__item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card .member-card__item {
    display: flex;
    text-align: left;
    gap: 1.2rem;
  }
}
.main-page .member-section > .section-content .member-card .member-card__item .member-card__icon {
  display: inline-block;
  margin: 0 auto 1.2rem;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card .member-card__item .member-card__icon {
    margin: 0;
  }
}
.main-page .member-section > .section-content .member-card .member-card__item .member-card__content .member-card__title {
  color: #2a2f38;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card .member-card__item .member-card__content .member-card__title {
    font-size: 18px;
    letter-spacing: -0.45px;
    margin-top: 1rem;
  }
}
.main-page .member-section > .section-content .member-card .member-card__item .member-card__content .member-card__description {
  color: #696e77;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
@media (max-width: 767.98px) {
  .main-page .member-section > .section-content .member-card .member-card__item .member-card__content .member-card__description {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}
.main-page .highlight-section {
  background: radial-gradient(107.5% 98.12% at 50% 50%, rgba(71, 74, 248, 0.5) 0%, rgba(0, 0, 0, 0) 100%), #1a1f2b;
}
.main-page .highlight-section > .section-content .highlight__title {
  color: #fff;
  text-align: center;
  /* Tit-XL-B */
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
  margin-bottom: 2.8rem;
}
@media (max-width: 767.98px) {
  .main-page .highlight-section > .section-content .highlight__title {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}
.main-page .highlight-section > .section-content .highlight__description {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .main-page .highlight-section > .section-content .highlight__description {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
.main-page .faq-section > .section-content {
  max-width: 768px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767.98px) {
  .main-page .faq-section > .section-content {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.main-page .faq-section > .section-content .faq-title-grp {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-bottom: 1px solid #edeff2;
  padding-bottom: 1.6rem;
}
.main-page .faq-section > .section-content .faq__title {
  color: #2a2f38;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 42px */
  letter-spacing: -0.7px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .main-page .faq-section > .section-content .faq__title {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
}
.main-page .faq-section > .section-content .faq-list {
  padding: 0;
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button {
  display: flex;
  color: #2a2f38;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2.4rem 0;
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button[aria-expanded=true] {
  color: #ed1438;
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button[aria-expanded=true] .question-button__icon rect {
  fill: #fef6f7;
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button[aria-expanded=true] .question-button__icon path {
  stroke: #ed1438;
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button[aria-expanded=true] .question-button__icon svg {
  transform: rotate(180deg);
}
.main-page .faq-section > .section-content .faq-list .faq-list__question-button[aria-expanded=false] {
  border-bottom: 1px solid #edeff2;
}
.main-page .faq-section > .section-content .faq-list .question-button__title {
  min-width: 0;
  text-align: left;
  flex: 1;
  padding-right: 1rem;
}
.main-page .faq-section > .section-content .faq-list .faq-list__answer {
  display: none;
  border: 1px solid #edeff2;
  padding: 24px;
  border-radius: 12px;
  background: #f6f7f9;
  color: #696e77;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
}
.main-page .faq-section > .section-content .faq-list .faq-list__answer.is-open {
  display: block;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .main-page .section-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .main-page {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
  }
  .main-page .section-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* 회원 관련 */
.login-page {
  padding-top: 25.2rem;
  padding-bottom: 30rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.login-page__background {
  position: absolute;
  inset: 0;
  background-image: url("../images/login-background-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.login-page__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.login-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px 0 rgba(0, 40, 100, 0.06);
  width: 100%;
  max-width: 43.6rem;
}
@media (max-width: 767.98px) {
  .login-card {
    max-width: 100%;
    box-shadow: none;
    padding: 5.2rem 1.6rem 10rem;
    margin: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .login-card {
    padding: 8.2rem 4rem;
  }
}
.login-card__header {
  text-align: center;
  margin-bottom: 4rem;
}
.login-card__logo {
  width: 8.5rem;
  height: 3.2rem;
  margin-right: 0.4rem;
}
@media (min-width: 768px) {
  .login-card__logo {
    width: 10rem;
    height: 3.8rem;
    margin-right: 0;
  }
}
.login-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a2f38;
  margin: 0;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .login-card__title {
    font-size: 2.8rem;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
}
.login-form .input-group {
  margin-bottom: 0.8rem;
}
.login-form .input-group:last-of-type {
  margin-bottom: 0.8rem;
}
.login-form__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.login-form__link {
  font-size: 1.4rem;
  color: #2a2f38;
  text-decoration: none;
  transition: all 150ms ease;
}
.login-form__link:hover {
  text-decoration: none;
}
.login-form__divider {
  color: #d5d7db;
  font-size: 1.1rem;
}

.login-card-btn {
  margin-top: 6rem;
}
.my-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.my-page button {
  padding: 0;
}
.my-page .pr-0 {
  padding-right: 0 !important;
}
.my-page .pb-0 {
  padding-bottom: 0 !important;
}
.my-page .input-field {
  padding: 1.6rem;
}
.my-page .companionship {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: #fef6f7;
  border-radius: 0.4rem;
  margin-bottom: 2.4rem;
}
.my-page .companionship strong {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ed1438;
}
.my-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .page-header {
    margin-top: 0;
  }
}
.my-page .page-header h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.my-page .my-info {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .my-info {
    padding: 2.4rem 1.6rem;
    border-radius: 1.2rem;
  }
}
.my-page .my-info__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.9rem;
}
@media (max-width: 767.98px) {
  .my-page .my-info__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}
.my-page .my-info__username {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2a2f38;
  margin: 0;
  word-break: break-all;
}
@media (max-width: 767.98px) {
  .my-page .my-info__username {
    font-size: 2rem;
  }
}
.my-page .my-info__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
  color: #696e77;
}
@media (max-width: 767.98px) {
  .my-page .my-info__meta {
    flex-direction: column;
    gap: 0;
    font-size: 1.3rem;
  }
}
.my-page .my-info__meta li {
  margin: 0;
  text-align: right;
}
@media (max-width: 767.98px) {
  .my-page .my-info__meta li {
    text-align: left;
  }
}
.my-page .my-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.3rem;
}
@media (max-width: 767.98px) {
  .my-page .my-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
.my-page .my-stats__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 1.6rem;
  background-color: #f1faff;
  border-radius: 1.2rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.my-page .my-stats__card--warning {
  background-color: #fef6f7;
}
.my-page .my-stats__card--warning .my-stats__value {
  color: #ff2700;
}
@media (max-width: 767.98px) {
  .my-page .my-stats__card {
    padding: 1.6rem;
  }
}
.my-page .my-stats__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .my-page .my-stats__label {
    font-size: 1.4rem;
  }
}
.my-page .my-stats__value {
  font-size: 1.6rem;
  color: #305af8;
  display: flex;
  align-items: center;
}
.my-page .my-stats__value strong {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
@media (max-width: 767.98px) {
  .my-page .my-stats__value {
    font-size: 1.4rem;
  }
  .my-page .my-stats__value strong {
    font-size: 1.8rem;
  }
}
.my-page .my-stats__arrow {
  display: flex;
  align-items: center;
  color: #d5d7db;
  margin-left: 0.8rem;
}
.my-page .my-contract {
  display: flex;
  width: 50%;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.4rem;
  background-color: #f6f7f9;
  border-radius: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .my-page .my-contract {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .my-page .my-contract {
    width: 100%;
  }
}
.my-page .my-contract__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .my-page .my-contract__text {
    font-size: 1.4rem;
  }
}
.my-page .my-contract__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  color: #aaadb2;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.my-page .my-contract__btn:hover {
  background-color: #f0f2f5;
  color: #2a2f38;
}
.my-page .my-penalty {
  padding-top: 2.4rem;
  border-top: 1px solid #e9e9e9;
}
.my-page .my-penalty__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2f38;
  margin: 0 0 1.2rem;
}
.my-page .my-penalty__title .date {
  font-size: 1.4rem;
  font-weight: 400;
  color: #696e77;
  margin-left: 0.8rem;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__title {
    font-size: 1.4rem;
  }
}
.my-page .my-penalty__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__cards {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
.my-page .my-penalty__card {
  padding: 1.6rem;
  background-color: #f6f7f9;
  border-radius: 0.8rem;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__card {
    padding: 1.6rem;
  }
}
.my-page .my-penalty__card--warning {
  background-color: #fef6f7;
}
.my-page .my-penalty__card--warning .my-penalty__card-value {
  color: #ff2700;
}
.my-page .my-penalty__card--warning .my-penalty__card-desc,
.my-page .my-penalty__card--warning .my-penalty__card-period {
  color: #ff2700;
}
.my-page .my-penalty__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  justify-content: space-between;
}
.my-page .my-penalty__card-label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__card-label {
    font-size: 1.4rem;
  }
}
.my-page .my-penalty__card-value {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #696e77;
}
.my-page .my-penalty__card-value strong {
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__card-value {
    font-size: 1.4rem;
  }
  .my-page .my-penalty__card-value strong {
    font-size: 1.8rem;
  }
}
.my-page .my-penalty__arrow {
  display: flex;
  align-items: center;
  color: #d5d7db;
  margin-left: 0.8rem;
}
.my-page .my-penalty__card-desc {
  font-size: 1.4rem;
  color: #696e77;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__card-desc {
    font-size: 1.3rem;
  }
}
.my-page .my-penalty__card-period {
  font-size: 1.4rem;
  color: #696e77;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 767.98px) {
  .my-page .my-penalty__card-period {
    font-size: 1.2rem;
  }
}
.my-page .content-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .content-box-header {
    gap: 1.2rem;
    padding-bottom: 1.6rem;
  }
}
.my-page .content-box-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}
@media (max-width: 767.98px) {
  .my-page .content-box-header h2 {
    font-size: 1.8rem;
  }
}
.my-page .content-box-header button {
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #2a2f38;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.my-page .content-box-header button:hover {
  background-color: #f0f2f5;
  border-color: #aaadb2;
}
.my-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.my-page .required::after {
  content: "*";
  display: inline-flex;
  color: #ed1438;
  font-weight: 700;
  margin-left: 0.2rem;
}
.my-page .sign-up-form {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 2rem 6rem;
}
@media (max-width: 767.98px) {
  .my-page .sign-up-form {
    padding: 2.4rem 1.6rem 6rem;
    border-radius: 1.2rem;
  }
}
.my-page .form-table {
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .my-page .form-table {
    border-top: none;
  }
}
.my-page .form-table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .my-page .form-table__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .my-page .form-table__row {
    padding-top: 2rem;
    border: none;
  }
  .my-page .form-table__row:first-of-type {
    padding-top: 0;
  }
}
.my-page .form-field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .my-page .form-field:nth-child(2) {
    border-left: 1px solid #d5d7db;
  }
}
@media (max-width: 1023px) {
  .my-page .form-field {
    border-top: 1px solid #d5d7db;
  }
  .my-page .form-field:first-child {
    border-top: none;
  }
}
@media (max-width: 767.98px) {
  .my-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 2rem;
    border-top: none;
  }
  .my-page .form-field:first-child {
    padding-top: 0;
  }
}
.my-page .form-field__label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 6.4rem;
  min-width: 12rem;
  padding: 0.8rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  text-align: right;
  margin: 0;
}
@media (max-width: 767.98px) {
  .my-page .form-field__label {
    justify-content: flex-start;
    background-color: transparent;
    min-height: auto;
    min-width: auto;
    padding: 0;
    text-align: left;
    margin-bottom: 0.8rem;
  }
}
.my-page .form-field .user-id,
.my-page .form-field .scanned_copy_title,
.my-page .form-field .business-number {
  align-items: flex-start;
  padding-top: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .form-field .user-id,
  .my-page .form-field .scanned_copy_title,
  .my-page .form-field .business-number {
    padding-top: 0;
  }
}
.my-page .form-field .scanned_copy_title {
  flex-direction: row;
  grid-row: 1/span 2;
  padding-top: 2rem;
  /*&.required::after {
    display: none;
  }
  &::after {
    content: "*";
    color: $color-primary;
    font-weight: $font-weight-bold;
    margin-left: 0.2rem;
  }*/
}
@media (max-width: 767.98px) {
  .my-page .form-field .scanned_copy_title {
    flex-direction: row;
    gap: 0.4rem;
    padding-top: 0;
  }
  .my-page .form-field .scanned_copy_title span:first-child::after {
    display: none;
  }
}
.my-page .form-field__fieldset {
  display: contents;
  border: none;
  padding: 0;
  margin: 0;
}
.my-page .form-field__control {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.8rem 1.6rem;
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .my-page .form-field__control {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .my-page .form-field__control {
    padding: 0;
  }
}
.my-page .form-field__control--stack {
  gap: 0.8rem;
}
.my-page .form-field__hint {
  grid-column: 2;
  font-size: 1.3rem;
  color: #0075ff;
  margin: 0;
  padding: 0 1.6rem 0.8rem;
}
.my-page .form-field__hint--primary {
  color: #ed1438;
}
@media (max-width: 767.98px) {
  .my-page .form-field__hint {
    grid-column: 1;
    padding: 0;
  }
}
.my-page .form-field__error {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ff2700;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.my-page .form-field__success {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0075ff;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.my-page .form-field.has-error .input-field,
.my-page .form-field.has-error .select-field,
.my-page .form-field.has-error .file-placeholder {
  border-color: #ff2700;
}
.my-page .form-field.has-error .input-field:focus,
.my-page .form-field.has-error .select-field:focus,
.my-page .form-field.has-error .file-placeholder:focus {
  border-color: #ff2700;
}
.my-page .form-field.has-error .form-field__error {
  display: block;
}
.my-page .form-field.has-success .form-field__success {
  display: block;
}
.my-page .input-with-btn {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  flex-direction: row;
}
.my-page .input-with-btn .input-field {
  flex: 1;
}
@media (max-width: 767.98px) {
  .my-page .input-with-btn.upload-files {
    flex-direction: column;
  }
  .my-page .input-with-btn .btn {
    flex-shrink: 0;
    height: 4.4rem;
  }
}
.my-page .input-with-btn .company-zip-code,
.my-page .input-with-btn .garage-zip-code {
  display: flex;
  width: 62%;
  gap: 0.8rem;
}
@media (max-width: 767.98px) {
  .my-page .input-with-btn .company-zip-code,
  .my-page .input-with-btn .garage-zip-code {
    width: 100%;
  }
}
.my-page .input-with-btn .btn {
  flex-shrink: 0;
  min-width: 8rem;
}
.my-page .input-row {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}
.my-page .input-row .select-wrapper {
  flex: 0 0 auto;
  width: 12rem;
}
.my-page .input-row .input-field {
  flex: 1;
}
.my-page .radio-items {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  height: 100%;
}
.my-page .radio-items .item {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
}
.my-page .address-group > input {
  margin-top: 0.8rem;
}
.my-page .address-group .input-with-btn {
  flex-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .my-page .address-group .input-with-btn {
    flex-wrap: wrap;
  }
}
.my-page .address-group .same-address-checkbox {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .my-page .address-group .same-address-checkbox {
    width: auto;
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767.98px) {
  .my-page .address-group .garage-zip-code {
    order: 2;
  }
  .my-page .address-group .same-address-checkbox {
    order: 1;
  }
}
.my-page .account-group > input {
  margin-top: 0.8rem;
}
@media (max-width: 767.98px) {
  .my-page .account-group .input-row {
    flex-direction: row;
  }
}
.my-page .marketing-consent {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
  border: none;
  margin: 0;
}
.my-page .marketing-consent__area {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .marketing-consent__area {
    flex-direction: column;
    width: 100%;
  }
}
.my-page .marketing-consent__options {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .my-page .marketing-consent__options {
    width: 100%;
  }
  .my-page .marketing-consent__options .checkbox {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .my-page .marketing-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.my-page .marketing-consent__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}
.my-page .sign-up-notice {
  background-color: #f6f7f9;
  border-radius: 0.4rem;
  padding: 2.4rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.my-page .sign-up-notice__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #696e77;
  margin: 0 0 1.2rem;
}
.my-page .sign-up-notice__list {
  margin: 0;
  padding-left: 0;
  counter-reset: sign-up-notice__list;
}
.my-page .sign-up-notice__list li {
  display: flex;
  text-indent: 0;
  font-size: 1.3rem;
  color: #2a2f38;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  padding: 0 1.6rem;
  position: relative;
}
.my-page .sign-up-notice__list li:before {
  position: absolute;
  left: 0;
  counter-increment: sign-up-notice__list;
  content: counter(sign-up-notice__list) ".";
}
.my-page .sign-up-notice__list li:last-child {
  margin-bottom: 0;
}
.my-page .sign-up-submit {
  max-width: 40rem;
  margin: 1.6rem auto 0;
}
@media (max-width: 767.98px) {
  .my-page .sign-up-submit {
    max-width: 100%;
  }
  .my-page .sign-up-submit button {
    height: 4.8rem;
  }
}
.my-page .file-placeholder {
  display: inline-flex;
  align-items: center;
  flex: 1;
  height: 4.8rem;
  padding: 1.6rem;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  color: #aaadb2;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .my-page .file-placeholder {
    display: none;
  }
}
.my-page .register-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.4rem;
  height: 4.8rem;
  padding: 0.4rem 1.6rem;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  color: #2a2f38;
  line-height: 1.4;
}
.my-page .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.my-page .register-item .close i {
  display: flex;
  fill: #ffffff;
}
@media (max-width: 767.98px) {
  .my-page .register-item {
    border: 0;
    padding: 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.4rem;
    height: 4.4rem;
    flex: auto;
  }
}

.sign-up-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.sign-up-page button {
  padding: 0;
}
.sign-up-page .pr-0 {
  padding-right: 0 !important;
}
.sign-up-page .pb-0 {
  padding-bottom: 0 !important;
}
.sign-up-page .input-field {
  padding: 1.6rem;
}
.sign-up-page .companionship {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background-color: #fef6f7;
  border-radius: 0.4rem;
  margin-bottom: 2.4rem;
}
.sign-up-page .companionship strong {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ed1438;
}
.sign-up-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .page-header {
    margin-top: 0;
  }
}
.sign-up-page .page-header h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.sign-up-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sign-up-page .required::after {
  content: "*";
  display: inline-flex;
  color: #ed1438;
  font-weight: 700;
  margin-left: 0.2rem;
}
.sign-up-page .sign-up-form {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 2rem 6rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .sign-up-form {
    padding: 2.4rem 1.6rem 6rem;
    border-radius: 1.2rem;
  }
}
.sign-up-page .form-table {
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .sign-up-page .form-table {
    border-top: none;
  }
}
.sign-up-page .form-table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .sign-up-page .form-table__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .sign-up-page .form-table__row {
    padding-top: 2rem;
    border: none;
  }
  .sign-up-page .form-table__row:first-of-type {
    padding-top: 0;
  }
}
.sign-up-page .form-field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}
.sign-up-page .form-field > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .sign-up-page .form-field:nth-child(2) {
    border-left: 1px solid #d5d7db;
  }
}
@media (max-width: 1023px) {
  .sign-up-page .form-field {
    border-top: 1px solid #d5d7db;
  }
  .sign-up-page .form-field:first-child {
    border-top: none;
  }
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 2rem;
    border-top: none;
  }
  .sign-up-page .form-field:first-child {
    padding-top: 0;
  }
}
.sign-up-page .form-field__label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 6.4rem;
  min-width: 12rem;
  padding: 0.8rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  text-align: right;
  margin: 0;
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field__label {
    justify-content: flex-start;
    background-color: transparent;
    min-height: auto;
    min-width: auto;
    padding: 0;
    text-align: left;
    margin-bottom: 0.8rem;
  }
}
.sign-up-page .form-field .user-id,
.sign-up-page .form-field .scanned_copy_title,
.sign-up-page .form-field .business-number {
  align-items: flex-start;
  padding-top: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field .user-id,
  .sign-up-page .form-field .scanned_copy_title,
  .sign-up-page .form-field .business-number {
    padding-top: 0;
  }
}
.sign-up-page .form-field .scanned_copy_title {
  flex-direction: row;
  grid-row: 1/span 2;
  padding-top: 2rem;
  /*&.required::after {
    display: none;
  }
  &::after {
    content: "*";
    color: $color-primary;
    font-weight: $font-weight-bold;
    margin-left: 0.2rem;
  }*/
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field .scanned_copy_title {
    flex-direction: row;
    gap: 0.4rem;
    padding-top: 0;
  }
  .sign-up-page .form-field .scanned_copy_title span:first-child::after {
    display: none;
  }
}
.sign-up-page .form-field__fieldset {
  display: contents;
  border: none;
  padding: 0;
  margin: 0;
}
.sign-up-page .form-field__control {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.8rem 1.6rem;
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .sign-up-page .form-field__control {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field__control {
    padding: 0;
  }
}
.sign-up-page .form-field__control--stack {
  gap: 0.8rem;
}
.sign-up-page .form-field__hint {
  grid-column: 2;
  font-size: 1.3rem;
  color: #0075ff;
  margin: 0;
  padding: 0 1.6rem 0.8rem;
}
.sign-up-page .form-field__hint--primary {
  color: #ed1438;
}
@media (max-width: 767.98px) {
  .sign-up-page .form-field__hint {
    grid-column: 1;
    padding: 0;
  }
}
.sign-up-page .form-field__error {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ff2700;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.sign-up-page .form-field__success {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0075ff;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.sign-up-page .form-field.has-error .input-field,
.sign-up-page .form-field.has-error .select-field,
.sign-up-page .form-field.has-error .file-placeholder {
  border-color: #ff2700;
}
.sign-up-page .form-field.has-error .input-field:focus,
.sign-up-page .form-field.has-error .select-field:focus,
.sign-up-page .form-field.has-error .file-placeholder:focus {
  border-color: #ff2700;
}
.sign-up-page .form-field.has-error .form-field__error {
  display: block;
}
.sign-up-page .form-field.has-success .form-field__success {
  display: block;
}
.sign-up-page .input-with-btn {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  flex-direction: row;
}
.sign-up-page .input-with-btn .input-field {
  flex: 1;
}
.sign-up-page .input-with-btn .input--certifications {
  width: 100%;
  position: relative;
}
.sign-up-page .input-with-btn .input--certifications-ui {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.6rem;
}
.sign-up-page .input-with-btn .input--certifications-ui .timer {
  color: #ff2700;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .sign-up-page .input-with-btn.upload-files {
    flex-direction: column;
  }
  .sign-up-page .input-with-btn .btn {
    flex-shrink: 0;
    height: 4.4rem;
  }
}
.sign-up-page .input-with-btn .company-zip-code,
.sign-up-page .input-with-btn .garage-zip-code {
  display: flex;
  width: 62%;
  gap: 0.8rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .input-with-btn .company-zip-code,
  .sign-up-page .input-with-btn .garage-zip-code {
    width: 100%;
  }
}
.sign-up-page .input-with-btn .btn {
  flex-shrink: 0;
  min-width: 8rem;
}
.sign-up-page .input-row {
  display: flex;
  gap: 0.8rem;
  width: 100%;
}
.sign-up-page .input-row .select-wrapper {
  flex: 0 0 auto;
  width: 12rem;
}
.sign-up-page .input-row .input-field {
  flex: 1;
}
.sign-up-page .radio-items {
  display: flex;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  height: 100%;
}
.sign-up-page .radio-items .item {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
}
.sign-up-page .address-group > input {
  margin-top: 0.8rem;
}
.sign-up-page .address-group .input-with-btn {
  flex-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .sign-up-page .address-group .input-with-btn {
    flex-wrap: wrap;
  }
}
.sign-up-page .address-group .same-address-checkbox {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .sign-up-page .address-group .same-address-checkbox {
    width: auto;
    margin-left: 0;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767.98px) {
  .sign-up-page .address-group .garage-zip-code {
    order: 2;
  }
  .sign-up-page .address-group .same-address-checkbox {
    order: 1;
  }
}
.sign-up-page .account-group > input {
  margin-top: 0.8rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .account-group .input-row {
    flex-direction: row;
  }
}
.sign-up-page .marketing-consent {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
  border: none;
  margin: 0;
}
.sign-up-page .marketing-consent__area {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .marketing-consent__area {
    flex-direction: column;
    width: 100%;
  }
}
.sign-up-page .marketing-consent__options {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-page .marketing-consent__options {
    width: 100%;
  }
  .sign-up-page .marketing-consent__options .checkbox {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .sign-up-page .marketing-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
}
.sign-up-page .marketing-consent__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}
.sign-up-page .sign-up-notice {
  background-color: #f6f7f9;
  border-radius: 0.4rem;
  padding: 2.4rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.sign-up-page .sign-up-notice__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #696e77;
  margin: 0 0 1.2rem;
}
.sign-up-page .sign-up-notice__list {
  margin: 0;
  padding-left: 0;
  counter-reset: sign-up-notice__list;
}
.sign-up-page .sign-up-notice__list li {
  display: flex;
  text-indent: 0;
  font-size: 1.3rem;
  color: #2a2f38;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  padding: 0 1.6rem;
  position: relative;
}
.sign-up-page .sign-up-notice__list li:before {
  position: absolute;
  left: 0;
  counter-increment: sign-up-notice__list;
  content: counter(sign-up-notice__list) ".";
}
.sign-up-page .sign-up-notice__list li:last-child {
  margin-bottom: 0;
}
.sign-up-page .sign-up-submit {
  max-width: 40rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .sign-up-page .sign-up-submit {
    max-width: 100%;
  }
}
.sign-up-page .file-placeholder {
  display: inline-flex;
  align-items: center;
  flex: 1;
  height: 4.8rem;
  padding: 1.6rem;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  color: #aaadb2;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .sign-up-page .file-placeholder {
    display: none;
  }
}
.sign-up-page .register-item-box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  gap: 0.4rem;
  height: 4.8rem;
  padding: 0.4rem 1.6rem;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  color: #2a2f38;
  line-height: 1.4;
}
.sign-up-page .register-item-box .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.sign-up-page .register-item-box .close i {
  display: flex;
  fill: #ffffff;
}
@media (max-width: 767.98px) {
  .sign-up-page .register-item-box {
    border: 0;
    padding: 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.4rem;
    height: 4.4rem;
    flex: auto;
  }
}
.sign-up-page .register-item {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sign-up-terms-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  color: #2a2f38;
  padding-bottom: 8rem;
}
.sign-up-terms-page .page-header {
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .page-header {
    margin-top: 0;
  }
}
.sign-up-terms-page .page-header__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .page-header__title {
    font-size: 2rem;
  }
}
.sign-up-terms-page .content-box {
  background: #ffffff;
  border-radius: 1.2rem;
  padding-bottom: 6rem;
}
.sign-up-terms-page .content-box__title {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .content-box__title {
    text-align: left;
  }
}
.sign-up-terms-page .signup-process {
  margin-bottom: 2.4rem;
  counter-reset: step;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .signup-process {
    margin-bottom: 2rem;
  }
}
.sign-up-terms-page .signup-process__flow {
  display: flex;
  padding: 0;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.sign-up-terms-page .signup-process__flow li {
  margin: 0;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .signup-process__flow {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .sign-up-terms-page .signup-process__flow li {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }
}
.sign-up-terms-page .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 18rem;
  min-width: 12rem;
  max-width: 18rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .process-step {
    width: 100%;
    flex: none;
    min-width: auto;
    max-width: none;
  }
}
.sign-up-terms-page .process-step__icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .process-step__icon {
    background: #fef6f7;
    width: 4.8rem;
    min-width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 0;
    margin-right: 0.8rem;
  }
  .sign-up-terms-page .process-step__icon svg {
    width: 2rem;
    height: auto;
  }
}
.sign-up-terms-page .process-step__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2f38;
  margin-bottom: 0.8rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .process-step__title {
    margin-bottom: 0.4rem;
  }
  .sign-up-terms-page .process-step__title::before {
    content: counter(step) ". ";
    counter-increment: step;
  }
}
.sign-up-terms-page .process-step__description {
  font-size: 1.4rem;
  font-weight: 400;
  color: #000714;
  line-height: 1.4;
}
.sign-up-terms-page .process-arrow {
  flex: 0 0 auto;
  padding-top: 0.9rem;
  color: #000714;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .process-arrow {
    display: none;
  }
}
.sign-up-terms-page .process-arrow svg {
  width: 2rem;
  height: 2rem;
}
.sign-up-terms-page .terms-agreement {
  border-top: 1px solid #e9e9e9;
  padding: 2.4rem 0 6rem;
  max-width: 99rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-agreement {
    padding: 2rem 0 4rem;
  }
}
.sign-up-terms-page .terms-agreement__container {
  max-width: 100%;
}
.sign-up-terms-page .terms-agreement__all {
  margin-bottom: 2.4rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-agreement__all {
    margin-bottom: 2rem;
  }
}
.sign-up-terms-page .terms-agreement__all .checkbox--large .checkbox__control {
  width: 2.4rem;
  height: 2.4rem;
}
.sign-up-terms-page .terms-agreement__all .checkbox--large .checkbox__label {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-agreement__all .checkbox--large .checkbox__label {
    font-size: 1.6rem;
  }
}
.sign-up-terms-page .terms-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-list {
    gap: 1.2rem;
  }
}
.sign-up-terms-page .terms-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sign-up-terms-page .terms-item__header .checkbox {
  flex: 1;
  margin-bottom: 0.8rem;
}
.sign-up-terms-page .terms-item__header .checkbox .checkbox__label {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-item__header .checkbox .checkbox__label {
    font-size: 1.3rem;
  }
}
.sign-up-terms-page .terms-item__view-more {
  display: none;
  flex-shrink: 0;
  border-bottom: 1px solid #80858b;
  background: #ffffff;
  color: #80858b;
  font-size: 1.3rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 100ms ease-out;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-item__view-more {
    display: block;
  }
}
.sign-up-terms-page .terms-item__content {
  display: block;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-item__content {
    display: none;
  }
}
.sign-up-terms-page .terms-item__text {
  padding: 1.6rem;
  background: #f6f7f9;
  border: 1px solid #edeff2;
  border-radius: 0.4rem;
  height: 10rem;
  overflow-y: auto;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-item__text {
    padding: 2.4rem;
    height: auto;
    max-height: none;
  }
}
.sign-up-terms-page .terms-item__text p:first-child {
  margin-top: 0;
}
.sign-up-terms-page .terms-item__text th {
  background-color: #f0f2f5;
}
.sign-up-terms-page .terms-item__text p,
.sign-up-terms-page .terms-item__text tr,
.sign-up-terms-page .terms-item__text td {
  font-size: 1.3rem;
  line-height: normal;
  margin-bottom: 0.4rem;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .terms-item__text p,
  .sign-up-terms-page .terms-item__text tr,
  .sign-up-terms-page .terms-item__text td {
    font-size: 1.2rem;
  }
}
.sign-up-terms-page .terms-item__text p:last-child,
.sign-up-terms-page .terms-item__text tr:last-child,
.sign-up-terms-page .terms-item__text td:last-child {
  margin-bottom: 0;
}
.sign-up-terms-page .terms-item__text .title {
  font-weight: 600;
  color: #2a2f38;
  margin-top: 1.5rem;
}
.sign-up-terms-page .terms-item__text th {
  font-weight: 500;
}
.sign-up-terms-page .terms-item__text th,
.sign-up-terms-page .terms-item__text td {
  padding: 0.8rem;
  text-align: center;
  border: 1px solid #edeff2;
  color: #2a2f38;
}
.sign-up-terms-page .terms-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.sign-up-terms-page .terms-popup.is-active {
  display: block;
}
.sign-up-terms-page .terms-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.sign-up-terms-page .terms-popup__container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 1.2rem 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
}
.sign-up-terms-page .terms-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  border-bottom: 1px solid #e9e9e9;
  flex-shrink: 0;
}
.sign-up-terms-page .terms-popup__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2f38;
  margin: 0;
}
.sign-up-terms-page .terms-popup__close {
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #000714;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sign-up-terms-page .terms-popup__close:hover {
  color: #2a2f38;
}
.sign-up-terms-page .terms-popup__close svg {
  width: 100%;
  height: 100%;
}
.sign-up-terms-page .terms-popup__content {
  padding: 2.4rem;
  overflow-y: auto;
  flex: 1;
}
.sign-up-terms-page .terms-popup__content p {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #aaadb2;
  margin-bottom: 1.6rem;
}
.sign-up-terms-page .terms-popup__content p:first-child {
  font-weight: 600;
  color: #2a2f38;
  margin-top: 0;
}
.sign-up-terms-page .terms-popup__content p:last-child {
  margin-bottom: 0;
}
.sign-up-terms-page .terms-popup p,
.sign-up-terms-page .terms-popup tr,
.sign-up-terms-page .terms-popup td {
  font-size: 1.3rem;
  line-height: normal;
  margin-bottom: 0.4rem;
  color: #2a2f38;
}
.sign-up-terms-page .terms-popup p:last-child,
.sign-up-terms-page .terms-popup tr:last-child,
.sign-up-terms-page .terms-popup td:last-child {
  margin-bottom: 0;
}
.sign-up-terms-page .terms-popup .title {
  font-weight: 600;
  color: #2a2f38;
  margin-top: 1.5rem;
}
.sign-up-terms-page .terms-popup th {
  font-weight: 500;
}
.sign-up-terms-page .terms-popup th,
.sign-up-terms-page .terms-popup td {
  word-break: break-all;
  padding: 0.8rem;
  text-align: center;
  border: 1px solid #edeff2;
  color: #2a2f38;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.sign-up-terms-page .page-submit {
  max-width: 50rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .sign-up-terms-page .page-submit {
    max-width: 100%;
  }
  .sign-up-terms-page .page-submit button {
    height: 4.8rem;
  }
}
.find-account-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.find-account-page__inner {
  background-color: #ffffff;
  border-radius: 2rem;
}
.find-account-page .page-header {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .find-account-page .page-header {
    margin-top: 0rem;
  }
}
.find-account-page .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .find-account-page .page-header__title {
    font-size: 2rem;
  }
}
.find-account-page .find-account-content {
  padding: 1.6rem 0 6rem;
  max-width: 35.6rem;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .find-account-page .find-account-content {
    padding: 1.6rem 1.6rem 3.2rem;
  }
}
.find-account-page .find-account-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #d5d7db;
  margin-bottom: 2rem;
}
.find-account-page .find-account-tab {
  flex: 1;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 1.4rem;
  font-weight: 500;
  color: #aaadb2;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.find-account-page .find-account-tab:hover {
  color: #2a2f38;
}
.find-account-page .find-account-tab.active {
  color: #ed1438;
  border-bottom-color: #ed1438;
  font-weight: 600;
}
.find-account-page .find-account-panel {
  display: none;
}
.find-account-page .find-account-panel.active {
  display: block;
}
.find-account-page .find-account-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (max-width: 767.98px) {
  .find-account-page .find-account-form {
    gap: 1.6rem;
  }
}
.find-account-page .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.find-account-page .form-field__label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}
.find-account-page .form-field__label.required::after {
  content: "*";
  color: #ed1438;
  margin-left: 0.2rem;
}
.find-account-page .form-field__control {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.find-account-page .form-field__error {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #ff2700;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.find-account-page .form-field__success {
  display: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: #0075ff;
  line-height: 1.4;
  margin: 0.4rem 0 0;
  width: 100%;
}
.find-account-page .form-field.has-error .input-field {
  border-color: #ff2700;
}
.find-account-page .form-field.has-error .input-field:focus {
  border-color: #ff2700;
}
.find-account-page .form-field.has-error .form-field__error {
  display: block;
}
.find-account-page .form-field.has-success .form-field__success {
  display: block;
}
.find-account-page .input-with-btn {
  display: flex;
  gap: 0.8rem;
}
.find-account-page .input-with-btn .input-field {
  flex: 1;
}
.find-account-page .input-with-btn .input--certifications {
  width: 100%;
  position: relative;
}
.find-account-page .input-with-btn .input--certifications-ui {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.6rem;
}
.find-account-page .input-with-btn .input--certifications-ui .timer {
  color: #ff2700;
  font-size: 12px;
  font-weight: 400;
}
.find-account-page .input-with-btn .btn {
  flex-shrink: 0;
  min-width: 10rem;
  padding: 0 2.4rem;
  height: 4.8rem;
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .find-account-page .input-with-btn .btn {
    height: 4.4rem;
  }
}
.find-account-page .input-field {
  width: 100%;
  height: 4.8rem;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  transition: border-color 0.2s ease;
}
@media (max-width: 767.98px) {
  .find-account-page .input-field {
    height: 4.4rem;
    padding: 0.8rem 1.6rem;
  }
}
.find-account-page .input-field::placeholder {
  color: #80858b;
}
.find-account-page .input-field:focus {
  outline: none;
  border-color: #ed1438;
}
.find-account-page .input-field:disabled {
  background-color: #f0f2f5;
  cursor: not-allowed;
}
.find-account-page .btn:disabled {
  border-color: transparent;
}
.find-account-page .btn--submit {
  margin-top: 1.6rem;
  background-color: #ed1438;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.find-account-page .btn--submit:disabled {
  background-color: #f0f2f5;
  color: #80858b;
  cursor: not-allowed;
}
.find-account-page .btn--large {
  height: 4.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .find-account-page .btn--large {
    height: 4.8rem;
  }
}
.find-account-page .btn--full-width {
  width: 100%;
}
.find-account-page #find-id-panel .btn--submit {
  display: none;
}
.find-account-page .find-account-result {
  padding: 4.8rem 0 6rem;
  max-width: 35.6rem;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767.98px) {
  .find-account-page .find-account-result {
    padding: 4.8rem 1.6rem 6rem;
  }
}
.find-account-page .find-account-result > span {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1.6rem;
}
.find-account-page .find-account-result > strong {
  font-size: 2.4rem;
  font-weight: 400;
  color: #ed1438;
  display: block;
  margin-bottom: 6rem;
}

.withdrawal-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.withdrawal-page ol,
.withdrawal-page ul,
.withdrawal-page li {
  margin: 0;
  padding: 0;
}
.withdrawal-page .page-header {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .withdrawal-page .page-header {
    margin-top: 2rem;
  }
}
.withdrawal-page .page-header__title {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.withdrawal-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: #696e77;
}
@media (max-width: 767.98px) {
  .withdrawal-page .breadcrumb {
    display: none;
  }
}
.withdrawal-page .breadcrumb__item {
  color: #696e77;
  text-decoration: none;
}
.withdrawal-page .breadcrumb__item--current {
  color: #2a2f38;
}
.withdrawal-page .breadcrumb__separator {
  color: #696e77;
}
.withdrawal-page .withdrawal-content {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem 6rem;
}
.withdrawal-page .withdrawal-content__header, .withdrawal-page .withdrawal-content__body, .withdrawal-page .withdrawal-content__footer {
  max-width: 68.8rem;
  margin: 0 auto;
}
.withdrawal-page .withdrawal-content__header {
  margin-bottom: 2rem;
}
.withdrawal-page .withdrawal-content__header h2 {
  font-size: 1.8rem;
  font-weight: 600;
}
.withdrawal-page .withdrawal-content__body {
  margin-bottom: 4rem;
  counter-reset: item;
  font-size: 1.3rem;
}
.withdrawal-page .withdrawal-content__body ol {
  counter-reset: item;
}
.withdrawal-page .withdrawal-content__body ol li {
  display: flex;
  counter-increment: item;
}
.withdrawal-page .withdrawal-content__body ol li::before {
  content: counter(item) ".";
  display: block;
  margin-right: 0.5rem;
}
.withdrawal-page .withdrawal-content__body ul li {
  display: flex;
  align-items: center;
}
.withdrawal-page .withdrawal-content__body ul li::before {
  content: "※";
  margin-right: 0.5rem;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  .withdrawal-page .withdrawal-content__body {
    margin-bottom: 2.4rem;
  }
}
.withdrawal-page .withdrawal-content__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #d5d7db;
}
.withdrawal-page .withdrawal-content__footer .checkbox {
  width: 100%;
  justify-self: flex-start;
}
.withdrawal-page .withdrawal-content__footer .withdrawal-btn {
  width: 100%;
  max-width: 32rem;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 0.6rem;
}
/* 입찰하기 */
.tobid-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}

.tobid-page-contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}

.tobid-section {
  margin-bottom: 2rem;
}
.tobid-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}

.tobid-page-contents .tobid-search-filter {
  border-top: 1px solid #aaadb2;
}
.tobid-page-contents .tobid-search-filter__row {
  display: grid;
}
.tobid-page-contents .tobid-search-filter__row:nth-child(1) {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-page-contents .tobid-search-filter__row:nth-child(1) {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .tobid-page-contents .tobid-search-filter__row:nth-child(1) {
    grid-template-columns: 1fr;
  }
}
.tobid-page-contents .tobid-search-filter__row:nth-child(2) {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-page-contents .tobid-search-filter__row:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .tobid-page-contents .tobid-search-filter__row:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
.tobid-page-contents .tobid-search-filter__row:last-of-type {
  margin-bottom: 0;
}
.tobid-page-contents .tobid-search-filter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}
.tobid-page-contents .tobid-search-filter__field .search-filter__item {
  padding-left: 1.6rem;
}
@media (min-width: 1024px) {
  .tobid-page-contents .tobid-search-filter__field:nth-child(odd) .search-filter__item {
    padding: 0.8rem 1.6rem;
  }
  .tobid-page-contents .tobid-search-filter__field:nth-child(even) .search-filter__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.tobid-page-contents .tobid-search-filter__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 10.2rem;
  height: 100%;
  padding: 2rem 0.8rem;
  flex-shrink: 0;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.tobid-page-contents .tobid-search-filter__range {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 auto;
}
.tobid-page-contents .tobid-search-filter__range .select-wrapper {
  flex: 1;
}
.tobid-page-contents .tobid-search-filter__separator {
  font-size: 1.4rem;
  color: #aaadb2;
  flex-shrink: 0;
}
.tobid-page-contents .tobid-search-filter__actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem 0 2.4rem;
}
.tobid-page-contents .tobid-search-filter__actions .btn {
  max-width: 12rem;
  width: 100%;
  border: solid 1px;
  padding: 1.2rem 0;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.tobid-page-contents .tobid-search-filter__actions .interest {
  color: #d11938;
  border-color: #ed1438;
}
.tobid-page-contents .tobid-search-filter__actions .search {
  color: #ffffff;
  border-color: #ed1438;
  background: #ed1438;
}
.tobid-page-contents .tobid-search-filter__actions .reset {
  color: #000714;
  border-color: #d5d7db;
}
.tobid-page-contents .tobid-search-filter__actions {
  /*@include mobile-only {

  }*/
}

.tobid-results-header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 2rem;
  border-bottom: 1px solid #696e77;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .tobid-results-header {
    border: none;
  }
}
@media (max-width: 767.98px) {
  .tobid-results-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tobid-results-header__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.tobid-results-header__info {
  display: flex;
  flex-direction: column;
  color: #2a2f38;
}
.tobid-results-header__title {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  /*@include mobile-only {
    font-size: $font-size-level-5;
  }*/
}
.tobid-results-header__controls {
  display: flex;
  flex-direction: row;
  align-items: end;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.tobid-results-header__controls .interest {
  color: #d11938;
  border: 1px solid #ed1438;
}
@media (max-width: 767.98px) {
  .tobid-results-header__controls .interest {
    border-radius: 0.4rem;
  }
}
.tobid-results-header__controls .select-wrapper {
  max-width: 12rem;
}
@media (max-width: 767.98px) {
  .tobid-results-header__controls .select-wrapper {
    width: 100%;
  }
}

.vehicle-list {
  background-color: #ffffff;
  overflow: hidden;
}
.vehicle-list .vehicle-cards-container {
  border-top: 1px solid #aaadb2;
}
.vehicle-list .vehicle-list__header {
  border-bottom: 1px solid #d5d7db;
  display: grid;
  grid-template-columns: 6rem 10rem 1fr 12rem 14rem 14rem;
  padding: 1rem 0;
  background-color: #f6f7f9;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-list .vehicle-list__header {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .vehicle-list .vehicle-list__header {
    display: none;
  }
}
.vehicle-list__col {
  font-size: 1.4rem;
  font-weight: 500;
  color: #2a2f38;
  text-align: center;
  line-height: 1.4;
}
.vehicle-cards {
  display: grid;
  grid-template-columns: 6rem 10rem 1fr 12rem 14rem 14rem;
  border-bottom: 1px solid #d5d7db;
  transition: all 150ms ease;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
}
@media (min-width: 1024px) {
  .vehicle-cards {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.8rem;
  }
  .vehicle-cards > * {
    grid-column: 1/-1;
  }
  .vehicle-cards .vehicle-cards__favorite {
    grid-column: 3/4;
  }
  .vehicle-cards .vehicle-cards__actions {
    grid-column: 4/5;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding: 1.6rem;
  }
  .vehicle-cards > * {
    grid-column: 1/-1;
  }
  .vehicle-cards .vehicle-cards__favorite {
    grid-column: 1/2;
  }
  .vehicle-cards .vehicle-cards__actions {
    grid-column: 2/3;
  }
}
.vehicle-cards__no {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #696e77;
  line-height: 1.2;
  height: 100%;
  word-break: break-all;
  text-align: center;
}
.vehicle-cards__no::before {
  content: "No.";
  display: block;
}
@media (min-width: 1024px) {
  .vehicle-cards__no::before {
    display: none;
  }
}
@media (min-width: 1024px) {
  .vehicle-cards__no {
    justify-content: center;
    border-right: 1px solid #d5d7db;
    padding: 2rem 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__no {
    font-size: 1.4rem;
  }
}
.vehicle-cards__category {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  height: 100%;
  word-break: break-all;
  text-align: center;
}
@media (min-width: 1024px) {
  .vehicle-cards__category {
    border-right: 1px solid #d5d7db;
    padding: 2rem 0.8rem;
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-cards__category {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__category {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
}
.vehicle-cards__badge {
  color: #2a2f38;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .vehicle-cards__badge {
    color: #0075ff;
    font-weight: 400;
  }
}
.vehicle-cards__date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.4rem;
  color: #2a2f38;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
}
.vehicle-cards__date span {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .vehicle-cards__date {
    color: #0075ff;
    gap: 0;
  }
}
.vehicle-cards__info {
  display: flex;
  gap: 1.6rem;
  height: 100%;
}
@media (min-width: 1024px) {
  .vehicle-cards__info {
    border-right: 1px solid #d5d7db;
    padding: 2rem 0.8rem;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__info {
    flex-direction: row;
    gap: 1.2rem;
  }
}
.vehicle-cards__image {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  overflow: hidden;
  background-color: #edeff2;
  position: relative;
}
@media (max-width: 767.98px) {
  .vehicle-cards__image {
    width: 7.6rem;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.vehicle-cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-cards__image .vehicle-slider {
  width: 100%;
  height: 100%;
}
.vehicle-cards__image .vehicle-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-cards__image .vehicle-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-cards__image .vehicle-slider .swiper-button-prev,
.vehicle-cards__image .vehicle-slider .swiper-button-next {
  width: 2.4rem;
  height: 2.4rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition: all 150ms ease;
}
.vehicle-cards__image .vehicle-slider .swiper-button-prev::after,
.vehicle-cards__image .vehicle-slider .swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2a2f38;
}
.vehicle-cards__image .vehicle-slider .swiper-button-prev:hover,
.vehicle-cards__image .vehicle-slider .swiper-button-next:hover {
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767.98px) {
  .vehicle-cards__image .vehicle-slider .swiper-button-prev,
  .vehicle-cards__image .vehicle-slider .swiper-button-next {
    width: 2rem;
    height: 2rem;
  }
  .vehicle-cards__image .vehicle-slider .swiper-button-prev::after,
  .vehicle-cards__image .vehicle-slider .swiper-button-next::after {
    font-size: 1rem;
  }
}
.vehicle-cards__image .vehicle-slider .swiper-button-prev {
  left: 0.4rem;
}
.vehicle-cards__image .vehicle-slider .swiper-button-next {
  right: 0.4rem;
}
.vehicle-cards__image .vehicle-slider .swiper-pagination {
  bottom: 0.8rem;
}
.vehicle-cards__image .vehicle-slider .swiper-pagination .swiper-pagination-bullet {
  width: 0.6rem;
  height: 0.6rem;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 150ms ease;
}
.vehicle-cards__image .vehicle-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed1438;
  width: 1.6rem;
  border-radius: 0.3rem;
}
.vehicle-cards__details {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.2rem;
}
@media (min-width: 1024px) {
  .vehicle-cards__details {
    justify-content: center;
  }
}
.vehicle-cards__title {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
@media (max-width: 767.98px) {
  .vehicle-cards__title {
    font-size: 1.8rem;
  }
}
.vehicle-cards__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0;
}
@media (max-width: 767.98px) {
  .vehicle-cards__specs {
    background: #f6f7f9;
    gap: 0.4rem;
    padding: 0.4rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.vehicle-cards__spec {
  font-size: 1.4rem;
  color: #2a2f38;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .vehicle-cards__spec {
    font-size: 1.3rem;
  }
}
.vehicle-cards__spec::after {
  content: "ㆍ";
  margin: 0 0.6rem;
  color: #bdbdbf;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .vehicle-cards__spec::after {
    margin-left: 0.4rem;
  }
}
.vehicle-cards__spec:last-child::after {
  display: none;
}
.vehicle-cards__bid {
  display: flex;
  word-break: break-all;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .vehicle-cards__bid {
    border-right: 1px solid #d5d7db;
    padding: 2rem 0.8rem;
    justify-content: center;
    height: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-cards__bid {
    width: fit-content;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
    background: #f0f2f5;
    color: #2a2f38;
    font-weight: 400;
  }
  .vehicle-cards__bid:before {
    font-size: 1.4rem;
    display: inline-block;
    content: "회원사명";
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__bid {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    color: #2a2f38;
    font-weight: 400;
  }
  .vehicle-cards__bid:before {
    font-size: 1.4rem;
    display: inline-block;
    content: "회원(사)명";
  }
}
.vehicle-cards__bid-label {
  font-size: 1.4rem;
  color: #2a2f38;
  line-height: 1.4;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-cards__bid-label:before {
    display: inline-flex;
    content: "|";
    position: relative;
    bottom: 1px;
    margin: 0 0.4rem;
    font-size: 1.2rem;
    color: #bdbdbf;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__bid-label {
    font-size: 1.3rem;
  }
}
.vehicle-cards__actions {
  height: 100%;
}
@media (min-width: 1024px) {
  .vehicle-cards__actions {
    border-left: 1px solid #d5d7db;
  }
}
.vehicle-cards__actions, .vehicle-cards__favorite {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vehicle-cards__actions .btn, .vehicle-cards__favorite .btn {
  width: 100%;
  padding: 1.2rem 0;
  height: auto;
}
@media (min-width: 1024px) {
  .vehicle-cards__actions, .vehicle-cards__favorite {
    padding: 2rem 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-cards__actions, .vehicle-cards__favorite {
    justify-content: flex-start;
  }
}
@media (max-width: 767.98px) {
  .vehicle-cards__actions .btn, .vehicle-cards__favorite .btn {
    width: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 2.4rem 0 4rem;
}
.pagination__btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.pagination__btn:focus {
  outline: none;
}
.pagination__btn {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.pagination__btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #696e77;
  background-color: transparent;
  border-radius: 9999px;
  transition: all 150ms ease;
}
.pagination__btn:hover:not(:disabled) {
  border-color: #80858b;
  fill: #dfe0e3;
}
.pagination__btn:disabled {
  color: #80858b;
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__btn--active {
  background-color: #f0f2f5;
  color: #696e77;
  border-color: #ed1438;
}
.pagination__btn--nav {
  background-color: transparent;
  font-size: 1.6rem;
  fill: #aaadb2;
}

.pagination-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 0 6.4rem;
}
.pagination-mobile__more {
  border: 1px solid #d5d7db;
  width: 100%;
  padding: 1.6rem 0;
  border-radius: 0.6rem;
}

/*
    padding-left: $grid-tablet-margin;
    padding-right: $grid-tablet-margin;
    padding-top: 52px;
*/
.tobid-vehicle-details-page {
  min-height: 100vh;
  padding-bottom: 8rem;
}
.tobid-vehicle-details-page .guide-count .start {
  display: flex;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  background-color: #fef6f7;
  color: #ed1438;
  width: 100%;
  font-size: 1.6rem;
  gap: 0.8rem;
}
.tobid-vehicle-details-page .guide-count .start span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.tobid-vehicle-details-page .guide-count .start strong {
  font-size: 2.2rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .guide-count .start strong {
    font-size: 1.8rem;
  }
}
.tobid-vehicle-details-page .guide-count .end {
  display: flex;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  background-color: #80858b;
  color: #ffffff;
  width: 100%;
  font-weight: 600;
  font-size: 1.6rem;
}
.tobid-vehicle-details-page .guide-count {
  margin-bottom: 2.4rem;
}
.tobid-vehicle-details-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .page-header {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
}
.tobid-vehicle-details-page .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .page-header__title {
    font-size: 2rem;
  }
}
.tobid-vehicle-details-page .page-header__breadcrumb {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #696e77;
}
.tobid-vehicle-details-page .page-header__breadcrumb .icon {
  position: relative;
  top: -0.3rem;
  color: #aaadb2;
}
.tobid-vehicle-details-page .page-header__breadcrumb .primary {
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .page-header__breadcrumb {
    font-size: 1.3rem;
  }
}
.tobid-vehicle-details-page .main-content h2,
.tobid-vehicle-details-page .main-content h3,
.tobid-vehicle-details-page .main-content h4,
.tobid-vehicle-details-page .main-content ul,
.tobid-vehicle-details-page .main-content ol,
.tobid-vehicle-details-page .main-content li {
  padding: 0;
}
.tobid-vehicle-details-page .main-content {
  display: grid;
  grid-template-columns: minmax(0, 66.4rem) minmax(0, 46.4rem);
  gap: 3.2rem;
  margin-bottom: 4rem;
}
.tobid-vehicle-details-page .main-content title {
  font-size: 1.8rem;
  font-weight: 700;
}
.tobid-vehicle-details-page .basic-info .header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #e9e9e9;
}
.tobid-vehicle-details-page .basic-info .header__address {
  display: flex;
  align-items: center;
  color: #0075ff;
  font-size: 1.6rem;
  font-weight: 500;
}
.tobid-vehicle-details-page .basic-info .header__numbers {
  display: flex;
  font-size: 1.4rem;
  color: #000714;
  gap: 0.8rem;
}
.tobid-vehicle-details-page .basic-info .header__numbers li {
  background-color: #e3f5ff;
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  margin: 0;
}
.tobid-vehicle-details-page .basic-info .header__numbers .number {
  font-weight: 600;
}
.tobid-vehicle-details-page .basic-info .header__title {
  font-size: 2.4rem;
  font-weight: 600;
}
.tobid-vehicle-details-page .basic-info .content {
  margin: 1.6rem 0 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #e9e9e9;
}
.tobid-vehicle-details-page .basic-info .content h2.title {
  color: #2a2f38;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.tobid-vehicle-details-page .basic-info .content .table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.tobid-vehicle-details-page .basic-info .content .table__row.temcol-1 {
  grid-column: 1/-1;
}
.tobid-vehicle-details-page .basic-info .content .table__field {
  display: flex;
  align-items: center;
}
.tobid-vehicle-details-page .basic-info .content .field__title {
  min-width: 8rem;
  color: #696e77;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
}
.tobid-vehicle-details-page .basic-info .content .field__value {
  font-weight: 600;
  font-size: 1.4rem;
}
.tobid-vehicle-details-page .basic-info .content .buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.tobid-vehicle-details-page .basic-info .content .buttons button {
  display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  border-radius: 6px;
  border: 1px solid #d5d7db;
  color: #2a2f38;
  font-size: 14px;
  font-weight: 600;
}
.tobid-vehicle-details-page .basic-info .buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.tobid-vehicle-details-page .basic-info .buttons button {
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 1 0 0;
  border-radius: 6px;
  color: #2a2f38;
  font-size: 1.6rem;
  font-weight: 600;
}
.tobid-vehicle-details-page .basic-info .buttons button.btn--primary {
  font-weight: 700;
}
.tobid-vehicle-details-page .basic-info .buttons .interest i {
  color: #ed1438;
}
.tobid-vehicle-details-page .basic-info .buttons .interest {
  color: #ed1438;
  border-radius: 6px;
  border: 1px solid #ed1438;
}
.tobid-vehicle-details-page .basic-info .buttons .interest:disabled i {
  color: #aaadb2;
}
.tobid-vehicle-details-page .basic-info .buttons .interest:disabled {
  color: #aaadb2;
  border-radius: 6px;
  border: #edeff2;
  background: #edeff2;
}
.tobid-vehicle-details-page .basic-info .buttons .interest.active i {
  color: #aaadb2;
}
.tobid-vehicle-details-page .basic-info .buttons .interest.active {
  color: #aaadb2;
  border-radius: 6px;
  border: #edeff2;
  background: #edeff2;
}
.tobid-vehicle-details-page .basic-info .buttons .btn--primary {
  color: #ffffff;
  font-size: 2rem;
}
.tobid-vehicle-details-page .basic-info .buttons .btn--end {
  color: #ffffff;
  background-color: #2a2f38;
}
.tobid-vehicle-details-page .info-section h2.title {
  color: #2a2f38;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.tobid-vehicle-details-page .info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 4rem;
}
.tobid-vehicle-details-page .info-section > div {
  display: flex;
  flex-direction: column;
}
.tobid-vehicle-details-page .info-section .text {
  border-radius: 0.8rem;
  flex: 1;
  padding: 2.4rem;
  background-color: #f6f7f9;
  overflow-wrap: anywhere;
}
.tobid-vehicle-details-page .history-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 8rem;
}
.tobid-vehicle-details-page .history-section .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.tobid-vehicle-details-page .history-section .field {
  display: flex;
  flex-direction: column;
}
.tobid-vehicle-details-page .history-section h2.title {
  color: #2a2f38;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}
.tobid-vehicle-details-page .history-section .date {
  color: #696e77;
  font-size: 1.4rem;
}
.tobid-vehicle-details-page .history-section .history-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  border: 1px solid #e9e9e9;
  padding: 2.4rem;
  border-radius: 0.8rem;
}
.tobid-vehicle-details-page .history-section .history-icons .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.tobid-vehicle-details-page .history-section .history-icons .item .sub-title {
  color: #80858b;
  font-size: 1.4rem;
}
.tobid-vehicle-details-page .history-section .history-icons .item .icon {
  color: #80858b;
}
.tobid-vehicle-details-page .history-section .history-icons .item.active .icon,
.tobid-vehicle-details-page .history-section .history-icons .item.active .title {
  color: #dd7d02;
}
.tobid-vehicle-details-page .history-section .history-amounts {
  border: 1px solid #e9e9e9;
  padding: 2.4rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(1, 1fr);
  flex: 1;
  border-radius: 0.8rem;
}
.tobid-vehicle-details-page .history-section .history-amounts .item {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.tobid-vehicle-details-page .history-section .history-amounts .title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.tobid-vehicle-details-page .history-section .history-amounts .title-wrapper > div {
  flex: 1;
  gap: 0.8rem;
}
.tobid-vehicle-details-page .history-section .history-amounts .button-wrapper {
  display: flex;
  gap: 0.8rem;
}
.tobid-vehicle-details-page .history-section .history-amounts .title {
  color: #696e77;
}
.tobid-vehicle-details-page .history-section .history-amounts .text {
  color: #2a2f38;
  font-size: 1.6rem;
}
.tobid-vehicle-details-page .history-section .history-amounts .btn {
  display: flex;
  width: 100%;
  margin-top: auto;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #d5d7db;
  gap: 0.4rem;
  color: #2a2f38;
  font-size: 1.6rem;
  font-weight: 600;
}
.tobid-vehicle-details-page .image-slider {
  width: 100%;
  /*    background-color: $color-bg-primary;
  border-radius: $radius-2xl;
  padding: $spacing-xl;
  margin-bottom: $spacing-xl;*/
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 2.4rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 1.6rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
  width: 100%;
  overflow: hidden;
  background-color: #edeff2;
  aspect-ratio: 5/4.5;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    aspect-ratio: 16/9;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: all 150ms ease;
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.2rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
  left: 1.6rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
    left: 0.8rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
  right: 1.6rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    right: 0.8rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
    font-size: 1.3rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: all 150ms ease;
  white-space: nowrap;
  position: relative;
}
.tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen::before {
  content: "|";
  margin: 0 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen:hover {
  color: #ed1438;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
    font-size: 1.3rem;
  }
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
  position: relative;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails {
  order: 2;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide {
  width: auto;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 150ms ease;
  outline: 3px solid transparent;
  box-sizing: border-box;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item:hover img {
  border: 3px solid #ed1438;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item.active img {
  border: 3px solid #ed1438;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
  order: 1;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
  order: 3;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev.swiper-button-disabled,
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next.swiper-button-disabled {
  opacity: 1;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev,
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
  display: flex;
  width: 4rem;
  max-height: 100%;
  background-color: #aaadb2;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: all 150ms ease;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after,
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
  left: -2rem;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after {
  transform: rotate(-135deg);
  margin-left: 0.2rem;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
  right: -2rem;
}
.tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
  transform: rotate(45deg);
  margin-right: 0.2rem;
}
.tobid-vehicle-details-page .image-slider .slider-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.tobid-vehicle-details-page .image-slider .slider-modal.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.tobid-vehicle-details-page .image-slider .slider-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1;
}
.tobid-vehicle-details-page .image-slider .slider-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-modal__content {
    padding: 0;
    max-height: 100vh;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-modal__content {
    padding: 0;
    max-height: 100vh;
    max-width: 100%;
  }
}
.tobid-vehicle-details-page .image-slider .slider-modal__header {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  padding: 1.3rem 1.6rem;
}
.tobid-vehicle-details-page .image-slider .slider-modal__close {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 150ms ease;
}
.tobid-vehicle-details-page .image-slider .slider-modal__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.tobid-vehicle-details-page .image-slider .slider-modal__close svg {
  width: 2.4rem;
  height: 2.4rem;
  color: #2a2f38;
}
.tobid-vehicle-details-page .image-slider .slider-modal__counter {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  z-index: 10;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen {
  width: 100%;
  height: 100%;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev::after,
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next::after {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev {
  left: 1rem;
}
.tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next {
  right: 1rem;
}
.tobid-vehicle-details-page .guide-count-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8.8rem;
  background-color: #ffffff;
  z-index: 99;
  border-top: 1px solid #e9e9e9;
}
.tobid-vehicle-details-page .guide-count-fixed .start {
  height: 100%;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner {
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  color: #ed1438;
  width: 100%;
  font-size: 1.6rem;
  gap: 3.2rem;
  flex: 1 0 auto;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner i {
  width: 2rem;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner .title {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-end;
  white-space: nowrap;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner .title span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner .title strong {
  font-size: 2.2rem;
}
.tobid-vehicle-details-page .guide-count-fixed .start .inner button {
  color: #ffffff;
  background-color: #ed1438;
  height: 4.4rem;
  border-radius: 0.8rem;
  font-weight: 700;
  /*        max-width: 54.4rem;
  width: 100%;*/
}
.tobid-vehicle-details-page .guide-count-fixed .end {
  background-color: #80858b;
  height: 100%;
}
.tobid-vehicle-details-page .guide-count-fixed .end .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  color: #ffffff;
  width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .guide-count-fixed .end .inner {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .guide-count-fixed .end .inner {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .guide-count {
    margin-bottom: 0;
  }
  .tobid-vehicle-details-page .page-header {
    padding-top: 52px;
  }
  .tobid-vehicle-details-page .info-section,
  .tobid-vehicle-details-page .history-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tobid-vehicle-details-page .page-header,
  .tobid-vehicle-details-page .basic-info {
    padding-top: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .tobid-vehicle-details-page .container {
    padding: 0;
  }
  .tobid-vehicle-details-page .main-content {
    display: block;
  }
  .tobid-vehicle-details-page .main-content title {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .tobid-vehicle-details-page .history-section .title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .tobid-vehicle-details-page .history-section h2.title {
    color: #2a2f38;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
  }
  .tobid-vehicle-details-page .history-section .date {
    color: #696e77;
    font-size: 1.4rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 0.8rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item .sub-title {
    color: #80858b;
    font-size: 1.4rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item .icon {
    color: #80858b;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item.active .icon,
  .tobid-vehicle-details-page .history-section .history-icons .item.active .title {
    color: #dd7d02;
  }
  .tobid-vehicle-details-page .history-section .history-amounts {
    padding: 2.4rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(1, 1fr);
    flex: 1;
    border-radius: 0.8rem;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .item {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .title-wrapper > div {
    flex: 0;
  }
  .tobid-vehicle-details-page .history-section > div {
    display: flex;
    flex-direction: column;
  }
  .tobid-vehicle-details-page .image-slider {
    width: 100%;
    /*    background-color: $color-bg-primary;
    border-radius: $radius-2xl;
    padding: $spacing-xl;
    margin-bottom: $spacing-xl;*/
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    position: relative;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    width: 100%;
    overflow: hidden;
    background-color: #edeff2;
    aspect-ratio: 5/4.9;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    aspect-ratio: 16/10;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    aspect-ratio: 16/9;
    border-radius: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: all 150ms ease;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
    left: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
    left: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    right: 1.6rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    right: 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
    position: absolute;
    bottom: 1.6rem;
    right: 1.6rem;
    display: flex;
    align-items: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1rem;
    border-radius: 0.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all 150ms ease;
    white-space: nowrap;
    position: relative;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen::before {
    content: "|";
    margin: 0 0.8rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen:hover {
    color: #ed1438;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    position: relative;
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails {
    order: 2;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide {
    width: auto;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 150ms ease;
    outline: 3px solid transparent;
    box-sizing: border-box;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item:hover img {
    border: 3px solid #ed1438;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item.active img {
    border: 3px solid #ed1438;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
    order: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    order: 3;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev.swiper-button-disabled,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next.swiper-button-disabled {
    opacity: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    display: flex;
    width: 4rem;
    max-height: 100%;
    background-color: #aaadb2;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 150ms ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
    left: -2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after {
    transform: rotate(-135deg);
    margin-left: 0.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    right: -2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
    transform: rotate(45deg);
    margin-right: 0.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__header {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    padding: 1.3rem 1.6rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 150ms ease;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close svg {
    width: 2.4rem;
    height: 2.4rem;
    color: #2a2f38;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__counter {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1rem;
    border-radius: 0.4rem;
    z-index: 10;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen {
    width: 100%;
    height: 100%;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next::after {
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev:hover,
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev {
    left: 1rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next {
    right: 1rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .guide-count {
    margin-bottom: 0;
  }
  .tobid-vehicle-details-page .info-section,
  .tobid-vehicle-details-page .history-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .tobid-vehicle-details-page .page-header {
    display: none;
  }
  .tobid-vehicle-details-page .basic-info {
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .tobid-vehicle-details-page .basic-info .header {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .tobid-vehicle-details-page .basic-info .header__address {
    display: flex;
    align-items: center;
    color: #0075ff;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .tobid-vehicle-details-page .basic-info .header__numbers {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    color: #000714;
    gap: 0.8rem;
  }
  .tobid-vehicle-details-page .basic-info .header__numbers li {
    width: fit-content;
    background-color: #e3f5ff;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    margin: 0;
  }
  .tobid-vehicle-details-page .basic-info .header__numbers .number {
    font-weight: 600;
  }
  .tobid-vehicle-details-page .basic-info .header__title {
    font-size: 2.4rem;
    font-weight: 600;
  }
  .tobid-vehicle-details-page .basic-info .content {
    margin: 1.6rem 0 2.4rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .tobid-vehicle-details-page .basic-info .content h2.title {
    color: #2a2f38;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
  }
  .tobid-vehicle-details-page .basic-info .content .table {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }
  .tobid-vehicle-details-page .basic-info .content .table__row.temcol-1 {
    grid-column: 1/-1;
  }
  .tobid-vehicle-details-page .basic-info .content .table__field {
    display: flex;
    align-items: center;
  }
  .tobid-vehicle-details-page .basic-info .content .buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.6rem;
  }
  .tobid-vehicle-details-page .basic-info .content .buttons button {
    display: flex;
    height: 44px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 6px;
    border: 1px solid #d5d7db;
    color: #2a2f38;
    font-size: 14px;
    font-weight: 600;
  }
  .tobid-vehicle-details-page .basic-info .buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.6rem;
  }
  .tobid-vehicle-details-page .basic-info .buttons button {
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
    border-radius: 6px;
    border: 1px solid #d5d7db;
    color: #2a2f38;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .tobid-vehicle-details-page .info-section h2.title {
    color: #2a2f38;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
  }
  .tobid-vehicle-details-page .info-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.2rem;
    margin-bottom: 4rem;
  }
  .tobid-vehicle-details-page .info-section > div {
    display: flex;
    flex-direction: column;
  }
  .tobid-vehicle-details-page .info-section .text {
    border-radius: 0.8rem;
    flex: 1;
    padding: 2.4rem;
    background-color: #f6f7f9;
  }
  .tobid-vehicle-details-page .container {
    padding-top: 141px;
    padding-left: 0;
    padding-right: 0;
  }
  .tobid-vehicle-details-page .main-content {
    display: block;
  }
  .tobid-vehicle-details-page .main-content title {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .tobid-vehicle-details-page .history-section {
    gap: 3.2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .tobid-vehicle-details-page .history-section .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .tobid-vehicle-details-page .history-section h2.title {
    color: #2a2f38;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
  }
  .tobid-vehicle-details-page .history-section .date {
    color: #696e77;
    font-size: 1.4rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 0.8rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item .sub-title {
    color: #80858b;
    font-size: 1.4rem;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item .icon {
    color: #80858b;
  }
  .tobid-vehicle-details-page .history-section .history-icons .item.active .icon,
  .tobid-vehicle-details-page .history-section .history-icons .item.active .title {
    color: #dd7d02;
  }
  .tobid-vehicle-details-page .history-section .history-amounts {
    padding: 2.4rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(1, 1fr);
    flex: 1;
    border-radius: 0.8rem;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .item {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
  .tobid-vehicle-details-page .history-section .history-amounts .title-wrapper > div {
    flex: 0;
  }
  .tobid-vehicle-details-page .history-section > div {
    display: flex;
    flex-direction: column;
  }
  .tobid-vehicle-details-page .image-slider {
    width: 100%;
    /*    background-color: $color-bg-primary;
    border-radius: $radius-2xl;
    padding: $spacing-xl;
    margin-bottom: $spacing-xl;*/
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 0;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    position: relative;
    width: 100%;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    width: 100%;
    overflow: hidden;
    background-color: #edeff2;
    aspect-ratio: 5/4.9;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    aspect-ratio: 16/10;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider {
    aspect-ratio: 16/9;
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: all 150ms ease;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.4rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    width: 3.2rem;
    height: 3.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next::after {
    font-size: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
    left: 1.6rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-prev {
    left: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    right: 1.6rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .vehicle-slider .swiper-button-next {
    right: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
    position: absolute;
    bottom: 1.6rem;
    right: 1.6rem;
    display: flex;
    align-items: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1rem;
    border-radius: 0.4rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .slider-counter {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all 150ms ease;
    white-space: nowrap;
    position: relative;
  }
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen::before {
    content: "|";
    margin: 0 0.8rem;
    color: rgba(255, 255, 255, 0.6);
  }
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen:hover {
    color: #ed1438;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-main .slider-controls .btn-fullscreen {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    position: relative;
    display: flex;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails {
    order: 2;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide {
    width: auto;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 150ms ease;
    outline: 3px solid transparent;
    box-sizing: border-box;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item:hover img {
    border: 3px solid #ed1438;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .vehicle-slider-thumbnails .swiper-slide.thumbnail-item.active img {
    border: 3px solid #ed1438;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
    order: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    order: 3;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev.swiper-button-disabled,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next.swiper-button-disabled {
    opacity: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    display: flex;
    width: 4rem;
    max-height: 100%;
    background-color: #aaadb2;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 150ms ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev {
    left: -2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-prev::after {
    transform: rotate(-135deg);
    margin-left: 0.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next {
    right: -2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-thumbnails-wrapper .thumbnail-nav-next::after {
    transform: rotate(45deg);
    margin-right: 0.2rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__content {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__header {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
    padding: 1.3rem 1.6rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 150ms ease;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__close svg {
    width: 2.4rem;
    height: 2.4rem;
    color: #2a2f38;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal__counter {
    position: absolute;
    bottom: 10rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0.6rem 1rem;
    border-radius: 0.4rem;
    z-index: 10;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen {
    width: 100%;
    height: 100%;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev::after,
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next::after {
    font-size: 2rem;
    font-weight: bold;
    color: white;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-prev {
    left: 1rem;
  }
  .tobid-vehicle-details-page .image-slider .slider-modal .vehicle-slider-fullscreen .swiper-button-next {
    right: 1rem;
  }
  .tobid-vehicle-details-page .guide-count-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    z-index: 99;
    border-top: 1px solid #e9e9e9;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner {
    padding-top: 1.2rem;
    padding-bottom: 2.8rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    justify-content: center;
    color: #fd4452;
    width: 100%;
    font-size: 1.6rem;
    gap: 1.2rem;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner i {
    width: 2rem;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner .title {
    display: flex;
    gap: 1.2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    min-width: 0;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner .title span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    min-width: 0;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner .title strong {
    font-size: 1.8rem;
  }
  .tobid-vehicle-details-page .guide-count-fixed .start .inner button {
    color: #ffffff;
    background-color: #fd4452;
    height: 4.4rem;
    border-radius: 0.8rem;
    font-weight: 700;
    width: 100%;
    min-width: 0;
  }
  .tobid-vehicle-details-page .guide-count-fixed .end {
    padding: 0 6rem;
    height: 6.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #80858b;
    color: #ffffff;
    width: 100%;
    font-weight: 700;
    font-size: 1.6rem;
  }
}
.bid-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.bid-popup.active {
  display: flex;
}
.bid-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.bid-popup__container {
  position: relative;
  width: 100%;
  max-width: 100rem;
  max-height: 90vh;
  background-color: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.bid-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2rem 4rem;
}
.bid-popup__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2a2f38;
  margin: 0;
}
.bid-popup__close {
  width: 4rem;
  height: 4rem;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2f38;
  transition: all 150ms ease;
}
.bid-popup__close:hover {
  opacity: 0.7;
}
.bid-popup__content {
  flex: 1;
  padding: 0 4rem 4rem;
}
.bid-popup__vehicle-info {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.bid-popup__vehicle-image {
  width: 8rem;
  height: 8rem;
  border-radius: 0.4rem;
  object-fit: cover;
}
.bid-popup__vehicle-details {
  flex: 1;
}
.bid-popup__vehicle-meta {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: #000714;
}
.bid-popup__vehicle-meta span {
  background-color: #f6f7f9;
  border-radius: 0.4rem;
  padding: 0.8rem 1.2rem;
}
.bid-popup__vehicle-meta strong {
  font-weight: 600;
  color: #000714;
}
.bid-popup__vehicle-name {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}
.bid-popup__accordion {
  border: 1px solid #e9e9e9;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.bid-popup__accordion-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  transition: all 150ms ease;
}
.bid-popup__accordion-item.active .bid-popup__accordion-icon {
  transform: rotate(180deg);
}
.bid-popup__accordion-icon {
  transition: transform all 150ms ease;
}
.bid-popup__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.bid-popup__accordion-content.active {
  max-height: 100%;
}
.bid-popup__accordion-body {
  margin: 0 2rem 2rem;
  border-top: 1px solid #e9e9e9;
  padding-top: 2rem;
  font-size: 1.4rem;
  color: #2a2f38;
  line-height: 1.6;
}
.bid-popup__accordion-body p {
  margin: 0;
}
.bid-popup__accordion-body p:last-child {
  margin-bottom: 0;
}
.bid-popup__more-label {
  color: #000714;
  font-size: 2rem;
  margin: 1.6rem 0 0.8rem 0 !important;
}
.bid-popup__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bid-popup__list li {
  padding: 0.4rem 0;
  font-size: 2rem;
  color: #aaadb2;
}
.bid-popup__input-section {
  border: 1px solid #ed1438;
  border-radius: 0.4rem;
  padding: 3.2rem 2.4rem;
  margin-bottom: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.bid-popup__input-title {
  grid-column: 1/-1;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  padding-bottom: 1.6rem;
  margin: 0 0 1.6rem 0;
  border-bottom: 1px solid #e9e9e9;
}
.bid-popup__input-group {
  grid-column: 2/-1;
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
  justify-content: flex-end;
  gap: 1.6rem;
}
.bid-popup__input-group:last-child {
  margin-bottom: 0;
}
.bid-popup__label {
  min-width: 8rem;
  text-align: right;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2f38;
}
.bid-popup__input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.bid-popup__input {
  flex: 1;
  height: 4.8rem;
  padding: 0 1.6rem 0 1.6rem;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  color: #2a2f38;
  background-color: #ffffff;
  text-align: right;
}
.bid-popup__input::placeholder {
  color: #aaadb2;
}
.bid-popup__input.bid-disabled::placeholder {
  color: #80858b;
}
.bid-popup__input:focus {
  outline: none;
  border-color: #fd4452;
}
.bid-popup__input:disabled {
  background-color: #edeff2;
  color: red;
  cursor: not-allowed;
}
.bid-popup__unit {
  right: 1.6rem;
  font-size: 1.6rem;
  color: #2a2f38;
  font-weight: 400;
  pointer-events: none;
}
.bid-popup__notice {
  background-color: #f6f7f9;
  border-radius: 0.4rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}
.bid-popup__notice-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #696e77;
  margin: 0 0 1.6rem 0;
}
.bid-popup__notice-content {
  font-size: 1.8rem;
  color: #aaadb2;
  line-height: 1.6;
}
.bid-popup__notice-content p {
  font-size: 1.3rem;
  color: #2a2f38;
  margin: 0 0 1.6rem 0;
}
.bid-popup__notice-list {
  margin: 0;
  padding-left: 0;
  font-size: 1.3rem;
  color: #2a2f38;
}
.bid-popup__notice-list > li {
  list-style: decimal;
  margin-left: 1.6rem;
}
.bid-popup__notice-list li {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  letter-spacing: -0.325px;
}
.bid-popup__notice-list li:last-child {
  margin-bottom: 0;
}
.bid-popup__notice-list li ul {
  margin-top: 0.8rem;
  padding-left: 0;
}
.bid-popup__notice-list li ul li {
  margin-bottom: 0.4rem;
}
.bid-popup__submit-btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.bid-popup__submit-btn {
  width: 50%;
  height: 4.8rem;
  background-color: #ed1438;
  color: #ffffff;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 150ms ease;
}
.bid-popup__submit-btn:hover {
  background-color: #ed1438;
}
.bid-popup__submit-btn:active {
  transform: scale(0.98);
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .bid-popup__vehicle-meta {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
  .bid-popup__vehicle-meta span {
    width: fit-content;
  }
  .bid-popup__vehicle-meta strong {
    font-weight: 600;
    color: #000714;
  }
  .bid-popup__container {
    max-width: 64.8rem;
  }
  .bid-popup__header {
    padding: 4rem 2rem 2rem;
  }
  .bid-popup__content {
    padding: 2rem;
  }
  .bid-popup__vehicle-image {
    width: 6.4rem;
    height: 6.4rem;
  }
  .bid-popup__vehicle-meta {
    flex-direction: column;
    gap: 0.4rem;
  }
  .bid-popup__input-section {
    padding: 2.4rem 1.6rem;
  }
  .bid-popup__input-group {
    flex-direction: row;
    gap: 0.8rem;
  }
  .bid-popup__input-wrapper {
    width: 100%;
  }
  .bid-popup__input-section {
    border: 1px solid #ed1438;
    border-radius: 0.8rem;
    padding: 3.2rem 2.4rem;
    margin-bottom: 2.4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767.98px) {
  .bid-popup {
    align-items: flex-end;
  }
  .bid-popup__vehicle-meta {
    color: #000714;
  }
  .bid-popup__vehicle-meta span {
    font-size: 1.3rem;
    color: #696e77;
    background-color: transparent;
    border-radius: 0.4rem;
    padding: 0;
  }
  .bid-popup__vehicle-meta strong {
    font-weight: 600;
    color: #000714;
  }
  .bid-popup__container {
    max-width: 100%;
    max-height: 100vh;
    max-height: -webkit-fill-available;
    max-height: 100dvh;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  .bid-popup__header {
    position: sticky;
    top: 0;
    flex-shrink: 0;
    background-color: #ffffff;
    z-index: 1;
    padding: 1.6rem 1.6rem;
  }
  .bid-popup__title {
    font-size: 2rem;
  }
  .bid-popup__close {
    width: 3.2rem;
    height: 3.2rem;
  }
  .bid-popup__close svg {
    width: 2rem;
    height: 2rem;
  }
  .bid-popup__content {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.6rem;
    gap: 2rem;
  }
  .bid-popup__content .order-0 {
    order: 0;
  }
  .bid-popup__content .order-3 {
    order: 1;
  }
  .bid-popup__content > div, .bid-popup__content > button {
    order: 4;
  }
  .bid-popup__notice {
    margin-top: 4rem;
  }
  .bid-popup__accordion {
    margin: 0;
  }
  .bid-popup__vehicle-info {
    display: grid;
    grid-template-columns: max-content 1fr 1fr;
    gap: 1.2rem;
    margin: 0;
  }
  .bid-popup__vehicle-image {
    width: 8rem;
    height: 8rem;
  }
  .bid-popup__vehicle-details {
    display: flex;
    align-items: center;
    grid-column: 2/-1;
  }
  .bid-popup__vehicle-meta {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 2rem;
    margin: 0;
  }
  .bid-popup__vehicle-name {
    font-size: 1.8rem;
    grid-column: 1/-1;
  }
  .bid-popup__accordion-item {
    padding: 1.2rem 1.6rem;
    font-size: 1.8rem;
  }
  .bid-popup__accordion-body {
    font-size: 1.4rem;
  }
  .bid-popup__input-section {
    padding: 2rem 1.6rem;
    margin: 0;
  }
  .bid-popup__input-title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }
  .bid-popup__input-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    grid-column: 1/-1;
  }
  .bid-popup__label {
    min-width: auto;
    font-size: 1.6rem;
  }
  .bid-popup__input-wrapper {
    width: 100%;
  }
  .bid-popup__input {
    height: 4.4rem;
    font-size: 1.4rem;
  }
  .bid-popup__unit {
    font-size: 1.6rem;
  }
  .bid-popup__notice {
    padding: 1.6rem;
    margin-bottom: 10rem;
  }
  .bid-popup__notice-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
  .bid-popup__notice-content {
    font-size: 2rem;
  }
  .bid-popup__notice-content p {
    margin-bottom: 1.2rem;
  }
  .bid-popup__submit-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1.6rem 1.6rem 2.8rem;
    width: 100%;
    border-top: 1px solid #e9e9e9;
    background-color: #fff;
  }
  .bid-popup__submit-btn {
    width: 100%;
    height: 5.2rem;
    font-size: 1.6rem;
  }
}
.tobid-vehicle-insurance-page {
  color: #2a2f38;
  min-height: 100vh;
  margin-bottom: 8rem;
}
.tobid-vehicle-insurance-page h2 {
  margin: 0;
}
.tobid-vehicle-insurance-page .insurance-header {
  margin-bottom: 2rem;
}
.tobid-vehicle-insurance-page .insurance-header__title {
  color: #2a2f38;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.6px;
  margin: 0;
}
.tobid-vehicle-insurance-page .damage-section,
.tobid-vehicle-insurance-page .special-section,
.tobid-vehicle-insurance-page .change-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 4rem;
}
.tobid-vehicle-insurance-page .special-section > .insurance-section,
.tobid-vehicle-insurance-page .change-section > .insurance-section {
  border: 1px solid #edeff2;
  padding: 2.4rem 2rem;
  border-radius: 2rem;
}
.tobid-vehicle-insurance-page .damage-section {
  padding: 2.4rem 2rem;
  border: 1px solid #edeff2;
  border-radius: 2rem;
}
.tobid-vehicle-insurance-page .insurance-section__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #edeff2;
}
.tobid-vehicle-insurance-page .insurance-section__title {
  font-size: 1.6rem;
  font-weight: 700;
}
.tobid-vehicle-insurance-page .insurance-section__badge .badge-text {
  font-size: 1.6rem;
  font-weight: 600;
}
.tobid-vehicle-insurance-page .insurance-section__badge .badge-text.issue {
  color: #dd7d02;
}
.tobid-vehicle-insurance-page .damage-record {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.tobid-vehicle-insurance-page .damage-record:last-child {
  margin-bottom: 0;
}
.tobid-vehicle-insurance-page .damage-record__header {
  display: flex;
  justify-content: space-between;
}
.tobid-vehicle-insurance-page .damage-record__date {
  color: #80858b;
}
.tobid-vehicle-insurance-page .damage-record__amount {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.tobid-vehicle-insurance-page .damage-record__amount .badge--danger {
  background-color: #ff2700;
  color: #ffffff;
  padding: 0.25rem 0.4rem;
  border-radius: 0.2rem;
  font-size: 1.1rem;
  display: inline-flex;
}
.tobid-vehicle-insurance-page .damage-record__details {
  display: grid;
  gap: 0.8rem;
  color: #80858b;
  padding: 1.2rem;
  border-radius: 0.4rem;
  background-color: #f6f7f9;
}
.tobid-vehicle-insurance-page .damage-record__details .detail-row {
  display: flex;
  justify-content: space-between;
}
.tobid-vehicle-insurance-page .status-list,
.tobid-vehicle-insurance-page .history-list {
  display: grid;
  gap: 1.6rem;
}
.tobid-vehicle-insurance-page .status-item,
.tobid-vehicle-insurance-page .history-item {
  display: flex;
  justify-content: space-between;
}
.tobid-vehicle-insurance-page .status-item .status-item__label,
.tobid-vehicle-insurance-page .status-item .history-item__date,
.tobid-vehicle-insurance-page .history-item .status-item__label,
.tobid-vehicle-insurance-page .history-item .history-item__date {
  color: #80858b;
}
.tobid-vehicle-insurance-page .status-item .issue,
.tobid-vehicle-insurance-page .history-item .issue {
  color: #dd7d02;
  font-weight: 700;
}
.tobid-vehicle-insurance-page .insurance-notice {
  background-color: #f6f7f9;
  padding: 1.6rem;
  border-radius: 0.4rem;
}
.tobid-vehicle-insurance-page .insurance-notice .insurance-notice__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
}
.tobid-vehicle-insurance-page .insurance-notice li {
  display: inline-flex;
  gap: 0.6rem;
  margin: 0;
  position: relative;
}
.tobid-vehicle-insurance-page .insurance-notice li:before {
  position: absolute;
  left: -1rem;
  top: 1.1rem;
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  background-color: #2a2f38;
  border-radius: 9999px;
}

@media (max-width: 767.98px) {
  .tobid-vehicle-insurance-page {
    margin-bottom: 8rem;
  }
  .tobid-vehicle-insurance-page .container {
    padding-top: 0;
  }
  .tobid-vehicle-insurance-page .insurance-header {
    background-color: #ffffff;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    padding: 0 1.6rem;
    height: 5.2rem;
  }
  .tobid-vehicle-insurance-page .insurance-header__title {
    font-size: 2rem;
  }
  .tobid-vehicle-insurance-page .insurance-date {
    padding-top: 7rem;
    color: #80858b;
    margin: 0;
  }
  .tobid-vehicle-insurance-page .damage-section,
  .tobid-vehicle-insurance-page .special-section,
  .tobid-vehicle-insurance-page .change-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
  }
  .tobid-vehicle-insurance-page .special-section > .insurance-section,
  .tobid-vehicle-insurance-page .change-section > .insurance-section {
    border: none;
    padding: 0;
    border-radius: 2rem;
  }
  .tobid-vehicle-insurance-page .damage-section {
    padding: 2.4rem 0 0;
    border: none;
    border-radius: 2rem;
  }
  .tobid-vehicle-insurance-page .insurance-section__header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid #edeff2;
  }
  .tobid-vehicle-insurance-page .insurance-section__title {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .tobid-vehicle-insurance-page .insurance-section__badge .badge-text {
    font-size: 1.6rem;
    font-weight: 600;
  }
  .tobid-vehicle-insurance-page .insurance-section__badge .badge-text.issue {
    color: #dd7d02;
  }
  .tobid-vehicle-insurance-page .damage-record {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .tobid-vehicle-insurance-page .damage-record:last-child {
    margin-bottom: 0;
  }
  .tobid-vehicle-insurance-page .damage-record__header {
    display: flex;
    justify-content: space-between;
  }
  .tobid-vehicle-insurance-page .damage-record__date {
    color: #80858b;
  }
  .tobid-vehicle-insurance-page .damage-record__amount {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }
  .tobid-vehicle-insurance-page .damage-record__amount .badge--danger {
    background-color: #ff2700;
    color: #ffffff;
    padding: 0.25rem 0.4rem;
    border-radius: 0.2rem;
    font-size: 1.1rem;
    display: inline-flex;
  }
  .tobid-vehicle-insurance-page .damage-record__details {
    display: grid;
    gap: 0.8rem;
    color: #80858b;
    padding: 1.2rem;
    border-radius: 0.4rem;
    background-color: #f6f7f9;
  }
  .tobid-vehicle-insurance-page .damage-record__details .detail-row {
    display: flex;
    justify-content: space-between;
  }
  .tobid-vehicle-insurance-page .status-list,
  .tobid-vehicle-insurance-page .history-list {
    display: grid;
    gap: 1.6rem;
  }
  .tobid-vehicle-insurance-page .status-item,
  .tobid-vehicle-insurance-page .history-item {
    display: flex;
    justify-content: space-between;
  }
  .tobid-vehicle-insurance-page .status-item .status-item__label,
  .tobid-vehicle-insurance-page .status-item .history-item__date,
  .tobid-vehicle-insurance-page .history-item .status-item__label,
  .tobid-vehicle-insurance-page .history-item .history-item__date {
    color: #80858b;
  }
  .tobid-vehicle-insurance-page .status-item .issue,
  .tobid-vehicle-insurance-page .history-item .issue {
    color: #dd7d02;
    font-weight: 700;
  }
  .tobid-vehicle-insurance-page .insurance-notice {
    background-color: #f6f7f9;
    padding: 1.6rem;
    border-radius: 0.4rem;
  }
  .tobid-vehicle-insurance-page .insurance-notice .insurance-notice__list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1rem;
  }
  .tobid-vehicle-insurance-page .insurance-notice li {
    display: inline-flex;
    gap: 0.6rem;
    margin: 0;
    position: relative;
    word-break: break-all;
    line-height: 140%;
    font-size: 1.3rem;
  }
  .tobid-vehicle-insurance-page .insurance-notice li:before {
    position: absolute;
    left: -1rem;
    top: 1.1rem;
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    content: "";
    background-color: #2a2f38;
    border-radius: 9999px;
  }
}
.vehicle-registration-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
}
.vehicle-registration-page [aria-expanded=false] {
  transform: rotate(180deg);
}
.vehicle-registration-page .hidden {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .grid-w-max {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.vehicle-registration-page .required-mark--left:before {
  content: "*";
  display: inline-flex;
  color: #ed1438;
  font-weight: 700;
}
.vehicle-registration-page .required-mark--right:after {
  content: "*";
  display: inline-flex;
  color: #ed1438;
  font-weight: 700;
}
.vehicle-registration-page .page-titlebar__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #aaadb2;
}
.vehicle-registration-page .page-titlebar__breadcrumb .primary {
  color: #2a2f38;
}
.vehicle-registration-page .vehicle-registration-content {
  background-color: #ffffff;
  border-radius: 2rem;
  padding: 2.4rem 1.6rem;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-registration-content {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.vehicle-registration-page .vehicle-registration-content__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
}
.vehicle-registration-page {
  /* section 분리 */
  /* 출품 차량 정보 입력 */
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section {
    padding: 2.4rem 1.6rem 2.4rem;
    border-radius: 2rem;
  }
}
.vehicle-registration-page .enter-vehicle-information-section {
  background-color: #ffffff;
  width: 100%;
}
.vehicle-registration-page .enter-vehicle-information-section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
}
.vehicle-registration-page .enter-vehicle-information-section__header .title-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.vehicle-registration-page .enter-vehicle-information-section__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section__header {
    margin-bottom: 0;
    align-items: start;
  }
  .vehicle-registration-page .enter-vehicle-information-section__header .title-wrapper {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
@media (max-width: 1023px) {
  .vehicle-registration-page .enter-vehicle-information-section .table {
    display: flex;
    flex-direction: column;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (max-width: 1023px) {
  .vehicle-registration-page .enter-vehicle-information-section .table__row {
    display: contents;
  }
}
@media (min-width: 1024px) {
  .vehicle-registration-page .enter-vehicle-information-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
@media (max-width: 1023px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-1 {
    order: -3;
    border-top: 1px solid #d5d7db;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-2 {
    order: -6;
    border-top: none;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-3 {
    order: -2;
    border-top: 1px solid #d5d7db;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-4 {
    order: -5;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-5 {
    order: -1;
    border-top: 1px solid #d5d7db;
    border-bottom: 1px solid #d5d7db;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.field-6 {
    order: -4;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.m-bt-1 {
    border-top: 1px solid #d5d7db;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.m-bb-1 {
    border-bottom: 1px solid #d5d7db;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__title.u-items-start {
  padding-top: 2rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value .radio-items .radio {
  flex: 1 auto;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value.vehicle-number {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value.vehicle-number .input-group {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .field__value.vehicle-number .input-group .btn {
  border: 1px solid #d5d7db;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  min-width: 8rem;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .field {
    border-top: none !important;
    border-bottom: none !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field__title {
    width: 100%;
    justify-content: flex-start;
    background-color: transparent;
    min-height: auto;
    padding: 2rem 0 0;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field__value {
    padding: 0;
    width: 100%;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field__value.mileage {
    gap: 0.8rem;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field.u-items-start {
    padding-top: 0;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field .radio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .field .radio-items {
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .field .radio-items .item {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field .radio-items .radio {
    flex: 1 auto;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field .modal-title {
    padding: 0;
    margin: 0.6rem 0;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field .custom-wrapper {
    width: 100%;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .field .u-show-below-desktop {
    padding: 0.6rem 0 0;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .modal-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin-top: 2rem;
  padding: 0 1.6rem;
  display: block;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .modal-title {
    font-size: 1.4rem;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .radio-set {
  display: flex;
  flex-direction: column;
  flex: 1 auto;
}
.vehicle-registration-page .enter-vehicle-information-section .table .radio-set__title {
  font-size: 1.4rem;
  color: #80858b;
  margin-bottom: 0.8rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .radio-set__container {
  display: flex;
  overflow: hidden;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  height: 17.6rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .radio-set__content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 1.2rem 1.6rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .radio-set__items {
  gap: 0.8rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0.8rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-set .select-wrapper {
  flex: 1 auto;
  width: 100%;
}
.vehicle-registration-page .enter-vehicle-information-section .table .input-items {
  padding: 0;
  display: flex;
  gap: 2.4rem;
  width: 100%;
}
.vehicle-registration-page .enter-vehicle-information-section .table .input-items span {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.vehicle-registration-page .enter-vehicle-information-section .table .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
  margin: 0;
}
.vehicle-registration-page .enter-vehicle-information-section .table .input-items input {
  padding: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .input-items {
    flex-direction: column;
    gap: 1.2rem 0.8rem;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .input-items input {
    padding-left: 1.6rem;
    text-align: left;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .input-items span {
    min-width: 5.6rem;
  }
  .vehicle-registration-page .enter-vehicle-information-section .table .input-items li {
    flex: 1 auto;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-items {
  display: flex;
  width: 100%;
  gap: 0.8rem;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table .select-items {
    gap: 0.6rem;
  }
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-items .swapping-items__item {
  display: none;
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-items .swapping-items__item.active {
  display: block;
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-items .item {
  width: 100%;
}
.vehicle-registration-page .enter-vehicle-information-section .table .select-items .item:first-child {
  width: 14.4rem;
}
.vehicle-registration-page .enter-vehicle-information-section .table textarea {
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  resize: none;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .enter-vehicle-information-section .table {
    border-top: none !important;
  }
}
.vehicle-registration-page {
  /* 모바일 전용 묶음 */
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .mobile-exclusive-section {
    padding: 2.4rem 1.6rem 2.4rem;
    border-radius: 2rem;
    background-color: #ffffff;
  }
  .vehicle-registration-page .mobile-exclusive-section__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .vehicle-registration-page .mobile-exclusive-section__header .title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2a2f38;
    line-height: 1.4;
    margin: 0;
  }
  .vehicle-registration-page .mobile-exclusive-section .required-mark--left {
    margin-bottom: 1.6rem;
  }
  .vehicle-registration-page .mobile-exclusive-section .title-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.vehicle-registration-page {
  /* 차량 사진 업로드 */
}
.vehicle-registration-page .upload-vehicle-photo-section__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
  margin-top: 4rem;
}
.vehicle-registration-page .upload-vehicle-photo-section__header .title-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.vehicle-registration-page .upload-vehicle-photo-section__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
.vehicle-registration-page .upload-vehicle-photo-section .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
.vehicle-registration-page .upload-vehicle-photo-section .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .upload-vehicle-photo-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .upload-vehicle-photo-section .table__row {
    border-bottom: none;
  }
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .upload-vehicle-photo-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
  text-align: right;
  line-height: 1.2;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field__title.u-items-start {
  padding-top: 2rem;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field__value {
  background: #ffffff;
  padding: 0.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .photo-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.6rem;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .photo-list .photo-item {
  position: relative;
  width: 7.6rem;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .photo-list .photo-item .close {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .photo-list .photo-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .photo-list .photo-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list .register-item .register-item-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .register-list .register-item img {
  width: 100%;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .btn {
  width: 20rem;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.vehicle-registration-page .upload-vehicle-photo-section .table .field .u-items-start {
  padding-top: 2rem;
  padding-left: 2.1rem;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .upload-vehicle-photo-section .table .field {
    border-top: none !important;
    border-bottom: none !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field__title {
    width: 100%;
    justify-content: flex-start;
    background-color: transparent;
    min-height: auto;
    padding: 2rem 0 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field__value {
    padding: 0;
    width: 100%;
    gap: 1.6rem;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field.u-items-start {
    padding-top: 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .radio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .radio-items .item {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .radio-items .radio {
    flex: 1 auto;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .modal-title {
    padding: 0;
    margin: 0.6rem 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .custom-wrapper {
    width: 100%;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .u-show-below-desktop {
    padding: 0.6rem 0 0;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .order-1 {
    order: 3;
    width: 100%;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .order-3 {
    order: 1;
  }
  .vehicle-registration-page .upload-vehicle-photo-section .table .field .u-items-start {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .upload-vehicle-photo-section .table {
    border-top: none;
  }
}
.vehicle-registration-page {
  /* 성능 점검 기록부 */
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .performance-inspection-record {
    padding: 2.4rem 0 0;
    border-radius: 2rem;
    background-color: #ffffff;
  }
}
.vehicle-registration-page .performance-inspection-record__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.6rem;
  margin-top: 4rem;
}
.vehicle-registration-page .performance-inspection-record__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
.vehicle-registration-page .performance-inspection-record .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
.vehicle-registration-page .performance-inspection-record .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .performance-inspection-record .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
.vehicle-registration-page .performance-inspection-record .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
  min-width: 0;
}
.vehicle-registration-page .performance-inspection-record .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .performance-inspection-record .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.vehicle-registration-page .performance-inspection-record .table .field .btn {
  width: 20rem;
}
.vehicle-registration-page .performance-inspection-record .table .field .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.vehicle-registration-page .performance-inspection-record .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.vehicle-registration-page .performance-inspection-record .table .field__value {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
  min-width: 0;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .radio-group--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .radio-group--inline .radio {
  flex: 1 auto;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .checkbox-group--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .checkbox-group--inline .checkbox {
  flex: 1 auto;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .text-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .input-items {
  padding: 0;
  display: flex;
  gap: 2.4rem;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .input-items span {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .input-items input {
  padding: 0;
  text-align: center;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .select-items {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .select-items .swapping-items__item {
  display: none;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .select-items .swapping-items__item.active {
  display: block;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .select-items .item {
  width: 100%;
}
.vehicle-registration-page .performance-inspection-record .table .field__value .select-items .item:first-child {
  width: 14.4rem;
}
.vehicle-registration-page .performance-inspection-record .table .field__value textarea {
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  resize: none;
}
.vehicle-registration-page .performance-inspection-record .table .field .u-items-start {
  padding-top: 2rem;
}
.vehicle-registration-page .performance-inspection-record .table .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
  min-width: 0;
}
.vehicle-registration-page .performance-inspection-record .table .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .performance-inspection-record .table .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .performance-inspection-record .table .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .performance-inspection-record .table .register-list .register-item .register-item-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.vehicle-registration-page .performance-inspection-record .table .register-list .register-item img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .performance-inspection-record .table__row {
    border-bottom: none;
  }
  .vehicle-registration-page .performance-inspection-record .table .field {
    border-top: none !important;
    border-bottom: none !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .vehicle-registration-page .performance-inspection-record .table .field__title {
    width: 100%;
    justify-content: flex-start;
    background-color: transparent;
    min-height: auto;
    padding: 2rem 0 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field__value {
    padding: 0;
    width: 100%;
    gap: 1.6rem;
  }
  .vehicle-registration-page .performance-inspection-record .table .field.u-items-start {
    padding-top: 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .radio-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .radio-items .item {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .radio-items .radio {
    flex: 1 auto;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .modal-title {
    padding: 0;
    margin: 0.6rem 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .custom-wrapper {
    width: 100%;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .u-show-below-desktop {
    padding: 0.6rem 0 0;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .order-1 {
    order: 3;
    width: 100%;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .order-3 {
    order: 1;
  }
  .vehicle-registration-page .performance-inspection-record .table .field .u-items-start {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .performance-inspection-record .table {
    border-top: none;
  }
}
.vehicle-registration-page {
  /* 차량 전개도 */
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section {
    padding: 2.4rem 1.6rem 2.4rem;
    border-radius: 2rem;
    background-color: #ffffff;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section__header {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  align-items: end;
  margin-top: 4rem;
}
.vehicle-registration-page .vehicle-development-diagram-section__header .title-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 1.2rem;
}
.vehicle-registration-page .vehicle-development-diagram-section__header .title-wrapper .checkbox {
  margin-bottom: 1.6rem;
}
.vehicle-registration-page .vehicle-development-diagram-section__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section__header {
    margin-top: 0;
    align-items: start;
  }
  .vehicle-registration-page .vehicle-development-diagram-section__header .title-wrapper {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
.vehicle-registration-page .vehicle-development-diagram-section .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .vehicle-development-diagram-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .table__row {
    border-bottom: none;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .car-diagram-section {
  position: relative;
  display: flex;
  flex-direction: row; /* PC: 가로 나란히 */
  gap: 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .vehicle-development-diagram-section .car-diagram-section {
    gap: 9rem;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .car-diagram__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list-header {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  text-align: center;
  padding: 2.4rem 0;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list-title {
    text-align: left;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list {
  display: flex;
  flex-direction: row;
  margin: 0;
  flex-wrap: wrap;
  font-weight: 600;
  color: #2a2f38;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list .damage-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list .damage-item {
    min-width: 9.6rem;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list .damage-icon {
  width: 2.8rem;
  height: 2.8rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list {
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list {
    gap: 0.8rem 0.3rem;
  }
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header .damage-list .damage-icon {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header:first-child {
    border-top: none;
    padding-top: 0;
  }
  .vehicle-registration-page .vehicle-development-diagram-section .damage-list-header {
    padding: 3.6rem 0 0;
    border-top: 1px solid #d5d7db;
    gap: 1.4rem;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* Tablet/Mobile: 세로 1열 */
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .car-diagram-section {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .car-diagram-section {
    flex-direction: column;
  }
  .vehicle-registration-page .vehicle-development-diagram-section .table {
    border-top: 0;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 차량 전개도 전용 스타일 */
}
.vehicle-registration-page .vehicle-development-diagram-section .car-diagram-container {
  position: relative;
}
.vehicle-registration-page .vehicle-development-diagram-section .car-diagram-wrapper {
  position: relative; /* 각 섹션의 모달 absolute 기준점 */
  display: flex;
  align-items: center;
  width: 100%;
}
.vehicle-registration-page .vehicle-development-diagram-section .car-diagram-image {
  width: auto;
  height: auto;
  display: block;
  max-height: 52rem;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .vehicle-development-diagram-section .car-diagram-image {
    max-height: 59.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .car-diagram-image {
    max-height: 102.4rem;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 클릭 가능한 번호 영역 */
}
.vehicle-registration-page .vehicle-development-diagram-section .clickable-number {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(204, 204, 204, 0.7);
  color: #000714;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 손상 타입이 있을 때 */
}
.vehicle-registration-page .vehicle-development-diagram-section .clickable-number.has-damage {
  width: auto;
  height: 22px;
  border-radius: 14px;
  padding: 0 8px;
  background-color: #fff5da;
  border: 1px solid #2a2f38;
  left: calc(var(--center-x, 0) * 1px) !important;
  top: calc(var(--center-y, 0) * 1px - 14px) !important;
  transform: translateX(-50%);
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 번호 텍스트 (기본 상태) */
}
.vehicle-registration-page .vehicle-development-diagram-section .clickable-number__text {
  display: inline-block;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 손상 타입 라벨 */
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-label {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a2f38;
  white-space: nowrap;
  pointer-events: none;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-x {
  color: #ed1438;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-w {
  color: #0075ff;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-q,
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-p,
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-a,
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-f,
.vehicle-registration-page .vehicle-development-diagram-section .damage-label .type-m {
  color: #696e77;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /*.clickable-number:hover {
    background-color: rgba(237, 20, 56, 1);
    transform: scale(1.1);
  }*/
  /*
  .clickable-number.active {
    background-color: #0075ff;
    box-shadow: 0 0 0 4px rgba(0, 117, 255, 0.2);
  }
  */
  /* 모달 오버레이 */
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 400;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-overlay.active {
  display: block;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 모달 컨테이너 */
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-dialog {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 11;
  display: none;
  min-width: 200px;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .vehicle-development-diagram-section .modal-dialog {
    position: fixed;
    left: 30% !important;
    right: 0;
    bottom: 0 !important;
    top: 0 !important;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    transform: none !important;
    z-index: 401;
  }
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-dialog.active {
  display: flex;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 모달 헤더 */
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2a2f38;
  margin: 0;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-close {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696e77;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-close:hover {
  color: #2a2f38;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 모달 바디 */
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-body {
  padding: 1.2rem;
  flex: 1;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-body .damage-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-body .damage-item .damage-item-title {
  display: flex;
  gap: 0.5rem;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-body .damage-item span {
  font-size: 1.4rem;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 체크박스 리스트 */
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 손상 타입 아이콘 */
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon {
  border-radius: 100%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 140;
  width: 2.4rem;
  height: 2.4rem;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-x {
  color: #ed1438;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-w {
  color: #0075ff;
}
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-q,
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-p,
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-a,
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-f,
.vehicle-registration-page .vehicle-development-diagram-section .damage-icon.type-m {
  color: #696e77;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 모달 푸터 */
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-footer {
  padding: 1.6rem;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-submit-btn {
  width: 100%;
  padding: 1.4rem;
  background-color: #2a2f38;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.vehicle-registration-page .vehicle-development-diagram-section .modal-submit-btn:hover {
  background-color: #1a1f28;
}
.vehicle-registration-page .vehicle-development-diagram-section {
  /* 다이어그램 섹션 */
}
.vehicle-registration-page .vehicle-development-diagram-section .diagram-section {
  min-width: 0; /* flexbox 오버플로우 방지 */
}
@media (max-width: 1023px) {
  .vehicle-registration-page .vehicle-development-diagram-section .diagram-section:last-child {
    margin-bottom: 0;
  }
}
.vehicle-registration-page {
  /* 성능점검 입력 */
}
.vehicle-registration-page .performance-check-input-section__title {
  margin-top: 4rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.vehicle-registration-page .performance-check-input-section__header {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.vehicle-registration-page .performance-check-input-section__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
.vehicle-registration-page .performance-check-input-section .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
.vehicle-registration-page .performance-check-input-section .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .performance-check-input-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
.vehicle-registration-page .performance-check-input-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.vehicle-registration-page .performance-check-input-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .performance-check-input-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .photo-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.6rem;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .photo-list .photo-item {
  position: relative;
  width: 7.6rem;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .photo-list .photo-item .close {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .photo-list .photo-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .photo-list .photo-item img {
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list .register-item .register-item-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .register-list .register-item img {
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .btn {
  width: 20rem;
}
.vehicle-registration-page .performance-check-input-section .table .field .file-inner .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.vehicle-registration-page .performance-check-input-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.vehicle-registration-page .performance-check-input-section .table .field__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
}
.vehicle-registration-page .performance-check-input-section .table .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.vehicle-registration-page .performance-check-input-section .table .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.vehicle-registration-page .performance-check-input-section .table .radio-items .radio {
  flex: 1 auto;
}
.vehicle-registration-page .performance-check-input-section .table .checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .checkbox-items .checkbox {
  flex: 1 auto;
}
.vehicle-registration-page .performance-check-input-section .table .text-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .input-items {
  padding: 0;
  display: flex;
  gap: 2.4rem;
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .input-items span {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.vehicle-registration-page .performance-check-input-section .table .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
}
.vehicle-registration-page .performance-check-input-section .table .input-items input {
  padding: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-registration-page .performance-check-input-section .table .input-items input {
    text-align: left;
    padding-left: 1.6rem;
  }
}
.vehicle-registration-page .performance-check-input-section .table .select-items {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .select-items .swapping-items__item {
  display: none;
}
.vehicle-registration-page .performance-check-input-section .table .select-items .swapping-items__item.active {
  display: block;
}
.vehicle-registration-page .performance-check-input-section .table .select-items .item {
  width: 100%;
}
.vehicle-registration-page .performance-check-input-section .table .select-items .item:first-child {
  width: 14.4rem;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .performance-check-input-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .vehicle-registration-page .performance-check-input-section__title {
    margin-top: 0;
    margin-bottom: 0;
  }
  .vehicle-registration-page .performance-check-input-section__header {
    flex-direction: column;
    align-items: start;
    border-top: 1px solid #d5d7db;
    padding-top: 2rem;
    margin-top: 1.6rem;
  }
  .vehicle-registration-page .performance-check-input-section .title-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .vehicle-registration-page .performance-check-input-section .table {
    border-top: none;
    gap: 2rem;
  }
  .vehicle-registration-page .performance-check-input-section .table__row {
    gap: 2rem;
    border-bottom: none;
  }
  .vehicle-registration-page .performance-check-input-section .table .field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: none;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .vehicle-registration-page .performance-check-input-section .table .field:nth-child(n+2) {
    border-top: none;
  }
  .vehicle-registration-page .performance-check-input-section .table .field__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .vehicle-registration-page .performance-check-input-section .table .field__value {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 0;
  }
  .vehicle-registration-page .performance-check-input-section .table .radio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
  .vehicle-registration-page .performance-check-input-section .table .radio-items .item {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .vehicle-registration-page .performance-check-input-section .table .radio-items .radio {
    flex: 1 auto;
  }
  .vehicle-registration-page .performance-check-input-section .table .checkbox-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 0.8rem;
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .checkbox-items .checkbox {
    flex: 1 auto;
  }
  .vehicle-registration-page .performance-check-input-section .table .text-items {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .input-items {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .input-items span {
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
  }
  .vehicle-registration-page .performance-check-input-section .table .input-items li {
    display: grid;
    grid-template-columns: minmax(5rem, 0) minmax(0, 1fr) minmax(2rem, 0rem);
  }
  .vehicle-registration-page .performance-check-input-section .table .input-items input {
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .select-items {
    display: flex;
    gap: 1rem;
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .select-items .swapping-items__item {
    display: none;
  }
  .vehicle-registration-page .performance-check-input-section .table .select-items .swapping-items__item.active {
    display: block;
  }
  .vehicle-registration-page .performance-check-input-section .table .select-items .item {
    width: 100%;
  }
  .vehicle-registration-page .performance-check-input-section .table .select-items .item:first-child {
    width: 14.4rem;
  }
}
.vehicle-registration-page {
  /* 주요장치 상태 */
}
.vehicle-registration-page .key-device-status-section__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.2rem;
  align-items: end;
  margin-bottom: 0.8rem;
  margin-top: 4rem;
}
.vehicle-registration-page .key-device-status-section__header .title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section__header {
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #e9e9e9;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.vehicle-registration-page .key-device-status-section .table {
  border-collapse: collapse;
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section .table {
    border-top: none;
  }
}
.vehicle-registration-page .key-device-status-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.vehicle-registration-page .key-device-status-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .key-device-status-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .photo-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.6rem;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .photo-list .photo-item {
  position: relative;
  width: 7.6rem;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .photo-list .photo-item .close {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .photo-list .photo-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .photo-list .photo-item img {
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list .register-item .register-item-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .register-list .register-item img {
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .btn {
  width: 20rem;
}
.vehicle-registration-page .key-device-status-section .table .field .file-inner .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.vehicle-registration-page .key-device-status-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.vehicle-registration-page .key-device-status-section .table .field__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
}
.vehicle-registration-page .key-device-status-section .table .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section .table .radio-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.vehicle-registration-page .key-device-status-section .table .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.vehicle-registration-page .key-device-status-section .table .radio-items .radio {
  flex: 1 auto;
}
.vehicle-registration-page .key-device-status-section .table .checkbox-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .vehicle-registration-page .key-device-status-section .table .checkbox-items {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section .table .checkbox-items {
    margin: 1.2rem 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
.vehicle-registration-page .key-device-status-section .table .checkbox-items .checkbox {
  flex: 1 auto;
}
.vehicle-registration-page .key-device-status-section .table .text-align-r {
  display: inline-block;
  text-align: right;
  width: min-content;
  margin: 0 auto;
}
.vehicle-registration-page .key-device-status-section .table .text-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .input-items {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .vehicle-registration-page .key-device-status-section .table .input-items {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section .table .input-items {
    grid-template-columns: 1fr;
  }
}
.vehicle-registration-page .key-device-status-section .table .input-items {
  gap: 0.8rem 2.4rem;
}
.vehicle-registration-page .key-device-status-section .table .input-items span {
  font-size: 1.4rem;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.vehicle-registration-page .key-device-status-section .table .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
  margin: 0;
}
.vehicle-registration-page .key-device-status-section .table .input-items input {
  padding: 0;
  text-align: center;
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .select-items {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .select-items .swapping-items__item {
  display: none;
}
.vehicle-registration-page .key-device-status-section .table .select-items .swapping-items__item.active {
  display: block;
}
.vehicle-registration-page .key-device-status-section .table .select-items .item {
  width: 100%;
}
.vehicle-registration-page .key-device-status-section .table .select-items .item:first-child {
  width: 14.4rem;
}
.vehicle-registration-page .key-device-status-section .table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page .key-device-status-section .table table {
    display: block;
    border-top: none;
  }
  .vehicle-registration-page .key-device-status-section .table table colgroup,
  .vehicle-registration-page .key-device-status-section .table table col {
    display: none;
  }
  .vehicle-registration-page .key-device-status-section .table table thead {
    display: none;
  }
  .vehicle-registration-page .key-device-status-section .table table tbody {
    display: block;
  }
  .vehicle-registration-page .key-device-status-section .table table tr {
    display: block;
    background: #ffffff;
  }
  .vehicle-registration-page .key-device-status-section .table table tr.main-box {
    border: 1px solid #d5d7db;
  }
  .vehicle-registration-page .key-device-status-section .table table tr.child-box {
    border-left: 1px solid #d5d7db;
    border-right: 1px solid #d5d7db;
    border-bottom: 1px solid #d5d7db;
  }
  .vehicle-registration-page .key-device-status-section .table table tr.blank-20 {
    margin-bottom: 2rem;
  }
  .vehicle-registration-page .key-device-status-section .table table th,
  .vehicle-registration-page .key-device-status-section .table table td {
    font-size: 0;
    display: block;
    width: 100% !important;
    text-align: left;
    border: none;
    border-bottom: none;
  }
  .vehicle-registration-page .key-device-status-section .table table th:last-child,
  .vehicle-registration-page .key-device-status-section .table table td:last-child {
    border-bottom: none;
  }
  .vehicle-registration-page .key-device-status-section .table table th::before,
  .vehicle-registration-page .key-device-status-section .table table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #2a2f38;
    font-size: 1.4rem; /**/
  }
  .vehicle-registration-page .key-device-status-section .table table th {
    text-align: center;
  }
  .vehicle-registration-page .key-device-status-section .table table th::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
  }
  .vehicle-registration-page .key-device-status-section .table table td::before {
    margin-bottom: 0.6rem;
  }
  .vehicle-registration-page .key-device-status-section .table table th.category-cell,
  .vehicle-registration-page .key-device-status-section .table table td.category-sub-cell {
    background: #e9e9e9;
    font-weight: 700;
  }
  .vehicle-registration-page .key-device-status-section .table table td.category-sub-cell {
    display: none;
  }
  .vehicle-registration-page .key-device-status-section .table table th.category-cell {
    padding: 0.8rem 0;
  }
  .vehicle-registration-page .key-device-status-section .table table td.item-cell {
    padding: 1.2rem 1.6rem 0;
  }
  .vehicle-registration-page .key-device-status-section .table table td.status-cell {
    padding: 0 1.6rem 1.2rem;
  }
  .vehicle-registration-page .key-device-status-section .table table .radio-group {
    margin-top: 0.4rem;
  }
}
@media (min-width: 768px) {
  .vehicle-registration-page .key-device-status-section .table table {
    table-layout: fixed;
  }
  .vehicle-registration-page .key-device-status-section .table table th {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    padding: 0.8rem;
    background: #f6f7f9;
    font-weight: 600;
    color: #2a2f38;
    border: 1px solid #d5d7db;
  }
  .vehicle-registration-page .key-device-status-section .table table td {
    text-align: left;
    padding: 0.8rem 1.6rem;
    border: 1px solid #d5d7db;
    vertical-align: middle;
  }
  .vehicle-registration-page .key-device-status-section .table table .category-cell {
    background-color: #f6f7f9;
    font-weight: 700;
    width: 12rem !important;
  }
  .vehicle-registration-page .key-device-status-section .table table th,
  .vehicle-registration-page .key-device-status-section .table table .category-sub-cell,
  .vehicle-registration-page .key-device-status-section .table table .item-cell {
    font-size: 1.4rem;
    height: 5.2rem;
  }
  .vehicle-registration-page .key-device-status-section .table table .item-cell {
    text-align: left;
    padding-left: 1.6rem;
    width: calc((100% - 12rem) / 4) !important;
  }
  .vehicle-registration-page .key-device-status-section .table table .status-cell {
    width: calc((100% - 12rem) / 2) !important;
  }
  .vehicle-registration-page .key-device-status-section .table table .status-cell .radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
  }
}
@media (min-width: 768px) {
  .vehicle-registration-page .key-device-status-section .table table.main-device-table th:first-child,
  .vehicle-registration-page .key-device-status-section .table table.main-device-table td:first-child {
    border-left: none;
  }
  .vehicle-registration-page .key-device-status-section .table table.main-device-table th:last-child,
  .vehicle-registration-page .key-device-status-section .table table.main-device-table td:last-child {
    border-right: none;
  }
  .vehicle-registration-page .key-device-status-section .table table.main-device-table thead th:nth-child(1) {
    width: 12rem !important;
  }
  .vehicle-registration-page .key-device-status-section .table table.main-device-table thead th:nth-child(2) {
    width: 40%;
  }
  .vehicle-registration-page .key-device-status-section .table table.main-device-table thead th:nth-child(3) {
    width: calc((100% - 12rem) / 2) !important;
  }
}
.vehicle-registration-page--button {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  max-width: 35.6rem;
}
.vehicle-registration-page--button .btn {
  height: 100%;
  min-height: 4.8rem;
  background-color: #ed1438;
  color: #ffffff;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.8rem;
  border: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .vehicle-registration-page--button {
    padding: 1rem 0 6rem;
    width: 100%;
  }
}

.tobid-vehicle-performance-check-page {
  min-height: 100vh;
  color: #2a2f38;
}
.tobid-vehicle-performance-check-page .container {
  max-width: 92rem;
  padding-top: 0;
  margin-bottom: 4rem;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
.tobid-vehicle-performance-check-page .page-header {
  display: flex;
  width: 92rem;
  margin: 4rem auto 4rem;
  justify-content: space-between;
  padding: 0 1.6rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .page-header {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 1.6rem;
    width: 100%;
  }
}
.tobid-vehicle-performance-check-page .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .page-header__title {
    font-size: 2rem;
  }
}
.tobid-vehicle-performance-check-page .page-header__breadcrumb {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #696e77;
}
.tobid-vehicle-performance-check-page .page-header__breadcrumb .icon {
  position: relative;
  top: -0.3rem;
  color: #aaadb2;
}
.tobid-vehicle-performance-check-page .page-header__breadcrumb .primary {
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .page-header__breadcrumb {
    font-size: 1.3rem;
  }
}
.tobid-vehicle-performance-check-page .slider-section {
  border-bottom: 1px solid #d5d7db;
  padding-bottom: 3.2rem;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .slider-section {
    padding: 0 1.6rem 3.2rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .slider-section {
    padding: 0 1.6rem 3.2rem;
  }
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .slider-section .performance-image-slider {
    max-width: 92rem;
  }
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper {
  width: 100%;
  margin-bottom: 1.6rem;
  background-color: #f6f7f9;
  overflow: hidden;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper {
    aspect-ratio: 4/3;
  }
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper .swiper-slide {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f7f9;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .main-image-wrapper .main-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: block;
  transition: all 150ms ease;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4.5rem;
  margin: 0 auto;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper .thumbnail-swiper {
  height: 100%;
  overflow: clip;
  margin: 0;
  max-width: 20rem;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper .thumbnail-swiper .swiper-wrapper {
  height: 100%;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper .thumbnail-swiper .swiper-slide {
  width: 6.3rem;
  height: 100%;
  cursor: pointer;
  border: 3px solid transparent;
  overflow: hidden;
  transition: all 150ms ease;
  opacity: 0.6;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper .thumbnail-swiper .swiper-slide.swiper-slide-thumb-active {
  border-color: #2a2f38;
  opacity: 1;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnails-wrapper .thumbnail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnail-nav {
  width: 3.2rem;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnail-nav {
    width: 4rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnail-nav {
    width: 4rem;
  }
}
.tobid-vehicle-performance-check-page .slider-section .performance-image-slider .thumbnail-nav svg {
  color: #aaadb2;
}
.tobid-vehicle-performance-check-page .slider-section .guide-count .start {
  display: flex;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  background-color: #fef6f7;
  color: #fd4452;
  width: 100%;
  font-size: 1.6rem;
  gap: 0.8rem;
}
.tobid-vehicle-performance-check-page .slider-section .guide-count .start span {
  display: flex;
  align-items: center;
}
.tobid-vehicle-performance-check-page .slider-section .guide-count .start strong {
  font-size: 2.2rem;
}
.tobid-vehicle-performance-check-page .slider-section .guide-count .end {
  display: flex;
  height: 4.8rem;
  align-items: center;
  justify-content: center;
  background-color: #80858b;
  color: #ffffff;
  width: 100%;
  font-weight: 600;
  font-size: 1.6rem;
}
.tobid-vehicle-performance-check-page .slider-section .guide-count {
  margin-bottom: 2.4rem;
}
.tobid-vehicle-performance-check-page .accident-section {
  display: grid;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .accident-section .order-1 {
    order: 1;
  }
  .tobid-vehicle-performance-check-page .accident-section .order-2 {
    order: 3;
  }
  .tobid-vehicle-performance-check-page .accident-section .order-3 {
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .order-1 {
    order: 1;
  }
  .tobid-vehicle-performance-check-page .accident-section .order-2 {
    order: 3;
  }
  .tobid-vehicle-performance-check-page .accident-section .order-3 {
    order: 2;
  }
  .tobid-vehicle-performance-check-page .accident-section .active .accordion-icon {
    transform: rotate(180deg);
  }
  .tobid-vehicle-performance-check-page .accident-section .text-content.active {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
    padding: 2.4rem 1.6rem 4rem;
    border-radius: 2rem;
    background-color: #ffffff;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section__header {
  display: flex;
  justify-content: flex-start;
  gap: 1.2rem;
  align-items: end;
  border-bottom: 1px solid #aaadb2;
  padding-bottom: 1.6rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section__header .title-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 2rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section__header .title {
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section__header {
    margin-top: 0;
    align-items: start;
  }
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section__header .title-wrapper {
    flex-direction: row;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .table {
  display: flex;
  flex-direction: column;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .table__row {
  display: grid;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .table__row {
    border-bottom: none;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-section {
  position: relative;
  display: flex;
  flex-direction: row; /* PC: 가로 나란히 */
  gap: 0;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-section {
    gap: 9rem;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* .damage-list-header {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
    padding: 2.4rem 0;
    .damage-list-title {
      font-size: $font-size-level-5;
      font-weight: $font-weight-semibold;
      color: $color-text-primary;
      margin: 0;
      @include mobile-only {
        text-align: left;
      }
    }
    .damage-list {
      display: flex;
      flex-direction: row;
      margin: 0;
      flex-wrap: wrap;
      font-weight: $font-weight-semibold;
      color: $color-text-primary;
      .damage-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin: 0;
        @include mobile-only {
          min-width: 9.6rem;
        }
      }
      .damage-icon {
        width: 2.8rem;
        height: 2.8rem;
      }
      @include tablet-only {
        justify-content: space-between;
      }
      @include mobile-only {
        gap: 0.8rem 0.3rem;

        .damage-icon {
          width: 2rem;
          height: 2rem;
        }
      }
    }

    @include tablet-only {
      width: 100%;
    }
    @include mobile-only {
      &:first-child {
        border-top: none;
        padding-top: 0;
      }

      padding: 3.6rem 0 0;
      border-top: 1px solid $color-border-default;
      gap: 1.4rem;
    }
  }*/
  /* Tablet/Mobile: 세로 1열 */
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-section {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-section {
    flex-direction: column;
  }
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .table {
    border-top: 0;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 차량 전개도 전용 스타일 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-container {
  position: relative;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-wrapper {
  position: relative; /* 각 섹션의 모달 absolute 기준점 */
  display: flex;
  align-items: center;
  width: 100%;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-image {
    max-height: 59.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-image {
    max-height: 102.4rem;
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .car-diagram-image {
    max-height: none;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 클릭 가능한 번호 영역 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .clickable-number {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(204, 204, 204, 0.7);
  color: #000714;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 손상 타입이 있을 때 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .clickable-number.has-damage {
  width: auto;
  height: 22px;
  border-radius: 14px;
  padding: 0 8px;
  background-color: #fff5da;
  border: 1px solid #2a2f38;
  left: calc(var(--center-x, 0) * 1px) !important;
  top: calc(var(--center-y, 0) * 1px - 14px) !important;
  transform: translateX(-50%);
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 번호 텍스트 (기본 상태) */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .clickable-number__text {
  display: inline-block;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 손상 타입 라벨 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2a2f38;
  white-space: nowrap;
  pointer-events: none;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-x {
  color: #ed1438;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-w {
  color: #0075ff;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-q,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-p,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-a,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-f,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-label .type-m {
  color: #696e77;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /*.clickable-number:hover {
    background-color: rgba(237, 20, 56, 1);
    transform: scale(1.1);
  }*/
  /*
  .clickable-number.active {
    background-color: #0075ff;
    box-shadow: 0 0 0 4px rgba(0, 117, 255, 0.2);
  }
  */
  /* 모달 오버레이 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 400;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-overlay.active {
  display: block;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 모달 컨테이너 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-dialog {
  position: absolute;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  z-index: 11;
  display: none;
  min-width: 200px;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-dialog {
    position: fixed;
    left: 30% !important;
    right: 0;
    bottom: 0 !important;
    top: 0 !important;
    max-width: 100%;
    transform: none !important;
    z-index: 401;
  }
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-dialog.active {
  display: flex;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 모달 헤더 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: #2a2f38;
  margin: 0;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-close {
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #696e77;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-close:hover {
  color: #2a2f38;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 모달 바디 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-body {
  padding: 1.2rem;
  flex: 1;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-body .damage-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-body .damage-item .damage-item-title {
  display: flex;
  gap: 0.5rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-body .damage-item span {
  font-size: 1.4rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 체크박스 리스트 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 손상 타입 아이콘 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon {
  border-radius: 100%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 140;
  width: 2.4rem;
  height: 2.4rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-x {
  color: #ed1438;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-w {
  color: #0075ff;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-q,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-p,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-a,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-f,
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .damage-icon.type-m {
  color: #696e77;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 모달 푸터 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-footer {
  padding: 1.6rem;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-submit-btn {
  width: 100%;
  padding: 1.4rem;
  background-color: #2a2f38;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .modal-submit-btn:hover {
  background-color: #1a1f28;
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section {
  /* 다이어그램 섹션 */
}
.tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .diagram-section {
  min-width: 0; /* flexbox 오버플로우 방지 */
}
@media (max-width: 1023px) {
  .tobid-vehicle-performance-check-page .accident-section .vehicle-development-diagram-section .diagram-section:last-child {
    margin-bottom: 0;
  }
}
.tobid-vehicle-performance-check-page .accident-section .text-section h3 {
  margin: 0;
  font-size: 1.6rem;
}
.tobid-vehicle-performance-check-page .accident-section .text-section ul {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin-top: 3.2rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .text-section ul {
    flex-direction: column;
  }
}
.tobid-vehicle-performance-check-page .accident-section .text-section li {
  border: 1px solid #e9e9e9;
  flex: 1;
  margin: 0;
}
.tobid-vehicle-performance-check-page .accident-section .text-section .text-header {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  background-color: #e9e9e9;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .text-section .text-header {
    justify-content: space-between;
    padding: 1rem 1.6rem;
  }
}
.tobid-vehicle-performance-check-page .accident-section .text-section .text-content {
  max-height: 24rem;
  overflow-y: auto;
  padding: 1.6rem 1.6rem 0;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .accident-section .text-section .text-content {
    overflow-y: visible;
    max-height: 100%;
    padding: 1.6rem;
  }
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section__header {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  align-items: end;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section__header .title {
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #aaadb2;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table__row {
  display: grid;
  border-bottom: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table__row {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  }
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field.row-width {
  grid-template-columns: 12rem max-content;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .photo-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.6rem;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .photo-list .photo-item {
  position: relative;
  width: 7.6rem;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .photo-list .photo-item .close {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .photo-list .photo-item .close i {
  display: flex;
  fill: #ffffff;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .photo-list .photo-item img {
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .register-list .register-item img {
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .btn {
  width: 20rem;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field .file-inner .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items .radio {
  flex: 1 auto;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .checkbox-items .checkbox {
  flex: 1 auto;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .text-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items {
  padding: 0;
  display: flex;
  gap: 2.4rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items span {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
  margin: 0;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items input {
  padding: 0;
  text-align: center;
  width: 4.8rem;
  max-height: 4.4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items input {
    text-align: left;
    padding-left: 1.6rem;
    width: 6.9rem;
  }
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .swapping-items__item {
  display: none;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .swapping-items__item.active {
  display: block;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .item {
  width: 100%;
}
.tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .item:first-child {
  width: 14.4rem;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section__title {
    margin-top: 0;
    margin-bottom: 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section__header {
    flex-direction: row;
    align-items: flex-end;
    border-top: none;
    padding-top: 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .title-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table {
    gap: 0;
    border: 1px solid #e9e9e9;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table__row {
    gap: 0;
    border-bottom: none;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: none;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px solid #e9e9e9;
    padding: 1.6rem;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field.row-width {
    border-bottom: none;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field:nth-child(n+2) {
    border-top: none;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field__title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    min-height: auto;
    padding: 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .field__value {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items .item {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .radio-items .radio {
    flex: 1 auto;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .checkbox-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
    gap: 0.8rem;
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .checkbox-items .checkbox {
    flex: 1 auto;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .text-items {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items span {
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items li {
    display: grid;
    grid-template-columns: minmax(5rem, 0) minmax(0, 1fr) minmax(2rem, 0rem);
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .input-items input {
    text-align: left;
    padding-left: 1.6rem;
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items {
    display: flex;
    gap: 1rem;
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .swapping-items__item {
    display: none;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .swapping-items__item.active {
    display: block;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .item {
    width: 100%;
  }
  .tobid-vehicle-performance-check-page .features-section .performance-check-input-section .table .select-items .item:first-child {
    width: 14.4rem;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2rem;
  align-items: end;
  margin-bottom: 0.8rem;
  margin-top: 4rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section__header .title {
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section__header {
    flex-direction: row;
    align-items: center;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table {
  border-collapse: collapse;
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table {
    border-top: none;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field {
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: center;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field:nth-child(n+2) {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field:nth-child(n+2) {
    border-top: none;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .photo-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.6rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .photo-list .photo-item {
  position: relative;
  width: 7.6rem;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .photo-list .photo-item .close {
  position: absolute;
  z-index: 1;
  top: 0.4rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .photo-list .photo-item .close i {
  display: flex;
  fill: #ffffff;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .photo-list .photo-item img {
  width: 100%;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .register-list {
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .register-list .register-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .register-list .register-item .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .register-list .register-item .close i {
  display: flex;
  fill: #ffffff;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .register-list .register-item img {
  width: 100%;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .btn {
  width: 20rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field .file-inner .btn .count-grp {
  margin-left: 0.6rem;
  font-weight: 400;
  color: #aaadb2;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field__title {
  display: flex;
  margin: 0;
  justify-content: flex-end;
  height: 100%;
  font-size: 1.4rem;
  min-height: 6.4rem;
  padding: 0 0.8rem;
  background: #f6f7f9;
  font-weight: 600;
  color: #2a2f38;
  align-items: center;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .field__value {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  background: #ffffff;
  padding: 0.8rem 1.6rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .radio-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .radio-items .radio {
  flex: 1 auto;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .checkbox-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .checkbox-items {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .checkbox-items {
    margin: 1.2rem 0.6rem;
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .checkbox-items .checkbox {
  flex: 1 auto;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .text-align-r {
  display: inline-block;
  text-align: right;
  width: min-content;
  margin: 0 auto;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .text-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items {
    grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  }
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items {
    grid-template-columns: 1fr;
  }
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items {
  gap: 0.8rem 2.4rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items span {
  font-size: 1.4rem;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items li {
  display: flex;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  color: #2a2f38;
  margin: 0;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .input-items input {
  padding: 0;
  width: 100%;
  text-align: left;
  padding: 0 1.6rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .select-items {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .select-items .swapping-items__item {
  display: none;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .select-items .swapping-items__item.active {
  display: block;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .select-items .item {
  width: 100%;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table .select-items .item:first-child {
  width: 14.4rem;
}
.tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 767.98px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table {
    display: block;
    border-top: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table colgroup,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table col {
    display: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table thead {
    display: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table tbody {
    display: block;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table tr {
    display: block;
    background: #ffffff;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table tr.main-box {
    border: 1px solid #d5d7db;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table tr.child-box {
    border-left: 1px solid #d5d7db;
    border-right: 1px solid #d5d7db;
    border-bottom: 1px solid #d5d7db;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table tr.blank-20 {
    margin-bottom: 2rem;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td {
    font-size: 0;
    display: block;
    width: 100% !important;
    text-align: left;
    border: none;
    border-bottom: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th:last-child,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td:last-child {
    border-bottom: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th::before,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #2a2f38;
    font-size: 1.4rem; /**/
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th {
    text-align: center;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td::before {
    margin-bottom: 0.6rem;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th.category-cell,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td.category-sub-cell {
    background: #e9e9e9;
    font-weight: 700;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td.category-sub-cell {
    display: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th.category-cell {
    padding: 0.8rem 0;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td.item-cell {
    padding: 1.2rem 1.6rem 0;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td.status-cell {
    padding: 0 1.6rem 1.2rem;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .radio-group {
    margin-top: 0.4rem;
  }
}
@media (min-width: 768px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table {
    table-layout: fixed;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th {
    margin: 0;
    text-align: center;
    font-size: 1.4rem;
    padding: 0.8rem;
    background: #f6f7f9;
    font-weight: 600;
    color: #2a2f38;
    border: 1px solid #d5d7db;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table td {
    text-align: left;
    padding: 0.8rem 1.6rem;
    border: 1px solid #d5d7db;
    vertical-align: middle;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .category-cell {
    background-color: #f6f7f9;
    font-weight: 700;
    width: 12rem !important;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table th,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .category-sub-cell,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .item-cell {
    font-size: 1.4rem;
    height: 5.2rem;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .item-cell {
    text-align: left;
    padding-left: 1.6rem;
    width: calc((100% - 12rem) / 4) !important;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .status-cell {
    width: calc((100% - 12rem) / 2) !important;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table .status-cell .radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
  }
}
@media (min-width: 768px) {
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table th:first-child,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table td:first-child {
    border-left: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table th:last-child,
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table td:last-child {
    border-right: none;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table thead th:nth-child(1) {
    width: 12rem !important;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table thead th:nth-child(2) {
    width: 40%;
  }
  .tobid-vehicle-performance-check-page .device-section .key-device-status-section .table table.main-device-table thead th:nth-child(3) {
    width: calc((100% - 12rem) / 2) !important;
  }
}
.tobid-vehicle-performance-check-page .notice-section {
  background-color: #f6f7f9;
  padding: 1.6rem;
  border-radius: 0.4rem;
}
.tobid-vehicle-performance-check-page .notice-section .performance-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 1rem;
}
.tobid-vehicle-performance-check-page .notice-section li {
  display: inline-flex;
  gap: 0.6rem;
  margin: 0;
  position: relative;
}
.tobid-vehicle-performance-check-page .notice-section li:before {
  position: absolute;
  left: -1rem;
  top: 1.1rem;
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  background-color: #2a2f38;
  border-radius: 9999px;
}

/* 차량출품 */
.vehicle-exhibit-list-page .pr-0 {
  padding-right: 0 !important;
}
.vehicle-exhibit-list-page .mb-20 {
  margin-bottom: 2rem;
}
.vehicle-exhibit-list-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.vehicle-exhibit-list-page .page-titlebar__breadcrumb {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #696e77;
}
.vehicle-exhibit-list-page .page-titlebar__breadcrumb .icon {
  position: relative;
  top: -0.3rem;
  color: #aaadb2;
}
.vehicle-exhibit-list-page .page-titlebar__breadcrumb .primary {
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .vehicle-exhibit-list-page .page-titlebar .select-wrapper::after {
    right: 0;
  }
  .vehicle-exhibit-list-page .page-titlebar__select {
    width: fit-content;
  }
  .vehicle-exhibit-list-page .page-titlebar__select .select-field.select-field--small {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    padding: 0 1.5rem 0 0;
  }
}
.vehicle-exhibit-list-page .search-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.vehicle-exhibit-list-page .search-section .filter {
  border-top: 1px solid #aaadb2;
}
.vehicle-exhibit-list-page .search-section .filter__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.vehicle-exhibit-list-page .search-section .filter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}
.vehicle-exhibit-list-page .search-section .filter__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 10.2rem;
  height: 100%;
  padding: 2rem 0.8rem;
  flex-shrink: 0;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.vehicle-exhibit-list-page .search-section .filter__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 auto;
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-exhibit-list-page .search-section .filter__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .vehicle-exhibit-list-page .search-section .filter__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.vehicle-exhibit-list-page .search-section .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.vehicle-exhibit-list-page .search-section .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.vehicle-exhibit-list-page .search-section .radio-items .radio {
  flex: 1 auto;
}
.vehicle-exhibit-list-page .search-section .checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.vehicle-exhibit-list-page .search-section .checkbox-items .checkbox {
  flex: 1 auto;
}
.vehicle-exhibit-list-page .search-section .filter--buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2rem 0 2.4rem;
  gap: 0.8rem;
}
.vehicle-exhibit-list-page .search-section .filter--buttons .btn {
  display: flex;
  width: 100%;
  max-width: 12rem;
  max-height: 4.4rem;
  font-size: 1.4rem;
  padding: 1.5rem 1.6rem;
  border-radius: 0.6rem;
}
.vehicle-exhibit-list-page .search-section .filter--buttons .btn.search {
  background-color: #ed1438;
  color: #ffffff;
  font-weight: 600;
}
.vehicle-exhibit-list-page .search-section .filter--buttons .btn.reset {
  font-weight: 600;
  color: #2a2f38;
  border: 1px solid #d5d7db;
}
.vehicle-exhibit-list-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.vehicle-exhibit-list-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767.98px) {
  .vehicle-exhibit-list-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
}
.vehicle-exhibit-list-page .list-section .header {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #aaadb2;
}
.vehicle-exhibit-list-page .list-section .header__info {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.vehicle-exhibit-list-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.vehicle-exhibit-list-page .list-section .header__controls {
  display: grid;
  grid-template-columns: 1fr 4fr 12rem;
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.vehicle-exhibit-list-page .list-section .header__controls .button-items {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.vehicle-exhibit-list-page .list-section .header__controls .button-items li {
  margin: 0;
}
.vehicle-exhibit-list-page .list-section .header__controls .checkbox-items span {
  margin: 0;
}
.vehicle-exhibit-list-page .list-section .header__controls .btn-styled-default {
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-exhibit-list-page .list-section .header {
    border-bottom: 1px solid #696e77;
  }
  .vehicle-exhibit-list-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
}
@media (max-width: 767.98px) {
  .vehicle-exhibit-list-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  .vehicle-exhibit-list-page .list-section .header__title {
    margin-bottom: 2rem;
  }
  .vehicle-exhibit-list-page .list-section .header .info_msg {
    width: 100%;
    height: auto;
  }
  .vehicle-exhibit-list-page .list-section .header .info_msg span {
    font-size: 1.4rem;
    width: 100%;
    border-radius: 0.4rem;
    padding: 1.2rem 1.6rem;
  }
  .vehicle-exhibit-list-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .checkbox-items.btn-styled-default {
    padding: 0;
    border: none;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .checkbox-items.btn-styled-default .checkbox__label {
    margin-left: 0.8rem;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .vehicle-exhibit-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .head,
.vehicle-exhibit-list-page .list-section .cards-list-inner .card {
  display: grid;
  grid-template-columns: 10rem 10rem 10rem 1fr 10rem 16rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .no .checkbox:hover .checkbox__label {
  color: #696e77;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .category {
  flex-direction: column;
  gap: 0.4rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .category__title {
  color: #2a2f38;
  font-weight: 600;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .category__date {
  text-align: center;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .status {
  font-weight: 600;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .info {
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  gap: 1.6rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs .item::after {
  display: inline-block;
  content: "ㆍ";
  color: #bdbdbf;
  margin: 0 0.6rem;
  font-weight: 500;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs .item:last-child::after {
  display: none;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item .styled-blue {
  color: #305af8;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item .styled-red {
  color: #d11938;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.8rem;
  gap: 0.8rem;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items button {
  width: 100%;
  border-radius: 0.6rem;
  padding: 1.5rem 0;
}
.vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items .edit {
  background-color: transparent;
  border: 1px solid #2a2f38;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .vehicle-exhibit-list-page .list-section .cards-list-inner .head {
    display: none;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .info {
    padding: 1.2rem 0 !important;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2.4rem 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .no,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .status,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .info {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .no {
    margin-bottom: 0.8rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .no .checkbox__label::before {
    content: attr(data-label);
    display: inline-block;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .result {
    padding: 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .result .item {
    width: fit-content;
    display: flex;
    max-width: 100%;
    padding: 0.6rem 1.2rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .result .item::before {
    content: attr(data-label);
    color: #2a2f38;
    display: inline-flex;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .result .item strong {
    display: flex;
    justify-content: center;
    font-weight: 600;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .result .item strong::before {
    content: attr(data-label);
    font-size: 1.2rem;
    align-items: center;
    color: #bdbdbf;
    display: inline-flex;
    margin: 0 0.4rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .status {
    display: inline-flex;
    align-items: center;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .status::before {
    display: inline-flex;
    content: attr(data-label);
    font-weight: 400;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .status span {
    display: inline-flex;
    align-items: center;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .tablet-view .status span::before {
    content: attr(data-label);
    font-size: 1.2rem;
    align-items: center;
    color: #bdbdbf;
    display: inline-flex;
    margin: 0 0.4rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items {
    grid-column: 2/-1;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    justify-content: flex-end;
    gap: 0.8rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items button {
    width: 100%;
    border-radius: 0.6rem;
    padding: 1.5rem 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items .edit {
    background-color: transparent;
    border: 1px solid #2a2f38;
  }
}
@media (max-width: 767.98px) {
  .vehicle-exhibit-list-page .list-section .cards-list-inner .head {
    display: none;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 2.8rem 1fr;
    padding: 2.4rem 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .no {
    grid-column: 1/-1;
    margin-bottom: 0.8rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .no .checkbox__label::before {
    content: attr(data-label);
    display: inline-block;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .info,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .status,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .result,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs--mobile,
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items {
    grid-column: 2/-1;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .status {
    grid-row: 6;
    justify-content: space-between;
    margin: 1.6rem 0 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    color: #80858b;
    display: inline-flex;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category {
    flex-direction: row;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category__title, .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category__date {
    color: #0075ff;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .category__title {
    font-weight: 400;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .result {
    grid-row: 3;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .result .item::before {
    content: attr(data-label);
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .info {
    padding: 1.2rem 0;
    gap: 1.2rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs--mobile {
    display: flex;
    flex-wrap: wrap;
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs--mobile .item::after {
    display: inline-block;
    content: "ㆍ";
    color: #bdbdbf;
    margin: 0 0.4rem;
    font-weight: 500;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .details__specs--mobile .item:last-child::after {
    display: none;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .vehicle-exhibit-list-page .list-section .cards-list-inner .card .button-items {
    padding: 0;
    flex-direction: row;
    margin: 1.6rem 0 0;
  }
}
.vehicle-exhibit-list-page .info_msg {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  height: 3.6rem;
}
.vehicle-exhibit-list-page .info_msg span {
  display: inline-flex;
  height: 100%;
  align-items: center;
  background-color: #fff5da;
  padding: 0 2.4rem;
  border-radius: 9999px;
  color: #2a2f38;
  font-weight: 600;
  gap: 0.8rem;
}
.vehicle-exhibit-list-page .info_msg span::before {
  content: attr(data-label);
  display: inline-flex;
}

/* 옥션결과 */
.auction-results-list-page .pr-0 {
  padding-right: 0 !important;
}
.auction-results-list-page .mb-20 {
  margin-bottom: 2rem;
}
.auction-results-list-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.auction-results-list-page .search-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.auction-results-list-page .search-section .filter {
  border-top: 1px solid #aaadb2;
}
.auction-results-list-page .search-section .filter__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.auction-results-list-page .search-section .filter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}
.auction-results-list-page .search-section .filter__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 10.2rem;
  height: 100%;
  padding: 2rem 0.8rem;
  flex-shrink: 0;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.auction-results-list-page .search-section .filter__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 auto;
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-list-page .search-section .filter__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .auction-results-list-page .search-section .filter__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
.auction-results-list-page .search-section .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.auction-results-list-page .search-section .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.auction-results-list-page .search-section .radio-items .radio {
  flex: 1 auto;
}
.auction-results-list-page .search-section .filter--buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2rem 0 2.4rem;
  gap: 0.8rem;
}
.auction-results-list-page .search-section .filter--buttons .btn {
  display: flex;
  width: 100%;
  max-width: 12rem;
  max-height: 4.4rem;
  font-size: 1.4rem;
  padding: 1.5rem 1.6rem;
  border-radius: 0.6rem;
}
.auction-results-list-page .search-section .filter--buttons .btn.search {
  background-color: #ed1438;
  color: #ffffff;
  font-weight: 600;
}
.auction-results-list-page .search-section .filter--buttons .btn.reset {
  font-weight: 600;
  color: #2a2f38;
  border: 1px solid #d5d7db;
}
.auction-results-list-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.auction-results-list-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767.98px) {
  .auction-results-list-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
}
.auction-results-list-page .list-section .header {
  display: flex;
  padding-bottom: 2rem;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #aaadb2;
}
.auction-results-list-page .list-section .header__title {
  font-size: 1.6rem;
  font-weight: 600;
}
.auction-results-list-page .list-section .cards-list-inner .head,
.auction-results-list-page .list-section .cards-list-inner .card {
  display: grid;
  grid-template-columns: 6rem 10rem 1fr 16rem;
}
.auction-results-list-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
}
.auction-results-list-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-list-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
.auction-results-list-page .list-section .cards-list-inner .card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
}
.auction-results-list-page .list-section .cards-list-inner .card .no {
  color: #696e77;
}
.auction-results-list-page .list-section .cards-list-inner .card .category {
  flex-direction: column;
  gap: 0.4rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .category__title {
  color: #2a2f38;
  font-weight: 600;
}
.auction-results-list-page .list-section .cards-list-inner .card .category__date {
  text-align: center;
}
.auction-results-list-page .list-section .cards-list-inner .card .info {
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  gap: 1.6rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.auction-results-list-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
.auction-results-list-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .details__specs {
  display: flex;
  flex-wrap: wrap;
}
.auction-results-list-page .list-section .cards-list-inner .card .details__specs .item::after {
  display: inline-block;
  content: "ㆍ";
  color: #bdbdbf;
  margin: 0 0.6rem;
  font-weight: 500;
}
.auction-results-list-page .list-section .cards-list-inner .card .details__specs .item:last-child::after {
  display: none;
}
.auction-results-list-page .list-section .cards-list-inner .card .result {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .result__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: #0075ff;
}
.auction-results-list-page .list-section .cards-list-inner .card .result__success span {
  font-size: 1.6rem;
}
.auction-results-list-page .list-section .cards-list-inner .card .result__fail {
  color: #d11938;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-list-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-page .list-section .cards-list-inner .info {
    padding: 1.2rem 0 !important;
  }
  .auction-results-list-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 4fr 1fr;
    padding: 2.4rem 0;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no,
  .auction-results-list-page .list-section .cards-list-inner .card .category {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no {
    margin-bottom: 0.8rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no::before {
    content: "NO.";
    display: inline-block;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result {
    align-items: flex-end;
    justify-content: center;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result > div {
    display: flex;
    max-width: 12rem;
    max-height: 12rem;
    border-radius: 2.8rem;
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result__success {
    background-color: #e3f5ff;
    gap: 0.4rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result__fail {
    background-color: #fef6f7;
    color: #d11938;
    align-items: center;
  }
  .auction-results-list-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
}
@media (max-width: 767.98px) {
  .auction-results-list-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2.4rem 0;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no,
  .auction-results-list-page .list-section .cards-list-inner .card .category {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no {
    margin-bottom: 0.8rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .no::before {
    content: "NO.";
    display: inline-block;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .category__title, .auction-results-list-page .list-section .cards-list-inner .card .category__date {
    color: #0075ff;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .category__title {
    font-weight: 400;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result {
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result > div {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    border-radius: 2.8rem;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 8px;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result__success {
    background-color: #e3f5ff;
    gap: 0.4rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .result__fail {
    background-color: #fef6f7;
    color: #d11938;
    align-items: center;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .info {
    padding: 1.2rem 0;
    gap: 1.2rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .details__specs--mobile {
    display: flex;
    flex-wrap: wrap;
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .details__specs--mobile .item::after {
    display: inline-block;
    content: "ㆍ";
    color: #bdbdbf;
    margin: 0 0.4rem;
    font-weight: 500;
  }
  .auction-results-list-page .list-section .cards-list-inner .card .details__specs--mobile .item:last-child::after {
    display: none;
  }
  .auction-results-list-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
}

.auction-results-list-entry-page .pr-0 {
  padding-right: 0 !important;
}
.auction-results-list-entry-page .mb-20 {
  margin-bottom: 2rem;
}
.auction-results-list-entry-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.auction-results-list-entry-page .search-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.auction-results-list-entry-page .search-section .filter {
  border-top: 1px solid #aaadb2;
}
.auction-results-list-entry-page .search-section .filter__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.auction-results-list-entry-page .search-section .filter__row.temcol-1 {
  grid-template-columns: repeat(1, 1fr);
}
.auction-results-list-entry-page .search-section .filter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}
.auction-results-list-entry-page .search-section .filter__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 10.2rem;
  height: 100%;
  padding: 2rem 0.8rem;
  flex-shrink: 0;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.auction-results-list-entry-page .search-section .filter__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 auto;
  padding: 0.8rem 1.6rem;
}
.auction-results-list-entry-page .search-section .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.auction-results-list-entry-page .search-section .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.auction-results-list-entry-page .search-section .radio-items .radio {
  flex: 1 auto;
}
.auction-results-list-entry-page .search-section .checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.auction-results-list-entry-page .search-section .checkbox-items .checkbox {
  flex: 1 auto;
}
.auction-results-list-entry-page .search-section .filter--buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2rem 0 2.4rem;
  gap: 0.8rem;
}
.auction-results-list-entry-page .search-section .filter--buttons .btn {
  display: flex;
  width: 100%;
  max-width: 12rem;
  max-height: 4.4rem;
  font-size: 1.4rem;
  padding: 1.5rem 1.6rem;
  border-radius: 0.6rem;
}
.auction-results-list-entry-page .search-section .filter--buttons .btn.search {
  background-color: #ed1438;
  color: #ffffff;
  font-weight: 600;
}
.auction-results-list-entry-page .search-section .filter--buttons .btn.reset {
  font-weight: 600;
  color: #2a2f38;
  border: 1px solid #d5d7db;
}
.auction-results-list-entry-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.auction-results-list-entry-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.auction-results-list-entry-page .list-section .header {
  display: grid;
  grid-template-columns: max-content 1fr 12rem;
  padding-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #aaadb2;
}
.auction-results-list-entry-page .list-section .header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.auction-results-list-entry-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.auction-results-list-entry-page .list-section .header__controls {
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.auction-results-list-entry-page .list-section .header__controls .button-items {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.auction-results-list-entry-page .list-section .header__controls .button-items li {
  margin: 0;
}
.auction-results-list-entry-page .list-section .header__controls .checkbox-items span {
  margin: 0;
}
.auction-results-list-entry-page .list-section .header__controls .btn-styled-default {
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.auction-results-list-entry-page .list-section .cards-list-inner .head,
.auction-results-list-entry-page .list-section .cards-list-inner .card {
  display: grid;
  grid-template-columns: 6rem 10rem 10rem 1fr 10rem 10rem 10rem 12rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card > div {
  word-break: break-all;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .no {
  color: #696e77;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .category {
  flex-direction: column;
  gap: 0.4rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .category__title {
  color: #2a2f38;
  font-weight: 600;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .category__date {
  text-align: center;
  padding: 0 1.7rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category__date {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category__date {
    padding: 0;
  }
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .status {
  font-weight: 600;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .info {
  display: grid;
  grid-template-columns: 12rem 1fr;
  text-align: left;
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.6rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .best-price,
.auction-results-list-entry-page .list-section .cards-list-inner .card .people {
  font-weight: 600;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
  line-height: 1.4;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs .item::after {
  display: inline-block;
  content: "ㆍ";
  color: #bdbdbf;
  margin: 0 0.2rem;
  font-weight: 500;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs .item:last-child::after {
  display: none;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .result .item .styled-blue {
  color: #305af8;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .result .item .styled-red {
  color: #d11938;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .button-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.8rem;
  gap: 0.8rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .button-items button {
  width: 100%;
  border-radius: 0.6rem;
  padding: 1.5rem 0;
  max-height: 4.4rem;
}
.auction-results-list-entry-page .list-section .cards-list-inner .card .button-items .edit {
  background-color: transparent;
  border: 1px solid #2a2f38;
}
.auction-results-list-entry-page .info_msg {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  height: 3.6rem;
}
.auction-results-list-entry-page .info_msg span {
  display: inline-flex;
  height: 100%;
  align-items: center;
  background-color: #fff5da;
  padding: 0 2.4rem;
  border-radius: 9999px;
  color: #2a2f38;
  font-weight: 600;
  gap: 0.8rem;
}
.auction-results-list-entry-page .info_msg span::before {
  content: attr(data-label);
  display: inline-flex;
}

.auction-results-list-entry-page--popup .popup__body .checkbox-items {
  gap: 1.5rem 0;
}

@media (max-width: 767.98px) {
  .auction-results-list-entry-page .page-header .select-wrapper::after {
    right: 0;
  }
  .auction-results-list-entry-page .page-header__select {
    width: fit-content;
  }
  .auction-results-list-entry-page .page-header__select .select-field.select-field--small {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    padding: 0 1.5rem 0 0;
  }
  .auction-results-list-entry-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
  .auction-results-list-entry-page .list-section .header {
    grid-template-columns: 1fr;
  }
  .auction-results-list-entry-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  .auction-results-list-entry-page .list-section .header .info_msg {
    width: 100%;
    height: auto;
  }
  .auction-results-list-entry-page .list-section .header .info_msg span {
    font-size: 1.4rem;
    width: 100%;
    border-radius: 0.4rem;
    padding: 1.2rem 1.6rem;
  }
  .auction-results-list-entry-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .auction-results-list-entry-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .auction-results-list-entry-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .auction-results-list-entry-page .list-section .header__controls .checkbox-items.btn-styled-default {
    padding: 0;
    border: none;
  }
  .auction-results-list-entry-page .list-section .header__controls .checkbox-items.btn-styled-default .checkbox__label {
    margin-left: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .auction-results-list-entry-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2.4rem 0;
    grid-template-areas: "on" "category" "result" "info" "details__specs--mobile" "status" "best-price" "people" "button-items";
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .no {
    grid-area: on;
    margin-bottom: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .no span::before {
    content: attr(data-label);
    display: inline-block;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .status {
    grid-area: status;
    justify-content: space-between;
    margin: 1.6rem 0;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    color: #80858b;
    display: inline-flex;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category {
    grid-area: category;
    flex-direction: row;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category__title, .auction-results-list-entry-page .list-section .cards-list-inner .card .category__date {
    color: #0075ff;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category__title {
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .result {
    grid-area: result;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .result .item {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .result .item::before {
    content: attr(data-label);
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .info {
    grid-area: info;
    grid-template-columns: 6.4rem 1fr;
    padding: 1.2rem 0;
    gap: 1.2rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .details__title {
    font-size: 1.6rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs--mobile {
    grid-area: details__specs--mobile;
    display: flex;
    flex-wrap: wrap;
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs--mobile .item::after {
    display: inline-block;
    content: "ㆍ";
    color: #bdbdbf;
    margin: 0 0.4rem;
    font-weight: 500;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .details__specs--mobile .item:last-child::after {
    display: none;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .best-price {
    grid-area: best-price;
    margin-bottom: 1rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .people {
    grid-area: people;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .best-price,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .people {
    justify-content: space-between;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .best-price .title,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .people .title {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: #bc6a02;
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .button-items {
    grid-area: button-items;
    padding: 0;
    flex-direction: row;
    margin: 1.6rem 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-list-entry-page .search-section .filter__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .auction-results-list-entry-page .search-section .filter__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
  .auction-results-list-entry-page .search-section .checkbox-items {
    grid-template-columns: repeat(2, minmax(9rem, 1fr));
  }
  .auction-results-list-entry-page .list-section .header {
    grid-template-columns: max-content 1fr;
  }
  .auction-results-list-entry-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .auction-results-list-entry-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .auction-results-list-entry-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .auction-results-list-entry-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .info {
    padding: 1.2rem 0 !important;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2.4rem 0;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .no,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .category,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .status,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .info {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .no {
    margin-bottom: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .no span::before {
    content: attr(data-label);
    display: inline-block;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .result {
    padding: 0;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .result .item {
    width: fit-content;
    display: flex;
    max-width: 100%;
    padding: 0.6rem 1.2rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .result .item::before {
    content: attr(data-label);
    color: #2a2f38;
    display: inline-flex;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .result .item strong {
    display: flex;
    justify-content: center;
    font-weight: 600;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .result .item strong::before {
    content: attr(data-label);
    font-size: 1.2rem;
    align-items: center;
    color: #bdbdbf;
    display: inline-flex;
    margin: 0 0.4rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .status {
    display: inline-flex;
    align-items: center;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .status::before {
    display: inline-flex;
    content: attr(data-label);
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .status span {
    display: inline-flex;
    align-items: center;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .status span::before {
    content: attr(data-label);
    font-size: 1.2rem;
    align-items: center;
    color: #bdbdbf;
    display: inline-flex;
    margin: 0 0.4rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .best-price,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .people {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .best-price .title,
  .auction-results-list-entry-page .list-section .cards-list-inner .card .tablet-view .people .title {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: #bc6a02;
    font-weight: 400;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .button-items {
    grid-column: 2/-1;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    justify-content: flex-end;
    gap: 0.8rem;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .button-items button {
    max-width: 16.6rem;
    width: 100%;
    border-radius: 0.6rem;
    padding: 1.5rem 0;
  }
  .auction-results-list-entry-page .list-section .cards-list-inner .card .button-items .edit {
    background-color: transparent;
    border: 1px solid #2a2f38;
  }
  .auction-results-list-entry-page .info_msg {
    justify-content: flex-end;
  }
}
.auction-results-list-bid-page .pr-0 {
  padding-right: 0 !important;
}
.auction-results-list-bid-page .mb-20 {
  margin-bottom: 2rem;
}
.auction-results-list-bid-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.auction-results-list-bid-page .search-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.auction-results-list-bid-page .search-section .filter {
  border-top: 1px solid #aaadb2;
}
.auction-results-list-bid-page .search-section .filter__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.auction-results-list-bid-page .search-section .filter__row.temcol-1 {
  grid-template-columns: repeat(1, 1fr);
}
.auction-results-list-bid-page .search-section .filter__field {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
}
.auction-results-list-bid-page .search-section .filter__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 10.2rem;
  height: 100%;
  padding: 2rem 0.8rem;
  flex-shrink: 0;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
  line-height: 1.4;
}
.auction-results-list-bid-page .search-section .filter__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1 auto;
  padding: 0.8rem 1.6rem;
}
.auction-results-list-bid-page .search-section .radio-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
  padding: 0;
}
.auction-results-list-bid-page .search-section .radio-items .item {
  display: flex;
  align-items: center;
  margin: 0;
}
.auction-results-list-bid-page .search-section .radio-items .radio {
  flex: 1 auto;
}
.auction-results-list-bid-page .search-section .checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  width: 100%;
}
.auction-results-list-bid-page .search-section .checkbox-items .checkbox {
  flex: 1 auto;
}
.auction-results-list-bid-page .search-section .filter--buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 2rem 0 2.4rem;
  gap: 0.8rem;
}
.auction-results-list-bid-page .search-section .filter--buttons .btn {
  display: flex;
  width: 100%;
  max-width: 12rem;
  max-height: 4.4rem;
  font-size: 1.4rem;
  padding: 1.5rem 1.6rem;
  border-radius: 0.6rem;
}
.auction-results-list-bid-page .search-section .filter--buttons .btn.search {
  background-color: #ed1438;
  color: #ffffff;
  font-weight: 600;
}
.auction-results-list-bid-page .search-section .filter--buttons .btn.reset {
  font-weight: 600;
  color: #2a2f38;
  border: 1px solid #d5d7db;
}
.auction-results-list-bid-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.auction-results-list-bid-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
.auction-results-list-bid-page .list-section .header {
  display: grid;
  grid-template-columns: max-content 12rem;
  padding-bottom: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #aaadb2;
}
.auction-results-list-bid-page .list-section .header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.auction-results-list-bid-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.auction-results-list-bid-page .list-section .header__controls {
  width: 100%;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.auction-results-list-bid-page .list-section .header__controls .button-items {
  display: flex;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.auction-results-list-bid-page .list-section .header__controls .button-items li {
  margin: 0;
}
.auction-results-list-bid-page .list-section .header__controls .checkbox-items span {
  margin: 0;
}
.auction-results-list-bid-page .list-section .header__controls .btn-styled-default {
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.auction-results-list-bid-page .list-section .cards-list-inner .head,
.auction-results-list-bid-page .list-section .cards-list-inner .card {
  display: grid;
  grid-template-columns: 6rem 10rem 1fr 10rem 10rem 10rem 10rem 12rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card > div {
  word-break: break-all;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .no {
  color: #696e77;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .category {
  flex-direction: column;
  gap: 0.4rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .category__title {
  color: #2a2f38;
  font-weight: 600;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .category__date {
  text-align: center;
  padding: 0 1.7rem;
}
@media (max-width: 767.98px) {
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category__date {
    padding: 0;
  }
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .status {
  font-weight: 600;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .info {
  display: grid;
  grid-template-columns: 12rem 1fr;
  text-align: left;
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.6rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .best-price,
.auction-results-list-bid-page .list-section .cards-list-inner .card .people {
  font-weight: 600;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
  line-height: 1.4;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs .item::after {
  display: inline-block;
  content: "ㆍ";
  color: #bdbdbf;
  margin: 0 0.2rem;
  font-weight: 500;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs .item:last-child::after {
  display: none;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .result .item .styled-blue {
  color: #305af8;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .result .item .styled-red {
  color: #d11938;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .button-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.8rem;
  gap: 0.8rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .button-items button {
  width: 100%;
  border-radius: 0.6rem;
  padding: 1.5rem 0;
  max-height: 4.4rem;
}
.auction-results-list-bid-page .list-section .cards-list-inner .card .button-items .edit {
  background-color: transparent;
  border: 1px solid #2a2f38;
}
.auction-results-list-bid-page .info_msg {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  height: 3.6rem;
}
.auction-results-list-bid-page .info_msg span {
  display: inline-flex;
  height: 100%;
  align-items: center;
  background-color: #fff5da;
  padding: 0 2.4rem;
  border-radius: 9999px;
  color: #2a2f38;
  font-weight: 600;
  gap: 0.8rem;
}
.auction-results-list-bid-page .info_msg span::before {
  content: attr(data-label);
  display: inline-flex;
}

.auction-results-list-bid-page--popup .popup__body .checkbox-items {
  gap: 1.5rem 0;
}

@media (max-width: 767.98px) {
  .auction-results-list-bid-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
  .auction-results-list-bid-page .list-section .header {
    grid-template-columns: 1fr;
  }
  .auction-results-list-bid-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    align-items: flex-start;
  }
  .auction-results-list-bid-page .list-section .header .info_msg {
    width: 100%;
    height: auto;
  }
  .auction-results-list-bid-page .list-section .header .info_msg span {
    font-size: 1.4rem;
    width: 100%;
    border-radius: 0.4rem;
    padding: 1.2rem 1.6rem;
  }
  .auction-results-list-bid-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .auction-results-list-bid-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .auction-results-list-bid-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .auction-results-list-bid-page .list-section .header__controls .checkbox-items.btn-styled-default {
    padding: 0;
    border: none;
  }
  .auction-results-list-bid-page .list-section .header__controls .checkbox-items.btn-styled-default .checkbox__label {
    margin-left: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .auction-results-list-bid-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 2.4rem 0;
    grid-template-areas: "on" "category" "result" "info" "details__specs--mobile" "status" "best-price" "people" "button-items";
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .no {
    grid-area: on;
    margin-bottom: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .no span::before {
    content: attr(data-label);
    display: inline-block;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .status {
    grid-area: status;
    justify-content: space-between;
    margin: 1rem 0;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category {
    grid-area: category;
    flex-direction: row;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category__title, .auction-results-list-bid-page .list-section .cards-list-inner .card .category__date {
    color: #0075ff;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category__title {
    font-weight: 400;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .result {
    grid-area: result;
    margin-top: 1.2rem;
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr max-content;
    background-color: #f0f2f5;
    padding: 0.8rem 1.2rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .result .item {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 0;
    border-radius: 0.4rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .result .fail_msg {
    margin-left: 0.6rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .result .item::before {
    content: attr(data-label);
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .info {
    grid-area: info;
    grid-template-columns: 6.4rem 1fr;
    padding: 1.2rem 0;
    gap: 1.2rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .details__title {
    font-size: 1.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs--mobile {
    grid-area: details__specs--mobile;
    display: flex;
    flex-wrap: wrap;
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs--mobile .item::after {
    display: inline-block;
    content: "ㆍ";
    color: #bdbdbf;
    margin: 0 0.4rem;
    font-weight: 500;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .details__specs--mobile .item:last-child::after {
    display: none;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .best-price {
    grid-area: best-price;
    margin-bottom: 1rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .people {
    grid-area: people;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .status,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .best-price,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .people {
    justify-content: space-between;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .status .title,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .best-price .title,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .people .title {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: #bc6a02;
    font-weight: 400;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .button-items {
    grid-area: button-items;
    padding: 0;
    flex-direction: row;
    margin: 1.6rem 0 0;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-list-bid-page .search-section .filter__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .auction-results-list-bid-page .search-section .filter__item {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
  .auction-results-list-bid-page .search-section .checkbox-items {
    grid-template-columns: repeat(2, minmax(9rem, 1fr));
  }
  .auction-results-list-bid-page .list-section .header {
    grid-template-columns: max-content 12rem;
  }
  .auction-results-list-bid-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .auction-results-list-bid-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .auction-results-list-bid-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .auction-results-list-bid-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .auction-results-list-bid-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .head {
    display: none;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .info {
    padding: 1.2rem 0 !important;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2.4rem 0;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .no,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .status,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .info {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .no {
    margin-bottom: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .no span::before {
    content: attr(data-label);
    display: inline-block;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .category__date {
    padding: 0;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .result {
    padding: 0;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .result .item {
    width: fit-content;
    display: flex;
    max-width: 100%;
    padding: 0.6rem 1.2rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .result .item::before {
    content: attr(data-label);
    color: #2a2f38;
    display: inline-flex;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .result .item strong {
    display: flex;
    justify-content: center;
    font-weight: 600;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .result .item strong::before {
    content: attr(data-label);
    font-size: 1.2rem;
    align-items: center;
    color: #bdbdbf;
    display: inline-flex;
    margin: 0 0.4rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .best-price,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .status,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .people {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .best-price .title,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .status .title,
  .auction-results-list-bid-page .list-section .cards-list-inner .card .tablet-view .people .title {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    color: #bc6a02;
    font-weight: 400;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card > div {
    align-items: flex-start;
    justify-content: flex-start;
    border-right: none;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .button-items {
    grid-column: 2/-1;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0;
    justify-content: flex-end;
    gap: 0.8rem;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .button-items button {
    max-width: 16.6rem;
    width: 100%;
    border-radius: 0.6rem;
    padding: 1.5rem 0;
  }
  .auction-results-list-bid-page .list-section .cards-list-inner .card .button-items .edit {
    background-color: transparent;
    border: 1px solid #2a2f38;
  }
  .auction-results-list-bid-page .info_msg {
    justify-content: flex-end;
  }
}
.auction-results-confirmation-page {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 8rem;
}
.auction-results-confirmation-page .container {
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .container {
    padding-bottom: 0rem;
  }
}
.auction-results-confirmation-page .pr-0 {
  padding-right: 0 !important;
}
.auction-results-confirmation-page .mb-20 {
  margin-bottom: 2rem;
}
.auction-results-confirmation-page .container {
  max-width: 1000px;
}
.auction-results-confirmation-page h2 {
  margin: 0;
}
.auction-results-confirmation-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.auction-results-confirmation-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.auction-results-confirmation-page .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 7.2rem 1fr;
  margin-bottom: 3.1rem;
}
.auction-results-confirmation-page .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.auction-results-confirmation-page .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 7.6rem;
}
.auction-results-confirmation-page .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.auction-results-confirmation-page .select-section .header .specs {
  grid-area: specs;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.auction-results-confirmation-page .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.auction-results-confirmation-page .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.auction-results-confirmation-page .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.auction-results-confirmation-page .select-section .header .entry {
  display: none;
  width: fit-content;
  align-items: center;
  font-weight: 600;
  color: #d11938;
  background-color: #fef6f7;
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  grid-area: entry;
}
.auction-results-confirmation-page .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.auction-results-confirmation-page .select-section .header.has-entry {
  grid-template-areas: "image entry" "image title" "image specs";
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .select-section .header.has-entry {
    grid-template-areas: "image entry" "image title" "specs specs";
  }
}
.auction-results-confirmation-page .select-section .header.has-entry .entry {
  display: inline-flex;
}
.auction-results-confirmation-page .select-section .table {
  border-top: 1px solid #aaadb2;
}
.auction-results-confirmation-page .select-section .table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 4.8rem;
}
.auction-results-confirmation-page .select-section .table__field {
  display: flex;
  border-bottom: 1px solid #e9e9e9;
}
.auction-results-confirmation-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0.8rem;
}
.auction-results-confirmation-page .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.6rem;
}
.auction-results-confirmation-page .select-section .table strong {
  font-weight: 600;
}
.auction-results-confirmation-page .select-section .table .blue {
  color: #0075ff;
}
.auction-results-confirmation-page .select-section .table .red {
  color: #d11938;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-confirmation-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
  .auction-results-confirmation-page .select-section .table__field {
    height: 4.8rem;
  }
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .select-section .table {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .auction-results-confirmation-page .select-section .table__row {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .auction-results-confirmation-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 1.2rem;
  }
  .auction-results-confirmation-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0;
    min-width: 0;
  }
  .auction-results-confirmation-page .select-section .table__item {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.8rem;
    padding: 0;
    flex-wrap: wrap;
  }
}
.auction-results-confirmation-page .select-section .button-wrapper {
  display: flex;
  justify-content: center;
  margin: 2rem 0 3.2rem;
}
.auction-results-confirmation-page .select-section .button-wrapper button {
  display: flex;
  color: #ffffff;
  font-size: 14px;
  width: 100%;
  max-width: 18rem;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #2a2f38;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .select-section .button-wrapper button {
    max-width: 100%;
  }
}
.auction-results-confirmation-page .list-section .table__header, .auction-results-confirmation-page .list-section .table__row {
  display: grid;
}
.auction-results-confirmation-page .list-section .table__header {
  border-top: 1px solid #aaadb2;
  border-bottom: 1px solid #d5d7db;
  background-color: #f6f7f9;
  font-weight: 500;
  padding: 0;
  height: 4rem;
  align-items: center;
  text-align: center;
}
.auction-results-confirmation-page .list-section .table__header li {
  margin: 0;
}
.auction-results-confirmation-page .list-section .table__row {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-confirmation-page .list-section .table__field {
  border-right: 1px solid #d5d7db;
  min-width: 0;
}
.auction-results-confirmation-page .list-section .table__field:last-child {
  border-right: none;
}
.auction-results-confirmation-page .list-section .table__field .radio,
.auction-results-confirmation-page .list-section .table__field span,
.auction-results-confirmation-page .list-section .table__field strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  word-break: break-all;
}
.auction-results-confirmation-page .list-section .table__field .radio span,
.auction-results-confirmation-page .list-section .table__field span span,
.auction-results-confirmation-page .list-section .table__field strong span {
  font-weight: 600;
}
.auction-results-confirmation-page .list-section .table__field span {
  font-weight: 400;
}
.auction-results-confirmation-page .list-section {
  border: 1px solid #e9e9e9;
  border-radius: 0.4rem;
  padding: 2rem;
}
.auction-results-confirmation-page .list-section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.auction-results-confirmation-page .list-section .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.auction-results-confirmation-page .list-section .title-wrapper h2 {
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .list-section .title-wrapper {
    width: 100%;
    justify-content: space-between;
  }
}
.auction-results-confirmation-page .list-section .button-wrapper .sold-btn {
  background-color: #ed1438;
  color: #ffffff;
  height: 4.4rem;
  padding: 0 1.6rem;
  border-radius: 0.6rem;
}
.auction-results-confirmation-page .list-section .button-wrapper .sold-btn:disabled {
  background-color: #edeff2;
  color: #aaadb2;
  display: none;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .list-section .button-wrapper {
    border-top: 1px solid #e9e9e9;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #ffffff;
    justify-content: center;
    padding: 1.2rem 1.6rem 2.8rem;
  }
  .auction-results-confirmation-page .list-section .button-wrapper .sold-btn {
    width: 100%;
    height: 4.8rem;
  }
  .auction-results-confirmation-page .list-section .button-wrapper .sold-btn:disabled {
    display: flex;
  }
}
.auction-results-confirmation-page .list-section .table__header, .auction-results-confirmation-page .list-section .table__row {
  grid-template-columns: 8rem 8rem repeat(4, 1fr);
}
.auction-results-confirmation-page .list-section .table__header {
  margin: 0;
}
.auction-results-confirmation-page .list-section .table__field {
  padding: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auction-results-confirmation-page .list-section .table__row.cancel .table__field .text {
  flex: 1 0 auto;
  color: #ff2700;
  justify-content: flex-end;
  font-weight: 600;
}
.auction-results-confirmation-page .list-section .table__row.cancel .area-1 {
  display: flex;
  justify-content: center;
  border: none;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .list-section .table__row {
    grid-template-columns: 1fr 1fr;
    border: 1px solid #f0f2f5;
    border-radius: 0 0 4px 4px;
    margin-bottom: 0.8rem;
    grid-template-areas: "area-2 area-2 area-1" "area-3 area-3 area-3" "area-4 area-4 area-4" "area-5 area-5 area-5" "area-6 area-6 area-6";
  }
  .auction-results-confirmation-page .list-section .table__field {
    border-right: none;
    display: flex;
    justify-content: space-between;
  }
  .auction-results-confirmation-page .list-section .table__field:before {
    display: flex;
    content: attr(data-label);
  }
  .auction-results-confirmation-page .list-section .table__field:last-child {
    padding: 0 1.2rem 1.2rem;
  }
  .auction-results-confirmation-page .list-section .table .area-3 {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .auction-results-confirmation-page .list-section .table .area-4,
  .auction-results-confirmation-page .list-section .table .area-5 {
    padding: 0 1.2rem 0.8rem;
  }
  .auction-results-confirmation-page .list-section .table .area-1 {
    grid-area: area-1;
    justify-content: flex-end;
    width: 100%;
    display: flex;
    background: #f0f2f5;
    border-radius: 0 4px 0 0;
    padding-right: 1.2rem;
    padding-left: 0;
  }
  .auction-results-confirmation-page .list-section .table .area-2 {
    grid-area: area-2;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
    background: #f0f2f5;
    border-radius: 4px 0 0 0;
    padding-left: 1.2rem;
  }
  .auction-results-confirmation-page .list-section .table .area-3 {
    grid-area: area-3;
  }
  .auction-results-confirmation-page .list-section .table .area-4 {
    grid-area: area-4;
  }
  .auction-results-confirmation-page .list-section .table .area-5 {
    grid-area: area-5;
  }
  .auction-results-confirmation-page .list-section .table .area-6 {
    grid-area: area-6;
    padding: 0 1.2rem 0.8rem;
  }
}
.auction-results-confirmation-page .list-section .not {
  display: flex;
  justify-content: center;
  padding: 2.8rem 6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #80858b;
}
.auction-results-confirmation-page .container--history {
  border-top: 8px solid #edeff2;
  margin: 6rem auto 0;
}
.auction-results-confirmation-page .container--history .list-section {
  margin-top: 4rem;
}
.auction-results-confirmation-page .container--history .list-section .radio__control {
  display: flex;
}
.auction-results-confirmation-page .container--history .list-section .table__header, .auction-results-confirmation-page .container--history .list-section .table__row {
  grid-template-columns: 4rem repeat(4, 1fr) 10rem;
}
.auction-results-confirmation-page .container--history .list-section .table__field.area-6 {
  border-right: none;
}
.auction-results-confirmation-page .container--history .list-section .table__field.area-1 {
  display: none;
}
.auction-results-confirmation-page .container--history .list-section .table__row.cancel .area-1 {
  display: flex;
}
@media (max-width: 767.98px) {
  .auction-results-confirmation-page .container--history .list-section .table__row {
    grid-template-columns: 1fr 1fr;
    border: 1px solid #f0f2f5;
    border-radius: 0 0 4px 4px;
    margin-bottom: 0.8rem;
    grid-template-areas: "area-2 area-2" "area-3 area-3" "area-4 area-4" "area-5 area-5" "area-6 area-6";
  }
  .auction-results-confirmation-page .container--history .list-section .table__row.cancel {
    grid-template-areas: "area-2 area-1" "area-3 area-3" "area-4 area-4" "area-5 area-5" "area-6 area-6";
  }
  .auction-results-confirmation-page .container--history .list-section .table__field {
    border-right: none;
    display: flex;
    justify-content: space-between;
  }
  .auction-results-confirmation-page .container--history .list-section .table__field:before {
    display: flex;
    content: attr(data-label);
  }
  .auction-results-confirmation-page .container--history .list-section .table__field:last-child {
    padding: 0 1.2rem 1.2rem;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-3 {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-4,
  .auction-results-confirmation-page .container--history .list-section .table .area-5 {
    padding: 0 1.2rem 0.8rem;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-1 {
    grid-area: area-1;
    justify-content: flex-end;
    width: 100%;
    background: #f0f2f5;
    border-radius: 0 4px 0 0;
    padding-right: 1.2rem;
    padding-bottom: 0;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-2 {
    grid-area: area-2;
    justify-content: flex-start;
    width: 100%;
    display: flex;
    background: #f0f2f5;
    border-radius: 4px 0 0 0;
    padding-left: 1.2rem;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-3 {
    grid-area: area-3;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-4 {
    grid-area: area-4;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-5 {
    grid-area: area-5;
  }
  .auction-results-confirmation-page .container--history .list-section .table .area-6 {
    grid-area: area-6;
  }
}

.auction-results-sold-page {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 4rem;
}
.auction-results-sold-page .container {
  padding-top: 0;
  margin-bottom: 6rem;
}
.auction-results-sold-page .container:nth-child(n+2) {
  border-top: 8px solid #edeff2;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .container {
    padding-bottom: 4rem;
  }
}
.auction-results-sold-page .pr-0 {
  padding-right: 0 !important;
}
.auction-results-sold-page .mb-20 {
  margin-bottom: 2rem;
}
.auction-results-sold-page .container {
  max-width: 1000px;
}
.auction-results-sold-page h2 {
  margin: 0;
}
.auction-results-sold-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.auction-results-sold-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.auction-results-sold-page .select-section {
  margin-bottom: 4rem;
}
.auction-results-sold-page .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 7.2rem 1fr;
  margin-bottom: 3.1rem;
}
.auction-results-sold-page .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.auction-results-sold-page .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 7.6rem;
}
.auction-results-sold-page .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.auction-results-sold-page .select-section .header .specs {
  grid-area: specs;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.auction-results-sold-page .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.auction-results-sold-page .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.auction-results-sold-page .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.auction-results-sold-page .select-section .header .entry {
  display: none;
  width: fit-content;
  align-items: center;
  font-weight: 600;
  color: #d11938;
  background-color: #fef6f7;
  padding: 0.8rem 1.2rem;
  border-radius: 0.4rem;
  grid-area: entry;
}
.auction-results-sold-page .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.auction-results-sold-page .select-section .header.has-entry {
  grid-template-areas: "image entry" "image title" "image specs";
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .select-section .header.has-entry {
    grid-template-areas: "image entry" "image title" "specs specs";
  }
}
.auction-results-sold-page .select-section .header.has-entry .entry {
  display: inline-flex;
}
.auction-results-sold-page .select-section .table {
  border-top: 1px solid #aaadb2;
}
.auction-results-sold-page .select-section .table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 4.8rem;
}
.auction-results-sold-page .select-section .table__field {
  display: flex;
  border-bottom: 1px solid #e9e9e9;
}
.auction-results-sold-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0.8rem;
}
.auction-results-sold-page .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.6rem;
}
.auction-results-sold-page .select-section .table strong {
  font-weight: 600;
}
.auction-results-sold-page .select-section .table .blue {
  color: #0075ff;
}
.auction-results-sold-page .select-section .table .red {
  color: #d11938;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .auction-results-sold-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
  .auction-results-sold-page .select-section .table__field {
    height: 4.8rem;
  }
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .select-section .table {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .auction-results-sold-page .select-section .table__row {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .auction-results-sold-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 1.2rem;
  }
  .auction-results-sold-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: auto;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0;
  }
  .auction-results-sold-page .select-section .table__item {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.8rem;
    padding: 0;
    flex-wrap: wrap;
  }
}
.auction-results-sold-page .list-section {
  border: 1px solid #e9e9e9;
  border-radius: 0.4rem;
  padding: 2rem;
}
.auction-results-sold-page .list-section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.auction-results-sold-page .list-section .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.auction-results-sold-page .list-section .title-wrapper h2 {
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .list-section .title-wrapper {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.auction-results-sold-page .list-section .button-wrapper .sold-btn {
  background-color: #ed1438;
  color: #ffffff;
  height: 4.4rem;
  padding: 0 1.6rem;
  border-radius: 0.6rem;
}
.auction-results-sold-page .list-section .button-wrapper .sold-btn:disabled {
  background-color: #edeff2;
  color: #aaadb2;
  display: none;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .list-section .button-wrapper {
    border-top: 1px solid #e9e9e9;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #ffffff;
    justify-content: center;
    padding: 1.2rem 1.6rem 2.8rem;
  }
  .auction-results-sold-page .list-section .button-wrapper .sold-btn {
    width: 100%;
    height: 4.8rem;
  }
  .auction-results-sold-page .list-section .button-wrapper .sold-btn:disabled {
    display: flex;
  }
}
.auction-results-sold-page .list-section {
  /*.table.sold {
    .table__header,
    .table__row {
      display: grid;
      grid-template-columns: 4rem repeat(4, 1fr) 10rem;
    }
    .sold {
      background-color: $blue-30;
    }
    .text {
      display: flex;
      font-weight: $font-weight-semibold;
      color: $blue-600;
    }
    .area-1 {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    @include mobile-only {
      .table__row {
        grid-template-columns: 1fr 1fr;
        &.sold {
          border-radius: 4px;
          border: 1px solid $blue-600;
          .sold__text,
          .area-1,
          .area-2 {
            color: $gray-00;
            background-color: $blue-600;
          }
        }
      }
      .text {
        color: $gray-00;
      }
    }
  }*/
}
.auction-results-sold-page .list-section .table .table__header,
.auction-results-sold-page .list-section .table .table__row {
  display: grid;
  grid-template-columns: 4rem repeat(4, 1fr);
}
.auction-results-sold-page .list-section .table .table__header {
  border-top: 1px solid #aaadb2;
  border-bottom: 1px solid #d5d7db;
  background-color: #f6f7f9;
  font-weight: 500;
  padding: 0;
  height: 4rem;
  align-items: center;
  text-align: center;
  margin: 0;
}
.auction-results-sold-page .list-section .table .table__header li {
  margin: 0;
}
.auction-results-sold-page .list-section .table .table__row {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-sold-page .list-section .table .table__field {
  border-right: 1px solid #d5d7db;
  padding: 1.2rem 0;
  text-align: center;
}
.auction-results-sold-page .list-section .table .table__field:last-child, .auction-results-sold-page .list-section .table .table__field:nth-last-child(2) {
  border-right: none;
}
.auction-results-sold-page .list-section .table .table__field .text,
.auction-results-sold-page .list-section .table .table__field strong,
.auction-results-sold-page .list-section .table .table__field strong > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.auction-results-sold-page .list-section .table .table__field span {
  font-weight: 400;
}
.auction-results-sold-page .list-section .table .table__field.area-1 {
  display: none;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__header,
.auction-results-sold-page .list-section .table.sold-cancel .table__row {
  display: grid;
  grid-template-columns: 4rem repeat(4, 1fr) 10rem;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__header {
  border-top: 1px solid #aaadb2;
  border-bottom: 1px solid #d5d7db;
  background-color: #f6f7f9;
  font-weight: 500;
  padding: 0;
  height: 4rem;
  align-items: center;
  text-align: center;
  margin: 0;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__header li {
  margin: 0;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row {
  border-bottom: 1px solid #d5d7db;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row.sold {
  background-color: #f1faff;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row.sold .text {
  color: #0075ff;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row.sold .area-1 {
  display: flex;
  justify-content: center;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row.cancel .text {
  flex: 1 0 auto;
  color: #ff2700;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__row.cancel .area-1 {
  display: flex;
  justify-content: center;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__field {
  border-right: 1px solid #d5d7db;
  padding: 1.2rem 0;
  text-align: center;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__field:last-child, .auction-results-sold-page .list-section .table.sold-cancel .table__field:nth-last-child(2) {
  border-right: none;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__field .text,
.auction-results-sold-page .list-section .table.sold-cancel .table__field strong,
.auction-results-sold-page .list-section .table.sold-cancel .table__field strong > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.auction-results-sold-page .list-section .table.sold-cancel .table__field span {
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .list-section .table .table__body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .auction-results-sold-page .list-section .table .table__row {
    border: 1px solid #f0f2f5;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: " area-2 area-2 " " area-3 area-3 " " area-4 area-4 " " area-5 area-5 " " area-6 area-6 ";
    gap: 0.8rem;
    padding-bottom: 1.2rem;
    border-radius: 4px;
  }
  .auction-results-sold-page .list-section .table .table__field {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 0 1.2rem;
  }
  .auction-results-sold-page .list-section .table .table__field:first-child {
    padding: 1.2rem;
  }
  .auction-results-sold-page .list-section .table .table__field:before {
    display: flex;
    content: attr(data-label);
  }
  .auction-results-sold-page .list-section .table .area-2 {
    grid-area: area-2;
    display: flex;
    justify-content: flex-start;
    background-color: #f0f2f5;
  }
  .auction-results-sold-page .list-section .table .area-3 {
    grid-area: area-3;
  }
  .auction-results-sold-page .list-section .table .area-4 {
    grid-area: area-4;
  }
  .auction-results-sold-page .list-section .table .area-5 {
    grid-area: area-5;
  }
  .auction-results-sold-page .list-section .table .area-6 {
    grid-area: area-6;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__row {
    border: 1px solid #f0f2f5;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: " area-2 area-1 " " area-3 area-3 " " area-4 area-4 " " area-5 area-5 " " area-6 area-6 ";
    gap: 0.8rem 0;
    padding-bottom: 1.2rem;
    border-radius: 4px;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__row.sold {
    border: 1px solid #0075ff;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__row.sold .area-2,
  .auction-results-sold-page .list-section .table.sold-cancel .table__row.sold .area-1 {
    background-color: #0075ff;
    color: #ffffff;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__row.sold .text {
    color: #ffffff;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__row.cancel .text {
    justify-content: flex-end;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__field {
    border: none;
    display: flex;
    justify-content: space-between;
    padding: 0 1.2rem;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__field:first-child {
    padding: 1.2rem;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .table__field:before {
    display: flex;
    content: attr(data-label);
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-1 {
    justify-content: flex-end !important;
    background-color: #f0f2f5;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-2 {
    grid-area: area-2;
    display: flex;
    justify-content: flex-start;
    background-color: #f0f2f5;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-3 {
    grid-area: area-3;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-4 {
    grid-area: area-4;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-5 {
    grid-area: area-5;
  }
  .auction-results-sold-page .list-section .table.sold-cancel .area-6 {
    grid-area: area-6;
  }
}
.auction-results-sold-page .list-section .not {
  display: flex;
  justify-content: center;
  padding: 2.8rem 6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #80858b;
}
.auction-results-sold-page .container--history {
  border-top: 8px solid #edeff2;
  margin: 6rem auto 0;
}
.auction-results-sold-page .container--history .list-section {
  margin-top: 4rem;
}
.auction-results-sold-page .container--history .list-section .radio__control {
  display: flex;
}
.auction-results-sold-page .container--history .list-section .table__header, .auction-results-sold-page .container--history .list-section .table__row {
  grid-template-columns: 4rem repeat(4, 1fr) 10rem;
}
.auction-results-sold-page .container--history .list-section .table__field.area-6 {
  border-right: none;
}
.auction-results-sold-page .container--history .list-section .table__field.area-1 {
  display: none;
}
.auction-results-sold-page .container--history .list-section .table__row .table__field .text {
  flex: 1 0 auto;
  color: #ff2700;
  font-weight: 600;
}
.auction-results-sold-page .container--history .list-section .table__row.cancel .area-1 {
  display: flex;
}
@media (max-width: 767.98px) {
  .auction-results-sold-page .container--history .list-section .table__row {
    grid-template-columns: 1fr 1fr;
    border: 1px solid #f0f2f5;
    border-radius: 0 0 4px 4px;
    margin-bottom: 0.8rem;
    grid-template-areas: "area-2 area-2" "area-3 area-3" "area-4 area-4" "area-5 area-5" "area-6 area-6";
  }
  .auction-results-sold-page .container--history .list-section .table__row.cancel {
    gap: 0;
    grid-template-areas: "area-2 area-1" "area-3 area-3" "area-4 area-4" "area-5 area-5" "area-6 area-6";
  }
  .auction-results-sold-page .container--history .list-section .table__row.cancel .text {
    justify-content: flex-end;
  }
  .auction-results-sold-page .container--history .list-section .table__field {
    border-right: none;
    display: flex;
    justify-content: space-between;
  }
  .auction-results-sold-page .container--history .list-section .table__field:before {
    display: flex;
    content: attr(data-label);
  }
  .auction-results-sold-page .container--history .list-section .table__field:last-child {
    padding: 0 1.2rem 1.2rem;
  }
  .auction-results-sold-page .container--history .list-section .table .area-3 {
    padding: 1.2rem 1.2rem 0.8rem;
  }
  .auction-results-sold-page .container--history .list-section .table .area-4,
  .auction-results-sold-page .container--history .list-section .table .area-5 {
    padding: 0 1.2rem 0.8rem;
  }
  .auction-results-sold-page .container--history .list-section .table .area-1 {
    grid-area: area-1;
    justify-content: flex-end;
    width: 100%;
    background: #f0f2f5;
    border-radius: 0 4px 0 0;
    padding-right: 1.2rem;
    padding-bottom: 0;
  }
  .auction-results-sold-page .container--history .list-section .table .area-2 {
    grid-area: area-2;
    justify-content: flex-start;
    width: 100%;
    display: flex;
    background: #f0f2f5;
    border-radius: 4px 0 0 0;
    padding-left: 1.2rem;
  }
  .auction-results-sold-page .container--history .list-section .table .area-3 {
    grid-area: area-3;
  }
  .auction-results-sold-page .container--history .list-section .table .area-4 {
    grid-area: area-4;
  }
  .auction-results-sold-page .container--history .list-section .table .area-5 {
    grid-area: area-5;
  }
  .auction-results-sold-page .container--history .list-section .table .area-6 {
    grid-area: area-6;
  }
}

.buyer-info-page {
  color: #2a2f38;
  padding-bottom: 4rem;
}
.buyer-info-page .container {
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .buyer-info-page .container {
    padding-bottom: 4rem;
  }
}
.buyer-info-page .pr-0 {
  padding-right: 0 !important;
}
.buyer-info-page .mb-20 {
  margin-bottom: 2rem;
}
.buyer-info-page .container {
  max-width: 1000px;
}
.buyer-info-page h2 {
  margin: 0;
}
.buyer-info-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.buyer-info-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.buyer-info-page .select-section {
  margin-bottom: 4rem;
}
.buyer-info-page .select-section .table {
  border-top: 1px solid #aaadb2;
}
.buyer-info-page .select-section .table .grid-col-1 {
  grid-column: 1/-1;
}
.buyer-info-page .select-section .table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 4.8rem;
  border-bottom: 1px solid #e9e9e9;
}
.buyer-info-page .select-section .table__field {
  display: flex;
}
.buyer-info-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0.8rem;
}
.buyer-info-page .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .buyer-info-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
    border-bottom: none;
  }
  .buyer-info-page .select-section .table__field {
    height: 4.8rem;
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 767.98px) {
  .buyer-info-page .select-section .table {
    display: flex;
    flex-direction: column;
    padding: 1.6rem 0;
    gap: 1.2rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .buyer-info-page .select-section .table__row {
    height: 100%;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(1, 1fr);
    border: none;
  }
  .buyer-info-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .buyer-info-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: auto;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0;
  }
  .buyer-info-page .select-section .table__item {
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: end;
    gap: 0.8rem;
    padding: 0;
  }
  .buyer-info-page .select-section .table .address {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e9e9e9;
    padding: 1.2rem 0 0;
  }
  .buyer-info-page .select-section .table .address .table__label {
    align-items: flex-start;
  }
  .buyer-info-page .select-section .table .address .table__item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}

.seller-info-page ul,
.seller-info-page li {
  margin: 0;
  padding: 0;
}
.seller-info-page {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 4rem;
}
.seller-info-page .container {
  padding-top: 0;
  margin-bottom: 6rem;
}
.seller-info-page .container:nth-child(n+2) {
  border-top: 8px solid #edeff2;
}
@media (max-width: 767.98px) {
  .seller-info-page .container {
    padding-bottom: 4rem;
  }
}
.seller-info-page .pr-0 {
  padding-right: 0 !important;
}
.seller-info-page .mb-20 {
  margin-bottom: 2rem;
}
.seller-info-page .container {
  max-width: 1000px;
}
.seller-info-page h2 {
  margin: 0;
}
.seller-info-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.seller-info-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.seller-info-page .select-section {
  margin-bottom: 4rem;
}
.seller-info-page .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 8.2rem 1fr;
  margin-bottom: 3.1rem;
  align-items: center;
}
.seller-info-page .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.seller-info-page .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 8.2rem;
}
.seller-info-page .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.seller-info-page .select-section .header .specs {
  grid-area: specs;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.seller-info-page .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.seller-info-page .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.seller-info-page .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .seller-info-page .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.seller-info-page .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .seller-info-page .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.seller-info-page .select-section .table {
  border-top: 1px solid #aaadb2;
}
.seller-info-page .select-section .table .grid-col-1 {
  grid-column: 1/-1;
}
.seller-info-page .select-section .table__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 4.8rem;
  border-bottom: 1px solid #e9e9e9;
}
.seller-info-page .select-section .table__field {
  display: flex;
}
.seller-info-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0.8rem;
}
.seller-info-page .select-section .table__item {
  display: flex;
  align-items: center;
  padding: 0 1.6rem;
}
.seller-info-page .select-section .table .finance {
  display: flex;
  margin: 0;
  padding: 0;
}
.seller-info-page .select-section .table .finance li {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.seller-info-page .select-section .table .finance li:after {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  content: "";
  margin: 0 0.8rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .seller-info-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
    border-bottom: none;
  }
  .seller-info-page .select-section .table__field {
    height: 4.8rem;
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 767.98px) {
  .seller-info-page .select-section .table {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1.2rem;
    border: none;
  }
  .seller-info-page .select-section .table__row {
    height: 100%;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(1, 1fr);
    border: none;
  }
  .seller-info-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .seller-info-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: auto;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0;
  }
  .seller-info-page .select-section .table__item {
    display: flex;
    align-items: center;
    font-weight: 500;
    justify-content: end;
    gap: 0.4rem;
    padding: 0;
  }
  .seller-info-page .select-section .table .address {
    display: flex;
    justify-content: space-between;
  }
  .seller-info-page .select-section .table .address .table__label {
    align-items: flex-start;
  }
  .seller-info-page .select-section .table .address .table__item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .seller-info-page .select-section .table .address .finance {
    gap: 0.4rem;
  }
  .seller-info-page .select-section .table .address .finance li:after {
    display: none;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 100%;
    background-color: #bdbdbf;
    content: "";
    margin: 0 0.8rem;
  }
}
.seller-info-page .list-section {
  border: 1px solid #e9e9e9;
  border-radius: 0.4rem;
  padding: 2rem;
}
.seller-info-page .list-section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .seller-info-page .list-section .header {
    border-bottom: 1px solid #aaadb2;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  .seller-info-page .list-section .header {
    border-bottom: 1px solid #aaadb2;
    padding-bottom: 2rem;
  }
}
.seller-info-page .list-section .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.seller-info-page .list-section .title-wrapper h2 {
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .seller-info-page .list-section .title-wrapper {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.seller-info-page .list-section .contents {
  display: grid;
  grid-template-columns: 1fr 28.3rem;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .seller-info-page .list-section .contents {
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-areas: "bid" "deposit-info";
  }
  .seller-info-page .list-section .contents .deposit-info {
    grid-area: deposit-info;
  }
  .seller-info-page .list-section .contents .bank__details::after {
    display: none;
  }
  .seller-info-page .list-section .contents .fees {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .seller-info-page .list-section .contents .fees__title,
  .seller-info-page .list-section .contents .bank__title {
    margin: 0;
  }
  .seller-info-page .list-section .contents .bank {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .seller-info-page .list-section .contents .bank__info {
    flex-direction: column;
    align-items: flex-end;
  }
  .seller-info-page .list-section .contents .bid {
    grid-area: bid;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    padding: 0 1.6rem 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .seller-info-page .list-section .contents {
    grid-template-columns: 1fr;
    gap: 0;
    grid-template-areas: "bid" "deposit-info";
  }
  .seller-info-page .list-section .contents .deposit-info {
    grid-area: deposit-info;
  }
  .seller-info-page .list-section .contents .bank__details li {
    display: flex;
    justify-content: space-between;
  }
  .seller-info-page .list-section .contents .bank__details li::before {
    content: attr(data-label);
    display: inline-block;
    font-weight: 600;
    font-size: 1.6rem;
    color: #2a2f38;
  }
  .seller-info-page .list-section .contents .bank__details::after {
    display: none;
  }
  .seller-info-page .list-section .contents .fees {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .seller-info-page .list-section .contents .bank__title {
    display: none;
  }
  .seller-info-page .list-section .contents .fees__title {
    margin: 0;
  }
  .seller-info-page .list-section .contents .bank {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .seller-info-page .list-section .contents .bank__title {
    white-space: nowrap;
  }
  .seller-info-page .list-section .contents .bank__info {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  .seller-info-page .list-section .contents .bid {
    grid-area: bid;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    padding: 0 1.6rem 1.6rem;
  }
  .seller-info-page .list-section .contents .bank__details {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  .seller-info-page .list-section .contents .bank__details li {
    width: 100%;
  }
}
.seller-info-page .list-section .deposit-info,
.seller-info-page .list-section .bid,
.seller-info-page .list-section .footer {
  border-radius: 0.8rem;
  padding: 2rem 1.6rem;
}
.seller-info-page .list-section .deposit-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #f1faff;
}
.seller-info-page .list-section .bid,
.seller-info-page .list-section .footer {
  background-color: #f6f7f9;
}
.seller-info-page .list-section .fees__price,
.seller-info-page .list-section .bid {
  font-size: 1.6rem;
}
.seller-info-page .list-section .fees__title,
.seller-info-page .list-section .bank__title,
.seller-info-page .list-section .bid__title {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.seller-info-page .list-section .fees__price,
.seller-info-page .list-section .bank__info {
  color: #305af8;
}
.seller-info-page .list-section .fees__price span,
.seller-info-page .list-section .bank__info,
.seller-info-page .list-section .bid__price span {
  font-weight: 600;
}
.seller-info-page .list-section .fees__price span {
  font-size: 2.4rem;
}
.seller-info-page .list-section .bank__info,
.seller-info-page .list-section .bid__price span {
  font-size: 1.8rem;
}
.seller-info-page .list-section .bank__info,
.seller-info-page .list-section .bank__details {
  display: flex;
  align-items: center;
}
.seller-info-page .list-section .bank__details:after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #bdbdbf;
  border-radius: 100%;
  margin: 0 0.8rem;
}
.seller-info-page .list-section .footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.seller-info-page .list-section .footer .footer__contents {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.seller-info-page .list-section .footer__title {
  font-weight: 600;
  font-size: 1.6rem;
  color: #696e77;
  margin: 0;
}
.seller-info-page .list-section .footer li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-left: 1rem;
}
.seller-info-page .list-section .footer li:before {
  position: absolute;
  left: 0;
  top: 1.1rem;
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #2a2f38;
  border-radius: 100%;
}

/* 클레임 */
.claim-reception-page ul,
.claim-reception-page li {
  margin: 0;
  padding: 0;
}
.claim-reception-page {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 4rem;
}
.claim-reception-page .container {
  padding-top: 0;
  margin-bottom: 6rem;
  max-width: 1000px;
}
@media (max-width: 767.98px) {
  .claim-reception-page .container {
    padding-bottom: 4rem;
  }
}
.claim-reception-page .pr-0 {
  padding-right: 0 !important;
}
.claim-reception-page .mb-20 {
  margin-bottom: 2rem;
}
.claim-reception-page h2 {
  margin: 0;
}
.claim-reception-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.claim-reception-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.claim-reception-page .select-section {
  margin-bottom: 4rem;
}
.claim-reception-page .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 8.2rem 1fr;
  margin-bottom: 3.1rem;
  align-items: center;
}
.claim-reception-page .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.claim-reception-page .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 8.2rem;
}
.claim-reception-page .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.claim-reception-page .select-section .header .specs {
  grid-area: specs;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.claim-reception-page .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.claim-reception-page .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.claim-reception-page .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .claim-reception-page .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.claim-reception-page .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .claim-reception-page .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.claim-reception-page .select-section .table {
  border-top: 1px solid #aaadb2;
}
.claim-reception-page .select-section .table__row {
  display: grid;
  min-height: 4.8rem;
  border-bottom: 1px solid #e9e9e9;
}
.claim-reception-page .select-section .table__field {
  display: flex;
}
.claim-reception-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0.8rem;
}
.claim-reception-page .select-section .table__label:after {
  content: "*";
  display: inline-block;
  margin-left: 0.2rem;
  color: #ed1438;
}
.claim-reception-page .select-section .table .table__label--top {
  align-items: flex-start;
  padding-top: 2rem;
}
.claim-reception-page .select-section .table__item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  width: 100%;
}
.claim-reception-page .select-section .table .radio-group {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}
.claim-reception-page .select-section .table .finance {
  display: flex;
  margin: 0;
  padding: 0;
}
.claim-reception-page .select-section .table .finance li {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.claim-reception-page .select-section .table .finance li:after {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  content: "";
  margin: 0 0.8rem;
}
.claim-reception-page .select-section .table textarea {
  width: 100%;
  height: 100%;
  padding: 1.6rem;
  margin: 0;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  resize: none;
}
.claim-reception-page .select-section .table .file-value {
  width: 100%;
  display: grid;
  grid-template-areas: "claim-btn" "claim-list" "claim-info";
  gap: 1.2rem;
  min-width: 0;
}
.claim-reception-page .select-section .table .file-value .claim-btn {
  grid-area: claim-btn;
  width: 20rem;
  gap: 0.4rem;
}
.claim-reception-page .select-section .table .file-value .close {
  z-index: 1;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #bdbdbf;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}
.claim-reception-page .select-section .table .file-value .close i {
  display: flex;
  fill: #ffffff;
}
.claim-reception-page .select-section .table .file-value .count-grp {
  font-weight: 400;
  color: #80858b;
}
.claim-reception-page .select-section .table .file-value .claim-list {
  grid-area: claim-list;
  width: 100%;
  border: 1px solid #d5d7db;
  padding: 1.6rem;
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 0.4rem;
  min-width: 0;
}
.claim-reception-page .select-section .table .file-value .claim-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  border-radius: 0.4rem;
  overflow: hidden;
}
.claim-reception-page .select-section .table .file-value .claim-item-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}
.claim-reception-page .select-section .table .file-value .claim-info {
  grid-area: claim-info;
}
.claim-reception-page .select-section .table .file-value .claim-info li {
  white-space: normal;
  text-indent: 0;
  display: flex;
}
.claim-reception-page .select-section .table .file-value__error {
  display: none;
}
.claim-reception-page .select-section .table .has-error .file-value__error {
  display: block;
  color: #ff2700;
  font-size: 1.3rem;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
    border-bottom: none;
  }
  .claim-reception-page .select-section .table__field {
    border-bottom: 1px solid #e9e9e9;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-page .select-section .table {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 2rem;
    border: none;
  }
  .claim-reception-page .select-section .table__row {
    height: 100%;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(1, 1fr);
    border: none;
  }
  .claim-reception-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 0.6rem;
  }
  .claim-reception-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: auto;
    background: transparent;
    padding: 0;
  }
  .claim-reception-page .select-section .table .table__label--top {
    padding-top: 0;
  }
  .claim-reception-page .select-section .table__item {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 0.4rem;
    padding: 0;
    width: 100%;
  }
  .claim-reception-page .select-section .table .file-value {
    width: 100%;
    display: grid;
    grid-template-areas: "claim-info" "claim-list" "claim-btn";
  }
  .claim-reception-page .select-section .table .file-value .claim-btn {
    width: 100%;
  }
}
.claim-reception-page .list-section {
  border-radius: 0.4rem;
}
.claim-reception-page .list-section .footer {
  background-color: #f6f7f9;
  border-radius: 0.8rem;
  padding: 2rem 1.6rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.claim-reception-page .list-section .footer .footer__contents {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.claim-reception-page .list-section .footer__title {
  font-weight: 600;
  font-size: 1.6rem;
  color: #696e77;
  margin: 0;
}
.claim-reception-page .list-section .footer ul {
  counter-reset: item;
}
.claim-reception-page .list-section .footer li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}
.claim-reception-page .list-section .footer li:before {
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
  content: counter(item) ".";
  display: block;
}
.claim-reception-page .submit-btn-area {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  max-width: 35.6rem;
}
.claim-reception-page .submit-btn {
  height: 100%;
  min-height: 4.8rem;
  background-color: #ed1438;
  color: #ffffff;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.8rem;
  border: none;
  padding: 0;
}

.claim-reception-doc {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 8rem;
}
.claim-reception-doc .container {
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  .claim-reception-doc .container {
    padding-bottom: 0rem;
  }
}
.claim-reception-doc .container:nth-child(n+2) {
  border-top: 8px solid #edeff2;
  margin: 6rem auto 0;
}
.claim-reception-doc .pr-0 {
  padding-right: 0 !important;
}
.claim-reception-doc .mb-20 {
  margin-bottom: 2rem;
}
.claim-reception-doc .container {
  max-width: 1000px;
}
.claim-reception-doc h2 {
  margin: 0;
}
.claim-reception-doc .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}
.claim-reception-doc .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.claim-reception-doc .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 7.2rem 1fr;
  margin-bottom: 3.1rem;
}
.claim-reception-doc .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.claim-reception-doc .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 7.6rem;
}
.claim-reception-doc .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.claim-reception-doc .select-section .header .specs {
  grid-area: specs;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.claim-reception-doc .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.claim-reception-doc .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.claim-reception-doc .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .claim-reception-doc .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.claim-reception-doc .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .claim-reception-doc .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.claim-reception-doc .select-section .table-header {
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .claim-reception-doc .select-section .table-header {
    border-top: none;
  }
  .claim-reception-doc .select-section .table-header .table__row {
    margin: 0;
    border-bottom: none;
  }
  .claim-reception-doc .select-section .table-header .table__field {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
  }
  .claim-reception-doc .select-section .table-header .table__label {
    margin: 0;
    min-width: auto;
    white-space: nowrap;
    font-weight: 400;
  }
}
.claim-reception-doc .select-section .table__row {
  display: grid;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 767.98px) {
  .claim-reception-doc .select-section .table__row {
    margin-bottom: 1.6rem;
  }
}
.claim-reception-doc .select-section .table__row:last-child {
  margin-bottom: 0;
}
.claim-reception-doc .select-section .table__row.mobile-row {
  display: grid;
}
.claim-reception-doc .select-section .table__field {
  display: flex;
}
.claim-reception-doc .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.4rem 0.8rem;
}
.claim-reception-doc .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.6rem;
}
.claim-reception-doc .select-section .table__item p {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-doc .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-doc .select-section .table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    border-radius: 0.4rem;
    padding: 2rem;
  }
  .claim-reception-doc .select-section .table__row {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .claim-reception-doc .select-section .table__row:last-child {
    border: none;
  }
  .claim-reception-doc .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-direction: column;
  }
  .claim-reception-doc .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 12rem;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 1.6rem;
  }
  .claim-reception-doc .select-section .table__item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    flex-wrap: wrap;
  }
}
.claim-reception-doc .file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.claim-reception-doc .file-list li {
  margin: 0;
}
.claim-reception-doc .file-list li:after {
  display: none !important;
}
.claim-reception-doc .file-list__item {
  color: #2a2f38;
  text-decoration: none;
  font-size: 1.4rem;
  word-break: break-all;
  transition: color 0.2s ease;
}
.claim-reception-doc .file-list__item:hover {
  color: #ed1438;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .claim-reception-doc .file-list {
    gap: 0.6rem;
  }
}

.claim-reception-list-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.claim-reception-list-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.claim-reception-list-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
}
.claim-reception-list-page .list-section .header {
  display: flex;
  flex-direction: row;
  padding-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #aaadb2;
}
.claim-reception-list-page .list-section .header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.claim-reception-list-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.claim-reception-list-page .list-section .header__controls {
  min-width: 9rem;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .header {
    border-bottom: 1px solid #696e77;
  }
  .claim-reception-list-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .claim-reception-list-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .claim-reception-list-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .claim-reception-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .claim-reception-list-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .claim-reception-list-page .list-section .header__title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__title {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .claim-reception-list-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .claim-reception-list-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .claim-reception-list-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .claim-reception-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head,
.claim-reception-list-page .list-section .cards-list-inner .card {
  display: grid;
}
.claim-reception-list-page .list-section .cards-list-inner .head .no,
.claim-reception-list-page .list-section .cards-list-inner .card .no {
  grid-area: no;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .info,
.claim-reception-list-page .list-section .cards-list-inner .card .info {
  grid-area: info;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .doc,
.claim-reception-list-page .list-section .cards-list-inner .card .doc {
  grid-area: doc;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .status,
.claim-reception-list-page .list-section .cards-list-inner .card .status {
  grid-area: status;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .status,
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    background-color: #f0f2f5;
    justify-self: left;
    margin-left: 1.6rem;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status span,
  .claim-reception-list-page .list-section .cards-list-inner .card .status span {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status > span::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status > span::before {
    content: "|";
    font-size: 1.2rem;
    color: #bdbdbf;
    align-items: center;
    display: inline-flex;
    margin: 0 0.4rem;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .status,
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    display: flex;
    justify-self: left;
    position: relative;
    justify-content: space-between;
    width: 100%;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status span,
  .claim-reception-list-page .list-section .cards-list-inner .card .status span {
    font-weight: 600;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head .data,
.claim-reception-list-page .list-section .cards-list-inner .card .data {
  grid-area: data;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .data,
  .claim-reception-list-page .list-section .cards-list-inner .card .data {
    justify-self: right;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .data > .item::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label) " :";
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .data .item,
  .claim-reception-list-page .list-section .cards-list-inner .card .data .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .data > .item::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head .card-btn,
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
  grid-area: button;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head,
.claim-reception-list-page .list-section .cards-list-inner .card {
  grid-template-areas: "no info doc status data button";
  grid-template-columns: 5% 30% 35% 9% 9% 12%;
  /* 그리드 */
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head,
  .claim-reception-list-page .list-section .cards-list-inner .card {
    grid-template-columns: 12rem auto;
    grid-template-areas: "no no no" "image title title" "image status data" "image doc doc" ". . button";
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head,
  .claim-reception-list-page .list-section .cards-list-inner .card {
    grid-template-columns: auto;
    grid-template-areas: "no no" "info info" "data data" "status status" "button button";
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.claim-reception-list-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.claim-reception-list-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
  min-width: 0;
  overflow-wrap: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .no {
  word-break: break-all;
}
.claim-reception-list-page .list-section .cards-list-inner .card .no .label {
  color: #696e77;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .doc {
  flex-direction: column;
  gap: 0.4rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .doc p {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .doc {
    margin: 1.6rem 0 0 1.6rem;
    padding: 1.2rem;
    height: 8.4rem;
    border-radius: 0.4rem;
    background-color: #f6f7f9;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .status {
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    margin-bottom: 1.6rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .info {
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  gap: 1.6rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
}
.claim-reception-list-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info {
    display: contents;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info {
    align-items: flex-start;
    padding: 0;
    margin-bottom: 1.6rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .details {
    grid-area: title;
    margin: 0 1.6rem 1.2rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
  word-break: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
  word-break: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.8rem;
  gap: 0.8rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn a {
  width: 100%;
  border-radius: 0.6rem;
  padding: 1.5rem 0.8rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  height: 4.4rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn a:hover {
  text-decoration: none;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn .edit {
  background-color: transparent;
  border: 1px solid #2a2f38;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
    padding: 1.6rem 0;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
    padding: 0;
    justify-content: flex-end;
  }
}

.claim-received-doc {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 8rem;
}
.claim-received-doc .container {
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  .claim-received-doc .container {
    padding-bottom: 0rem;
  }
}
.claim-received-doc .container:nth-child(n+2) {
  border-top: 8px solid #edeff2;
  margin: 6rem auto 0;
}
.claim-received-doc .pr-0 {
  padding-right: 0 !important;
}
.claim-received-doc .mb-20 {
  margin-bottom: 2rem;
}
.claim-received-doc .container {
  max-width: 1000px;
}
.claim-received-doc h2 {
  margin: 0;
}
.claim-received-doc .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}
.claim-received-doc .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.claim-received-doc .select-section .header {
  display: grid;
  gap: 1.2rem 1.6rem;
  grid-template-columns: 7.2rem 1fr;
  margin-bottom: 3.1rem;
}
.claim-received-doc .select-section .header .title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.claim-received-doc .select-section .header .main-image {
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
  max-width: 7.6rem;
}
.claim-received-doc .select-section .header .main-image img {
  aspect-ratio: 1/1;
}
.claim-received-doc .select-section .header .specs {
  grid-area: specs;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.claim-received-doc .select-section .header .specs li {
  display: flex;
  align-items: center;
  margin: 0;
}
.claim-received-doc .select-section .header .specs li:after {
  display: flex;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100%;
  background-color: #bdbdbf;
  margin: 0 0.8rem;
}
.claim-received-doc .select-section .header .specs li:last-child:after {
  display: none;
}
@media (max-width: 767.98px) {
  .claim-received-doc .select-section .header .specs {
    background-color: #f6f7f9;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
  }
}
.claim-received-doc .select-section .header {
  grid-template-areas: "image title" "image specs";
}
@media (max-width: 767.98px) {
  .claim-received-doc .select-section .header {
    grid-template-areas: "image title" "specs specs";
  }
}
.claim-received-doc .select-section .table-header {
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .claim-received-doc .select-section .table-header {
    border-top: none;
  }
  .claim-received-doc .select-section .table-header .table__row {
    margin: 0;
  }
  .claim-received-doc .select-section .table-header .table__field {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
  }
  .claim-received-doc .select-section .table-header .table__label {
    margin: 0;
    min-width: auto;
    white-space: nowrap;
    font-weight: 400;
  }
}
.claim-received-doc .select-section .table__row {
  display: grid;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 767.98px) {
  .claim-received-doc .select-section .table__row {
    margin-bottom: 1.6rem;
  }
}
.claim-received-doc .select-section .table__row:last-child {
  margin-bottom: 0;
}
.claim-received-doc .select-section .table__row.mobile-row {
  display: grid;
}
.claim-received-doc .select-section .table__field {
  display: flex;
}
.claim-received-doc .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.4rem 0.8rem;
}
.claim-received-doc .select-section .table__label--top {
  align-items: flex-start;
  padding-top: 1.4rem;
}
.claim-received-doc .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.6rem;
  width: 100%;
}
.claim-received-doc .select-section .table__item p {
  margin: 0;
  line-height: 1.75;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-received-doc .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .claim-received-doc .select-section .table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    border-radius: 0.4rem;
    padding: 2rem;
  }
  .claim-received-doc .select-section .table__row {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .claim-received-doc .select-section .table__row:last-child {
    border: none;
  }
  .claim-received-doc .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-direction: column;
  }
  .claim-received-doc .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 12rem;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 1.6rem;
  }
  .claim-received-doc .select-section .table__label--top {
    align-items: center;
    padding-top: 0;
  }
  .claim-received-doc .select-section .table__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 0;
    flex-wrap: wrap;
  }
}
.claim-received-doc .select-section .submit-btn-area {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  max-width: 35.6rem;
}
.claim-received-doc .select-section .submit-btn {
  height: 100%;
  min-height: 4.8rem;
  background-color: #ed1438;
  color: #ffffff;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.8rem;
  border: none;
  padding: 0;
}
.claim-received-doc .file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.claim-received-doc .file-list li {
  margin: 0;
}
.claim-received-doc .file-list li:after {
  display: none !important;
}
.claim-received-doc .file-list__item {
  color: #2a2f38;
  text-decoration: none;
  font-size: 1.4rem;
  word-break: break-all;
  transition: color 0.2s ease;
}
.claim-received-doc .file-list__item:hover {
  color: #ed1438;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .claim-received-doc .file-list {
    gap: 0.6rem;
  }
}

.claim-reception-list-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.claim-reception-list-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.claim-reception-list-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
}
.claim-reception-list-page .list-section .header {
  display: flex;
  flex-direction: row;
  padding-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #aaadb2;
}
.claim-reception-list-page .list-section .header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.claim-reception-list-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.claim-reception-list-page .list-section .header__controls {
  min-width: 9rem;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .header {
    border-bottom: 1px solid #696e77;
  }
  .claim-reception-list-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .claim-reception-list-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .claim-reception-list-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .claim-reception-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
  .claim-reception-list-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .claim-reception-list-page .list-section .header__title {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__title {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .claim-reception-list-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .claim-reception-list-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .claim-reception-list-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .claim-reception-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head,
.claim-reception-list-page .list-section .cards-list-inner .card {
  display: grid;
}
.claim-reception-list-page .list-section .cards-list-inner .head .no,
.claim-reception-list-page .list-section .cards-list-inner .card .no {
  grid-area: no;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .info,
.claim-reception-list-page .list-section .cards-list-inner .card .info {
  grid-area: info;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .doc,
.claim-reception-list-page .list-section .cards-list-inner .card .doc {
  grid-area: doc;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head .status,
.claim-reception-list-page .list-section .cards-list-inner .card .status {
  grid-area: status;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .status,
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    background-color: #f0f2f5;
    justify-self: left;
    margin-left: 1.6rem;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status span,
  .claim-reception-list-page .list-section .cards-list-inner .card .status span {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status > span::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status > span::before {
    content: "|";
    font-size: 1.2rem;
    color: #bdbdbf;
    align-items: center;
    display: inline-flex;
    margin: 0 0.4rem;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .status,
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    display: flex;
    justify-self: left;
    position: relative;
    justify-content: space-between;
    width: 100%;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status span,
  .claim-reception-list-page .list-section .cards-list-inner .card .status span {
    font-weight: 600;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .status::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head .data,
.claim-reception-list-page .list-section .cards-list-inner .card .data {
  grid-area: data;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .data,
  .claim-reception-list-page .list-section .cards-list-inner .card .data {
    justify-self: right;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .data > .item::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label) " :";
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head .data .item,
  .claim-reception-list-page .list-section .cards-list-inner .card .data .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .head .data > .item::before,
  .claim-reception-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head .card-btn,
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
  grid-area: button;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .head,
.claim-reception-list-page .list-section .cards-list-inner .card {
  grid-template-areas: "no info doc status data button";
  grid-template-columns: 5% 30% 35% 9% 9% 12%;
  /* 그리드 */
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head,
  .claim-reception-list-page .list-section .cards-list-inner .card {
    grid-template-columns: 12rem auto;
    grid-template-areas: "no no no" "image title title" "image status data" "image doc doc" ". . button";
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .head,
  .claim-reception-list-page .list-section .cards-list-inner .card {
    grid-template-columns: auto;
    grid-template-areas: "no no" "info info" "data data" "status status" "button button";
  }
}
.claim-reception-list-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.claim-reception-list-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.claim-reception-list-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
  min-width: 0;
  overflow-wrap: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .no {
  word-break: break-all;
}
.claim-reception-list-page .list-section .cards-list-inner .card .no .label {
  color: #696e77;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .claim-reception-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .doc {
  flex-direction: column;
  gap: 0.4rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .doc p {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .doc {
    margin: 1.6rem 0 0 1.6rem;
    padding: 1.2rem;
    height: 8.4rem;
    border-radius: 0.4rem;
    background-color: #f6f7f9;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .status {
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .status {
    margin-bottom: 1.6rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .info {
  padding: 2rem 0.8rem;
  justify-content: flex-start;
  gap: 1.6rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .info__image {
  max-width: 12rem;
  max-height: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
  grid-area: image;
}
.claim-reception-list-page .list-section .cards-list-inner .card .info__image img {
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info__image {
    max-width: 6.4rem;
    max-height: 6.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info {
    display: contents;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .info {
    align-items: flex-start;
    padding: 0;
    margin-bottom: 1.6rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.claim-reception-list-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .details {
    grid-area: title;
    margin: 0 1.6rem 1.2rem;
  }
}
.claim-reception-list-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
  word-break: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
  word-break: break-word;
}
.claim-reception-list-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0.8rem;
  gap: 0.8rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn a {
  width: 100%;
  border-radius: 0.6rem;
  padding: 1.5rem 0.8rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  height: 4.4rem;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn a:hover {
  text-decoration: none;
}
.claim-reception-list-page .list-section .cards-list-inner .card .card-btn .edit {
  background-color: transparent;
  border: 1px solid #2a2f38;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
    padding: 1.6rem 0;
    justify-content: flex-end;
  }
}
@media (max-width: 767.98px) {
  .claim-reception-list-page .list-section .cards-list-inner .card .card-btn {
    padding: 0;
    justify-content: flex-end;
  }
}

/* 고객센터 */
.board-notice-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.board-notice-page .content-header {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .board-notice-page .content-header {
    margin-bottom: 2.4rem;
  }
}
.board-notice-page .content-body {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .board-notice-page .content-body {
    margin-bottom: 2.4rem;
  }
}
.board-notice-page .board-search__inner {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
.board-notice-page .board-search__inner label {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-search__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.board-notice-page .board-search__input {
  flex: 1;
  max-width: 23.8rem;
  margin-right: 1.2rem;
  height: 4.4rem;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  transition: border-color 0.2s ease;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-search__input {
    max-width: 100%;
    width: 100%;
  }
}
.board-notice-page .board-search__input::placeholder {
  color: #80858b;
}
.board-notice-page .board-search__input:focus {
  outline: none;
  border-color: #ed1438;
}
.board-notice-page .board-search .board-search__btns {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-search .board-search__btns {
    margin-top: 1.2rem;
  }
}
.board-notice-page .board-search__btn {
  min-width: 12rem;
  height: 4.8rem;
  padding: 0 4rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-search__btn {
    width: 100%;
  }
}
.board-notice-page .board-search__btn-reset {
  min-width: 10rem;
  height: 4.8rem;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-search__btn-reset {
    width: 100%;
  }
}
.board-notice-page .board-info {
  margin-bottom: 2rem;
}
.board-notice-page .board-info__total {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
}
.board-notice-page .board-info__total strong {
  font-weight: 600;
  color: #2a2f38;
}
.board-notice-page .board-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.board-notice-page .board-list__item {
  border-bottom: 1px solid #d5d7db;
  margin: 0;
}
.board-notice-page .board-list__item:first-child {
  border-top: 1px solid #aaadb2;
}
.board-notice-page .board-list__link {
  display: block;
  padding: 1.6rem 0;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media (max-width: 767.98px) {
  .board-notice-page .board-list__link {
    padding: 1.6rem 0;
  }
}
.board-notice-page .board-list__link:hover .board-list__title {
  text-decoration: underline;
  font-weight: 500;
}
.board-notice-page .board-list__meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.board-notice-page .board-list__date {
  font-size: 1.3rem;
  color: #aaadb2;
}
.board-notice-page .board-list__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 9999px;
}
.board-notice-page .board-list__badge--important {
  display: flex;
  align-items: center;
  background-color: #fd4452;
  color: #ffffff;
  height: auto;
  align-self: center;
}
.board-notice-page .board-list__content {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.board-notice-page .board-list__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #2a2f38;
  line-height: 1.5;
  border-bottom: 2px solid transparent;
}
.board-notice-page .btn {
  height: 4.4rem;
  border-radius: 0.6rem;
}
.board-notice-page .btn--primary {
  background-color: #ed1438;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.board-notice-page .btn--secondary {
  background-color: #ffffff;
  color: #2a2f38;
  border: 1px solid #d5d7db;
  cursor: pointer;
  transition: all 0.2s ease;
}
.board-notice-page .not-result {
  border-top: 1px solid #aaadb2;
  border-bottom: 1px solid #d5d7db;
  padding: 3.2rem 0 5.2rem;
}
.board-notice-page .not-result > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.board-notice-view-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.board-notice-view-page .page-header {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .board-notice-view-page .page-header {
    margin-top: 2rem;
  }
}
.board-notice-view-page .page-header__title {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 600;
}
.board-notice-view-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  color: #696e77;
}
@media (max-width: 767.98px) {
  .board-notice-view-page .breadcrumb {
    display: none;
  }
}
.board-notice-view-page .breadcrumb__item {
  color: #696e77;
  text-decoration: none;
}
.board-notice-view-page .breadcrumb__item--current {
  color: #2a2f38;
}
.board-notice-view-page .breadcrumb__separator {
  color: #696e77;
}
.board-notice-view-page .content-body {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .board-notice-view-page .content-body {
    margin-bottom: 2.4rem;
  }
}
.board-notice-view-page .board-info {
  margin-bottom: 2rem;
}
.board-notice-view-page .board-info__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #2a2f38;
  margin-bottom: 1.6rem;
}
.board-notice-view-page .board-info ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.board-notice-view-page .board-info ul li {
  font-size: 1.4rem;
  color: #696e77;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.board-notice-view-page .board-info ul li span {
  font-weight: 400;
  color: #80858b;
}
.board-notice-view-page .board-doc {
  list-style: none;
  padding: 0;
  margin: 0;
}
.board-notice-view-page .board-doc__item {
  margin: 0;
  white-space: pre-line;
  padding: 2.8rem 0 4rem;
}
.board-notice-view-page .board-doc__item:first-child {
  border-top: 1px solid #aaadb2;
}
.board-notice-view-page .board-attachments {
  padding-top: 1.6rem;
  border-top: 1px solid #e9e9e9;
}
.board-notice-view-page .board-attachments__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2a2f38;
  margin: 0 0 1.2rem 0;
}
.board-notice-view-page .board-attachments__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.board-notice-view-page .board-attachments__item {
  padding-left: 1.2rem;
  margin: 0 0 0 1.2rem;
  position: relative;
}
.board-notice-view-page .board-attachments__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-color: #2a2f38;
}
.board-notice-view-page .board-attachments__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #2a2f38;
}
.board-notice-view-page .board-attachments__name {
  font-size: 1.4rem;
}
.board-notice-view-page .board-attachments__link:hover .board-notice-view-page .board-attachments__icon {
  color: #ed1438;
}
.board-notice-view-page .board-doc-pagination {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 4rem;
  border-top: 1px solid #bdbdbf;
  padding-top: 2rem;
}
.board-notice-view-page .board-doc-pagination a {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.board-notice-view-page .board-doc-pagination a:hover {
  text-decoration: none;
}
.board-notice-view-page .board-doc-pagination__btn--nav {
  font-size: 1.4rem;
  gap: 0.2rem;
  color: #aaadb2;
  padding: 0;
}
.board-notice-view-page .board-doc-pagination__btn--list {
  background-color: #f0f2f5;
  color: #2a2f38;
  padding: 0 1.2rem;
  height: 3.6rem;
  font-size: 1.3rem;
  border-radius: 0.4rem;
}

.inquiry-create-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  color: #2a2f38;
  padding-bottom: 6rem;
}
.inquiry-create-page .pr-0 {
  padding-right: 0 !important;
}
.inquiry-create-page .input-field {
  padding: 1.6rem;
}
.inquiry-create-page .info_msg {
  margin-top: 0.4rem;
}
.inquiry-create-page .inquiry-form-section {
  margin-bottom: 4rem;
  background-color: #ffffff;
  padding: 2.4rem 2rem 4rem;
  border-radius: 2rem;
}
.inquiry-create-page .inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.inquiry-create-page .form-row {
  display: flex;
  min-height: 6rem;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row {
    flex-direction: column;
    min-height: auto;
    margin-bottom: 2rem;
    border-bottom: none;
  }
}
.inquiry-create-page .form-row:first-child {
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row:first-child {
    border-top: none;
  }
}
.inquiry-create-page .form-row__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 16rem;
  padding: 2rem 0.8rem;
  background-color: #f6f7f9;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row__label {
    justify-content: flex-start;
    min-width: auto;
    padding: 0;
    margin-bottom: 0.6rem;
    background-color: transparent;
  }
}
.inquiry-create-page .form-row__label--top {
  align-items: flex-start;
  padding-top: 2.4rem;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row__label--top {
    padding-top: 0;
  }
}
.inquiry-create-page .form-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 0.8rem 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-create-page .form-row__content {
    padding: 0.8rem 0 0.8rem 1.6rem;
  }
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row__content {
    padding: 0;
  }
}
.inquiry-create-page .form-row--grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-create-page .form-row--grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row--grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.inquiry-create-page .form-row--grid-2 .form-row__field {
  display: flex;
}
.inquiry-create-page .form-row--grid-2 .form-row__field:last-child {
  border-right: none;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-row--grid-2 .form-row__field {
    flex-direction: column;
  }
  .inquiry-create-page .form-row--grid-2 .form-row__field:last-child {
    border-bottom: none;
  }
}
.inquiry-create-page .form-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.inquiry-create-page .form-label.required::after {
  content: "*";
  color: #ed1438;
  margin-left: 0.2rem;
}
.inquiry-create-page .radio-group--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.inquiry-create-page .radio-group--inline > label {
  flex: 1 auto;
}
.inquiry-create-page .file-upload-area {
  width: 100%;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .file-upload-area {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .inquiry-create-page .file-upload-area .order-1 {
    order: 3;
  }
  .inquiry-create-page .file-upload-area .order-2 {
    order: 2;
  }
  .inquiry-create-page .file-upload-area .order-3 {
    order: 1;
  }
}
.inquiry-create-page .file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 20rem;
  width: 100%;
  height: 4.8rem;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .file-upload-btn {
    max-width: 100%;
  }
}
.inquiry-create-page .file-upload-btn .file-count {
  font-size: 1.3rem;
  color: #aaadb2;
}
.inquiry-create-page .file-upload-btn .file-count .count-num {
  color: #ed1438;
  font-weight: 600;
}
.inquiry-create-page .file-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.4rem 0;
  padding: 0;
  list-style: none;
}
.inquiry-create-page .file-list:empty {
  display: none;
}
.inquiry-create-page .file-list .file-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  position: relative;
  margin: 0;
  border-radius: 0.4rem;
  word-break: break-all;
}
.inquiry-create-page .file-list .file-item .close {
  margin-top: 0.2rem;
  right: 0.4rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: #2a2f38;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: background-color 100ms ease-out;
}
.inquiry-create-page .file-list .file-item .close:hover {
  background-color: #ff2700;
}
.inquiry-create-page .file-list .file-item .close i {
  display: flex;
  fill: #ffffff;
}
.inquiry-create-page .file-list .file-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}
.inquiry-create-page .file-upload-info {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.3rem;
  color: #aaadb2;
}
.inquiry-create-page .file-upload-info li {
  position: relative;
  padding-left: 1rem;
  margin: 0;
  letter-spacing: -0.0325rem;
}
.inquiry-create-page .file-upload-info li::before {
  content: "-";
  position: absolute;
  left: 0;
}
.inquiry-create-page .privacy-agreement {
  width: 100%;
  border-radius: 0.4rem;
}
.inquiry-create-page .privacy-agreement__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.inquiry-create-page .privacy-agreement__view-more {
  padding: 0.4rem 1.6rem;
  font-size: 1.3rem;
  color: #80858b;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
  transition: all 100ms ease-out;
}
@media (min-width: 1024px) {
  .inquiry-create-page .privacy-agreement__view-more {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-create-page .privacy-agreement__view-more {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .inquiry-create-page .privacy-agreement__view-more {
    display: block;
  }
}
.inquiry-create-page .privacy-agreement .checkbox {
  margin-bottom: 0;
}
.inquiry-create-page .privacy-content {
  background-color: #f6f7f9;
  padding: 1.6rem;
  border-radius: 0.4rem;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .privacy-content {
    display: none;
  }
}
.inquiry-create-page .privacy-content__title {
  margin: 0 0 1.6rem;
  color: #2a2f38;
  font-size: 1.3rem;
}
.inquiry-create-page .privacy-content__section {
  margin-bottom: 1.6rem;
  padding-left: 1.6rem;
}
.inquiry-create-page .privacy-content__section:last-of-type {
  margin-bottom: 0;
}
.inquiry-create-page .privacy-content__section dt {
  margin-bottom: 0.8rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.325px;
}
.inquiry-create-page .privacy-content__section dd {
  margin-bottom: 1.2rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.325px;
}
.inquiry-create-page .privacy-content__section p {
  margin: 0.4rem 0 0;
  color: #aaadb2;
}
.inquiry-create-page .privacy-content__footer {
  font-size: 1.3rem;
}
.inquiry-create-page .inquiry-notice {
  margin: 4rem 0;
  padding: 1.6rem;
  background-color: #f6f7f9;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .inquiry-notice {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}
.inquiry-create-page .inquiry-notice__title {
  margin: 0 0 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #696e77;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .inquiry-notice__title {
    font-size: 1.6rem;
  }
}
.inquiry-create-page .inquiry-notice__list {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  line-height: 140%;
  color: #2a2f38;
  letter-spacing: -0.0325rem;
  counter-reset: item;
}
.inquiry-create-page .inquiry-notice__list li {
  display: flex;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  position: relative;
}
.inquiry-create-page .inquiry-notice__list li:before {
  position: absolute;
  left: 0;
  right: 0;
  content: counter(item) ". ";
  display: block;
  counter-increment: item;
}
.inquiry-create-page .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-actions {
    margin-top: 2rem;
  }
}
.inquiry-create-page .form-actions .submit-btn {
  min-width: 20rem;
  padding: 1.6rem 4rem;
  font-size: 1.6rem;
  border-radius: 0.6rem;
}
@media (max-width: 767.98px) {
  .inquiry-create-page .form-actions .submit-btn {
    width: 100%;
    min-width: auto;
  }
}
.inquiry-create-page .select-wrapper {
  position: relative;
  width: 100%;
}
.inquiry-create-page .select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-top: 0.4rem solid #2a2f38;
  pointer-events: none;
}
.inquiry-create-page .select-field {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-size: 1.4rem;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 100ms ease-out;
}
.inquiry-create-page .select-field:focus {
  outline: none;
  border-color: #aaadb2;
}
.inquiry-create-page .inquiry-create-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.inquiry-create-page .inquiry-create-popup.is-active {
  display: block;
}
.inquiry-create-page .inquiry-create-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.inquiry-create-page .inquiry-create-popup__container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 1.2rem 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
}
.inquiry-create-page .inquiry-create-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  border-bottom: 1px solid #e9e9e9;
  flex-shrink: 0;
}
.inquiry-create-page .inquiry-create-popup__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
.inquiry-create-page .inquiry-create-popup__close {
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 100ms ease-out;
}
.inquiry-create-page .inquiry-create-popup__close:hover {
  color: #2a2f38;
}
.inquiry-create-page .inquiry-create-popup__close svg {
  width: 100%;
  height: 100%;
}
.inquiry-create-page .inquiry-create-popup__content {
  padding: 2.4rem;
  overflow-y: auto;
  flex: 1;
}
.inquiry-create-page .inquiry-create-popup__content p {
  font-size: 1.3rem;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.inquiry-create-page .inquiry-create-popup__content p:first-child {
  font-weight: 600;
  color: #2a2f38;
  margin-top: 0;
}
.inquiry-create-page .inquiry-create-popup__content p:last-child {
  margin-bottom: 0;
}
.inquiry-create-page .inquiry-create-popup__content dl,
.inquiry-create-page .inquiry-create-popup__content dt,
.inquiry-create-page .inquiry-create-popup__content dd {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #2a2f38;
}
.inquiry-create-page .inquiry-create-popup__content dt {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.inquiry-create-page .inquiry-create-popup__content dd {
  margin-bottom: 1.6rem;
  margin-left: 0;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.inquiry-list-page {
  min-height: 100vh;
  background-color: #f6f7f9;
}
.inquiry-list-page .list-section:last-child {
  margin-bottom: 0;
  padding-bottom: 8rem;
}
.inquiry-list-page .list-section .contents {
  width: 100%;
  padding: 2.4rem 2rem 0;
  background-color: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .contents {
    padding: 2.4rem 1.6rem 0;
  }
}
.inquiry-list-page .list-section .header {
  display: flex;
  flex-direction: row;
  padding-bottom: 2rem;
  align-items: flex-start;
  border-bottom: 1px solid #aaadb2;
}
.inquiry-list-page .list-section .header__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.inquiry-list-page .list-section .header__title {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
}
.inquiry-list-page .list-section .header__controls {
  min-width: 9rem;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .header {
    border-bottom: 1px solid #696e77;
  }
  .inquiry-list-page .list-section .header__controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-end;
  }
  .inquiry-list-page .list-section .header__controls .button-items {
    display: flex;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
  }
  .inquiry-list-page .list-section .header__controls .button-items li {
    margin: 0;
  }
  .inquiry-list-page .list-section .header__controls .select-wrapper {
    max-width: 12rem;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .header {
    padding-bottom: 1.6rem;
  }
  .inquiry-list-page .list-section .header__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .inquiry-list-page .list-section .header__title {
    margin: 0;
  }
  .inquiry-list-page .list-section .header__controls {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .inquiry-list-page .list-section .header__controls .button-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .inquiry-list-page .list-section .header__controls .button-items li {
    display: flex;
    align-items: center;
  }
  .inquiry-list-page .list-section .header__controls .del-btn {
    width: 6.8rem;
    height: 3.2rem;
  }
  .inquiry-list-page .list-section .header__controls .btn-styled-default {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.inquiry-list-page .list-section .cards-list-inner .head,
.inquiry-list-page .list-section .cards-list-inner .card {
  display: grid;
}
.inquiry-list-page .list-section .cards-list-inner .head .no,
.inquiry-list-page .list-section .cards-list-inner .card .no {
  grid-area: no;
  min-width: 0;
}
.inquiry-list-page .list-section .cards-list-inner .head .doc,
.inquiry-list-page .list-section .cards-list-inner .card .doc {
  grid-area: doc;
  min-width: 0;
}
.inquiry-list-page .list-section .cards-list-inner .head .status,
.inquiry-list-page .list-section .cards-list-inner .card .status {
  grid-area: status;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head .status,
  .inquiry-list-page .list-section .cards-list-inner .card .status {
    background-color: #f0f2f5;
    justify-self: left;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 9999px;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .status::before,
  .inquiry-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .status span,
  .inquiry-list-page .list-section .cards-list-inner .card .status span {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .status > span::before,
  .inquiry-list-page .list-section .cards-list-inner .card .status > span::before {
    content: "|";
    font-size: 1.2rem;
    color: #bdbdbf;
    align-items: center;
    display: inline-flex;
    margin: 0 0.4rem;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head .status,
  .inquiry-list-page .list-section .cards-list-inner .card .status {
    display: flex;
    justify-self: left;
    position: relative;
    justify-content: space-between;
    width: 100%;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .status span,
  .inquiry-list-page .list-section .cards-list-inner .card .status span {
    font-weight: 600;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .status::before,
  .inquiry-list-page .list-section .cards-list-inner .card .status::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.inquiry-list-page .list-section .cards-list-inner .head .data,
.inquiry-list-page .list-section .cards-list-inner .card .data {
  grid-area: data;
  min-width: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head .data,
  .inquiry-list-page .list-section .cards-list-inner .card .data {
    justify-self: right;
    align-items: flex-end;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .data > .item::before,
  .inquiry-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label) " :";
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head .data .item,
  .inquiry-list-page .list-section .cards-list-inner .card .data .item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
  }
  .inquiry-list-page .list-section .cards-list-inner .head .data > .item::before,
  .inquiry-list-page .list-section .cards-list-inner .card .data > .item::before {
    content: attr(data-label);
    font-weight: 400;
    align-items: center;
    display: inline-flex;
  }
}
.inquiry-list-page .list-section .cards-list-inner .head,
.inquiry-list-page .list-section .cards-list-inner .card {
  grid-template-areas: "no doc status data button";
  grid-template-columns: 5% 1fr 14% 14%;
  /* 그리드 */
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head,
  .inquiry-list-page .list-section .cards-list-inner .card {
    grid-template-columns: 12rem auto;
    grid-template-areas: " no no no no" " title title title title" " status status data data" " doc doc  doc doc ";
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .head,
  .inquiry-list-page .list-section .cards-list-inner .card {
    grid-template-columns: auto;
    grid-template-areas: "no no" "data data" "status status" "doc doc";
  }
}
.inquiry-list-page .list-section .cards-list-inner .head {
  background-color: #f6f7f9;
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}
.inquiry-list-page .list-section .cards-list-inner .card {
  border-bottom: 1px solid #d5d7db;
}
.inquiry-list-page .list-section .cards-list-inner .card:first-child {
  border-top: 1px solid #d5d7db;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card {
    padding: 2rem 0;
  }
}
.inquiry-list-page .list-section .cards-list-inner .card > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-right: 1px solid #d5d7db;
  min-width: 0;
  overflow-wrap: break-word;
}
.inquiry-list-page .list-section .cards-list-inner .card > div:last-child {
  border-right: none;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card > div {
    border: none;
  }
}
.inquiry-list-page .list-section .cards-list-inner .card .no {
  word-break: break-all;
}
.inquiry-list-page .list-section .cards-list-inner .card .no .label {
  color: #696e77;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .inquiry-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .no {
    justify-self: left;
    margin-bottom: 0.8rem;
  }
  .inquiry-list-page .list-section .cards-list-inner .card .no > .label::before {
    content: attr(data-label);
  }
}
.inquiry-list-page .list-section .cards-list-inner .card .doc {
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.inquiry-list-page .list-section .cards-list-inner .card .doc a {
  margin: 2rem 0;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .doc a {
    -webkit-line-clamp: 3;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .doc a {
    -webkit-line-clamp: 3;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
}
.inquiry-list-page .list-section .cards-list-inner .card .doc a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .doc {
    margin: 1.6rem 0 0 0;
    padding: 1.2rem;
    height: 8.7rem;
    background-color: #f6f7f9;
  }
}
@media (max-width: 767.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .doc {
    margin: 1.6rem 0 0 0;
    padding: 1.2rem;
    height: 8.4rem;
    background-color: #f6f7f9;
  }
}
.inquiry-list-page .list-section .cards-list-inner .card .status {
  font-weight: 400;
  word-break: break-word;
}
.inquiry-list-page .list-section .cards-list-inner .card .details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}
.inquiry-list-page .list-section .cards-list-inner .card .details__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2a2f38;
  letter-spacing: -0.05rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-list-page .list-section .cards-list-inner .card .details {
    grid-area: title;
    margin: 0 1.6rem 1.2rem;
  }
}
.inquiry-list-page .list-section .cards-list-inner .card .result {
  font-size: 1.4rem;
  padding: 0 0.6rem;
  word-break: break-word;
}
.inquiry-list-page .list-section .cards-list-inner .card .result .item {
  border-radius: 9999px;
  background-color: #f0f2f5;
  width: 100%;
  max-width: 8.4rem;
  padding: 0.6rem 0;
  word-break: break-word;
}
.inquiry-list-page .list-section .cards-list-inner .card .result .item strong {
  display: flex;
  justify-content: center;
  font-weight: 600;
}

.inquiry-doc-page {
  min-height: 100vh;
  color: #2a2f38;
  padding-bottom: 8rem;
}
.inquiry-doc-page .container {
  padding: 0 4rem;
}
@media (max-width: 767.98px) {
  .inquiry-doc-page .container {
    padding-bottom: 0;
  }
}
.inquiry-doc-page input {
  padding: 1.6rem;
}
@media (min-width: 1024px) {
  .inquiry-doc-page input {
    width: 50%;
  }
}
.inquiry-doc-page .container:nth-child(n+2) {
  border-top: 8px solid #edeff2;
  margin: 6rem auto 0;
}
.inquiry-doc-page .pr-0 {
  padding-right: 0 !important;
}
.inquiry-doc-page .mb-20 {
  margin-bottom: 2rem;
}
.inquiry-doc-page h2 {
  margin: 0;
}
.inquiry-doc-page .page-header {
  display: flex;
  margin-top: 4rem;
  justify-content: space-between;
  margin-bottom: 3.2rem;
}
.inquiry-doc-page .page-header .page-header__title {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2a2f38;
}
.inquiry-doc-page .select-section .table-header {
  border-top: 1px solid #aaadb2;
}
@media (max-width: 767.98px) {
  .inquiry-doc-page .select-section .table-header {
    border-top: none;
  }
  .inquiry-doc-page .select-section .table-header .table__row {
    margin: 0;
    border-bottom: none;
  }
  .inquiry-doc-page .select-section .table-header .table__field {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
  }
  .inquiry-doc-page .select-section .table-header .table__label {
    margin: 0;
    min-width: auto;
    white-space: nowrap;
    font-weight: 400;
  }
}
.inquiry-doc-page .select-section .table__row {
  display: grid;
  border-bottom: 1px solid #e9e9e9;
}
@media (max-width: 767.98px) {
  .inquiry-doc-page .select-section .table__row {
    margin-bottom: 1.6rem;
  }
}
.inquiry-doc-page .select-section .table__row:last-child {
  margin-bottom: 0;
}
.inquiry-doc-page .select-section .table__row.mobile-row {
  display: grid;
}
.inquiry-doc-page .select-section .table__field {
  display: flex;
}
.inquiry-doc-page .select-section .table__label {
  display: flex;
  justify-content: end;
  align-items: center;
  min-width: 12rem;
  background: #f6f7f9;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1.4rem 0.8rem;
}
.inquiry-doc-page .select-section .table__label--top {
  align-items: flex-start;
  padding-top: 1.4rem;
}
.inquiry-doc-page .select-section .table__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0 0.8rem 1.6rem;
  width: 100%;
}
.inquiry-doc-page .select-section .table__item p {
  margin: 0;
  line-height: 1.75;
  word-break: break-all;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inquiry-doc-page .select-section .table__row {
    grid-template-columns: repeat(1, 1fr);
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .inquiry-doc-page .select-section .table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e9e9;
    border-radius: 0.4rem;
    padding: 2rem;
  }
  .inquiry-doc-page .select-section .table__row {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .inquiry-doc-page .select-section .table__row:last-child {
    border: none;
  }
  .inquiry-doc-page .select-section .table__field {
    display: flex;
    border-bottom: none;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-direction: column;
  }
  .inquiry-doc-page .select-section .table__label {
    display: flex;
    justify-content: start;
    align-items: center;
    min-width: 12rem;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0;
    margin-bottom: 1.6rem;
  }
  .inquiry-doc-page .select-section .table__label--top {
    align-items: center;
    padding-top: 0;
  }
  .inquiry-doc-page .select-section .table__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 0;
    flex-wrap: wrap;
  }
}
.inquiry-doc-page .select-section .submit-btn-area {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  max-width: 35.6rem;
}
.inquiry-doc-page .select-section .submit-btn {
  height: 100%;
  min-height: 4.8rem;
  background-color: #ed1438;
  color: #ffffff;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0.8rem;
  border: none;
  padding: 0;
}
.inquiry-doc-page .file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.inquiry-doc-page .file-list li {
  margin: 0;
}
.inquiry-doc-page .file-list li:after {
  display: none !important;
}
.inquiry-doc-page .file-list__item {
  color: #2a2f38;
  text-decoration: none;
  font-size: 1.4rem;
  word-break: break-all;
  transition: color 0.2s ease;
}
.inquiry-doc-page .file-list__item:hover {
  color: #ed1438;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .inquiry-doc-page .file-list {
    gap: 0.6rem;
  }
}
.inquiry-doc-page .inquiry-notice {
  margin-top: 4rem;
  padding: 1.6rem;
  background-color: #f6f7f9;
  border-radius: 0.4rem;
}
.inquiry-doc-page .inquiry-notice__title {
  font-size: 1.6rem;
  color: #696e77;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.inquiry-doc-page .inquiry-notice__list {
  padding: 0;
  counter-reset: item;
  display: flex;
  flex-direction: column;
}
.inquiry-doc-page .inquiry-notice__list li {
  display: flex;
  gap: 0.6rem;
  counter-increment: item;
  margin-bottom: 0.8rem;
  line-height: 140%;
}
.inquiry-doc-page .inquiry-notice__list li:before {
  display: block;
  content: counter(item) ".";
}

.qna-page {
  min-height: 100vh;
  background-color: #f6f7f9;
  padding-bottom: 8rem;
  color: #2a2f38;
}
.qna-page .content-header {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .qna-page .content-header {
    margin-bottom: 2.4rem;
  }
}
.qna-page .content-body {
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 2.4rem 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
  .qna-page .content-body {
    margin-bottom: 2.4rem;
  }
}
.qna-page .board-search__inner {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
.qna-page .board-search__inner label {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .qna-page .board-search__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.qna-page .board-search__input {
  flex: 1;
  max-width: 23.8rem;
  margin-right: 1.2rem;
  height: 4.4rem;
  padding: 1.6rem 1.6rem;
  font-size: 1.4rem;
  color: #2a2f38;
  background-color: #ffffff;
  border: 1px solid #d5d7db;
  border-radius: 0.4rem;
  transition: border-color 0.2s ease;
}
@media (max-width: 767.98px) {
  .qna-page .board-search__input {
    max-width: 100%;
    width: 100%;
  }
}
.qna-page .board-search__input::placeholder {
  color: #80858b;
}
.qna-page .board-search__input:focus {
  outline: none;
  border-color: #ed1438;
}
.qna-page .board-search .board-search__btns {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 767.98px) {
  .qna-page .board-search .board-search__btns {
    margin-top: 1.2rem;
  }
}
.qna-page .board-search__btn {
  min-width: 12rem;
  height: 4.8rem;
  padding: 0 4rem;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .qna-page .board-search__btn {
    width: 100%;
  }
}
.qna-page .board-search__btn-reset {
  min-width: 10rem;
  height: 4.8rem;
  padding: 0 2.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 0.4rem;
}
@media (max-width: 767.98px) {
  .qna-page .board-search__btn-reset {
    width: 100%;
  }
}
.qna-page .board-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding-bottom: 2rem;
  width: 100%;
  border-bottom: 1px solid #aaadb2;
}
.qna-page .board-info button {
  padding: 1.4rem 4.8rem;
  height: 4.8rem;
  border: 1px solid #d5d7db;
  border-radius: 4.8rem;
}
.qna-page .board-info button:hover {
  background-color: #f6f7f9;
}
@media (max-width: 767.98px) {
  .qna-page .board-info button {
    height: 3.2rem;
    padding: 0.7rem 2.5rem;
  }
}
.qna-page .board-info .active {
  background-color: #2a2f38;
  color: #ffffff;
}
.qna-page .board-info .active:hover {
  background-color: #2a2f38;
}
.qna-page .board-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.qna-page .board-list__item {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f2f5;
  border-radius: 0.4rem;
  margin: 0;
  overflow: hidden;
}
.qna-page .board-list__item.active .board-list__title {
  font-weight: 600;
}
.qna-page .board-list__item.active .board-list__chevron {
  transform: rotate(180deg);
  color: #000714;
}
.qna-page .board-list__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  width: 100%;
  padding: 2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 100ms ease-out;
}
.qna-page .board-list__question:hover {
  font-weight: 600;
}
.qna-page .board-list__title {
  flex: 1;
  font-size: 1.6rem;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .qna-page .board-list__title {
    font-size: 1.4rem;
  }
}
.qna-page .board-list__chevron {
  flex-shrink: 0;
  color: #aaadb2;
  transition: transform 100ms ease-out;
}
.qna-page .board-list__answer {
  height: 0;
  overflow: hidden;
}
.qna-page .board-list__answer-inner {
  padding: 2.4rem;
  background-color: #f6f7f9;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #dfe0e3;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #2a2f38;
}
@media (max-width: 767.98px) {
  .qna-page .board-list__answer-inner {
    font-size: 1.3rem;
  }
}
.qna-page .btn {
  height: 4.4rem;
  border-radius: 0.6rem;
}
.qna-page .btn--primary {
  background-color: #ed1438;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.qna-page .btn--secondary {
  background-color: #ffffff;
  color: #2a2f38;
  border: 1px solid #d5d7db;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qna-page .not-result {
  border-bottom: 1px solid #d5d7db;
  padding: 3.2rem 0 5.2rem;
}
.qna-page .not-result > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.u-color-primary {
  color: #ed1438 !important;
}

.u-bg-primary {
  background-color: #ed1438 !important;
}

.u-color-text-primary {
  color: #2a2f38 !important;
}

.u-color-text-secondary {
  color: #aaadb2 !important;
}

.u-color-text-tertiary {
  color: #000714 !important;
}

.u-color-text-disabled {
  color: #80858b !important;
}

.u-color-text-inverse {
  color: #ffffff !important;
}

.u-bg-white {
  background-color: #ffffff !important;
}

.u-bg-gray {
  background-color: #bdbdbf !important;
}

.u-bg-secondary {
  background-color: #f6f7f9 !important;
}

.u-bg-tertiary {
  background-color: #f0f2f5 !important;
}

.u-color-success {
  color: #0075ff !important;
}

.u-bg-success {
  background-color: #0075ff !important;
}

.u-bg-success-light {
  background-color: #e6fbf3 !important;
}

.u-color-warning {
  color: #ffaa00 !important;
}

.u-bg-warning {
  background-color: #ffaa00 !important;
}

.u-bg-warning-light {
  background-color: #fff5da !important;
}

.u-color-error {
  color: #ff2700 !important;
}

.u-bg-error {
  background-color: #ff2700 !important;
}

.u-bg-error-light {
  background-color: #fef6f7 !important;
}

.u-color-info {
  color: #0075ff !important;
}

.u-bg-info {
  background-color: #0075ff !important;
}

.u-bg-info-light {
  background-color: #e3f5ff !important;
}

.u-border-primary {
  border-color: #ed1438 !important;
}

.u-border-default {
  border-color: #d5d7db !important;
}

.u-border-subtle {
  border-color: #e9e9e9 !important;
}

.u-border-success {
  border-color: #0075ff !important;
}

.u-border-warning {
  border-color: #ffaa00 !important;
}

.u-border-error {
  border-color: #ff2700 !important;
}

.u-opacity-0 {
  opacity: 0 !important;
}

.u-opacity-25 {
  opacity: 0.25 !important;
}

.u-opacity-50 {
  opacity: 0.5 !important;
}

.u-opacity-75 {
  opacity: 0.75 !important;
}

.u-opacity-100 {
  opacity: 1 !important;
}

.u-hover-primary:hover {
  color: #ed1438 !important;
}

.u-hover-bg-primary:hover {
  background-color: #ed1438 !important;
}

.container-fixed {
  position: fixed;
  transform: translateX(-50%);
  z-index: 100;
}

.u-block {
  display: block !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-inline {
  display: inline !important;
}

.u-flex {
  display: flex !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

.u-grid {
  display: grid !important;
}

.u-inline-grid {
  display: inline-grid !important;
}

.u-hidden {
  display: none !important;
}

.u-visible {
  visibility: visible !important;
}

.u-invisible {
  visibility: hidden !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-not-sr-only {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.u-flex-row {
  flex-direction: row !important;
}

.u-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.u-flex-col {
  flex-direction: column !important;
}

.u-flex-col-reverse {
  flex-direction: column-reverse !important;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-flex-nowrap {
  flex-wrap: nowrap !important;
}

.u-justify-start {
  justify-content: flex-start !important;
}

.u-justify-end {
  justify-content: flex-end !important;
}

.u-justify-center {
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-justify-around {
  justify-content: space-around !important;
}

.u-justify-evenly {
  justify-content: space-evenly !important;
}

.u-items-start {
  align-items: flex-start !important;
}

.u-items-end {
  align-items: flex-end !important;
}

.u-items-center {
  align-items: center !important;
}

.u-items-baseline {
  align-items: baseline !important;
}

.u-items-stretch {
  align-items: stretch !important;
}

.u-self-auto {
  align-self: auto !important;
}

.u-self-start {
  align-self: flex-start !important;
}

.u-self-end {
  align-self: flex-end !important;
}

.u-self-center {
  align-self: center !important;
}

.u-self-stretch {
  align-self: stretch !important;
}

.u-flex-1 {
  flex: 1 1 0 !important;
}

.u-flex-auto {
  flex: 1 1 auto !important;
}

.u-flex-initial {
  flex: 0 1 auto !important;
}

.u-flex-none {
  flex: none !important;
}

.u-flex-grow {
  flex-grow: 1 !important;
}

.u-flex-grow-0 {
  flex-grow: 0 !important;
}

.u-flex-shrink {
  flex-shrink: 1 !important;
}

.u-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.u-grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.u-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.u-grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.u-grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.u-grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.u-grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.u-col-span-1 {
  grid-column: span 1/span 1 !important;
}

.u-col-span-2 {
  grid-column: span 2/span 2 !important;
}

.u-col-span-3 {
  grid-column: span 3/span 3 !important;
}

.u-col-span-4 {
  grid-column: span 4/span 4 !important;
}

.u-col-span-6 {
  grid-column: span 6/span 6 !important;
}

.u-col-span-full {
  grid-column: 1/-1 !important;
}

.u-grid-auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.u-grid-auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
}

.u-static {
  position: static !important;
}

.u-relative {
  position: relative !important;
}

.u-absolute {
  position: absolute !important;
}

.u-fixed {
  position: fixed !important;
}

.u-sticky {
  position: sticky !important;
}

.u-inset-0 {
  inset: 0 !important;
}

.u-inset-auto {
  inset: auto !important;
}

.u-top-0 {
  top: 0 !important;
}

.u-right-0 {
  right: 0 !important;
}

.u-bottom-0 {
  bottom: 0 !important;
}

.u-left-0 {
  left: 0 !important;
}

.u-top-50 {
  top: 50% !important;
}

.u-left-50 {
  left: 50% !important;
}

.u-z-0 {
  z-index: 0 !important;
}

.u-z-10 {
  z-index: 10 !important;
}

.u-z-20 {
  z-index: 20 !important;
}

.u-z-30 {
  z-index: 30 !important;
}

.u-z-40 {
  z-index: 40 !important;
}

.u-z-50 {
  z-index: 50 !important;
}

.u-z-auto {
  z-index: auto !important;
}

.u-z-header {
  z-index: z-index("header") !important;
}

.u-z-modal {
  z-index: z-index("modal") !important;
}

.u-z-tooltip {
  z-index: z-index("tooltip") !important;
}

.u-overflow-auto {
  overflow: auto !important;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-overflow-visible {
  overflow: visible !important;
}

.u-overflow-scroll {
  overflow: scroll !important;
}

.u-overflow-x-auto {
  overflow-x: auto !important;
}

.u-overflow-y-auto {
  overflow-y: auto !important;
}

.u-overflow-x-hidden {
  overflow-x: hidden !important;
}

.u-overflow-y-hidden {
  overflow-y: hidden !important;
}

.u-w-full {
  width: 100% !important;
}

.u-w-auto {
  width: auto !important;
}

.u-w-screen {
  width: 100vw !important;
}

.u-h-full {
  height: 100% !important;
}

.u-h-auto {
  height: auto !important;
}

.u-h-screen {
  height: 100vh !important;
}

.u-h-screen-dynamic {
  height: 100dvh !important;
}

.u-min-w-0 {
  min-width: 0 !important;
}

.u-min-h-0 {
  min-height: 0 !important;
}

.u-max-w-full {
  max-width: 100% !important;
}

.u-max-h-full {
  max-height: 100% !important;
}

.u-object-contain {
  object-fit: contain !important;
}

.u-object-cover {
  object-fit: cover !important;
}

.u-object-fill {
  object-fit: fill !important;
}

.u-object-none {
  object-fit: none !important;
}

.u-object-center {
  object-position: center !important;
}

.u-object-top {
  object-position: top !important;
}

.u-object-bottom {
  object-position: bottom !important;
}

.u-show-mobile-only {
  display: block !important;
}
@media (min-width: 768px) {
  .u-show-mobile-only {
    display: none !important;
  }
}

.u-show-tablet-only {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-show-tablet-only {
    display: block !important;
  }
}

.u-show-desktop-only {
  display: none !important;
}
@media (min-width: 1024px) {
  .u-show-desktop-only {
    display: block !important;
  }
}

.u-hide {
  display: none !important;
}

@media (max-width: 767.98px) {
  .u-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-hide-desktop {
    display: none !important;
  }
}

.u-show-tablet-up {
  display: none !important;
}
@media (min-width: 768px) {
  .u-show-tablet-up {
    display: block !important;
  }
}

.u-show-desktop-up {
  display: none !important;
}
@media (min-width: 1024px) {
  .u-show-desktop-up {
    display: block !important;
  }
}

.u-show-below-desktop {
  display: block !important;
}
@media (min-width: 1024px) {
  .u-show-below-desktop {
    display: none !important;
  }
}

.u-flex-mobile-only {
  display: flex !important;
}
@media (min-width: 768px) {
  .u-flex-mobile-only {
    display: none !important;
  }
}

.u-flex-tablet-only {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-flex-tablet-only {
    display: flex !important;
  }
}

.u-flex-desktop-only {
  display: none !important;
}
@media (min-width: 1024px) {
  .u-flex-desktop-only {
    display: flex !important;
  }
}

.u-flex-tablet-up {
  display: none !important;
}
@media (min-width: 768px) {
  .u-flex-tablet-up {
    display: flex !important;
  }
}

.u-flex-desktop-up {
  display: none !important;
}
@media (min-width: 1024px) {
  .u-flex-desktop-up {
    display: flex !important;
  }
}

.u-grid-tablet-up {
  display: block !important;
}
@media (min-width: 768px) {
  .u-grid-tablet-up {
    display: grid !important;
  }
}

.u-grid-desktop-up {
  display: block !important;
}
@media (min-width: 1024px) {
  .u-grid-desktop-up {
    display: grid !important;
  }
}

@media (max-width: 767.98px) {
  .u-hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-block-md {
    display: block !important;
  }
  .u-flex-md {
    display: flex !important;
  }
  .u-grid-md {
    display: grid !important;
  }
  .u-hidden-md {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-block-xl {
    display: block !important;
  }
  .u-flex-xl {
    display: flex !important;
  }
  .u-grid-xl {
    display: grid !important;
  }
  .u-hidden-xl {
    display: none !important;
  }
}
.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-items-start {
  align-items: start;
}

@media (max-width: 767.98px) {
  .u-m-pr-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-t-pr-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 1024px) {
  .u-d-pr-0 {
    padding-right: 0 !important;
  }
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 141px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 52px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1192px;
    padding-left: auto;
    padding-right: auto;
    /*    padding-left: 0;
    padding-right: 0;*/
    padding-top: 52px;
  }
}

.inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .inner {
    max-width: 1192px;
    padding-left: auto;
    padding-right: auto;
  }
}

.grid-w-max {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 141px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .grid-w-max {
    padding-top: 52px;
  }
}
@media (min-width: 1024px) {
  .grid-w-max {
    max-width: 1192px;
    padding-top: 52px;
  }
}

.content-box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  padding-top: 2.4rem;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .content-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .content-box {
    max-width: 1192px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .row {
    margin-left: -4px;
    margin-right: -4px;
  }
}
@media (min-width: 1024px) {
  .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}

.col {
  flex: 1 0 0;
  max-width: 100%;
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-auto {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-auto {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.col-1 {
  flex: 0 0 calc(100% / 12 * 1);
  max-width: calc(100% / 12 * 1);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-1 {
    flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-1 {
    flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-1 {
  margin-left: calc(100% / 12 * 1);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
}
@media (min-width: 1024px) {
  .offset-1 {
    margin-left: calc(100% / 12 * 1);
  }
}

.col-2 {
  flex: 0 0 calc(100% / 12 * 2);
  max-width: calc(100% / 12 * 2);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-2 {
    flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-2 {
    flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-2 {
  margin-left: calc(100% / 12 * 2);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
}
@media (min-width: 1024px) {
  .offset-2 {
    margin-left: calc(100% / 12 * 2);
  }
}

.col-3 {
  flex: 0 0 calc(100% / 12 * 3);
  max-width: calc(100% / 12 * 3);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-3 {
    flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-3 {
    flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-3 {
  margin-left: calc(100% / 12 * 3);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
}
@media (min-width: 1024px) {
  .offset-3 {
    margin-left: calc(100% / 12 * 3);
  }
}

.col-4 {
  flex: 0 0 calc(100% / 12 * 4);
  max-width: calc(100% / 12 * 4);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-4 {
    flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-4 {
    flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-4 {
  margin-left: calc(100% / 12 * 4);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
}
@media (min-width: 1024px) {
  .offset-4 {
    margin-left: calc(100% / 12 * 4);
  }
}

.col-5 {
  flex: 0 0 calc(100% / 12 * 5);
  max-width: calc(100% / 12 * 5);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-5 {
    flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-5 {
    flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-5 {
  margin-left: calc(100% / 12 * 5);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
}
@media (min-width: 1024px) {
  .offset-5 {
    margin-left: calc(100% / 12 * 5);
  }
}

.col-6 {
  flex: 0 0 calc(100% / 12 * 6);
  max-width: calc(100% / 12 * 6);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-6 {
    flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-6 {
    flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-6 {
  margin-left: calc(100% / 12 * 6);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
}
@media (min-width: 1024px) {
  .offset-6 {
    margin-left: calc(100% / 12 * 6);
  }
}

.col-7 {
  flex: 0 0 calc(100% / 12 * 7);
  max-width: calc(100% / 12 * 7);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-7 {
    flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-7 {
    flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-7 {
  margin-left: calc(100% / 12 * 7);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
}
@media (min-width: 1024px) {
  .offset-7 {
    margin-left: calc(100% / 12 * 7);
  }
}

.col-8 {
  flex: 0 0 calc(100% / 12 * 8);
  max-width: calc(100% / 12 * 8);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-8 {
    flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-8 {
    flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-8 {
  margin-left: calc(100% / 12 * 8);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
}
@media (min-width: 1024px) {
  .offset-8 {
    margin-left: calc(100% / 12 * 8);
  }
}

.col-9 {
  flex: 0 0 calc(100% / 12 * 9);
  max-width: calc(100% / 12 * 9);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-9 {
    flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-9 {
    flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-9 {
  margin-left: calc(100% / 12 * 9);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
}
@media (min-width: 1024px) {
  .offset-9 {
    margin-left: calc(100% / 12 * 9);
  }
}

.col-10 {
  flex: 0 0 calc(100% / 12 * 10);
  max-width: calc(100% / 12 * 10);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-10 {
    flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-10 {
    flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-10 {
  margin-left: calc(100% / 12 * 10);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
}
@media (min-width: 1024px) {
  .offset-10 {
    margin-left: calc(100% / 12 * 10);
  }
}

.col-11 {
  flex: 0 0 calc(100% / 12 * 11);
  max-width: calc(100% / 12 * 11);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-11 {
    flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-11 {
    flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-11 {
  margin-left: calc(100% / 12 * 11);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}
@media (min-width: 1024px) {
  .offset-11 {
    margin-left: calc(100% / 12 * 11);
  }
}

.col-12 {
  flex: 0 0 calc(100% / 12 * 12);
  max-width: calc(100% / 12 * 12);
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .col-12 {
    flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (min-width: 1024px) {
  .col-12 {
    flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
    padding-left: 8px;
    padding-right: 8px;
  }
}

.offset-12 {
  margin-left: calc(100% / 12 * 12);
}
@media (min-width: 768px) and (max-width: 1023.98px) {
  .offset-12 {
    margin-left: calc(100% / 12 * 12);
  }
}
@media (min-width: 1024px) {
  .offset-12 {
    margin-left: calc(100% / 12 * 12);
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .offset-md-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .col-md-2 {
    flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .offset-md-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .col-md-3 {
    flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .offset-md-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .col-md-4 {
    flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .offset-md-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .col-md-5 {
    flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .offset-md-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .col-md-6 {
    flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .offset-md-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .col-md-7 {
    flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .offset-md-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .col-md-8 {
    flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .offset-md-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .col-md-9 {
    flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .offset-md-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .col-md-10 {
    flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .offset-md-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .col-md-11 {
    flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .offset-md-11 {
    margin-left: calc(100% / 12 * 11);
  }
  .col-md-12 {
    flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
  .offset-md-12 {
    margin-left: calc(100% / 12 * 12);
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .col-lg-1 {
    flex: 0 0 calc(100% / 12 * 1);
    max-width: calc(100% / 12 * 1);
  }
  .offset-lg-1 {
    margin-left: calc(100% / 12 * 1);
  }
  .col-lg-2 {
    flex: 0 0 calc(100% / 12 * 2);
    max-width: calc(100% / 12 * 2);
  }
  .offset-lg-2 {
    margin-left: calc(100% / 12 * 2);
  }
  .col-lg-3 {
    flex: 0 0 calc(100% / 12 * 3);
    max-width: calc(100% / 12 * 3);
  }
  .offset-lg-3 {
    margin-left: calc(100% / 12 * 3);
  }
  .col-lg-4 {
    flex: 0 0 calc(100% / 12 * 4);
    max-width: calc(100% / 12 * 4);
  }
  .offset-lg-4 {
    margin-left: calc(100% / 12 * 4);
  }
  .col-lg-5 {
    flex: 0 0 calc(100% / 12 * 5);
    max-width: calc(100% / 12 * 5);
  }
  .offset-lg-5 {
    margin-left: calc(100% / 12 * 5);
  }
  .col-lg-6 {
    flex: 0 0 calc(100% / 12 * 6);
    max-width: calc(100% / 12 * 6);
  }
  .offset-lg-6 {
    margin-left: calc(100% / 12 * 6);
  }
  .col-lg-7 {
    flex: 0 0 calc(100% / 12 * 7);
    max-width: calc(100% / 12 * 7);
  }
  .offset-lg-7 {
    margin-left: calc(100% / 12 * 7);
  }
  .col-lg-8 {
    flex: 0 0 calc(100% / 12 * 8);
    max-width: calc(100% / 12 * 8);
  }
  .offset-lg-8 {
    margin-left: calc(100% / 12 * 8);
  }
  .col-lg-9 {
    flex: 0 0 calc(100% / 12 * 9);
    max-width: calc(100% / 12 * 9);
  }
  .offset-lg-9 {
    margin-left: calc(100% / 12 * 9);
  }
  .col-lg-10 {
    flex: 0 0 calc(100% / 12 * 10);
    max-width: calc(100% / 12 * 10);
  }
  .offset-lg-10 {
    margin-left: calc(100% / 12 * 10);
  }
  .col-lg-11 {
    flex: 0 0 calc(100% / 12 * 11);
    max-width: calc(100% / 12 * 11);
  }
  .offset-lg-11 {
    margin-left: calc(100% / 12 * 11);
  }
  .col-lg-12 {
    flex: 0 0 calc(100% / 12 * 12);
    max-width: calc(100% / 12 * 12);
  }
  .offset-lg-12 {
    margin-left: calc(100% / 12 * 12);
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
}
.offset-0 {
  margin-left: 0;
}

.row-align-start {
  align-items: flex-start;
}

.row-align-center {
  align-items: center;
}

.row-align-end {
  align-items: flex-end;
}

.row-align-stretch {
  align-items: stretch;
}

.row-align-baseline {
  align-items: baseline;
}

.row-justify-start {
  justify-content: flex-start;
}

.row-justify-center {
  justify-content: center;
}

.row-justify-end {
  justify-content: flex-end;
}

.row-justify-between {
  justify-content: space-between;
}

.row-justify-around {
  justify-content: space-around;
}

.row-justify-evenly {
  justify-content: space-evenly;
}

.row-no-gutters {
  margin-left: 0;
  margin-right: 0;
}
.row-no-gutters > .col,
.row-no-gutters > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

@media (min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
}
@media (min-width: 1024px) {
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
}
.u-m-0 {
  margin: 0 !important;
}

.u-m-xs {
  margin: 0.4rem !important;
}

.u-m-sm {
  margin: 0.8rem !important;
}

.u-m-md {
  margin: 1.6rem !important;
}

.u-m-lg {
  margin: 2.4rem !important;
}

.u-m-xl {
  margin: 4rem !important;
}

.u-m-2xl {
  margin: 6.4rem !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 0.4rem !important;
}

.u-mt-sm {
  margin-top: 0.8rem !important;
}

.u-mt-md {
  margin-top: 1.6rem !important;
}

.u-mt-lg {
  margin-top: 2.4rem !important;
}

.u-mt-xl {
  margin-top: 4rem !important;
}

.u-mt-2xl {
  margin-top: 6.4rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-xs {
  margin-right: 0.4rem !important;
}

.u-mr-sm {
  margin-right: 0.8rem !important;
}

.u-mr-md {
  margin-right: 1.6rem !important;
}

.u-mr-lg {
  margin-right: 2.4rem !important;
}

.u-mr-xl {
  margin-right: 4rem !important;
}

.u-mr-2xl {
  margin-right: 6.4rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 0.4rem !important;
}

.u-mb-sm {
  margin-bottom: 0.8rem !important;
}

.u-mb-md {
  margin-bottom: 1.6rem !important;
}

.u-mb-lg {
  margin-bottom: 2.4rem !important;
}

.u-mb-xl {
  margin-bottom: 4rem !important;
}

.u-mb-2xl {
  margin-bottom: 6.4rem !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-xs {
  margin-left: 0.4rem !important;
}

.u-ml-sm {
  margin-left: 0.8rem !important;
}

.u-ml-md {
  margin-left: 1.6rem !important;
}

.u-ml-lg {
  margin-left: 2.4rem !important;
}

.u-ml-xl {
  margin-left: 4rem !important;
}

.u-ml-2xl {
  margin-left: 6.4rem !important;
}

.u-mx-0 {
  margin-inline: 0 !important;
}

.u-mx-xs {
  margin-inline: 0.4rem !important;
}

.u-mx-sm {
  margin-inline: 0.8rem !important;
}

.u-mx-md {
  margin-inline: 1.6rem !important;
}

.u-mx-lg {
  margin-inline: 2.4rem !important;
}

.u-mx-xl {
  margin-inline: 4rem !important;
}

.u-mx-2xl {
  margin-inline: 6.4rem !important;
}

.u-my-0 {
  margin-block: 0 !important;
}

.u-my-xs {
  margin-block: 0.4rem !important;
}

.u-my-sm {
  margin-block: 0.8rem !important;
}

.u-my-md {
  margin-block: 1.6rem !important;
}

.u-my-lg {
  margin-block: 2.4rem !important;
}

.u-my-xl {
  margin-block: 4rem !important;
}

.u-my-2xl {
  margin-block: 6.4rem !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-mx-auto {
  margin-inline: auto !important;
}

.u-my-auto {
  margin-block: auto !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-p-0 {
  padding: 0 !important;
}

.u-p-xs {
  padding: 0.4rem !important;
}

.u-p-sm {
  padding: 0.8rem !important;
}

.u-p-md {
  padding: 1.6rem !important;
}

.u-p-lg {
  padding: 2.4rem !important;
}

.u-p-xl {
  padding: 4rem !important;
}

.u-p-2xl {
  padding: 6.4rem !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 0.4rem !important;
}

.u-pt-sm {
  padding-top: 0.8rem !important;
}

.u-pt-md {
  padding-top: 1.6rem !important;
}

.u-pt-lg {
  padding-top: 2.4rem !important;
}

.u-pt-xl {
  padding-top: 4rem !important;
}

.u-pt-2xl {
  padding-top: 6.4rem !important;
}

.u-pr-0 {
  padding-right: 0 !important;
}

.u-pr-xs {
  padding-right: 0.4rem !important;
}

.u-pr-sm {
  padding-right: 0.8rem !important;
}

.u-pr-md {
  padding-right: 1.6rem !important;
}

.u-pr-lg {
  padding-right: 2.4rem !important;
}

.u-pr-xl {
  padding-right: 4rem !important;
}

.u-pr-2xl {
  padding-right: 6.4rem !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 0.4rem !important;
}

.u-pb-sm {
  padding-bottom: 0.8rem !important;
}

.u-pb-md {
  padding-bottom: 1.6rem !important;
}

.u-pb-lg {
  padding-bottom: 2.4rem !important;
}

.u-pb-xl {
  padding-bottom: 4rem !important;
}

.u-pb-2xl {
  padding-bottom: 6.4rem !important;
}

.u-pl-0 {
  padding-left: 0 !important;
}

.u-pl-xs {
  padding-left: 0.4rem !important;
}

.u-pl-sm {
  padding-left: 0.8rem !important;
}

.u-pl-md {
  padding-left: 1.6rem !important;
}

.u-pl-lg {
  padding-left: 2.4rem !important;
}

.u-pl-xl {
  padding-left: 4rem !important;
}

.u-pl-2xl {
  padding-left: 6.4rem !important;
}

.u-px-0 {
  padding-inline: 0 !important;
}

.u-px-xs {
  padding-inline: 0.4rem !important;
}

.u-px-sm {
  padding-inline: 0.8rem !important;
}

.u-px-md {
  padding-inline: 1.6rem !important;
}

.u-px-lg {
  padding-inline: 2.4rem !important;
}

.u-px-xl {
  padding-inline: 4rem !important;
}

.u-px-2xl {
  padding-inline: 6.4rem !important;
}

.u-py-0 {
  padding-block: 0 !important;
}

.u-py-xs {
  padding-block: 0.4rem !important;
}

.u-py-sm {
  padding-block: 0.8rem !important;
}

.u-py-md {
  padding-block: 1.6rem !important;
}

.u-py-lg {
  padding-block: 2.4rem !important;
}

.u-py-xl {
  padding-block: 4rem !important;
}

.u-py-2xl {
  padding-block: 6.4rem !important;
}

.u-gap-0 {
  gap: 0 !important;
}

.u-gap-x-0 {
  column-gap: 0 !important;
}

.u-gap-y-0 {
  row-gap: 0 !important;
}

.u-gap-xs {
  gap: 0.4rem !important;
}

.u-gap-x-xs {
  column-gap: 0.4rem !important;
}

.u-gap-y-xs {
  row-gap: 0.4rem !important;
}

.u-gap-sm {
  gap: 0.8rem !important;
}

.u-gap-x-sm {
  column-gap: 0.8rem !important;
}

.u-gap-y-sm {
  row-gap: 0.8rem !important;
}

.u-gap-md {
  gap: 1.6rem !important;
}

.u-gap-x-md {
  column-gap: 1.6rem !important;
}

.u-gap-y-md {
  row-gap: 1.6rem !important;
}

.u-gap-lg {
  gap: 2.4rem !important;
}

.u-gap-x-lg {
  column-gap: 2.4rem !important;
}

.u-gap-y-lg {
  row-gap: 2.4rem !important;
}

.u-gap-xl {
  gap: 4rem !important;
}

.u-gap-x-xl {
  column-gap: 4rem !important;
}

.u-gap-y-xl {
  row-gap: 4rem !important;
}

.u-gap-2xl {
  gap: 6.4rem !important;
}

.u-gap-x-2xl {
  column-gap: 6.4rem !important;
}

.u-gap-y-2xl {
  row-gap: 6.4rem !important;
}

@media (min-width: 768px) {
  .u-mt-md\:0 {
    margin-top: 0 !important;
  }
  .u-mb-md\:0 {
    margin-bottom: 0 !important;
  }
  .u-pt-md\:0 {
    padding-top: 0 !important;
  }
  .u-pb-md\:0 {
    padding-bottom: 0 !important;
  }
  .u-mt-md\:xs {
    margin-top: 0.4rem !important;
  }
  .u-mb-md\:xs {
    margin-bottom: 0.4rem !important;
  }
  .u-pt-md\:xs {
    padding-top: 0.4rem !important;
  }
  .u-pb-md\:xs {
    padding-bottom: 0.4rem !important;
  }
  .u-mt-md\:sm {
    margin-top: 0.8rem !important;
  }
  .u-mb-md\:sm {
    margin-bottom: 0.8rem !important;
  }
  .u-pt-md\:sm {
    padding-top: 0.8rem !important;
  }
  .u-pb-md\:sm {
    padding-bottom: 0.8rem !important;
  }
  .u-mt-md\:md {
    margin-top: 1.6rem !important;
  }
  .u-mb-md\:md {
    margin-bottom: 1.6rem !important;
  }
  .u-pt-md\:md {
    padding-top: 1.6rem !important;
  }
  .u-pb-md\:md {
    padding-bottom: 1.6rem !important;
  }
  .u-mt-md\:lg {
    margin-top: 2.4rem !important;
  }
  .u-mb-md\:lg {
    margin-bottom: 2.4rem !important;
  }
  .u-pt-md\:lg {
    padding-top: 2.4rem !important;
  }
  .u-pb-md\:lg {
    padding-bottom: 2.4rem !important;
  }
  .u-mt-md\:xl {
    margin-top: 4rem !important;
  }
  .u-mb-md\:xl {
    margin-bottom: 4rem !important;
  }
  .u-pt-md\:xl {
    padding-top: 4rem !important;
  }
  .u-pb-md\:xl {
    padding-bottom: 4rem !important;
  }
  .u-mt-md\:2xl {
    margin-top: 6.4rem !important;
  }
  .u-mb-md\:2xl {
    margin-bottom: 6.4rem !important;
  }
  .u-pt-md\:2xl {
    padding-top: 6.4rem !important;
  }
  .u-pb-md\:2xl {
    padding-bottom: 6.4rem !important;
  }
}
@media (min-width: 1180px) {
  .u-mt-xl\:0 {
    margin-top: 0 !important;
  }
  .u-mb-xl\:0 {
    margin-bottom: 0 !important;
  }
  .u-pt-xl\:0 {
    padding-top: 0 !important;
  }
  .u-pb-xl\:0 {
    padding-bottom: 0 !important;
  }
  .u-mt-xl\:xs {
    margin-top: 0.4rem !important;
  }
  .u-mb-xl\:xs {
    margin-bottom: 0.4rem !important;
  }
  .u-pt-xl\:xs {
    padding-top: 0.4rem !important;
  }
  .u-pb-xl\:xs {
    padding-bottom: 0.4rem !important;
  }
  .u-mt-xl\:sm {
    margin-top: 0.8rem !important;
  }
  .u-mb-xl\:sm {
    margin-bottom: 0.8rem !important;
  }
  .u-pt-xl\:sm {
    padding-top: 0.8rem !important;
  }
  .u-pb-xl\:sm {
    padding-bottom: 0.8rem !important;
  }
  .u-mt-xl\:md {
    margin-top: 1.6rem !important;
  }
  .u-mb-xl\:md {
    margin-bottom: 1.6rem !important;
  }
  .u-pt-xl\:md {
    padding-top: 1.6rem !important;
  }
  .u-pb-xl\:md {
    padding-bottom: 1.6rem !important;
  }
  .u-mt-xl\:lg {
    margin-top: 2.4rem !important;
  }
  .u-mb-xl\:lg {
    margin-bottom: 2.4rem !important;
  }
  .u-pt-xl\:lg {
    padding-top: 2.4rem !important;
  }
  .u-pb-xl\:lg {
    padding-bottom: 2.4rem !important;
  }
  .u-mt-xl\:xl {
    margin-top: 4rem !important;
  }
  .u-mb-xl\:xl {
    margin-bottom: 4rem !important;
  }
  .u-pt-xl\:xl {
    padding-top: 4rem !important;
  }
  .u-pb-xl\:xl {
    padding-bottom: 4rem !important;
  }
  .u-mt-xl\:2xl {
    margin-top: 6.4rem !important;
  }
  .u-mb-xl\:2xl {
    margin-bottom: 6.4rem !important;
  }
  .u-pt-xl\:2xl {
    padding-top: 6.4rem !important;
  }
  .u-pb-xl\:2xl {
    padding-bottom: 6.4rem !important;
  }
}
.u-container-padding {
  padding-inline: 1.6rem !important;
}
@media (min-width: 768px) {
  .u-container-padding {
    padding-inline: 4rem !important;
  }
}
@media (min-width: 1180px) {
  .u-container-padding {
    padding-inline: 4rem !important;
  }
}

.u-section-spacing-sm {
  padding-block: 4rem !important;
}
@media (min-width: 768px) {
  .u-section-spacing-sm {
    padding-block: 6.4rem !important;
  }
}

.u-section-spacing-md {
  padding-block: 6.4rem !important;
}
@media (min-width: 768px) {
  .u-section-spacing-md {
    padding-block: 5rem !important;
  }
}

.u-section-spacing-lg {
  padding-block: 6.4rem !important;
}
@media (min-width: 768px) {
  .u-section-spacing-lg {
    padding-block: 6rem !important;
  }
}