:root {
  --white: #FFFFFF;
  --black: #000000;
  --gray87: #878787;
  --graye7: #E7E7E7;
  --grayf8: #F8F8FA;
  --gray5f: #5F6368;
  --grayd3: #D3D3D3;
  --gray01: #010101;
  --gray7a: #7A7A7A;
  --grayd9: #D9D9D9;
  --graye6: #E6E6E6;
  --grayd3: #D3D3D3;
  --gray1d: #1D1B20;
  --grayc9: #C9C9C9;
  --grayf5: #F5F5F5;
  --grayee: #EEEEEE;
  --grayb7: #B7B7B7;
  --gray9c: #9C9C9C;
  --graye0: #E0E0E0;
  --grayb7: #B7B7B7;
  --gray9f: #9F9F9F;
  --graycd: #CDCDCD;
  --graycf: #CFCFCF;
  --gray6c: #6C6C6C;
  --graya8: #A8A8A8;
  --grayf1: #F1F1F1;
  --graye1: #E1E1E1;
  --gray96: #969696;
  --grayc0: #C0C0C0;
  --grayd6: #D6D6D6;
  --graye4: #E4E4E4;
  --gray5f: #5F6368;
  --graya9: #A9A9A9;
  --grayaf: #AFAFAF;
  --gray94: #949494;
  --gray46: #464646;
  --gray5f: #5F6368;
  --grayed: #EDEDED;
  --grayd0: #D0D0D0;
  --graye2: #E2E2E2;
  --graycc: #CCCCCC;
  --graye2: #E2E2E2;
  --grayf0: #F0F0F0;
  --gray33: #333333;
  --gray32: #323B4A;
  --blue14: #142D46;
  --blue16: #166CCA;
  --blueae: #AED5FF;
  --bluede: #DEEEFF;
  --blue04: #045071;
  --blue007: #007AFF;
  --blue005: #0051A7;
  --blue002: #00254E;
  --blue096: #0963C2;
  --blue097: #82b9f1;
  --blue098: #098AC2;
  --blueef: #EFF7FF;
  --bluecc: #CCEDFF;
  --bluee3: #E3FDFF;
  --blue1e: #1e90ff;
  --blue01: #0186FF;
  --blued0: #D0DDEE;
  --bluee0: #E0F9FF;
  --blue1d: #1D4064;
  --green11: #11781B;
  --green4f: #4F8A55;
  --greenc9: #C9ECCD;
  --green00: #00A711;
  --greend1: #D1F5D5;
  --green2f: #2FBD96;
  --green77: #777200;
  --greenf0: #F0FFE3;
  --redee3: #EE3B27;
  --redf4: #F4D0CE;
  --redffd: #FFD0D0;
  --redf0: #F00000;
  --redff0: #FF0052;
  --rede3: #E30C4D;
  --redee2: #EE276F;
  --redffe: #FFEDE8;
  --redff3: #FF329B;
  --redffd: #FFD0D0;
  --yellowfff: #FFFFF8;
  --yellowffe: #FFEB9D;
  --yellowffd: #FFD338;
  --yellowffc: #FFCA00;
  --yellowf3: #F3E2A0;
  --yellowfe: #FEFFDD;
  --yellowff8: #FF8E05;
  --yellowff9: #ff9002;
  --pinkfe: #FEEEFF;
}

/* 스타일 가이드 */
body {
  font-size: 1.2rem;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .mo-scroll {
    overflow-x: auto;
  }
}

/* [dev] 환경설정 > 품질등록관리 > 세로 스크롤 문제 */
body[class="guality"] {
  overflow: visible;
}

em {
  font-style: italic;
}

.style {
  padding: 1rem;
}

.style>h2:not(header h2) {
  font-size: 2rem;
  margin: 8rem 0 2rem;
  padding: 0 1rem;
  height: 4rem;
  border-bottom: 1px solid var(--black);
}

.style>h2:first-child {
  margin-top: 1rem;
}

/* 헤더 */
.header {
  position: relative;
  display: grid;
  grid-template-columns: 24rem auto auto;
  padding: 2rem 1.9rem 1.2rem;
  width: 100%;
  height: 7.8rem;
  background: var(--white);
  border-bottom: .4rem solid transparent;
  border-image: linear-gradient(90deg, var(--redff3) 0%, var(--yellowff8) 100%);
  border-image-slice: 1;
}

@media (max-width: 1024px){
  .header {
    grid-template-columns: 8.3rem auto auto;
  }
}

@media (max-width: 480px) {
  .header {
    grid-template-columns: auto auto;
    margin-bottom: 3rem;
    padding: 1rem 1rem .5rem;
    height: 5.8rem;
    border-bottom: .2rem solid transparent;
  }
}

.header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: -120%;
  animation: fixed 1s .5s both;
  z-index: 20;
}

@keyframes fixed {
  0% {
    top: -120%;
  }

  100% {
    top: 0;
  }
}

.header>div:first-child {
  align-self: center;
}

@media (max-width: 480px) {
  .header>div:first-child {
    order: 1;
    align-self: end;
  }
}

.header .logo,
.login-header .logo {
  display: flex;
  align-items: center;
}

.header .logo a:nth-child(1) {
  width: 8.3rem;
  height: 2.4rem;
  background: url(../images/h1_logo.svg) no-repeat;
}


.header .logo a:nth-child(2) {
  position: relative;
  margin-left: 1.6rem;
  width: 6.9rem;
  height: 2.4rem;
  background: url(../images/logo_SPIM.svg) no-repeat center;
}

@media (max-width: 1024px){

  .header .logo a:nth-child(2),
  .header .h2-type4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .header .h2-type4 {
    display: none;
  }
}

.header .logo a:nth-child(2)::before {
  position: absolute;
  left: -.7rem;
  top: 0;
  content: '';
  width: 1.5px;
  height: 100%;
  background: var(--black);
}

.header .logo a:nth-child(1):hover,
.login-header.no2 .logo a:nth-child(1):hover {
  filter: brightness(1.5) contrast(1.2);
}


@media (max-width: 480px) {
  .header .logo a:not(:last-child) {
    display: none;
  }
}

.mo-logo {
  display: none;
  width: 2.3rem;
  height: 2.5rem;
  background: url(../images/ico_SSG.svg) no-repeat left top / 2.3rem auto;
}

@media (max-width: 480px) {
  .mo-logo {
    display: inline-block;
  }
}

.h2-type4 {
  color: var(--gray87);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
}

.header .h2-type4 {
  margin-top: .5rem;
}

.header nav {
  justify-self: start;
  align-self: center;
  margin-left: 20rem;
}

@media (max-width: 1700px) {
  .header nav {
    margin-left: 10rem;
  }
}

@media (max-width: 1280px) {
  .header nav {
    margin-left: 5rem;
  }
}

@media (max-width: 480px) {
  .header nav {
    order: 3;
    grid-column: 1/-1;
    position: absolute;
    top: 5.8rem;
    margin-left: 0;
    width: 100%;
  }
}

.gnb {
  display: flex;
  align-items: center;
  gap: 8rem;
}

@media (max-width: 1536px) {
  .gnb {
    gap: 3rem;
  }
}

@media (max-width: 1280px) {
  .gnb {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .gnb {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .gnb {
    justify-content: space-around;

  }
}

.gnb button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 .8rem;
  height: 3rem;
  font-size: 1.6rem;
  font-weight: 350;
  z-index: 0;
}

@media (max-width: 1300px) {
  .gnb button {
    font-size: 1.4rem;
    padding: 0 .4rem;
  }

  .header nav {
    margin-left: 2rem;
  }

}
@media (max-width: 1050px) {
  .gnb button {
    font-size: 1.3rem;
       }
}

@media (max-width: 720px) {
  .header nav {
    margin-left: 0rem;
  }
}

@media (max-width: 480px) {
  .gnb button {
    padding: 0;
    font-size: 1.3rem;
  }
}

.gnb button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 100%;
  height: 100%;
  border-radius: .5rem .5rem 0 0;
  border: 1.5px solid transparent;
  border-bottom: 1.5px solid var(--white);
  background-image: linear-gradient(var(--white), var(--white)), linear-gradient(to bottom, var(--redff3) 0%, var(--yellowff9) 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.18);
  z-index: -10;
  opacity: 0;
  transition: .4s;
}

.gnb button::after {
  position: absolute;
  bottom: 0;
  content: '';
  width: 100%;
  height: .2rem;
  background: var(--gray1d);
  opacity: 0;
}

.gnb button:hover::before,
.gnb button.active::before {
  opacity: 1;
}

@media (max-width: 480px) {
  .gnb button:hover::before,
  .gnb button.active::before {
    opacity: 0;
  }

  .gnb button:hover::after,
  .gnb button.active::after {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .header .mo-hide {
    display: none
  }
}

.header .btn-group {
  display: flex;
  justify-content: end;
  align-items: center;
}


@media (max-width: 1024px){
  .header .btn-group {
    justify-self: end;
    gap: .5rem;
  }
}

@media (max-width: 480px) {
  .header .btn-group {
    order: 2;
    align-self: end;
  }
}

.header .ico-user {
  order: 2;
  width: 12rem;
}

@media (max-width: 1024px){
  .header .ico-user {
    width: 3.1rem;
  }

  .header .ico-user::before {
    width: 3.1rem;
    height: 3.1rem;
    background: url(../images/ico_user_large.svg) no-repeat center;
  }

  .header .ico-user .none {
    display: none;
  }
}


.header .btn.small {
  order: 3;
}

@media (max-width: 1280px) {
  .header .btn.small {
    width: 9rem;
  }
}

@media (max-width: 1024px){
  .header .btn.small {
    display: none;
  }
}

.btn-logout {
  display: none;
  order: 4;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--grayd9);
  border-radius: 0.5rem;
  background: url(../images/btn_logout.svg) no-repeat center;
}

@media (max-width: 1024px){
  .btn-logout {
    display: block;
  }
}

.btn-logout:hover {
  background: url(../images/btn_logout.svg) var(--grayf8) no-repeat center;
}

.btn-setting {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--grayd9);
  border-radius: 0.5rem;
  background: url(../images/btn_setting.svg) no-repeat center;
}

.header .btn-setting {
  order: 5;
  margin-left: 1.1rem;
}

@media (max-width: 1024px){
  .header .btn-setting {
    margin-left: 0;
  }
}

.btn-setting:hover {
  background: url(../images/btn_setting.svg) var(--grayf8) no-repeat center;
}

.header .btn-manual {
  order: 1;
  padding-right: 2rem;
  font-size: 1.2rem;
  color: var(--gray5f);
  text-decoration: underline;
  text-underline-offset: .2rem;
}

@media (max-width: 1280px) {
  .header .btn-manual {
    position: absolute;
    right: 1.9rem;
    top: .5rem;
    padding-right: 0;
  }
}

@media (max-width: 1024px){
  .header .btn-manual {
    right: 2rem;
  }
}

@media (max-width: 480px) {
  .header .btn-manual {
    top: 0;
    right: 1rem;
  }
}

.server {
  position: absolute;
  left: 20rem;
  top: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 2rem;
  font-size: 1.5rem;
  color: var(--white);
}

.login-header.no2 .server {
  left: 18rem;
  top: 1.4rem;
}

.server.dev {
  background: var(--black);
}

.server.stg {
  background: var(--redff0);
}

.server.local {
  background: var(--yellowff8);
}

@media (max-width: 1280px) {
  .server {
    left: 20rem;
  }
}

@media (max-width: 1024px){
  .server {
    left: 3rem;
    top: 5.4rem;
  }
}

/* 버튼 */
.btn {
  width: 10rem;
  height: 3.4rem;
  border-radius: .5rem;
  background: var(--blue096);
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: .042rem;
}

.btn.blue005 {
  width: 12rem;
  background: var(--blue005);
}

.btn.blue096 {
  width: 10rem;
  background: var(--blue096);
}

.btn.blue096.VCR {
  padding: 0 2rem;
  width: initial;
}

.btn.red {
  background: var(--redee3);
}

.btn.green {
  background: var(--green00);
}

.btn.blk {
  width: 8.5rem;
  background: var(--black);
}

.btn.blk:hover {
  background-image: linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2));
}

.btn-medium {
  padding: 0 2rem;
  height: 2.8rem;
  border-radius: .5rem;
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: 0.042rem;
}


@media (max-width: 720px) {
	.btn-medium {
	   padding: 0 2rem;
	}
}


.btn-medium.blue098 {
  background: var(--blue098);
}

.btn-medium.blue096 {
  background: var(--blue096);
}

.btn-medium.blk {
  background: var(--black);
}

.btn.small {
  height: 2.5rem;
  background: var(--blue096);
}

.btn.small.blue098 {
  background: var(--blue098);
}


.btn.btnsel{
 background: var(--blue097) !important;
 height: 2.5rem;
 cursor: default;
 border:1px solid var(--blue097);
 color: #fff;
}

.VOD-request .btn.small.blue098 {
  position: absolute;
  right: 1rem;
  top: 5.1rem;
  padding: 0 2rem;
  width: unset;
  font-size: 1.2rem;
}

.btn:hover,
.btn-medium:hover,
.btn.small:hover,
.btn-L:hover {
  background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3));
}

.btn.btnsel:hover{
	 background-image:none;
 }

.btn-white {
  padding: 0 2rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--grayb7);
  color: var(--gray1d);
  font-size: 1.4rem;
}

.btn-white.font {
  font-size: 1.2rem;
}

.btn-white.small {
  padding: 0 1.5rem;
  height: 2rem;
  font-size: 1.2rem;
}

.btn-white.large,
.btn-white.cancel {
  padding: 0 2.5rem;
  height: 2.8rem;
}

.btn-white.large.font {
  margin-right: .8rem;
  padding: 0 1rem;
  font-size: 1.2rem;
}

.btn-white:hover {
  background: var(--grayed);
}

button:disabled {
  background: var(--grayd3) !important;
  color: var(--gray96);
  border: 1px solid var(--grayb7);
  cursor: default;
}

/* [dev] 환경설정 > disabled 버튼 밀림 현상 */
.preferences button:disabled {
  margin: -1px;
}

.btn-today {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 3.2rem;
  gap: 1.8rem;
  border: 1px solid var(--graye0);
  border-radius: .5rem;
}

.btn-today::before {
  content: '';
  width: 1.2rem;
  height: 1.4rem;
  background: url(../images/ico_today.svg) no-repeat left center/ 1.2rem 1.4rem;
}

.btn-round {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 1rem;
  height: 2.4rem;
  background: var(--white);
  border: 1px solid var(--blue007);
  border-radius: 12rem;
}

.btn-round:not(.btn-round.info) {
  width: 9rem;
}

.btn-round::before {
  content: '';
  width: 2rem;
  height: 2rem;
}

.btn-round.download::before {
  background: url(../images/ico_download.svg) no-repeat;
}

.btn-round.print::before {
  background: url(../images/ico_print.svg) no-repeat;
}

.btn-round.info::before {
  width: .8rem;
  height: .8rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

.btn-folding-length,
.btn-folding-width {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.036rem;
  text-align: start;
}

.btn-folding-length {
  padding: 3.2rem 0 1rem;
  width: 2.7rem;
  background: var(--black) url(../images/ico_arrow_right_circle.svg) no-repeat center top .7rem;
  border-radius: 0 .5rem .5rem 0;
  writing-mode: vertical-lr;
  text-orientation: upright;
}

.btn-folding-width {
  padding: 0 1.2rem 0 3.2rem;
  height: 2.5rem;
  background: var(--black) url(../images/ico_arrow_left_circle.svg) no-repeat left .9rem center;
  border-radius: 0 .5rem 0 0;
}

/* 뱃지 */
.badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 .4rem;
  height: 1.8rem;
  border-radius: .4rem;
  color: var(--white);
  font-size: 1.1rem !important;
}

.badge.blue {
  background: var(--blue007);
}

.badge.green1 {
  background: var(--green11);
}

.badge.green2 {
  background: var(--green00);
}

.badge.green3 {
  background: #2FBD96;
}

.badge.red {
  background: var(--redee3);
}

.badge.yellow {
  padding: 0 .5rem;
  color: var(--black);
  background: var(--yellowffc);
}

.badge.blk {
  background: var(--black);
}

.badge-QA {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  font-size: .8rem;
}

.badge-QA.red {
  border: 1px solid var(--redf0);
  color: var(--redf0);
}

.badge-QA.blue {
  border: 1px solid var(--blue007);
  color: var(--blue007);
}

.VOD-inspection-list .badge.red {
  padding: 0 .7rem;
}

.badge.dark-green {
  padding: 0 1.5rem;
  background: var(--green77);
}

.badge.gray {
  padding: 0 .7rem;
  background: var(--grayd0);
}

/* 폼 */
select,
textarea,
input:not([type="radio"], [type="checkbox"], .btn-calendar) {
  padding: 0 .8rem;
  width: 100%;
  height: 3.4rem;
  border-radius: .5rem;
  border: 1px solid var(--grayd3);
  color: var(--black);
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1.2rem;
  font-weight: 350;
  line-height: 3.4rem;
}

select {
  appearance: none;
  padding-right: 2.4rem;
  background: url(../images/ico_arrow_down.svg) var(--white) no-repeat right center;
}

textarea {
  padding: 1rem;
  line-height: 150%;
}

textarea::placeholder {
  color: var(--gray6c);
}

a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

input[disabled],
input[readonly]:not(.flatpickr-input, .border-none, .readonly-w) {
  background: var(--graye6);
}

input[class="readonly-w"] {
  background: white;
}

textarea[readonly] {
  background: var(--grayf5);
}

textarea[class="transparent"] {
  min-height: 25rem;
  border: none;
  background: transparent;
  font-weight: 400;
  overflow-y: hidden;
}

select[disabled] {
  background: url(../images/ico_arrow_down.svg) var(--graye6) no-repeat right center;
  color: var(--black);
}

input[type="search"] {
  padding: .8rem .5rem .8rem 2.4rem;
  background: url(../images/ico_search.svg) var(--white) no-repeat left center;
}

input[type="search"]:read-only:not(.readonly-w),
input[type="search"]:disabled:not(.readonly-w) {
  background: url(../images/ico_search.svg) var(--graye6) no-repeat left center;
}

.input-delete {
  position: relative;
}

.input-delete input {
  padding-right: 2.4rem;
}

.btn-delete2 {
  position: absolute;
  right: .4rem;
  top: .8rem;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/btn_close_circle_s.svg) no-repeat left top / 1.8rem auto;
}

.btn-delete2:hover {
  filter: brightness(.7);
}

.btn-calendar {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/btn_calendar.svg) no-repeat;
  border: none;
  color: var(--black);
  cursor: pointer;
  font-size:0;
}

.btn-calendar:focus {
  outline: none;
  caret-color: transparent
}

.input-calendar {
  background: url(../images/ico_calendar.svg) var(--white) no-repeat right .4rem center;
}

.input-calendar:disabled {
  background: url(../images/ico_calendar.svg) var(--graye6) no-repeat right .4rem center;
}

.check-type1+label {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../images/ico_check_off.svg) no-repeat;
}

.check-type1:checked+label {
  background: url(../images/ico_check_on.svg) no-repeat;
}

.check-type1:disabled+label {
  background: url(../images/ico_check_disabled.svg) no-repeat left center;
}

.check-type1.disabled-type2:disabled+label,
.check-type2.disabled-type2:disabled+label {
  background: url(../images/ico_check_disabled_checked.svg) no-repeat left center;
  color: var(--gray96);
}

.check-type2+label {
  /* display: inline-flex;
  align-items: center; */
  padding-left: 2.2rem;
  background: url(../images/ico_check_off.svg) no-repeat left center;
  font-size: 1.2rem;
      height: 1.4rem;
    display: flex;
    align-items: center;
    background-size: contain;
}

.check-type2:checked+label {
  background: url(../images/ico_check_on.svg) no-repeat left center;
}

.check-type2:disabled+label {
  background: url(../images/ico_check_disabled.svg) no-repeat left center;
  color: var(--grayd3);
}

/* [dev] 촬영스케줄관리 > 외부/번외 타임테이블 마지막 날짜 체크박스 클릭 시 우측에 빈 공간이 생기는 문제 */

/* [dev] 제작/재편집요청 > 재편집요청(modal) : 제작대상상품 리스트에서 마지막 행의 체크박스를 선택했을 때 하단에 빈공간이 생기는 문제 */
.shooting-daily-schedule input[type="checkbox"],
.modal.re-edit .table-2nd input {
  position: static;
  margin-top: -1px;
  opacity: 0;
}

/* 테이블 */
.table-header,
.table-header2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.table-header {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.table-header div:first-child {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1024px){
  .table-header div:first-child {
    display: flex;
    gap: 1rem;
  }
}

.table-header p[class="txt-total"] {
  margin-right: 1rem;
}

.table-header b {
  font-weight: 500;
}

.table-default {
  margin-top: .5rem;
  background: var(--white);
}

.table-default thead {
  border-top: 1px solid var(--graye7);
}

.table-default tr {
  border-bottom: 1px solid var(--graye7);
}

.table-default tbody tr:hover,
.table-2nd tbody tr:hover {
  background: rgba(0, 163, 255, 0.16);
}

tbody .none:hover,
tbody .tr-none:hover,
tbody .td-none:hover {
  background: var(--white) !important;
}

.table-default th,
.table-default td {
  height: 4rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.table-default th {
  background: var(--grayf8);
}

.table-2nd {
  margin-top: .5rem;
  background: var(--white);
}

.table-2nd thead {
  border-top: 1px solid var(--graye7);
  border-bottom: 1px solid var(--black);
}

.table-2nd tbody tr {
  border-bottom: 1px solid var(--graye7);
}

.table-2nd th,
.table-2nd td {
  height: 3.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.table-2nd th {
  background: var(--grayf8);
}

/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .3rem;
  margin-top: 2rem;
}

.pagination button {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}

.pagination button:hover {
  filter: brightness(0) saturate(100%) invert(0%) sepia(93%) saturate(26%) hue-rotate(29deg) brightness(96%) contrast(106%);
}

.pagination button:hover::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, .08);
}

.btn-first {
  background: url(../images/btn_first.svg) no-repeat center;
}

.btn-prev {
  background: url(../images/btn_prev.svg) no-repeat center;
}

.btn-next {
  background: url(../images/btn_next.svg) no-repeat center;
}

.btn-last {
  background: url(../images/btn_last.svg) no-repeat center;
}

.pagination ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 0 1rem;
}

.modal .pagination ol {
  gap: 1rem;
}

.popup .pagination ol {
  gap: .6rem;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.pagination a:hover {
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.paging--active {
  font-weight: 700;
  letter-spacing: -.5px;
}

/* 탭 */
.tab-list {
  display: flex;
}

.tab-btn {
  width: 12rem;
  height: 3rem;
  border: 1px solid var(--graye6);
  border-radius: .5rem .5rem 0 0;
  border-bottom: none;
  font-size: 1.2rem;
  color: var(--gray6c);
  letter-spacing: 0.036rem;
}

.tab-btn.active {
  border: 1px solid var(--black);
  border-bottom: none;
  color: var(--black);
}

.tab-content>li {
  display: none;
  font-size: 1.2rem;
}

.tab-content>li.active {
  display: block;
}

/* 한줄 말줄임표*/
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 두줄 말줄임표 */
.ellipsis2 {
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dashboard-container.col5 .ellipsis {
  width: 35.3rem;
}

.dashboard-container.col7 .ellipsis {
  width: 24.5rem;
}

/* tbody block 변경 */
.table-2nd.col6.outsourcing tbody tr,
.table-2nd.col7 tbody tr,
.table-2nd.col10 tbody tr,
.modal.history .modal-content2>div:last-child .table-2nd tbody tr:not(.tr-none) {
  display: flex;
  align-items: center;
  height: 3.41rem;
}

.table-2nd.col6.outsourcing td,
.table-2nd.col7 td,
.table-2nd.col10 td,
.modal.history .modal-content2>div:last-child .table-2nd tbody td {
  height: 3.5rem;
  line-height: 3.5rem;
}

.popup-table .ellipsis,
.modal.history .ellipsis,
.table-2nd.col5 .ellipsis,
.table-2nd.col6 .ellipsis,
.table-2nd.col7 .ellipsis,
.table-2nd.col10 .ellipsis,
.table-2nd.col11 .ellipsis,
.table-2nd.download .ellipsis,
.modal.folder .table-2nd .ellipsis,
.modal.history .modal-content2>div:last-child .table-2nd .ellipsis {
  display: inline-block;
  height: 3.4rem;
  line-height: 3.4rem;
}

.production-meeting .ellipsis,
.production-data .ellipsis,
.QA-table .ellipsis,
.modal.production .ellipsis,
.modal.re-edit .ellipsis {
  display: inline-block;
  height: 3.9rem;
  line-height: 3.9rem;
}

@media (max-width: 1280px) {
  .shooting-management .VOD-list .table-2nd .ellipsis {
    display: inline-block;
    height: 3.9rem;
    line-height: 3.9rem;
  }
}

/* 스크롤 바 */
.table-default tbody::-webkit-scrollbar,
.table-2nd tbody::-webkit-scrollbar,
div::-webkit-scrollbar,
ul::-webkit-scrollbar,
textarea::-webkit-scrollbar {
  width: .6rem;
  height: .6rem;
  background: var(--grayf1);
}

select::-webkit-scrollbar {
  width: .4rem;
  height: .4rem;
  background: var(--grayf1);
}

.table-default tbody::-webkit-scrollbar-thumb,
.table-2nd tbody::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
  width: .6rem;
  height: .6rem;
  background: var(--grayb7);
  border-radius: .4rem;
}

select::-webkit-scrollbar-thumb {
  width: .4rem;
  height: .4rem;
  background: var(--grayb7);
  border-radius: .2rem;
}

.table-default tbody::-webkit-scrollbar-track,
.table-2nd tbody::-webkit-scrollbar-track,
div::-webkit-scrollbar-track,
ul::-webkit-scrollbar-track,
select::-webkit-scrollbar-track {
  background: var(--grayf1);
}

.table-default tbody::-webkit-scrollbar-thumb:hover,
.table-2nd tbody::-webkit-scrollbar-thumb:hover,
div::-webkit-scrollbar-thumb:hover,
ul::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover,
select::-webkit-scrollbar-thumb:hover {
  background: var(--graya8);
}

/* 프로그레스 바 */
.progress-bar {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  background: rgba(0, 0, 0, .3);
  border-radius: .5rem;
  z-index: 1000;
}

.svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.border {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  opacity: .7;
}

.progress {
  fill: none;
  stroke: var(--black);
  stroke-width: 3;
  opacity: .6;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  animation: progress 4.5s ease-in-out infinite;
  transform-origin: center;
  transform: rotate(-90deg);
}

@keyframes progress {
  100% {
    stroke-dashoffset: 0;
  }
}

.progress-bar.txt .loading-txt {
  position: absolute;
  left: 50%;
  top: 11rem;
  transform: translateX(-50%);
  padding: .5rem;
  width: 34rem;
  height: 5rem;
  background: rgba(0, 0, 0, .6);
  font-size: 1.3rem;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  box-shadow: .5px 2px 5.2px -1px rgba(0, 0, 0, 0.12);
}

/* 툴팁 */
.tooltip {
  position: absolute;
  display: inline-block;
  padding: .3rem;
  width: auto;
  max-width: 25rem;
  background-color: var(--white);
  border: 1px solid var(--graycc);
  box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  pointer-events: none;
}

.tooltip.scheduleCard,
.tooltip.vodList,
.tooltip.checkBoxInfoTooltip {
  max-width: 100rem;
}

.tooltip.checkBoxInfoTooltip {
  max-width: 25rem;
}

/* link 호버 */
.link:hover {
  text-decoration: underline;
}

/* 제목 */
.h3-type1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.h3-type2 {
  color: var(--gray7a);
  font-size: 1.4rem;
  font-weight: 400;
}

.h4-type1 {
  font-size: 1.4rem;
  font-weight: 350;
}

/* 정렬 */
.txt-left {
  text-align: left !important;
}

.txt-center {
  text-align: center !important;
}

.txt-right {
  text-align: right !important;
}

.none:not(.ico-user .none) {
  display: none !important;
}

/* 로그인 */
.login {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3.2rem;
  width: 44.8rem;
  border-radius: 0.5rem;
  border: 1px solid var(--grayd6);
  background: var(--white);
  box-shadow: .5px 2px 5.2px -1px rgba(0, 0, 0, 0.12);
  text-align: center;
}


.login-header {
  display: flex;
  align-items: center;
  margin-top: 2.1rem;
  padding: 0 2.3rem;
  width: 100%;
  height: 6.4rem
}

.login-header.no2,
.login-header.no3 {
  margin-top: 0;
  justify-content: space-between;
  border-bottom: .4rem solid transparent;
  border-image: linear-gradient(90deg, var(--redff3) 0%, var(--yellowff8) 100%);
  border-image-slice: 1;
}

.login-header.no2 {
  position: relative;
}

.login-header .logo a:nth-child(1) {
  width: 7.2rem;
  height: 2.05rem;
  background: url(../images/h1_logo_login.png) no-repeat;
}

.login-header .logo a:nth-child(2) {
  position: relative;
  margin-left: 1.4rem;
  width: 5.7rem;
  height: 2.1rem;
  background: url(../images/logo_SPIM_login.svg) no-repeat center;
}

.login-header .logo a:nth-child(2)::before {
  position: absolute;
  left: -.7rem;
  top: 0;
  content: '';
  width: 1.5px;
  height: 100%;
  background: var(--black);
}

.login-header:not(.no2) .logo a:hover {
  cursor: default;
}

.h2-type3 {
  color: var(--gray87);
  font-size: .8rem;
  font-weight: 400;
}

.login-header .h2-type3 {
  margin-top: .3rem;
}

.login-header.no3 {
  padding: 0 1rem;
  height: 5.4rem;
  border-bottom: .2rem solid transparent;
}

.login-header.no3>div {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.login-header.no3 a {
  position: relative;
}

.login-header.no3 a::after {
  position: absolute;
  right: -.7rem;
  top: 0;
  content: '';
  width: 1px;
  height: 100%;
  background: var(--black);
}

.h2-type1,
.h2-type2 {
  font-family: Inter;
  font-size: 1.4rem;
  font-weight: 400;
}

.btn-close {
  width: 2.7rem;
  height: 2.7rem;
  background: url(../images/btn_close.svg) no-repeat;
}

.login-form {
  margin-top: 2.9rem;
}

.login input,
.login .btn.blk {
  width: 27rem !important;
  height: 4rem;
}

.login input {
  background: var(--grayf8);
}

.login input:last-child {
  margin-top: .7rem;
}

.login .btn.blk {
  margin-top: 3.2rem;
}

.login-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  width: 27rem;
}

.login .btn-manual,
.btn-alert,
.txt-notice {
  color: var(--gray87);
  font-size: 1.1rem;
  letter-spacing: 0.03rem;
}

.btn-manual:hover,
.btn-alert:hover {
  color: var(--black);
  text-decoration: underline;
}

.login .txt-notice {
  margin-top: 4.8rem;
}

.login p:last-child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8rem;
  width: 100%;
  font-size: 1.1rem;
  color: var(--gray33);
}



@media (max-width:520px){
  .login{
    width:32rem;
  }
  .login .txt-notice {
    margin-top:2rem;
    }
 }


/* 세션 만료 */
.warning {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--gray87);
}

.warning strong {
  margin-top: 1.2rem;
  font-size: 2.2rem;
  font-weight: 400;
}

.warning p {
  margin-top: 1.7rem;
  font-size: 1.6rem;
}

.warning .btn-white {
  margin-top: 4rem;
}

/* 대시보드 > 캘린더 */
.main {
  padding: 0 1rem 5rem;
}

.filter-calendar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 0 2.3rem;
}

@media (max-width: 1024px) {
    .filter-calendar {
        align-items: end;
    }
}

@media (max-width: 720px){
  .filter-calendar {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

.filter-calendar-header {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px){
  .filter-calendar-header:not(.filter-calendar-header.request) {
    align-items: end;
  }
}


@media (max-width: 720px){
  .filter-calendar-header:not(.filter-calendar-header.request) {
   align-items: center;
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 1rem;
  }
}

.filter-calendar-header>div:first-child {
  position: relative;
  display: flex;
}

@media (max-width: 1024px){
  .filter-calendar-header>div:first-child:not(.filter-calendar-header.request>div:first-child) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 720px){
 .filter-calendar-header>div:first-child{
   flex-direction: column;
   margin-top: 1rem;
 }

}

.filter-calendar-header strong:not(.label) {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2rem;
  cursor: pointer;
}

@media (max-width: 1024px){
  .filter-calendar-header strong:not(.filter-calendar-header.request strong) {
    order: 2;
  }
}

@media (max-width: 720px){
  .filter-calendar-header strong:not(.label) {
   justify-content: center;
  }

}

.btn-arrow-left,
.btn-arrow-right {
  width: 1.3rem;
  height: 2.2rem;
}

.btn-arrow-left {
  background: url(../images/btn_arrow_left.svg) no-repeat left top 1px;
}

.btn-arrow-right {
  background: url(../images/btn_arrow_right.svg) no-repeat left top 1px;
}

.filter-calendar-header strong span {
  width: 9.5rem;
}

@media (max-width: 1280px) {
  .filter-calendar-header strong span {
    width: 10.2rem;
  }
}

.filter-calendar-header>div:first-child>div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8rem;
}

@media (max-width: 1024px){
  .filter-calendar-header>div>div:not(.filter-calendar-header.request>div>div) {
    order: 1;
    margin-left: 2rem;
  }
}
@media (max-width: 720px){

.filter-calendar-header>div:first-child>div:nth-child(2) {
	justify-content: center;
	margin-top: .5rem;
	}
}


.filter-calendar-header>div:first-child>div:nth-child(2)>span:first-child {
  display: inline-block;
  width: 3.8rem;
  text-align: end;
}

.filter-calendar .btn-calendar {
  margin-left: .5rem;
}

@media (max-width: 1024px){
  .filter-calendar .btn-calendar:not(.filter-calendar.request .btn-calendar) {
    position: absolute;
    right: -3.5rem;
    top: 54%;
  }
}

.sort-calendar {
  display: flex;
  align-items: center;
  margin-left: 2.5rem;
}

@media (max-width: 1024px){
  .sort-calendar {
    margin: 0 0 -.4rem 5.5rem;
  }
}

.radio-sort-week+label,
.radio-sort-month+label {
  display: flex;
  align-items: center;
  padding: 0 .9rem 0 3.4rem;
  height: 3.4rem;
  border-bottom: 1px solid var(--grayd3);
  font-size: 1.2rem;
  font-weight: 350;
  color: var(--grayd3);
  cursor: pointer;
}

.radio-sort-week+label {
  background: url(../images/ico_sort_week_off.svg) no-repeat left 1rem center;
}

.radio-sort-month+label {
  background: url(../images/ico_sort_month_off.svg) no-repeat left 1rem center;
}

.radio-sort-week:checked+label,
.radio-sort-month:checked+label {
  color: var(--gray5f);
  border-bottom: 1px solid var(--gray5f);
}

.radio-sort-week:checked+label {
  background: url(../images/ico_sort_week_on.svg) no-repeat left 1rem center;
}

.radio-sort-month:checked+label {
  background: url(../images/ico_sort_month_on.svg) no-repeat left 1rem center;
}

.sort-category {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 1024px){
  .sort-category {
    gap: 2rem;
  }
}

@media (max-width: 720px){
  .sort-category {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 1024px){
  .production-management .sort-category {
    width: 22.1rem;
  }
}

@media (max-width: 720px){

.production-management .sidebar-info .tab .tab-content dl{
	  width:100%;
	}
.production-management  .sidebar-info .table-default{
	 width:100%;
}

}

.radio-sort-category+label,
.sort-category li {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 350;
  color: var(--gray7a);
  cursor: pointer;
}

.radio-sort-category:checked+label,
.sort-category .active {
  color: var(--gray01);
}

.sort-category li:before,
.radio-sort-category+label::before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: var(--grayd9);
  border-radius: 50%;
}

.radio-sort-category:checked+label::before,
.sort-category .active::before {
  background: var(--gray01);
}

/* 대시보드 > 검색도구 */
.filter {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--gray1d);
}

.filter-default {
  position: relative;
  display: flex;
  align-items: center;
  row-gap: .6rem;
  padding: 1.5rem 1rem;
  width: 100%;
  border-top: 1px solid var(--graye6);
  border-bottom: 1px solid var(--graye6);
  font-size: 1.2rem;
}

.filter.dashboard .filter-default {
  padding: 1.5rem 0;
}

@media (max-width: 1536px) {
  .filter.dashboard .filter-default {
    display: grid;
    grid-template-columns: repeat(3, auto);
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1280px) {
  .filter.dashboard .filter-default {
    grid-template-columns: auto 25.5rem 25.7rem auto;
  }

  .filter.dashboard .filter-default li:nth-child(2) {
    grid-column: 2/5;
  }
}

@media (max-width: 1024px){

  .filter.dashboard .filter-default {
    grid-template-columns: 38.4rem auto;
    overflow-x: auto;
  }

  .filter.dashboard .filter-default li:nth-child(2) {
    grid-column: 1/3;
  }
}

@media (max-width: 720px){
  .filter{
    overflow-x: auto;
  }
}


.filter-default>li,
.tab-filter>li,
.filter-form li:last-child {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* 레이블 */
.label {
  display: inline-block;
  padding-right: .5rem;
  width: 6.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
}

.label.wide {
  width: 7.5rem !important;
}

label {
  font-size: 1.2rem;
}

.filter-default select,
.filter-default input:not([type="checkbox"]) {
  width: 12.3rem;
}

.filter-default.no3 select,
.filter-default.no3 input:not([type="checkbox"]) {
  width: 11.6rem;
}

.modal .filter-default select,
.modal .filter-default input:not([type="checkbox"]) {
  width: 11.7rem;
}

.filter .btn-group {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.2rem;
  position: relative;
}

/* 스크롤 */
.scroll:not(.shooting-schedule.scroll) {
  overflow-x: auto;
}

@media (max-width: 1536px) {

  .scroll .score-board,
  .scroll .dashboard-container {
    width: 190rem;
  }
}

.score-board {
  display: flex;
  gap: 1.79%;
  margin-top: 2rem;
}

.score-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex: 1;
  height: 8rem;
  font-size: 1.2rem;
  font-weight: 350;
}

.score-card.blue {
  border-bottom: .3rem solid var(--blue16);
}

.score-card.green {
  border-bottom: .3rem solid var(--green4f);
}

.score-card.red {
  border-bottom: .3rem solid var(--redee3);
}

.score-card.blk {
  border-bottom: .3rem solid var(--black);
}

.score-card.gray {
  border-bottom: .3rem solid var(--grayc9);
}

.score-card strong {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4rem;
  ;
}

.score-card strong::before {
  content: '';
  width: 3rem;
  height: 3rem;
  border-radius: .5rem;
  border: 1px solid var(--graye6);
}

.score-request::before {
  background: url(../images/ico_document.svg) var(--grayf8) no-repeat center;
}

.score-shoot::before {
  background: url(../images/ico_camera.svg) var(--grayf8) no-repeat center;
}

.socre-inspect::before {
  background: url(../images/ico_document2.svg) var(--grayf8) no-repeat center;
}

.score-get::before {
  background: url(../images/ico_document3.svg) var(--grayf8) no-repeat center;
}

.score-card-count {
  text-align: right;
}

.score-card-count span{
   display: inline-block;
    width: 3rem;

}

/*.score-card.gray>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-weight: 400;
}

.score-card.gray .bar {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: .5rem;
  font-size: 1rem;
  line-height: 1.7rem;
}

.score-card.gray .bar.blue {
  background: var(--blueae);

}

.score-card.gray .bar.green {
  background: var(--greenc9);
}

.score-card.gray .bar.red {
  background: var(--redf4);
}

.score-card.gray .bar.yellow {
  background: var(--yellowffe);
}

.score-card.gray .bar.gray {
  background: var(--grayd9);

*/

/* 주간 대시보드 */
.dashboard-container {
  margin-top: 1.3rem;
}

.dashboard-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.dashboard-chk {
	display: flex;
	align-items: center;
    gap: 1rem;
}

.dashboard-qut{
	cursor:pointer;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 2.8rem;
}

.txt-red {
  font-size: 1.2rem;
  color: var(--redf0);
}

.weekly-dashboard {
  display: flex;
  gap: .2rem;
  margin: 2rem 0;
}

.weekly-dashboard.firstweek {
  margin: .7rem 0;
}

.weekly-dashboard>li {
  width: 100%;
  border: 1px solid var(--graye7);
  border-radius: .5rem .5rem 0 0;
}

.dashboard-container.col5 .weekly-dashboard>li {
  min-width: 37.5rem;
}

.dashboard-container.col7 .weekly-dashboard>li {
  min-width: 26.5rem;
}

.day {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  background: var(--grayf8);
  border-bottom: 1px solid var(--black);
  font-size: 1.3rem;
  font-weight: 700;
}

.daily-schedule {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 1rem 2.5rem;
  min-height: 41rem;
  font-size: 1.2rem;
}

.ndb .daily-schedule {
	 gap: 1rem;

}
.ndb .daily-schedule > li{
	border-bottom: 1px dotted #ccc;
	padding-bottom: 1rem;
	height: 17.1rem; /* 12->13.7->17.1 */
	display: flex;
	flex-direction: column;
	justify-content: normal;
    margin-top: 1rem;
}


.ndb .daily-schedule > li .progress-dot + div > p{
	display: flex;
	gap: .4rem;
}

.daily-schedule>li:hover {
  cursor: pointer;
}

.daily-schedule>li>div:not(:first-child) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.daily-schedule>li>div:first-child {
  height: 2rem;
}

.daily-schedule p {
  line-height: 2rem;
}

.weekly-dashboard .active {
  border: 1px dotted var(--graya8);
  box-shadow: 5px 2px 5.2px -1px rgba(0, 0, 0, 0.12);
}

.weekly-dashboard .active .day {
  background: var(--graye7);
}

/*업무진행리스트 */

.dash-process{
    display: flex;
    padding: 1rem 0 0 0;
    border: .1rem solid #C9C9C9;
    border-radius: .5rem;
    box-sizing: border-box;
    margin-top: 1rem;
    position:relative;
    overflow: hidden;
    max-height: 53rem;
}


.dash-process .chart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: 0 .6rem;
  font-size: 1.4rem;
  color: var(--gray5f);
}

.dash-process .chart-toggle::before {
  content: '';
  width: 2rem;
  height: 2rem;
}

.dash-process .chart-toggle:before {
  background: url(../images/ico_arrow_up_circle.svg) no-repeat;
}

.dash-process .chart-toggle.open::before {
  background: url(../images/ico_arrow_down_circle.svg) no-repeat;
}

.dash-process .chart-toggle::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 8.4rem;
  height: 3.4rem;
  border-radius: .5rem;
  border: 1px solid var(--graye7);
  background: var(--grayf8);
  z-index: -10;
  opacity: 0;
  transition: .4s;
}

.dash-process .chart-toggle:hover::after {
  opacity: 1;
}


.dash-process .chart-toggle.open {
	display:flex;
	margin-left: 2.5rem;
}

.dash-chart{
	width:52rem;
	display: flex;
    flex-direction: column;
}


.chart_list .table-2nd {
  width:179rem;
}

.chart_list .table-2nd thead {
	border-bottom : .1rem solid #E0E0E0;
}

.chart_list .table-2nd td, .chart_list .table-2nd th {
	border-right : .1rem solid #E0E0E0;
}

.chart_list .table-2nd th, .process-t .table-2nd td{
	height: 4.2rem;
	font-size: 1.4rem;
	padding: 0 .8rem;
}

.chart_list .table-2nd th {
	font-weight:600;
}

.chart_list .table-2nd th:nth-child(2), .chart_list .table-2nd td:nth-child(2){
	font-size:1.2rem;
}


.chart_item {
	display: flex;
	align-items: center;
	gap: 2rem;
	height: 5rem;
}

.chart_item .chtit{
	font-size: 2rem;
	text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 500;

}

.chart_item .chstit{
	display: flex;
	gap: 2rem;
}

.chart_item .chstit > div {
	display: flex;
	gap: 1rem;
	font-size: 1.4rem;
}


.chart_item .chstit > div span{
	width:2rem;
	height:2rem;
	display:inline-block;
	border-radius: .5rem;
}



.dash-process .ty1{
	background-color : #F69F95;
}

.dash-process .ty2{
	background-color : #FFCC80;
}

.dash-process .ty3{
	background-color : #ABCDDE;
}

.chartWrap{
	height: calc(100% - 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chartWrap .chart-in {
	width:45rem;
	position: relative;
}

.process-t{
	width:calc(100% - 52rem);
}

.process-t .pagination {
	margin-top: 0;
    height: 3.6rem;
}

.process-t .filter-wrapper{
	padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    padding-top: .5rem;
}


.process-t .btn-white {
	height: 3.4rem;
	width:8rem;
}

.process-t .chart_list .table-2nd {
	border: .1rem solid #ccc;
}


.process-t .chart_list .table-2nd thead {
	border-top : none;

}
.process-t .chart_list .table-2nd tbody tr:last-child{
	border-bottom:none;
}

.dash-process .btn-toggle-group {
	position: absolute;
	right:2.5rem;
	top : 2.5rem;
}

.dash-process .btn-toggle-group .btn-toggle2 {
	font-size:1.4rem;
}


.dash-process.close {
	display:none;
	padding: 1rem 0;
}

.dash-process.close .chart_item{
	justify-content: space-between;

}


.dash-process.close .chart_item .chtit {
    justify-content: flex-start;
    padding-left: 2rem;
    width: auto;
}



.dash-info {
	display: flex;
	gap:.5rem;
    padding-right: 2.5rem;
}

.dash-info > div{
	border-radius: 1rem;
    height: 3.9rem;
    font-size: 1.4rem;
    color: #fff;
    padding: 0rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}


.progress-dot{
	position: relative;
    height: 3rem !important;
    display: flex;
    margin-bottom: 1rem;
   align-items: flex-end;
    justify-content: space-between;
}

.progress-dot::after{
	width: calc(100% - 4.5em);
	height: 0.1rem;
	position: absolute;
	display: block;
	content: '';
	left: 2.3rem;
	background: #c2c2c2;
    bottom: .9rem;
}

.progress-dot > div{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.progress-dot > div .ing{
	border: .2rem solid #3a7d23 !important;
}

.progress-dot .tit {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .2rem;
    height: 2rem;
    border-radius: .4rem;
    font-size: 1.1rem !important;
    background: var(--white);
    position: relative;
    z-index: 1;
    width: 5.3rem;
    box-sizing: border-box;
    border: .1rem solid #a7a7a7;
	color: #2b2b2b;
}

.progress-dot .tit i {
	width: 1.8rem;
    height: 1.8rem;
    background: url(../images/ico_vod_off.svg) no-repeat center / 1.8rem auto;
}



.progress-dot > div >span{
	position: absolute;
    top: -2rem;
    width: 8rem;
    display: inline-block;
    font-size: 1.1rem;
    text-align: center;
}


.progress-dot.stoff .tit{
	  color: #9e9c9c;
	  border: .1rem solid #e8e8e8;

}


.progress-dot .st1 {
	border-color: #3a7d23 !important;
    background: #3a7d23;
    color: #fff !important;
}

.progress-dot .st2 {
	 border-color: #e7ab0e !important;
	 background: #e7ab0e;
	 color: #fff !important;
}


.progress-dot .st3 {
	 border-color: #ea0015 !important;
	 background: #ea0015;
	 color: #fff !important;
}



.circle{
	min-width:200px;
	display:inline-block;
}


@media (max-width: 1024px) {
  .process-t .btn-white {
  	width: 7rem;
  }
  .dash-process .btn-toggle-group{
     right: .5rem;
     top: 2rem;
  }

	.dash-chart {
	   width: 50%;
	}
	.process-t {
		width: 50%;
	}

	.chart_item .chtit{
		padding-left: 1.5rem;
	}
	.chart_item .chstit > div:nth-child(3){
		margin-left:0;
	}
	.chart_item .chstit > div {
		gap: .5rem;
	}

	.dash-info > div {
	 padding: 0 2rem;
	}
}

@media (max-width: 768px) {
	.dash-process{
		display: block;
        max-height: inherit;
	}

	.process-t {
		width:100%;
	}

	.chartWrap{
		width:100%;
	}

	.dash-chart{
		width:100%;
	}

	.chart_item {
		display: flex;
        height: auto;
        flex-wrap: wrap;
        gap: 3rem;
        align-items: center;
        justify-content: flex-start;
        margin-top: 1rem;
        padding: 0 2rem;
	}

	.chart_item .chtit {
		padding-left : 0;
	}

	.dash-process .btn-toggle-group{
	  	right:1rem;
	  	top: 2.5rem;
	}

	.dash-process .chart-toggle.open {
		top : 2.5rem;
	  	right:1rem;
	  	position: absolute;
	}

	.dash-info > div {
		height: auto;
		padding: .5rem 1rem;
        font-size: 1.3rem;
	}

	.dash-process.close .chart_item{
		justify-content: flex-start;
		padding: 0 2rem;
        box-sizing: border-box;
        display: flex;
        margin: 1rem 0;
	}

	.dash-info {
	    display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        padding-right: 0;


	}

	.process-t .filter-default.no2{
		display: flex;
        align-items: center;
	}
	.filter-default.no2 li:nth-child(1){
		 padding-right: 1rem;
	}

}

@media (max-width: 520px) {

	.chartWrap .chart-in{
	   width: 100%;
	}
}


/* 제작요청 > 검색도구 */
.filter-wrapper {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--graye6);
}

.filter-wrapper .filter-default {
  padding: 0;
  border: none;
}

.filter-default.no2 li:nth-child(12) .check-type2+label{
	display: flex;
    width: auto;
    height: 1.4rem;
    background-size: contain;
    justify-content: center;
    align-items: center;
}



.filter-default.no2 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, auto);
}

.filter-default.no2 li:nth-child(8){
	position: absolute;
    left: 25.5rem;
    top: 4rem;
}

.filter-default.no2 li:nth-child(12){
	 margin-left: 1.5rem;
	 gap:0 3rem;
}

@media (max-width: 1536px) {
  .filter-default.no2 {
    grid-template-columns: repeat(4, auto);
  }

  .filter-default.no2 li:nth-child(12){
     grid-column:auto;
     gap: 0 1.5rem;
     margin-left: 0;
  }
  .filter-default.no2 li:nth-child(8){
     position: relative;
     left: inherit;
     top: inherit;
  }

}

@media (max-width: 1280px) {
 /* .filter-default.no2 li:nth-child(11) {
    grid-column: 3/5;
  }*/
}


@media (max-width: 1024px){

 .filter-wrapper {
   overflow-x:scroll;
 }
  .filter-default.no2 {
    grid-template-columns: 25.6rem 1fr 1fr;
  }
  .filter-default.no2 li:last-child {
    grid-column: 1/-1;
    justify-self: start;
  }

  .filter-default.no2 li:nth-child(11) {
    grid-column: unset;
  }

  .filter-default.no2 li:nth-child(1) {
    grid-column: 1/3;
  }

  .filter-default.no2 li:nth-child(12){
    margin: 0;
    position: absolute;
    right: 4rem;
    bottom: 0.3rem;
  }
}

@media (max-width: 720px){
	.filter-default.no2 li:nth-child(12){
		position: relative;
        right: inherit;
        bottom: 0;
        margin-top: 1rem;

	}

}

.filter-default.no2 li:nth-child(8) {
  margin-left: -1rem;
}

.filter-default.no2 .filter-checkbox {
  position: absolute;
  left: -.7rem;
  bottom: -5.8rem;
  z-index:1;
}

@media (max-width: 1280px) {
  .filter-default.no2 .filter-checkbox {
    position: static;
  }
}


.br-t {
  display: none;
}

@media (max-width: 1536px) {
  .br-t {
    display: inline;
  }
}

.filter-default.no2 select,
.filter-default.no2 input {
  width: 12.3rem;
}

/* 제작요청 > 목록 조회 */
.production-reqeust-table .table-header {
  display: grid;
  grid-template-columns: 11.1rem 1fr repeat(2, auto);
}

@media (max-width: 1280px) {
  .production-reqeust-table .table-header {
    position: relative;
    grid-template-columns: auto 1fr;
  }

  .production-reqeust-table .table-header select {
    grid-column: 1/-1;
  }
}

@media (max-width: 1024px) {
.filter-default.no2 select, .filter-default.no2 input {
		width: 10.3rem;
	}
}



@media (max-width: 720px){
  .production-reqeust-table .table-header {
    display:flex;
    flex-direction: column;
    padding-bottom: 3rem;
  }


  .production-reqeust-table .table-header select {
    grid-column: 1/-1;
  }
}

.txt-summury {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

@media (max-width: 1280px) {
  .txt-summury {
    margin-left: .4rem;
  }
}

@media (max-width: 720px) {
  .txt-summury {
    margin-bottom: .6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    margin-top: .6rem;
  }
}

@media (max-width: 1024px){
  .production-reqeust-table .table-header .txt-total {
    margin-right: 0;
  }
}

.production-reqeust-table .table-header .txt-red {
  margin-right: 3.6rem;
}

@media (max-width: 1280px) {
  .production-reqeust-table .table-header .txt-red {
    position: absolute;
    right: 1.5rem;
    top: .8rem;
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .production-reqeust-table .table-header .txt-red{
	 position: relative;
	 top: 0;
	 left: .5rem;
	 padding-bottom: 1rem;
  }

}


@media (max-width: 1280px) {
  .production-reqeust-table .table-header .btn-group {
    justify-self: end;
  }
}

/* 제작요청 > 상세 (modal)) */
.modal,
.modal-confirm,
.modal-prompt:not(.popup-group .modal-prompt),
.popup:not(.popup-group .popup) {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--zindex);
  background: var(--white);
  overscroll-behavior: contain;
}

.popup-group .modal-confirm {
  display: block;
  position: static;
  transform: none;
}

.modal.production,
.modal.production2 {
  width: 102.4rem;
   max-height: 90vh;
    overflow-y: scroll;
}

@media (max-width: 1280px) {
  .modal.production,
  .modal.production2 {
    width: 68.3rem;
     max-height: 85vh;
  }
}



@media (max-width: 1024px){
  .modal.production,
  .modal.production2, .modal, .modal-confirm, .modal-prompt:not(.popup-group .modal-prompt), .popup:not(.popup-group .popup){
    max-height: 80vh;
    overflow-y: scroll;
  }

 .popup.userPopup .table-2nd {
     max-height: 80vh;
    overflow-y: scroll;
  }

}

@media (max-width: 720px){
  .modal.production,
  .modal.production2, .modal, .modal-confirm, .modal-prompt:not(.popup-group .modal-prompt), .popup:not(.popup-group .popup){
    width: 90% !important;
  }


  .filter-modal{
    overflow-x: scroll;
  }

}


.modal .btn-group-top {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

@media (max-width: 1024px){
	.modal .btn-group-top {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
	}
}


.modal .btn-group-top button {
  width: 10rem;
}

.filter-modal:not(.modal.setting .filter-modal),
.modal.setting .filter-modal>li,
.filter-modal-container li {
  padding: 1rem;
  background: var(--grayf5);
  border: 1px solid var(--grayee);
}

.filter-modal {
  display: grid;
  grid-template-columns: repeat(5, 19.6rem);
  gap: .6rem 1px;
}

@media (max-width: 1280px) {
  .filter-modal {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal .filter-modal {
  margin-top: 1rem;
}

.filter-modal li {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.modal .filter-modal .grid-column,
.modal .filter-modal .grid-column2 {
  grid-column: 4/6;
}


@media (max-width: 1280px) {
  .modal .filter-modal .grid-column {
    grid-column: 1/2;
  }
}

@media (max-width: 1280px) {
  .modal .filter-modal .grid-column2 {
    grid-column: 2/4;
  }
}

.modal .filter-modal .grid-column3 {
  grid-column: 1/3;
}

.txt-right {
  text-align: right !important;
}

.modal.production .label,
.modal.production2 .label,
.modal.re-edit .label {
  padding-right: 0;
  width: 7rem;
}

.filter-modal input,
.filter-modal select {
  width: 12rem;
}

.modal.production2 .input-hour{
	width: 19.1rem;
}

@media (max-width: 1280px) {
  .modal.production .input-company,
  .modal.production2 .input-company {
    width: 21rem !important;
  }

  .modal.production2 .input-hour{
     margin-left:-1.5rem;
  }

   .input-VOD {
    width: 33.5rem !important;
  }

}

@media (max-width: 720px) {
    .modal.production2 .input-hour{
     margin-left: 0;
  }
}




.filter-modal-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1rem;
}

.filter-modal-container.full {
	grid-template-columns:none;
	gap:0;
}

.filter-modal-container.full li{
	padding: 1rem 1rem;
    gap: 1rem;
}

.filter-modal-container.pd {
	grid-template-columns: 3fr 2fr;
}

.filter-modal-container.pd ul{
	display: grid;
   grid-template-columns: 1fr  1fr  1fr  1fr;
    border: 1px solid var(--grayee);
    background: var(--grayf5);
    padding: 1rem;
}

.filter-modal-container.pd ul:nth-child(2){
	display: flex;
	flex-direction: column;
	gap:1rem;

}

.filter-modal-container.pd li{
	border: none;
    gap: .3rem;
    padding: 0;
}

.filter-modal-container.pd ::placeholder{
	font-size:1.1rem;
}

.filter-modal-container.pd ul:nth-child(1) li:nth-child(1),
.filter-modal-container.pd ul:nth-child(1) li:nth-child(5){
	width:16rem;
}


.filter-modal-container.pd ul:nth-child(1) li:nth-child(1) .label,
.filter-modal-container.pd ul:nth-child(1) li:nth-child(5) .label{
	width:17rem;
}

@media (max-width: 1024px) {
.filter-modal-container.pd {
	display:flex;
	flex-direction: column;

}
.filter-modal-container.pd ul{

	flex-wrap: wrap;
    gap: 5px;
}
.filter-modal-container.pd li{
	flex:1;
}

}


@media (max-width: 720px) {
	.filter-modal-container.pd ul{
	display:flex;

}
}

.filter-modal-container li {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.5rem;
}

.filter-modal-container .label {
  width: 7.3rem;
}

.filter-modal-container .label {
  width: 6.5rem;
}

.dimmed,
.dimmed2,
.dimmed3 {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .3);
  z-index: var(--zindex);
}

/* 모달 - 컨펌 */
.modal-confirm {
  padding-bottom: 1rem;
  min-width: 31.4rem;
  border-radius: 1rem;
  border: 1px solid var(--grayd9);
  text-align: center;
  word-break: break-all;
}

.modal-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.3rem;
}

.modal-confirm-header {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 1.5rem;
  width: 100%;
  height: 2.8rem;
  border-bottom: 1px solid var(--grayd9);
}

.btn-close-s {
  width: 1.1rem;
  height: 1.1rem;
  background: url(../images/btn_close_confirm.svg) no-repeat;
}

.modal-txt {
  font-size: 1.4rem;
  letter-spacing: 0.042rem;
}

.modal-confirm .modal-txt {
  padding: 0 1rem;
}

.modal-confirm .btn-group {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* 모달 - 프롬프트 */
.modal-prompt {
  width: 55rem;
  background-color: var(--white);
}

.modal-content {
  padding: 1rem;
}

.modal-prompt .modal-txt {
  margin-top: 2.5rem;
}

.modal-prompt-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.2rem;
  padding: .8rem;
  background: var(--grayf5);
  border: 1px solid var(--grayee);
}

.modal-prompt .label {
  text-align: left;
}

.modal-prompt-form textarea {
  width: 41.3rem;
  height: 9.2rem;
}

/* 제작요청 > 상세 > 탭 */
.modal.production .tab,
.modal.production2 .tab,
.modal.re-edit .tab {
  position: relative;
}

.modal.production .tab,
.modal.production2 .tab {
  margin-top: 3rem;
}

.modal.re-edit .tab {
  margin-top: 1rem;
}

.modal.production .tab .btn-group,
.modal.production2 .tab .btn-group,
.modal.re-edit .tab .btn-group {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 0 1rem;
}

.modal.production .tab .table-2nd,
.modal.production2 .tab .table-2nd,
.modal.re-edit .tab .table-2nd {
  margin-top: 0;
}

.modal.production .table-2nd tbody,
.modal.production2 .table-2nd tbody {
  display: block;
  width: 100.4rem;
  max-height: 12.1rem;
  overflow-y: auto;
}

.modal.production .table-2nd td:nth-child(1),
.modal.production .table-2nd td:nth-child(2),
.modal.production2 .table-2nd td:nth-child(1),
.modal.production2 .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.production .table-2nd td:nth-child(3),
.modal.production .table-2nd td:nth-child(4),
.modal.production2 .table-2nd td:nth-child(3),
.modal.production2 .table-2nd td:nth-child(4) {
  width: 8rem;
}

.modal.production .table-2nd td:nth-child(5),
.modal.production2 .table-2nd td:nth-child(5) {
  width: 41rem;
}

.modal.production .table-2nd td:nth-child(6),
.modal.production .table-2nd td:nth-child(7),
.modal.production .table-2nd td:nth-child(8),
.modal.production2 .table-2nd td:nth-child(6),
.modal.production2 .table-2nd td:nth-child(7),
.modal.production2 .table-2nd td:nth-child(8) {
  width: 8rem;
}

.modal.production .table-2nd td:nth-child(9),
.modal.production2 .table-2nd td:nth-child(9) {
  width: 11.4rem;
}

.modal.production2 .tab .table-2nd .td-none {
  width: 99.7rem !important;
  height: 12rem !important;
}

@media (max-width: 1280px) {
  .modal.production2 .tab .table-2nd .td-none {
    width: 66.3rem !important;
  }
}

/* 제작요청 > 관련자료 등록 */
.modal.file1 {
  width: 92rem;
}

@media (max-width: 1280px) {
  .modal.file1 {
    width: 71rem;
  }
}

@media (max-width: 1280px) {
  .modal.file1 .modal-content {
    height: 44rem;
    overflow-y: scroll;
  }
}

@media (max-width: 1024px){
  .modal.file1 .modal-content {
    height: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 720px){
 .modal.file1 {
    width :100%;
    overflow-y: scroll;
  }
}




.form-container {
  display: flex;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--graye1);
  background: var(--grayf5);
  font-size: 1.2rem;
  font-weight: 400;
}

.form-container.align {
  align-items: center;
}

.form-container.padding {
  padding: 0;
  padding-left: 1rem;
}

.form-container .form-title {
  margin-top: .7rem;
  width: 10rem;
  text-align: center;
}

.form-container.align .form-title {
  margin-top: 0;
}

.form-container .form-content {
  flex: 1;
}

@media (max-width: 720px) {
	.form-container .form-content {
	  overflow:auto;
	}
}



.form-content.manager {
  min-height: 4.5rem;
}

.form-container .caution{
   color: #ff1e00;
   padding-bottom: 10px;
    font-weight: 500;
    font-size: 13px;

}

.form-container.align.padding .form-content>ul,
.form-container.align.padding .form-content>div:not(.btn-group) {
  border: none;
  border-left: 1px solid var(--graye1);
  ;
}

.form-container.align.padding .form-content>ul:last-child {
  border-top: 1px solid var(--graye1);
}

.form-content>div,
.form-content>ul {
  padding: 1rem 1.8rem;
  border: 1px solid var(--graye1);
  background: var(--white);
}

.form-content>.editor {
  margin-top: .5rem;
}
@media (max-width: 720px) {
  .form-content>.editor {
    min-width:50rem;
  }
}


.form-filter {
  display: flex;
  align-items: center;
  padding: 0 !important;
  width: 100%;
  font-size: 1.2rem;
}

.form-filter>li {
  display: flex;
  align-items: center;
}

.form-filter div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.form-filter div:first-child {
  width: 8rem;
}

.form-filter div:last-child:not(.input-delete) {
  flex: 1;
  border-left: 1px solid var(--graye1);
}

.form-content p:not(.txt-underline) {
  margin-top: .5rem;
}

.file-list {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  padding: .8rem;
  width: 100%;
}

@media (max-width: 1280px) {
  .file-list {
    gap: 1.5rem;
  }
}

@media (max-width: 1024px){
  .file-list {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 1280px) {
  .modal.file1 .file-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}


@media (max-width: 720px) {
  .modal.file1 .file-list {
   		display: flex;
        flex-direction: row;
        flex-wrap: wrap;
  }
}


.editor {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* [dev] 관련자료 등록 CKEditor */
@media (max-width: 1280px) {
  .modal.file1 .editor {
    width: 56.8rem !important;
  }
}

@media (max-width: 720px) {
  .modal.file1 .editor {
    width:inherit !important;
  }
}

/* [dev] 제작관리 CKEditor*/
.cke_contents.cke_reset {
  height: 26.4rem !important;
}

@media (max-width: 1024px){
  .cke_contents.cke_reset {
    height: 16.4rem !important;
  }
}

.form-filter.file-info {
  margin-top: .5rem;
  height: 100%;
}

.form-filter.file-info>div:last-child {
  align-items: start;
}

.file-info-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .5rem 1rem;
  width: 100%;
  min-height: 4.4rem;
  max-height: 8.3rem;
  overflow-y: auto;
}

.file-info-list li {
  display: grid;
  grid-template-columns: 20rem 1fr;
}

@media (max-width: 720px) {
	.file-info-list li {
		display: flex;
	    flex-direction: column;
	    gap: 1rem;
	}
}


.file-info-list p {
  align-self: center;
}

.file-info-list input {
  align-self: center;
}

.file-info-list input:focus {
  border: 1px solid var(--gray9c);
}

/* 재편집요청 등록 (modal) */
.modal.re-edit {
  width: 120rem;
  max-height: 90vh;
  overflow: auto;
}

@media (max-width: 1280px) {
  .modal.re-edit {
    width: 59.5rem;
  }
}

.modal.re-edit>.scroll {
  height: 62.1rem;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (max-width: 1280px) {
  .modal.re-edit>.scroll {
    height: 42rem;
  }
}

@media (max-width: 1024px){
  .modal.re-edit>.scroll {
    height: 62.1rem;
    overflow-x: scroll;

  }
}

.modal.re-edit .filter-default {
  gap: .6rem 3rem;
}

@media (max-width: 1536px) {
  .modal.re-edit .filter-default {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    gap: .6rem 0;
  }

  .modal.re-edit .grid-column {
    grid-column: 1/2;
  }
}

@media (max-width: 1280px) {
  .modal.re-edit .filter-default {
    grid-template-columns: repeat(3, 1fr);
  }

  .modal.re-edit .grid-column {
    grid-column: 1/-1;
  }
}

.modal.re-edit .modal-content {
  overflow: hidden;
}

@media (max-width: 1024px) {
.modal.re-edit .modal-content {
	overflow:visible;
}
}

.modal.re-edit .modal-table {
  margin-top: .5rem;
}

.modal.re-edit .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding: 0 1rem;
  font-size: 1.2rem;
}

.modal.re-edit .table-header .btn-medium.blue096 {
  width: 9.97rem;
}

.modal.re-edit .modal-table .table-2nd tbody,
.modal.re-edit .tab .table-2nd tbody {
  display: block;
  width: 117.3rem;
  max-height: 12.2rem;
  overflow-y: auto;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(1),
.modal.re-edit .modal-table .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(3) {
  width: 11rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(4) {
  width: 9rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(5),
.modal.re-edit .modal-table .table-2nd td:nth-child(6) {
  width: 10rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(7) {
  width: 23.3rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(8) {
  width: 18rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(9) {
  width: 20rem;
}

.modal.re-edit .modal-table .table-2nd td:nth-child(10) {
  width: 8rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(1) {
  width: 0;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(3) {
  width: 11rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(4) {
  width: 9rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(5),
.modal.re-edit.details .modal-table .table-2nd td:nth-child(6) {
  width: 10rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(7) {
  width: 27.3rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(8) {
  width: 18rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(9) {
  width: 20rem;
}

.modal.re-edit.details .modal-table .table-2nd td:nth-child(10) {
  width: 8rem;
}

.modal.re-edit .modal-table .table-2nd .td-none,
.modal.re-edit .tab .table-2nd .td-none {
  width: 117.3rem !important;
  height: 12.1rem
}

@media (max-width: 1280px) {

  .modal.re-edit .modal-table .table-2nd .td-none,
  .modal.re-edit .tab .table-2nd .td-none {
    width: 56.9rem !important;
  }
}

/* 재편집요청 등록 > 재편집요청 목록 */
.re-edit-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1280px) {
  .re-edit-list {
    flex-direction: column;
  }
}

.re-edit-list>div {
  padding: .5rem;
  width: 58.5rem;
  height: 24.3rem;
  border: 1px solid var(--grayd3);
}

.re-edit-list>ul {
  width: 57.8rem;
}

@media (max-width: 720px) {
	.re-edit-list>ul {
	  width: 100%;
	}
	.re-edit-list>div {
	  width: 100%;
	  overflow-x: scroll;
	}
}


.re-edit-list header strong {
  padding-left: .5rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.re-edit-list .table-2nd tbody {
  display: block;
  width: 57.5rem;
  height: 16.1rem;
  overflow-y: auto;
}

.re-edit-list .table-2nd td:nth-child(1),
.re-edit-list .table-2nd td:nth-child(2) {
  width: 3rem;
}

.re-edit-list .table-2nd td:nth-child(3) {
  width: 9.5rem;
}

.re-edit-list .table-2nd td:nth-child(4) {
  width: 7rem;
}

.re-edit-list .table-2nd td:nth-child(5) {
  width: 8rem;
}

.re-edit-list .table-2nd td:nth-child(6) {
  width: 20rem;
}

.re-edit-list .table-2nd td:nth-child(7) {
  width: 7rem;
}

.re-edit-list .table-2nd .td-none {
  width: 57.4rem !important;
  height: 16rem;
}

.re-edit .filter-modal {
  margin-top: 0;
  padding: 1rem .5rem !important;
  grid-template-columns: auto auto auto;
  row-gap: .4rem;
}

.re-edit .filter-modal .grid-column {
  grid-column: 1/3;
}

.re-edit .filter-modal .grid-column2 {
  grid-column: 1/-1;
}

.re-edit .filter-modal input,
.re-edit .filter-modal select {
  width: 11rem;
}

.modal.re-edit .tab .table-2nd td:nth-child(1),
.modal.re-edit .tab .table-2nd td:nth-child(2),
.modal.re-edit.details .tab .table-2nd td:nth-child(1),
.modal.re-edit.details .tab .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.re-edit .tab .table-2nd td:nth-child(3),
.modal.re-edit .tab .table-2nd td:nth-child(4),
.modal.re-edit.details .tab .table-2nd td:nth-child(3),
.modal.re-edit.details .tab .table-2nd td:nth-child(4) {
  width: 8rem;
}

.modal.re-edit .tab .table-2nd td:nth-child(5),
.modal.re-edit.details .tab .table-2nd td:nth-child(5) {
  width: 57.9rem;
}

.modal.re-edit .tab .table-2nd td:nth-child(6),
.modal.re-edit .tab .table-2nd td:nth-child(7),
.modal.re-edit .tab .table-2nd td:nth-child(8),
.modal.re-edit.details .tab .table-2nd td:nth-child(6),
.modal.re-edit.details .tab .table-2nd td:nth-child(7),
.modal.re-edit.details .tab .table-2nd td:nth-child(8) {
  width: 8rem;
}

.modal.re-edit .tab .table-2nd td:nth-child(9),
.modal.re-edit.details .tab .table-2nd td:nth-child(9) {
  width: 11.4rem;
}

.modal.re-edit.details .modal-table .table-header {
  justify-content: end;
}

/* 공통팝업 */
.popup {
  width: 45rem;
  background: var(--white);
  border-radius: .5rem;
  text-align: center;
}

.popup-content {
  padding: 0 1rem;
}

.popup-filter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.filter-popup li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem 1rem;
  width: 43.2rem;
  background: var(--grayf5);
  border: 1px solid var(--grayee);
}


.filter-popup li:not(:first-child) {
  margin-top: .2rem;
}

.filter-popup .label {
  text-align: left;
  margin-top: -.2rem;
}

.filter-popup input,
.filter-popup select {
  margin-left: .8rem;
  width: 31.3rem !important;
}


@media (max-width: 1024px) {
   .filter-popup input, .filter-popup select {
     width : calc(100% - 7rem) !important;
   }
}


@media (max-width: 720px) {
   .filter-popup li {
     width: auto;
     min-width: 32rem;
   }

}

.popup .btn-group {
  margin-top: .9rem;
}

.popup .btn-white {
  padding: 0;
  width: 7rem;
}

.popup-table {
  margin-top: 2.1rem;
}

.popup-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: .036rem;
}

.btn-group-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  height: 5.5rem;
  border-top: 1px solid var(--black);
}

.popup>.btn-group-bottom {
  margin-top: 1.8rem;
}

.popup-table .table-2nd tbody {
  display: block;
  width: 43rem;
  height: 35.2rem;
  overflow-y: auto;
}

@media (max-width: 1280px) {
  .popup-table .table-2nd tbody {
    height: 17.5rem;
  }
}

@media (max-width: 1024px){
  .popup-table .table-2nd tbody {
    height: 35.2rem !important;
    display: contents;
  }
}

/* 상품정보 등록 팝업 */
@media (max-width: 1280px) {

  .popup.product .popup-table .table-2nd tbody,
  .popup.guest2 .popup-table .table-2nd tbody {
    height: 14rem;
  }
}

.popup-table .table-2nd td:nth-child(1) {
  width: 4rem;
}

.popup-table .table-2nd td:nth-child(2) {
  width: 11.5rem;
}

.popup-table .table-2nd td:nth-child(3) {
  width: 27.7rem;

}

.popup-table .table-2nd.col5 td:nth-child(1) {
  width: 4rem;
}

.popup-table .table-2nd.col5 td:nth-child(2) {
  width: 13.5rem;
}

.popup-table .table-2nd.col5 td:nth-child(3),
.popup-table .table-2nd.col5 td:nth-child(4),
.popup-table .table-2nd.col5 td:nth-child(5) {
  width: 8.5rem;
}

.popup-table.no3 .table-2nd tbody,
.popup-table.no4 .table-2nd tbody {
  width: 53rem;
}

.popup-table.no3 .table-2nd td:nth-child(1),
.popup-table.no4 .table-2nd td:nth-child(1) {
  width: 4rem;
}

.popup-table.no3 .table-2nd td:nth-child(2),
.popup-table.no4 .table-2nd td:nth-child(2) {
  width: 4rem;
}

.popup-table.no3 .table-2nd td:nth-child(3),
.popup-table.no4 .table-2nd td:nth-child(3) {
  width: 11.5rem;
}

.popup-table.no3 .table-2nd td:nth-child(4) {
  width: 25.1rem;
}

.popup-table.no4 .table-2nd td:nth-child(4) {
  width: 16.7rem;
}

.popup-table.no3 .table-2nd td:nth-child(5),
.popup-table.no4 .table-2nd td:nth-child(5) {
  width: 8.4rem;
}

.popup-table.no3 .table-2nd td:nth-child(6),
.popup-table.no4 .table-2nd td:nth-child(6) {
  width: 8.4rem;
}

.td-none {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray87);
  font-size: 1.4rem !important;
}

.popup .td-none {
  width: 43rem !important;
  height: 35.1rem !important;
}

@media (max-width: 1280px) {
  .popup .td-none {
    height: 17.4rem !important;
  }

  .popup.product .td-none,
  .popup.guest2 .td-none {
    height: 13.9rem !important;
  }
}

@media (max-width: 1024px){

  .popup .td-none,
  .popup.product .td-none,
  .popup.guest2 .td-none {
    height: 35.1rem !important;
  }
}

/* 공통팝업 > 상품정보 등록 */
.popup.product {
  width: 55rem;
}

.popup.product .filter-popup li {
  width: 53.2rem;
}

.popup.product .filter-popup input,
.popup.product .filter-popup select {
  width: 41.3rem !important;
}


.popup.product .filter-popup.w50{
   display:flex;
   width: 53.2rem;
}

.popup.product .filter-popup.w50 input, .popup.product .filter-popup.w50 select{
	width: 15rem !important;
}

.popup.product .filter-popup.w50 li {
	margin-top: .2rem;
	box-sizing: border-box;
	flex: 1;
}


@media (max-width: 720px) {

	.popup.vodIdPopup .popup-table.no2{
	   overflow-x: scroll;
	}

	.popup.product .filter-popup input, .popup.product .filter-popup select {
	    width: calc(100% - 7rem) !important;
	}
	.popup.product .filter-popup{
	  width:100%
	}
	.popup.product .filter-popup li {
	  width: 100%;
	  min-width: inherit;
	}
	.popup.product .filter-popup.w50{
        width: 100%;
        min-width: inherit;
	}


	.popup.product #goodsPopup_table #content-pgoodsName,
	.popup.product #goodsPopup_table #content-goodsName {
	  width: 11rem !important;
	}
}

@media (max-width: 640px) {

	.popup.product .filter-popup.w50 input, .popup.product .filter-popup.w50 select{
	width: initial !important;
	}

    .popup.product .filter-popup input,
	.popup.product .filter-popup select {
 		width: initial !important;
	}
	.popup.product .filter-popup.w50{
	 display: flex;
        flex-direction: column;

	}

}


.popup-table.no3 {
  display: table;
}

.popup.regist .pagination {
  margin-top: 1.8rem;
}

/* 공통팝업 > 참석자 조회 */
.popup.guest .table-2nd td:nth-child(1),
.popup.guest2 .table-2nd td:nth-child(1) {
  width: 4rem;
}

.popup.guest .table-2nd td:nth-child(2),
.popup.guest2 .table-2nd td:nth-child(2) {
  width: 5rem;
}

.popup.guest .table-2nd td:nth-child(3),
.popup.guest2 .table-2nd td:nth-child(3) {
  width: 9rem;
}

.popup.guest .table-2nd td:nth-child(4),
.popup.guest2 .table-2nd td:nth-child(4) {
  width: 16rem;
}

.popup.guest .table-2nd td:nth-child(5),
.popup.guest2 .table-2nd td:nth-child(5) {
  width: 9rem;
}

/* 공통팝업 > 스태프 조회 */
.popup.staff .table-2nd td:nth-child(1) {
  width: 4rem;
}

.popup.staff .table-2nd td:nth-child(2),
.popup.staff .table-2nd td:nth-child(3),
.popup.staff .table-2nd td:nth-child(4) {
  width: 13rem;
}

/* 제작관리 > 제작관리 */
.main.right {
  padding: 0 1rem 5rem 0;
}

.production-management>header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1rem;
  padding: 0 1rem;
  height: 5.7rem;
  border-bottom: 1px solid var(--graye6);
}

.prouduction-management-content {
  display: flex;
  gap: 1rem;
}

@media (max-width:720px) {
.production-management>header{
	display: flex;
    flex-direction: column;
    height: auto;
    padding: 1rem;

}
 .prouduction-management-content {
   flex-direction: column;
 }
}


/* 제작관리 > VOD 제작정보 */
.production-management .btn-folding-length {
  display: none;
}

.sidebar-info {
  margin-top: 2rem;
  padding-left: 1rem;
}

.sidebar-info header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
}

.production-info .btn-folding-width.no2 {
  border-radius: .5rem .5rem 0 0;
}

.production-info>header {
  border-bottom: 1px solid var(--graye6);
}

.sidebar-wrapper.no2 {
  padding: 0;
}

.sidebar-info .tab {
  margin-top: 2rem;
}

.sidebar-info .tab2 {
  margin-top: 3rem;
}

.sidebar-info .tab .tab-btn {
  width: 7.3rem;
  height: 2.8rem;
}

.sidebar-info .tab .tab-content dl {
  padding: 1rem 2rem;
  width: 41rem;
  min-height: 16rem;
  border: 1px solid var(--grayd3);
}

.sidebar-info .tab dl div {
  display: flex;
  justify-content: start;
  align-items: center;
  letter-spacing: 0.036rem;
}

.sidebar-info .tab dt,
.sidebar-info .tab dd {
  height: 2.3rem;
  line-height: 2.3rem;
}

.sidebar-info .tab dt {
  width: 6rem
}

.sidebar-info .tab dd {
  flex: 1;
}

.txt-blue {
  color: var(--blue007);
}

/* 제작관리 > VOD 제작정보 > 제작회의*/
.production-meeting {
  margin-top: 3rem;
}

.production-meeting>header {
  border: none;
}

.sidebar-info .table-default {
  width: 41rem;
}

.tab-content .table-default {
  margin-top: 0;
}

.production-meeting .table-default tbody,
.production-data .table-default tbody {
  display: block;
  width: 41rem;
  height: 12.1rem;
  overflow-y: auto;
}

.production-meeting .table-default td:nth-child(1) {
  width: 3rem;
}

.production-meeting .table-default td:nth-child(2) {
  width: 11.4rem;
}

.production-meeting .table-default td:nth-child(3) {
  width: 12.5rem;
}

.production-meeting .table-default td:nth-child(4) {
  width: 14.1rem;
}

.production-meeting .table-default tbody tr:hover {
  cursor: pointer;
}

/* 제작관리 > VOD 제작정보 > 관련자료*/
.production-data .tab-list li:first-child .tab-btn {
  width: 14rem;
}

.production-data li:first-child .table-default td:nth-child(1) {
  width: 3rem;
}

.production-data li:first-child .table-default td:nth-child(2) {
  width: 8rem;
}

.production-data li:first-child .table-default td:nth-child(3) {
  width: 26rem;
}

.production-data li:first-child .table-default td:nth-child(4) {
  width: 4rem;
}

.production-data li:last-child .table-default td:nth-child(1) {
  width: 4rem;
}

.production-data li:last-child .table-default td:nth-child(2) {
  width: 5.7rem;
}

.production-data li:last-child .table-default td:nth-child(3) {
  width: 8rem;
}

.production-data li:last-child .table-default td:nth-child(4) {
  width: 19.3rem;
}

.production-data li:last-child .table-default td:nth-child(5) {
  width: 4rem;
}

.btn-download {
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/btn_download.svg) no-repeat;
}

.btn-download:hover {
  filter: brightness(0) saturate(100%) invert(10%) sepia(59%) saturate(2561%) hue-rotate(195deg) brightness(99%) contrast(104%);
}

/* 제작관리 > VOD 요청사항 > 요청리스트 */
.VOD-request {
  flex: 1;
}

.VOD-inspection .scroll {
  overflow-y: hidden;
}

@media (max-width: 1280px) {

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))~.VOD-inspection .scroll {
    width: 76.5rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request,
  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])~.VOD-inspection .scroll {
    width: 115.8rem;
    overflow-x: auto;
  }

  .VOD-request .table-container,
  .VOD-request .table-2nd,
  .VOD-request .txt-none:not(.modal.file .txt-none) {
    width: 115.8rem !important;
  }
}

@media (max-width: 1024px){

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))~.VOD-inspection .scroll {
    width: 31.3rem;
    overflow-x: auto;
  }

  .VOD-request,
  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])~.VOD-inspection .scroll {
    width: 70.6rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))~.VOD-inspection .scroll>div,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))~.VOD-inspection .scroll>ul {
    width: 70.6rem;
  }
}

@media (max-width: 720px){

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))~.VOD-inspection .scroll {
    width: 96%;
    margin:0 2%;
    overflow-x: auto;
  }
}


@media (max-width: 1024px){
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-container {
    width: 70.6rem;
  }
}

.VOD-request-header,
.VOD-inspection-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.4rem;
  padding: 0 1rem;
}

@media (max-width: 1024px){
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .VOD-request-header {
    flex-direction: column;
    align-items: start;
    gap: .5rem;
    padding: 0 0 0 1rem;
  }
}

.VOD-request-header .btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1024px){
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .VOD-request-header .btn-group {
    margin-top: 1rem;
  }
}

/* [dev] 작업의뢰 > 업무요청작성 > 상단 버튼 */
.VOD-request-header .btn-group1 {
  display: flex;
  gap: .4rem;
}

.VOD-request-header .btn-group2 {
  display: none;
}

.VOD-request-content {
  position: relative;
  margin-top: 1rem;
}

.VOD-request .table-2nd {
  margin-top: 0;
  cursor: pointer;
}

.table-box {
  margin-top: 1.5rem;
}

.table-category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 3rem;
  background: var(--black);
  color: var(--white);
}

.table-box .table-container {
  height: 10.55rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.table-box .table-2nd tbody {
  border: 1px solid var(--graye7);
  border-bottom: none;
}

.txt-none {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8rem;
  border: 1px solid var(--graycd);
  color: var(--gray9f);
  font-size: 1.2rem;
  letter-spacing: 0.036rem;
}

.preferences .txt-none {
  border: none;
  border-bottom: 1px solid var(--graycd);
}

/* 제작관리 > 요청리스트 > 상세보기 */
.request-details,
.request-details2 {
  /* display: none; */
  margin-top: 1rem;
}

@media (max-width: 1024px){

  .VOD-request .request-details,
  .VOD-request .request-details2 {
    width: 70.6rem;
  }
}

@media (max-width: 1280px) {

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-details .table-2nd,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-details2 .table-2nd {
    width: 100%;
  }
}

@media (max-width: 1280px) {

  .request-details .table-2nd td:nth-child(4),
  .request-details2 .table-2nd td:nth-child(4) {
    width: 19rem;
  }
}

.request-details-list {
  margin-top: .8rem;
  font-size: 1.2rem;
}

.request-details-list>div {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: .7rem;
  padding: .5rem 1rem .8rem;
  background: var(--grayf8);
  border-radius: .5rem;
}

.border-blue {
  border: 1px solid var(--blue096) !important;
}

.request-details-list header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
}

.request-content {
  border: 1px solid var(--graya9);
  word-break: break-all;
}

.request-content header {
  padding: 0 1rem;
  background: var(--white);
  border-radius: .5rem;
}

.request-content span {
  font-weight: 300;
}

.request-content>div {
  padding: .8rem;
  min-height: 5rem;
}

.btn-file {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--gray5f);
  font-size: 1.2rem;
  text-decoration: underline;
}

.btn-file::before {
  content: '';
  width: 1.8rem;
  height: 1.8rem;
  background: url(../images/ico_file.svg) no-repeat;
}

.reply-waiting,
.reply-content {
  background: var(--white) !important;
  border: 1px solid var(--graya9);
  word-break: break-all;
}

.reply-waiting {
  position: relative;
  padding: .8rem;
  min-height: 10.5rem;
}

.user-name {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gray5f);
}

.user-name.red::before {
  content: '';
  width: 2rem;
  height: 2rem;
  background: url(../images/ico_user_red.svg) no-repeat;
}

.user-name.blue::before {
  content: '';
  width: 2.04rem;
  height: 2rem;
  background: url(../images/ico_user_blue.svg) no-repeat;
}

.reply-waiting>div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--grayaf);
  font-size: 1.4rem;
}

.reply-date {
  left: 14rem;
  top: .7rem;
  color: var(--gray94);
}

.reply-text,
.reply-write textarea {
  padding: .8rem;
  background: var(--white);
}

.reply-text {
  min-height: 11.3rem;
  word-break: break-all;
}

.reply-write textarea {
  height: 11.3rem;
}

.reply-text a {
  position: relative;
  top: -.2rem;
  width: 100%;
  color: var(--gray46);
  font-weight: 350;
  line-height: 150%;
  word-break: break-all;
}

.reply-text a:hover {
  color: var(--blue096);
  text-decoration: underline;
}

.reply-write,
.reply-modify {
  border: 1px solid var(--graye7);
}

.reply-write textarea {
  border: none;
}

.reply-write textarea:focus {
  border: 1px solid var(--grayd6);
}

.request-details .txt-blue {
  margin-left: .5rem;
}

.request-details-list .btn-group {
  display: flex;
  justify-content: end;
  align-self: center;
  gap: .5rem;
  width: 100%;
}

.reply-modify .btn-group {
  margin-left: 1.5rem;
}

.reply-write input+label,
.reply-modify input+label {
  margin: 0 1rem;
}

.reply-modify .check-type2:disabled[checked]+label {
  color: var(--black) !important;
}

.reply-modify .btn-group p {
  line-height: 2rem;
}

.request-details-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: .3rem;
  margin-top: 1.4rem;
  padding: 0 1rem;
}

.request-details-list .reply-QA {
  background: var(--white);
  border: 1px solid var(--graya9);
}

.reply-QA .product-info {
  padding: .5rem;
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .reply-QA .product-info {
    width: 113.8rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .reply-QA .product-info {
    width: 74.5rem;
  }
}

@media (max-width: 1024px){
  .reply-QA .product-info {
    width: 68.4rem !important;
  }
}

.reply-QA .table-default {
  border-left: 1px solid var(--graye7);
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .reply-QA .table-default:not(.product-info .table-default) {
    width: 81rem;
  }
}

@media (max-width: 1024px){
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .reply-QA .table-default {
    width: 121.3rem;
  }
}

.reply-QA .table-default th:last-child,
.reply-QA .table-default td:last-child {
  min-width: 15rem;
  max-width: 40rem;
}

.request-details-list .reply-QA.no2 {
  background: var(--grayf8);
  border: 1px solid var(--graye7);
}

.reply-QA.no2 .product-info {
  padding-bottom: 10rem;
  border-radius: .5rem;
}

/* 제작관리 > 제작회의 등록 */
@media (max-width: 1280px) {
  .modal-prompt.edit .modal-content {
    height: 38.9rem;
    overflow-y: auto;
  }
}

@media (max-width: 1024px){
  @media (max-width: 1280px) {
    .modal-prompt.edit .modal-content {
      height: auto;
      overflow-y: hidden;
    }
  }
}

.modal-prompt.edit .guest,
.modal-prompt.meeting .guest {
  height: 100%;
  padding: .3rem 0;
}

.input-guest .manager-list {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .5rem;
}

.input-guest .manager-list>li {
  align-self: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: 0 .5rem;
  width: 16.5rem;
  min-height: 2.5rem;
  line-height: 160%;
  font-size: 1rem;
  border: 1px solid var(--grayd3);
}

.modal-prompt.meeting .guest>div>p {
  padding: .5rem 1rem;
  color: var(--gray33);
}

.meeting-room {
  position: relative;
  height: 4rem !important;
}

.select {
  position: absolute;
  left: 10rem;
  top: .3rem;
  z-index: 30;
}

.select.active input {
  border-radius: .5rem .5rem .5rem 0;
}

.select .selected,
.select ul {
  display: none;
}

.select.active .selected,
.select.active ul {
  display: block;
  width: 26.4rem;
  cursor: pointer;
}

.select .selected {
  padding: .8rem;
  background: url(../images/ico_arrow_down.svg) var(--white) no-repeat right center;
  border-left: 1px solid var(--grayd6);
  border-right: 1px solid var(--grayd6);
}

.select ul {
  height: 16.2rem;
  overflow-y: auto;
  border: 1px solid var(--blueae);
  border-top: 1px solid var(--gray1d);
}

.select ul li {
  display: flex;
  gap: 1.2rem;
  padding: .8rem;
}

.select .blue {
  background: var(--blueef);
}

.select .gray {
  background: var(--graye7);
}

.select .blue:hover {
  background: var(--bluecc);
}

.select .gray:hover {
  background: var(--grayd9);
}

.select .txt-green {
  color: var(--green11);
}

.select .txt-dark-gray {
  color: var(--gray5f);
}

.select ul::-webkit-scrollbar {
  width: .4rem;
}

.select ul::-webkit-scrollbar-thumb {
  width: .4rem;
}

/* 제작관리 > 등록상품정보 */
.product-list {
  position: absolute;
  left: 55%;
  top: 16.3rem;
  transform: translateX(-50%);
  display: none;
  padding-bottom: 1.3rem;
  width: 127.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--blue007);
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  z-index: var(--zindex);
}

@media (max-width: 1280px) {
  .product-list {
    width: 102.1rem;
  }
}

@media (max-width: 1024px){
  .product-list {
    left: 50%;
    width: 70rem;
  }
}


@media (max-width: 720px){
  .product-list {
    left: 50%;
    width: 90%;
  }
}


.product-list header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.7rem;
  height: 4.6rem;
  background: var(--grayf8);
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  border-bottom: 1px solid var(--black);
}

.product-list header strong {
  font-size: 1.4rem;
  font-weight: 400;
}

@media (max-width: 1024px){
  .product-list .scroll {
    width: 69.8rem;
  }
}


@media (max-width: 720px){
  .product-list .scroll {
    width: 100%;
  }
}

.product-list .table-default {
  margin-top: 0;
  width: 127rem;
}

@media (max-width: 1280px) {
  .product-list .table-default {
    width: 101.9rem;
  }
}

.product-list .table-default thead {
  border-top: none;
}

.product-list .table-default tbody {
  display: block;
  width: 127rem;
  height: 24.1rem;
  overflow-y: auto;
}

@media (max-width: 1280px) {
  .product-list .table-default tbody {
    width: 101.9rem;
  }
}

.product-list .table-default thead tr:first-child {
  border-bottom: none;
}

.product-list .table-default tbody td:nth-child(1) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(2) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(3) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(4) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(5) {
  display: block;
  width: 49.9rem;
  height: 3.9rem;
  line-height: 3.9rem;
}

@media (max-width: 1280px) {
  .product-list .table-default tbody td:nth-child(5) {
    width: 24.8rem;
  }
}

.product-list .table-default tbody td:nth-child(6) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(7) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(8) {
  width: 4rem;
}

.product-list .table-default tbody td:nth-child(9) {
  width: 9.9rem;
}

.product-list .table-default tbody td:nth-child(10) {
  width: 7.9rem;
}

.product-list .table-default tbody td:nth-child(11) {
  width: 7.9rem;
}

.product-list .btn-white.large {
  margin-top: 1.3rem;
}

/* 제작관리 > 과거자료등록 */
.modal.history {
  width: 90rem;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 1280px) {
  .modal.history {
    width: 90.6rem;
  }
}

@media (max-width: 1024px){
  .modal.history {
    width: 65rem;
  }
}

@media (max-width: 1280px) {
  .modal.history>.scroll {
    height: 39.5rem;
  }
}

@media (max-width: 1024px){
  .modal.history>.scroll {
    height: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 1536px) {
  .modal.history .filter-default {
    display: flex;
  }
}

@media (max-width: 1024px){
  .modal.history .filter-default {
    display: grid;
    grid-template-columns: 25rem 1fr;
  }
}

@media (max-width: 1536px) {
  .modal.history .filter-default li:nth-child(1) {
    grid-column: 2 / 4;
  }
}

@media (max-width: 1280px) {
  .modal.history .filter-default li:nth-child(1) {
    grid-column: 1 / -1;
  }
}

.modal-content2 {
  padding: 0 1rem;
}

.modal-table2 {
  margin-top: 2rem;
}

.modal.history .table-header {
  margin-top: 0;
}

.modal.history .table-header div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.2rem;
  height: 3.4rem;
  font-size: 1.4rem;
  border-bottom: .2rem solid var(--black);
}

.modal.history .modal-content2>div:first-child .table-2nd {
  margin-top: 1rem;
  width: 88rem;
}

.modal.history .modal-content2>div:last-child .table-2nd {
  margin-top: .5rem;
}

.modal.history .modal-content2 .table-2nd tbody {
  display: block;
  width: 88rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal.history .modal-content2>div:first-child .table-2nd tbody {
  height: 17.6rem;
}

.modal.history .modal-content2>div:last-child .table-2nd tbody {
  height: 10.5rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(1),
.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(2) {
  width: 8rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(3) {
  width: 13rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(4) {
  width: 9rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(5) {
  width: 10rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(6) {
  width: 36rem;
}

.modal.history .modal-content2>div:first-child .table-2nd td:nth-child(7) {
  width: 8rem;
}

@media (max-width: 1024px){


  .modal.history .modal-content2 .modal-table2:last-child{
    overflow-x: scroll;
  }


  .modal.history .modal-content2>div:last-child .table-2nd{
    width: 88rem;
  }

  .modal.history .modal-content2>div:last-child .table-2nd tbody  {
    width: 88rem;
  }

  .modal.history .modal-content2 thead th{
   width:auto;
  }

}

.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(1),
.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(2) {
  width: 4rem;
}

.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(3),
.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(4) {
  width: 8rem;
}

.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(5) {
  width: 19rem;
}

.modal.history .modal-content2>div:last-child .table-2nd td:nth-child(6) {
  width: 45rem;
}

@media (max-width: 1024px){
  .modal.history .modal-content2>div:last-child .table-2nd td:nth-child(6) {
    width: 20rem;
  }
}

.modal.history .td-none {
  width: 87.3rem !important;
}

@media (max-width: 1024px){
  .modal.history .td-none {
    width: 63rem !important;
  }
}

.modal .btn-group-bottom {
  margin-top: 1rem;
}

/* 제작관리 > 업무요청작성 > 주요업무 */
.work-request-write {
  /* display: none; */
  margin-top: 2rem;
}

.work-request-write .request-form {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.request-filter.work {
  display: flex;
  align-items: center;
}

.request-filter.work ul,
.request-filter.QA {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1.8rem;
  height: 3.6rem;
  border: 1px solid var(--graye1);
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-filter.work ul {
    gap: 0 1.5rem;
  }
}

@media (max-width: 1024px){
  .request-filter.work ul {
    height: 6rem;
  }
}

.request-filter.work .form-filter ul {
  border-right: none;
}

@media (max-width: 1024px){
  .request-filter.work .form-filter ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }
}

.request-filter.work>li:last-child {
  flex: 1;
}

.request-filter.work>li:last-child>ul {
  border-left: none;
}

.request-write .form-container.align {
  border-top: none;
  border-bottom: none;
}

.request-container .form-container.align input {
  border-radius: 0;
}

.data-list {
  height: 9.4rem;
  overflow-y: auto;
}

.data-list>li {
  display: grid;
  grid-template-columns: 11.8rem 21.5rem 6.5rem;
  gap: 1rem;
  height: 2.4rem;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
	.data-list{
	 	height:auto;
	}

	.data-list>li{
		display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
	}
}


.grid5 {
  display: grid;
  grid-template-columns: 5.5rem 7.5rem 21.8rem 21.5rem 6.5rem !important;
  gap: 1rem;
  font-size: 1.1rem;
}

.grid5:hover {
  text-decoration: underline;
  text-underline-offset: .2rem;
  cursor: pointer;
}

.data-list .check-type2+label {
  font-size: 1.1rem;
  line-height: 2.4rem;
}

.btn-search {
  padding-left: 2.5rem;
  background: url(../images/ico_search.svg) no-repeat left center;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: .3rem;
}

.data-list+.btn-search {
  margin-top: 1rem;
}

@media (max-width: 1280px) {
  .VOD-request .work-request-write .file-list.grid {
    display: grid;
    grid-template-columns: repeat(6, auto);
  }
}

.work-request-write .file-list .grid-column {
  grid-column: 1/3;
}

.form-content.manager {
  display: grid;
  grid-template-columns: 1fr 9rem;
  background: var(--white);
}

.form-content.manager .scroll {
  max-height: 6.8rem;
  overflow-y: auto;
}

.form-content.manager .manager-list {
  display: grid;
  grid-template-columns: repeat(7, auto);
}

@media (max-width: 1536px) {
  .form-content.manager .manager-list {
    grid-template-columns: repeat(6, auto);
  }
}

@media (max-width: 1280px) {
  .form-content.manager .manager-list {
    grid-template-columns: repeat(4, auto);
  }
}

.form-content.manager .manager-list li {
  line-height: 200%;
}

.manager-list .btn-x {
  margin-left: .5rem;
}

.form-content.manager .btn-group {
  border: none;
}

.work-request-write .tab3 {
  position: relative;
  min-width: 70.6rem;
}

.work-request-write .btn-group {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: .3rem;
  padding: 0 1rem;
}

.work-request-write .btn-group.top {
  position: absolute;
  right: 0;
  top: 0;
}

.work-request-write .btn-group.bottom {
  margin-top: 1.4rem;
}

.work-request-write .btn-group button {
  min-height: 2.5rem;
}

.work-request-write .btn-group>div:last-child {
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* 제작관리 > 업무요청작성 > 업무요청사항 관리 */
.modal.manage .table-2nd {
  width: 97.8rem;
}

@media (max-width: 1280px) {
  .modal.manage {
    width: 65rem;
  }
}

@media (max-width: 1280px) {
  .modal.manage .scroll {
    width: 63rem;
  }
}

/* 제작관리 > 업무요청작성 > QA > 관련자료 */
.request-editor2 {
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-editor2 {
    flex-direction: column;
  }
}

@media (max-width: 1280px) {
  .VOD-request .request-editor2 {
    flex-direction: column;
  }
}

.request-editor2>div:not(.editor) {
  height: 33.5rem;
  border: 1px solid var(--graye1);
}

.request-editor2>div:last-child:not(.editor) {
  width: 100%
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-editor2>div:not(.editor) {
    width: 100%;
    border-top: 1px solid var(--graye1);
  }
}

@media (max-width: 1280px) {
  .VOD-request .request-editor2>div {
    width: 100%;
  }
}

.QA-table {
  width: 40rem;
}

.QA-table .table-header2 {
  height: 1.9rem;
}

.QA-table .table-default {
  margin-top: 1rem;
  width: 39.8rem;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-table .table-default {
    width: 107.7rem;
  }
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-table .table-default {
    width: 76.3rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .QA-table .table-default {
    width: 115.8rem;
  }
}

@media (max-width: 1024px){
  .VOD-request .QA-table .table-default {
    width: 70.5rem !important;
  }
}

.QA-table .table-default tbody {
  display: block;
  width: 39.8rem;
  height: 25.3rem;
  overflow-y: auto;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-table .table-default tbody {
    width: 107.7rem;
  }
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-table .table-default tbody {
    width: 76.3rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .QA-table .table-default tbody {
    width: 115.3rem;
  }
}

@media (max-width: 1024px){
  .VOD-request .QA-table .table-default tbody {
    width: 70.6rem !important;
  }
}

.QA-table .table-default td {
  height: 4rem;
}

.QA-source .QA-table tbody td:nth-child(1) {
  width: 3rem;
}

.QA-source .QA-table tbody td:nth-child(2) {
  width: 3rem;
}

.QA-source .QA-table tbody td:nth-child(3) {
  width: 8.5rem;
}

.QA-source .QA-table tbody td:nth-child(4) {
  width: 25.3rem;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-source .QA-table tbody td:nth-child(4) {
    width: 93.4rem;
  }
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-source .QA-table tbody td:nth-child(4) {
    width: 61.8rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .QA-source .QA-table tbody td:nth-child(4) {
    width: 101.3rem;
  }
}

@media (max-width: 1024px){
  .QA-source .QA-table tbody td:nth-child(4) {
    width: 56.1rem !important;
  }
}

.request-write .QA-table tbody .tr-none {
  border-bottom: none;
}

.request-write .QA-table tbody .td-none {
  font-size: 1.3rem !important;
  height: 25.2rem;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-write .QA-table tbody .td-none {
    width: 107.7rem !important;
  }
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .request-write .QA-table tbody .td-none {
    width: 115.3rem !important;
  }

  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-write .QA-table tbody .td-none {
    width: 76.3rem !important;
  }
}

@media (max-width: 1024px){

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .request-write .QA-table tbody .td-none,
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .request-write .QA-table tbody .td-none {
    width: 70.5rem !important;
  }
}

.request-editor2 .editor {
  width: 100%;
}

/* 제작관리 > 업무요청작성 > QA > 정보고시 */
.QA-info {
  display: none;
}

.QA-info .QA-table tbody td:nth-child(1) {
  width: 3rem;
}

.QA-info .QA-table tbody td:nth-child(2) {
  width: 3rem;
}

.QA-info .QA-table tbody td:nth-child(3) {
  width: 7rem;
}

.QA-info .QA-table tbody td:nth-child(4) {
  width: 22.8rem;
}

@media (max-width: 1536px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-info .QA-table tbody td:nth-child(4) {
    width: 90.7rem;
  }
}

@media (max-width: 1280px) {
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .QA-info .QA-table tbody td:nth-child(4) {
    width: 59.3rem;
  }

  .sidebar-wrapper.no2:has(.sidebar-info[style*="display: none"])+.VOD-request .QA-info .QA-table tbody td:nth-child(4) {
    width: 98.8rem;
  }
}

@media (max-width: 1024px){
  .QA-info .QA-table tbody td:nth-child(4) {
    width: 53.6rem !important;
  }
}

.QA-info .QA-table tbody td:nth-child(5) {
  width: 4rem;
}

.QA-info .tr-blue {
  background: var(--bluecc);
}

.QA-info .tr-red {
  background: var(--redffd);
}

.QA-info .tr-blue {
  background: var(--bluecc);
}

.QA-info .tr-red.tr-blue {
  background: var(--bluecc);
}

.product-info {
  background: var(--white);
}

.product-info .table-header2 {
  display: grid;
  grid-template-columns: 1fr 23rem;
  row-gap: 1.5rem;
}

.product-info .table-header2 p,
.product-info .table-header2 button {
  justify-self: end;
}

.product-info .table-header2>div span:last-child::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: '/';
  width: 3rem;
  height: 1.4rem;
}

.product-info .product-type,
.product-info .product-type li {
  display: flex;
  align-items: center;
  gap: 3rem;
}

@media (max-width: 1024px){

  .product-info .product-type,
  .product-info .product-type li {
    gap: 1rem;
  }
}

@media (max-width: 1280px) {
  .product-type input {
    line-height: 3.5rem;
  }
}

.product-info .table-default {
  margin-top: 1rem;
}

@media (max-width: 1280px) {
  .product-info .table-default {
    margin-top: 1rem;
  }
}

@media (max-width: 1024px){
  .sidebar-wrapper.no2:has(.sidebar-info:not([style*="display: none"]))+.VOD-request .reply-QA.no2 .product-info .table-default {
    width: 67.4rem;
  }
}

.product-info .table-default tbody tr:hover {
  background: transparent;
}

.product-info tbody tr:last-child:not(.request-details-list tbody tr:last-child) {
  border-bottom: none;
}

.product-info th,
.request-details-list td {
  border-right: 1px solid var(--graye7);
}

.product-info tbody th,
.product-info td {
  padding: 2rem;
  text-align: left;
}

.product-info .table-default td {
  line-height: 174%;
}

.product-info .table-default td[style="text-align: center;"] {
  height: 20rem;
  color: var(--gray87);
  font-size: 1.3rem;
}

.product-info .padding-none {
  padding: 0;
}

.product-info textarea {
  position: relative;
  height: 100%;
  border: none;
  border-radius: 0;
}

.product-info textarea::placeholder,
.modal-prompt.cancel textarea::placeholder {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.product-info textarea::placeholder {
  color: var(--blue007);
}

.product-info textarea:focus {
  margin: -1px;
  border: 1px solid rgba(0, 122, 250, .5);
  border-radius: .3rem;
}

/* 제작관리 > 검수/입수 > 등록창 */
.VOD-inspection {
  display: none;
  width: 100%;
}

.VOD-inspection-header {
  height: 3.1rem;
  border-bottom: 1px solid var(--graye7);
}

.VOD-register {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--grayee);
  border: 1px solid var(--grayd9);
  border-radius: .5rem;
  font-size: 1.2rem;
}

.VOD-register>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  height: 100%;
  background: var(--white);
  border-radius: .5rem;
  border: 1px solid var(--grayd9);
  color: var(--gray5f);
}

.ico-upload,
.ico-select {
  padding-left: 2.6rem;
  color: var(--gray5f);
  line-height: 2.4rem;
}

.ico-upload {
  background: url(../images/ico_upload.svg) no-repeat left center / 2.4rem auto;
}

.ico-select {
  background: url(../images/ico_select.svg) no-repeat left center / 2.4rem auto;
}

.VOD-upload>div:nth-child(2) {
  height: 3.4rem;
  line-height: 3.4rem;
}

.VOD-upload .btn-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.VOD-upload .btn-group button:last-child {
  width: 14.5rem;
}

.VOD-select select {
  color: var(--gray5f);
}

.ico-edit {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/ico_edit.svg) no-repeat;
}

.VOD-register .btn {
  margin-top: .5rem;
}

/* 제작관리 > 검수/입수 > 리스트 */
.VOD-inspection-list {
  margin-top: 1rem;
}

.VOD-inspection-list .inspection-status .btn {
  height: 2.5rem;
}

.VOD-inspection-list>li {
  display: flex;
  font-size: 1.2rem;
}

.inspection-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  background: var(--black);
  border-radius: 0.5rem 0rem 0rem 0.5rem;
  color: var(--white);
  font-size: 1.4rem;
}

.VOD-inspection-list ul:not(.notice-list) {
  flex: 1;
  border: 1px solid var(--grayd9);
  border-left: none;
  border-radius: 0rem 0.5rem 0.5rem 0rem;
}

.inspection-cancel,
.VOD-inspection-list .inspection-status {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

@media (max-width:1024px) {
	.inspection-cancel,
	.VOD-inspection-list .inspection-status {
		display: flex;
		flex-direction: column;
	}

}


/* [dev] 우측 버튼 미노출 시 */
.inspection-cancel.btn-none {
  grid-template-columns: 1fr;
}

.VOD-inspection-list .inspection-status {
  border-bottom: 1px dashed var(--grayd9);
}

.inspection-cancel {
  margin-top: 1rem;
  border-radius: .5rem;
  border: 1px solid var(--grayd9);
  font-size: 1.2rem;
}

.inspection-status>div:first-child,
.inspection-cancel>div:first-child {
  align-self: center;
  display: grid;
  grid-template-columns: 8.9rem 1fr;
  gap: 1rem;
}

.inspection-cancel>button {
  align-self: center;
  width: 9.8rem;
}

.VOD-inspection-list button:not(.btn-close-square) {
  min-width: 9.8rem;
  max-width: 13rem;
}

.VOD-inspection-list .inspection-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--grayd9);
}

.inspection-input>button {
  align-self: center;
}

.VOD-complete {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  height: 16rem;
}

@media (max-width:1024px) {
	.VOD-complete {
	    gap:.5rem;
	}
	.VOD-complete .VOD-content .badge.dark-green{
	   height:auto;
	}
}

@media (max-width:780px) {
	.VOD-complete {
	    height: auto;
        display: flex;
        flex-direction: row;
        padding: 1rem;
        align-items: flex-start;
        flex-wrap: wrap;
	}
}


@media (max-width:740px) {
	.VOD-complete {
		display: flex;
        flex-direction: column;
        height: auto;
        padding: 1rem;
        align-items: flex-start;
	}
}


.VOD-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22rem;
  height: 14rem;
  border-radius: .5rem;
  border: 1px solid var(--grayd9);
}

.VOD-content {
  flex: 1;
  height: 14rem;
}

.VOD-content strong {
  display: block;
  margin-top: .8rem;
  font-size: 1.4rem;
  font-weight: 350;
}

.VOD-info {
  margin-top: 1rem;
}

.VOD-content input {
  margin-top: 1.4rem;
}

.VOD-txt {
	padding: 0 .8rem;
    width: 100%;
    height: 3.4rem;
    border-radius: .5rem;
    border: 1px solid var(--grayd3);
    color: var(--black);
    font-family: "Noto Sans KR", sans-serif;
    font-size: 1.2rem;
    font-weight: 350;
    line-height: 3.4rem;
    margin-top : 1.4rem;
}

.VOD-txt.readonly-w {
  background: #fff;
}

.VOD-inspection-list.readonly,
.inspection-number.readonly {
  background: var(--grayed);
}

.inspection-number.readonly {
  border: 1px solid var(--grayd9);
  color: var(--gray96);
}

.status-txt {
  line-height: 1.8rem;
}

.notice-list {
  margin-top: 1rem;
}

.notice-list>li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notice-list>li:not(:first-child) {
  margin-top: .5rem;
}

.notice-list>li .btn-close-square {
  margin-left: 3.5rem;
}

.btn-close-square {
  width: 1.4rem;
  height: 1.4rem;
  background: url(../images/btn_close_square.svg) no-repeat;
}

.inspection-cancel.readonly {
  background: var(--grayed);
}

/* 제작관리 > 촬영본 VOD 등록 */
.modal.VOD {
  width: 50rem;
  font-size: 1.2rem;
}

@media (max-width: 1280px) {
  .modal.VOD .modal-content {
    height: 39.8rem;
    overflow-y: auto;
  }
}

@media (max-width: 1024px){
  .modal.VOD .modal-content {
    height: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 720px){
  .modal.VOD  {
    height: 85vh;
    overflow-y: scroll;
  }
}


.modal.VOD .modal-content>div:first-child {
  margin-top: 1rem;
}

.modal.VOD .modal-content>div:last-child {
  margin-top: 2rem;
}

.modal.VOD strong {
  font-weight: 350;
}

.shooting-schedule-list {
  margin-top: .8rem;
}

.VOD-regist input {
  margin-top: .8rem;
}

.modal.VOD .editor {
  margin-top: .5rem;
  border: 1px solid var(--graycf);
}

/* 편집관리 > 사이드바 */
@media (max-width: 1536px) {
  .edit-scroll {
    overflow-x: auto;
  }

  .edit-schedule .scroll {
    overflow-x: visible !important;
  }
}

@media (max-width: 1280px) {
  .edit-scroll {
    overflow-x: hidden;
  }

  .edit-schedule .scroll {
    overflow-x: auto !important;
  }
}

.edit-management {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
	.edit-management {
	  overflow-x: scroll ;
	}
}


.sidebar-search {
  padding-bottom: 1rem;
  width: 35.5rem;
  height: 79.3rem;
  border: 1px solid var(--graye7);
}

.edit-management .sidebar-search {
  height: 85.8rem;
}

.VOD-filter {
  display: grid;
  grid-template-columns: 12rem 12rem 9.3rem;
  gap: .3rem 1px;
  padding: 1rem;
  background: var(--grayf8);
  border-bottom: 1px solid var(--graye7);
}

.grid-column.no3 {
  grid-column: 2/-1;
}

.VOD-filter:not([class=".no2"]) .btn-white {
  grid-column: 1/-1;
  justify-self: end;
}

.VOD-list {
  margin-top: 2rem;
  padding: 0 1rem;
}

.VOD-list p {
  font-size: 1rem;
}

.table-2nd.no2 th,
.table-2nd.no2 td {
  text-align: center;
  height: 4rem;
}

.VOD-list .table-2nd.no2:has([colspan]) td {
  width: 33.5rem !important;
}

.txt-underline {
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.VOD-list .table-2nd .active {
  background: rgba(0, 163, 255, 0.16);
}

.VOD-list .pagination {
  margin-top: 2rem;
}

/* [dev] VOD 목록 사용 여부 contextmenu */
.context-menu {
  width: 15rem;
  background-color: var(--white);
  border: 1px solid var(--graycc);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.context-menu ul {
  padding: 0;
  margin: 0;
}

.context-menu li {
  padding: .8rem 1.2rem;
  cursor: pointer;
}

.context-menu li:hover {
  background-color: var(--grayf0);
}

/* 편집관리 > 타임테이블 */
@media (max-width: 1920px) {
  .edit-schedule {
    width: 152.4rem;
  }
}

@media (max-width: 1536px) {
  .edit-schedule {
    width: 114rem;
  }
}

@media (max-width: 1280px) {
  .edit-schedule {
    width: 82.5rem;
  }
}

@media (max-width: 780px){
  .edit-schedule {
    width: 37.3rem;
  }
}

.edit-schedule header {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

@media (max-width: 1024px){
  .edit-schedule header {
    gap: 1rem;
  }
}

.edit-schedule header strong {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6rem;
  cursor: pointer;
}

.btn-arrow-left2,
.btn-arrow-right2 {
  width: 1.1rem;
  height: 2rem;
}

.btn-arrow-left2 {
  background: url(../images/btn_arrow_left.svg) no-repeat left top 1px / 1.1rem 2rem;
}

.btn-arrow-right2 {
  background: url(../images/btn_arrow_right.svg) no-repeat left top 1px / 1.1rem 2rem;
}

.edit-daily-schedule,
.shooting-daily-schedule {
  display: flex;
  align-items: start;
  gap: .2rem;
  margin-top: .5rem;
}

/* 촬영스케줄관리 > 타임라인 */
.table-timeline {
  width: 8rem;
}

.edit-daily-schedule .table-timeline th,
.shooting-schedule .table-timeline thead tr:first-child th {
  border-radius: .5rem .5rem 0 0;
}

.edit-daily-schedule .table-timeline th {
  box-shadow: 0 0 0 1px var(--graye7);
  border-bottom: 1px solid var(--black);
}


.shooting-schedule .table-timeline thead tr:last-child th {
  border-left: 1px solid var(--graye7);
  border-right: 1px solid var(--graye7);
  border-bottom: 1px solid var(--gray9c);
}

.table-timeline tbody {
  border-left: 1px solid var(--graye7);
  border-right: 1px solid var(--graye7);
}

.table-timeline tbody tr {
  border-bottom: 1px solid var(--graye7);
}

.table-timeline tbody tr:hover {
  background: transparent;
}

.table-timeline th,
.table-timeline td {
  letter-spacing: .036rem;
}

.table-timeline th {
  height: 4rem;
  background: var(--grayf8);
  font-weight: 400;
}

.table-timeline td {
  height: 6rem;
  font-size: 1.3rem;
  text-align: center;
}

.schedule-list {
  display: flex;
  gap: .2rem;
}

.schedule-list .txt-red{
	font-size:1.1rem;
}

.schedule-list .table-schedule.no2 th > div{
	justify-content: center;
	display:flex;
}

.table-schedule:not([class="no2"]),
.table-schedule:not([class="no3"]) {
  width: 100%;
}

@media (max-width: 1536px) {

  .table-schedule:not([class="no2"]),
  .table-schedule:not([class="no3"]) {
    width: 28.8rem !important;
  }
}

.table-schedule.no2 {
  width: 35.4rem !important;
}

.table-schedule:not(.table-schedule.no3) thead tr:first-child th {
  background: var(--grayf1);
  border-radius: .5rem .5rem 0 0;
  border-bottom: 1px solid var(--black);
  font-size: 1.3rem;
}

.table-schedule tbody {
  border: 1px solid var(--graye7);
  border-top: none;
}

.solid {
  border-top: 1px solid var(--graye7);
}

.table-schedule.no2 .solid {
  border-top: 1px solid var(--gray9c);
}

.dashed {
  border-top: 1px dashed var(--gray9c) !important;
}

.table-schedule tbody td:not(.table-schedule.no3 tbody td):hover {
  background: var(--yellowffe);
}

.table-schedule tbody td.drag-hover,
.table-schedule.no2 tbody td.drag-hover {
  background: var(--yellowffe);
}

.table-schedule th,
.table-schedule td {
  background: var(--grayf8);
}

.table-schedule th {
  height: 4rem;
  font-weight: 400;
  letter-spacing: .036rem;
  text-align: center;
}

.table-schedule td {
  position: relative;
  text-align: center;
}

.edit-daily-schedule .table-schedule td {
  height: 3rem;
}

.shooting-daily-schedule .table-schedule td {
  height: 1rem;
}

.schedule-card {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: .5rem;
  width: 94%;
  background: var(--white);
  border: 1px dashed var(--blue096);
  text-align: left;
  z-index: 10;
  /* height: 2.8rem; */
  font-size: 1.1rem;
  letter-spacing: 0.036rem;
  overflow: hidden;
}

.schedule-card b {
  display: inline-block;
  padding-left: 1.5rem;
  background: url(../images/ico_dot.svg) no-repeat left top .5rem;
  font-weight: 600;
  width: 24.5rem;
}

.schedule-card p {
  margin-left: 1.3rem;
  font-weight: 300;
  line-height: 2.8rem;
}

/* 편집관리 > 편집요청 등록 */
.content-list,
.radio-group,
.shooting-schedule-list {
  padding: .6rem;
  border: 1px solid var(--graycf);
}

.content-list,
.shooting-schedule-list {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.content-list>li:not(.radio),
.radio-group>li,
.shooting-schedule-list>li {
  display: flex;
  align-items: center;
  height: 4rem;
  font-size: 1.2rem;
  font-weight: 350;
  background: var(--grayf5);
  border: 1px solid var(--grayee);
}

.content-list>li>div:first-child,
.radio-group>li>div:first-child,
.shooting-schedule-list>li>div:first-child {
  display: flex;
  align-items: center;
  padding-left: 1.5rem;
  width: 10rem;
  height: 100%;
}

.content-list>li:first-child>div:last-child,
.radio-group>li:first-child>div:last-child,
.shooting-schedule-list>li:first-child>div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding-right: 1.5rem;
}


.content-list>li>div:nth-child(2),
.radio-group>li>div:nth-child(2),
.shooting-schedule-list>li>div:nth-child(2){
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 10rem);
    padding-right: .5rem;
}


.content-list input:not(.input-calendar),
.content-list .input-guest,
.content-list textarea {
  width: 39.3rem !important;
}

.modal-prompt.group .content-list .gap {
	width : auto;
}
.modal-prompt.group .content-list .gap input {
	width:22rem !important;
}


.modal-prompt.group .content-list li:nth-child(2) div > input  {
	width:11.1rem !important;
}


@media (max-width: 740px) {
	.content-list>li:not(.radio), .radio-group>li, .shooting-schedule-list>li {
	 height: auto;
	 min-height: 3rem;
	}
}


@media (max-width: 640px) {
	.content-list input:not(.input-calendar),
	.content-list textarea {
	 width: 18rem !important;
	}

	.content-list .input-guest{
	 width: 18rem !important;
	}

	.request-time.no2>div:last-child {
	  display:flex;
       width: 18rem !important;
	  flex-direction: column;
	}



	.modal-prompt.meeting .guest>div>p{
	  width: 18rem ;
	}

	.modal-prompt.group .content-list .gap input {
    	  width: 11.1rem !important
	}


}


.input-guest {
  position: relative;
  /* min-height: 3.4rem; */
  /* max-height: 8.5rem; */
  height: 6.7rem;
  overflow-y: auto;
  border: 1px solid var(--grayd3);
  border-radius: 0.5rem;
  background: var(--white);
}

.btn-guest {
  position: absolute;
  right: .6rem;
  top: .8rem;
  width: 2rem;
  height: 2rem;
  background: url(../images/ico_user_add.svg) var(--white) no-repeat left center/ 2rem auto;
}

.btn-guest:hover {
  background: url(../images/ico_user_add_hover.svg) var(--white) no-repeat left center/ 2rem auto;
}

.content-list>.request-time:not(.request-time.no2),
.content-list>.radio,
.content-list>.textarea,
.content-list>.checkbox {
  height: 100% !important;
}

.content-list>.textarea {
  padding: .3rem 0;
}

.txt-start {
  margin-top: -4rem;
}

.request-time ul>li {
  display: flex;
  gap: 6.8rem;
  padding: 1.2rem 0;
}

.request-time.no2>div:last-child {
  display: flex;
  width: 39.3rem;
  gap: .5rem;
}

.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .2rem;
  padding: 0;
  border: none;
}

.content-list textarea {
  height: 7.4rem;
}

/* 촬영스케줄관리 > 검색도구 */
.shooting-scroll {
  overflow-x: auto;
}

.shooting {
  margin-bottom: 3rem;
}

.shooting .filter {
  margin: 0 1rem;
}

.filter-default.no3 {
  display: grid;
  grid-template-columns: repeat(6, auto);
  row-gap: 1.5rem;
}

@media (max-width: 1536px) {
  .filter-default.no3 {
    grid-template-columns: repeat(4, auto);
    row-gap: .6rem;
  }

  .filter-default.no3 li:nth-child(1) {
    margin-left: 7.5rem;
  }
}

@media (max-width: 1280px) {
  .filter-default.no3 {
    grid-template-columns: auto auto;
  }
}


@media (max-width: 1024px){
  .filter-default.no3 {
    grid-template-columns: 36.3rem auto;
    row-gap: .6rem;
  }

  .filter-default.no3 li:nth-child(3) {
    grid-column: 1/-1;
  }
}

.shooting .filter .btn-group {
  position: relative;
}

.btn-cell {
  position: absolute;
  right: 1rem;
  top: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

@media (max-width:720px) {
.shooting .filter .btn-group {
	display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cell{
	position:relative;
	right:0;
	}
}

.filter-default.no4 {
  display: none;
  grid-template-columns: repeat(6, auto);
}

@media (max-width: 1536px) {
  .filter-default.no4 {
    grid-template-columns: repeat(4, auto);
  }

  .filter-default.no4 li:nth-child(5) {
    margin-left: 1rem;
  }
}

@media (max-width: 1280px) {
  .filter-default.no4 {
    grid-template-columns: repeat(3, auto);
  }

  .filter-default.no4 li:nth-child(4) {
    margin-left: 1rem;
  }

  .filter-default.no4 li:nth-child(5) {
    margin-left: 0;
  }
}

@media (max-width: 1024px){
  .filter-default.no4 {
    grid-template-columns: 33.6rem 19.7rem auto;
    padding: 1.5rem 0;
  }

  .filter-default.no4 li:nth-child(3) {
    margin-left: -1.1rem;
  }

  .filter-default.no4 li:nth-child(4) {
    grid-column: 1/-1;
  }

  .filter-default.no4 li:nth-child(5) {
    margin-left: 1rem;
  }

  .filter-default.no4 li:nth-child(6) {
    grid-column: 2/4;
    margin-left: 5.8rem;
  }
}

.filter-default.no4 .input-calendar {
  width: 12.3rem !important;
}

/* 촬영스케줄관리 > 공지 */
.notice-box {
  display: grid;
  grid-template-columns: 9.5rem auto 7.5rem;
  gap: .5rem;
  margin: 2rem 1rem 0;
  padding: 1rem;
  background: var(--grayf8);
  border: 1px solid var(--graye7);
  border-radius: .5rem;
}

.notice-box div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: .8rem;
  padding-right: 1.1rem;
}

.notice-box label {
  font-size: 1.4rem;
}

.notice-box .txt-maxlength {
  font-size: 1rem;
  color: var(--redff0);
}

.notice-box textarea {
  min-height: 5rem;
  overflow-y: hidden;
}

.btn-L {
  width: 7.5rem;
  height: 5rem;
  background: var(--blue005);
  border-radius: .5rem;
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: .042rem;
}

/* 촬영스케줄관리 > 사이드바 */
.shooting-management {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  padding-right: 1rem;
}

.sidebar-wrapper {
  height: 100%;
}

.shooting-management .sidebar-wrapper[style*="display: none;"] +
.shooting-schedule {
  padding-left: 1rem;
}

.shooting-management .btn-folding-width,
.shooting-management .sidebar-search {
  display: none;
}

@media (max-width: 1280px) {
  .shooting-management .sidebar-search {
    height: 49.3rem;
  }
}

@media (max-width: 1024px){
  .shooting-management .sidebar-search {
    height: 79.3rem;
  }
}

.shooting-management .btn-folding-length.sticky,
.shooting-management .sidebar-wrapper.sticky,
.edit-management .sidebar-search.sticky {
  position: sticky;
  top: 0;
}

.VOD-filter.no2 {
  grid-template-columns: 1fr 1fr;
}

.VOD-filter.no2 div {
  display: flex;
  align-items: center;
  gap: 1px;
  grid-column: 1/-1;
}

.VOD-filter.no2 div:last-child {
  justify-content: space-between;
}

@media (max-width: 1280px) {
  .shooting-management .VOD-list .table-2nd tbody {
    display: block;
    width: 33.6rem;
    max-height: 20.1rem;
    overflow-y: auto;
  }
}

@media (max-width: 1024px){
  .shooting-management .VOD-list .table-2nd tbody {
    max-height: 40rem;
    overflow-y: hidden;
  }
}

@media (max-width: 1280px) {
  .shooting-management .VOD-list .table-2nd td:nth-child(1) {
    width: 10rem;
  }

  .shooting-management .VOD-list .table-2nd td:nth-child(2) {
    width: 23.6rem;
  }
}

.shooting-management .VOD-list .table-2nd tbody tr:hover,
.edit-management .VOD-list .table-2nd.no2 tbody tr:hover {
  background: unset;
}

.shooting-management .VOD-list .table-2nd td:last-child:hover,
.edit-management .VOD-list .table-2nd.no2 td:last-child:hover {
  background: rgba(0, 163, 255, 0.16);
}

.shooting-management .VOD-list .table-2nd td:last-child,
.edit-management .VOD-list .table-2nd.no2 td:last-child {
  padding-left: .5rem;
}

/* [dev] VOD목록 - 사용 안 함 */
.tr-disabled {
  background-color: var(--graye2);
  border-bottom: 1px solid var(--grayd3) !important;
}

.tr-disabled:hover,
.tr-disabled:hover td:last-child {
  background: var(--graycf) !important;
}

/* 촬영스케줄관리 > 헤더 */
.schedule-header-wrapper {
  position: relative;
  display: flex;
  justify-content: end;
}

.schedule-header {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 1.3rem;
  margin-top: 2rem;
  padding-right: 2rem;
}

@media (max-width: 1536px) {
  .schedule-header {
    grid-template-columns: 30.2rem 11rem 1fr;
  }
}

@media (max-width: 1024px) {
    .schedule-header {
        grid-template-columns: auto auto;
        margin-top: 4rem;
    }
}

@media (max-width: 720px){
  .schedule-header {
    grid-template-columns: auto auto;
    margin-top: 4rem;
    display:flex;
    flex-direction: column;
  }
}

.summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
    .summary {
        position: relative;
        left: 26rem;
    }
}

@media (max-width: 720px){
  .summary {
    position: relative;
    margin-top: 1rem;
    justify-content: center;
    left: inherit;
  }
}

.schedule-header .toggle {
  width: 20rem;
  align-self: center;
}

@media (max-width: 1024px){
  .schedule-header .toggle {
    width: auto;
    justify-self: end;
  }
}

.schedule-header .txt-red {
  justify-self: end;
  align-self: center;
}

@media (max-width: 1536px) {
  .schedule-header .txt-red {
    justify-self: end;
    align-self: center;
  }
}

@media (max-width: 1024px){
  .schedule-header .txt-red {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    left:2rem;
  }
}

.legend-group,
.legend-list,
.schedule-header .btn-group {
  display: flex;
  align-items: center;
}

.legend-group {
  justify-self: end;
  margin-right: .2rem;
}

@media (max-width: 1536px) {
  .legend-group {
    justify-self: start;
    grid-column: 1/3;
  }
}

@media (max-width: 1024px){
  .legend-group {
    grid-column: 2/3;
  }
}

.legend-list {
  gap: 1rem;
}

@media (max-width: 1024px) {
    .legend-list {
        margin-left: -3rem;
    }
}

@media (max-width: 720px){
  .legend-list {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   margin-left: 3rem;
  }
}

.legend {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .036rem;
}

.legend::before {
  content: '';
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(62, 62, 62, 0.31);
}

.legend.white::before {
  background: var(--white);
}

.legend.red::before {
  background: var(--redffd);
}

.legend.green::before {
  background: var(--greend1)
}

.legend.blue::before {
  background: var(--bluede);
}

.legend.gray::before {
  background: var(--graye2);
}

.legend.yellow::before {
  background: var(--yellowf3);
}

.schedule-header .btn-group {
  justify-self: end;
  gap: .3rem;
}

@media (max-width: 1024px){
  .schedule-header .btn-group {
    grid-column: 2/3;
    display: flex;
    justify-content: center;
  }

}


@media (max-width: 720px){

.schedule-header-wrapper{
	justify-content: center;
}

}
.schedule-header .btn-group li:last-child {
  position: relative;
  padding-left: 1.4rem;
}

.schedule-header .btn-group li:last-child::before {
  position: absolute;
  left: .5rem;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  height: 3rem;
  border-left: 1px solid var(--grayd3);
}

.schedule-header button {
  width: 7.5rem;
}

/* PD/SH 배정 통계 */
@media (max-width: 2048px) {
  .shooting-schedule .scroll {
    width: 198.8rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 159.5rem;
  }
}

@media (max-width: 1920px) {
  .shooting-schedule .scroll {
    width: 178rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 145rem;
  }
}

/* 엣지 사이드바 노출 시 */
@media (max-width: 1880px) {
  .shooting-schedule .scroll {
    width: 174rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 140rem;
  }
}

@media (max-width: 1536px) {
  .shooting-schedule .scroll {
    width: 139.5rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 106.5rem;
  }
}

/* 엣지 사이드바 노출 시 */
@media (max-width: 1496px) {
  .shooting-schedule .scroll {
    width: 135.5rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 102rem;
  }
}

@media (max-width: 1280px) {
  .shooting-schedule .scroll {
    width: 107.8rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 75rem;
  }
}

@media (max-width: 1024px){
  .shooting-schedule .scroll {
    width: 63.1rem;
  }

  .shooting-schedule.scroll .scroll {
    width: 30rem;
  }
}

/* [dev] PD/SH 스크롤 */
.pdShScroll {
  overflow-x: auto;
}

@media (max-width: 2048px) {
  .shooting-schedule .pdShScroll {
    width: 198.8rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 159.5rem;
  }
}

@media (max-width: 1920px) {
  .shooting-schedule .pdShScroll {
    width: 178rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 145rem;
  }
}

/* 엣지 사이드바 노출 시 */
@media (max-width: 1880px) {
  .shooting-schedule .pdShScroll {
    width: 174rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 140rem;
  }
}

@media (max-width: 1536px) {
  .shooting-schedule .pdShScroll {
    width: 139.5rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 106.5rem;
  }
}

@media (max-width: 1496px) {
  .shooting-schedule .pdShScroll {
    width: 135.5rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 102rem;
  }
}

@media (max-width: 1280px) {
  .shooting-schedule .pdShScroll {
    width: 107.8rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 75rem;
  }
}

@media (max-width: 1024px){
  .shooting-schedule .pdShScroll {
    width: 63.1rem;
  }

  .shooting-schedule.scroll .pdShScroll {
    width: 30rem;
  }
}

.table-statistics {
  display: flex;
  gap: .2rem;
}

.table-statistics-thead {
  width: 8rem;
}

.table-statistics-thead tr {
  border-bottom: 1px solid var(--black);
}

.table-statistics-tbody tr:nth-child(2),
.table-statistics-tbody tr:last-child {
  border-top: 1px dashed var(--gray9c);
  border-bottom: 1px solid var(--black);
}

.table-statistics-tbody tr:first-child {
  border-top: 1px solid var(--graye7);
}

.table-statistics-thead th,
.table-statistics-tbody td {
  height: 3rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .036rem;
  text-align: center;
}

.table-statistics-thead th {
  color: var(--white);
  height: 6rem;
  background: var(--gray5f);
}

.table-statistics-tbody td {
  border-right: 1px solid var(--graye7);
}

/* 촬영스케줄관리 > 타임테이블 */
.shooting-schedule>div:last-child {
  margin-top: 3rem;
}

.th-blk {
  background: var(--black) !important;
  color: var(--white);
}

.th-blue {
  background: var(--blue002) !important;
  color: var(--white);
}

.table-schedule.no2 tr:last-child th {
  border-left: 1px solid var(--graye7);
  border-right: 1px solid var(--graye7);
}

.table-schedule.no2 td:not(:first-child) {
  border-left: 1px solid var(--graye7);
}

.table-schedule.no2 thead tr:last-child th:nth-child(1),
.table-schedule.no2 thead tr:last-child th:nth-child(3) {
  background: var(--yellowfff);
}

.table-schedule.no2 thead tr:last-child th:nth-child(2),
.table-schedule.no2 thead tr:last-child th:nth-child(4) {
  background: var(--blueef);
}

.table-schedule:not(.table-schedule.no3) tr:first-child th {
  position: sticky;
  top: 0;
  z-index: 30;
}

.table-schedule.no2 tbody .td-white {
  background: var(--white);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.table-schedule.no2 tbody .td-red {
  background: var(--redffd);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.table-schedule.no2 tbody .td-green {
  background: var(--greend1);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.table-schedule.no2 tbody .td-blue {
  background: var(--bluede);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.table-schedule.no2 tbody .td-gray {
  background: var(--graye2);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.table-schedule.no2 tbody .td-yellow {
  background: var(--yellowf3);
  border: 1px dotted rgba(62, 62, 62, 0.5);
}

.schedule-card.no2 {
  padding: .5rem;
  width: 17.6rem;
  height: 3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-card.no2.blue {
  background: var(--bluede);
}

.schedule-card.no2.red {
  background: var(--redffd);
}

.schedule-card.no2.green {
  background: var(--greend1);
}

.schedule-card.no2.yellow-red::before,
.schedule-card.no2.yellow-blue::before,
.schedule-card.no2.yellow-green::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  border-left: 1px dashed var(--blue096);
}

.schedule-card.no2.yellow-red {
  background: linear-gradient(to right, var(--yellowffe) 50%, var(--redffd) 50%);
}

.schedule-card.no2.yellow-blue {
  background: linear-gradient(to right, var(--yellowffe) 50%, var(--bluede) 50%);
}

.schedule-card.no2.yellow-green {
  background: linear-gradient(to right, var(--yellowffe) 50%, var(--greend1) 50%);
}

.schedule-list.no2 .schedule-card.no2,
.schedule-card.no2.wide {
  width: 35.2rem;
}

/* 촬영스케줄관리 > 촬영스케줄 등록 */
.modal.shooting {
  width: 90rem;
}

@media (max-width: 1280px) {
  .modal.shooting {
    width: 68.3rem;
  }
}

.modal.shooting .modal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 1280px) {
  .modal.shooting .modal-content {
    height: 42.1rem;
    overflow-y: scroll;
  }
}

@media (max-width: 1024px){
  .modal.shooting .modal-content {
    height: auto;
    overflow-y: hidden;
  }
}

.filter-modal.no2,
.filter-modal.no3 {
  margin-top: 0;
  background: var(--grayf8);
}

.filter-modal.no2 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1280px) {
  .filter-modal.no2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.filter-modal.no2 .grid-column2 {
  grid-column: 2/4;
}

@media (max-width: 1280px) {
  .filter-modal.no2 .grid-column2 {
    grid-column: 1/-1;
  }
}

.filter-modal.no3 {
  grid-template-columns: 17.3rem 17.3rem 17.3rem auto;
}

@media (max-width: 1280px) {
  .filter-modal.no3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.filter-modal.no3 li:nth-child(2) {
  grid-column: 2/4;
  margin-left: -2.6rem;
}

@media (max-width: 1280px) {
  .filter-modal.no3 li:nth-child(2) {
    grid-column: 2/3;
    margin-left: 0;
  }
}

.filter-modal.no3 .ml04 {
  justify-self: end;
}

@media (max-width: 1280px) {
  .filter-modal.no3 .ml20 {
    margin-left: 1rem;
  }
}

.modal.shooting .label {
  padding-right: 0;
}

.border-none {
  background: transparent;
  border: none !important;
}

.modal.shooting .production-time {
  gap: .2rem;
  justify-self: end;
}

.modal.shooting .production-time .label {
  padding-right: .3rem;
}

.modal.shooting .tab,
.modal.shooting .tab2 {
  position: relative;
}

.modal.shooting .tab .btn-group,
.modal.shooting .tab2 .btn-group {
  position: absolute;
  right: 1rem;
  top: 0;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.modal.shooting .tab .btn-group button {
  width: 7.5rem;
  height: 2.5rem;
}

/* 촬영스케줄관리 > 사유등록 */
.modal.reason {
  width: 50rem;
}

.modal.reason .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.modal.reason .txt-notice {
  margin-top: 2.5rem;
}

.modal.reason .modal-content div {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1rem;
  height: 5.4rem;
  border: 1px solid var(--graye7);
  background: var(--grayf8);
}

.modal.reason .btn-group-bottom {
  margin-top: 2.5rem;
}

/* 촬영스케줄관리 > 추가설정 */
.modal.setting {
  width: 66rem;
}

.modal.setting .tab {
  margin-top: 1rem;
}

.modal.setting .filter-modal {
  display: block;
  margin-top: 0;
}

.modal.setting .filter-modal>li {
  display: grid;
  grid-template-columns: 10.2rem 44rem auto;
  gap: 0;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 5.6rem;
  font-size: 1.2rem;
}

.modal.setting .filter-modal>li:last-child {
  margin-top: .5rem;
}

.modal.setting .filter-modal>li>div {
  display: flex;
  align-items: center;
  gap: .2rem;
  height: 100%;
}

.modal.setting .filter-modal>li>div:first-of-type {
  width: 11rem;
  border-right: 1px solid var(--graye0);
}

.modal.setting .filter-modal>li>div>strong {
  font-size: 1.2rem;
  font-weight: 400;
}

.modal.setting .filter-modal>li:last-child>div:last-of-type {
  justify-self: center;
}

.modal.setting .btn.red {
  width: 6.5rem;
}

/* 촬영스케줄관리 > 주차별현황 */
.weekly-status-table {
  display: none;
  padding: 0 1rem;
}

@media (max-width: 1024px){
  .weekly-status-table .table-header {
    position: relative;
    margin-top: 4rem;
  }

  .weekly-status-table .table-header .txt-red {
    position: absolute;
    left: 1rem;
    top: -3rem;
    font-size: 1.1rem;
  }
}

/* 설정 > 사이드바 */
.popup-header.preferences {
  padding-right: 2rem;
}

.ico-user {
  display: flex;
  align-items: center;
  gap: .2rem;
  font-size: 1.3rem;
  font-weight: 350;
}

.ico-user::before {
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/ico_user.svg) no-repeat center;
}

.preferences {
  display: flex;
}

.preferences-sidebar {
  display: flex;
}

.preferences-sidebar .btn-folding-length {
  height: 9.5rem;
  order: 2;
}

@media (max-width: 1280px) {
  .preferences-sidebar .btn-folding-length {
    height: 10.8rem;
  }
}

.preferences-sidebar .btn-folding-length.no2 {
  background: var(--black) url(../images/ico_arrow_left_circle.svg) no-repeat center top .7rem;
}

.preferences-sidebar .btn-folding-length.no3 {
  display: none;
  background: var(--black) url(../images/ico_arrow_right_circle.svg) no-repeat center top .7rem;
}

.lnb {
  border-right: 1px solid var(--graye7);
  order: 1;
}

.lnb li {
  position: relative;
}

.lnb li:nth-child(4) button{
 cursor: pointer !important;
} /*대역관리*/

.lnb button {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2rem;
  width: 20.9rem;
  height: 5rem;
  border-bottom: 1px solid var(--graye7);
  font-size: 1.4rem;
  box-sizing: border-box;
}

@media (max-width: 1280px) {
  .lnb button {
    width: 18.9rem;
    font-size: 1.3rem;
  }
}

.lnb button:hover,
.lnb button.active {
  background: var(--grayf8);
}

.lnb>li:not(:first-child)>button:hover {
  background: transparent;
  cursor: default;
}

.lnb li:nth-child(4) button:hover,
.lnb li:nth-child(4) button.active {
 background: var(--grayf8);
}


.sub-menu {
  border-bottom: 1px solid var(--graye7);
}

.sub-menu li {
  border: none;
}

.sub-menu button {
  height: 4rem;
  border: none;
  font-size: 1.3rem;
}

.sub-menu button::before {
  content: '-';
}

/* 설정 > 메뉴관리 */
@media (max-width: 1536px) {
  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content>.preferences-content-wrapper.menu {
    width: 126.2rem;
    overflow-x: auto;
  }
}

@media (max-width: 1280px) {
  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content>.preferences-content-wrapper.menu {
    width: 96.8rem;
    overflow-x: auto;
  }

  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content>.preferences-content-wrapper.menu {
    width: 115.8rem;
    overflow-x: auto;
  }
}

@media (max-width: 1024px){
  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content>.preferences-content-wrapper.menu {
    width: 51.6rem;
  }

  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content>.preferences-content-wrapper.menu {
    width: 100%;
  }
}

@media (max-width: 1536px) {

  .table-2nd.col10,
  .table-2nd.col10 tbody {
    width: 90rem !important;
  }
}

.table-2nd.col10 td:nth-child(1) {
  width: 4rem;
}

.table-2nd.col10 td:nth-child(2) {
  width: 7rem;
}

.table-2nd.col10 td:nth-child(3) {
  width: 10rem;
}

.table-2nd.col10 td:nth-child(4) {
  width: 10rem;
}

.table-2nd.col10 td:nth-child(5) {
  width: 6rem;
}

.table-2nd.col10 td:nth-child(6) {
  width: 26rem;
}

.table-2nd.col10 td:nth-child(7) {
  width: 10rem;
}

.table-2nd.col10 td:nth-child(8) {
  width: 4rem;
}

.table-2nd.col10 td:nth-child(9) {
  width: 6rem;
}

.table-2nd.col10 td:nth-child(10) {
  width: 7rem;
}

.table-2nd.col10 td:not(:last-child) {
  border-right: 1px solid var(--graye7);
}

.table-2nd.col10 td:nth-child(10) {
  border: none;
}

.table-2nd.col10 .txt-left {
  padding-left: .5rem;
}


@media (max-width: 1536px) {
  .table-2nd.col11,
  .table-2nd.col11 tbody {
    width: 90rem !important;
  }
}

.table-2nd.col11 td:nth-child(1) {
  width: 4rem;
}

.table-2nd.col11 td:nth-child(2) {
  width: 7rem;
}

.table-2nd.col11 td:nth-child(3) {
  width: 7rem;
}

.table-2nd.col11 td:nth-child(4) {
  width: 6rem;
}

.table-2nd.col11 td:nth-child(5) {
  width: 10rem;
}

.table-2nd.col11 td:nth-child(6) {
  width: 6rem;
}

.table-2nd.col11 td:nth-child(7) {
   width: 23rem;
}

.table-2nd.col11 td:nth-child(8) {
  width: 7rem;
}

.table-2nd.col11 td:nth-child(9) {
  width: 5rem;
}

.table-2nd.col11 td:nth-child(10) {
  width: 7rem;
}

.table-2nd.col11 td:nth-child(11) {
  width: 7rem;
}

.table-2nd.col11 td:not(:last-child) {
  border-right: 1px solid var(--graye7);
}

.table-2nd.col11 td:nth-child(10) {
  border: none;
}

.table-2nd.col11 .txt-left {
  padding-left: .5rem;
}


.user-management,
.group-info,
.QA-MD {
  margin-top: 6rem;
  font-size: 1.2rem;
}

.user-management {
  position: relative;
}

.user-management>div:first-child,
.group-info>div:first-child,
.QA-MD>div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  background: var(--grayf8);
  border: 1px solid var(--graycf);
}

.user-management .btn-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}

.btn-add,
.btn-delete {
  width: 3rem;
  height: 3rem;
}

.btn-add {
  background: url(../images/btn_triangle_blue.svg) no-repeat;
}

.btn-delete {
  background: url(../images/btn_triangle_red.svg) no-repeat;
}

.user-list {
  display: flex;
  gap: 5rem;
  padding: .5rem;
  border: 1px solid var(--graycf);
  border-top: none;
}

.user-list>li {
  width: 20rem;
}

.user-list>div>div,
.MD-list>div>div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  border: 1px solid var(--grayd3);
}

.user-list>div:first-child>div,
.MD-list>div:first-child>div:not(.txt-none) {
  background: rgba(231, 90, 112, 0.2);
}

.user-list>div:last-child>div,
.MD-list>div:last-child>div:not(.txt-none) {
  background: rgba(45, 152, 218, 0.1);
}

.user-list .table-default {
  width: 20rem;
}

.user-list .table-default tbody {
  display: block;
  width: 20rem;
  height: 35.2rem;
  overflow-y: auto;
}

.user-list .table-default td:nth-child(1) {
  width: 4rem;
}

.user-list .table-default td:nth-child(2) {
  width: 16rem;
}

.user-list .table-default tbody tr:hover,
.group-info .table-default tbody tr:hover,
.group-info .table-default tbody tr:hover td:nth-child(2),
.MD-list .table-default tbody tr:hover {
  background: var(--grayf5);
  font-weight: 700;
}

.txt-gray {
  color: var(--grayc0);
}

/* 설정 > 메뉴관리 > 메뉴 등록/관리 (modal) */
.modal-prompt.menu .content-list input:not(.input-calendar) {
  width: 19.5rem;
}

.modal-prompt.menu .content-list .gap {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
}

.modal-prompt.menu .content-list .gap > .cate-radio {
	display: flex;
}


@media (max-width: 720px) {
	.modal-prompt.menu .content-list .gap{
	    flex-direction: row;
        flex-wrap: wrap;
        gap:1rem;
	}
}



.modal-prompt.menu .gap>div label:nth-child(4) {
  margin-left: 1.5rem;
}

/* 설정 > 제작설정관리 > 제작설정정보 */
.preferences-content {
  padding: 0 3rem 5rem 1rem;
  width: 100%;
   box-sizing: border-box;
}

.preferences-content .h3-type2 {
  margin: 1rem 1rem 0;
}

.preferences-content .tab {
  margin-top: 3rem;
}

.preferences-content .tab-list {
  position: relative;
}

.preferences-content .tab-list::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid var(--graye7);
}

@media (max-width: 1280px) {
  .preferences-content .tab-list::before {
    width: 123.3rem;
  }
}

@media (max-width: 1280px) {

  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content .tab-content,
  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content>.preferences-content-wrapper {
    padding-bottom: 5rem;
    width: 96.8rem;
    overflow-x: auto;
  }

  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content .tab-content,
  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content>.preferences-content-wrapper {
    padding-bottom: 5rem;
    width: 115.8rem;
    overflow-x: auto;
  }
}

@media (max-width: 1024px){

  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content .tab-content,
  .preferences-sidebar:has(.lnb:not([style*="display: none"]))+.preferences-content>.preferences-content-wrapper {
    padding-bottom: 5rem;
   width: calc(100% - 21.7rem);
  }

  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content .tab-content,
  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content>.preferences-content-wrapper {
    padding-bottom: 5rem;
    width: 70.6rem;
  }
}


@media (max-width: 720px){
  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content .tab-content,
  .preferences-sidebar:has(.lnb[style*="display: none"])+.preferences-content>.preferences-content-wrapper {
    width: 100%;
  }
}


.preferences-content .tab-content>li.active,
.preferences-content-wrapper {
  display: flex;
  gap: 4.4rem;
}

.preferences-content .tab-content>li.active {
  margin-top: 2rem;
}

.preferences-content-wrapper {
  margin-top: 3rem;
  overflow-y: hidden;
}

/* [dev] 환경설정 > 품질등록관리 > 세로 스크롤 문제 */
@media (max-width: 1280px) {
  .guality .preferences-content-wrapper {
    overflow-y: auto;
  }
}

.tab-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-right: 1rem;
}

.tab-filter-wrapper .tab-filter {
  display: flex;
  align-items: center;
  gap: .5rem;
}

@media (max-width: 1536px) {

  .tab-filter-wrapper .tab-filter:not(.tab-filter.grid,
    .preferences-content-wrapper.menu .tab-filter,
    .preferences-content-wrapper.download .tab-filter) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.tab-filter input,
.tab-filter select {
  width: 12.3rem !important;
}

.tab-filter-wrapper button:not(.btn-delete2) {
  margin-top: .3rem;
}

.preferences-table .table-header {
  margin-top: 1.5rem;
}

.table-header2 {
  margin-top: 1rem;
  padding: 0 1rem;
  font-size: 1.2rem;
}

.preferences-table .table-header2 {
  justify-content: start;
  gap: 1.3rem;
  margin-top: 2rem;
}

.preferences-table .table-header2 p {
  line-height: 3.4rem;
}

.preferences-table .table-2nd {
  width: 90rem;
}

@media (max-width: 1536px) {
  .preferences-table .table-2nd {
    width: 63.3rem;
  }
}

.preferences-table .table-2nd tbody {
  display: block;
  width: 90rem;
  max-height: 52.7rem;
  overflow-y: auto;
}

@media (max-width: 1536px) {
  .preferences-table .table-2nd tbody {
    width: 63.3rem;
  }
}

.preferences-table .table-2nd.col5 td:nth-child(1) {
  width: 4rem;
}

.preferences-table .table-2nd.col5 td:nth-child(2) {
  width: 25rem;
}

.preferences-table .table-2nd.col5 td:nth-child(3) {
  width: 25rem;
}

@media (max-width: 1536px) {
  .preferences-table .table-2nd.col5 td:nth-child(2) {
    width: 11.65rem;
  }

  .preferences-table .table-2nd.col5 td:nth-child(3) {
    width: 11.65rem;
  }
}

.preferences-table .table-2nd.col5 td:nth-child(4) {
  width: 12rem;
}

.preferences-table .table-2nd.col5 td:nth-child(5) {
  width: 12rem;
}

.preferences-table .table-2nd.col5 td:nth-child(6) {
  width: 12rem;
}

.table-2nd.col6 td:nth-child(1) {
  width: 4rem;
}

.table-2nd.col6 td:nth-child(2) {
  width: 38rem;
}

@media (max-width: 1536px) {
  .table-2nd.col6 td:nth-child(2) {
    width: 11.3rem;
  }
}

.table-2nd.col6 td:nth-child(3) {
  width: 12rem;
}

.table-2nd.col6 td:nth-child(4) {
  width: 12rem;
}

.table-2nd.col6 td:nth-child(5) {
  width: 12rem;
}

.table-2nd.col6 td:nth-child(6) {
  width: 12rem;
}

.table-2nd.col7 td:nth-child(1) {
  width: 4rem;
}

.table-2nd.col7 td:nth-child(2),
.table-2nd.col7 td:nth-child(3),
.table-2nd.col7 td:nth-child(4),
.table-2nd.col7 td:nth-child(5),
.table-2nd.col7 td:nth-child(6),
.table-2nd.col7 td:nth-child(7) {
  width: 14.3rem;
}

.table-2nd.col7 td:nth-child(2),
.table-2nd.col7 td:nth-child(4),
.table-2nd.col7 td:nth-child(5) {
  width: 14.3rem;
}

.table-2nd.col7 td:nth-child(3),
.table-2nd.col7 td:nth-child(7) {
  width: 17rem;
}

.table-2nd.col7 td:nth-child(6) {
  width: 8.9rem;
}

@media (max-width: 1536px) {

  .table-2nd.col7 td:nth-child(2),
  .table-2nd.col7 td:nth-child(4),
  .table-2nd.col7 td:nth-child(5) {
    width: 9.88rem;
  }

  .table-2nd.col7 td:nth-child(3),
  .table-2nd.col7 td:nth-child(7) {
    width: 11.75rem;
  }

  .table-2nd.col7 td:nth-child(6) {
    width: 6.15rem;
  }
}

.prefererences-form>.btn-group {
  display: flex;
  justify-content: end;
  gap: .4rem;
  margin: .3rem;
  padding-right: 1rem;
}

.form-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 6.2rem;
  padding: 2rem 1rem;
  width: 55.6rem;
  background: var(--grayf5);
  border: 1px solid var(--graye7);
}

@media (max-width: 1536px) {
  .form-list.staff {
    margin-top: 10rem !important;
  }
}

.tab .tab-content>li:nth-child(2) .form-list:last-child,
.tab .tab-content>li:nth-child(3) .form-list:last-child {
  margin-top: .9rem;
}

.form-list>li {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}

.form-list>li>div {
  display: flex;
  align-items: center;
  gap: .4rem;
  width: 10rem;
}

.form-list>li>div:first-child {
  justify-content: end;
}

.form-list>li>div:last-child {
  flex: 1;
}

.form-list select,
.form-list input {
  width: 19.5rem;
}

.form-list textarea {
  height: 9.2rem;
}

.asterisk::before {
  content: '*';
  color: var(--redf0);
}

.form-list input[type="number"]::placeholder {
  text-align: right;
}

/*설정 - 대시보드 flag*/


.flag-form .form-list{
	width : 40rem;
}

.flag-form .form-list > li > div {
	width : 12rem;
}

.flag-form .check-type1+label {
	width : auto;
	display: flex;
    align-items: center;
    padding-left: 2rem;
}

.flag-form .form-list > li > div span{
	display : flex;
}

.flag-form .stam {
	display: flex;
    flex-wrap: wrap;

}


.flag-form .form-list {
    margin-top: 3.5rem;
}


/* 설정 > 제작설정관리 > 스텝그룹관리 */
@media (max-width: 1280px) {
  .preferences-content-wrapper.staff {
    padding-bottom: 5rem;
  }
}

.table-2nd.staff td:nth-child(1) {
  width: 4rem;
}

.table-2nd.staff td:nth-child(2),
.table-2nd.staff td:nth-child(3),
.table-2nd.staff td:nth-child(4),
.table-2nd.staff td:nth-child(5),
.table-2nd.staff td:nth-child(6) {
  width: 17.2rem;
}

@media (max-width: 1280px) {

  .table-2nd.staff td:nth-child(2),
  .table-2nd.staff td:nth-child(3),
  .table-2nd.staff td:nth-child(4),
  .table-2nd.staff td:nth-child(5),
  .table-2nd.staff td:nth-child(6) {
    width: 11.86rem;
  }

}

.group-info {
  border: 1px solid var(--graycf);
}

.group-info>div:first-child {
  border: none;
  border-bottom: 1px solid var(--grayd9);
}

.group-info .table-default {
  margin: 0 .5rem .5rem;
  width: 38.7rem;
}

.prefererences-form thead {
  background: transparent;
  border-top: none;
}

.group-info .table-default tbody {
  display: block;
  width: 38.7rem;
  max-height: 59.6rem;
  overflow-y: auto;
}

.prefererences-form .table-default th,
.prefererences-form .table-default td {
  height: 3.5rem;
}

.prefererences-form .table-default th {
  background: transparent;
  color: var(--gray96);
  font-weight: 600;
}

.group-info .table-default td {
  height: 4rem;
}

.group-info .table-default td:nth-child(1) {
  width: 5.7rem;
}

.group-info .table-default td:nth-child(2),
.group-info .table-default td:nth-child(3) {
  width: 16.5rem;
}

.group-info .table-default select {
  padding: 0 .8rem;
  width: 13rem;
  height: 2.9rem;
  line-height: 2.9rem;
}

.modal-prompt.group .content-list li:first-child span {
  padding-left: .4rem;
  line-height: 3.4rem;
}

@media (max-width: 720px){
	.modal-prompt.group .content-list li:first-child span{
	  line-height: inherit;
	}

}



/* 설정 > 사용자관리 > 사용자정보 */
.preferences-content-wrapper.user {
  display: block;
  width: 104.3rem;
}

@media (max-width: 1024px){

  .preferences-content-wrapper.user,
  .preferences-content-wrapper.download {
    width: 70.6rem;
  }

  .preferences-content-wrapper.user.scroll,
  .preferences-content-wrapper.download.scroll {
    width: 56.3rem;
  }
}

@media (max-width: 1536px) {
  .preferences-content-wrapper.user .tab-filter {
    display: flex;
  }
}

@media (max-width: 1024px){
  .preferences-content-wrapper.user.scroll .tab-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.table-2nd.user,
.table-2nd.user tbody {
  width: 104.3rem;
}

@media (max-width: 1024px){

  .table-2nd.user,
  .table-2nd.user tbody {
    width: 70.6rem;
  }

  .preferences-content-wrapper.user.scroll .table-2nd.user,
  .preferences-content-wrapper.user.scroll .table-2nd.user tbody {
    width: 56.3rem;
  }
}

.table-2nd.user td:nth-child(1) {
  width: 4rem;
}

.table-2nd.user td:nth-child(2),
.table-2nd.user td:nth-child(3),
.table-2nd.user td:nth-child(4),
.table-2nd.user td:nth-child(5),
.table-2nd.user td:nth-child(6) {
  width: 20.06rem;
}

/* 설정 > 사용자관리 > 품질등록관리 */
.table-2nd.QA {
  width: 33rem;
}

.table-2nd.QA tbody {
  display: block;
  width: 33rem;
}

.table-2nd.QA td:nth-child(1) {
  width: 3rem;
}

.table-2nd.QA td:nth-child(2),
.table-2nd.QA td:nth-child(3) {
  width: 15rem;
}

/*대역폭관리*/
.band .tab-filter input {
	width: 15.3rem !important;
}

.table-2nd.band th  {
 	width:25%;
}

.table-2nd.band th:nth-child(1)  {
   width: 15%;
}

.table-2nd.band tbody tr{
	display: flex

}

.table-2nd.band th:nth-child(4)  {
   width: 38%;
}

.table-2nd.band td{
	width:25%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.table-2nd.band td:nth-child(1)  {
   width: 15%;
}

.table-2nd.band td:nth-child(4)  {
   width: 35%;
}


.band .group-info {
	margin-top: 4.5rem;
}
.band .band-regist{
	padding: 15px;
	display: flex;
    gap: 10px;
}
.band .btn-group{
    display: flex;
    padding: 0 0px 20px;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

@media (max-width: 1024px) {

	.band .band-regist{
		flex-direction: column;
	}

	.table-2nd.band th:nth-child(1) {
	   width:20rem;
	}
	.band .btn-medium{
	   width:7rem;
	}


}



.MD-list {
  display: grid;
  grid-template-columns: 1fr 3rem 36rem;
  gap: 1rem;
  padding: .5rem;
  border: 1px solid var(--graycf);
  border-top: none;
}

.MD-list .table-default {
  margin-top: 0;
}

.MD-list .table-default tbody {
  display: block;
  max-height: 35rem;
  overflow-y: auto;
}

.table-default.MD tbody {
  width: 36rem;
}

.table-default.MD td:nth-child(1) {
  width: 3rem;
}

.table-default.MD td:nth-child(2) {
  width: 8.25rem;
}

.table-default.MD td:nth-child(3) {
  width: 8.25rem;
}

.table-default.MD td:nth-child(4) {
  width: 8.25rem;
}

.table-default.MD td:nth-child(5) {
  width: 8.25rem;
}

.table-default.MD2 td:nth-child(1) {
  width: 3rem;
}

.table-default.MD2 td:nth-child(2) {
  width: 3rem;
}

.table-default.MD2 td:nth-child(3) {
  width: 9.425rem;
}

.table-default.MD2 td:nth-child(4) {
  width: 9.425rem;
}

.table-default.MD2 td:nth-child(5) {
  width: 9.425rem;
}

.table-default.MD2 td:nth-child(6) {
  width: 9.425rem;
}

.table-default.MD2,
.table-default.MD2 tbody {
  width: 43.7rem;
}

.MD-list .btn-group {
  position: relative;
  top: 45%;
}

/* 설정 > 사용자관리 > 다운로드 이력 */
.preferences-content-wrapper.download {
  display: block;
  width: 96.8rem;
}

@media (max-width: 1280px) {
  .preferences-content-wrapper.download .tab-filter-wrapper {
    justify-content: start;
  }

  .preferences-content-wrapper.download .btn-medium.blue096 {
    margin-left: 28.8rem
  }
}

@media (max-width: 1024px){
  .preferences-content-wrapper.download .tab-filter-wrapper {
    justify-content: space-between;
    overflow-x: scroll;
    padding-bottom: 2rem;
  }

  .preferences-content-wrapper.download .btn-medium.blue096 {
    margin-left: 0;
  }
}

@media (max-width: 1536px) {
  .preferences-content-wrapper.download .tab-filter {
    display: flex;
  }
}

@media (max-width: 1024px){
  .preferences-content-wrapper.download .tab-filter {
    display: grid;
    grid-template-columns: auto auto;

  }
}

@media (max-width: 720px){
  .preferences-content-wrapper.download .tab-filter {
       display: flex;
    flex-direction: column;
    flex-wrap: wrap;

  }
}


.table-2nd.download,
.table-2nd.download tbody {
  width: 96.8rem;
}

@media (max-width: 1024px){

  .table-2nd.download,
  .table-2nd.download tbody {
    width: 70.6rem;
  }
}

.table-2nd.download td:nth-child(1) {
  width: 4rem;
}

@media (max-width: 1024px){
  .table-2nd.download td:nth-child(1) {
    width: 3rem;
  }
}

.table-2nd.download td:nth-child(2) {
  width: 16rem;
}

.table-2nd.download td:nth-child(3) {
  width: 49.8rem;
}

@media (max-width: 1024px){
  .table-2nd.download td:nth-child(3) {
    width: 24.6rem;
  }
}

.table-2nd.download td:nth-child(4) {
  width: 6rem;
}

.table-2nd.download td:nth-child(5) {
  width: 8rem;
}

.table-2nd.download td:nth-child(6) {
  width: 13rem;
}

/* 통합의뢰 */
body:has(.integrated-request) {
  overflow-y: hidden;
}

.filter.request {
  background: var(--white);
}

@media (max-width: 1920px) {
  .filter.request {
    width: 188.5rem;
  }
}

@media (max-width: 1280px) {
  .filter.request {
    width: 118.5rem;
  }
}

@media (max-width: 1024px) {
    .filter.request {
        width: 73.3rem;
    }
}

@media (max-width: 720px){
  .filter.request {
    width: 100%;
  }
}

.filter.request.sticky {
  position: sticky;
  left: 0;
  right: 0;
  top: -120%;
  animation: sticky 1s .4s both;
  z-index: 20;
}

@keyframes sticky {
  0% {
    top: -120%;
  }

  100% {
    top: 0;
  }
}

.filter-calendar.request {
  margin: 0;
  border-bottom: 1px solid var(--graye6);
}

@media (max-width: 1024px){
  .filter-calendar.request {
    padding: 0;

  }
}

.filter-calendar-header.request {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  padding: 1.5rem 1rem;
  width: 100%;
}

@media (max-width: 1280px) {
  .filter-calendar-header.request {
    grid-template-columns: 1fr;
  }
}

.filter-form {
  display: flex;
  align-items: center;
  gap: 0 2.5rem;
  margin-left: 2.5rem;
}

@media (max-width: 1536px) {
  .filter-form {
    gap: 2rem;
  }
}

@media (max-width: 1280px) {
  .filter-form {
    margin-top: 1rem;
  }
}

@media (max-width: 1024px){
  .filter-form {
    display: grid;
    grid-template-columns: auto auto auto 12rem;
    gap: .5rem;
  }

  .filter-form li:last-child {
    grid-column: 3/5;
    justify-self: end;
  }
}

@media (max-width:720px){
	.filter-form {
		 display: flex;
	    flex-direction: row;
	    flex-wrap: wrap;
	    gap: 1rem;
	}

}
.filter-form .search-user {
  width: 12.3rem;
}

@media (max-width: 1280px) {
  .btn-toggle-group {
    position: absolute;
    right: 0;
    top: 5.6rem;
  }
}

@media (max-width: 1024px){
  .btn-toggle-group {
    top: 1.7rem;
  }
}

@media (max-width: 720px){
  .btn-toggle-group {
    top: 0;
  }
}

.btn-toggle2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: .2rem;
  padding: 0 .6rem;
  font-size: 1.2rem;
  color: var(--gray5f);
}

.btn-toggle2::before {
  content: '';
  width: 2rem;
  height: 2rem;
}

.btn-toggle2.close::before {
  background: url(../images/ico_arrow_up_circle.svg) no-repeat;
}

.btn-toggle2.open::before {
  background: url(../images/ico_arrow_down_circle.svg) no-repeat;
}

.btn-toggle2::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 8.4rem;
  height: 3.4rem;
  border-radius: .5rem;
  border: 1px solid var(--graye7);
  background: var(--grayf8);
  z-index: -10;
  opacity: 0;
  transition: .4s;
}

.btn-toggle2:hover::after {
  opacity: 1;
}

.btn-toggle2.open {
  display: none;
}

.filter.request .btn-toggle2 {
  margin-left: .6rem;
}

.integrated-request {
  margin-top: 1rem;
}

.header[style*="display: none"]~.main .integrated-request .scroll {
  height: 78.4rem;
  overflow: auto;
}

.header:not([style*="display: none"])~.main .integrated-request .scroll {
  height: 70.6rem;
}

@media (max-width: 1536px) {
  .header[style*="display: none"]~.main .integrated-request .scroll {
    height: 66.2rem !important;
  }

  .header:not([style*="display: none"])~.main .integrated-request .scroll {
    height: 58.4rem !important;
  }
}

@media (max-width: 1280px) {
  .header[style*="display: none"]~.main .integrated-request .scroll {
    height: 84.6rem !important;
  }

  .header:not([style*="display: none"])~.main .integrated-request .scroll {
    height: 76.8rem !important;
  }
}

/* 통합의뢰 스크롤 바 */
.integrated-request .scroll::-webkit-scrollbar {
  background: transparent;
}

.integrated-request .scroll::-webkit-scrollbar-button:vertical:start:decrement,
.integrated-request .scroll::-webkit-scrollbar-button:vertical:start:increment {
  display: block;
  height: 4rem;
}

.table-schedule.no3 {
  border-collapse: separate;
  border-spacing: 0;
}

.table-schedule.no3 thead {
  position: sticky;
  top: 0;
  z-index: 20;
}

.table-schedule.no3 thead tr:nth-child(1) th:first-child,
.table-schedule.no3 thead tr:nth-child(1) th:last-child {
  border-bottom: 1px solid var(--graye7);
}

.table-schedule.no3 thead tr:nth-child(1) th:first-child {
  border-radius: .5rem 0 0 0;
}

.table-schedule.no3 thead tr:nth-child(1) th:last-child {
  border-radius: 0 .5rem 0 0;
}

.table-schedule.no3 thead tr:nth-child(1) th:not(.th-blk) {
  border-top: 1px solid var(--grayf1) !important;
}

.table-schedule.no3 .th-blk {
  border-top: 1px solid var(--black) !important;
}

.table-schedule.no3 th,
.table-schedule.no3 td {
  border-right: 1px solid var(--graye7) !important;
  border-bottom: 1px solid var(--graye7);
}

.th-date {
  height: 3rem !important;
  background: var(--gray5f) !important;
  color: var(--white);
}

.table-schedule.no3 .yellow,
.table-schedule.no3 .R10 {
  background: var(--yellowfe);
}

.table-schedule.no3 .green,
.table-schedule.no3 .R20 {
  background: var(--greenf0);
}

.table-schedule.no3 .blue,
.table-schedule.no3 .R30 {
  background: var(--bluee0);
}

.table-schedule.no3 .pink,
.table-schedule.no3 .R40 {
  background: var(--pinkfe);
}

.table-schedule.no3 .red,
.table-schedule.no3 .R50 {
  background: var(--redffe);
}

.integrated-request .request-none {
  height: 28rem;
  background-color: var(--graye2);
  color: var(--gray46);
  font-size: 1.4rem;
  font-weight: 600;
}

.input-form {
  height: 100%;
  padding: 1rem;
}

.input-form .btn-group {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: .5rem;
  padding-right: 1rem;
}

.border-red {
  border-radius: .5rem;
  outline: 1px solid var(--redee2);
}

.btn-info,
.btn-memo,
.btn-manager {
  width: 2rem;
  height: 2rem;
}

.btn-info {
  background: url(../images/btn_info.svg) no-repeat;
}

.btn-memo {
  background: url(../images/btn_question.svg) no-repeat center / 1.8rem auto;
}

.btn-manager {
  background: url(../images/btn_check.svg) no-repeat left center / 2rem auto;
}

.btn-manager2 {
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.file-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

.request-thumbnail {
  position: relative;
  width: 11.7rem;
  max-height: 22.6rem;
  margin: 0 auto;
}

.request-thumbnail.more::after {
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);
  content: '';
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/ico_more.svg) no-repeat;
}

.VOD-thumbnail img,
.request-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* 통합의뢰 > 요청내용 등록 */
.modal.request,
.modal.file {
  width: 80rem;
}

@media (max-width: 1024px){
  .modal.request,
  .modal.file {
    width: 70rem;
  }
}

@media (max-width: 850px){
  .modal.request,
  .modal.file, .modal.re-edit {
        max-height: 80vh;
        overflow-y: scroll;
  }
}

.modal .modal-content {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

@media (max-width: 1536px) {
  .modal.request .modal-content {
    height: 57.5rem;
    overflow-y: scroll;
  }
}

@media (max-width: 1280px) {

  .modal.request .modal-content,
  .modal.file:not(.modal_play) .modal-content {
    height: 44.8rem;
    overflow-y: scroll;
  }
}

.modal_play .modal-content {
  height: auto;
  overflow-y: hidden;
}

@media (max-width: 1024px){

  .modal.request .modal-content,
  .modal.file .modal-content {
    height: auto !important;
    overflow-y: hidden !important;
  }
}

.modal.request .file-list.grid {
  padding-left: 1.7rem;
}

@media (max-width: 1536px) {
  .modal.request .file-list.grid {
    gap: 1rem;
  }
}


@media (max-width: 1024px){
  .modal.request .form-filter.grid {
    height: 100%;
  }

  .modal.request .file-list.grid {
    padding: .8rem 1.7rem;
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 720px){
	.modal.request .file-list.grid {
	  display: flex;
	}

}

.modal.request textarea {
  margin-top: .5rem;
  height: 15rem;
}

/* 통합의뢰 > 첨부파일 보기 */
.SBO>li {
  grid-template-columns: 5.5rem 5.5rem 13.3rem 25.3rem 8.3rem !important;
}

@media (max-width: 1024px){
  .SBO>li {
    grid-template-columns: 5.5rem 5.5rem 13.3rem 15.3rem 8.3rem !important;
  }
}

.SBO.no2>li {
  grid-template-columns: 5.5rem 19.3rem 37.7rem 8.3rem !important;
}

@media (max-width: 1280px) {
  .SBO.no2>li {
    grid-template-columns: 5.5rem 17.3rem 19rem 8.3rem !important;
  }
}

.SBO.no3>li {
  grid-template-columns: 2rem 5rem 6rem 13.3rem 19.8rem 11rem !important;
}

@media (max-width: 1024px){
  .SBO.no3>li {
    grid-template-columns: 2rem 5rem 6rem 13.3rem 9.8rem 11rem !important;
  }
}

.SBO.no2.SBO-none {
  display: flex;
  justify-content: center;
  align-items: center;
}

.SBO.no2.SBO-none>li {
  grid-template-columns: 1fr !important;
  color: var(--gray9f);
  font-size: 1.2rem;
  letter-spacing: 0.036rem;
  text-align: center;
}

.SBO>li>div {
  align-self: center;
}

@media (max-width: 1280px) {
  .modal.file .txt-none.txt-cneter {
    width: 65.8rem;
  }
}

.data-list-download {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.SBO.no3 .data-list-download .btn-x {
  margin-left: 1rem;
}

.SBO .btn-download {
  width: 2rem;
  height: 2rem;
  background: url(../images/btn_download.svg) no-repeat left center / 2rem auto;
}

/* 통합의뢰 > 메모/담당자 */
.modal.memo,
.modal.manager,
.modal.info {
  padding: .5rem;
  height: 3.4rem;
  border-radius: .5rem;
  border: 1px solid var(--graya9);
  background: var(--graye1);
  box-shadow: .5px 2px 5.2px -1px rgba(0, 0, 0, 0.12);

}

.table-schedule.no3 .vt {
  vertical-align: top;
}

.modal.manager {
  position: absolute;
  left: -2.6rem;
  top: 13rem;
}

.modal.info {
  position: absolute;
  left: 1rem;
  top: -1rem;
  align-items: center;
  gap: .5rem;
  padding: 0 .5rem;
  background: var(--white);
  overflow: hidden;
}

@media (max-width: 1024px) {
 .modal.info, .modal.manager{
     overflow: hidden;
     height: auto;
     max-height: initial;
     width: auto !important;
 }

}

@media (max-width: 780px) {
 .modal.memo{
 	width: auto !important;
 	overflow-y: inherit;
 }
}

.modal.memo input,
.modal.manager input {
  margin-right: .3rem;
  height: 2.4rem;
}

.modal.info input {
  height: 3.2rem;
  border: none;
  field-sizing: content;
  min-width: unset !important; /* 인라인 스타일 초기화 */
}

.btn-save,
.btn-close2 {
  width: 2.4rem;
  height: 2.4rem;
}

.btn-save {
  background: url(../images/btn_check.svg) no-repeat;
}

.btn-close2 {
  background: url(../images/btn_close_circle.svg) no-repeat;
}

/* 통합의뢰 > 이미지 보기 */
.modal.img {
  width: 80rem;
   max-height: 85vh;
   overflow-y: auto;
}

@media (max-width: 1024px){
  .modal.img {
    width: 70rem;
  }
}

.modal.img .modal-content {
  max-height: 67.8rem;
  overflow-y: auto;
}

@media (max-width: 1280px) {

  .modal.img .modal-content {
    max-height: 49.1rem;
  }
}

@media (max-width: 1024px){
  .modal.img .modal-content {
    max-height: 67.8rem;
  }
}

.modal.img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 공용폴더 */
.modal.folder {
  width: 70rem;
}

.modal.folder .form-container {
  display: block;
}

.modal.folder .form-header {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.modal.folder .form-filter {
  width: auto;
  gap: .5rem;
}

.modal.folder .table-2nd {
  border: 1px solid var(--grayd6);
}

.modal.folder .table-2nd thead {
  border-top: 1px solid var(--grayd6);
}

.modal.folder .table-2nd tbody {
  display: block;
  width: 66rem;
  height: 35.05rem;
  overflow-y: auto;
}

.modal.folder .table-2nd td {
  padding: 0 1rem;
}

.modal.folder .table-2nd td:nth-child(1) {
  width: 55rem;
}

.modal.folder .table-2nd td:nth-child(2) {
  width: 10rem;
}

.modal.folder .table-2nd .--active {
  background: var(--yellowffe);
}

.modal.folder .form-content {
  text-align: end;
}

.modal.folder .form-content>button {
  margin-top: 1rem;
}


@media (max-width: 1280px) {
  .modal.folder {
    width: 70.6rem
  }

   .modal.folder .modal-content {
    height: 40rem;
    overflow-y: auto;
  }
}

@media (max-width: 1024px){
  .modal.folder {
    width: 70rem;
  }

   .modal.folder .modal-content {
    height: auto;
    overflow-y: hidden;
  }

  .modal.folder .input-delete input {
  	width: 100%;
  }
}

@media (max-width: 720px){
	.modal.folder .input-delete input{
		width: calc(100% - .5rem) !important;
	}

	.modal.folder .btn-medium.blue096{
	    padding: 0 0.5rem;
        width: 4rem;
	}
	.modal.folder .form-header{
		justify-content: flex-start;
	}
}

.fl {
	float : left;
}
 
.mr1rem{
	margin-right: 1rem;
}

.border-orange {
  border: 1px solid #FFCC80 !important;
}

.bg-orange {
  background: rgba(255, 204, 128, 0.3) !important; /* FFCC80 with 30% opacity */
}

