@charset "utf-8";

/* common.css - 기본 스타일 정의, layout, 로그인 페이지
------------------------------------------------------------------------------------------------------- */
/* ///////////////////////////////////////////////
   기본 스타일 정의
////////////////////////////////////////////// */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}  
html, body, #wrap {
  font-family: 'notokr', sans-serif;
  font-size: 20px;
  height: 100vh;
  margin: 0;
  min-width: 320px;
  letter-spacing: -.03em;
  word-spacing: .1em;
}

main { display: block;  }

hr {
  border: 1px solid #e1e1e1;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace; 
  font-size: 1em;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em; 
}
small { 
  font-size: small;  
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {  bottom: -0.25em;}
sup {  top: -0.5em;}
img {  border-style: none; }
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; 
}
button,
input { 
  overflow: visible;
}
button,
select { 
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
legend {
  box-sizing: border-box; 
  color: inherit;
  display: table; 
  max-width: 100%; 
  padding: 0;
  white-space: normal; 
}
p {
  margin: .6em 0;
}
progress {
  vertical-align: baseline;
}
time {
  font-size: .55rem;
  letter-spacing: 0;  
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; 
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield; 
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button; 
  font: inherit;
}
details {
  display: block;
}    
summary {
  display: list-item;
}
template, 
[hidden] {
  display: none;
}
*, *:after, *:before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
*:not(p, input) { line-height: 1; }
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ccc;
  line-height: 1.4;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #ccc;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
  color: #ccc;
}

/* hedline */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h1, h2, h3, h4,
.h1, .h2, .h3 {
  color: #272727;
  line-height: 1.45;
}
.h1, .h2, .h3, .h4 {
  margin: 0;
}
.h1 { font-size: .9rem;}


/* Align */
.ta_l { text-align: left; }
.ta_c { text-align: center; }
.ta_r { text-align: right; }
.va_t { vertical-align: top; }
.va_m { vertical-align: middle; }
.va_b { vertical-align: bottom; }

/* position */
.posi { position: absolute;}
.posi_t_l { left: 0; top: 0; }
.posi_t_r { right: 0; top: 0; }
.posi_b_l { left: 0; bottom: 0; }
.posi_b_r { right: 0; bottom: 0; }
.posi_c {  left: 50%; top: 50%; }
.posi_c_l { left: 0; top: 50%; }
.posi_c_r { right: 0; top: 50%; }

/* line */
.underline {  
  border-bottom: 1px solid #dcdcdc;
  box-sizing: content-box;
}

/* flex */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ai_c {
  align-items: center;
}
.ai_fs {
  align-items: flex-start;
}
.jc_sb {
  justify-content: space-between;
}
.jc_c {
  justify-content: center;
}
.jc_fe {
  justify-content: flex-end;
}
.flex1 {
  -webkit-flex: 1;  /* Safari 6.1+ */
  -ms-flex: 1;  /* IE 10 */  
  flex: 1;
}

/* IR */
.blind {
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
}
.hide { display: none;}

/* scroll */
.scroll_y {
  overflow: hidden;
  overflow-y: auto;
}
.scroll_x {
  overflow: hidden;
  overflow-x: auto;  
}

/* width */
.w_auto {
  width: auto !important;
}
.w_xs {
  width: 3em;
}

.w_full {
  width: 100% !important;
}
.w_half {
  width: 50% !important;
}
.w_quarter {
  width: 25% !important;
}

.w_10per {
  width: 10% !important;
}
.w_20per {
  width: 20% !important;
}
.w_30per {
  width: 30% !important;
}
.w_35per {
  width: 35% !important;
}
.w_40per {
  width: 40% !important;
}
.w_49per {
  width: 49% !important;
}
.w_60per {
  width: 60% !important;
}
.w_70per {
  width: 70% !important;
}
.w_80per {
  width: 80% !important;
}
.w_90per {
  width: 90% !important;
}
.w_100per {
  width: 100% !important;
}

.h_full {
  height: 100vh;
}
.h_full_tab {
  height: 100vh;
}
.h_half {
  height: 50vh;
}
.h_quarter {
  height: 25vh;
}

/* 목록 높이 */

.list10 { height: 10vh; }
.list15 { height: 15vh; }
.list20 { height: 20vh; }
.list30 { height: 30vh; }
.list35 { height: 35vh; }
.list40 { height: 40vh; }
.list45 { height: 40vh; }
.list48 { height: 46vh; }
.list50 { height: 50vh; }
.list60 { height: 60vh; }
.list65 { height: 65vh; }
.list70 { height: 70vh; }
.list75 { height: 75vh; }
.list80 { height: 80vh; }
.list85 { height: 85vh; }
.list90 { height: 90vh; }
.list100 { height: 100vh; }



/* //////////////////////////////////////////////
    Layout style
////////////////////////////////////////////// */
#wrap {
  background:#F4F4F8;
  padding: 3em 0 0;
  overflow-x: hidden;
}
.container {
  position: relative;
}
.conts_wrap {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0, .04);
  height: 100%;
  overflow: auto;
}
.conts_wrap h1, .conts_wrap h2, .conts_wrap h3, .conts_wrap h4 {
  margin:0;
}
/* header  */
.wrap_header {
  box-shadow: 1px 0 3px;
  left: -270px; top:0;
  height:100vh;
  position: fixed;
  width: 270px;
  z-index: 2;
  transition: all .5s ease-in-out;
}
.wrap_header > .container {
  background: #276D8F;  
  height: 100vh;
  padding: 1em 0;
  width: 100%;
  z-index: 1;
}
.brand {
  height: 20px;
  width: 50px;
  margin: .5em auto;
}
.wrap_header .brand {
  margin: 0 .4em .5em;
}

.font-green {
  color:#276D8F !important;
}
.logo_nsin {
  background: url(../img/logo_sm_w.png) no-repeat;
  background-size: 100%;
  display: block;
  height: 100%; width: 100%;
}

.logo_nsin_lg {
  background: url(../img/logo_lg_w.png) no-repeat;
  background-size: 100%;
  display: block;
  height: 100%; width: 100%;
}

.location .logo_nsin {
  background: url(../img/logo_lg_c.png) no-repeat;
  background-size: 100%;
}
.user_info {
  background: #3A84A8;
  border-bottom: 1px solid #276D8F;
  border-top: 1px solid #276D8F;
  padding: .7em;
}
.user_name {
  color: #fff;
  font-size: .8rem;
}

.dim {
  display: none;
  background: rgba(0,0,0, .75);    
  position: fixed;
  left: 0;  top: 0;
  width: 100vw; height:100vh;
}
.wrap_header.active .dim {
  display: block;
  -webkit-overflow-scrolling : touch;
}

/* breadcrumb */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #BBBBC5;
  box-shadow: 0 2px 3px rgba(0,0,0, .05);  
  height:50px; width: 100vw;
  padding-left: 0;
  position: fixed;
  top: 0;
  z-index: 1;
  touch-action: none;
}
.breadcrumb > .all_menu {
  background: #276D8F;
  display: inline-block;  
}
  .all_menu > .btn {
    color: #fff;
  }
.breadcrumb > .location {
  width: calc(100% - 50px);  
  left: 50px; top: 0;
}
.location > .current_page {
  color: #276D8F;
  font-size: 1rem;
  font-weight: 500;
  height: 50px;
  margin: 0;
  padding: .6em;
  text-align: center;
  max-width:1000px;
}

.all_menu > .btn,
.current_page > ._prev {  
  height: 50px; width: 50px;
}
.current_page > ._prev {
  left: 0; top: 0;  
}
.breadcrumb > .all_menu,
.location > .current_page {
  position: relative;
}
.breadcrumb > .location,
.current_page > ._prev {
  position: absolute;
}
.conts_header {
  border-bottom: 1px solid #efefef;
  padding: .9em 1em .3em;  
}
.nonDis {
  display:none !important;
}
.location.noMenubar {
  width: 100% !important;
  left: 0 !important;
}
.location.chatTitle {
  width: calc(100% - 100px);
  right: 50px;
}
.infoDiv{
	padding: .5rem .5rem;
	border-bottom: 1px solid #efefef;
}
.infoDetail{
	padding: .5rem .5rem;
	font-size: 13px;
	background: #efefef;
}
.readonly {
    background-color: #eee !important;
    border: 1px solid #d8d8d8 !important;
}

.btn_chat{
	float: right;
    margin-top: .28rem;
    margin-right: .2rem;
    background: #fff;
    color: #276d8f !important;
}
.td>div {
    padding-top: 5px !important;
}
.iframeArea{
	overflow:hidden;
	overflow-x:hidden;
	overflow-y:hidden;
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	border:0;
	display:block;
	background-color:#fff;
	z-index:1;
}

.printWaterMark {
	display:none;
}