@charset "UTF-8";
.button,
::file-selector-button {
  inline-size: fit-content;
  touch-action: manipulation;
  user-select: none;
}
p,
li,
dt,
dd,
blockquote,
.no-orphan {
  text-wrap: pretty;
}
img {
  max-width: 100%;
  object-fit: cover;
}
a:not([class]) {
  text-decoration-thickness: max(0.08em, 1px);
  text-underline-offset: 0.15em;
}
:focus-visible {
  --outline-size: max(2px, 0.15em);
  outline: var(--outline-size) solid #4a4c4e;
  outline-offset: var(--outline-size);
}
:target {
  scroll-padding-block-start: 2rem;
}
:focus {
  scroll-padding-block-end: 8vh;
}
:root {
  --BYDred: #d70c19;
  --BYDgray: #686d71;
  --white: #fff;
  --BYDblue: #3753b1;
}

html,
body {
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    "Helvetica Neue",
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}
.container {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto 1fr;
  grid-auto-flow: row;
  grid-template-areas:
    "nav header"
    "nav main"
    "footer footer";
  height: 100dvh;
}
nav {
  grid-area: nav;
  height: 100%;
  position: relative;
  z-index: 3;
}
.nav-inner {
  height: 100%;
  padding: 2.5rem 1rem 0;
  display: grid;
  gap: 2.5rem 0;
  grid-template-rows: 3.5rem 5rem 1fr;
  grid-template-areas:
    "logo"
    "menuSearch"
    "menu";
  background-color: #fff;
  border-right: 1px solid #efefef;
  position: relative;
  z-index: 1;
  transition: 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.nav-dim {
  display: none;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.5);
  position: absolute;
  left: 0;
  top: 0;
}
nav h1 {
  grid-area: logo;
}
nav h1 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  color: #a9b1b7;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.34px;
}
nav .menu-search-area {
  grid-area: menuSearch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-search__input {
  position: relative;
}
.menu-search__input input {
  width: 100%;
  height: 3rem;
  padding: 0 1.25rem;
  border-radius: 15rem;
  background: #f1f1f1;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  border: 1px solid #f1f1f1;
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: -0.375px;
}
.menu-search__input input::placeholder {
  color: #999;
}
.menu-search__btn {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  text-indent: -9999px;
  background-image: url("../img/ic_search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
}
.menu-search__link {
  display: flex;
  align-items: center;
}
.menu-search__link::before {
  content: "";
  border: 1px solid rgba(104, 109, 113, 0.15);
  align-self: stretch;
}
.menu-search__link button {
  flex: 1;
  color: #222;
  font-size: 0.9rem;
  line-height: normal;
  letter-spacing: -0.375px;
  text-align: center;
  cursor: pointer;
}
.menu-search__link button:first-child {
  order: -1;
}
nav .menu {
  display: flex;
  flex-direction: column;
  grid-area: menu;
  overflow-y: scroll;
  padding-bottom: 32px;
}

nav .menu::-webkit-scrollbar {
  width: 6px;
}
nav .menu::-webkit-scrollbar-track {
  background-color: transparent;
}
nav .menu::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 50px;
}
nav .menu::-webkit-scrollbar-button {
  display: none;
}
nav .menu:hover::-webkit-scrollbar-thumb {
  background-color: #efefef;
}

nav .menu .depth-1 {
  color: #333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.45px;
  display: flex;
  padding: 1rem 1.5rem;
  align-items: center;
  gap: 1rem;
  border-radius: 0.1rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.25 7.5L9 11.25' stroke='%23bbbbbb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11.25L12.75 7.5' stroke='%23bbbbbb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.3rem;
  border-left: 3px solid transparent;
}
nav .menu > li:hover .depth-1 {
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.25 7.5L9 11.25' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11.25L12.75 7.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
nav .menu > li.active .depth-1 {
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.25 10.5L9 6.75' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 6.75L12.75 10.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-left-color: var(--BYDblue);
}
nav .menu .depth-2 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 1.5rem;

  height: 0;
  overflow: hidden;
  transition:
    padding 0.3s ease,
    height 0.3s ease;
  box-sizing: content-box;
}
nav .menu > li.active .depth-2 {
  height: auto;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
nav .menu dt {
  color: #888;
  font-size: 0.9375rem;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.375px;
  padding: 0.5rem 0;
}
nav .menu dd li {
  border-left: 2px solid rgba(104, 109, 113, 0.15);
}
nav .menu dd li:hover,
nav .menu dd li.active {
  border-left-color: var(--BYDblue);
}
nav .menu dd li a {
  padding: 0.4rem 0.75rem 0.4rem 1.5rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  display: block;
  color: #222;
  font-size: 0.9375rem;
  line-height: normal;
  letter-spacing: -0.375px;
  font-weight: 500;
}
nav .menu dd li.active a {
  color: var(--BYDblue);
  font-weight: 600;
}

header {
  grid-area: header;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px hsl(0deg 0% 0% / 5%);
}
header .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
  padding: 0 2.5rem;
  position: relative;
  min-height: 5.5rem;
  flex-wrap: wrap;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.header__tit {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  /* max-width: calc(50% - 11rem); */
  flex-wrap: wrap;
}
.breadcrumb-wrap {
  display: flex;
  justify-content: center;
}
.breadcrumb-wrap .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  width: 100%;
  flex-wrap: wrap;
}
.breadcrumb-wrap .breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-wrap .breadcrumb .home::before {
  display: inline-flex;
  align-items: center;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M1.875 10L9.33709 2.53792C9.7032 2.17181 10.2968 2.17181 10.6629 2.53792L18.125 10M3.75 8.12501V16.5625C3.75 17.0803 4.16973 17.5 4.6875 17.5H8.125V13.4375C8.125 12.9197 8.54473 12.5 9.0625 12.5H10.9375C11.4553 12.5 11.875 12.9197 11.875 13.4375V17.5H15.3125C15.8303 17.5 16.25 17.0803 16.25 16.5625V8.12501M6.875 17.5H13.75' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumb-wrap .breadcrumb li:not(:last-child)::after {
  display: inline-flex;
  align-items: center;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M8.33333 14.1667L12.5 9.99999' stroke='%23A8A5A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5 10L8.33333 5.83333' stroke='%23A8A5A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumb-wrap .breadcrumb li .txt {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  font-size: 0.9375rem;
  color: #666;
  font-weight: 500;
  letter-spacing: -0.375px;
  white-space: nowrap;
}
.breadcrumb-wrap .breadcrumb li span.txt {
  color: #222;
}
.breadcrumb-wrap .breadcrumb .home .txt {
  text-indent: -9999px;
}
header .title h2 {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem);
  letter-spacing: -0.4px;
  color: #e1dfdd;
}
header .title h2 span {
  color: #a8a5a3;
}
header .title h2 strong {
  color: #222;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.7px;
  /* white-space: nowrap; */
}
.header__search {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__search input {
  width: 22rem;
  height: 3.5rem;
  padding: 0 1.5rem;
  border-radius: 3rem;
  background: #f5f5f5;
  font-weight: 500;
  letter-spacing: -0.4px;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  border: 1px solid #f5f5f5;
}
.header__search input::placeholder {
  color: #999;
}
.header__search input:focus {
  outline: 0;
  border-color: hsla(356, 89%, 45%, 0.1);
  box-shadow: 0 0 8px 0 #fff1f2;
  background-color: var(--white);
}
.header__search__btn {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--white);
  text-indent: -9999px;
  background-image: url("../img/ic_search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
}
.header__setting {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__setting .setting-icon,
.header__setting .logout-icon {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.375rem;
  height: 1.375rem;
}
.header__setting .setting-icon {
  background-image: url("../img/ic_setting.svg");
}
.header__setting .logout-icon {
  background-image: url("../img/ic_logout.svg");
}
header .user,
header .lang {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M5.25 7.5L9 11.25' stroke='%23A8A5A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11.25L12.75 7.5' stroke='%23A8A5A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
}
header .lang {
  padding-right: 1.25rem;
}
header .user .profile {
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
}
header .user .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .lang img {
  width: 1.375rem;
}
header .user .name {
  color: #444;
  font-weight: 500;
}
header .user .drop-menu,
header .lang .drop-lang {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem hsla(0, 0%, 0%, 0.1);
  display: flex;
  flex-direction: column;
  padding: 0.3rem 0;
  cursor: default;
}
header .lang .drop-lang {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
header .user .drop-menu li,
header .lang .drop-lang li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  white-space: nowrap;
}
header .user .drop-menu li:hover,
header .lang .drop-lang li:hover {
  background-color: #f5f5f5;
}
header .lang .drop-lang li.active {
  background-color: var(--BYDblue);
  color: var(--white);
}
header .sub-nav {
  padding: 0 2.5rem;
}
header .sub-nav ul {
  display: flex;
  gap: 1.75rem;
  height: 100%;
  justify-content: center;
  height: 3rem;
}
header .sub-nav li {
  height: 100%;
  align-content: center;
  border-bottom: 3px solid transparent;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: #222;
}
header .sub-nav li.active {
  border-bottom-color: var(--BYDblue, #3753b1);
  color: var(--BYDblue, #3753b1);
  font-weight: 700;
}

main {
  grid-area: main;
  background-color: #f4f7f9;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: scroll;
  container: mainArea / inline-size;
  scroll-behavior: smooth;
}
form:has(> main) {
  grid-area: main;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
form:has(> main) main {
  height: 100%;
}
main section {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 0 1.5rem 0px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  /* max-height: 100%; */
}
main:has(.shortcuts-tab) {
  padding: 1.5rem 2.5rem 2.5rem;
}
section:has(.shortcuts-tab) {
  align-self: flex-start;
  position: sticky;
  top: 0;
  z-index: 1;

  box-shadow: 0 0 1.5rem 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1366px) {
  header .sub-nav {
    overflow-x: scroll;
    width: calc(100dvw - 300px);
  }
  header .sub-nav ul {
    justify-content: flex-start;
  }
  header .sub-nav ul::after {
    content: "여백";
    text-indent: -9999px;
  }
  header .sub-nav li {
    white-space: nowrap;
  }
}
@media (max-width: 1280px) {
  .container {
    grid-template-columns: auto;
    grid-template-areas:
      "header"
      "main";
  }
  nav {
    position: fixed;
  }
  .nav-open nav {
    z-index: 8;
    width: 100%;
  }
  .nav-close nav {
    z-index: 3;
    width: 0;
  }
  .nav-inner {
    width: 20rem;
    gap: 2rem 0;
  }
  .nav-open .nav-dim {
    display: block;
  }
  .nav-close .nav-inner {
    transform: translateX(-100%);
  }
  .nav-open .nav-menu-btn {
    position: absolute;
  }
  header .title {
    padding: 1.2rem 2.5rem;
    gap: 1.5rem 2rem;

    justify-content: center;
  }
  .header__tit {
    /* padding-left: 4rem; */
    max-width: none;

    order: 2;
    flex: 1 1 100%;
    justify-content: space-between;
  }
  .header__search {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    order: 1;
  }
  /* .header__search input{
        background: #333;
        border: 1px solid #333;
        color: #fff;
    } */
  /* .header__search input:focus{
        background-color: #333;
        box-shadow: none;
        border: 0;
        outline: var(--outline-size) solid #4A4C4E;
    } */
  /* .header__search__btn{
        background-color: #474747;
        background-image: url('../img/ic_search_w.svg');
    } */
  .header__setting {
    /* position: absolute;
        right: 2.5rem;
        top: 1.8rem; */
    flex-basis: 100%;
    justify-content: flex-end;
  }

  header .sub-nav {
    width: 100dvw;
  }
}
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
  }
  main:has(.shortcuts-tab) {
    padding: 1.5rem;
  }
  header .title {
    padding: 1.2rem 1.5rem;
    gap: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .header__tit {
    order: 3;
  }
  .header__search {
    order: 2;
  }
  .header__search input {
    width: 100%;
  }
  .header__setting {
    position: static;
    order: 1;
    justify-content: flex-end;
  }

  header .sub-nav {
    padding: 0 1.5rem;
  }

  header.simple .title {
    min-height: 0;
  }
  header.simple .header__tit {
    display: none;
  }
  header.simple .header__search {
    display: none;
  }
}
@media (max-width: 576px) {
  header .title h2 strong {
    font-size: 1.65rem;
  }
  header .user {
    background-image: none;
    padding-right: 0;
    order: 3;
  }
  header .lang {
    background-image: none;
    padding-right: 0;
  }
  header .user .name {
    display: none;
  }
}

.shortcuts-tab {
  display: flex;
  padding: 0.3rem;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.shortcuts-tab li a {
  display: flex;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.shortcuts-tab li:hover a {
  background-color: #f1f1f1;
}
.shortcuts-tab .active a,
.shortcuts-tab .active:hover a {
  background-color: var(--BYDblue);
  color: #fff;
}

.option-area {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.option-area.filter-open {
  align-items: flex-start;
}
.option-area.top {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.08);
  padding: 0.5rem 1rem;
}
.option-area.bottom {
  border-top: 1px solid hsla(0, 0%, 0%, 0.08);
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
}
.option-area .left {
  flex-grow: 1;
}
.option-area .right {
  display: flex;
  gap: 0.75rem;
  flex-grow: 1;
  justify-content: flex-end;
}
.total-count,
.page-size {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  align-items: center;
}
.total-count span,
.page-size span {
  color: #767676;
  white-space: nowrap;
}
.total-count strong {
  font-weight: 700;
}
.page-size select {
  border-radius: 0.25rem;
  border: 1px solid #e1dfdd;
  height: 2.25rem;
  line-height: 2.25rem;
  padding: 0 0.75rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  font-size: 0.9rem;
  background: url(../img/ic_selbox_open.svg) #fff no-repeat right 0.25rem center / 1rem;
  padding-right: 1.5rem;
}
.option-area__tit {
  color: #141414;
  font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.375rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.33px;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
.option-area__tit small {
  color: var(--BYDred);
  font-size: 0.6em;
  margin-left: 0.4rem;
}
.inputbox-wrap {
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15%, auto));
  /* grid-template-columns: repeat(6,1fr); */
  /* grid-auto-flow: dense; */
  gap: 2rem 1rem;
  align-items: flex-start;
}
.option-area .inputbox-wrap {
  height: auto;
  max-height: 4.35rem;
  overflow: hidden;
}
.option-area.filter-open .inputbox-wrap {
  height: auto;
  overflow: visible;
}
.inputbox-wrap:has(+ .table) {
  position: sticky;
  left: 0;
  margin-bottom: 1.5rem;
}
.inputbox {
  display: block;
  flex-direction: column;
  gap: 0.5rem;
}
.inputbox-wrap .inputbox {
  grid-column: auto / span var(--cellWidth);
}
.cellWidth-7-up {
  grid-column: 1 / -1 !important;
}
.inputbox .tit {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.225px;
  color: #333;
  line-height: 1;
  display: flex;
  gap: 0.3rem;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
/* select-box refresh */
.inputbox .tit span.select_refresh {
  background: url("../img/ico_refresh.svg") no-repeat center center;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}
.inputbox .tit span.select_refresh:hover {
  transform: rotate(180deg);
}

/* .inputbox.required .tit::after{
    content: '* 필수입력'; display: block; color: var(--BYDred); font-weight: 400;
    font-size: .8125rem;
} */
.inputbox.required .tit::after {
  content: "*";
  display: block;
  color: var(--BYDred);
  font-weight: 400;
  font-size: 0.8125rem;
}
.required .warning {
  color: var(--BYDred);
  font-size: 0.8125rem;
}
@media (min-width: 1281px) {
  .option-area .inputbox-wrap {
    gap: 1rem 1rem;
    grid-template-columns: repeat(auto-fill, minmax(18%, auto));
  }
  .option-area .inputbox {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
  }
  .option-area .inputbox .tit {
    font-weight: 500;
  }
}

.con2 {
  color: #686d71;
  text-align: right;
  /* font-family: "NanumSquare Neo OTF"; */
  font-size: 14px;
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  line-height: 100%; /* 14px */
  margin: 0.75rem;
}

.inputbox .con {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
  position: relative;
}
.inputbox .con:has(.filebox) {
  flex-wrap: wrap;
}
.inputbox .con .text {
  display: flex;
  align-items: center;
  height: 2.75rem;
  border-radius: 0.25rem;
  border: 1px solid #e1dfdd;
  background-color: #f9f9f9;
  padding: 0 1rem;
  width: 100%;
  font-size: 0.9375rem;
  /* overflow-x: scroll; pc에서 스크롤바 생겨서 없앰*/
  word-break: break-all;
}
.inputbox input:not([type="checkbox"], [type="radio"], [type="button"]),
.inputbox select {
  border-radius: 0.25rem;
  border: 1px solid #e1dfdd;
  background-color: var(--white);
  height: 2.75rem;
  line-height: 2.75rem;
  padding: 0 1rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  width: 100%;
  font-size: 0.9375rem;
}
.inputbox input:focus,
.inputbox select:focus,
.inputbox textarea:focus {
  border-color: #111;
  outline: 0;
}
.inputbox input::placeholder,
.inputbox textarea::placeholder {
  color: #bbb;
  font-size: 15px;
}
.inputbox input:disabled,
.inputbox input:read-only,
.inputbox textarea:read-only {
  background-color: #f9f9f9;
}
.not-input {
  background-color: #f9f9f9 !important;
}
.not-input:focus {
  border-color: #e1dfdd !important;
}
.inputbox .invalid,
.inputbox input.invalid:not([type="checkbox"], [type="radio"]) {
  border-color: #e87472;
  background-color: #fff6f4;
}
.inputbox .invalid:focus {
  border-color: #e87472;
  box-shadow: 0 0 8px 0 #ffeae5;
}
.inputbox input[type="number"] {
  text-align: right;
  padding: 0 0.5rem;
  -moz-appearance: textfield;
}
.inputbox input[type="number"]::-webkit-outer-spin-button,
.inputbox input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inputbox textarea {
  border-radius: 0.25rem;
  border: 1px solid #e1dfdd;
  background-color: var(--white);
  padding: 0.75rem 1rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  width: 100%;
  font-size: 0.9375rem;
}
.inputbox select {
  background: url("../img/ic_selbox_open.svg") #fff no-repeat right 0.7rem center;
  padding-right: 3rem;
}
.inputbox select:disabled {
  background: #f9f9f9;
}
.inputbox select option {
  padding: 10px 0;
}
.sel-group {
  border-radius: 0.25rem;
  border: 1px solid #e1dfdd;
  background: var(--white);
  padding: 0.25rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  /* width: 100%; */
  font-size: 0.9375rem;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.option-area .inputbox .sel-group {
  /* flex-wrap: nowrap; */
}
.option-area.filter-open .inputbox .sel-group {
  flex-wrap: wrap;
}
.sel-group > div {
  height: 2.125rem;
  border-radius: 0.125rem;
  background-color: #f9f9f9;
  padding: 0 0.75rem;
}
.sel-group > div:has(input[type="checkbox"]:checked),
.sel-group > div:has(input[type="radio"]:checked) {
  background-color: #ebeef8;
}
.inputbox input[type="date"],
.inputbox input.js_datepicker {
  position: relative;
  background: url("../img/ic_cal.svg") #fff no-repeat right 0.8rem center;
}

.inputbox input.js_datetimepicker {
  position: relative;
  background: url("../img/ic_cal.svg") #fff no-repeat right 0.8rem center;
}

.inputbox input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
.inputbox input.search {
  background: url("../img/ic_search.svg") #fff no-repeat right 0.8rem center / 1.25rem;
  padding-right: 2.5rem;
}
.option-area .right:has(.search-wrap) {
  flex: 0 0 auto;
}
.search-wrap {
  display: flex;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.btn-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
main > .btn-wrap {
  justify-content: flex-end;
}

.search-btn {
  display: flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 1rem 0 2.5rem;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.255px;
  background: url("../img/ic_search_w.svg") #111 no-repeat left 0.8rem center / 1.375rem;
  cursor: pointer;
  white-space: nowrap;
}
.submit-btn {
  display: flex;
  align-items: center;
  height: 2.75rem;
  padding: 0 1rem;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.255px;
  background-color: var(--BYDblue);
  cursor: pointer;
}
.login-btn {
  background-color: var(--BYDgray);
  color: var(--white);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.375rem;
  border-radius: 10rem;
  margin-top: 2.5rem;
  cursor: pointer;
}
.login-btn-back {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.375rem;
  border-radius: 10rem;
  margin-top: 2.5rem;
  cursor: pointer;
  border-radius: 7.9375rem;
  border: 1px solid var(--gray, #686d71);
  background: #fff;
}
.login-btn:hover {
  background-color: #101010;
}
.nav-menu-btn {
  display: none;
  width: 2rem;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  left: calc(100% + 2.5rem);
  top: 2rem;
}
.nav-menu-btn span {
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  height: 3px;
  background: #444;
  transition: all 0.3s;
  position: relative;
}
.nav-open .nav-menu-btn span {
  background-color: #fff;
}
.nav-menu-btn span + span {
  margin-top: 6px;
}
.nav-open .nav-menu-btn span:nth-child(1) {
  animation: ease 0.7s menuTopAni forwards;
}
.nav-close .nav-menu-btn span:nth-child(1) {
  animation: ease 0.7s menuTopAni2 forwards;
}
.nav-open .nav-menu-btn span:nth-child(2) {
  animation: ease 0.7s menuScaledAni forwards;
}
.nav-close .nav-menu-btn span:nth-child(2) {
  animation: ease 0.7s menuScaledAni2 forwards;
}
.nav-open .nav-menu-btn span:nth-child(3) {
  animation: ease 0.7s menuBottomAni forwards;
}
.nav-close .nav-menu-btn span:nth-child(3) {
  animation: ease 0.7s menuBottomAni2 forwards;
}
@keyframes menuTopAni {
  0% {
    top: 0;
    transform: rotate(0);
  }

  50% {
    top: 9px;
    transform: rotate(0);
  }

  100% {
    top: 9px;
    transform: rotate(45deg);
  }
}

@keyframes menuTopAni2 {
  0% {
    top: 9px;
    transform: rotate(45deg);
  }

  50% {
    top: 9px;
    transform: rotate(0deg);
  }

  100% {
    top: 0;
    transform: rotate(0deg);
  }
}

@keyframes menuBottomAni {
  0% {
    bottom: 0;
    transform: rotate(0);
  }

  50% {
    bottom: 9px;
    transform: rotate(0);
  }

  100% {
    bottom: 9px;
    transform: rotate(135deg);
  }
}

@keyframes menuBottomAni2 {
  0% {
    bottom: 9px;
    transform: rotate(135deg);
  }

  50% {
    bottom: 9px;
    transform: rotate(0);
  }

  100% {
    bottom: 0;
    transform: rotate(0);
  }
}

@keyframes menuScaledAni {
  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes menuScaledAni2 {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}
.button {
  display: flex;
  align-items: center;
  height: 2.25rem;
  border-radius: 0.25rem;
  padding: 0 0.75rem;
  border: 1px solid #e1dfdd;
  background-color: var(--white);
  color: #444;
  letter-spacing: -0.225px;
  cursor: pointer;
  background-repeat: no-repeat;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.button:hover {
  background-color: #f5f5f5;
  color: #222;
}
.button.active {
  background-color: var(--BYDblue);
  border-color: var(--BYDblue);
  color: #fff;
}
.button.pay-cancel {
  background-image: url("../img/ic_pay_cancel.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.part-cancel {
  background-image: url("../img/ic_part_cancel.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.write {
  background-image: url("../img/ic_write.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.modify {
  background-image: url("../img/ic_modify.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.receipt {
  background-image: url("../img/ic_receipt.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.detail {
  background-image: url("../img/ic_detail.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.download {
  background-image: url("../img/ic_download.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.add {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus-circle'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='16'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/svg%3E");
}
.button.delete {
  background-image: url("../img/ic_delete.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.prev-first {
  background-image: url("../img/ic_prev_first.svg");
  background-position: center;
  text-indent: -9999px;
  aspect-ratio: 1;
}
.button.prev {
  background-image: url("../img/ic_prev.svg");
  background-position: center;
  text-indent: -9999px;
  aspect-ratio: 1;
}
.button.next-last {
  background-image: url("../img/ic_next_last.svg");
  background-position: center;
  text-indent: -9999px;
  aspect-ratio: 1;
}
.button.next {
  background-image: url("../img/ic_next.svg");
  background-position: center;
  text-indent: -9999px;
  aspect-ratio: 1;
}
.button.alarm {
  background-image: url("../img/ic_notice.svg");
  background-position: center;
  background-size: 1.25rem;
  text-indent: -9999px;
  aspect-ratio: 1;
}

.button.alarm_reset {
  background-image: url("../img/ic_delete.svg");
  background-position: center;
  background-size: 1.25rem;
  text-indent: -9999px;
  aspect-ratio: 1;
}

.button.number {
  justify-content: center;
}
.button.close {
  padding: 0 1rem;
}
.button.save {
  background-image: url("../img/ic_save.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.archive {
  background-image: url("../img/ic_archive.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}
.button.star {
  background-image: url("../img/ic_star.svg");
  padding: 0 0.75rem 0 2.2rem;
  background-position: left 0.6rem center;
}

.option-area__tit:has(.button) {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0 0.5rem;
}
.option-area__tit .button {
  text-indent: -9999px;
  aspect-ratio: 1;
  background-position: center;
  background-size: 1.25rem;
}
.option-area__tit .button.delete {
  padding: 0 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%23444444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H16' stroke='%23444444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.option-area__tit .button.add + .button.delete {
  margin-left: -0.5rem;
}

.button:has(~ .submit-btn),
main:has(.board-con-area) > .btn-wrap .button,
.popup-layer .option-area.bottom .right button.close:last-child {
  height: 2.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
}
.inputbox .con .button {
  height: 2.75rem;
}
.pagination {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.pagination ul {
  display: flex;
  gap: 0.375rem;
}
.checkbox,
.radiobox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.inputbox-wrap .checkbox:first-child:last-child {
  height: 2.75rem;
}
.checkbox input[type="checkbox"] {
  --active: var(--BYDblue);
  --active-inner: #fff;
  --focus: 2px #a9bdff;
  --border: #d5cfcf;
  --border-hover: var(--BYDblue);
  --background: #fff;
  --disabled: #f6f6f6;
  --disabled-inner: #e1ebf9;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 1.375rem;
  width: 1.375rem;
  outline: none;
  display: block;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  border-radius: 4px;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.2s;
}
.checkbox input[type="checkbox"]:after {
  content: "";
  display: block;
  position: absolute;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2),
    opacity 0.3s;
  opacity: 1;
  width: 0.375rem;
  height: 0.625rem;
  border: 2px solid var(--active-inner);
  border-top: 0;
  border-left: 0;
  left: 0.4375rem;
  top: 0.1875rem;
  transform: rotate(43deg);
}
.checkbox input[type="checkbox"]:checked {
  --b: var(--active);
  --bc: var(--active);
}
.checkbox input[type="checkbox"]:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}
.checkbox input[type="checkbox"]:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}
.checkbox input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
}
.checkbox input[type="checkbox"]:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}
.checkbox input[type="checkbox"]:focus {
  box-shadow: 0 0 0 var(--focus);
}
.checkbox input[type="checkbox"] + label,
.radiobox input[type="radio"] + label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.225px;
  white-space: nowrap;
}
.sel-group .checkbox input[type="checkbox"] + label,
.sel-group .radiobox input[type="radio"] + label {
  flex-grow: 1;
}

.radiobox input[type="radio"] {
  height: 1.375rem;
  width: 1.375rem;
  border-radius: 50%;
  display: block;
  position: relative;
  cursor: pointer;
  border: 1px solid #d5cfcf;
  background-color: #fff;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.2s;
}
.radiobox input[type="radio"]:after {
  content: "";
  display: block;
  position: absolute;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.85, 0.32, 1.2),
    opacity 0.3s;
  opacity: 1;
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background-color: var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.radiobox input[type="radio"]:checked {
  border-color: var(--BYDblue);
  background-color: var(--BYDblue);
}
.radiobox input[type="radio"]:hover:not(:checked):not(:disabled) {
  border-color: var(--BYDblue);
}
.radiobox input[type="radio"]:focus {
  box-shadow: 0 0 0 2px #a9bdff;
}
.radiobox input[type="radio"]:disabled {
  background-color: #f9f9f9;
  cursor: default;
}
.radiobox input[type="radio"]:disabled:checked {
  background-color: var(--BYDblue);
}
.radiobox input[type="radio"]:disabled::after {
  background-color: #f9f9f9;
}
.radiobox input[type="radio"]:disabled + label {
  cursor: default;
}
.filebox {
  display: flex;
  /* flex-grow: 1; */
}
.filebox .upload-name {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.filebox label {
  background-color: #333;
  color: var(--white);
  border-radius: 0 0.25rem 0.25rem 0;
  padding: 0 1.125rem;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.225px;
}
.filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

@media (max-width: 1440px) {
  .inputbox-wrap {
    grid-template-columns: repeat(auto-fill, minmax(23%, auto));
    gap: 1.5rem 1rem;
  }
  .option-area .inputbox-wrap {
    grid-template-columns: repeat(auto-fit, minmax(31%, auto));
  }
  .cellWidth-5-up {
    grid-column: 1 / -1 !important;
  }
}
@media (max-width: 1280px) {
  .nav-menu-btn {
    display: block;
  }

  .option-area .inputbox-wrap {
    height: 4.2rem;
  }
  .option-area .right:has(.search-wrap) {
    align-self: flex-end;
  }
}
@media (max-width: 768px) {
  .nav-menu-btn {
    width: 1.7rem;
    left: calc(100% + 1.5rem);
    top: 1.7rem;
  }
  .nav-menu-btn span {
    height: 2px;
  }
  .nav-menu-btn span + span {
    margin-top: 5px;
  }
  @keyframes menuTopAni {
    0% {
      top: 0;
      transform: rotate(0);
    }
    50% {
      top: 7px;
      transform: rotate(0);
    }
    100% {
      top: 7px;
      transform: rotate(45deg);
    }
  }
  @keyframes menuTopAni2 {
    0% {
      top: 7px;
      transform: rotate(45deg);
    }
    50% {
      top: 7px;
      transform: rotate(0deg);
    }
    100% {
      top: 0;
      transform: rotate(0deg);
    }
  }
  @keyframes menuBottomAni {
    0% {
      bottom: 0;
      transform: rotate(0);
    }
    50% {
      bottom: 7px;
      transform: rotate(0);
    }
    100% {
      bottom: 7px;
      transform: rotate(135deg);
    }
  }

  .option-area {
    flex-direction: column;
    align-items: stretch;
  }
  .option-area:has(.accordion-btn),
  .option-area:has(.total-count) {
    flex-direction: row;
    align-items: center;
  }
  .option-area:has(.total-count, .page-size) {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .option-area .right,
  .btn-wrap,
  main > .btn-wrap {
    justify-content: center;
  }
  .option-area .left:has(.total-count, .page-size) {
    order: 2;
    flex-grow: 0;
  }
  .page-size {
    justify-content: center;
  }
  .option-area:has(.total-count) .right {
    justify-content: flex-start;
  }
  .option-area .right:has(.accordion-btn) {
    justify-content: flex-end;
  }
  .option-area .right:has(.search-wrap) {
    align-self: stretch;
  }
  .option-area .inputbox-wrap {
    grid-template-columns: repeat(auto-fit, minmax(31%, auto));
  }
}
@media (max-width: 576px) {
  .inputbox-wrap {
    grid-template-columns: repeat(auto-fill, minmax(32%, auto));
  }
  .inputbox-wrap .inputbox:has(.sel-group > div:nth-child(3)) {
    grid-column: 1 / -1;
  }
  .inputbox-wrap .inputbox:has(.filebox ~ .button) {
    grid-column: 1 / -1;
  }
  .cellWidth-3-up {
    grid-column: 1 / -1 !important;
  }
  .pagination ul {
    display: none;
  }
}

.content-area {
  padding: 1.5rem;
}
.content-area__tit {
  color: #141414;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
}
.content-area__tit:not(:first-child) {
  margin-top: 2rem;
}
.content-area__tit::before {
  content: "";
  display: block;
  width: 0.3rem;
  background-color: var(--BYDblue);
}
.content-area__tit--2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.content-area__tit--2:not(:first-child) {
  margin-top: 1rem;
}
.content-area__tit--2::before {
  content: "";
  display: block;
  background-color: var(--BYDblue);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.acc-area-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.acc-area .content-area {
  display: none;
}
.acc-area.acc-open .content-area {
  display: block;
}
.acc-area .option-area.top {
  border-bottom-color: transparent;
}
.acc-area.acc-open .option-area.top {
  border-bottom-color: hsla(0, 0%, 0%, 0.08);
}

.content-area:has(.table) {
  padding: 0;
  max-width: 100%;
  overflow-x: scroll;

  max-height: 600px;
  overflow: scroll;
}
.tb-scroll {
  width: 100%;
  overflow-x: scroll;
}
.content-area:has(.tb-scroll) {
  overflow-x: hidden;
}
main section .content-area .table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.table_box {
  width: 100%;
  overflow: auto;
}

.table_box .table {
  white-space: nowrap;
}

.table {
  width: 100%;
}
.table tr {
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  border: 1px solid transparent;
}
.table tr.division-line {
  border-top: 2px solid #ccc;
}
.table tr:has(th) {
  background-color: #111;
  /* border-bottom: 2px solid hsla(0, 0%, 0%, 0.06); */
}
.table tr.tr_selected {
  border-color: var(--BYDblue);
  background-color: #ebeef8;
}
.table tr:has(+ .tr_selected) {
  border-bottom-color: var(--BYDblue);
}
.table th {
  color: #eee;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.21px;
  line-height: 1.1;
  border-bottom-color: hsla(0, 0%, 0%, 0.1);
  vertical-align: middle;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  border-right: 1px solid #444;
}
.table th:last-child {
  border-right: 0;
}
.table th.red {
  /* background-color: #D70C19; */
  background-color: #91282f;
  border-right-color: hsla(0deg, 0%, 0%, 25%);
}
.table th.blue {
  /* background-color: #3753B1; */
  background-color: #36477d;
  border-right-color: hsla(0deg, 0%, 0%, 25%);
}
.table tr:has(th.blue, th.red) {
  border-bottom-color: hsla(0deg, 0%, 0%, 25%);
}
.table td {
  color: #141414;
  font-size: 0.875rem;
  letter-spacing: -0.225px;
  line-height: 1.1;
  vertical-align: middle;
  border-bottom: 0;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  border-right: 1px solid hsla(0, 0%, 0%, 0.07);
}
.table td:last-child {
  border-right: 0;
}
.table td.yellow {
  background-color: #fff9cb;
}
.table td.gray {
  background-color: #f9f9f9;
}
.table td.text-right {
  text-align: right;
}
.table tr:has(td) {
  /* background-color: var(--white); */
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.04);
}
.table tr:has(td):last-child {
  /* border-bottom-color: hsla(0, 0%, 0%, 0.08); */
  border-bottom: 0;
}
.table tr.tr_selected:last-child {
  border-bottom: 1px solid var(--BYDblue);
}
.table tr:has(td):hover,
.table tr:has(td input[type="checkbox"]:checked) {
  background-color: #ebeef8;
}
.table td strong {
  font-weight: 700;
}

.table .board-tit {
  position: relative;
  font-weight: 600;
}
.table .new .board-tit {
  padding-left: 4.2rem;
}
.table .new .board-tit::before {
  content: "NEW";
  display: block;
  padding: 0.3rem 0.6rem;
  background-color: #ffbd26;
  border-radius: 5rem;
  line-height: 1;
  font-size: 0.7rem;
  color: #fff;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.table .attached-file {
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.25rem;
}
.table .attached-file.yes {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-paperclip'%3E%3Cpath d='M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48'/%3E%3C/svg%3E");
}

.print .table {
  border-top: 2px solid #111;
  overflow: visible !important;
}
.print .table tr:has(th) {
  background-color: #f1f1f1;
  border-bottom-color: #767676;
}
.print .table th,
.print .table td {
  white-space: inherit;
  border-right: 1px solid #ddd;
}
.print .table th {
  color: #111;
  font-weight: 700;
  border-right-color: #ccc;
}
.print .table th:last-child,
.print .table td:last-child {
  border-right: 0;
}
.print .table tr:has(td):hover {
  background-color: #fff;
}

.indicator {
  display: inline-flex;
  gap: 0.25rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}
.indicator.up {
  color: var(--BYDblue);
  background-color: #dde4fb;
}
.indicator.up::before {
  content: "↑";
}
.indicator.down {
  color: var(--BYDred);
  background-color: #fbdddf;
}
.indicator.down::before {
  content: "↓";
}

.defect-photo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.defect-photo {
  flex: 1;
  text-align: center;
}
.defect-photo strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  background-color: #eee;
  border-radius: 10rem;
  padding: 0.4rem 0.8rem;
  font-weight: 500 !important;
}
.defect-photo img {
  display: block;
}
@media (max-width: 640px) {
  .defect-photo-wrap {
    flex-wrap: wrap;
  }
  .defect-photo {
    flex-basis: calc(50% - 1rem);
  }
}

.editor-area {
  margin: 2rem 0;
}

.board-info {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  min-height: 2.25rem;
}
.option-area.top .board-info {
  justify-content: flex-end;
}
.option-area.top .right:has(.board-info) {
  align-self: flex-end;
}
.board-info dl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.board-info dt {
  color: #444;
}
.board-info dd {
  font-weight: 600;
}
.board-info dd a {
  display: block;
  position: relative;
  padding-left: 1.5rem;
}
.board-info dd a::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-paperclip'%3E%3Cpath d='M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem;
}
.board-info dd a:hover {
  text-decoration: underline;
}

.board-view-tit__top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
}
.board-status {
  font-weight: 500;
  line-height: normal;
  padding: 0.3rem 0.6rem;
  border-radius: 5rem;
  display: inline-block;
  font-size: 0.85rem;
}
.board-status.ongoing {
  background-color: var(--BYDblue);
  color: #fff;
}
.board-status.complete {
  background-color: #eee;
  color: #111;
}
.board-category {
  font-weight: 600;
  color: #767676;
  font-size: 0.9rem;
}

/* content-area에 overflow-y 일때 스크롤바 스타일 */
/* .content-area::-webkit-scrollbar {
    width: 14px;
}
.content-area::-webkit-scrollbar-track { 
    background-color: transparent;
}
.content-area:has(.table)::-webkit-scrollbar-track{
    background-color: #f9f9f9;
}
.content-area::-webkit-scrollbar-thumb { 
    background-color: transparent;
    border-radius: 50px;
    border: 4px solid #fff;
}
.content-area:has(.table)::-webkit-scrollbar-thumb{
    border: 4px solid #f9f9f9;
}
.content-area::-webkit-scrollbar-button {
    display: none;
}
.content-area:hover::-webkit-scrollbar-thumb {
    background-color: hsla(0, 0%, 0%, 0.1);
} */

/* 탭 */
.content-area:has(.tab-area) {
  overflow-x: hidden;
}
.tab-area {
  display: flex;
  border-radius: 0.5rem;
  overflow: hidden;
}
.tab-area.column {
  flex-direction: column;
  gap: 0.5rem;
}
.tab-btn {
  flex: 0 0 30%;
  max-width: 20rem;
  overflow-y: scroll;
  background-color: #fff;
  border-right: 1px solid #efefef;
  padding: 1rem;
}
.tab-area.column .tab-btn {
  flex: 0 1 auto;
  max-width: none;
  display: flex;
  gap: 0.3rem;
  overflow-y: hidden;
  padding: 0.3rem;
  border-radius: 0.5rem;
  width: fit-content;
  background-color: #fff;
  border: 1px solid #ddd;
  flex-wrap: wrap;
  max-height: none;
}
.tab-btn::-webkit-scrollbar {
  width: 14px;
}
.tab-btn::-webkit-scrollbar-track {
  background-color: transparent;
}
.tab-btn::-webkit-scrollbar-thumb {
  border-radius: 50px;
  border: 4px solid #101010;
  background-color: hsla(0, 0%, 100%, 0.3);
}
.tab-btn::-webkit-scrollbar-button {
  display: none;
}
.tab-btn a {
  display: block;
  padding: 1rem 1.5rem;
  color: #222;
  border-radius: 0.3rem;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  background-position: left center;
}
.tab-area.column .tab-btn a {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
}
.tab-btn a:hover {
  background-color: #ebeef8;
}
.tab-area.column .tab-btn a:hover {
  background-color: #f1f1f1;
}
.tab-btn .active a {
  font-weight: 500;
  padding-left: 3.5rem;
  background: url("../img/ic_tab_btn_arr.svg") #ebeef8 no-repeat left 1.5rem center / 1.2rem;
}
.tab-area.column .tab-btn .active a {
  /* padding-left: 2rem;
    background-position: left .6rem center;
    background-size: 0.9rem; */
  background-color: var(--BYDblue);
  background-image: none;
  color: #fff;
}
.tab-contents {
  flex: 1;
  padding: 2rem;
  /* overflow-y: scroll; */
  overflow-x: scroll;
}
.tab-area.column .tab-contents {
  padding: 0;
}
.tab-contents > div {
  display: none;
}
.tab-contents > div.active {
  display: block;
}
.tab-contents .table td {
  border-right: 1px solid hsla(0, 0%, 0%, 0.1);
}
.tab-contents .table td:last-child {
  border-right: 0;
}

@media (max-width: 768px) {
  .option-area .tab-area.column {
    order: 2;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .tab-area {
    flex-direction: column;
  }
  .tab-btn {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 7.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(33%, auto));
    padding: 0.7rem;
  }
  .tab-btn a {
    padding: 0.8rem 1rem;
  }
  .tab-btn .active a {
    padding-left: 2.4rem;
    background-position: left 0.8rem center;
    background-size: 1rem;
  }
  .tab-contents {
    padding: 1rem;
  }
}
@media (max-width: 576px) {
  .tab-btn {
    grid-template-columns: repeat(auto-fill, minmax(50%, auto));
  }
}

.detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 70%;
  transform: translateX(calc(-50% + 150px)) translateY(-100%);
  transition: 0.35s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.detail-content.show {
  transform: translateX(calc(-50% + 150px)) translateY(0);
}
.detail-content.sum {
  transform: translateX(0) translateY(0);
  width: 100%;
  position: sticky;
  left: 0;
  top: auto;
  bottom: 0;
}
.detail-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.5rem;
  background-color: #ebeef8;
  border: 1px solid var(--BYDblue);
  border-top-color: transparent;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.detail-content.sum ul {
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-top-color: var(--BYDblue);
}
.detail-content.sum li {
  flex: 1;
}
.detail-content dl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-content dt {
  background-color: #d7ddef;
  padding: 0.4rem 0.8rem;
  border-radius: 5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.detail-content li:hover dt {
  background-color: #c3cce8;
}
.detail-content .btn-wrap {
  display: inline-flex;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  overflow: hidden;
  margin-top: -1px;
  border: 1px solid var(--BYDblue);
  border-top: 0;
}
.detail-content .btn-wrap button {
  background-color: #ebeef8;
  border-radius: 0;
  border: 0;
}
.detail-content.sum .inputbox input:not([type="checkbox"], [type="radio"]),
.detail-content.sum .inputbox select {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 9rem;
}
.detail-content.sum .inputbox input:disabled {
  background-color: transparent;
  border-color: transparent;
}

@media (max-width: 1280px) {
  .detail-content {
    width: 50%;
    transform: translateX(-50%) translateY(-100%);
  }
  .detail-content.show {
    transform: translateX(-50%) translateY(0);
  }
}
@media (max-width: 768px) {
  .detail-content {
    width: 300px;
  }
}
@media (max-width: 576px) {
  .detail-content.sum {
    position: static;
  }
}

/* ********* 메인 대시보드 - 세일즈 ********* */
.main-dashboard-container {
  /*display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  grid-auto-flow: row;
  grid-template-areas:
    "mdSelect mdSelect mdSelect ."
    "mdStatus mdStatus mdStatus mdGeneral"
    "mdSales mdSales mdSales mdNotice";*/
}
.md-content__box {
  background-color: var(--white);
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.md-content__tit {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}
.md-content__tit h3 {
  color: #333;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: normal;
}
.md-content__tit .right {
}
.md-content__con {
  padding: 0 2rem 1.5rem;
  flex: 1;
}
.md-content table th {
  color: #333;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.4px;
  background-color: #f1f1f1;
  border-right-color: rgba(0, 0, 0, 0.07);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-align: center;
}
.md-content table th small {
  display: block;
  color: #888;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: 0.25rem;
}
.md-content table th:first-child,
.md-content table td:first-child {
  text-align: left;
  font-weight: 600;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  /*position: sticky;*/
  left: 0;
}
.md-content table td:first-child {
  background-color: #fff;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.md-content table tr:has(td):hover td:first-child {
  background-color: #ebeef8;
}
.md-content table td {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.md-content table tr:has(td) {
  border-bottom-color: #ededed;
}
.md-content table tr:last-child td {
  background-color: #e1e5f4;
  font-weight: 600;
}
.md-content table tr:has(td):last-child:hover td:first-child {
  background-color: #e1e5f4;
}

/* 판매현황 */
.mdStatus {
  /*grid-area: mdStatus;
  container: mdStatus / inline-size;*/
}
.sales-status__wrap {
  display: flex;
  gap: 1.5rem;
}
.sales-status__wrap li {
  border: 1px solid #efefef;
  border-radius: 0.5rem;
  padding: 1.5rem 0;
  gap: 1rem;
  color: #101010;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  container: mdStatusBox / inline-size;
  /* justify-content: space-between; */
}
.sales-status__wrap h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
.sales-status__num {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  gap: 0.3rem;
  align-items: baseline;
}
.sales-status__num:has(small) {
  margin-left: 1rem;
}
.sales-status__num small {
  font-size: 0.5em;
}
.sales-status__fluctuation__wrap {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
}
.sales-status__fluctuation__wrap:has(.sales-status__fluctuation__box:nth-child(2))::before {
  content: "";
  border: 1px solid #f5f5f5;
}
.sales-status__fluctuation__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0 1.5rem;
  text-align: center;
}
.sales-status__fluctuation__box:first-child {
  order: -1;
}
.sales-status__fluctuation {
  /*font-size: 1.25rem;*/
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.sales-status__fluctuation::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.sales-status__fluctuation.increase {
  color: #00bd5f;
}
.sales-status__fluctuation.increase::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 19V5M12 5L5 12M12 5L19 12' stroke='%2300bd5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.sales-status__fluctuation.decrease {
  color: #ff3f3f;
}
.sales-status__fluctuation.decrease::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5V19M12 19L19 12M12 19L5 12' stroke='%23ff3f3f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.sales-status__date {
  color: #767676;
}

.numerical-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  height: 100%;
}
.numerical-list.row {
  gap: 0.5rem 1.5rem;
  flex-wrap: nowrap;
}
.numerical-list li {
  flex: 1 0 calc(50% - 2rem);
}
.numerical-list.row li {
  flex: 1 1 auto;
}
.numerical-list dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  justify-content: center;
}
.numerical-list.row dl {
  flex-direction: row;
  border: 1px solid #efefef;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
  gap: 0;
}
.numerical-list dt {
  color: #101010;
  line-height: normal;
  text-align: center;
}
.numerical-list.row dt {
  background-color: #f1f1f1;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 1.5rem;
  align-content: center;
}
.numerical-list dd {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  justify-content: center;
}
.numerical-list.row dd {
  flex: 1;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}
.numerical-list.row dd span {
  color: #333;
  font-size: 0.9375rem;
  line-height: normal;
  white-space: nowrap;
  margin-right: 0.625rem;
}
.numerical-list dd strong {
  color: #333;
  font-weight: 700;
  line-height: normal;
}
.numerical-list dd small {
  color: #767676;
  font-weight: 500;
  /* line-height: 1.6; */
}

/* 대시보드 검색 */
.mdSelect {
  /*grid-area: mdSelect;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*container: mdSelect / inline-size;*/
}
.mdSelect .md-content__box {
  width: calc(100% - 5rem);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.mdSelect .md-content__box::before {
  content: "";
  border: 1px solid #eee;
  align-self: center;
  height: 2.5rem;
}
.mdSelect__selbox {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 0.75rem 1.5rem;
  background: url("../img/ic_dropdown.svg") no-repeat right 2rem center / 1.5rem;
  height: 4.5rem;
}
.mdSelect__selbox:first-child {
  order: -1;
}
.mdSelect__selbox span {
  color: #acadae;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.mdSelect__selbox select {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.5px;
  flex: 1;
  cursor: pointer;
  padding-right: 2.5rem;
}

.refresh-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: url("../img/ic_refresh.svg") #fff no-repeat center / 1.375rem;
  text-indent: -9999px;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.refresh-btn:hover {
  transform: rotate(180deg);
}

.mdBanner {
  grid-area: mdBanner;
  container: mdBanner / inline-size;
}
.mdBanner .md-content__box {
  background: url("../img/main_banner_bg.jpg") no-repeat center / cover;
  padding: 2rem 1.5rem;
}
.mdBanner .md-content__box p {
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: normal;
  font-size: 1.05rem;
}
.mdBanner .md-content__box strong {
  /* color: var(--BYDblue); */
  font-weight: 600;
}

/* 리드현황 */
.mdSales {
  /*grid-area: mdSales;
  container: mdSales / inline-size;*/
}
.mdSales__etc {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
}
.mdSales__etc::before {
  content: "";
  border: 1px solid #eee;
  align-self: stretch;
}
.mdSales__etc li {
  display: flex;
  gap: 0.5rem 0.75rem;
  color: #333;
}
.mdSales__etc li:first-child {
  order: -1;
}
.mdSales__etc li strong {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.4px;
}

.mdCalendar {
  grid-area: mdCalendar;
  container: mdCalendar / inline-size;
}

.mdReserve {
  grid-area: mdReserve;
  container: numericalBox / inline-size;
}
/* 영업활동 현황 */
.mdGeneral {
  /*grid-area: mdGeneral;
  container: numericalBox / inline-size;*/
}
.mdBP {
  grid-area: mdBP;
  container: numericalBox / inline-size;
}
.mdReserve-icon,
.mdGeneral-icon,
.mdBP-icon,
.mdStandby-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.mdReserve-icon {
  background: url(../img/ic_calendar.svg) #f2f8fc no-repeat center / 1.5rem;
}
.mdGeneral-icon {
  background: url(../img/ic_car.svg) #f3fcf2 no-repeat center / 1.5rem;
}
.mdBP-icon {
  background: url(../img/ic_tool.svg) #f9f2fc no-repeat center / 1.5rem;
}
.mdStandby-icon {
  background: url(../img/ic_clock.svg) #fdfbe7 no-repeat center / 1.5rem;
}
.mdReserve .md-content__tit::after,
.mdGeneral .md-content__tit::after,
.mdBP .md-content__tit::after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 4rem);
  background-color: #ededed;
  position: absolute;
  top: 100%;
  left: 2rem;
}
.mdReserve .md-content__con,
.mdGeneral .md-content__con,
.mdBP .md-content__con {
  padding-top: 1.5rem;
}

/* 공지사항 */
.mdNotice {
  /*grid-area: mdNotice;
  container: mdNotice / inline-size;*/
}
.mdNotice ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mdNotice ul li a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.mdNotice ul li a span {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
  flex: 0 0 5rem;
  letter-spacing: -0.4px;
}
.mdNotice ul li a p {
  color: #333;
  letter-spacing: -0.4px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 5.5rem);
}
.mdNotice ul li a:hover p {
  text-decoration: underline;
}
.mdNotice__moreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--BYDgray);
  color: #fff;
  border-radius: 40rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1 1L6 6L1 11' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 42% center;
  background-size: 0.5rem;
  padding-right: 1.2rem;
  height: 3rem;
  font-size: 1.0625rem;
  font-weight: 600;
  transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  margin-top: 1.5rem;
}
.mdNotice__moreBtn:hover {
  background-color: #111;
}

.mdStandby {
  grid-area: mdStandby;
  container: mdStandby / inline-size;
}

@media (max-width: 1810px) {
  .mdBanner .md-content__box strong::before {
    content: "";
    display: block;
  }
}
@media (max-width: 587px) {
  .mdBanner .md-content__box strong::before {
    content: "";
    display: none;
  }
  .mdSales__etc::before {
    display: none;
  }
}
@container numericalBox (inline-size > 40rem) {
  .numerical-list li {
    /* flex: 1 0 calc(33% - 2rem); */
    flex: 1 1 0;
  }
  /* .numerical-list:has(>li:nth-child(odd):last-child)::after{
        content: '';
        flex: 1 0 calc(33% - 2rem);
    } */
}
@container mdStandby (inline-size < 85rem) {
  .numerical-list.row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .numerical-list.row li:first-child,
  .numerical-list.row li:nth-child(2) {
    flex-basis: calc(50% - 1.5rem);
  }
}
@container mainArea (inline-size < 75rem) {
  .main-dashboard-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "mdSelect mdSelect mdSelect"
      "mdStatus mdStatus mdStatus"
      "mdGeneral mdGeneral mdGeneral"
      "mdSales mdSales mdNotice";
  }
}
@container mainArea (inline-size < 55rem) {
  .main-dashboard-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-template-areas:
      "mdSelect"
      "mdStatus"
      "mdGeneral"
      "mdSales"
      "mdNotice";
  }
}
@container mdSelect (inline-size < 55rem) {
  /* .mdSelect .md-content__box{
        width: auto;
        max-width: calc(100% - 5rem);
    } */
  .mdSelect .md-content__box::before {
    display: none;
  }
  .mdSelect__selbox {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f9f9f9;
    /* flex: 0 1 auto;
        padding-right: 5rem;
        background-position: right 1.5rem center; */
  }
  .mdSelect__selbox select {
    font-size: 1.1rem;
  }
}
@container mdStandby (inline-size < 55rem) {
  .numerical-list.row li:first-child {
    flex-basis: 100%;
  }
  .numerical-list.row li:nth-child(3),
  .numerical-list.row li:nth-child(4),
  .numerical-list.row li:last-child {
    flex-basis: calc(50% - 1.5rem);
  }
  .numerical-list.row dt {
    flex: 0 0 6rem;
    text-align: center;
  }
  .numerical-list.row dd {
    padding: 0.7rem 1rem;
  }
}
@container mdStatus (inline-size < 50rem) {
  .sales-status__wrap {
    gap: 1rem;
  }
  .sales-status__wrap li {
    gap: 0.5rem;
  }
}
@container mdStatus (inline-size < 40rem) {
  .sales-status__wrap {
    flex-direction: column;
  }
}
@container mainArea (inline-size < 40rem) {
  .md-content__tit {
    padding: 1rem 1.5rem;
  }
  .md-content__tit h3 {
    font-size: 1.3rem;
  }
  .md-content__con {
    padding: 0 1.5rem 1.5rem;
  }
  .mdReserve .md-content__tit::after,
  .mdGeneral .md-content__tit::after,
  .mdBP .md-content__tit::after {
    width: calc(100% - 2rem);
    left: 1rem;
  }
  .mdReserve .md-content__con,
  .mdBP .md-content__con {
    padding-top: 1rem;
  }
  .mdReserve-icon,
  .mdGeneral-icon,
  .mdBP-icon,
  .mdStandby-icon {
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background-size: 1.2rem;
  }
  .mdNotice__moreBtn {
    margin-top: 1rem;
  }
  .mdBanner {
    aspect-ratio: 1 / 0.3;
  }
}
@container mdSelect (inline-size < 40rem) {
  .mdSelect .md-content__box {
    width: calc(100% - 3.5rem);
  }
  .mdSelect__selbox {
    padding: 1.2rem 1.5rem;
    background-position: right 1.5rem center;
    gap: 0.75rem 0.9rem;
  }
  .mdSelect__selbox span {
    font-size: 0.9rem;
  }
  .mdSelect__selbox select {
    font-size: 1rem;
  }
  .refresh-btn {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 1.2rem;
  }
}
@container mdSales (inline-size < 40rem) {
  .mdSales .table-sc {
    overflow-x: scroll;
  }
  .mdSales .table {
    width: 39rem;
  }
}
@container mdStatusBox (inline-size < 15rem) {
  .sales-status__wrap h4 {
    font-size: 1rem;
  }
  .sales-status__num {
    /*font-size: 2.25rem;*/
    font-size: 1.5rem;
  }
  .sales-status__fluctuation__wrap {
    flex-direction: column;
    width: auto;
    gap: 1rem;
  }
  .sales-status__fluctuation {
    font-size: 1rem;
  }
  .sales-status__fluctuation::before {
    width: 18px;
    height: 18px;
    background-size: 18px;
  }
}
@container mdStatusBox (inline-size < 12rem) {
  .sales-status__num {
    font-size: 2rem;
  }
  .sales-status__date {
    font-size: 0.9rem;
  }
}

/* ********* 팝업 레이어 ********* */
.popup-layer {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 9;
}
.window-popup {
  position: relative;
  inset: inherit;
}
.popup-layer__dim {
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.3);
}
.window-popup .popup-layer__dim {
  display: none;
}
.popup-layer__con {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(50% + 150px);
  transform: translate(-50%, -50%);
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  max-height: 90%;
  width: 70%;
}
.popup-layer.mini .popup-layer__con {
  width: 35rem;
}
.window-popup .popup-layer__con {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  max-height: none;
}
.popup-layer__con .content-area {
  overflow-y: scroll;
  padding: 1.5rem !important;
}
.popup-layer__con .content-area:has(.tab-area:first-child:last-child) {
  background-color: #f9f9f9;
}
.popup-layer__con .content-area .tab-area:first-child:last-child .tab-contents {
  background-color: var(--white);
}
/* .window-popup .popup-layer__con .content-area{
    overflow: hidden;
} */
.popup-layer__con .table {
  border-radius: 0.5rem;
  overflow: hidden;
}

.popup-layer__con.dcr-popup .content-area:has(.table) {
  max-height: inherit !important;
}

@media print {
  .print.popup-layer {
    position: absolute;
  }
  .print .popup-layer__dim {
    background-color: #fff;
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .print .popup-layer__con {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
  .print .popup-layer__con .content-area {
    overflow-y: auto;
    overflow-x: auto;
  }
  .print .option-area.bottom {
    display: none;
  }
  .print .content-area__tit::before,
  .print .content-area__tit--2::before {
    display: none;
  }
}

@media (max-width: 1280px) {
  .popup-layer__con {
    left: 50%;
    width: 90%;
  }
}
@media (max-width: 576px) {
  .popup-layer.mini .popup-layer__con {
    width: 90%;
  }
}

/* ********* 메뉴 검색 ********* */
.menu-search__popup1 {
  display: none;
}
.menu-search__popup2 {
  display: none;
}
.menu-search__wrap {
  position: relative;
}
.menu-search__result {
  position: absolute;
  top: 3rem;
  width: 100%;
  padding: 0.5rem 0;
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1.5rem hsla(0, 0%, 0%, 0.08);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}
.menu-search__result.show {
  max-height: 60dvh;
  opacity: 1;
  overflow-y: scroll;
}
.menu-search__result li {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}
.menu-search__result li:hover {
  background-color: #f1f1f1;
}
.menu-search__result li a {
  display: block;
}
.menu-search__result li.empty {
  text-align: center;
}
.menu-search__result li.empty:hover {
  background-color: var(--white);
}
.favorite-menu,
.recent-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, auto));
}
.favorite-menu li {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
}
.favorite-menu li::before {
  counter-increment: list-item;
  content: counter(list-item);
  font-size: 0.85rem;
  aspect-ratio: 1;
  width: 1.3rem;
  background: #e9e9e9;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.36rem;
}
.favorite-menu li a,
.recent-menu li a {
  display: block;
  padding: 0.4rem;
  font-size: 1rem;
}
.favorite-menu li a:hover,
.recent-menu li a:hover {
  text-decoration: underline;
}
@media (max-width: 1440px) {
  .favorite-menu,
  .recent-menu {
    grid-template-columns: repeat(auto-fill, minmax(25%, auto));
  }
}
@media (max-width: 768px) {
  .favorite-menu,
  .recent-menu {
    grid-template-columns: repeat(auto-fill, minmax(33%, auto));
  }
}
@media (max-width: 576px) {
  .favorite-menu,
  .recent-menu {
    grid-template-columns: repeat(auto-fill, minmax(50%, auto));
  }
}

/* ********* 로그인 ********* */
.login-container {
  position: relative;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url("../img/login_bg.jpg") no-repeat center / cover;
}

.login-container .copyright {
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  position: absolute;
  bottom: 1rem;
}
.login-container .copyright br {
  display: none;
}
.login-box {
  max-width: 490px;
  width: 100%;
  padding: 2.75rem 3rem;
  background-color: var(--white);
  border-radius: 3rem;
}
.login-box .title {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
}
.login-box .title .logo {
  text-align: right;
}
.login-box .title h3 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.login-box .title p {
  color: #333;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.24px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.login-box .title p span {
  color: var(--BYDblue);
}
.login-box .inputbox {
  margin-bottom: 1.5rem;
}
.login-box .inputbox .tit {
  font-weight: 400;
  color: #111;
}
.login-box .inputbox input {
  height: 3.125rem;
  line-height: 3.125rem;
}
.inputbox input[type="password"],
.inputbox .hide-pw input {
  padding-right: 3rem;
}
.inputbox input[type="password"] + .show-pw,
.inputbox .hide-pw input + .show-pw {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  text-indent: -9999px;
  display: block;
  width: 22px;
  height: 22px;
  background: url("../img/ic_show_pw.svg") no-repeat center;
  cursor: pointer;
}
.inputbox .hide-pw input + .show-pw {
  background-image: url("../img/ic_hide_pw.svg");
}
.login-box .forgot-pw {
  color: var(--BYDred, #d70c19);
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.21px;
}

@media (max-width: 576px) {
  .login-container .copyright br {
    display: block;
  }
  .login-box {
    max-width: 90%;
  }
}
@media (max-width: 425px) {
  .login-box {
    padding: 1.75rem 2rem;
    border-radius: 2rem;
  }
  .login-box .title .logo img {
    width: 80%;
  }
}

.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    Roboto,
    "Helvetica Neue",
    "Segoe UI",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    sans-serif;
}
.ui-datepicker {
  z-index: 10 !important;
  border: 0 !important;
  padding: 0 1rem;
  width: auto;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px hsla(0deg, 0%, 0%, 10%);
}
.ui-datepicker .ui-datepicker-header {
  padding: 0.8rem 0;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #ededed;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ui-datepicker .ui-datepicker-header::before,
.ui-datepicker .ui-datepicker-header::after {
  display: none;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  cursor: pointer;
}
.ui-datepicker .ui-icon {
  background-position: center;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
.ui-datepicker .ui-datepicker-prev span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg id='chevron-left'%3E%3Cpath id='Vector' d='M15 18L9 12L15 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
  position: static;
  margin: 0;
}
.ui-datepicker .ui-datepicker-next span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg id='chevron-right'%3E%3Cpath id='Vector' d='M9 18L15 12L9 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");
  position: static;
  margin: 0;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover {
  border: 0;
  background: #fff;
}
.ui-datepicker .ui-datepicker-prev {
  order: 1;
}
.ui-datepicker .ui-datepicker-next {
  order: 3;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0;
  line-height: normal;
  order: 2;
  display: flex;
  gap: 0.3rem;
}
.ui-datepicker .ui-datepicker-title select {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: auto;
}
.ui-datepicker th {
  color: #666;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.45px;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
  border: 0;
  background: #fff;
  color: #101010;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem;
}
.ui-datepicker td:hover .ui-state-default,
.ui-state-highlight,
.ui-widget-content .ui-state-highlight {
  border-radius: 7rem;
  background: #ebeef8;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-datepicker td:hover .ui-state-active {
  border-radius: 7rem;
  background: var(--BYDblue);
  color: #fff;
}

/* sms */
.sms-wrap {
  display: flex;
  gap: 0 3rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 1.5rem 0 1.5rem !important;
  overflow: auto !important;
  max-height: none !important;
}
.sms-content {
  background: url("../img/phone_bg.png") no-repeat center / contain;
  height: 40rem;
  aspect-ratio: 1 / 1.9;
  padding: 5.5rem 3.5rem 3.5rem;
}
.sms-content__con {
  margin: 1.5rem 0;
}
.sms-content__con .inputbox .con:has(textarea) {
  border: 1px solid #e1dfdd;
  border-radius: 0.25rem;
  flex-direction: column;
  overflow: hidden;
}
.sms-content__con .inputbox .con:has(textarea:focus) {
  border-color: #111;
}
.sms-content__con textarea {
  height: 10rem;
  border: 0;
  border-radius: 0;
}
.sms-content__con__notice {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 0 0.5rem 0.5rem;
}
.sms-content__btn .btn-wrap {
  justify-content: space-between;
}
.sms-content__btn .btn-wrap .button {
  width: calc(50% - 0.25rem);
  justify-content: center;
}
.sms-content__btn .submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  border-radius: 4rem;
}

.sms-option {
  flex: 2;
  padding-bottom: 1.5rem;
  min-width: 440px;
}
.sms-option .inputbox {
  margin-top: 2rem;
}
.sms-option .inputbox .con {
  flex-wrap: wrap;
}
.sms-option .sel-group {
  flex-wrap: nowrap;
}
.sms-option .filebox {
  flex-grow: 1;
}
.sms-option .inputbox .con:has(.table) {
  flex-direction: column;
  align-items: flex-start;
}
.sms-option__reserve {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}
.sms-option__reserve input {
  min-width: 9.375rem;
}

.sms-warning {
  width: 20rem;
  align-self: flex-start;
  background-color: #f9f9f9;
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 17.5rem;
  margin-bottom: 1.5rem;
}
.sms-warning__tit {
  font-size: 1.1rem;
  font-weight: 700;
}
.sms-warning ol {
  list-style: decimal;
  font-size: 0.9rem;
  padding-left: 1rem;
}
.sms-warning li {
  margin: 1rem 0;
}
.sms-warning ol ul {
  padding-left: 1rem;
}
.sms-warning ol ul li {
  list-style: disc;
  margin: 0.5rem 0;
}
.sms-warning ol ul li span {
  display: inline-block;
  vertical-align: middle;
  background-color: #e5e5e5;
  padding: 0.3rem 0.6rem;
  border-radius: 5rem;
  margin: 0 0.5rem 0.5rem 0;
}
.sms-warning li strong {
  color: var(--BYDblue);
  font-weight: 700;
}

.sms-content__archive {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, auto));
}
.sms-content__archive li a {
  display: block;
  border: 1px solid #e1dfdd;
  border-radius: 0.25rem;
}
.sms-content__archive li:hover a {
  border-color: #111;
}
.sms-content__archive__con {
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  height: 10rem;
  overflow-y: scroll;
}
.sms-content__archive__info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 0.5rem 0.75rem;
}

@media (max-width: 524px) {
  .sms-option {
    min-width: auto;
    width: 100%;
  }
  .sms-option__reserve {
    width: 100%;
  }
  .sms-option__reserve input {
    min-width: auto;
  }
  .sms-option__reserve input,
  .sms-option__reserve select {
    padding: 0 0.5rem !important;
    background-position: right 0.2rem center !important;
    background-size: 1.2rem !important;
  }
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}

.divw .content-area {
  padding: 1.5rem;
}
.divw .option-area.top {
  justify-content: center;
  padding: 1rem;
}
.divw h3.table_title {
  font-size: 16px;
  margin: 10px 0 4px;
  overflow: hidden;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}
.divw h3.table_title span:nth-child(1) {
  font-size: 16px;
  color: #818a9f;
  color: #737d96;
  padding: 0 12px;
  background: #eee;
  display: block;
}

.divw .table {
  border-top: solid 2px #1f2c44;
  border-left: solid 1px #333;
  /* width: 1145px;  */
  min-width: 640px;
  display: grid;
  grid-template-rows: 24px 18px 38px;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 16px;
  position: relative;
}
.divw .table .tr {
  display: inherit;
  /* width:1144px; */
}
.divw .thead:nth-child(1) span {
  padding: 2px 4px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}
.divw .thead:nth-child(1) {
  /* grid-template-columns: repeat(12, calc(1144px / 12)) auto; */
  grid-template-columns: repeat(12, calc(100% / 12)) auto;
}
.divw .thead:nth-child(2) {
  /* grid-template-columns: repeat(72, calc(1144px / 72)); */
  /*grid-template-columns: repeat(24, calc(100% / 24));*/
  grid-template-columns: repeat(48, calc(100% / 48));
  position: relative;
  font-size: 11px;
  border-top: solid 1px #c8cacd;
}
.divw .tbody {
  display: inherit;
  /* grid-template-columns: repeat(72, calc(1145px / 72)); */
  /*grid-template-columns: repeat(24, calc(100% / 24));*/
  grid-template-columns: repeat(48, calc(100% / 48));
}

.divw .table span {
  border-bottom: solid 1px rgba(0, 0, 0, 0.07);
  border-right: solid 1px rgba(0, 0, 0, 0.07);
}
.divw .thead span {
  color: #2a364d;
  background: #f1f5fa;
  border-color: rgba(42, 44, 46, 0.4);
}
.divw .tbody span {
  display: flex;
  align-items: center;
}
.divw .minute div span:last-child {
  display: none;
}
.divw .tbody > span > span {
  height: 38px;
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}

.divw .tbody > span > span span {
  padding: 1px 0;
}
.divw .tbody > span > span span:nth-of-type(1),
.divw .tbody > span > span span:nth-of-type(2) {
  font-size: 7.5px;
}
.divw .tbody span span {
  font-size: 12px;
  border: 0 !important;
  line-height: 100%;
}
.divw .tbody span:nth-of-type(2n + 2) {
  border-right: solid 1px rgba(42, 44, 46, 0.4);
}

.divw .thead:nth-child(1) span:last-of-type,
.divw .tbody span:last-of-type {
  border-right: solid 1px #333;
}
.divw .tr:last-of-type * {
  border-bottom: solid 1px #333;
}
.divw .minute div span {
  background: #dfe2e9;
  border: 0px;
  color: #31405b;
  border-bottom: solid 1px #333333;
  padding-bottom: 2px;
  font-size: 10px;
  text-align: left;
}
.divw .minute div {
  left: calc(100% / 48);
  position: absolute;
  /* width: 1160px; */
  width: 100%;
  border-bottom: 0px;
  display: grid;
  /* grid-template-columns: repeat(72, calc(1145px/72)); */
  /*grid-template-columns: repeat(24, calc(100% / 24));*/
  grid-template-columns: repeat(48, calc(100% / 48));
  font-size: 10px;
  text-align: center;
  line-height: 15px;
}
.divw .minute div span:first-child {
  left: calc(-100% / 48);
  position: absolute;
  letter-spacing: -1px;
  width: calc(100% / 48);
  text-align: left;
}
.divw .minute div span:last-child {
  right: calc(100% / 48);
  position: absolute;
  letter-spacing: -1px;
  border-right: solid 1px #333;
  width: calc(100% / 48);
  text-align: right;
  display: none;
}
.divw .minute div span:nth-last-child(2) {
  border-right: 1px solid #333;
}
.divw .calendar_top {
  position: relative;
}
.divw .calendar_top h1 {
  font-size: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divw .calendar_top h1 input {
  min-width: 14rem;
}
.divw .calendar_top p {
  color: #444;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}
.divw .calendar_top .list_button {
  margin-left: auto;
}
.divw .calendar_top span {
  font-size: 0px;
  width: 2rem;
  height: 2rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.8rem;
  background-color: #eee;
  border-radius: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}
.divw .calendar_top span:hover {
  background-color: #ddd;
}
.divw .calendar_top h1 span.prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M11.6667 14.1667L7.50002 10' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.50002 10L11.6667 5.83337' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.divw .calendar_top h1 span.next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M8.33333 14.1667L12.5 9.99999' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12.5 10L8.33333 5.83333' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.divw .complete/*완료*/ {
  background: #ddd;
  border-top: solid 1px rgb(95, 95, 95) !important;
  border-bottom: solid 1px rgb(95, 95, 95) !important;
}
.divw .complete.complete_f {
  border-left: solid 1px rgb(95, 95, 95) !important;
}
.divw .complete.complete_l {
  border-right: solid 1px rgb(95, 95, 95) !important;
}

.divw .reserve/*예약*/ {
  background: #d9e6f7;
  border-top: solid 1px rgba(17, 35, 79, 0.7) !important;
  border-bottom: solid 1px rgba(17, 35, 79, 0.7) !important;
}
.divw .reserve.reserve_f {
  border-left: solid 1px rgba(17, 35, 79, 0.7) !important;
}
.divw .reserve.reserve_l {
  border-right: solid 1px rgba(17, 35, 79, 0.7) !important;
}

.divw .other_dealer/*타지점 예약*/ {
  background: #ebd5d5;
  border-top: solid 1px rgba(79, 17, 17, 0.7) !important;
  border-bottom: solid 1px rgba(79, 17, 17, 0.7) !important;
}
.divw .other_dealer.other_dealer_f {
  border-left: solid 1px rgba(79, 17, 17, 0.7) !important;
}
.divw .other_dealer.other_dealer_l {
  border-right: solid 1px rgba(79, 17, 17, 0.7) !important;
}

.divw .other_reserve/*다른사람 예약*/ {
  background: #c8dcb2;
  border-top: solid 1px rgba(55, 79, 17, 0.7) !important;
  border-bottom: solid 1px rgba(55, 79, 17, 0.7) !important;
}
.divw .other_reserve.other_reserve_f {
  border-left: solid 1px rgba(55, 79, 17, 0.7) !important;
}
.divw .other_reserve.other_reserve_l {
  border-right: solid 1px rgba(55, 79, 17, 0.7) !important;
}

strong,
b {
  font-weight: bold;
}

.fs-label-wrap .invalid {
  border: none;
}
.fs-label-wrap .fs-label.invalid {
  border: 1px solid #e87472;
  background-color: #fff6f4;
  border-radius: 0.25rem;
}

/* 🐰  캠페인 관리 table*/
table.insertTable {
  font-size: 15px;
}
.insertTable {
  color: #333;
}
.insertTable thead {
  text-align: center;
}
.insertTable tr th {
  padding: 10px;
  border: 1px solid #e1dfdd;
  background-color: #f5f5f5;
  font-weight: 600;
}
.insertTable tr,
.insertTable td {
  border: 1px solid #e1dfdd;
}
.insertTable td {
  padding: 0px;
}
.insertTable tr td:first-child {
  text-align: center;
}
.insertTable td input#campaigncostofoccurrence {
  border: none;
}

u {
  text-decoration: underline;
}
i {
  font-style: italic;
}

div.cost {
  display: flex;
}

div.cost .checkbox {
  padding-left: 15px;
}
div.cost .checkbox label {
  display: flex;
  align-items: flex-start;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.225px;
  line-height: 1;
  color: #333;
  cursor: pointer;
}
div.cost .checkbox input {
  margin-left: 10px;
  position: relative;
  top: -4px;
}

/*
	2025-04-04 추가
*/
button {
  border: none;
}
html,
body {
  font-family: Pretendard;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 1024px) {
  html,
  body {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}
/*  팝업레이어 */
.popup-layer__con .content-area {
  padding: 1.5rem !important;
  max-width: 100%;
}

.popup-layer__con .content-area__tit {
  color: #141414;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 26px;
}

.option-area.bottom {
  border-top: 1px solid hsla(0, 0%, 0%, 0.08);
  padding: 0.5rem 1rem;
  flex-wrap: wrap;
}

.option-area .right {
  display: flex;
  gap: 0.75rem;
  flex-grow: 1;
  justify-content: flex-end;
}

/* 체크박스 */
.checkbox-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12%, auto));
  gap: 2rem;
}

@media (max-width: 1200px) {
  .popup-layer__con {
    left: 50%;
  }
  .checkbox-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, auto));
    gap: 2rem;
  }
}
@media (max-width: 820px) {
  .checkbox-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24%, auto));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .checkbox-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(31%, auto));
    gap: 2rem;
  }
}

.checkbox label {
  padding-left: 4px;
  cursor: pointer;
}

.etc {
  margin-top: 24px;
}
.etc .etc__tit {
  color: #141414;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.etc > input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #e1dfdd;
  background-color: #fff;
  color: #333;
  line-height: 120%;
  padding: 14px 12px;
}
.etc input::placeholder {
  color: #bbb;
}
/* 인풋 보더 컬러 */
input.blue {
  border: 1px solid var(--BYDblue) !important;
}

/* 필터 디자인 수정 2025-04-07 */
div.option-area:has(.filter-open) .inputbox-wrap {
  height: auto;
}

div.option-area.filter-open .right > .search-wrap {
  gap: 4.15rem;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: end;
}

.option-area.filter-open .inputbox-wrap {
  max-height: inherit;
}

div.option-area.filter-open .right > .search-wrap.three-rows {
  gap: 9.15rem;
}
div.option-area.filter-open .right > .search-wrap.four-rows {
  gap: 14.75rem;
}
/*div.option-area.filter-open .right > .search-wrap.five-rows {
  gap: 20.06rem;
}*/

.option-area.one-row .inputbox-wrap {
  grid-template-columns: repeat(auto-fill, minmax(15%, auto));
}

/* 필터버튼 active */
.more-filter-btn,
.accordion-btn {
  display: block;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 0.375rem;
  border: 1px solid #e1dfdd;
  background: url("../img/ic_more_filter.svg") no-repeat center;
  text-indent: -9999px;
  cursor: pointer;
  /*transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);*/
  transition: background 0.2s ease;
}
.more-filter-btn:hover,
.filter-open .more-filter-btn:hover,
.accordion-btn:hover {
  background-color: #f5f5f5;
}
.filter-open .more-filter-btn,
.acc-open .accordion-btn {
  background: url("../img/ic_more_filter_close_gray.svg") no-repeat center top 45%;
  /*border-color: var(--BYDblue);*/
  border-color: #e1dfdd;
  transition: background 0.2s ease;
}

.option-area .more-filter-btn.active,
.accordion-btn.active {
  background: url("../img/ic_more_filter_open_active.svg") no-repeat center;
  border-color: var(--BYDblue);
}

.option-area.filter-open .more-filter-btn.active,
.acc-open .accordion-btn.active {
  background: url("../img/ic_more_filter_active.svg") no-repeat center;
  border-color: var(--BYDblue);
}

/* BYD 할인 promotion, 고객재배정,리드인입 고객관리, 선적관리, 입항관리 sm-size검색필터 */
@media (min-width: 1281px) {
  .option-area.sm-size .inputbox-wrap {
    grid-template-columns: repeat(auto-fill, minmax(15%, auto));
  }
}

/* 입항관리 xs-size 검색필터 */
@media (min-width: 1281px) {
  .option-area.xs-size .inputbox-wrap {
    grid-template-columns: repeat(auto-fill, minmax(13%, auto));
  }
}

/* report-lead & contracts table */
.content-wrap {
  padding: 1rem 0;
}
.table-content__tit {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  font-weight: 500;
  color: #141414;
}

.content-wrap .tab-contents .table tr:has(th) {
  background-color: #3753b1;
}
.content-wrap .table th {
  border-right: 1px solid #eee;
}

.content-wrap .table tr.highlight {
  background-color: #e6e6e6;
}
.content-wrap .table tr.total {
  background-color: #d9d9d9;
  font-weight: 600;
}

/* 🐰 대시보드 레이아웃 */
@media (min-width: 1920px) {
  main:has(.main-dashboard-container) {
    overflow-y: hidden;
  }
}

.main-dashboard-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mdSelect {
  width: 65%;
}
.mdSelect .md-content__box {
  width: calc(100% - 4rem);
}

.contents-wrap {
  display: flex;
  gap: 2rem;
}
.dashboard-left {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dashboard-left__top {
  display: flex;
  gap: 1.25rem;
  height: 300px;
}
/* 판매현황 */
.mdStatus {
  width: 695px;
  flex: 1;
}
.dashboard-left__top .sales-status__wrap {
  gap: 0.875rem;
}
.dashboard-left__top .sales-status__wrap li {
  container: inherit;
  flex: auto;
  padding: 1.5rem;
}
.dashboard-left__top .sales-status__wrap li:nth-child(1),
.dashboard-left__top .sales-status__wrap li:nth-child(3) {
  width: 27%;
}
.dashboard-left__top .sales-status__wrap li:nth-child(2) {
  width: 46%;
}

.dashboard-left__top .sales-status__fluctuation__box {
  padding: 0;
}
.dashboard-left__top .sales-status__fluctuation__box.month {
  flex: auto;
}
.dashboard-left__top .sales-status__fluctuation__box.month:nth-child(1) {
  padding-right: 0.5rem;
}
.dashboard-left__top .sales-status__fluctuation__box.month:nth-child(2) {
  width: 50%;
  padding-left: 0.5rem;
}
/* 영업활동 현황 */
.mdGeneral {
  width: 274px;
}
.mdGeneral .numerical-list {
  gap: 1.5rem;
}
.numerical-list dt {
  color: #767676;
}
.numerical-list dd strong {
  font-size: 1.25rem;
}
.numerical-list li:nth-child(1),
.numerical-list li:nth-child(3) {
  position: relative;
}
.numerical-list li:nth-child(1)::after {
  content: "";
  position: absolute;
  border-right: 1px solid #ededed;
  right: -0.75rem;
  bottom: -90%;
  height: 6.75rem;
}
.numerical-list li:nth-child(3)::after {
  content: "";
  position: absolute;
  border-top: 1px solid #ededed;
  top: -0.75rem;
  right: -86%;
  width: 8.5rem;
}

/* 리드현황 */
.dashboard-left__bottom {
  height: 20.625rem; /*330px*/
}
.dashboard-left__bottom .md-content table th {
  height: 2.8125rem; /*45px*/
}
.dashboard-left__bottom .md-content table td {
  height: 2.8125rem;
}

/* 리마인더/공지사항 */
.dashboard-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.md-content__tit {
  padding: 2rem 2rem 0.875rem;
}
.md-content__con {
  padding: 0 2rem 2rem;
}

/* 리마인더 */
.dashboard-right .mdReminder {
  height: 18.75rem; /*300px*/
}

.mdReminder table {
  border-collapse: collapse; /* 핵심 */
  border: 1px solid #ededed;
}

.mdReminder table th,
.mdReminder table td {
  border: 1px solid #ededed;
}

.md-content.mdReminder table th:first-child,
.md-content.mdReminder table td:first-child,
.md-content.mdReminder table th:last-child,
.md-content.mdReminder table td:last-child {
  border-right: 1px solid #ededed;
  border-left: 1px solid #ededed;
}

.mdReminder .table tr th {
  width: 64px;
  padding: 1rem;
  text-align: center !important;
}
.mdReminder .table td {
  padding: 1rem;
}
.md-content.mdReminder .table tr:last-child td {
  background-color: #fff;
}

.md-content.mdReminder table tr:has(td):hover {
  background-color: #fff;
}
.md-content.mdReminder table tr:has(td):hover td:first-child {
  background-color: #fff;
}

/* 공지사항 */
.dashboard-right .mdNotice {
  height: 20.625rem;
}

.mdNotice .md-content__tit {
  display: flex;
}
.mdNotice__moreBtn {
  width: 68px;
  height: 26px;
  margin-top: 0;
  background-color: #f1f1f1;
  border-radius: 6.375rem;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  background-image: url("../img/ico_arrow_btn.svg");
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: right;
}
.mdNotice__moreBtn:hover {
  background-color: #c9c9c9;
}

.mdNotice .md-content__tit::after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 4rem);
  background-color: #ededed;
  position: absolute;
  top: 100%;
  left: 2rem;
}
.mdNotice .md-content__con {
  padding-top: 1rem;
}

.mdNotice .md-content__con li a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: inherit;
}
.mdNotice .md-content__con li a p {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mdNotice .md-content__con li a span {
  flex: inherit;
  font-size: 0.875rem;
  color: #888;
  font-weight: 400;
}

@media (max-width: 1700px) {
  .contents-wrap {
    flex-wrap: wrap;
  }
  .dashboard-left,
  .dashboard-right {
    width: 100%;
  }

  .contents-wrap {
    display: flex;
    flex-direction: column;
  }

  /* 컬럼 구조 해제 */
  .dashboard-left,
  .dashboard-right,
  .dashboard-left__bottom {
    display: contents;
  }

  /* 순서 지정 */

  .mdStatus {
    order: 1;
  } /* 판매현황 */
  .mdGeneral {
    order: 2;
  } /* 영업활동현황 */
  .mdReminder {
    order: 3;
  } /* 리마인더 */
  .mdSales {
    order: 4;
  } /* 리드현황 */
  .mdNotice {
    order: 5;
  } /* 공지사항 */
}
/* end🎈 */

@media (max-width: 1400px) {
  .mdSelect {
    width: 100%;
  }
  .mdSelect .md-content__box {
    flex-wrap: nowrap;
  }
  .dashboard-left__top {
    height: auto;
  }
  .mdReminder .table tr th {
    padding: 1rem 0.5rem;
  }
  .mdReminder .table td {
    padding: 0.75rem;
  }
}
@media (max-width: 1280px) {
  .mdSelect .md-content__box {
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .dashboard-left__top {
    flex-direction: column;
  }
  .mdStatus,
  .mdGeneral {
    width: 100%;
  }
  .mdGeneral .numerical-list {
    justify-content: space-between;
  }
  .numerical-list li {
    flex: inherit;
  }
  .numerical-list li:nth-child(1)::after,
  .numerical-list li:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .mdSelect__selbox select {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .mdSelect {
    flex-direction: column;
    gap: 1rem;
  }
  .mdSelect .md-content__box {
    width: 100%;
  }
  .mdSelect__selbox {
    padding: 1.2rem 1.5rem;
  }
  .refresh-btn {
    height: 4rem;
  }

  .sales-status__wrap {
    flex-direction: column;
  }
  .dashboard-left__top .sales-status__wrap li:nth-child(1),
  .dashboard-left__top .sales-status__wrap li:nth-child(2),
  .dashboard-left__top .sales-status__wrap li:nth-child(3) {
    width: 100%;
  }
  /*.sales-status__fluctuation__wrap {
    width: auto;
  }*/
  .dashboard-left__top .sales-status__fluctuation__box.month:nth-child(2) {
    width: auto;
  }
  .table-sc {
    overflow-x: scroll;
  }
}

@media (max-width: 430px) {
  .mdSelect__selbox select {
    font-size: 12.5px;
  }
  .md-content__tit {
    padding: 1rem 1.5rem;
  }

  .md-content__con {
    padding: 0 1.5rem 1.5rem;
  }
  .dashboard-left__top .sales-status__fluctuation__box.month:nth-child(1),
  .dashboard-left__top .sales-status__fluctuation__box.month:nth-child(2) {
    width: 50%;
  }
  .numerical-list li {
    flex: 1 0 calc(50% - 2rem);
  }
  .mdNotice__moreBtn {
    height: 2rem;
  }
}
