/* * reset css */
@charset "UTF-8";

/* ------------------------------------------------------------------------
* font
* 기본 : Pretendard-Medium (2순위 : 'NanumBarunGothic')
------------------------------------------------------------------------ */
@font-face {
  font-family: 'Pretendard-Bold';
  src: url("../fonts/Pretendard-Bold.otf") format("otf"),
    url("../fonts/Pretendard-Bold.ttf") format("truetype"),
    url("../fonts/Pretendard-Bold.woff") format("woff"),
    url("../fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard-SemiBold';
  src: url("../fonts/Pretendard-SemiBold.otf") format("otf"),
    url("../fonts/Pretendard-SemiBold.ttf") format("truetype"),
    url("../fonts/Pretendard-SemiBold.woff") format("woff"),
    url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard-Medium';
  src: url("../fonts/Pretendard-Medium.otf") format("otf"),
    url("../fonts/Pretendard-Medium.ttf") format("truetype"),
    url("../fonts/Pretendard-Medium.woff") format("woff"),
    url("../fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard-Regular';
  src: url("../fonts/Pretendard-Regular.otf") format("otf"),
    url("../fonts/Pretendard-Regular.ttf") format("truetype"),
    url("../fonts/Pretendard-Regular.woff") format("woff"),
    url("../fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard-Light';
  src: url("../fonts/Pretendard-Light.otf") format("otf"),
    url("../fonts/Pretendard-Light.ttf") format("truetype"),
    url("../fonts/Pretendard-Light.woff") format("woff"),
    url("../fonts/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'NanumBarunGothic';
  src: local("NanumBarunGothic");
  src: url("../fonts/NanumBarunGothic.eot");
  src: url("../fonts/NanumBarunGothic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/NanumBarunGothic.woff") format("woff"),
    url("../fonts/NanumBarunGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSansJP-Light';
  src: url("../fonts/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansJP-Regular';
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansJP-Medium';
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansJP-SemiBold';
  src: url("../fonts/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'NotoSansJP-Bold';
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}


body {
  color: var(--text-main-color);
  font-family: 'Pretendard-Medium', 'NanumBarunGothic', sans-serif;
  font-size: 11pt !important;
  word-break: keep-all;
  word-wrap: break-word;
}

/*------------------------------------------------------------------
Reset - General
------------------------------------------------------------------*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
img,
fieldset,
legend,
p,
button,
input,
table,
th,
tr,
td,
thead,
tbody,
tfoot,
a,
textarea,
label,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
select,
small,
strike,
strong,
sub,
sup,
tt,
var,
acronym,
form,
blockquote,
abbr,
pre,
address,
big,
cite,
code {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

em {
  font-style: normal;
}
table , table th, table td {
  text-align: left;
}
/*----------------------------------------
Reset - Link
----------------------------------------*/
a {
  text-decoration: none;
  background-color: transparent;
  cursor: pointer ;
  color: inherit ;
}

a:link,
a:visited {
  text-decoration: none;
  outline: 0;
}

a:active,
a:hover {
  color: inherit ;
  text-decoration: none;
  outline: 0;
}


/*----------------------------------------
Reset - Text-level semantics
----------------------------------------*/
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

address {
  font-style: normal;
  color: #999;
  font-size: 12px;
  line-height: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input[type=text],
input[type=password],
input[type=number] {
  width: 100%;
  font-size: 1em;
  line-height: 1em;
  border: 1px solid #ddd;
  font-weight: normal;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Pretendard-Regular';
  font-size: 13px;
}

input[type=text]:focus,
input[type=password]:focus,
[type=number]:focus {
  outline: none;
}

textarea {
  font-size: 1em;
  line-height: 1em;
  border: 1px solid #bbb;
  padding: 3px 5px;
  overflow: auto;
  resize: none;
  font-weight: normal;
  box-sizing: border-box;
}

input[type=submit] {
  font-weight: normal;
}

button,
select {
  font-weight: normal;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*----------------------------------------
Reset - Embedded content
----------------------------------------*/
img,
fieldset,
iframe {
  border: 0;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/*----------------------------------------
Reset - Grouping Content
----------------------------------------*/
figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

/*----------------------------------------
Reset - Selection
----------------------------------------*/
::-webkit-selection {
  background: #c6c6c6;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #c6c6c6;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #c6c6c6;
  color: #fff;
  text-shadow: none;
}

/*----------------------------------------
Reset - Contain overflow, em-unit font size
----------------------------------------*/
pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/*----------------------------------------
Reset - Forms
----------------------------------------*/
button {
  padding: 0;
  margin: 0;
  background: transparent;
  overflow: visible;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  color: inherit;
  font: inherit;
  text-transform: none;
}

button:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none !important;
  /* 부트스트랩 효과 막음 */
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}

input[type=image] {
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*----------------------------------------
Reset - Blind
----------------------------------------*/
.blind,
#skipnavi {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

caption,
legend {
  visibility: hidden;
  height: 0;
  font-size: 0;
  line-height: 0;
  width: 0;
  overflow: hidden;
  text-align: left;
  border: 0;
}

/*----------------------------------------
Reset - Input
----------------------------------------*/
input {
  line-height: normal;
}

label {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  vertical-align: middle;
  padding: 0;
}
input[type=radio] {
  cursor: pointer;
}
input[type=checkbox] {
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none;
  border: 1px solid #B0B0B0 !important;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  background-color: #fff;
}
input[type=checkbox]:checked:disabled {
  border: none !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

optgroup {
  font-weight: bold;
}

/*----------------------------------------
Reset - Tables
----------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  font-weight: inherit;
}

/*----------------------------------------
Reset - Float clear
----------------------------------------*/
.clear_f:after {
  content: "";
  display: block;
  clear: both;
}

.clear_f {
  zoom: 1;
}

/*----------------------------------------
Reset - Placeholder
----------------------------------------*/
input::placeholder {
  font-family: 'Pretendard-Regular';
  color: #9B9B9B;
  font-weight: 500;
  font-size: 13px;
}
::-webkit-input-placeholder {
  color: #9B9B9B;
  font-family: 'Pretendard-Regular';
}

:-moz-placeholder {
  color: #9B9B9B;
  font-family: 'Pretendard-Regular';
}

:-ms-input-placeholder {
  color: #9B9B9B;
  font-family: 'Pretendard-Regular';
}

input::-webkit-inner-spin-button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}



/*----------------------------------------
* 부트스트랩 속성 제거
----------------------------------------*/

.container {
  padding: 0;
}
.table {
  margin-bottom: 0;
}
.table>:not(caption)>*>* {
  padding: 0;
  background-color: transparent;
  border-bottom-width: 0;
  box-shadow: none;
}
.modal {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 132;
  display: block;
  width: auto;
  height: auto;
  overflow-x: visible;
  overflow-y: visible;
  outline: 0;
}
.card {
  position: static;
  display: block;
  flex-direction: none;
  min-width: 0;
  word-wrap: break-word;
  background-color: inherit;
  background-clip: border-box;
  border: none;
  border-radius: 0;
}
.spinner-border {
/*   width: 16px;
  height: 16px; */
  display: none;
}
/* 이니시스 팝업/부트스트랩 겹침  */
.fade:not(.show) {
  opacity: 1;
}
.row {
  display: block;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}
.row>* {
  flex-shrink: 0;
  width: auto;
  padding-right: 0;
  padding-left: 0;
  margin-top: 0;
}
.modal-header {
  display: block;
  flex-shrink: none;
  align-items: left;
  justify-content: none;
  padding: 0;
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal-content {
  position: static;
  display: block;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: inherit;
  background-clip: inherit;
  border: none;
  border-radius: 0;
  outline: 0;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1;
}
.modal-body {
  position: static;
  padding: 0;
}
.modal-footer {
  display: block;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border-top: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-footer>* {
  margin: 0;
}
.tooltip {
  position: static;
  z-index: inherit;
  display: block;
  margin: 0;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  text-align: inherit;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: inherit;
  word-wrap: inherit;
  opacity: inherit;
}