@charset "UTF-8";
:root {
  --header-height: 80px;
  /* --header-color: linear-gradient(45deg, var(--base-color1) 30%, #eaeaeaaf); */
  --header-color: var(--base-color1);
  --header-content-height: 60px;
  --max-width:1600px;
  --sub-menu-width: 350px;
  --nav-open-width: 300px;
  --nav-close-width: 50px;
  --base-hover-color:#131049;
  --base-color1: #ffffff;
  --base-r-color1: #e7e7e7;
  --h-base-r-color1: #ffffff;
  --menu-black:#2f2f2f;
  --bg-white-font-black: #191919;

  --scroll-color:#c2c2c2;

  --mark-width: calc((300px + 10px) * 15); 
  --mark-width-2: calc((-300px + -10px) * 15); 

  --menu-h-col-001:#6f6e7e;
}
*::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--scroll-color);
  background-clip: padding-box;
  border-radius: 20px;
}
.mob-burger::before {
  font-family: 'Material Icons';
  content: 'clear' !important;
  color: var(--Grayscale-70);
  font-size: 2.1rem !important;
}
header {
  position: absolute;
  width: 100%;
  z-index: 2000;
}
.main-container{
  display: inline-flex;
  /* flex-direction: row; */
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* padding: 0 60px; */

  box-sizing: border-box;
}
.body-container{
  display: flex;
  flex-direction: column;
  max-width: var(--max-width);
  width: 100%;
  gap: 15px;
}
.mdd-scroll-box span {
  z-index: 1;
  font-size: 2rem;
  font-weight: bold;
  color: var(--base-color1);
}

.mdd-scroll-box img{
  max-width: 100%;
  padding: 0;
  object-fit: cover;
  width: 100%;
  opacity: .5;
  filter: hue-rotate(45deg);
  position: absolute;
  object-fit: cover;
}
div#containerMain {
  min-height: calc(100vh - 290px) !important;
  /* overflow-x: hidden; */
}
.body-content{
  padding: 20px 15px;
  box-sizing: border-box;
}
.gap-3-content {
    gap: 30px;
}
.code-wrap {
    /* box-shadow: 0 0px 8px #0000001c; */
    /* margin: 20px 0; */
    /* border-radius: 14px; */
    position: relative;
    /* flex-direction: row; */
    /* backdrop-filter: blur(1px); */
    /* overflow: hidden; */
    padding: 10px 10px 100px 10px !important;
    gap: 20px;
    box-sizing: border-box;
    animation: pageShow cubic-bezier(0.87, 0.75, 0.44, 1) .85s alternate forwards;
    
}
@keyframes pageShow {
    from{
      opacity: 0;
    }
    to{
      opacity: 1;
    }
}
.mdd-header-menu-wrapper {
  display: flex;
  justify-content: center;
  background: var(--Grayscale-0);
  border-bottom: 1px solid var(--Grayscale-20);
  box-shadow: 0 0 8px #e3e3e3;
}
.top-menu {
  display: inline-grid;
  grid-template-columns: 310px 1fr 20%;
  position: relative;
  top: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  height: var(--header-height);
  width: 100%;
  
  color: var(--bg-white-font-black);
  /* -webkit-backdrop-filter: saturate(0.8) blur(10px);
          backdrop-filter: saturate(0.8) blur(10px); */
  gap: 10px;
  padding: 0 10px;
  box-sizing: border-box;
  max-width: var(--max-width);
  z-index: 1;
}

#containerHeader .top-logo{
  /* filter: invert(1); */
}
.top-logo {
  width: 100%;
  height: 100%;
  background: url("../../contents/logo/metamdd.svg") no-repeat center/contain;
  /* filter: drop-shadow(1px 1px 1px #c8c8c8b9); */
}

header:hover .top-logo {
  background: url("../../contents/logo/metamdd.svg") no-repeat center/contain;
}

.top-menu-center {
  display: inline-grid;
  grid-template-columns: repeat(8, 120px);
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.top-right {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
}

.lev-dep-container {
  position: relative;
}

.t-mu-lv1 {
  position: relative;
  cursor: pointer;
  text-align: center;
  height: 100%;
  display: flex;
  z-index: 22;
  align-items: center;
}

.t-mu-lv2 {
  position: absolute;
  opacity: 0;
  top: 80px;
  height: 0;
  left: 0;
  display: grid;
  justify-content: center;
  gap: 5px;
  z-index: -1;
  transition: all 0.45s;
  overflow-x: hidden;
  overflow-y: visible;
}

.lv2-list {
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.697);
  -webkit-backdrop-filter: saturate(0.5) blur(10px);
          backdrop-filter: saturate(0.5) blur(10px);
  border-radius: 4px;
  padding: 5px 10px;
  border: 1px solid black;
  transition: all 0.35s;
}

.lv2-list:hover {
  background: rgba(161, 224, 255, 0.607);
}

.lv2-icon {
  width: 4px;
  min-width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(6, 0, 255, 0.56);
}

.lv2-label {
  color: black;
  cursor: inherit;
}

.lev-dep-container:has(> .t-mu-lv1:hover) .t-mu-lv2,
.t-mu-lv2.hover {
  top: 40px;
  opacity: 1;
  height: auto;
}

.nav-container {
  position: sticky;
  top: 0;
  align-self: flex-start;
  background: white;
  height: 100vh;
  width: var(--nav-close-width);
  display: flex;
  flex-direction: column;
  background: var(--base-color1);
  flex-wrap: nowrap;
  text-wrap: nowrap;
  overflow: hidden;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.85s;
}

.nav-item-container {
  display: inline-flex;
  flex-direction: column;
  height: 100%;
}

.nav-container:hover,
.nav-container:has(.burger-icon.active) {
  width: var(--nav-open-width);
}

.nav-top {
  /* background: #c1c1c1; */
  height: 80px;
}

.nav-bottom {
  position: relative;
  bottom: 0;
  color: white;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.nav-ctl,
.nav-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  min-width: 35px;
  height: 35px;
  border-radius: 100%;
  margin: 0 5px;
}

.logo-box {
  display: inline-flex;
  width: 150px;
  height: 100%;
  cursor: pointer;
  position: sticky;
  left: 0;
}
.logo-box > .lms-logo {
  width: 200px;
  margin: 0;
  color: var(--base-r-color1);
  font-size: 1.8rem;
}

.nav-item-box,
.nav-item-box * {
  cursor: pointer;
}

.nav-1-mu {
  width: 100%;
  transition: all 0.35s;
}
.nav-1-mu:hover {
  color: var(--h-base-r-color1);
}

.nav-icon1 {
  position: relative;
  width: 24px;
  height: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.nav-icon1 > span {
  width: 100%;
  height: 1px;
  background: var(--base-r-color1);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  transition: all 0.35s;
  left: 0;
  pointer-events: none;
}

.burger-icon {
  position: relative;
  cursor: pointer;
  pointer-events: fill;
  font-size: 2.3rem !important;
}

.burger-icon.active .nav-icon1 > span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 5px;
}

.burger-icon.active .nav-icon1 > span:nth-of-type(2) {
  opacity: 0;
  left: -20px;
  /* background: rebeccapurple; */
  transform: rotate(360deg) translateY(-10px);
  /* transition-delay: .15s; */
}

.burger-icon.active .nav-icon1 > span:nth-of-type(3) {
  transform: rotate(-45deg) translateX(0px);
  top: -10px;
}

.header-m1-wrap {
  height: 100%;
}

.menu-1-box {
  height: 100%;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(6, 140px) ;
}

/* .t-menu-1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  color: var(--h-base-r-color1);
  text-shadow: 1px 1px 1px var(--bg-white-font-black);
  height: 100%;
} */
.t-menu-1{  /*ljh modify 240830*/
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--menu-black);
  /* color: var(--white);
  text-shadow: 1px 1px 1px var(--black); */
   font-weight: bold; 
  /* filter: none !important; */
  cursor: pointer;
  font-size: 1.1rem;
  height: 100%;
}
.t-menu-1::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  bottom: 0;
  left: 50%;
  right: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(180deg, var(--white), var(--base-hover-color));
  transition-duration: 0.35s;
  transition-timing-function: ease-out;
  transition: 0.35s;
}

header:hover .top-menu {
  background: rgba(255, 255, 255, 0.277);
  color: var(--menu-black);
}

header:hover .t-menu-1 {
  color: var(--menu-black);
}

.t-menu-1:hover::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m1:hover) .t-menu-1.m1::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m2:hover) .t-menu-1.m2::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m3:hover) .t-menu-1.m3::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m4:hover) .t-menu-1.m4::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m5:hover) .t-menu-1.m5::after,
.mdd-header-menu-wrapper:has( .t-menu-2 > .m6:hover) .t-menu-1.m6::after {
  content: "";
  left: 0;
  right: 0;
  width: 100%;
}
.menu-2-box > .t-menu-2 {
  /* display: none; */
  display: inline-grid;
  position: fixed;
  pointer-events: none;
  grid-template-columns: 0.25fr 0.6fr;
  width: 100%;
  opacity: 0;
  height: 0;
  font-size: 1rem;
  background: var(--white);
  top: 0;
  padding: 0px;
  color: var(--menu-black);
  /* cursor: pointer; */
  /* z-index: 12; */
  padding-left: 20px;
  overflow: hidden;
  padding-right: 50px;
  transition: all 0s;
}
.menu-2-box > .t-menu-2 .t-menu-2-list:hover {
  color: var(--base-hover-color);
}
/* .mdd-header-menu-wrapper *{
    filter: invert(var(--invert-lv));
} */
#containerHeader:has(.t-menu-1:hover,.t-menu-2:hover){
    mix-blend-mode: inherit;
    background: white;
}
#containerHeader:has(.t-menu-1:hover) .top-logo{
  /* filter: invert(0); */
}
#containerHeader.top-position:has(.header-m1-wrap:hover,.t-menu-2:hover) .top-logo{
    background: url("../../contents/logo/metamdd.svg") no-repeat center / contain;
}
#containerHeader:has(.t-menu-1:hover,.t-menu-2:hover,.menu-1-box:hover) .t-menu-1,
#containerHeader.top-position:has(.t-menu-1:hover,.t-menu-2:hover,.menu-1-box:hover) .burgger-box *,
#containerHeader:has(.t-menu-1:hover,.t-menu-2:hover,.menu-1-box:hover) a{
  color: var(--black);
}
.top-menu:has(.t-menu-1.m1:hover) + .menu-2-box > .t-menu-2.m1,
.menu-2-box > .t-menu-2.m1:hover,
.top-menu:has(.t-menu-1.m2:hover) + .menu-2-box > .t-menu-2.m2,
.menu-2-box > .t-menu-2.m2:hover,
.top-menu:has(.t-menu-1.m3:hover) + .menu-2-box > .t-menu-2.m3,
.menu-2-box > .t-menu-2.m3:hover,
.top-menu:has(.t-menu-1.m4:hover) + .menu-2-box > .t-menu-2.m4,
.menu-2-box > .t-menu-2.m4:hover,
.top-menu:has(.t-menu-1.m5:hover) + .menu-2-box > .t-menu-2.m5,
.menu-2-box > .t-menu-2.m5:hover,
.top-menu:has(.t-menu-1.m6:hover) + .menu-2-box > .t-menu-2.m6,
.menu-2-box > .t-menu-2.m6:hover,
.top-menu:has(.t-menu-1.m7:hover) + .menu-2-box > .t-menu-2.m7,
.menu-2-box > .t-menu-2.m7:hover,
.top-menu:has(.t-menu-1.m8:hover) + .menu-2-box > .t-menu-2.m8,
.menu-2-box > .t-menu-2.m8:hover ,
.top-menu:has(.t-menu-1.m9:hover) + .menu-2-box > .t-menu-2.m9,
.menu-2-box > .t-menu-2.m9:hover ,
.top-menu:has(.t-menu-1.m10:hover) + .menu-2-box > .t-menu-2.m10,
.menu-2-box > .t-menu-2.m10:hover ,
.top-menu:has(.t-menu-1.m11:hover) + .menu-2-box > .t-menu-2.m11,
.menu-2-box > .t-menu-2.m11:hover ,
.top-menu:has(.t-menu-1.m12:hover) + .menu-2-box > .t-menu-2.m12,
.menu-2-box > .t-menu-2.m12:hover ,
.top-menu:has(.t-menu-1.m13:hover) + .menu-2-box > .t-menu-2.m13,
.menu-2-box > .t-menu-2.m13:hover,
.top-menu:has(.header-m1-wrap:hover) +  .menu-2-box > .t-menu-2,
.menu-2-box > .t-menu-2:hover
{
  display: inline-flex;
  pointer-events: all;
  justify-content: center;
  align-items: flex-start;
  left: 0;
  /* grid-template-columns: 0.25fr 0.6fr; */
  grid-template-columns: 1fr;
  opacity: 1;
  height: auto;
  grid-template-columns: repeat(5, 140px);
  padding-top: calc(var(--header-height) + 20px);
  padding-left: 40px;
  padding-right: 50px;
  padding-bottom: 50px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2039215686);
  transition: 0.25s cubic-bezier(1, 0.89, 0.41, 1.25);
  box-sizing: border-box;
}
div:has(> .t-menu-2-list) { /*ljh modify 240830*/
  width: 100%;
  gap: 15px;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.menu-2-box > .t-menu-2 > div{
  height: 100%;
  /* border-right: 1px solid gainsboro; */
  flex-basis: 140px;
  align-self: flex-start !important;
}
.menu-2-box > .t-menu-2 > div:last-of-type{
  border-right: unset;
}
.t-menu-2 .dp-img {
  display: none !important;
  width: 340px;
  height: 150px;
  border-right: 1px solid gainsboro;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 250px 100%;;
  transition-delay: .35s;
  transition: all 0.45s;
  /* transform: scale(0); */
}
.top-menu:has(.t-menu-1:hover) + .menu-2-box > .t-menu-2 .dp-img,
.t-menu-2:hover .dp-img{

}
.t-menu-2.m2  .dp-img {
  background-image:  url("../../contents/logo/metamdd.svg") !important;
  background-repeat: no-repeat;
  background-size: 300px 210px;
  background-position: top;
}

.t-menu-2.m3 .dp-img {
  background-image: url("../../img/item/bigdata.svg") !important;
  background-repeat: no-repeat;
  /* background-size: 250px 100%;
  background-position: center; */
  background-size: 300px 210px;
  background-position: top;
}

.t-menu-2.m4 .dp-img {
  background-image: url("../../img/item/community.svg") !important;
  background-repeat: no-repeat;
  background-size: 300px 210px;
  background-position: top;
}

.t-menu-2.m5 .dp-img {
  background-image: url("../../img/item/customer.svg") !important;
  background-repeat: no-repeat;
  background-size: 300px 210px;
  background-position: top;
}

.t-menu-2 > .content-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t-menu-2-list {
  position: relative;
  /* margin-left: 40px; */
  width: 100%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* border-radius: 18px; */
  /* width: fit-content; */
  padding: 4px 10px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: bold;
  /* box-shadow: -1px -2px 2px var(--white), 3px 3px 8px var(--Grayscale-20); */
  transition: all cubic-bezier(0.77, 0, 0.175, 1) .35s;
  /* text-shadow: 1px 1px 1px var(--black); */
  font-weight: normal;
  color: #3b3b3b;
  box-sizing: border-box;
}
.t-menu-2-list:hover{
  background: var(--menu-h-col-001);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 10px 10px;
  box-sizing: border-box;
}
.t-menu-2-list::before {
  /* content: ''; */
  display: inline-flex;
  position: relative;
  width: 5px;
  height: 5px;
  /* background: linear-gradient(45deg, #b4bcff, transparent); */
  border-radius: 80%;
  left: -5px;
  box-shadow: 1px 2px 2px #0000003b;
}
.login-info {
  display: inline-flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--Grayscale-70);
  font-weight: bold;
  /* filter: drop-shadow(1px 1px 0px var(--bg-white-font-black)); */
}

.login-info > span {
  cursor: pointer;
}

.burgger-box {
  cursor: pointer;
}
.burgger-box a{
    /* filter: invert(var(--invert-lv)) !important; */
    color: var(--menu-black);
}
.language-btn {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  z-index: 1;
  width: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.language-btn.active {
  justify-content: flex-end;
}
.language-btn::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 5px;
  background: rgba(255, 255, 255, 0.641);
  border-radius: 30px;
  z-index: -1;
  left: 2px;
}
footer {
  box-sizing: border-box;
  /* padding: 0px 40px 0 40px; */
  padding: 0;
  background: #2a2a2a;
  color: var(--white);
}
.footer {
  width: 100%;
  flex: 1;
  padding: 30px 50px 0 50px;
  box-sizing: border-box;
  max-width: var(--max-width);
}
.footer .logo-img {
  margin-left: 50px;
  width: 310px;
  height: 70px;
  background: url('../../contents/logo/metamdd-big-big-white.svg') no-repeat;
  background-size: 190px;
  background-position: center;
  max-width: 100%;
}
.footer p {
  color: whitesmoke;
}
.nav-container .logo, footer .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: var(--header-content-height);
  align-self: center;
  cursor: pointer;
  margin-top: 80px;
  /* filter: drop-shadow(2px 2px 0px var(--white)); */
}
div:has(>.gjATB){
    /* overflow: hidden; */
    /* padding: 20px; */
    box-sizing: border-box;
}
.gjATB {
  position: relative;
  width: 100%;
  min-height: 25vh;
  /* border-radius: 20px; */
  overflow: hidden;
  /* background-image: url('../../contents/img/main_banner_006.jpg'); */
  background-image: url('../../contents/img/about_bg.jpg');
  /* background-size: cover; */
  background-repeat: no-repeat;
  background-position: top;
  background-attachment: fixed;
  background-size: 100% 50%;
  display: flex;
  padding: 10px 20px;
    box-sizing: border-box;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.gjATB.type-1 {
  /* background-image: url('../../contents/img/backup001.jpeg'); */
  background-image: url('../../contents/img/000001000.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top -430px center;
}
.gjATB.type-2 {
  background-image: url('../../contents/img/top-banner-002.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-3 {
  background-image: url('../../contents/img/top-banner-003.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-4 {
  /* background-image: url('../../contents/img/top-banner-005.jpg'); */
  background-image: url('../../contents/img/000002000.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-5 {
  background-image: url('../../contents/img/top-banner-004.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-6 {
  background-image: url('../../contents/img/top-banner-004.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-7 {
  background-image: url('../../contents/img/top-banner-004.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.gjATB.type-5 {
  background: linear-gradient(138deg, #1eb6ff, transparent);  
}
.gjATB h3 {
  width: 100%;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  z-index: 1;
}
.gjATB h3::before {
  content: '';
  /* background: #ffffff38; */
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  left: 0;
  top: 0;
  z-index: -1;
  backdrop-filter: saturate(0.5) brightness(0.9);
}
.code-title {
  width: 100%;
  background: linear-gradient(180deg, #f0f0f0, #ffffff);
  display: flex;
  color: #313131;
  padding: 15px 10px;
  box-sizing: border-box;
  border: 3px solid white;
  border-radius: 8px;
  box-shadow: 0 0 18px #00000017;
  box-sizing: border-box;
}


/* 설문 */
.question-container {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 1px 1px 3px #00000040;
    border-left: 8px solid var(--Primary-50);
    border-radius: 4px;
}
.answer-main.S01,
.answer-main.S02 {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.answer-main.T02 .mddTextArea{
    width: 100%;
    min-height: 150px;
    line-height: 1.4;
    padding: 10px;
    box-sizing: border-box;
}
/* 설문 */
/* 행사일정 */
.toastui-calendar-layout{
    border: 1px solid gainsboro;
    border-radius: 14px;
    overflow: hidden;
}
/* 행사일정 */


/* 문의 & 게시판 */
.comment-tree::after {
  content: '등록된 글이 없습니다.';
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  box-sizing: border-box;
  border-top: 1px dashed var(--Grayscale-60);
  border-bottom: 1px dashed var(--Grayscale-60);
  opacity: .7;
}

.comment-tree:has( > div[id^='cmnt'])::after{
    content: unset;
}
/* 문의 & 게시판 */
div:has(div >.faq-type-wrapper){
  gap: 20px;
}
div:has(>.faq-type-wrapper) {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.faq-type-wrapper {
  border: 1px solid #e5e5e5;
  background: var(--Grayscale-0);
  border-radius: 58px;
  display: flex;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.faq-menu-wraper {
  width: 15rem;
}
.faq-type-wrapper {
  color: var(--Grayscale-30);
}
.faq-type-wrapper.select-type {
  color: var(--Primary-50);
}
.faq-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.faq-type-wrapper > h5{
  margin: unset;
  font-size: 1.2rem;
}
.faq-type-wrapper.select-type {
  border: 1px solid var(--Primary-50);
  background: var(--Primary-50);
  color: var(--white) !important;
}

.faq-type-wrapper.select-type *{
  color: var(--white) !important;
}
.faq-body-wrapper {
  padding: 10px;
  background: #f0f5ff;
  border-radius: 5px;
}
.h5.faq-header{
  cursor: pointer;
}
.table-of-contents{
  position: sticky;
  top: 70px;
}
.table-of-contents:has(>.table-of-contents){
  background: #ffffff1c;
  backdrop-filter: blur(4px) saturate(0.5);
  border-radius: 8px;
  counter-reset: number 0;
}
.table-of-contents:has(>.table-of-contents) li::before{
    counter-increment: number 1;
    content: counter(number) '. ';
}

.faq-header-wrapper >h5 {
  font-size: 1.2rem;
}
.faq-container{
  margin-bottom: 2rem;
  cursor: pointer;
  border-bottom: 1px solid gainsboro;
}
/* td:has(td + td.ui-wizgrid-show-cell[aria-describedby$="_FILE_YN"][title="Y"]){
    color:red !important;
} */
td.ui-wizgrid-show-cell[aria-describedby$="_FILE_YN"][title="Y"]{
    position: relative;
    overflow: visible;
}
td.ui-wizgrid-show-cell[aria-describedby$="_FILE_YN"][title="Y"]::after{
  content: '';
  width: 25px;
  height: 25px;
  background: url("../../img/icon/file.png") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  cursor: pointer;
}
.manual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  background: #ffffff;
  color: #1b1b1b;
  border-radius: 4px;
  font-weight: bold;
  text-underline-position: under;
  white-space: nowrap;
  border-bottom: 1px solid var(--Grayscale-30);
}

.mark-wrapper .mark-container:nth-of-type(2n) {
  width: var(--mark-width);
  height: 40px;
  transform: translateX(var(--mark-width-2));
  animation: 30s linear 0s infinite normal none running mark-right;
}
.mark-wrapper .mark-container:nth-of-type(2n-1) {
  width: var(--mark-width);
  height: 40px;
  transform: translateX(0px);
  animation: 60s linear 0s infinite normal none running mark-left;
}
.mark-wrapper .mark-container:nth-of-type(2n-1):hover{
  animation-play-state: paused;
}
.mark-wrapper{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.mark-logo-box {
  /* width: var(--mark-width); */
}
.mark-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  padding: 0 20px;
  height: 100%;
  background: rgba(179, 179, 179, 0.412);
  filter: contrast(0) grayscale(1) opacity(1) saturate(0) drop-shadow(0 0 0px rgba(255, 255, 255, 0.548));
  color: transparent;
  cursor: pointer;
  transition: all .35s;
}
.mark-logo:hover{
  filter: contrast(0) grayscale(1) opacity(1) saturate(0) drop-shadow(0 10px 4px #ffffff12);
}
.mark-logo:nth-of-type(1){
  background: url("../../img/logo/mark-logo/logo_gyeongbuk.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(2){
  background: url("../../img/logo/mark-logo/gas-logo_wh.svg") no-repeat center / contain;
}
.mark-logo:nth-of-type(3){
  background: url("../../img/logo/mark-logo/pngwing.svg") no-repeat center / contain;
  /* filter: unset; */
}
.mark-logo:nth-of-type(4){
  background: url("../../img/logo/mark-logo/junju-logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(5){
  background: url("../../img/logo/mark-logo/yongjin_logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(6){
  background: url("../../img/logo/mark-logo/gov-g-logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(7){
  background: url("../../img/logo/mark-logo/guk-pyong-logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(8){
  background: url("../../img/logo/mark-logo/koscom-logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(9){
  background: url("../../img/logo/mark-logo/kb-logo.svg") no-repeat center / contain;
}
.mark-logo:nth-of-type(10){
  background: url("../../img/logo/mark-logo/daegu_logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(11){
  background: url("../../img/logo/mark-logo/kb-logo.svg") no-repeat center / contain;
}
.mark-logo:nth-of-type(12){
  background: url("../../img/logo/mark-logo/aica-logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(13){
  background: url("../../img/logo/mark-logo/kitri_logo.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(14){
  background: url("../../img/logo/mark-logo/lotte-logo2.png") no-repeat center / contain;
}
.mark-logo:nth-of-type(15){
  background: url("../../img/logo/mark-logo/logo_bosystems.png") no-repeat center / contain;
}
/* .mark-logo:last-of-type {
  background: hotpink;
  } */
  .mainWraperSwiper2 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
  display: flex;
  flex-direction: row;
}
.mainWraperSwiper2 img,
.mainWraperSwiper2 video{
  height: 100% !important;
  width: 100% !important;
  min-width: 1900px;
  position: relative;
  top: 0;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-login-set {
  cursor: pointer;
}
.grid-status-wrap {
  background: transparent;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.grid-status-wrap div[data-lang="모집중"]::after {
  content: '모집중';
  position: absolute;
  right: 0;
  background: linear-gradient(45deg, #1c2485, #6391ff);
  padding: 6px 20px;
  border-radius: 0;
  top: 20px;
  font-size: 0.9rem;
  color: #ffffff;
  /* font-weight: bold; */
  border-radius: 0 18px;
  box-shadow: -3px 3px 3px #00000030;
}
.grid-status-wrap div[data-lang="준비중"]::after {
  content: '준비중';
  position: absolute;
  right: 0;
  background: linear-gradient(45deg, #a5a5a5, #8f8f8f);
  padding: 6px 20px;
  border-radius: 0;
  top: 20px;
  font-size: 0.9rem;
  color: #ffffc8;
  /* font-weight: bold; */
  border-radius: 0 18px;
  box-shadow: -3px 3px 3px #00000030;
}
.grid-status-wrap div[data-lang="마감임박"]::after {
  content: '마감임박';
  position: absolute;
  right: 0;
  background: linear-gradient(45deg, #851c1c, #ff6363);
  padding: 6px 20px;
  border-radius: 0;
  top: 20px;
  font-size: 0.9rem;
  color: #ffffc8;
  /* font-weight: bold; */
  border-radius: 0 18px;
  box-shadow: -3px 3px 3px #00000030;
}
.title-wrapper{
	display: flex;
	width :100%;
	border-left: 5px solid black;
	padding-left: 10px;
	justify-content: space-between;
}
.cmntEditBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cmntEditBox .character-counter {
  align-self: flex-end;
}
@keyframes mark-right {
  100% {
      transform: translateX(0);
  }
}
@keyframes mark-left {
  100% {
      transform: translateX(var(--mark-width-2));
  }
}

@media (max-width: 2048px) {
  div#containerAll{
    zoom: 1;
  }
}
@media (max-width: 1600px) {
    .body-container{
        padding: 0 10px;
        box-sizing: border-box;
    }
    div#containerAll{
      /* zoom: .8; */
    }
}
@media (max-width: 900px) {
  :root{
    --header-height: 60px;
  }
  *::-webkit-scrollbar{
    display: none;
  }
  .main-container{
    /* padding: 0 10px; */
  }
  h3{
    font-size: 1.3rem ;
  }
  .tabSubTitle h3{
    font-size: 1.3rem !important;
  }
  .text-title-box{
    font-size: 1.2rem;
  }
  .body-container {
      padding: 0 10px 10px 10px;
      box-sizing: border-box;
  }
  footer{
    /* padding: 50px 0 120px 0; */
  }
  /* .top-menu {
    grid-template-columns: 1fr;
    height: unset;
    min-height: var(--header-height);
    padding: 10px 0;
  } */
  .top-menu {
      display: flex;
      height: unset;
      min-height: var(--header-height);
      justify-content: space-between;
      align-items: center;
      padding: 0 1rem;
      position: sticky;
      top: 0;
  }
  .menu-1-box {
    display: none !important;
  }
  .logo-box{
    height: 40px;
    min-height: 40px;
  }
  .fill-text{
    font-size: 3.4rem !important;
  }
  .main-title{
    font-size: 2rem !important;
    align-self: center;
  } 
  .mob-col {
      grid-template-columns: repeat(1,1fr) !important;
      flex-direction: column !important;
  }
  .jDmIcV li{
    width: 100% !important;
  }
  .footer{
    flex-direction: column !important;
    padding: 10px;
  }
  .mdd-tree-wrap{
    min-width: unset !important;
    max-width: 100% !important;
    
  }
  
  .pmdd-ani{
    /* max-height: 100vh; */
    transform: translateX(0%);
    /* animation: toRight 10s linear alternate infinite; */
    
  }
  .pmdd-ani:hover{
    /* animation-play-state: paused; */
    /* animation:unset; */
    /* overflow: auto; */
    transform: translateX(-0%);
  }
  .table-of-contents{
    top: 90px;
  }
  .ui-wizgrid-sub-title{
    flex-direction: column;
    gap: 10px;
  }
  #leftMenu .sub-menu-container{
    box-shadow: unset ;
  }
  /* #leftMenu div[class^='header-menu'] > a:not(.active){
    display: none;
  } */
  #leftMenu:hover div[class^='header-menu'] > a:not(.active){
    display: flex;
  }
}


@keyframes toRight {
  from {
      transform: translateX(-0%);
  }
  to {
      transform: translateX(-100%);
  }
}
@media (max-width: 900px) {
  .body-container{
    flex-direction: column !important;
  }
  .faq-menu-wraper {
        white-space: pre;
        width: 100%;
        flex-direction: row !important;
    position: sticky;
        top: 90px;
  }
  .table-of-contents{
    display: none;
  }
  .table-of-contents:has(+ .table-of-contents > a.active),
  .table-of-contents:has(a.active), 
  .table-of-contents:has(a.active) + .table-of-contents, 
  .table-of-contents:has(a.active) + .table-of-contents+ .table-of-contents {
    display: flex;
    margin: 0;
    /* overflow: auto; */
    white-space: nowrap;
  }
  .view-full-box{
    padding: 0 5px;
    height: fit-content !important;
  }
  footer{
    /* overflow: hidden; */
    padding: 0px 10px 50px 10px;

    height: fit-content !important;
  }
  .nav-container .logo, footer .logo,
  .footer .logo-img{
    margin: 0;
    align-self: flex-end;
    background-position: right;
  }
  .mark-wrapper{
    margin-bottom: 20px;
  }
  div#containerAll{
    zoom: 1;
  }
  .gjATB.type-1{
    background-position: center center;
  }
}
