@charset "UTF-8";
html {
  overflow: hidden;
  font-size: 16px;
  font-family: "Pretendard", sans-serif;
  height: 100vh;
}

body {
  margin: 0;
  background: #f5f6fc;
  color: #40495e;
  font-family: "Pretendard";
  display: flex;
  overflow: hidden;
  height: 100vh;
}

.line {
  width: 100%;
  height: 1px;
  background: #eaebf7;
}

.scroll-wrap {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-gutter: stable;
  padding-bottom: 5rem;
}
.scroll-wrap::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
.scroll-wrap::-webkit-scrollbar-track {
  background: #fff;
}
.scroll-wrap::-webkit-scrollbar-thumb {
  background-color: #e1e3f2;
  border-radius: 0.5rem;
  /* ← 반경 유지, 찌그러짐 없음 */
  /* 트랙 색으로 안쪽을 파내서 ‘여백처럼’ 보이게 */
  box-shadow: inset 6px 0 0 #fff, inset -2px 0 0 #fff, inset 0 2px 0 #fff, inset 0 -2px 0 #fff;
  /* bottom gutter 4px */
}
.scroll-wrap:horizontal::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #e1e3f2;
  box-shadow: inset 4px 0 0 #fff, inset -4px 0 0 #fff, inset 4px 0 0 transparent, inset 0 4px 0 #fff, inset 0 -2px 0 #fff;
  /* 아래 2px */
}
.scroll-wrap:hover::-webkit-scrollbar-thumb {
  background-color: #eaebf7;
}
.scroll-wrap::-webkit-scrollbar-corner {
  background: #eaebf7;
}

/* Sidebar */
.sidebar {
  width: 16rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem 0.75rem;
  transition: width 0.25s ease;
}
.sidebar.collapsed {
  width: 3.25rem;
  padding: 1rem 0 1rem 0.75rem;
}
.sidebar.collapsed .nav ul li .nav-btn {
  padding: 0.625rem;
}
.sidebar.collapsed .nav ul li .sub_nav {
  padding: 0.625rem;
}
.sidebar.collapsed .label {
  display: none;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.sidebar .brand .hamburger {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.sidebar .brand .hamburger span {
  width: 18px;
  height: 2px;
  background: #2b3343;
  position: relative;
}
.sidebar .brand .hamburger span::before, .sidebar .brand .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #2b3343;
}
.sidebar .brand .hamburger span::before {
  top: -6px;
}
.sidebar .brand .hamburger span::after {
  top: 6px;
}
.sidebar .nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar .nav ul li .nav-btn {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: #40495e;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  font-weight: 600;
  font-size: 0.875rem;
  gap: 0.5rem;
}
.sidebar .nav ul li .nav-btn.active {
  background: #338bff14;
  color: #2a73ea;
}
.sidebar .nav ul li .nav-btn.active .icon {
  color: #2a73ea;
}
.sidebar .nav ul li .nav-btn.active .label {
  color: #2a73ea;
}
.sidebar .nav ul li .nav-btn:hover {
  background: #1d36aa0d;
  color: #40495e;
}
.sidebar .nav ul li .nav-btn:hover .icon {
  color: #757b98;
}
.sidebar .nav ul li .nav-btn:hover .label {
  color: #40495e;
}
.sidebar .nav ul li .nav-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 1.25rem;
  color: #757b98;
}
.sidebar .nav ul li .nav-btn .label {
  font-size: 0.875rem;
  color: #40495e;
  font-weight: 600;
}
.sidebar .nav ul li .sub_nav {
  display: flex;
  height: 2.5rem;
  padding: 0.625rem 1.25rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  align-self: stretch;
  cursor: pointer;
}
.sidebar .nav ul li .sub_nav.active {
  background: #338bff14;
  color: #2a73ea;
}
.sidebar .nav ul li .sub_nav.active .label {
  color: #2a73ea;
  font-weight: 600;
}
.sidebar .nav ul li .sub_nav:hover {
  background: #1d36aa0d;
  color: #40495e;
}
.sidebar .nav ul li .sub_nav:hover .icon {
  color: #d2d6e8;
}
.sidebar .nav ul li .sub_nav:hover .label {
  color: #757b98;
}
.sidebar .nav ul li .sub_nav .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #757b98;
}
.sidebar .nav ul li .sub_nav .label {
  font-size: 0.875rem;
  color: #757b98;
  font-weight: 400;
}

/* App */
.app {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* Topbar */
  /* Main layout */
}
.app .topbar {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1rem 1.75rem;
}
.app .topbar h2 {
  color: #40495e;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 140%;
  display: flex;
  align-items: center;
}
.app .topbar h2 .prev-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.app .topbar h2 .prev-icon i {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.app .topbar .right-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app .topbar .right-tools .actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app .topbar .right-tools .actions i {
  font-size: 1rem;
}
.app .main {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 0;
  padding: 0 1rem 1rem;
  height: calc(100vh - 5.5rem);
}
.app .main.reverse {
  flex-direction: row-reverse;
}
.app .main.reverse .drawer {
  flex: 20rem 0 0;
  margin-left: 0;
  margin-right: 0.5rem;
}
.app .main.reverse .drawer2 {
  width: 40%;
  min-width: 24.375rem;
  flex: 24.375rem 0 0;
  margin-left: 0;
  margin-right: 0.5rem;
}
.app .main.reverse .drawer2.is-compact .organization .organization-item .item-info .image {
  width: 3rem;
  height: 3rem;
  position: relative;
}
.app .main.reverse .drawer2.is-compact .organization .organization-item .item-info .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.app .main.reverse .drawer2.is-compact .position-btn {
  display: none;
}
.app .main.has-drawer {
  grid-template-columns: 1fr 360px;
  gap: 0;
}
.app .main .panel {
  background: #fff;
  border-radius: 1rem;
}
.app .main .panel.table-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.app .main .panel.table-card .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  height: 4rem;
}
.app .main .panel.table-card .panel-header .list-range {
  height: 2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e1e3f2;
  font-size: 0.875rem;
  line-height: 160%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #40495e;
  cursor: pointer;
}
.app .main .panel.video {
  display: flex;
  width: 100%;
}

.drawer {
  position: relative;
  width: auto;
  flex: 0 0 0;
  /* 닫힘: 폭 0 */
  overflow: hidden;
  pointer-events: none;
  margin-left: 0;
  transition: flex-basis 0.28s ease, margin-left 0.28s ease;
  /* ✅ 폭만 전환 */
}
.drawer.visible {
  flex: 0 0 20rem;
  transform: translateX(0);
  pointer-events: auto;
  margin-left: 0.75rem;
}
.drawer.visible .drawer-sheet {
  transform: translateX(0);
  opacity: 1;
}
.drawer.closing .drawer-sheet {
  transform: translateX(24px);
  opacity: 0;
}
.drawer .drawer-sheet {
  position: absolute;
  inset: 0;
  transform: translateX(24px);
  /* 시작: 오른쪽에서 */
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.22s ease;
  contain: layout paint;
}
.drawer .drawer-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}
.drawer h3 {
  font-size: 18px;
  height: 4.5rem;
  padding: 1rem 1rem 1rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a202f;
  justify-content: space-between;
}
.drawer h3.detail {
  justify-content: start;
  gap: 0.5rem;
}
.drawer h3.detail img {
  width: 1.5rem;
}
.drawer .cont-wrap {
  padding: 0 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-gutter: stable;
  height: calc(100% - 4.5rem);
}
.drawer .cont-wrap .item {
  padding-left: 0.25rem;
}
.drawer .cont-wrap .item label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.drawer .cont-wrap .item .text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: #40495e;
}
.drawer .cont-wrap .user-id {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
}
.drawer .cont-wrap .user-id img {
  width: 1.25rem;
}
.drawer .form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 0 0 1.25rem;
  scrollbar-gutter: stable;
  height: calc(100% - 4.5rem);
}
.drawer .form .btn-address-add {
  color: #757b98;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.drawer .form .btn-address-add a {
  display: flex;
  align-items: center;
  height: 2rem;
  gap: 0.25rem;
}
.drawer .form .btn-address-add a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
.drawer .form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 0.75rem;
  align-items: center;
}
.drawer .bottom-btn {
  width: 100%;
  padding: 0 1rem 0 1.25rem;
  height: 3.5rem;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eaebf7;
  background: #fff;
}
.drawer .bottom-btn button.btn-icon {
  color: #d2d6e8 !important;
}
.drawer .bottom-btn button.btn-icon:hover {
  color: #757b98;
}
.drawer .bottom-btn button:last-of-type {
  color: #328aff;
}
.drawer .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
  border-top: none;
  width: auto;
  padding: 0 0 0 0.25rem;
  height: 2rem;
  gap: 1rem;
  padding-left: 0.25rem;
}
.drawer .btn-wrap2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 드래그 핸들(드로어의 왼쪽 경계) */
.drawer-resizer {
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  width: 12px;
  /* 클릭 여유 */
  cursor: col-resize;
  z-index: 2;
  background: linear-gradient(to right, transparent 0, transparent 4px, rgba(0, 0, 0, 0.06) 4px, rgba(0, 0, 0, 0.06) 8px, transparent 8px);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.drawer-resizer.resizer--right {
  left: auto;
  right: -4px;
  /* 필요하면 조정 */
  cursor: ew-resize;
}

.drawer.visible:hover .drawer-resizer {
  opacity: 1;
}

.drawer2 {
  position: relative;
  width: auto;
  flex: 0 0 0;
  /* 닫힘: 폭 0 */
  overflow: hidden;
  margin-left: 0;
  transition: flex-basis 0.28s ease, margin-left 0.28s ease;
  /* ✅ 폭만 전환 */
}
.drawer2.visible {
  flex: 0 0 24.375rem;
  transform: translateX(0);
  pointer-events: auto;
  margin-left: 0.75rem;
}
.drawer2.visible .drawer-sheet {
  transform: translateX(0);
  opacity: 1;
}
.drawer2.closing .drawer-sheet {
  transform: translateX(24px);
  opacity: 0;
}
.drawer2 .drawer-sheet {
  position: absolute;
  inset: 0;
  transform: translateX(24px);
  /* 시작: 오른쪽에서 */
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.22s ease;
  contain: layout paint;
}
.drawer2 .drawer-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
}
.drawer2 h3 {
  font-size: 18px;
  height: 4.5rem;
  padding: 1rem 1rem 1rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a202f;
}
.drawer2 h3.detail {
  justify-content: start;
  gap: 0.5rem;
}
.drawer2 h3.detail img {
  width: 1.5rem;
}
.drawer2 .cont-wrap {
  padding: 0 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scrollbar-gutter: stable;
  height: calc(100% - 4.5rem);
}
.drawer2 .cont-wrap .item {
  padding-left: 0.25rem;
}
.drawer2 .cont-wrap .item label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.drawer2 .cont-wrap .item .text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: #40495e;
}
.drawer2 .cont-wrap .user-id {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
}
.drawer2 .cont-wrap .user-id img {
  width: 1.25rem;
}
.drawer2 .form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 0 0 1.25rem;
  scrollbar-gutter: stable;
  height: calc(100% - 4.5rem);
}
.drawer2 .form .btn-address-add {
  color: #757b98;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.drawer2 .form .btn-address-add a {
  display: flex;
  align-items: center;
  height: 2rem;
  gap: 0.25rem;
}
.drawer2 .form .btn-address-add a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
}
.drawer2 .form .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 0.75rem;
  align-items: center;
}
.drawer2 .bottom-btn {
  width: 100%;
  padding: 0 1rem 0 1.25rem;
  height: 3.5rem;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eaebf7;
  background: #fff;
}
.drawer2 .bottom-btn button:last-of-type {
  color: #328aff;
}
.drawer2 .bottom-btn button.btn-icon-32 {
  color: #757b98;
}
.drawer2 .bottom-btn .arrow-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer2 .bottom-btn .move-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer2 .bottom-btn .order-input {
  width: 9rem;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem;
  padding: 0 0.75rem;
  height: 2rem;
  font-size: 0.75rem;
  color: #757b98;
  font-weight: 400;
}
.drawer2 .bottom-btn .order-input input {
  width: 3.5em;
  flex: 1 0 0;
  border: none;
  outline: none;
  font-size: 14px;
  color: #40495e;
  background: transparent;
  -moz-appearance: textfield;
  /* Firefox */
}
.drawer2 .bottom-btn .order-input input::-webkit-outer-spin-button,
.drawer2 .bottom-btn .order-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.drawer2 .bottom-btn .order-input span {
  margin-left: 4px;
  white-space: nowrap;
  color: #757b98;
  font-weight: 500;
}
.drawer2 .btn-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0.25rem;
}
.drawer2 .btn-wrap2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.organization {
  height: calc(100% - 4.5rem);
  display: flex;
  flex-direction: column;
}
.organization .organization-select {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem 0 1.5rem;
  height: 2.5rem;
  color: #757b98;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 160%;
}
.organization .organization-select .form-group2 {
  margin-left: auto;
}
.organization .scroll-wrap {
  padding: 0.75rem 0 5rem 1rem;
  gap: 0;
}
.organization .scroll-wrap .organization-item {
  padding: 0.5rem 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.organization .scroll-wrap .organization-item .item-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 0;
}
.organization .scroll-wrap .organization-item .item-info .position-btn {
  display: flex;
  flex-direction: column;
}
.organization .scroll-wrap .organization-item .item-info .image {
  width: 4rem;
  height: 4rem;
  background: #d9d9d9;
  position: relative;
}
.organization .scroll-wrap .organization-item .item-info .image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.organization .scroll-wrap .organization-item .item-info .title {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 140%;
  color: #40495e;
  gap: 0.25rem;
}
.organization .scroll-wrap .organization-item .item-info .title span {
  width: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
  display: flex;
  align-items: center;
  justify-content: center;
}
.organization .scroll-wrap .organization-item .item-info .title .name {
  width: 5.375rem;
}
.organization .scroll-wrap .organization-item .time .time-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 버튼 양쪽 끝 */
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem;
  background: #fff;
  width: 7.5rem;
  height: 32px;
  font-size: 14px;
  color: #444;
  box-sizing: border-box;
  padding: 0;
}
.organization .scroll-wrap .organization-item .time .time-input.video {
  border: none;
  background: #f5f6fc;
  justify-content: center;
}
.organization .scroll-wrap .organization-item .time .time-input.active {
  border-color: #40495e;
}
.organization .scroll-wrap .organization-item .time .time-input .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 100%;
  color: #d2d6e8;
}
.organization .scroll-wrap .organization-item .time .time-input .btn-icon:hover {
  color: #757b98;
}
.organization .scroll-wrap .organization-item .time .time-input .value-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0 auto;
  /* 가운데 정렬 */
  gap: 2px;
  height: 100%;
}
.organization .scroll-wrap .organization-item .time .time-input .value-wrap .value {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
  width: auto;
  /* JS에서 style.width로 조정 */
  padding: 0;
  margin: 0;
  line-height: 1;
  flex: 0 0 auto;
}
.organization .scroll-wrap .organization-item .time .time-input .value-wrap .value::-webkit-outer-spin-button, .organization .scroll-wrap .organization-item .time .time-input .value-wrap .value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.organization .scroll-wrap .organization-item .time .time-input .value-wrap .unit {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}
.organization .scroll-wrap .organization-item .time .time-input .btn:hover {
  color: #3882f3;
}
body.is-resizing {
  user-select: none;
  cursor: col-resize !important;
}

.toggle-wrap {
  display: flex;
  align-items: center;
  padding-left: 0.25rem;
  height: 2.5rem;
}
.toggle-wrap label {
  color: #40495e;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
}
.toggle-wrap .toggle {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.store-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.store-info .admin-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.store-info .admin-wrap .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}
.store-info .admin-wrap .operation-player {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.store-info .admin-wrap .operation-player h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  color: #40495e;
  padding-left: 0.25rem;
}
.store-info .admin-wrap .operation-player .num {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #1a202f;
  padding-left: 0.25rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox::before {
  /* backdrop */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.9);
}
.lightbox .lightbox-content {
  position: relative;
  width: min(1200px, max(280px, 100vw - 400px));
  border-radius: 12px;
  overflow: hidden;
}
.lightbox .lightbox-content .lightbox-img {
  display: block;
  width: 100%;
  /* ✅ 부모 폭 채우기 */
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
.lightbox .lightbox-content .lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: #111;
  cursor: pointer;
}
.lightbox .lightbox-content .lightbox-close:hover {
  background: #111;
}

.lightbox.open {
  display: flex;
}

.player-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 3.25rem;
  display: block;
  color: #40495e;
  width: 100%;
}
.player-wrap .player-name {
  line-height: 3.25rem;
  display: inline;
  align-items: center;
  color: #1a202f;
  gap: 0.375rem;
}
.player-wrap .player-name i {
  width: 1rem;
  color: #757b98;
  margin-right: 0.375rem;
}
.player-wrap .desc {
  line-height: 3.25rem;
  display: inline;
  color: #949ab8;
  font-weight: 400;
}

.device {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.device span {
  width: 0.625rem;
  height: 0.625rem;
  background: #d2d6e8;
  border-radius: 50%;
}
.device span.success {
  background: #22b688;
}

.context-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -24px;
  background: #fff;
  border: 1px solid #f5f6fc;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.14s ease;
}
.context-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.context-menu ul li {
  cursor: pointer;
}
.context-menu ul li:hover {
  background: #f5f6fc;
}
.context-menu ul li.del {
  color: #D14;
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.player-info .player-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.player-info .player-info-wrap .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}
.player-info .player-info-wrap .device-info {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.player-info .player-info-wrap .device-info h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  color: #40495e;
  padding-left: 0.25rem;
}
.player-info .player-info-wrap .device-info .image-box {
  width: 10rem;
  height: 7.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.player-info .player-info-wrap .device-info .image-box img {
  width: 100%;
}
.player-info .player-info-wrap .device-info .desc {
  color: #757b98;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
}
.player-info .player-info-wrap .device-info .detail-list ul {
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.player-info .player-info-wrap .device-info .detail-list ul li {
  display: flex;
  align-items: center;
  height: 22px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #40495e;
  line-height: 160%;
}
.player-info .player-info-wrap .device-info .detail-list ul li span {
  width: 4.25rem;
  border-right: 1px solid #eaebf7;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.player-info .player-info-wrap .device-info .gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.player-info .player-info-wrap .device-info .gallery-wrap label {
  padding-left: 0.25rem;
  font-size: 0.75rem;
  color: #757b98;
  font-weight: 500;
  line-height: 160%;
}
.player-info .player-info-wrap .device-info .gallery-wrap .gallery {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.player-info .player-info-wrap .device-info .gallery-wrap .gallery div {
  aspect-ratio: 1/1;
}
.player-info .player-info-wrap .device-info .gallery-wrap .gallery div:hover {
  cursor: pointer;
}
.player-info .player-info-wrap .device-info .gallery-wrap .gallery div img {
  width: 100%;
  height: 100%;
}

.list-check {
  display: flex;
  align-items: center;
  height: 2rem;
}
.list-check .text {
  margin: 0 0.75rem;
  padding: 0 0.75rem;
  border-left: 1px solid #eaebf7;
  color: #757b98;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 160%;
}

.player-device-card {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  gap: 0.75rem;
  border-radius: 0.5rem;
  background: #f5f6fc;
  width: 100%;
}
.player-device-card .device-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: #eaebf7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 2.5rem;
}
.player-device-card .device-icon .on {
  width: 0.375rem;
  height: 0.375rem;
  background: #22b688;
  border: 1px solid #eaebf7;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  border-radius: 50%;
}
.player-device-card .device-icon img {
  width: 1.25rem;
}
.player-device-card .device-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.player-device-card .device-text .name {
  color: #40495e;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-device-card .device-text .meta {
  color: #949ab8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 160%;
}
.player-device-card .device-text .desc {
  color: #949ab8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 160%;
}

.device-screen {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.device-screen label {
  padding-left: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.device-screen .device-screen-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.device-screen .device-screen-list ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.device-screen .device-screen-list ul li {
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem;
  flex: 1 0 0;
  padding: 1.5rem 0.5rem 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.device-screen .device-screen-list ul li:hover {
  border-color: #40495e;
  cursor: pointer;
}
.device-screen .device-screen-list ul li.on {
  border-color: #40495e;
}
.device-screen .device-screen-list ul li.on .text {
  color: #40495e;
}
.device-screen .device-screen-list ul li .icon {
  width: 2rem;
  height: 2rem;
}
.device-screen .device-screen-list ul li .text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.device-screen .device-screen-list .device-screen-size {
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
}
.device-screen .device-screen-list .device-screen-size .input {
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.device-screen .device-screen-list .device-screen-size .input:first-of-type {
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem 0 0 0.5rem;
}
.device-screen .device-screen-list .device-screen-size .input:last-of-type {
  border: 1px solid #e1e3f2;
  border-radius: 0 0.5rem 0.5rem 0;
  border-left: none;
}
.device-screen .device-screen-list .device-screen-size .input input {
  flex: 1 0 0;
  min-width: 0;
  border: none;
  font-size: 0.875rem;
  color: #40495e;
  line-height: 160%;
  font-weight: 600;
}
.device-screen .device-screen-list .device-screen-size .input input:focus {
  border: none;
  outline: none;
}
.device-screen .device-screen-list .device-screen-size .input:focus-within {
  border: 1px solid #328aff;
  background: #fff;
}

.device-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.device-field .label {
  height: 2rem;
  padding-left: 0.25rem;
  color: #757b98;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.device-field .label span {
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
}
.device-field .label span i {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-field .label.label2 {
  justify-content: start;
  gap: 0.25rem;
}
.device-field .label.label2 img {
  width: 1rem;
}

.device-sch-list {
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem;
}
.device-sch-list .item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}
.device-sch-list .item:not(:last-of-type) {
  border-bottom: 1px solid #f5f6fc;
}
.device-sch-list .item .device-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.device-sch-list .item .device-text .name {
  color: #40495e;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.device-sch-list .item .device-text .meta {
  color: #949ab8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.device-sch-list .item .device-text .meta img {
  width: 1rem;
}
.device-sch-list .item .device-text .desc {
  color: #949ab8;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 160%;
}
.device-sch-list .item .device-connect {
  position: relative;
  width: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-sch-list .item .device-connect .text-btn {
  color: #328aff;
  padding: 0;
}
.device-sch-list .item .device-connect .text-btn-d {
  color: #da3755;
  padding: 0;
}

.video-left {
  min-width: 13.5rem;
  width: 20%;
  display: flex;
  flex-direction: column;
}
.video-left .video-folder-header {
  padding: 1.25rem 1rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.video-left .video-folder-header .text-btn-32 {
  justify-content: end;
}
.video-left .video-tree {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0.5rem 1rem;
  height: calc(100% - 6.5rem);
  flex: 1;
}
.video-left .video-tree .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2rem;
  flex: 0 0 2rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #757b98;
  font-weight: 400;
}
.video-left .video-tree .item.on {
  color: #40495e;
  font-weight: 600;
}
.video-left .video-tree .item .name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-left .video-tree .scroll-wrap {
  gap: 0;
}

.video-content {
  display: flex;
  flex-direction: column;
  width: calc(100% - 13.5rem);
}
.video-content .image-uploader {
  padding: 1rem 1rem 0.5rem 1rem;
  width: 100%;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease, margin 260ms ease, border-width 260ms ease;
  will-change: max-height, opacity;
  /* 자연 상태에서 제한 없음 */
  max-height: none;
}
.video-content .image-uploader.is-collapsed {
  max-height: 0 !important;
  opacity: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-width: 0 !important;
  pointer-events: none;
}
.video-content .image-upload-list {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}
.video-content .image-upload-list .scroll-wrap {
  gap: 0;
  width: 100%;
}

.video-filter-wrap {
  padding: 1.25rem 1rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.video-filter-wrap .title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 6px 0 8px 0;
}
.video-filter-wrap .title-row .h-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.video-filter-wrap .title-row .h-left .title {
  font-weight: 500;
  font-size: 1.125rem;
  color: #1a202f;
}
.video-filter-wrap .title-row .h-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}
.filter-chips .text-btn {
  margin-left: auto;
}
.filter-chips.filter-select {
  gap: 1rem;
}
.filter-chips.filter-select .select-text {
  padding-right: 0.75rem;
  color: #757b98;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 160%;
}
.filter-chips.filter-select .form-group {
  margin-left: auto;
}
.filter-chips.filter-select .text-btn {
  margin-left: initial;
}

/* Media grid */
.media-grid {
  padding: 0.75rem 1rem 2rem 1rem;
  display: grid;
  row-gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  column-gap: 0.125rem;
}
.media-grid .card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 15rem;
  min-width: 10rem;
}
.media-grid .card .thumb {
  position: relative;
  overflow: hidden;
  /* 3px 선이 영역 밖으로 새지 않도록 */
  aspect-ratio: 1/1;
  width: 100%;
  cursor: pointer;
}
.media-grid .card .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  /* 기본 투명 */
  opacity: 0;
  transition: opacity 0.18s ease, background 0.18s ease;
  pointer-events: none;
}
.media-grid .card .thumb::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 0.25rem;
  background: #3882F3;
  /* 필요 시 브랜드 컬러 */
  opacity: 0;
  transition: opacity 0.12s ease;
}
.media-grid .card .thumb:hover::before, .media-grid .card .thumb:focus-within::before {
  opacity: 1;
  /* 은은한 어둡기 + 아래로 갈수록 조금 더 진함 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}
.media-grid .card .thumb:has(.image-select input[type=checkbox]:checked)::after {
  opacity: 1;
}
.media-grid .card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-grid .card .card-meta {
  height: 3.75rem;
}
.media-grid .card .card-meta .name {
  font-size: 0.875rem;
  color: #40495e;
  font-weight: 400;
  line-height: 140%;
}
.media-grid .card .card-meta .sub {
  font-size: 0.75rem;
  color: #949ab8;
  font-weight: 400;
  line-height: 160%;
}

.upload-tracker {
  position: fixed;
  right: 1rem;
  bottom: 0;
  width: 20rem;
  background: #fff;
  color: #40495e;
  border-radius: 0.5rem 0.5rem 0 0;
  box-shadow: 0 6px 12px 0 rgba(32, 33, 53, 0.3);
  overflow: hidden;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.upload-tracker .ut-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem 0.5rem 1.5rem;
  height: 3.75rem;
}
.upload-tracker .ut-header .ut-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 160%;
  color: #1a202f;
}
.upload-tracker .ut-header .ut-tools {
  display: flex;
  gap: 0.5rem;
}
.upload-tracker .ut-globalbar {
  height: 0.25rem;
  background: #e1e3f2;
  overflow: hidden;
}
.upload-tracker .ut-globalbar .ut-globalbar__bar {
  height: 100%;
  width: 0%;
  background: #328aff;
  transition: width 0.2s ease;
}
.upload-tracker .ut-list {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 22rem;
}
.upload-tracker .ut-list .scroll-wrap {
  padding: 0.5rem 0;
  gap: 0;
  padding-bottom: 0;
}
.upload-tracker .ut-list .scroll-wrap .ut-item {
  display: flex;
  height: 3.5rem;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__icon {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__meta {
  min-width: 0;
  flex: 1;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__meta .ut-item__name {
  font-size: 0.875rem;
  color: #40495e;
  line-height: 140%;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__meta .ut-item__sub {
  color: #757b98;
  font-size: 0.75rem;
  display: flex;
  font-weight: 400;
  align-items: center;
  line-height: 160%;
  white-space: pre;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__meta .ut-item__sub .cancel {
  color: #da3755;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__right .ut-item__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
.upload-tracker .ut-list .scroll-wrap .ut-item .ut-item__right .ut-item__actions.success .btn-icon {
  color: #22b688;
}

.icon-btn-progress {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  color: #949ab8;
  /* 아이콘 색 */
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  cursor: pointer;
}
.icon-btn-progress > i {
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  /* 진행 링 위로 */
}
.icon-btn-progress .ring {
  position: absolute;
  inset: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.icon-btn-progress .ring .track {
  fill: none;
  stroke: #e1e3f2;
  /* 트랙 색 */
  stroke-width: 4;
  /* 두께: 얇게 보이게 2px */
}
.icon-btn-progress .ring .bar {
  fill: none;
  stroke: #328aff;
  /* 진행 색 */
  stroke-width: 4;
  /* 필요 시 3~4로 조정 */
  stroke-linecap: round;
  stroke-dasharray: 113.1;
  stroke-dashoffset: calc(113.1 - 113.1 * var(--value) / 100);
  transition: stroke-dashoffset 0.6s linear;
}

.image-select {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.image-select input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}
.image-select label {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
.image-select label::before,
.image-select label::after,
.image-select .iconoir-check {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.image-select label::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: background 0.12s ease, outline-color 0.12s ease;
}
.image-select .iconoir-check {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.image-select input[type=checkbox]:checked + label::before {
  background: #328aff;
  outline-offset: 0;
}
.image-select input[type=checkbox]:checked + label .iconoir-check {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.02);
}

.login {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.login .logo {
  width: 12.5rem;
  height: 6.5rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login h3 {
  color: #757b98;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
.login .login-form {
  border-radius: 1rem;
  background: #fff;
  width: 20rem;
}
.login .login-form .form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0.75rem 1.5rem;
}
.login .login-form .form-wrap .form-group label {
  height: 2.5rem;
}
.login .login-form .btn-wrap {
  padding: 1.5rem 1.25rem;
}
.login .login-form .btn-wrap .btn {
  width: 100%;
}
.login .login-link-wrap {
  display: flex;
  align-items: center;
}
.login .login-link-wrap .text-btn-32 {
  position: relative;
}
.login .login-link-wrap .text-btn-32:first-of-type {
  margin-right: 2rem;
}
.login .login-link-wrap .text-btn-32:first-of-type::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1rem;
  background: #e1e3f2;
  right: -1rem;
}
.login .copyright {
  color: #757b98;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  margin-top: 3.75rem;
}

/*모달 카드*/
.media-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.media-modal.is-open {
  display: block;
}
.media-modal .media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(85, 85, 85, 0.9);
}
.media-modal .media-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100vw - 48px);
  height: 32.5rem;
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 24px;
  align-items: stretch;
}
.media-modal .media-modal__panel .media-modal__close {
  position: absolute;
  top: -5.25rem;
  right: 0;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  border: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.media-modal .media-modal__panel .media-modal__close:focus {
  outline: none;
  /* 모든 브라우저에서 확실히 제거 */
}
.media-modal .media-modal__panel .media-modal__meta {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
  overflow: auto;
  max-height: calc(100vh - 80px);
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__title {
  font-size: 0.875rem;
  padding: 1.5rem 1.25rem 0.75rem 1.5rem;
  color: #40495e;
  font-weight: 600;
  line-height: 160%;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont {
  padding: 0.75rem 1.25rem 2.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-modal__actions {
  display: flex;
  gap: 16px;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-modal__actions .text-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-meta {
  display: grid;
  gap: 10px;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-meta > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-meta > div dt {
  color: #6b7280;
  width: 4.25rem;
  font-size: 0.75rem;
  color: #757b98;
  font-weight: 500;
  line-height: 160%;
  padding-left: 0.25rem;
  position: relative;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-meta > div dt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.75rem;
  background: #eaebf7;
}
.media-modal .media-modal__panel .media-modal__meta .media-modal__cont .media-meta > div dd {
  line-height: 160%;
  color: #40495e;
  font-size: 0.875rem;
}
.media-modal .media-modal__panel .media-modal__viewer {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background: #000;
  border-radius: 0.75rem;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame {
  width: 100%;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  /* 시킹 영역 */
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame:hover .viewer-play, .media-modal .media-modal__panel .media-modal__viewer .viewer-frame:hover .viewer-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-img, .media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-image {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-img, .media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 98;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1.5px solid #eaebf7;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  opacity: 0;
  transform: translateZ(0);
  font-size: 1.5rem;
  z-index: 99;
  cursor: pointer;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .viewer-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 999;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .controls-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .controls-row {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .time {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar {
  inline-size: 100%;
  block-size: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  block-size: 2.25rem;
  /* 12 + 16 = 28px */
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar:focus {
  outline: none;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar:focus-visible .seekbar__track {
  box-shadow: 0 0 0 2px #7aa8ff;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__track {
  position: relative;
  inline-size: 100%;
  block-size: 3px;
  background: rgba(255, 255, 255, 0.3);
  margin-inline: 0.375rem;
  border-radius: 999px;
  overflow: visible;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__buffer,
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__fill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  block-size: 100%;
  border-radius: inherit;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__buffer {
  background: rgba(255, 255, 255, 0.28);
  inline-size: 0%;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__fill {
  background: #fff;
  inline-size: 0%;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__thumb {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0%;
  translate: -50% -50%;
  inline-size: 0.75rem;
  block-size: 0.75rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__thumb::after {
  content: "";
  position: absolute;
  inset: -8px;
  /* 사방 +8px 확장 */
  border-radius: 50%;
  /* 원형 감각 유지(원하시면 50%도 가능) */
  background: transparent;
  /* 기본 보이지 않음 */
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.16s ease, box-shadow 0.16s ease;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .seekbar__thumb:hover::after {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  border-top: none;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .ctl {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
}
.media-modal .media-modal__panel .media-modal__viewer .viewer-frame .ctl:focus-visible {
  outline: 2px solid #7aa8ff;
  outline-offset: 2px;
}

.media-admin {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.media-admin .admin-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.media-admin .admin-wrap .set-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.media-admin .admin-wrap .set-wrap .text {
  color: #757b98;
  padding-left: 0.25rem;
}
.media-admin .admin-wrap .set-wrap .toggle-wrap label {
  color: #40495e;
  font-size: 0.875rem;
}
.media-admin .admin-wrap .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}

.access-search {
  padding: 0 1rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.access-search .search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0.25rem;
  height: 2rem;
}
.access-search .search-result .search-result-text {
  color: #949ab8;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
}
.access-search .search-result .search-result-text span {
  color: #40495e;
}

.access-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 4rem;
}
.access-header .access-update {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.access-header .access-update .dropdown-wrap {
  width: 11rem;
  min-width: 11rem;
}
.access-header .access-update .text-btn-32 {
  color: #328aff;
}
.access-header.access-header--default {
  padding: 0 1rem;
}
.access-header.access-header--select {
  padding: 0 1rem;
}

/* 공통(둘 다 공유) */
.data-table .group .group-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 0 1.5rem;
  cursor: pointer;
  font-weight: 600;
  height: 3.25rem;
  border-bottom: 1px solid #f5f6fc;
}
.data-table .group .group-header .group-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #1a202f;
  font-weight: 400;
}
.data-table .group .group-header .group-left .iconoir-nav-arrow-down,
.data-table .group .group-header .group-left .iconoir-nav-arrow-right {
  transition: transform 0.2s ease;
  margin-right: 8px;
}
.data-table .group .group-header .group-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.data-table .group .group-header .group-right .group-count {
  font-size: 0.875rem;
  font-weight: 400;
  color: #757b98;
  line-height: 160%;
}
.data-table .group .group-header .btn-icon[disabled] {
  pointer-events: none;
}
.data-table .group .group-body {
  overflow: hidden;
  transition: max-height 0.24s ease;
}
.data-table .group .group-body .table-row {
  padding: 0 1.5rem;
}
.data-table .group .group-body .table-row:hover {
  background: initial;
}
.data-table highlight {
  color: #328aff;
  font-weight: 600;
}

.data-table .group.is-open .group-header .iconoir-nav-arrow-right {
  transform: rotate(90deg);
}

/* --- 변형: search (체크박스 항상 보임) --- */
.data-table--search [role=check] {
  display: block;
}

.notice-box {
  height: 100%;
}
.notice-box .notice-wrap {
  height: 100%;
  overflow: hidden;
  margin-top: 0 !important;
}
.notice-box .notice-wrap .notice-list {
  height: calc(100% - 6rem);
  overflow: hidden;
}
.notice-box .notice-wrap .notice-list ul.item:hover {
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
}
.notice-box .notice-wrap .notice-list ul.item li.del {
  position: relative;
}
.notice-box .notice-wrap .notice-list ul.item li.del span {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-box .notice-wrap .notice-list ul.item li.del span:hover {
  background: #fff0f0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.notice-box .notice-wrap .notice-list ul.item li.del span img {
  width: 1.2rem !important;
  margin-left: 0 !important;
}
.notice-box .notice-wrap .notice-write {
  height: 100%;
}
.notice-box .notice-wrap .notice-write .title {
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 1rem;
}
.notice-box .notice-wrap .notice-write .title input {
  border: none;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  margin-left: 1rem;
  width: calc(100% - 11.5rem);
}
.notice-box .notice-wrap .notice-write .title input:focus {
  outline: none;
}
.notice-box .notice-wrap .notice-write .title input::placeholder {
  font-size: 1.25rem;
}
.notice-box .notice-wrap .notice-write .title span.title-text {
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.notice-box .notice-wrap .notice-write .title span.title-text i {
  color: #757b98;
}
.notice-box .notice-wrap .notice-write .title .btn-wrap {
  width: 9.5rem;
}
.notice-box .notice-wrap .notice-write .title .btn-wrap span {
  padding: 0.5rem 0.7rem;
  font-weight: 500;
  font-size: 1rem;
}
.notice-box .notice-wrap .notice-write .title .btn-wrap span.btn-confirm {
  color: #cdcdcd;
}
.notice-box .notice-wrap .notice-write .title .btn-wrap span.btn-confirm.on {
  color: #EC1D24;
}
.notice-box .notice-wrap .notice-write .title .view-btn-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.75rem;
}
.notice-box .notice-wrap .notice-write .title .view-btn-wrap .text-btn {
  width: 5.375rem;
  justify-content: end;
}
.notice-box .notice-wrap .notice-write .scroll-wrap {
  height: calc(100% - 4.5rem);
}
.notice-box .notice-wrap .notice-write .notice-write-wrap {
  height: 100%;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top {
  padding: 0.5rem 1rem 2.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul.upload-wrap {
  align-items: start;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul.upload-wrap .upload-write {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: baseline;
  gap: 0.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li {
  font-size: 0.875rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.25rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li.table-title {
  color: #757b98;
  font-size: 0.875rem;
  width: 5rem;
  font-weight: 500;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li.notice-write-title {
  width: 100%;
  padding-left: 0.75rem;
  height: 2.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li.notice-write-title input {
  width: 100%;
  border: none;
  color: #40495e;
  font-size: 1rem;
  outline: none;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li.notice-write-title input::placeholder {
  color: #949ab8;
  font-weight: 400;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .toggle {
  display: flex;
  align-items: center;
  position: relative;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .period {
  position: relative;
  padding-left: 0.75rem;
  margin-left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .period:before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 0.75rem;
  background: #eaebf7;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .store-text {
  color: #757b98;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .store-text span {
  color: #328aff;
  font-weight: 600;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .context-menu {
  width: 17.5rem;
  height: 22.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  pointer-events: all;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .context-menu .filter-search {
  padding: 1rem 1rem 0.75rem 1rem;
  flex: 0 0 auto;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .context-menu .list-wrap {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .context-menu .list-wrap::-webkit-scrollbar {
  width: 0 !important;
  display: none;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul li .context-menu .btn-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop {
  font-size: 0.875rem;
  font-weight: 500;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop .select-shop-list ul {
  display: flex;
  align-items: center;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop .select-shop-list ul li {
  padding: 0 0.5rem;
  font-weight: 400;
  color: #363636;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop .select-shop-list ul li span {
  color: #858585;
  margin-left: 5px;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop span {
  margin-left: 1rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .select-shop span img {
  width: 1.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file {
  width: 100%;
  height: auto;
  flex-direction: column;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file .file-box {
  width: 100%;
  display: flex;
  align-items: center;
  height: 2.5rem;
  color: #40495e;
  font-size: 0.875rem;
  font-weight: 400;
  gap: 0.25rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file .file-box img {
  width: 0.875rem;
  margin-right: 0.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file .file-box span.icon-del {
  margin-left: 1rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file .file-box span.icon-del a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .notice-view-top > ul .upload-file .file-box span.icon-del a img {
  width: 1rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .text-wrap {
  border-top: 1px solid #eaebf7;
  padding: 0 1rem 1rem 3.5rem;
  height: calc(100% - 22rem);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 160%;
  color: #40495e;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .text-wrap .text {
  padding: 2rem 0 2.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .text-wrap textarea {
  resize: none;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .text-wrap textarea:focus {
  outline: none;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .edit-wrap {
  padding: 0 1rem 1rem 3.5rem;
}
.notice-box .notice-wrap .notice-write .notice-write-wrap .edit-wrap .edit {
  min-height: 25rem;
}

/*달력*/
.field-date-range {
  position: relative;
}

.select-month {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 5px;
}
.select-month.is-open {
  display: block;
}
.select-month .calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}
.select-month .calendar .month {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 300;
  padding: 1.5rem 1rem 0.75rem 1.5rem;
  gap: 0.5rem;
}
.select-month .calendar .month .month-btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.select-month .calendar .month .year {
  font-weight: 600;
}
.select-month .calendar .month .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 40px;
  transition-duration: 0.2s;
  position: relative;
}
.select-month .calendar .month .nav:hover {
  background: #eee;
}
.select-month .calendar .days {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  color: #757b98;
  font-weight: 400;
  font-size: 0.875rem;
}
.select-month .calendar .days span {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-month .calendar .days span.sun {
  color: #f85a60;
}
.select-month .calendar .dates {
  width: 100%;
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* ✅ 이렇게 수정 */
  row-gap: 0.5rem;
  column-gap: calc((100% - 14rem) / 6);
  /* (선택) 7칸 균등 간격 계산 */
}
.select-month .calendar .dates span {
  cursor: pointer;
  outline: 0;
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  color: #40495e;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50px;
  transition-duration: 0.2s;
}
.select-month .calendar .dates span.today {
  border: 1px solid #40495e;
}
.select-month .calendar .dates span.before {
  color: #a8a8a8;
}
.select-month .calendar .dates span.start, .select-month .calendar .dates span.end {
  background: #328aff;
  color: #fff;
}
.select-month .calendar .dates span.between {
  background: #338bff14;
}

.repeat-btn-wrap {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.repeat-btn-wrap ul {
  display: flex;
  align-items: center;
  border: 1px solid #e1e3f2;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  height: 2rem;
}
.repeat-btn-wrap ul li {
  position: relative;
  padding: 0 0.75rem;
  color: #949ab8;
  font-size: 0.875rem;
  font-weight: 400;
  height: 100%;
  line-height: 160%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.repeat-btn-wrap ul li.on {
  color: #40495e;
  font-weight: 600;
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.channel-info .channel-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.channel-info .channel-info-wrap .info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
}
.channel-info .channel-info-wrap .info-wrap .detail-list ul {
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.channel-info .channel-info-wrap .info-wrap .detail-list ul li {
  display: flex;
  align-items: center;
  height: 22px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #40495e;
  line-height: 160%;
}
.channel-info .channel-info-wrap .info-wrap .detail-list ul li span {
  width: 4.25rem;
  border-right: 1px solid #eaebf7;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.channel-info .channel-info-wrap .device-info {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.channel-info .channel-info-wrap .device-info h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  color: #40495e;
  padding-left: 0.25rem;
}
.channel-info .channel-info-wrap .device-info .info-wrap {
  border-bottom: none;
  padding-bottom: 0;
}
.channel-info .channel-info-wrap .operation-player {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.channel-info .channel-info-wrap .operation-player h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 160%;
  color: #40495e;
  padding-left: 0.25rem;
}
.channel-info .channel-info-wrap .operation-player .num {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 140%;
  color: #1a202f;
  padding-left: 0.25rem;
}

.channel-category {
  width: 3.5rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 160%;
  font-size: 0.75rem;
  border-radius: 0.25rem;
}
.channel-category.type-orchid {
  border: 1px solid #E476C714;
  background: #E476C714;
  color: #D365B6;
}
.channel-category.type-orange {
  border: 1px solid #FD915E1A;
  background: #FD915E1A;
  color: #F28450;
}
.channel-category.type-yellow {
  border: 1px solid #EEBF5D1C;
  background: #EEBF5D1C;
  color: #D2A23E;
}
.channel-category.type-green {
  border: 1px solid #51AC9014;
  background: #51AC9014;
  color: #3D9C7D;
}
.channel-category.type-blue {
  border: 1px solid #688EE214;
  background: #688EE214;
  color: #577FD6;
}

.channel-add .option {
  display: flex;
  flex-direction: column;
}
.channel-add .option .check-option {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #40495e;
  line-height: 1;
  /* ✅ 선택 상태일 때: 파란 체크 표시 */
}
.channel-add .option .check-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
}
.channel-add .option .check-option .check-option__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  opacity: 0;
  transform: scale(0.9);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.channel-add .option .check-option .check-option__icon i {
  font-size: 1.25rem;
  line-height: 1;
}
.channel-add .option .check-option .check-option__label {
  user-select: none;
  transition: color 0.15s ease;
}
.channel-add .option .check-option input:checked + .check-option__icon {
  color: #2f71ff;
  opacity: 1;
  transform: scale(1);
}
.channel-add .option .check-option.disabled,
.channel-add .option .check-option input:disabled + .check-option__icon,
.channel-add .option .check-option input:disabled ~ .check-option__label {
  color: #c0c4cc !important;
  cursor: not-allowed;
  color: #d2d6e8;
  pointer-events: none;
}

.detail-list ul {
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.detail-list ul li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: #40495e;
  line-height: 160%;
}
.detail-list ul li span {
  width: 4.25rem;
  border-right: 1px solid #eaebf7;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 160%;
  color: #757b98;
}
.detail-list ul li p {
  width: calc(100% - 4.25rem);
  flex: 1 1 4.25rem;
}
.detail-list ul li .user-id {
  width: calc(100% - 4.25rem);
}
.detail-list ul li .icon-user {
  background-repeat: no-repeat;
}

/*# sourceMappingURL=style.css.map */
