@charset "utf-8";
@import url("./font.css");
:root {
  --bs-blue: #337ff2;
  --bs-red: #DC2626;
  --bs-orange: #ff5e15;
  --bs-green: #1bab88;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #cccccc;
  --bs-gray-dark: #21212C;
  --bs-gray-100: #111111;
  --bs-gray-200: #222222;
  --bs-gray-300: #333333;
  --bs-gray-400: #444444;
  --bs-gray-500: #555555;
  --bs-gray-600: #666666;
  --bs-gray-700: #777777;
  --bs-gray-800: #888888;
  --bs-gray-900: #999999;
  --bs-primary: #003976; /* 색을 바꾸면 전체적용됩니다. */
  --bs-secondary: #8b8b8d;
  --bs-light: #F4F4F5;
  --bs-border: #B5BCC7;
  --bs-dark: #373d5c;
  --bs-table: #F4F4F5; /*테이블 헤더 칼라 */
  --bs-font-sans-serif: 'Pretendard', "돋움", Dotum, Arial, sans-serif;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow-y: auto;
  min-height: 100%;
}
body {
  height: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
}
body, table, th, td, button, select, input, textarea {
  font-family: var(--bs-font-sans-serif);
  font-size: 14px;
  color: var(--bs-gray-500);
  line-height: 1;
  -webkit-text-size-adjust: none;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img, fieldset {
  border: 0;
}
input, select, textarea {
  line-height: 1.2;
  vertical-align: middle;
  border: 1px solid var(--bs-border);
  border-radius: 3px;
  background: var(--bs-white);
  margin: 0;
}
input[type="file" i]::-webkit-file-upload-button {
  line-height: 1.2;
  vertical-align: middle;
  border: transparent;
  border-right: 1px solid var(--bs-border);
  border-radius: 3px;
  background: var(--bs-white);
  margin: 0;
  height: 38px;
  padding: 0 10px;
}
input[type=text], input[type=password], input[type=search], input[type=number], input[type=date], input[type=time], input[type="datetime-local"], select {
  height: 38px;
  padding: 0 10px;
}
input[type="file" i]::-webkit-file-upload-button:focus {
  outline: 0;
  border: 1px solid var(--bs-primary);
}
input[type="file" i]::-webkit-file-upload-button:read-only {
  background: var(--bs-light) !important;
  color: var(--bs-gray-800);
}
input[type="file" i]::-webkit-file-upload-button + span {
  padding-left: 7px;
}
input[type=number] {
  text-align: right;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border: 1px solid var(--bs-primary);
}
input:read-only, textarea:read-only {
  background: var(--bs-light) !important;
  color: var(--bs-gray-800);
}
input:read-only:focus, select:read-only:focus, textarea:read-only:focus {
  border: 1px solid var(--bs-border) !important;
}
input::placeholder {
  text-align: left;
  color: #aaaaaa;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent !important;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent !important;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent !important;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent !important;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--bs-white) url("../../images/admin/components/ico_select.svg") no-repeat 100% 50%;
  padding: 0 25px 0 7px;
  min-width: 80px;
}
select::-ms-expand {
  display: none;
}
select:focus {
  border: 1px solid var(--bs-primary);
  outline: 0;
  box-shadow: 0;
}
select:required, input:required, textarea:required {
  border-color: var(--bs-primary);
}
select:required:focus, input:required:focus, textarea:required:focus {
  background: var(--bs-light);
}
button, select {
  text-transform: none;
}
button, input {
  line-height: normal;
}
textarea {
  resize: vertical;
  overflow: auto;
  padding: 10px;
}
input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
input[type=radio] {
  display: none !important;
}
input[type=radio] + label {
  display: inline-block;
  background: var(--bs-white);
  width: 19px;
  height: 19px;
  cursor: pointer;
  vertical-align: middle;
  border: 1px solid var(--bs-border);
  border-radius: 50%;
  position: relative;
}
input[type=radio]:checked + label:after {
  background: var(--bs-primary);
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  border-color: var(--bs-primary);
  content: "";
}
input[type=radio] + label + label {
  margin-right: 0.5em;
  vertical-align: middle;
}
input[type=radio]:disabled + label {
  opacity: 0.2;
  box-shadow: none;
  cursor: not-allowed;
}
input[type=radio].essential + label {
  border-color: var(--bs-red);
}
input[type=checkbox] {
  display: none; /*!important;*/
}
input[type=checkbox] + label {
  display: inline-block;
  background: var(--bs-white);
  width: 19px;
  height: 19px;
  cursor: pointer;
  margin: 0 0.2em;
  vertical-align: middle;
  border: 1px solid var(--bs-border);
  border-radius: 4px;
}
input[type=checkbox]:checked + label {
  background: var(--bs-primary) url("../../images/admin/components/ico_checkbox.svg") center center no-repeat;
  border-color: var(--bs-primary);
}
input[type=checkbox] + label + label {
  margin-right: 0.5em;
  vertical-align: middle;
}
input[type=checkbox]:disabled + label {
  opacity: 0.2;
  box-shadow: none;
  cursor: not-allowed;
}
input[type=checkbox].essential + label {
  border-color: var(--bs-red);
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--bs-border);
  margin: 1em 0;
  padding: 0;
}
a {
  color: var(--bs-gray-500);
  text-decoration: none;
}
a:active, a:hover, a:focus {
  text-decoration: none;
  color: var(--bs-primary);
}
button {
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  border: 0px;
  background: none;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.flex-4 {
  flex: 4;
}
.flex-5 {
  flex: 5;
}
.flex-6 {
  flex: 6;
}
.flex-7 {
  flex:72;
}
.flex-8 {
  flex: 8;
}
.flex-9 {
  flex: 9;
}
.gap-5 {
  gap: 5px;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.wid10 {
  width: 10%;
}
.wid20 {
  width: 20%;
}
.wid30 {
  width: 30%;
}
.wid40 {
  width: 40%;
}
.wid50 {
  width: 50%;
}
.wid60 {
  width: 60%;
}
.wid70 {
  width: 70%;
}
.wid80 {
  width: 80%;
}
.wid90 {
  width: 90%;
}
.wid100 {
  width: 100%;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.just-start {
  justify-content: start;
}
.just-center {
  justify-content: center;
}
.just-end {
  justify-content: end;
}
.just-between {
  justify-content: space-between;
}
.padding-5{
	padding: 5px;
}
.padding-10{
	padding: 10px;
}
/***** btn *****/
.components-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid;
}
.components-small-btn {
  display: inline-block;
  padding: 5px 7px;
  border-radius: 6px;
  border: 1px solid;
}
.components-grid-btn {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid;
  min-height: 2rem;
}
.ui-jqgrid tr.ui-row-ltr td:has(.components-grid-btn),
.ui-jqgrid tr.ui-row-ltr td:has(.cbox) {
  overflow: visible;
  white-space: nowrap;
}
.btn-primary {
  border-color: var(--bs-primary);
  background: var(--bs-primary);
  color: var(--bs-white);
}
.btn-primary:hover {
  background: var(--bs-black);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-color: var(--bs-black);
}
.btn-primary:focus {
  background: var(--bs-dark);
  border-color: var(--bs-dark);
}
.btn-primary:disabled {
  opacity: 0.2;
  cursor: default;
}
.btn-secondary {
  border-color: var(--bs-secondary);
  background: var(--bs-secondary);
  color: var(--bs-white);
}
.btn-secondary:hover {
  background: var(--bs-gray-700);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.btn-secondary:focus {
  background: var(--bs-gray-600);
  border-color: var(--bs-gray-600);
}
.btn-secondary:disabled {
  opacity: 0.2;
  cursor: default;
}
.btn-border {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background-color: var(--bs-white);
}
.btn-border.active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.btn-border:hover {
  background: var(--bs-light);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.btn-border:focus {
  background: var(--bs-white);
  border-color: var(--bs-gray-100);
}
.btn-border:active {
  border-color: var(--bs-dark);
}
.btn-border:disabled {
  opacity: 0.2;
  cursor: default;
}
/*text*/
.text-primary {
  color: var(--bs-primary) !important;
}
.text-red {
  color: var(--bs-red) !important;
}
.text-blue {
  color: var(--bs-blue) !important;
}
.text-left {
  text-align: left !important
}
.text-right {
  text-align: right !important
}
.text-center {
  text-align: center !important
}
.radio-button input[type=radio] + label {
  display: block;
  cursor: pointer;
  border: 1px solid var(--bs-border);
  text-align: center;
  border-radius: 2px;
  width: inherit;
  height: inherit;
  padding: 7px 30px;
}
.radio-button input[type=radio] + label,
.radio-button input[type=checkbox] + label {
  background-color: var(--bs-white);
  color: var(--bs-primary);
	margin-bottom:5px;
}
.radio-button input[type=radio]:checked + label,
.radio-button input[type=checkbox]:checked + label {
  background-color: var(--bs-primary);
  color: var(--bs-white);
	border-color: var(--bs-primary);
}
.radio-button input[type=radio]:checked + label:after,
.radio-button input[type=checkbox]:checked + label:after {
  display: none;
}

.radio-button.list-type {
  border: 1px solid var(--bs-gray);
  border-radius: 3px;
  padding: 4px;
}
.radio-button.list-type input[type=radio] + label {
  border: 0;
  padding: 12px 10px;
  text-align: left;
}
.radio-button.list-type input[type=radio]:checked + label {
  background-color: var(--bs-light);
  color: var(--bs-primary);
}
.radio-button.row input[type=radio] + label {
  width:100%;
  text-align:left;
  padding: 7px 10px;
}
.radio-button.col input[type=radio] + label {
  display: inline-block;
  padding: 7px 10px;
  min-width: 6rem;
}
.radio-button.single-type {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: var(--bs-primary);
}
.radio-button.single-type input[type=radio] + label,
.radio-button.single-type input[type=checkbox] + label {
  display: none;
}
.radio-button.single-type input[type=radio] + label + label,
.radio-button.single-type input[type=checkbox] + label + label {
  border: 1px solid var(--bs-gray);
  border-radius: 1rem;
  padding: 0.5rem;
}
.radio-button.single-type input[type=radio] + label + label:focus,
.radio-button.single-type input[type=radio] + label + label:hover,
.radio-button.single-type input[type=checkbox] + label + label:focus,
.radio-button.single-type input[type=checkbox] + label + label:hover {
  background-color: var(--bs-light);
}
.radio-button.single-type input[type=radio]:checked + label + label,
.radio-button.single-type input[type=checkbox]:checked + label + label {
  background-color: var(--bs-primary);
  color: var(--bs-light);
}
/***** TABLE *****/
.table-A {
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid var(--bs-primary);
}
.table-A thead {}
.table-A thead th {
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: var(--bs-gray-100);
  background: var(--bs-table);
}
.table-A tbody th {
  text-align: center;
  padding: 10px;
  color: var(--bs-black);
  background: var(--bs-light);
  border-bottom: 1px solid var(--bs-gray);
}
.table-A tbody td {
  padding: 10px;
  border-bottom: 1px solid var(--bs-gray);
}
.table-A tbody td a {
  text-decoration: underline;
}
/*paging */
.paging {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 0 0;
  gap: 2px;
}
.paging a {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.7em;
  font-size: 0.9em;
  width: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--bs-gray-300);
  margin: 0 2px;
}
.paging a:hover {
  color: var(--bs-primary);
}
.paging strong.on {
  color: var(--bs-white);
  font-weight: 800;
  background: var(--bs-primary);
  border-radius: 4px;
  display: inline-block;
  width: 32px;
  line-height: 32px;
  text-align: center;
}
.paging button {
  text-indent: -99999px;
  width: 32px;
  height: 32px;
  display: inline-block;
  position: relative;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
  overflow: hidden;
}
.paging button[disabled] {
  opacity: 0.4;
}
.paging button:not([disabled]):focus, .paging button:not([disabled]):hover {
  border-radius: 4px;
  background-color: var(--bs-light);
}
.btn_first:before, .btn_last:before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--bs-gray-400);
  border-width: 0 0 2px 2px;
  background-color: transparent;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
.btn_first:after, .btn_last:after {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--bs-gray-400);
  border-width: 0 0 2px 2px;
  background-color: transparent;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
.btn_last:before {
  left: auto;
  right: 17px;
  transform: translateY(-50%) rotate(-135deg);
}
.btn_last:after {
  left: auto;
  right: 10px;
  transform: translateY(-50%) rotate(-135deg);
}
.btn_prev:before, .btn_next:before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--bs-gray-400);
  border-width: 0 0 2px 2px;
  background-color: transparent;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
.btn_next:before {
  left: auto;
  right: 14px;
  transform: translateY(-50%) rotate(-135deg);
}
.state {
  display: inline-block;
  padding: 4px 10px 3px 10px;
  border-radius: 30px;
  font-size: 0.9em;
  color: var(--bs-white);
  line-height: 1;
}
.state.primary {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
.state.blue-border {
  background: var(--bs-white);
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}
.state.secondary {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
.function-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.function-box > p {
  font-weight: 700;
  coor: var(--bs-gray-100);
  font-size: 1.1em;
}
.sub-title {
  color: var(--bs-black);
  font-size: 1.5em;
  font-weight: 700;
  margin: 10px 0;
  padding: 0 0 0 15px;
  position: relative;
}
.sub-title:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-red);
}
.sub-title > small {
  color: var(--bs-secondary);
}
.sub-help {
  display: flex;
  justify-content: end;
  align-items: center;
  color: var(--bs-gray-600);
  font-size: 1.1em;
  margin: 10px 0;
  padding: 0 0 0 15px;
}
.sub-help:before {
  content: "";
  margin: 0 5px 0 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-gray-600);
}
.sub-help > small {
  color: var(--bs-secondary);
}
.essential {
  border-color: var(--bs-red);
}
/***** search area *****/
.search-wrap {
  display: flex;
  justify-content: space-between;
  background: #f5f6f8;
  border: 1px solid #d8d9e4;
  border-radius: 5px;
  margin: 10px 0;
  padding: 10px;
}
.search-wrap > table {
  width: calc(100% - 100px);
}
.search-wrap > table th, .search-wrap > table td {
  padding: 4px;
  text-align: left;
}
.search-wrap > table th {
  color: var(--bs-black);
  padding-left: 20px;
}
.search-wrap > button {
  width: 100px;
}
/***** button area *****/
.button-wrap {
  display: flex;
  margin: 10px 0;
}
.button-small-wrap {
  display: flex;
  margin: 5px 0;
}

.accent{
	color: #003976;
    font-weight: bold;
}

.table-wrapper {
  width: 100%;
}

.fixed-header,
.fixed-body {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* 열 너비 고정! */
}

.fixed-header th,
.fixed-body td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* tbody 스크롤 영역 */
.scroll-body {
  height: 15rem; /* 원하는 높이로 설정 */
  overflow-y: auto;
}

/* 열 너비를 수동으로 맞추고 싶다면 */
.fixed-header th:nth-child(1),
.fixed-body td:nth-child(1) {
  width: 30%;
}
.fixed-header th:nth-child(2),
.fixed-body td:nth-child(2) {
  width: 20%;
}
.fixed-header th:nth-child(3),
.fixed-body td:nth-child(3) {
  width: 50%;
}

.signature-pad-area {
  display: inline-block;
  background-color: white;
}
.signature-pad {
  border: 1px solid var(--bs-border);
  width: 300px;
  height: 150px;
  display: flex
;
  align-items: center;
  justify-content: center;
  color: var(--bs-gray-900);
}
.content-section {
  display:none;
  margin: 14px 0;
}
.signature-pad-fn-area {
  display: inline-block;
  position: absolute;
  margin-left: 10px;
}
.signature-pad-fns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ui-jqgrid tr.jqgrow td[aria-describedby=surveyList_totDurationMMSS] {
  text-overflow:initial;
}
