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

/*지마켓 산스*/
@font-face {
    font-family: 'Gmarket Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Gmarket Sans Bold'), local('GmarketSans-Bold'),
        url('https://script.ebay.co.kr/fonts/GmarketSansBold.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('https://script.ebay.co.kr/fonts/GmarketSansBold.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: 'Gmarket Sans';
    font-style: normal;
    font-weight: 500;
    src: local('Gmarket Sans Medium'), local('GmarketSans-Medium'),
        url('https://script.ebay.co.kr/fonts/GmarketSansMedium.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('https://script.ebay.co.kr/fonts/GmarketSansMedium.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
    font-family: 'Gmarket Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Gmarket Sans Light'), local('GmarketSans-Light'),
        url('https://script.ebay.co.kr/fonts/GmarketSansLight.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('https://script.ebay.co.kr/fonts/GmarketSansLight.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

* {
    margin: 0;
    padding: 0;
}

@font-face{
	src: url("/wwwRoot/fonts/TimesNewRoman/times new roman.ttf");
    font-family: "times new roman"; 
 }

* {
    /* 패딩, 보더를 포함시킴 */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 24px;
}

body, div, ul, li, dl, dt, dd, ol, p, h1, h2, h3, h4, h5, h6, form, img, span, select, input, textarea, option {
    margin: 0;
    padding: 0;
    text-align: justify;
    font-weight: 400;
    letter-spacing: -0.25px;
   
}

/* -----기본 링크스타일----- */
a:link {
    color: #5c5c5c;
    text-decoration: none;
}

a:visited {
    color: #5c5c5c;
    text-decoration: none;
}

a:hover {
    color: #7bbd27;
    text-decoration: none;
}

a:active {
    color: #7bbd27;
    text-decoration: none;
}

.hidden {
    display: none;
}

caption, legend {
    font-size: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    position: absolute;
    visibility: hidden;
}

img {
    border: 0px;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

ul, ol, dl, li {
    list-style: none;
}

textarea {
    overflow: auto;
}

button, label {
    cursor: pointer;
}

.skip {
    position: absolute;
    width: 1px;
    height: 1px;
    border: 1px;
    top: -5000em;
    overflow: hidden;
}

hr {
    display: none;
    clear: both;
}

button {
    font-family: 'Times New Roman', 'Noto Sans KR', sans-serif;
}

button:focus {
    outline: none;
}

/*입력폼*/
input {
    height: 36px;
    border: 1px solid #dddddd;
    color: #5c5c5c;
    padding: 0 10px;
    box-sizing: border-box;
}

input[type='text']:focus, input[type='password']:focus {
    outline: none;
    border: 1px solid #000000;
    border-radius: 0;
}

/*textarea박스*/
textarea {
    height: 100px;
    border: 1px solid #dddddd;
    color: #5c5c5c;
    padding: 10px 10px;
    box-sizing: border-box;
}

textarea:focus {
    outline: none;
    border: 1px solid #000000;
    border-radius: 0;
}

/*셀렉트박스*/
select {
    height: 36px;
    border: 1px solid #dddddd;
    color: #5c5c5c;
    padding: 0 10px;
}

select:focus {
    outline: none;
    border: 1px solid #000000;
    border-radius: 0;
}

input::placeholder {
    color: #9c9c9c;
    font-size: 14px;
}

input::-ms-input-placeholder {
    color: #9c9c9c;
    font-size: 14px;
}

input:-ms-input-placeholder {
    color: #9c9c9c;
    font-size: 14px;
}

/*라디오 버튼*/
input[type='radio'] {
    display: none;
}

input[type='radio']+label {
    margin-bottom: 0;
    font-weight: 400;
    color: #000000;
    display: inline-block;
    cursor: pointer;
    position: relative;
    margin: 0 17px 0 0;
}

input[type='radio']+label::before {
    content: ' ';
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin: -5px 7px 0 0;
    background: url('/images/sub/radio_off.png');
}

input[type='radio']:checked+label::before {
    background: url('/images/sub/radio_on.png');
}

/*체크버튼*/
input[type=checkbox] {
    display: none;
}

input[type=checkbox]+label {
    margin-bottom: 0;
    font-weight: 400;
    color: #5c5c5c;
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding: 0 20px 0 23px;
}

input[type=checkbox]+label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 4px;
    background-color: #FFFFFF;
    border: 1px solid #dddddd;
}

input[type=checkbox]:checked+label:before {
    content: "\2713";
    /* 체크모양 */
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: #0056b6;
    text-align: center;
    line-height: 12px;
}

/*테이블-기본설정*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

td img {
    border: 0;
    vertical-align: middle;
}

/* _카테고리 */
/* .leftmenu {
    position: relative;
}

.lm-cate li a {
    display: block;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.1em;
    border-bottom: 1px solid #f3f3f3;
}

.leftmenu-category .leftmenu-content {
    margin-top: 0;
    border-top: 2px solid #555;
    border-bottom: 1px solid #555;
}

.leftmenu-category li {
    line-height: 33px;
}

.leftmenu-category li a {
    padding-left: 5px;
    color: #333;
    border-bottom: 0;
}

.leftmenu-category li a.active {
    color: #0d1bd7 !important;
    font-weight: bold;
}

.leftmenu-category .lm-ul-two>li>a {
    padding-left: 14px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .3);
    color: #000;
    padding-top: 4px;
    font-size: 15px;
}

.leftmenu-category .lm-ul-three li:first-child {
    border-top: 0;
    margin-top: 5px;
}

.leftmenu-category .lm-ul-three li:hover {
  padding-left: 10px;
  background-color: #eee;
  width: 100%;
} */

#table_line {
    border-collapse: collapse;
    width: 100%;
    border: 0;
}

#table_line th:nth-child(1),
#table_line td:nth-child(2) {
    border-top: 1px solid #e2e2e2;
}

#table_line td,
#table_line th {
    border-bottom: 1px solid #e2e2e2;
    padding: 5px 10px;
    /* white-space: nowrap; */
}

#table_line th {
    background-color: #f6f6f6;
    height: 50px;
}

#table_line td {
    text-align: left;
}

#table_line th.title {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    background-color: #f6f6f6;
    width: 180px;
    text-align: right;
    
    display:table-cell;
    vertical-align:middle;
  
}

.criticalItems {
    padding-top: 5px;
    color: red;
    font-size: 12px;
}



/* 버튼 */

/* Firefox: Get rid of the inner focus border */
.pure-button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* Inherit .pure-g styles */
.pure-button-group {
    letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
    *letter-spacing: normal; /* reset IE < 8 */
    *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
    text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */
}

.opera-only :-o-prefocus,
.pure-button-group {
    word-spacing: -0.43em;
}

.pure-button-group .pure-button {
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
}

/*csslint outline-none:false*/

.pure-button {
    font-family: inherit;
    font-size: 100%;
    padding: 0.5em 1em;
    color: #444; /* rgba not supported (IE 8) */
    color: rgba(0, 0, 0, 0.80); /* rgba supported */
    border: 1px solid #999;  /*IE 6/7/8*/
    border: none rgba(0, 0, 0, 0);  /*IE9 + everything else*/
    background-color: #E6E6E6;
    text-decoration: none;
    border-radius: 2px;
}

.pure-button-hover,
.pure-button:hover,
.pure-button:focus {
    /* csslint ignore:start */
    filter: alpha(opacity=90);
    /* csslint ignore:end */
    background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
    background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.pure-button:focus {
    outline: 0;
}
.pure-button-active,
.pure-button:active {
    box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
    border-color: #000;
}

.pure-button[disabled],
.pure-button-disabled,
.pure-button-disabled:hover,
.pure-button-disabled:focus,
.pure-button-disabled:active {
    border: none;
    background-image: none;
    /* csslint ignore:start */
    filter: alpha(opacity=40);
    /* csslint ignore:end */
    opacity: 0.40;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.pure-button-hidden {
    display: none;
}

.pure-button-primary,
.pure-button-selected,
a.pure-button-primary,
a.pure-button-selected {
    background-color: rgb(0, 120, 231);
    color: #fff;
}

/* Button Groups */
.pure-button-group .pure-button {
    margin: 0;
    border-radius: 0;
    border-right: 1px solid #111;  /* fallback color for rgba() for IE7/8 */
    border-right: 1px solid rgba(0, 0, 0, 0.2);

}

.pure-button-group .pure-button:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}
.pure-button-group .pure-button:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-right: none;
}
