/* Base */
*{
	scrollbar-arrow-color:#9D9992;
	scrollbar-3dlight-color:#D4D0C8;
	scrollbar-darkshadow-color:#bcbcbc;
	scrollbar-face-color:#bcbcbc;
	scrollbar-hightlight-color:#bcbcbc;
	scrollbar-shadow-color:#bcbcbc;
	scrollbar-track-color:#f1f1f1;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	outline: 0;
	overflow-x: hidden;
	overflow-y: auto;
	color: #fff;
	background:#2b333e;
}
body img {
	border: none;
	max-width: 100%;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

a {
	text-decoration: none;
	color: #fff;
	outline: none;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

:focus {
	outline: none;
}

div, a {
	box-sizing:border-box;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Noto Sans KR', sans-serif;
	margin-top: 0;
	font-weight: 600;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 21px; }
h4 { font-size: 19px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }


.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after { display: table; line-height: 0; content: ""; }
.clearfix:after { clear: both; }
.clear { clear: both; }

.oh { overflow: hidden; }
.relative { position: relative; }
.section-wrap, .section-wrap-mp { padding: 150px 0; overflow: hidden; background-attachment: fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center center; background-repeat: no-repeat; }
.color-white { color: #fff !important; }
.left { float: left; }
.right { float: right; }
.bg-light { background-color: #f7f7f7; }
.bg-dark { background-color: #242424; }
.last { margin-bottom: 0 !important;}

.ml-11 { margin-left:11px; }
.ml-20 { margin-left:20px; }

::-moz-selection { color: #fff; background: #000; }
::-webkit-selection { color: #fff; background: #000; }
::selection { color: #fff; background: #000; }

select {
	width:100%;
	height:34px;
	line-height: 1.2;
	font-size: 16px;
	padding-left:10px;
	border:1px solid #000;
	background:#fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
.select {
	position: relative;
	cursor: pointer;
}
.select i {
	position: absolute;
	top: 8px;
	right: 13px;
	pointer-events: none;
	font-size: 18px;
	color:#333;
}

/************************************************************************/
/* 버튼 */
.button_base {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
}
.button_base:active {
	-webkit-transform: translate(0, 4px);
	-moz-transform: translate(0, 4px);
	transform: translate(0, 4px);
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.button {
    background-color: #3f6ebc;
    padding: 5px 10px;
    border: 1px solid #265199;
    background-image: linear-gradient(bottom, rgb(50,94,168) 0%, rgb(66,114,193) 100%);
    background-image: -o-linear-gradient(bottom, rgb(50,94,168) 0%, rgb(66,114,193) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(50,94,168) 0%, rgb(66,114,193) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(50,94,168) 0%, rgb(66,114,193) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(50,94,168) 0%, rgb(66,114,193) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(50,94,168)),
        color-stop(1, rgb(66,114,193))
    );
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #1a407a, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #1a407a, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #1a407a, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.button:active {
    background-image: linear-gradient(bottom, rgb(66,114,193) 0%, rgb(50,94,168) 100%);
    background-image: -o-linear-gradient(bottom, rgb(66,114,193) 0%, rgb(50,94,168) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(66,114,193) 0%, rgb(50,94,168) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(66,114,193) 0%, rgb(50,94,168) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(66,114,193) 0%, rgb(50,94,168) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(66,114,193)),
        color-stop(1, rgb(50,94,168))
    );
	-webkit-box-shadow: 0px 2px 0px #1a407a, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #1a407a, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #1a407a, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}
.button.big_font {
	font-size:16px;
}

.button2 {
    color: #fff;
    background-color: #999;
    padding: 5px 10px;
    border: 1px solid #5d5d5d;
    background-image: linear-gradient(bottom, rgb(129,129,129) 0%, rgb(180,180,180) 100%);
    background-image: -o-linear-gradient(bottom, rgb(129,129,129) 0%, rgb(180,180,180) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(129,129,129) 0%, rgb(180,180,180) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(129,129,129) 0%, rgb(180,180,180) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(129,129,129) 0%, rgb(180,180,180) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(129,129,129)),
        color-stop(1, rgb(180,180,180))
    );
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #5d5d5d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #5d5d5d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #5d5d5d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.button2:active {
    background-image: linear-gradient(bottom, rgb(180,180,180) 0%, rgb(129,129,129) 100%);
    background-image: -o-linear-gradient(bottom, rgb(180,180,180) 0%, rgb(129,129,129) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(180,180,180) 0%, rgb(129,129,129) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(180,180,180) 0%, rgb(129,129,129) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(180,180,180) 0%, rgb(129,129,129) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(180,180,180)),
        color-stop(1, rgb(129,129,129))
    );
	-webkit-box-shadow: 0px 2px 0px #5d5d5d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #5d5d5d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #5d5d5d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}

.button3 {
    color: #fff;
    background-color: #333d47;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #1c232d;
    background-image: linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,61,71)),
        color-stop(1, rgb(61,72,84))
    );
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #1c232d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
    -moz-box-shadow: 0px 6px 0px #1c232d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
    box-shadow: 0px 6px 0px #1c232d, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
}
.button3:active {
    background-image: linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -o-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(61,72,84)),
        color-stop(1, rgb(51,61,71))
    );
	-webkit-box-shadow: 0px 2px 0px #1c232d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #1c232d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #1c232d, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}


.button4 {
	color:#000;
    background-color: #fff;
    border: 1px solid #1a222c;
    text-shadow: 0px 0 0px rgba(0,0,0,.5);

    background-image: linear-gradient(bottom, rgb(217,217,217) 0%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(255,255,255) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(217,217,217)),
        color-stop(1, rgb(255,255,255))
    );
    -webkit-box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
    -moz-box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
    box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.1), inset 0px 0px 3px rgba(255,255,255,.3);
}
.button4:active {
	color:#fff;
    background-image: linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -o-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(255,189,64)),
        color-stop(1, rgb(245,173,37))
    );
	-webkit-box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}

.button5 {
    color: #fff;
    background-color: #fff;
    border: 1px solid #1a222c;
    text-shadow: 0px 0 0px rgba(0,0,0,.5);

    background-image: linear-gradient(bottom, rgb(245,173,37) 0%, rgb(255,189,64) 100%);
    background-image: -o-linear-gradient(bottom, rgb(245,173,37) 0%, rgb(255,189,64) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(245,173,37) 0%, rgb(255,189,64) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(245,173,37) 0%, rgb(255,189,64) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(245,173,37) 0%, rgb(255,189,64) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(245,173,37)),
        color-stop(1, rgb(255,189,64))
    );
    -webkit-box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #1a222c, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}
.button5:active {
    background-image: linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -o-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(255,189,64) 0%, rgb(245,173,37) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(255,189,64)),
        color-stop(1, rgb(245,173,37))
    );
	-webkit-box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #1a222c, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}


.button6 {
    color: #fff;
    background-color: #333d47;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #1c232d;
    background-image: linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -o-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(51,61,71) 0%, rgb(61,72,84) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(51,61,71)),
        color-stop(1, rgb(61,72,84))
    );
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 0px #1c232d, 0px 0 0 rgba(0,0,0,.4), inset 3px 3px 3px rgba(65,77,88,.9), inset 0px 0px 7px rgba(46,58,69,.9);
    -moz-box-shadow: 0px 0px 0px #1c232d, 0px 0 0 rgba(0,0,0,.4), inset 3px 3px 3px rgba(65,77,88,.9), inset 0px 0px 7px rgba(46,58,69,.9);
    box-shadow: 0px 0px 0px #1c232d, 0px 0 0 rgba(0,0,0,.4), inset 3px 3px 3px rgba(65,77,88,.9), inset 0px 0px 7px rgba(46,58,69,.9);
}
.button6:active {
    background-image: linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -o-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(61,72,84) 0%, rgb(51,61,71) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(61,72,84)),
        color-stop(1, rgb(51,61,71))
    );

}

.button7 {
    background-color: #538fbe;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #2d6898;
    background-image: linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -o-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(73,132,180) 0%, rgb(97,155,203) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(73,132,180)),
        color-stop(1, rgb(97,155,203))
    );
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.button7:active {
    background-image: linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -o-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(88,154,204)),
        color-stop(1, rgb(90,150,199))
    );
	-webkit-box-shadow: 0px 2px 0px #2b638f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #2b638f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #2b638f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}

.button8 {
    background-color: #f13e3d;
    padding: 5px 10px;
    border: 1px solid #f13e3d;
    background-image: linear-gradient(bottom, rgb(219,57,56) 0%, rgb(241,62,61) 100%);
    background-image: -o-linear-gradient(bottom, rgb(219,57,56) 0%, rgb(241,62,61) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(219,57,56) 0%, rgb(241,62,61) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(219,57,56) 0%, rgb(241,62,61) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(219,57,56) 0%, rgb(241,62,61) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(219,57,56)),
        color-stop(1, rgb(241,62,61))
    );
    -webkit-box-shadow: 0px 6px 0px #ba302f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #ba302f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #ba302f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.button8:active {
    background-image: linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -o-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(88,154,204) 0%, rgb(90,150,199) 100%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, rgb(88,154,204)),
        color-stop(1, rgb(90,150,199))
    );
	-webkit-box-shadow: 0px 2px 0px #ba302f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	-moz-box-shadow: 0px 2px 0px #ba302f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
	box-shadow: 0px 2px 0px #ba302f, 0px 1px 6px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset;
}

.button-s {
	padding:5px;
	font-size:14px;
}
/********************************************************/

.loginWrap {
	width:400px;
	top:50%;
	left:50%;
	margin-top:-200px;
	margin-left:-200px;
	position:relative;
}
.loginWrap h1 {
	text-align:center;
	padding-bottom:20px;
	letter-spacing:-0.3px;
}
.inputBox div {
	margin-bottom:5px;
}
.inputBox label.idAndpw {
	width:96px;
	font-size:18px;
	display:inline-block;
}
.inputBox input {
	width:292px;
	font-size:20px;
	height:35px;
	line-height:35px;
	text-indent:10px;
}
.inputBox input[type="checkbox"] {
	width:20px;
	height:20px;
	margin-right:7px;
	margin-left:0;
	text-indent:0px;
	float:left;
}
.checkbox_wrap {
	margin-top:15px;
}
.checkbox_wrap label {
	float:left;
}
.inputBox button {
	width:100%;
	padding:10px 0;
	margin-top:20px;
}
.smarthaccpman_tel {
	background-color:#fff;
	border-radius:5px;
	padding:5px 15px 0 15px;
	margin-top:40px;
}
.smarthaccpman_tel img {
	width:100%;
}

@media (max-width: 540px) {
	.loginWrap {
		max-width: 80%;
		margin: 0 !important;
		transform: translate(-50%,-50%);
	}
	.loginWrap * {-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
	.loginWrap h1 {
		font-size: 24px;
		-ms-word-break: keep-all;
		word-break: keep-all;
	}
	.inputBox input {width: 100%;}
}


/********************************************************/
/* 상단 */

#container {
	height:100%;
}

#posTitle {
	width:100%;
	height:50px;
	background-color:#0d111a;
	border-bottom:1px solid #464f5b;
	overflow:hidden;
}
#posTitle h2 {
	width:300px;
	line-height:47px;
	text-indent:15px;
	float:left;
}
#posTitle a {
	width:60px;
	line-height:50px;
	font-size:24px;
	border-right:1px solid #464f5b;
	text-align:center;
	display:block;
	float:left;
}
#posTitle .smarthaccpman {
	padding:7px 12px;
	background:#fff;
	float:right;
	overflow:hidden;
}
#posTitle .smarthaccpman img {
	width:90px;
	margin-bottom:0;
	box-sizing:border-box;
}
#posTitle .smarthaccpman b {
	line-height:16px;
	color:#0d3693;
	font-size:18px;
	font-weight:bold;
	font-family: 'Montserrat', sans-serif;
	display:block;
}
#posTitle .today_date {
	line-height:1.5em;
	font-size:11px;
	letter-spacing:2px;
	margin-top:7px;
	margin-right:12px;
	text-align:right;
	float:right;
}
#posTitle .today_date b {
	font-size:24px;
	letter-spacing:0px;
	color:#a9d8ff;
}

#posTitle .escBtn {
	width:60px;
	box-sizing:border-box;
	float:right;
}
#posTitle .escBtn a {
	line-height:18px;
	padding-bottom:7px;
	border-radius:0;
	font-size:13px;
}

#posTitle .numAndName {
	height:50px;
	line-height:50px;
	padding-right:12px;
	margin-right:12px;
	border-right:1px solid #464f5b;
	color:#a9d8ff;
	float:right;
}
#posTitle .numAndName span {
	color:#fff;
}
/*
#posTitle .numAndName span:last-child {
	padding-left:10px;
}
*/

@media (max-width: 540px) {
	
	#posTitle {
		position: relative;
		height: 60px;
		display: flex;
		flex-wrap: wrap;
		padding: 10px 130px 10px 50px;
	}
	#posTitle.main-menu {
		padding: 10px 130px 10px 10px;
	}
	#posTitle > a {
		position: absolute;
		top: 0;
		left: 0;
		width: 40px;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#posTitle .escBtn {
		display: none;
	}
	#posTitle h2 {
		width: auto;
		height: auto;
		margin: 0;
		font-size: 16px;
		text-indent: 0;
		line-height: 1.2;
		margin-bottom: 3px;
	}
	#posTitle .smarthaccpman {
		position: absolute;
		width: 125px;
		height: auto;
		right: 0;
		bottom: 0;
		padding: 3px 0;
		text-align: center;
		border-radius: 10px 0 0 0;
	}
	#posTitle .smarthaccpman img {max-width: 45px;}
	#posTitle .smarthaccpman b {
		display: inline;
		font-size: 12px;
		line-height: 1.2;
	}
	#posTitle .today_date {
		position: absolute;
		right: 3px;
		top: 8px;
		margin: 0;
		padding-left: 10px;
		letter-spacing: 0;
		font-size: 11px;
	}
	#posTitle .today_date br {display: none;}
	#posTitle .today_date b {font-size: 11px; margin-right: 3px;}
	
	#posTitle .numAndName {
		width: 100%;
		height: auto;
		padding: 0;
		margin: 0;
		line-height: 1.2;
		font-size: 12px;
		border: none;
	}
	
}


/**********************************************/
/* 컨텐츠 */

#conWrap {
	overflow:hidden;
}
.con-2 {
	width:42%;
	margin:4%;
	float:left;
}
.con-2 a.mainMenuBtn {
	width:100%;
	text-align:center;
	font-size:56px;
	position:relative;
}
.con-2 a.mainMenuBtn span {
	width:340px;
	text-align:center;
	letter-spacing:-1px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-90px;
	margin-left:-170px;
}

@media (max-width: 540px) {
	#conWrap {
		height: calc(100% - 60px);
	}
	.con-2 {
		width:100%;
		height: calc(50% - 15px);
		margin: 0;
		float: none;
	}
	.con-2:last-child {margin-top: 20px;}
	.con-2 a.mainMenuBtn {
		max-height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.con-2 a.mainMenuBtn span {
		width: 100%;
		position: static;
		transform: none;
		margin: 0;
		font-size: 24px;
		line-height: 1.2;
		letter-spacing: 0;
	}
	.con-2:last-child a.mainMenuBtn span br {display: none;}
}
.conCenter { 
	width:100%;
	padding:15px;
}
.searchDate {
	padding:5px 0;
	position:relative;
}
.searchDateBox {
	width:100%;
	height:40px;
	line-height:30px;
	font-size:16px;
	clear:both;
}
.searchDateBox span.label {
	line-height:35px;
	letter-spacing:-0.5px;
	float:left;
}
.searchDateBox span.label:first-child {
	padding-right:8px;
	font-size:15px;
}
.searchDateBox input {
	width:120px;
	height:30px;
	line-height:30px;
	margin:0 8px;
	font-size:20px;
	text-indent:10px;
	border:1px solid #000;
	float:left;
}
.searchDateBox a {
	text-align:center;
	font-size:14px;
	padding:1px 20px;
	float:left;
}
.searchDateBox ul.dateBtn {
	width:15%;
	max-width:600px;
	height:40px;
	float:left;
	overflow:hidden;
}
.searchDateBox ul.dateBtn li {
	width:49%;
	margin-right:2%;
	float:left;
}
.searchDateBox ul.dateBtn li:last-child {
	margin-right:0;
}
.searchDateBox ul.dateBtn li a {
	width:100%;
	padding:1px;
	text-align:center;
}
.searchDate a.barcodeStart {
	width:170px;
	height:77px;
	padding-top:13px;
	text-align:center;
	position:absolute;
	right:0px;
	top:5px;
}	
.searchDate a.inputStart {
	width:80px;
	height:30px;
	line-height: 26px;
	text-align:center;
	float: right;
}	
.searchDate a.newBtn {
	width:80px;
	height:30px;
	line-height: 26px;
	text-align:center;
	margin-left:12px;
	float: right;
}	
.searchDate .select {
	width:100px;
	float:left;
}
.searchDate a.label-search {
	height:34px;
	background:#fff;
	border:1px solid #313b45;
	border-left:0;
	padding:0 10px;
	color:#000;
	margin-left:-10px;
	box-sizing:border-box;
}

@media (max-width: 540px) {	
	.searchDate {padding: 0;}
	.sub01-searchBox {
		display: flex;
		flex-wrap: wrap;
		height: auto;
		gap: 5px;
		align-items: center;
	}
	.sub01-searchBox span.label:first-child {padding: 0; font-size: 12px;}
	.sub01-searchBox .select {width: auto; margin: 0;}
	.sub01-searchBox .select select {padding: 0 23px 0 5px; font-size: 12px;}
	.sub01-searchBox .select i {right: 8px;}
	.sub01-searchBox input {margin: 0; font-size: 14px; text-indent:0; padding: 0 5px;}
	.sub01-searchBox > input {width: calc(100% - 216px);}
	.sub01-searchBox ul.dateBtn {display: flex; align-items: center; width: calc(100% - 236px); height: 30px;}
	.sub01-searchBox ul.dateBtn li a {white-space: nowrap; padding: 0; font-size: 11px;}
	.sub01-searchBox .input-group {display: flex; gap: 5px; width: 180px;}
	.sub01-searchBox .input-group input {font-size: 12px; width: calc(50% - 15px); text-align: center;}
	.sub01-searchBox span.label {line-height: 30px;}
	.sub01-searchBox a.inputStart {width: 50px; font-size: 12px; padding: 0; margin-top: -3px;}
}

.conLeft {
	width:60%;
	margin:0px 0 0 15px;
	/*background:#fff;*/
	border-radius:3px;
	float:left;
}

.conFull {
	width:100%;
	padding:15px;
}

.searchListTitle {
	height:50px;
	padding:9px 0 0 10px;
	background-color:#ff3f3e;
	position:relative;
	overflow:hidden;
}
.searchListTitle.color_type2 {
	background-color:#236ac2;
}
.searchListTitle.color_type3 {
	background-color:#6780ff;
}
.searchListTitle a.left_btn {
	line-height:30px;
	padding:0 10px;
}
.searchListTitle_right {
	height:50px;
	padding:9px 0 0 10px;
	background-color:#164891;
	position:relative;
	overflow:hidden;
}
.searchListTitle h3, .searchListTitle_right h3{
	padding-bottom:10px;
}

@media (max-width: 540px) {
	.searchListTitle {height: 35px; padding: 7px 0 0 10px;}
	.searchListTitle h3, .searchListTitle_right h3 {
		font-size: 13px;
		margin: 0;
		padding: 0;
	}
}
.searchListTitle a.button5 {
    padding: 5px 10px;
}

.searchListTitle a.rebtn {
	width:40px;
	height:40px;
	line-height:37px;
	font-size:20px;
	text-align:center;
	position:absolute;
	right:98px;
	top:7px;
}
.searchListTitle a.arrowbtn {
	width:40px;
	height:40px;
	line-height:37px;
	font-size:20px;
	text-align:center;
	position:absolute;
	right:54px;
	top:7px;
}
.searchListTitle a.selectBtn {
	position:absolute;
	right:103px;
	top:7px;
}
.searchListTitle a.deleteBtn {
	position:absolute;
	right:10px;
	top:7px;
}
.searchListTitle_right a.pallet_btn {
	width:80px;
	height:30px;
	line-height:30px;
	padding:0;
	text-align:center;
	position:absolute;
	right:98px;
	top:7px;
}
.searchListTitle_right a:last-child {
	width:80px;
	height:30px;
	line-height:30px;
	padding:0;
	text-align:center;
	position:absolute;
	right:10px;
	top:7px;
}
.searchList {
	overflow-y: scroll;
}
.searchList.p20 {
	padding:0 20px;
}
.searchList.p15 {
	padding:0 15px;
}
.searchList table {
	width:100%;
}
.searchList table thead th {
	background-color:#dadfe3;
	color:#000;
	font-weight:500;
	padding:6px 0;
	font-size:13px;
}
.searchList table.bg_red thead th {
	background-color:#ff3f3e;
	color:#fff;
}
.searchList table tbody td {
	background-color:#fff;
	color:#000;
	font-weight:500;
	padding:7px 0;
	border:1px solid #eee;
	text-align:center;
	font-size:13px;
	word-break:keep-all;
}
.searchList table tbody td a {
	width:60%;
	margin-top:-3px;
}

@media (max-width: 540px) {
	.searchList table {border-spacing: 1px;}
	.searchList table thead th {font-size: 12px;}
	.searchList table tbody td {font-size: 12px;}
}

.prod_chk label {
	background-color:#ff3f3e;
	color:#fff;
}

#searchList_scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#searchList_scroll::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#searchList_scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}

.searchListResult {
	line-height:60px;
	text-indent:15px;
	background-color:#333d47;
	font-size:17px;
}
.searchListResult span {
	padding-right:15px;
	font-size:20px;
	float:right;
}

.searchListResult_agree {
	line-height:50px;
	background-color:#333d47;
	font-size:16px;
}
.searchListResult_agree label {
	text-indent:15px;
}
.searchListResult_agree input[type="checkbox"] {
	width:20px;
	height:20px;
	margin:18px 0 0 15px;
	float:left;
}
.searchListResult_agree .save_btn{
	line-height:30px;
	padding:0 55px;
	margin-right:15px; 
	margin-top:12px;
	float:right;
}
@media (max-width: 540px) {
	.searchListResult_agree {
		height: auto;
		overflow: hidden;
		line-height: 1.2;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.searchListResult_agree label {
		margin: 0;
		display: flex;
		font-size: 13px;
		text-indent: 0;
		align-items: center;
	}
	.searchListResult_agree input[type="checkbox"] {margin: 0; margin-right: 5px; width: 15px; height: 15px;}
	.searchListResult_agree .save_btn {
		margin: 0;
		font-size: 12px;
		line-height: 24px;
		padding: 0 20px;
	}
}

.btnEnter {
	background:#2b333e;
	padding-top:20px;
	padding-bottom:25px;
	overflow:hidden;
}
.btnEnter a {
	width:20%;
	line-height:40px;
	margin-right:1%;
	text-align:center;
	float:left;
}
.btnEnter a:last-child {
	width:37%;
	margin-right:0;
}

.conRight {	
	width:36%;
	margin:0 15px 0 0;
	float:right;
}
.alphabet {
	overflow:hidden;
}
.alphabet a {
	width:24.2%;
	height:40px;
	margin-right:1%;
	margin-bottom:1.7%;
	text-align:center;
	background-color:#999;
	border-radius:3px;
	display:block;
	float:left;
}
.alphabet a:nth-child(4n) {
	margin-right:0;
}
.alphabet a.searchBtn {
	height:95px;
	line-height:95px;
	padding:0;
	background-color:#7a7a7a;
	float:right;
}

.barcodeInput {
}
.barcodeInput input {
	width:99%;
	height:60px;
	line-height:60px;
	font-size:40px;
	text-indent:10px;
}

.baseSearch {
	height:50px;
	margin-top:10px;
}
.baseSearch input {
	width:73.8%;
	height:40px;
	line-height:40px;
	font-size:26px;
	text-indent:10px;
	border:none;
}
.baseSearch a {
	width:24.3%;
	padding:9px 0;
	text-align:center;
	float:right;
}


.baseEnter {
	margin-top:6px;
	margin-bottom:6px;
	overflow-y:scroll;
}
#baseEnter_scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#baseEnter_scroll::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#baseEnter_scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}

.baseEnter_scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.baseEnter_scroll::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.baseEnter_scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}



.baseEnter h5 {
	margin-bottom:6px;
}
.baseEnter ul {
	overflow:hidden;
}
.baseEnter li {
	width:48.75%;
	margin-right:2%;
	margin-bottom:3.5%;
	float:left;
}
.baseEnter li:nth-child(2n) {
	margin-right:0;
}
.baseEnter li a {
	width:100%;
	height:104px;
	border-radius:5px;
	text-align:center;
}
.baseEnter li a i {
	height:56px;
	padding-top:6px;
	margin-bottom:6px;
	font-style:normal;
	box-sizing:border-box;
	word-break:keep-all;
	word-wrap: break-word;	
	display:block;
	overflow:hidden;
}
.baseEnter li a span {
	height:30px;
	line-height:30px;
	font-size:13px;
	font-weight:500;
	color:#bed4e5;
	border-top:1px solid #6da5d4;
	display:block;
}

.rightListTitle {
	height:60px;
	background-color:#f5ad25;
	position:relative;
}
.rightListTitle h3 {
	line-height:60px;
	text-indent:15px;
}
.rightListTitle a {
	width:40px;
	height:40px;
	line-height:32px;
	font-size:20px;
	text-align:center;
	position:absolute;
	right:54px;
	top:7px;
}
.rightListTitle a:last-child {
	position:absolute;
	right:10px;
	top:7px;
}

.rightList {
	/*overflow-y: scroll;*/
}
.rightList p.pro_name {
	background:#fff;
	color:#000;
	text-align:center;
	padding:5px 10px;
	margin-top:0;
}
.rightList .add_btn {clear:both;}
.rightList .add_btn button {width: 100%; line-height:40px;}

.pass_tab {
	text-align:center;
}

.rightList table {
	width:100%;
}
.rightList table thead th {
	background-color:#dadfe3;
	color:#000;
	font-weight:500;
	padding:7px 0;
}
.rightList table tbody td {
	color:#000;
	font-weight:500;
	padding:7px 0;
	border:1px solid #eee;
	text-align:center;
}
.rightList table tbody tr {
	cursor:pointer;
}
.rightList table tbody tr.select {
	background:#f7f6ef;
}

#rightList_scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#rightList_scroll::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#rightList_scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}

.rightListResult {
	margin-top:10px;
	height:50px;
	position:relative;
}
.rightListResult a {
	width:142px;
	height:30px;
	line-height:25px;
	font-size:20px;
	text-align:center;
	border:1px solid #ddd;
	position:absolute;
	left:50%;
	top:7px;
	margin-left:-147px;
}
.rightListResult a:last-child {
	position:absolute;
	left:auto;
	right:50%;
	top:7px;
	margin-left:0;
	margin-right:-145px;
}

.btnEnter_r {
	padding-top:20px;
	padding-bottom:25px;
}
.btnEnter_r a {
	width:100%;
	line-height:40px;
	text-align:center;
}

.hasLabel {
	width:90%;
	margin:30px auto;
	overflow:hidden;
}
.hasLabel span {
	width:100px;
	line-height:40px;
	display:block;
	float:left;
}
.hasLabel input {
	width:220px;
	height:40px;
	line-height:40px;
	margin-right:0;
	float:left;
}


/* 파이프라인 - 모달창 */
.layer_pop {
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.7);
	position:absolute;
	right:0;
	top:0;
	z-index:9990;
	display:none;
}
.layer_pop-content {
	width:600px;
	max-height:520px;
	margin:0 auto;
	background:#fff;
	top:50px;
	left:50%;
	margin-left:-300px;
	text-align:center;
	position:relative;
	box-sizing:border-box;
	display:none;
}
.layer_pop-content.layer_pop-lg {
	width:960px;
	margin-left:-480px;
}
.modal_title {
	height:50px;
	line-height:50px;
	position:relative;
	background:#2b333e;
}
.modal_title a.left_btn {
	line-height:30px;
	padding:0 10px;
	position:absolute;
	top:10px;
	left:20px;
}
.modal_title a.pop_close {
	position:absolute;
	top:-3px;
	right:20px;
	color:#fff;
	font-size:30px;
}
.modal_comment {
	max-height:380px;
	background:#fff;
	padding:20px 20px 10px 20px;
	font-weight:400;
	color:#000;
	overflow:hidden;
}

.modal_input_box {
	width:26%;
	margin-right:2%;
	padding-top:15px;
	text-align:left;
	float:left;
}
.modal_input_box input {
	width:100%;
	height:40px;
	line-height:40px;
	font-size:20px;
	border:2px solid #eee;
}
.inputOkBtn {
	margin-top:40px;
	padding:8px 20px;
}

.modal_comment .modal_rWrap {
	width:27%;
	height:290px;
	background:#f6f6f6;
	padding:15px;
	font-size:17px;
	text-align:left;
	position:relative;
	float:right;
}
.modal_comment .modal_rWrap.r_onlyKg {
	height:130px;
	margin-bottom:5px;
}
.modal_comment .modal_rWrap .button7 {
	width:100%;
	text-align:center;
}
.modal_comment .modal_rWrap label {	
	margin-top:12px;
}
.modal_comment .modal_rWrap input {
	width:98%;
	height:40px;
	line-height:40px;
	font-size:20px;
	border:2px solid #eee;
	margin-bottom:5px;
}
.modal_comment .modal_rWrap .button8 {
	width:100%;
	text-align:center;
}
.modal_comment .modal_rWrap .kg_info {
	width:100%;
	position:absolute;
	bottom:15px;
	left:0;
	text-align:center;
	font-size:26px;
	font-family:Arial;
}
.modal_comment .modal_rWrap .kg_info em {
	font-size:40px;
	font-weight:bold;
	font-style:normal;
}
.modal_comment .modal_rWrap .kg_info span {
	width:220px;
	line-height:20px;
	margin:0 auto;
	padding:5px 0;
	background:#dfe6ff;
	font-size:20px;
	display:block;
}
.has_scrollCon {
	max-height:320px;
	padding-top:0;
	padding-right:0;
	overflow-y:auto;
	word-break:break-all;
	word-wrap: break-word;
}
.formBlock {
	line-height:45px;
	margin-bottom:10px;
	display:block;
	overflow:hidden;
}
.formBlock label {
	width:20%;
	font-size:18px;
	text-align:left;
	float:left;
}
.formBlock input {
	width:calc( 80% - 45px );
	height:45px;
	line-height:45px;
	text-indent:10px;
	font-size:20px;
	border:1px solid #aaa;
	box-sizing:border-box;
	float:left;
}
.formBlock input.w100p {
	width:100%;
	height:60px;
	line-height:60px;
	font-size:34px;
	color:#000;
	border:3px solid #000;
}
.formBlock a {
	width:45px;
	height:45px;
	line-height:45px;
	border:1px solid #ddd;
	box-sizing:border-box;
	border-left:0;
	float:left;
}
.formBlock a i {
	color:#000;
}

@media (max-width: 540px) {
	.formBlock label {font-size: 14px; margin: 0;}

}
.modal_btn {
	padding:0 20px 20px 20px;
	text-align:center;
	overflow:hidden;
}
.modal_btn a.btn {
	width:100%;
	padding:15px 0px;
	background:#f13e3d;
	color:#fff;
	font-weight:bold;
	display:block;
}
.modal_btn a.btn_front {
	width:49%;
	margin-right:2%;
	float:left;

}
.modal_btn a.btn_back {
	width:49%;
	background:#555;
	float:left;
}

@media (max-width: 540px) {
	.layer_pop-content,
	.layer_pop-content.layer_pop-lg {
		width: 95%;
		height: 1200px;
		max-height: 90%;
		margin: 0;
		transform: translate(-50%,-50%);
		top: 50%;
		overflow: hidden;
	}
	.modal_comment {overflow-y: auto; max-height: calc(100% - 50px); padding: 10px;}
	.modal_comment .modal_lWarp,
	.modal_comment .modal_rWrap {width: 100% !important; padding: 0;}
	.modal_title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 5px;
		line-height: 1.2;
		padding: 0 10px;
	}
	
	.modal_title h4 {font-size: 16px; margin: 0; width: calc(100% - 80px); text-align: left; -ms-word-break: keep-all;
	word-break: keep-all;}
	.modal_title a {position: static !important;}
	.modal_title a.left_btn {padding: 0 5px; font-size: 12px; line-height: 26px;}
	.modal_title a.pop_close {font-size: 22px; line-height: 1;}
	.modal_title br {display: none;}
	
}

/*****************************************************/
/* 테이블 */

.hasTable {
	padding:0 15px;
}

.table_type01 {
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	margin-bottom:10px;
	vertical-align:middle;
}
.table_type01 thead tr th {
	font-weight:bold;
	background:#ebeffa;
	text-align:center;
	color:#000;
	border:1px solid #c4ceea;
}
.table_type01.black {
	margin-bottom:0;
}
.table_type01.black thead tr th {
	font-weight:bold;
	text-align:center;
	background:#3e6dba;
	color:#fff;
	padding:8px 0;
	border:1px solid #2756a2;
}
.table_type01 tbody tr th {
	font-weight:bold;
	background:#3c4753;
	text-align:center;
	color:#fff;
	padding:8px 0;
	border:1px solid #485360;
}
.table_type01 tbody tr td {
	background:#fff;
	color:#303030;
	padding:8px 15px;
	text-align:left;
	word-break:keep-all;
}
.table_type01.topTable thead tr th {
	background:#313f4d;
	color:#fff;
	border:1px solid #424e5b;
	text-align:center;
	font-size:13px;
}
.table_type01.topTable.lh42 thead tr th {
	line-height:42px;
}
.table_type01.topTable tbody tr td {
	font-size:13px;
	border:1px solid #ddd;
}
.table_type01.topTable tbody tr th {
	background:#fff;
	color:#000;
	font-size:17px;
	border:1px solid #ddd;
}
.table_type01.topTable select {
	width:100%;
	border:1px solid #ddd;
}
.table_type01 tbody tr td.text-center {
	text-align:center;
}
.table_type01.black tbody tr td {
	text-align:center;
}
.table_type01.black tbody tr:nth-child(even) td {
	background:#f7f7f7;
}
.table_type01 tfoot tr th {
	background:#3c4753;
	color:#fff;
	padding:8px 0;
}
.table_type01 tfoot tr td {
	background:#f9f0ef;
	color:#000;
	font-weight:bold;
}
.table_type01.black tfoot tr th, .table_type01.black tfoot tr td {
	background:#164891;
	color:#fff;
	border:1px solid #0d3c82;
	font-weight:bold;
}
.table_type01 tbody tr td.has_i input {
	width:83%!important;
}
.table_type01 tbody tr td.has_i a {
	display:inline-block;
	padding-top:4px;
	float:right;
}
.table_type01 input.table_input {
	width:100px;
	height:40px;
	line-height:40px;
	border:1px solid #ddd;
	font-size:17px;
}
@media (max-width: 540px) {
	.table_type01.black thead tr th,
	.table_type01.black tfoot tr th,
	.table_type01.black tfoot tr td,
	.table_type01.black tbody tr td {
		font-size: 14px;
	}
}

.pass_tab {
	padding-top:180px;
	font-size:17px;
	font-weight:bold;
}
.mb-10 {
	margin-bottom:10px!important;
}
.mb-20 {
	margin-bottom:20px!important;
}
.mt-15 {
	margin-top:15px;
}
.mt-20 {
	margin-top:20px;
}

p.m2_pop_p {
	font-size:18px;
	color:#000;
	margin-bottom:0;
	font-weight:bold;
}
.right_btn {
	padding:0 10px;
	margin-bottom:10px;
	float:right;
}

.table_scroll {
	height:210px;
	overflow-y:scroll;
}
/*#table-scroll::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#table-scroll::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#table-scroll::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}*/
.table_scroll > ul {
}
.table_scroll > ul > li {
}
.table_scroll > ul > li > ul {
	border-bottom:1px solid #ddd;
	overflow:hidden;
}
.table_scroll > ul > li > ul > li {
	background:#fff;
	color:#303030;	
	font-size:13px;
	padding:8px 0;
	border-right:1px solid #ddd;
	word-break:keep-all;
	box-sizing:border-box;
	float:left;
}
.table_scroll > ul > li > ul > li:first-child {
	width:25%;
	border-left:1px solid #ddd;
}
.table_scroll > ul > li > ul > li:nth-child(2) {
	width:25%;
}
.table_scroll > ul > li > ul > li:nth-child(3) {
	width:17%;
}
.table_scroll > ul > li > ul > li:nth-child(4) {
	width:20%;
}
.table_scroll > ul > li > ul > li:last-child {
	width:13%;
}

.rightList .kg_info {
	width:100%;
	text-align:center;
	font-size:26px;
	padding-top:110px;
	font-family:Arial;
}
.rightList .kg_info em {
	font-size:50px;
	font-weight:bold;
	font-style:normal;
	padding-bottom:20px;
}
.rightList .kg_info span {
	width:220px;
	line-height:20px;
	margin:0 auto;
	padding:8px 0;
	background:#333d47;
	font-size:22px;
	display:block;
}




.tr_txt_left {
	text-align: left !important;
	padding-left: 7px !important;
}

.tr_txt_right {
	text-align: right !important;
	padding-right: 7px !important;
}

.classType {
	margin-bottom:20px;
	overflow:hidden;
}
.classType button {
	width:50%;
	line-height:35px;
	border:1px solid #164891;
	font-size:17px;
	font-weight:bold;
	float:left;
}
.classType button.active {
	background:#164891;
	color:#fff;
}
.m2_barcodeInput .formBlock input {
	width:calc( 100% - 113px );
}

@media (max-width: 540px) {
	.classType button {font-size: 14px;}
	.m2_barcodeInput .formBlock input {
		width:calc( 100% - 65px );
	}
	.modal_btn {padding: 10px;}
	.modal_btn a.btn {width: 100%;}
}

.modalSearch {
	width:920px;
	position:absolute;
	top:70px;
	left:20px;
}
.searchPopInput input {
	width:calc( 100% - 100px );
	border:2px solid #222;
	float:left;
}
.searchPopInput a {
	width:100px;
	line-height:43px;
	padding:0;
	border-radius:0;
	border-color:#222;
}

.searchClassBox {
	width:90%;
	margin:0 auto;
	padding:10px 0 30px;
	overflow:hidden;
}
.searchClassBox a {
	width:30%;
	height:160px;
	margin-right:5%;
	text-align:center;
	font-size:30px;
	padding-top:30px;
	position:relative;	
	float:left;
	display:block;
}
.searchClassBox a span {
	letter-spacing:-1px;
}
.searchClassBox a.last {
	margin-right:0;
	line-height:160px;
	padding:0;
}

@media (max-width: 540px) {
	.barcode-box {
		margin-top: 10px;
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: center;
		background: #f2f2f2;
		padding: 5px;
	}
	.barcode-box label {margin: 0; padding: 0;}
	.barcode-box input {height: 30px; border: 1px solid #ddd;}

	.all-del {
		display: flex;
		align-items: center;
		justify-content: end;
		margin-bottom: 5px;
	}
	.all-del a {
		margin: 0;
		font-size: 12px;
		padding: 2px 9px;
		font-weight: normal;
		box-shadow: none;
	}

	.sub01-m2-popup-table td a {
		font-size: 12px;
		padding: 3px 5px;
	}

	.modal_rWrap.write-box {
		padding: 10px;
		margin-top: 10px;
		border: 1px solid #ddd;
		height: auto;
	}
	.modal_comment .modal_rWrap .kg_info {position: static;}
	.modal_comment .modal_rWrap .kg_info em {font-size: 28px;}
	.modal_comment .modal_rWrap .kg_info span {font-size: 18px;}

	.modal_comment .modal_rWrap .button7,
	.modal_comment .modal_rWrap .button8 {font-size: 15px;}
	.modal_comment .modal_rWrap .button8 {margin-bottom: 20px;}
	.modal_comment .modal_rWrap label {font-size: 15px;}
}

.fix-layout {
	position: relative;
	max-height: 300px;
	overflow-y: auto;
}
.fix-layout thead {position: sticky; top:0;}
.fix-layout tfoot {position: sticky; bottom:0;}