@charset "utf-8";
/* Noto Sans */
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap"); */

@font-face {
  font-family: "LGSmHa";
  src: url("../font/LGSmHaSB.ttf") format("truetype");
  font-weight: bolder;
}
@font-face {
  font-family: "LGSmHa";
  src: url("../font/LGSmHaB.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "LGSmHa";
  src: url("../font/LGSmHaR.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "LGSmHa_Kr";
  src: url("../font/LGSmHaR_kr.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "LGSmHa";
  src: url("../font/LGSmHaL.ttf") format("truetype");
  font-weight: lighter;
}

body,
html {
  font-family: "LGSmHa_Kr", "LGSmHa", sans-serif;
  font-weight: 500;
  min-width: 1440px;
  color: #000;
}

.ReactModal__Body--open {
  overflow: hidden;
}

.dimmed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
}

/*==============================
	header	
==============================*/
#header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 10;
}

#header {
  background: url("../images/layout/bg_header.gif") repeat-x;
  background-size: 100% 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 1440px) {
  #header-wrap {
    overflow: auto;
  }
  #header {
    min-width: 1440px;
  }
}

#logo {
  height: 100%;
}

#logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 30px;
  font-weight: bold;
  color: var(--lg-color);
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

#header .account-wrap {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: normal;
  width: auto;
  height: auto;
  background: none;
}
#header .select-wrap {
  padding-right: 5px;
  border: 1px solid #ddd;
  margin-right: 20px;
  background: #fff;
}
#header .factoryCode-wrap {
  width: fit-content;
  padding: 5px 10px;
  border: none;
  outline: none;
  min-width: 100px;
  text-transform: uppercase;
}

#header .account-wrap .membername .grade {
  color: #fe8621;
  font-weight: bold;
  margin-right: 5px;
}

#header .account-wrap .membername a {
  color: #fff;
}

#header .account-wrap .membername i {
  margin-left: 5px;
}

#header .account-wrap .btn-login {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  margin-left: 40px;
}
.gnb-wrap {
  height: 100%;
  position: absolute;
  top: 0;
  left: 200px;
}

.gnb-wrap .gnb {
  display: flex;
  align-items: center;
  height: 100%;
}

.gnb-wrap .gnb .gnb_l1 {
  height: 100%;
}

.gnb-wrap .gnb .gnb_a1 {
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px;
}

.gnb-wrap .gnb .gnb_l1 .gnb_a1.active {
  background-color: var(--lg-color);
}

.gnb-wrap .gnb .gnb_l1:hover .gnb_a1 {
  background-color: var(--lg-color);
}

/*==============================
	content	
==============================*/
#content-wrap {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 60px);
}

.lnb-wrap {
  width: 200px;
  height: 100%;
  background: #676767;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 99;
}

.lnb-wrap .lnb {
  width: 180px;
  margin: 20px auto;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.25);
}

.lnb-wrap .lnb .lnb_l1 {
  background: url("../images/layout/bg_left_menu1.gif");
  background-size: 100% 100%;
  position: relative;
}
.lnb-wrap .lnb .lnb_l1:first-child {
  background: url("../images/layout/bg_left_menu1_first.gif");
  background-size: 100% 100%;
}

.lnb-wrap .lnb .lnb_l1 + .lnb_l1 {
  border-top: none;
}

.lnb-wrap .lnb .lnb_a1 {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 16px;
}

.lnb-wrap .lnb .lnb_l1 .lnb_a1.active {
  color: var(--lg-color);
}

.lnb-wrap .lnb .lnb_l1:hover {
  color: var(--lg-color);
}

#contents {
  position: absolute;
  top: 60px;
  left: 200px;
  width: calc(100% - 200px);
  padding: 20px 20px;
  box-sizing: border-box;
}

#contents .title {
  border-bottom: 2px solid var(--lg-color);
  padding: 6px 0 10px 0;
  box-sizing: border-box;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#contents .title p {
  font-size: 22px;
  color: var(--lg-black);
  line-height: 150%;
}

.cont {
  overflow: auto;
}
