* {
  user-select: none;
  -webkit-touch-callout: none;
}

/*html, body {
    color: #000;
    font-weight: normal;
    line-height: 1.4;
    word-break: keep-all;
    font-family: 'Noto Sans Korean', sans-serif;
    background: #fff;
    height: 100%;
    margin: 0;
    padding: 0;
}



.blind {
    left: 0;
    top: -10000em;
    overflow: hidden;
    display: block;
    position: absolute;
}*/

/*scrollbar*/
::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  background-clip: padding-box;
  border: 1px solid transparent;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  background: transparent;
}

.sub_content2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
  min-width: 1100px;
  border-top: 1px solid #dbdce0;
  box-shadow: 0 0 2px rgb(237 238 242);
  background: #fff;
}

.pop-warp {
  position: relative;
  overflow: hidden;
  width: 480px;
  height: 500px;
  margin: 0;
  padding: 0;
}

.pop-head {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #1b4692;
}

.pop-head > h1 {
  position: relative;
  display: block;
  margin-left: 10px;
  padding-left: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
}

.pop-head > h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  display: block;
  width: 5px;
  height: 5px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.pop-body {
  position: relative;
  overflow: hidden;
  display: block;
  height: 236px;
  padding: 14px;
  background: #fff;
}

.pop_list {
  position: relative;
  display: block;
  border: 1px solid #f2f2f2;
  width: 100%;
  border-spacing: 0px;
  padding: 0px;
  background: #fff;
}

.pop_list > tbody {
  height: 233px;
  overflow-y: auto;
  display: block;
}

.pop_list > tbody > tr {
  display: block;
}

.pop_list > tbody > tr > td {
  border-top: 1px solid #f2f2f2;
  line-height: 25px;
  height: 25px;
  display: inline-block;
  float: left;
  font-size: 12px;
  border-spacing: 0px;
  padding-left: 10px;
}

.pop_list > tbody > tr:first-child > td {
  border-top: 0;
}

.pop_list > tbody > tr > td:first-child {
  width: calc(50% - 10px);
}

.pop_list > tbody > tr > td:nth-child(2) {
  width: calc(25% - 10px);
}

.pop_list > tbody > tr > td:nth-child(3) {
  width: calc(25% - 10px);
}


.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;

  /* 숨기기 */
  z-index: -1;
  opacity: 0;
}

.show {
  opacity: 1;
  z-index: 1000;
  transition: all .5s;
}

.window {
  position: relative;
  width: 100%;
  height: 100%;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);

  /* 임시 지정 */
  width: 100px;
  height: 100px;

  /* 초기에 약간 아래에 배치 */
  transform: translate(-50%, -40%);
}

.show .popup {
  transform: translate(-50%, -50%);
  transition: all .5s;
  width: 480px;
  height: 500px;
}

.hidden {
  height: 100%;
  min-height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

.pop-head #close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: url(/images/ico_close.png) no-repeat;
  text-indent: -99999px;
  width: 14px;
  height: 14px;
}
