﻿@charset "utf-8";

/* ============================================
   CSS Variables - 모던 스타일
   ============================================ */
:root {
  /* Fonts */
  --font-family: 'Noto Sans KR', 'Noto Sans CJK KR', 'Roboto', '나눔고딕', '맑은 고딕',  -apple-system, sans-serif;

   --font-familyback:  -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
   --font-family-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
    
   --font-family2:   "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", sans-serif;

    --font-family22:  'Noto Sans KR', -apple-system, sans-serif;


   
  --font-size-base: 13px;
  --font-size-medium: 14px;
  --font-size-small: 12px;
  --font-size-large: 16px;
  --letter-spacing: -0.5px;
  
  /* Colors - Text */
  --color-text: #333333;
  --color-text-dark: #383838;
  --color-text-darker: #3d3d3d;
  --color-text-light: #737070;
  --color-text-lighter: #999999;
  --color-text-strong: #333333;
  --color-text-link: #787878;
  --color-text-link-strong: #203923;
  --color-text-blue: #007bff;
  
  /* Colors - Border */
  --color-border: #e0e0e0;
  --color-border-light: #e7e7e7;
  --color-border-medium: #ddd;
  --color-border-dark: #ddd;
  --color-border-darker: #565656;
  --color-border-input: #ced4da;
  --color-border-table: #e0e0e0;
  
  /* Colors - Background */
  --color-bg-white: #ffffff;
  --color-bg-gray: #f3f4f6;
  --color-bg-light: #f8f9fa;
  --color-bg-lighter: #fafafa;
  --color-bg-input: #e9e9e9;
  --color-bg-modal: #f8f8f8;
  --color-bg-hover: #f0f5ff;
  --color-bg-selected: #f5f7fb;
  
  /* Colors - Primary */
  --color-primary: #1976d2;
  --color-primary-hover: #1565c0;
  --color-primary-dark: #565656;
  
  /* Colors - Accent */
  --color-accent-green: #4caf50;
  --color-accent-blue: #1976d2;
  --color-accent-red: #da1530;
  --color-accent-gray: #6c757d;
  --color-accent-dark-gray: #495057;
  
  /* Colors - Focus */
  --color-focus-border: #4a90e2;
  --color-focus-shadow: rgba(74, 144, 226, 0.1);
  
  /* Spacing */
  --border-radius: 5px;
  --border-radius-medium: 5px;
  --border-radius-large: 8px;
  --transition-speed: 0.2s;
  
  /* Sizes */
  --button-height: 30px;
   --button-height-small: 25px;
  --button-height-large: 31px;
  --button-height-xl: 40px;
  --input-height: 31px;
  --input-selheight: 31px;
  --input-height-small: 27px;
}



:root {
    --bg-primary: #f4f5f7;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f9fafb;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --border-color: #e2e4ea;
    --border-light: #f0f1f5;
    --border-focus: #3b82f6;
    --text-primary: #1e2134;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --text-label: #6b7280;
    --accent-blue: #3b82f6;
    --accent-blue-hover: #2563eb;
    --accent-blue-bg: #eff3ff;
    --accent-green: #16a34a;
    --accent-green-bg: #ecfdf5;
    --accent-green-border: #bbf7d0;
    --accent-red: #dc2626;
    --accent-red-bg: #fef2f2;
    --accent-red-border: #fecaca;
    --accent-orange: #d97706;
    --accent-orange-bg: #fffbeb;
    --accent-orange-border: #fde68a;
    --accent-purple: #7c3aed;
    --accent-purple-bg: #f5f3ff;
    --accent-cyan: #0284c7;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --td-fontsize:12px;
    --th-fontsize:12px;
    --font-size:  1rem;
    --modal-title-fontsize: 18px;
}


 
@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 500;
  src: url('/css/fonts/noto-sans-kr-v12-korean-500.eot');
  src: local('Noto Sans KR Medium'), local('NotoSansKR-Medium'),
       url('/css/fonts/noto-sans-kr-v12-korean-500.eot?#iefix') format('embedded-opentype'),
       url('/css/fonts/noto-sans-kr-v12-korean-500.woff2') format('woff2'),
       url('/css/fonts/noto-sans-kr-v12-korean-500.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans KR';
  font-style: normal;
  font-weight: 700;
  src: url('/css/fonts/noto-sans-kr-v12-korean-700.eot');
  src: local('Noto Sans KR Bold'), local('NotoSansKR-Bold'),
       url('/css/fonts/noto-sans-kr-v12-korean-700.eot?#iefix') format('embedded-opentype'),
       url('/css/fonts/noto-sans-kr-v12-korean-700.woff2') format('woff2'),
       url('/css/fonts/noto-sans-kr-v12-korean-700.woff') format('woff');
}

 
 
 


/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
  color: var(--color-text);
  background: var(--color-bg-white);
  overflow-x: hidden;
}

html {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  min-width: 320px;
  font-size: var(--font-size-large);
  color: var(--color-text-darker);
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(90%);  /* 색상 변경 */
}

.SYS__panel_scrollhead thead {
       border: 1px solid var(--color-border-table);
}

p {
  padding: 0;
  margin: 0;
  word-break: break-all;
}

td, th, input, textarea, select, div, li {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: 400;
  letter-spacing: var(--letter-spacing);
  line-height: 18px;
  color: var(--color-text);
  text-align: left;
}

td, th {
  height: 25px;
  padding: 0;
}

 input[type="date"]{
  font-size: 14px;
    padding: 8px 12px;
    border: 1px solid var(--color-border-input);
    height: var(--input-height);
    width: 150px !important;
    background-image: url(/Sys/img/cal/calenderedit.svg);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    border-radius: var(--border-radius);
        flex: none !important;
}

    

/* ============================================
   Links
   ============================================ */
a {
  color: var(--color-text-link);
  text-decoration: none;
  cursor: pointer;
  word-break: break-all;
}

a:hover {
  text-decoration: underline;
}

a.underline {
  text-decoration: underline;
}

a.linkcls {
  color: var(--color-text-link-strong);
  font-weight: bold;
}

a.link {
  font-weight: 700;
  color: var(--color-text-darker);
}

/* ============================================
   Lists
   ============================================ */
ol, ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================
   Tables
   ============================================ */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0;
}

caption, legend {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-indent: -9999em;
  font-size: 0;
}

/* ============================================
   Forms
   ============================================ */
form, fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-family);
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label,
button {
  cursor: pointer;
}

label {
  font-weight: normal;
  font-size: 14px;
  color: #333;
}


.__sys_label{
     /* font-weight: bold;
   padding-left: 20px; */
}

/* Input Elements */
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-family: var(--font-family);
  font-size: var(--font-size-large);
  font-weight: 400;
  color: var(--color-text-darker);
  vertical-align: middle;
  box-shadow: none;
  box-sizing: border-box;
  appearance: none;

  border: 1.5px solid #d1d5db;
    border-radius: --border-radius; 


}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

select::-ms-expand {
  display: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

textarea {
  resize: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Focus States */
select:focus,
input:focus,
textarea:focus {
  color: var(--color-text-darker);
  background-color: var(--color-bg-white);
  border-color: var(--color-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-focus-shadow);
}

/* Placeholder Styles */
::placeholder {
  color: var(--color-text-lighter);
  font-size: 14px;
}

::-webkit-input-placeholder {
  color: var(--color-text-lighter);
  font-size: 14px;
}

:-ms-input-placeholder {
  color: var(--color-text-lighter);
  font-size: 14px;
}

.placeholder {
  color: var(--color-text-lighter) !important;
}

/* Input Types */
input.defalut {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid var(--color-border-input);
  border-radius: var(--border-radius);
  box-sizing: border-box;
  height: var(--input-height);
  font-size:  var(--th-fontsize);
}

input.number,
input.money {
  text-align: right;
  font-size: 14px;
  border: 1px solid var(--color-border-input);
  height: var(--input-height);
  padding: 8px 12px;
  box-sizing: border-box;
}

input.textbox,
textarea.textbox {
  border: 1px solid var(--color-border-medium);
  padding: 8px 12px;
  font-size: 14px;
}

textarea.textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid var(--color-border-input);
  min-height: 100px;
  box-sizing: border-box;
}

input[sys_in_dat_cls=defalut] {
  z-index: 3;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--color-border-input);
  height: var(--input-height);
  width: 150px;
  background-image: url(/Sys/img/cal/calenderedit.svg);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  border-radius: var(--border-radius);
}

.sys_input_date {
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid var(--color-border-input);
  height: var(--input-height);
  width: 150px;
  background: url(/Sys/images/calenderedit/calenderedit.gif) right no-repeat;
  border-radius: var(--border-radius);
}

/* Select */
select {
     padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 12.5px;
    color: var(--text-primary);
    outline: none;
    background: var(--bg-input);
    transition: border .15s;
    min-width: 180px;


appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;padding-right:26px;cursor:pointer;
}

/* ============================================
   Custom Checkbox & Radio
   ============================================ */
input[sys_input_type="checkbox"],
input[sys_input_type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

input[sys_input_type="checkbox"] + span {
  display: inline-block;
  padding-left: 26px;
  padding-right: 12px;
  height: 20px;
  background: url('/Sys/img/ctrl/bg_check_off.png') 0 0 no-repeat;
}

input[sys_input_type="checkbox"]:checked + span {
  background: url('/Sys/img/ctrl/bg_check_on.png') 0 0 no-repeat;
}

input[sys_input_type="radio"] + span {
  display: inline-block;
  padding-left: 30px;
  padding-right: 14px;
  padding-top: 3px;
  height: 20px;
  line-height: 13px;
  background: url('/Sys/img/btn_radio_n.png') 0 0 no-repeat;
  font-size: var(--th-fontsize);
}

input[sys_input_type="radio"]:checked + span {
  background: url('/Sys/img/btn_radio_s.png') 0 0 no-repeat;
}

.Sys_check_sp {
  margin-right: 20px;
  display: inline-block;
}

.Sys_check_sp label {
  display: block;
  margin-bottom: 7px;
}

.sys_radio {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

input[type='checkbox']._sys_file_chk {
  width: 20px;
  height: 15px;
}

/* ============================================
   Buttons - 모던 스타일
   ============================================ */
.SYS_button,
.SYS_sbutton,
.SYS_ebutton,
.SYS_tbutton {
  height: var(--button-height);
  padding: 10px 20px;
  margin: 0 0 0 3px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-accent-gray);
  font-size: 14px !important;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: normal;
  min-width: auto;
}


 
.SYS_ebutton,
.SYS_tbutton {
  height: var(--button-height-large);
 
  padding: 5px 20px;
}

.SYS_sbutton{
  height: var(--button-height-small);
     font-size: 11px !important;
  padding: 5px 20px;
}
.SYS_button:hover,
.SYS_sbutton:hover,
.SYS_ebutton:hover {
  background-color: #5a6268;
  opacity: 0.9;
}

.SYS_button:focus,
.SYS_sbutton:focus,
.SYS_ebutton:focus {
  outline: none;
}

.SYS_tbutton {
  background-color: var(--color-accent-blue);
}

.SYS_tbutton:hover {
  background-color: var(--color-primary-hover);
}

/* 검색/조회 버튼 - 파란색 */
.SYS_button.search,
.SYS_sbutton.search,
.SYS_ebutton.search,
.btn_search,
.btn-search {
  background-color: var(--color-accent-blue);
}

.SYS_button.search:hover,
.SYS_sbutton.search:hover,
.SYS_ebutton.search:hover,
.btn_search:hover,
.btn-search:hover {
  background-color: var(--color-primary-hover);
}

/* 신규등록 버튼 - 초록색 */
.SYS_button.add,
.SYS_sbutton.add,
.SYS_ebutton.add,
.btn-add {
  background-color: var(--color-accent-green);
}

.SYS_button.add:hover,
.SYS_sbutton.add:hover,
.SYS_ebutton.add:hover,
.btn-add:hover {
  background-color: #45a049;
}

/* 수정/저장/Excel 버튼 - 어두운 회색 */
.SYS_button.save,
.SYS_button.regist,
.SYS_button.changeform,
.SYS_button.excel,
.SYS_sbutton.save,
.SYS_sbutton.regist,
.SYS_sbutton.changeform,
.SYS_sbutton.excel,
.SYS_ebutton.save,
.SYS_ebutton.regist,
.SYS_ebutton.changeform,
.SYS_ebutton.excel,
.btn_excel,
.btn_save,
.btn_update {
  background-color: var(--color-accent-dark-gray);
}

.SYS_button.save:hover,
.SYS_button.regist:hover,
.SYS_button.excel:hover,
.btn_excel:hover,
.btn_save:hover,
.btn_update:hover {
  background-color: #343a40;
}

/* 삭제 버튼 - 회색 */
.SYS_button.delete,
.SYS_button.deleteitem,
.SYS_sbutton.delete,
.SYS_sbutton.deleteitem,
.SYS_ebutton.delete,
.SYS_ebutton.deleteitem,
.btn_delete,
.btn_sm_delete {
  background-color: var(--color-accent-gray);
}

.SYS_button.delete:hover,
.SYS_button.deleteitem:hover,
.btn_delete:hover {
  background-color: #5a6268;
}

/* Disabled State */
.dis {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  background: #e0e0e0;
  font-size: 14px;
  font-weight: bold;
  color: #9e9e9e;
  cursor: not-allowed;
  opacity: 0.6;
}

button:disabled,
.SYS_button:disabled,
.SYS_sbutton:disabled,
.SYS_ebutton:disabled {
  background-color: #e0e0e0 !important;
  color: #9e9e9e !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Button Color Variants */
.button-color01 {
  background-color: var(--color-primary-dark);
}

.button-color02 {
  background-color: var(--color-primary);
}

.button-type01 {
  background-color: var(--color-accent-gray);
}

/* ============================================
   Button Icons
   ============================================ */
.SYS_button.list,
.SYS_button.search,
.SYS_button.add,
.SYS_button.deleteitem,
.SYS_button.save,
.SYS_button.regist,
.SYS_button.changeform,
.SYS_button.regmail,
.SYS_button.cancel,
.SYS_button.delete,
.SYS_button.back,
.SYS_button.print,
.SYS_button.excel,
.SYS_button.altchange {
  padding-left: 44px !important;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
}

.SYS_ebutton.list,
.SYS_ebutton.search,
.SYS_ebutton.add,
.SYS_ebutton.deleteitem,
.SYS_ebutton.save,
.SYS_ebutton.regist,
.SYS_ebutton.changeform,
.SYS_ebutton.regmail,
.SYS_ebutton.cancel,
.SYS_ebutton.delete,
.SYS_ebutton.back,
.SYS_ebutton.print,
.SYS_ebutton.excel,
.SYS_ebutton.altchange {
  padding-left: 44px !important;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
}

.SYS_sbutton.list,
.SYS_sbutton.search,
.SYS_sbutton.add,
.SYS_sbutton.deleteitem,
.SYS_sbutton.save,
.SYS_sbutton.regist,
.SYS_sbutton.changeform,
.SYS_sbutton.regmail,
.SYS_sbutton.cancel,
.SYS_sbutton.delete,
.SYS_sbutton.back,
.SYS_sbutton.print,
.SYS_sbutton.excel,
.SYS_sbutton.confirm,
.SYS_sbutton.altchange {
  padding-left: 44px !important;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 16px;
}

/* Icon Images */
.SYS_button.list,
.SYS_button.back,
.SYS_ebutton.list,
.SYS_ebutton.back,
.SYS_sbutton.list,
.SYS_sbutton.back {
  background-image: url(/cms_inc/img/btnimg/arrow_goback.png) !important;
}

.SYS_button.search,
.SYS_ebutton.search,
.SYS_sbutton.search {
  background-image: url(/cms_inc/img/btnimg/search.png) !important;
}

.SYS_button.add,
.SYS_ebutton.add,
.SYS_sbutton.add {
  background-image: url(/cms_inc/img/btnimg/add.png) !important;
}

.SYS_button.deleteitem,
.SYS_ebutton.deleteitem,
.SYS_sbutton.deleteitem {
  background-image: url(/cms_inc/img/btnimg/deleteitem.png) !important;
}

.SYS_button.save,
.SYS_button.regist,
.SYS_button.changeform,
.SYS_ebutton.save,
.SYS_ebutton.regist,
.SYS_ebutton.changeform,
.SYS_sbutton.save,
.SYS_sbutton.regist,
.SYS_sbutton.changeform {
  background-image: url(/cms_inc/img/btnimg/save.png) !important;
}

.SYS_button.regmail,
.SYS_ebutton.regmail,
.SYS_sbutton.regmail {
  background-image: url(/cms_inc/img/btnimg/regmail.png) !important;
}

.SYS_button.cancel,
.SYS_ebutton.cancel,
.SYS_sbutton.cancel {
  background-image: url(/cms_inc/img/btnimg/cancel.png) !important;
}

.SYS_button.delete,
.SYS_ebutton.delete,
.SYS_sbutton.delete {
  background-image: url(/cms_inc/img/btnimg/del.png) !important;
}

.SYS_button.print,
.SYS_button.excel,
.SYS_ebutton.print,
.SYS_ebutton.excel,
.SYS_sbutton.print,
.SYS_sbutton.excel {
  background-image: url(/cms_inc/img/btnimg/printer.png) !important;
}

.SYS_sbutton.confirm {
  background-image: url(/cms_inc/img/btnimg/okbtn.png) !important;
}

.SYS_button.altchange,
.SYS_ebutton.altchange,
.SYS_sbutton.altchange {
  background-image: url(/cms_inc/img/btnimg/rollback.png) !important;
}

/* ============================================
   Specific Button Styles
   ============================================ */
.btn_sm_update,
.btn_sm_delete,
.btn_sm_save,
.btn_sm_search {
  height: var(--button-height);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-accent-gray);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.btn_sm_general {
  height: var(--button-height);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-bg-white);
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-darker);
  text-align: center;
  cursor: pointer;
}

.btn_general,
.btn_save,
.btn_delete,
.btn_update {
  height: var(--button-height-xl);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-primary);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

/* ============================================
   Button Containers & Layout
   ============================================ */
.SYS_button_sp {
  display: inline-block;
  padding: 2px 0 2px 3px;
}

.btnWrap {
  margin-top: 20px;
  overflow: hidden;
}

.btnWrap:after {
  content: '';
  display: block;
  clear: both;
}

.btnSearch {
  padding-top: 10px;
  text-align: right;
}

.btnLefRight {
  display: inline-block;
  position: absolute;
  right: 10px;
  margin-top: 0;
}

.btnRight {
  margin-top: 20px;
  text-align: right;
}

.btnCenter {
  text-align: center;
}

.SYS__Button .SYS_button {
  display: inline-flex;
  height: var(--button-height);
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--color-accent-gray);
  font-size: 14px !important;
  font-weight: bold;
  color: #fff;
  vertical-align: middle;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.SYS__Button .SYS_button:hover {
  background-color: var(--color-primary-hover);
  opacity: 0.9;
}

.SYS__Button button:first-child {
  margin-left: 0 !important;
}




/* ============================================
   Tree View
   ============================================ */
.SYS__TREE_DIV {
  margin: 0;
  padding: 0;
  display: block;
  font-family: var(--font-family);
  font-size: var(--font-size-small);
  color: #5f5f5f;
  white-space: nowrap;
}

.SYS__TREE_DIV li {
  padding: 3px 0 0 16px;
  display: block;
  background: url(/Sys/images/tree/treedot.gif) repeat-y 23px 0;
}

.SYS__TREE_DIV li:last-child {
  background-repeat: no-repeat;
}

.SYS__TREE_DIV img {
  border: 0;
  vertical-align: middle;
}


/* ============================================
   Tables - Panel Table 모던 스타일
   ============================================ */
.SYS__panel_table {
  width: 100%;
  border-collapse: collapse;
}


 

.SYS__panel_table th {
  border: none;
  border-bottom: 1px solid var(--color-border-table); 
  padding: 12px 16px;
  color: #333;
  font-size: var(--th-fontsize);
  font-weight: bold;
  vertical-align: middle;
  background: var(--color-bg-light); 
}

.SYS__panel_table td {
  border: none;
  border-bottom: 1px solid var(--color-border-table);  
  padding: 8px 16px;
  height: auto;
 font-size:  var(--th-fontsize);
  text-align: left;
  vertical-align: middle;
  background: white;
}


.Sys_form_search_out_bord > .SYS__panel_table > tbody > tr > th{
  border: none;
  border-bottom: none;
  padding: 12px 16px;
  color: var(--text-label);
  font-size: var(--th-fontsize);
  font-weight: 800;
  vertical-align: middle;
   background: none;
  text-align: left;
}
.Sys_form_search_out_bord > .SYS__panel_table > tbody > tr > td{
  border: none;
  border-bottom: none;
 
 
   background: none;
 
}

.SYS__panel_table .lefttitle {
  
  padding: 12px 16px;
  text-align: left;
  
  color: #333;
  width: 150px;
  min-width: 120px;
}

.SYS__panel_table .righttitle {
  padding: 12px 16px;
  text-align: right;
}

.SYS__panel_table .centertitle {
  text-align: center;
}

 
td.nonetitle {
  
}


 
.SYS__Regist__form th {
  border: none;
 
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
 
  text-align: left;
    padding-bottom: 20px;
 

}

.SYS__Regist__form td {
  border: none;
 
  padding: 12px 16px;
  height: auto;
  text-align: left;
  vertical-align: middle;
  background: white;
 
}




.SYS__Regist__form > tbody > tr > th {
     border: 1px solid var(--color-border-table);
}

.SYS__Regist__form > tbody > tr > td {
     border: 1px solid var(--color-border-table);
}



/* 직계 자식에만 적용 */
.SYS__Regist__form2 > tbody > tr > th {
    display: block;
    width: 100%;
}

.SYS__Regist__form2 > tbody > tr > td {
    display: block;
    width: 100%;
}

/* 중첩된 테이블은 원래대로 */
.SYS__Regist__form table th,
.SYS__Regist__form table td {
    display: table-cell;
    width: auto;
}



/* ============================================
   Tables - ListView 모던 스타일
   ============================================ */
table.SYS_listview_table {
  border-top: none;
  width: 100%;
}

table.SYS_listview_table th {
  border: none;
  border-bottom: 1px solid var(--color-border-table);
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  background: var(--color-bg-light);
  vertical-align: middle;
}

table.SYS_listview_table th:last-child {
  border-right: none;
}

table.SYS_listview_table td {
  border: none;
  border-bottom: 1px solid var(--color-border-table);
  padding: 12px 16px;
  font-size: 14px;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
}

.List_rowclickcss {
  background-color: var(--color-bg-selected);
}

/* ListView - Extended Tables */
table._x2live_listview_table,
table._x2live_listview_table_dash,
table._x2live_listview_basic {
  width: 100%;
  border-collapse: collapse;
  border-top: none;
}

table._x2live_listview_table th,
table._x2live_listview_table_dash th,
table._x2live_listview_basic th {
  text-decoration: none;
  border: none;
  border-bottom: 1px solid var(--color-border-table);
  color: #333;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  background: var(--color-bg-light);
  padding: 12px 16px;
  vertical-align: middle;
  text-align: center;
}

table._x2live_listview_basic th {
  font-weight: 500;
  height: auto;
}

._x2live_listview_basic th {
  font-weight: bold;
}

table._x2live_listview_table th:last-child {
  border-right: none;
}

table._x2live_listview_table_dash th:last-child {
  border-right: none;
}

table._x2live_listview_table td,
table._x2live_listview_table_dash td,
table._x2live_listview_basic td {
  font-size: 14px;
  line-height: normal;
  border: none;
  border-bottom: 1px solid var(--color-border-table);
  padding: 12px 16px;
  vertical-align: middle;
}

table._x2live_listview_table td {
  text-overflow: ellipsis;
  overflow: hidden;
}

table._x2live_listview_table_dash td {
  border: none;
  border-bottom: 1px solid var(--color-border);
}

table._x2live_listview_basic td {
  height: auto;
}

table._x2live_listview_table td.subject,
table._x2live_listview_table_dash td.subject,
table._x2live_listview_basic td.subject {
  padding-left: 16px;
  text-align: left;
}

table._x2live_listview_table .lefttitle,
table._x2live_listview_table_dash .lefttitle {
  padding-left: 16px !important;
  padding-right: 16px;
  text-align: left;
  background: var(--color-bg-light);
}

table._x2live_listview_basic .lefttitle {
  padding-left: 16px !important;
  padding-right: 16px;
  text-align: left;
  background: var(--color-bg-light);
}

/* 행 호버 효과 */
table.SYS_listview_table tbody tr:hover,
table._x2live_listview_table tbody tr:hover,
table._x2live_listview_table_dash tbody tr:hover,
table._x2live_listview_basic tbody tr:hover {
  background-color: var(--color-bg-hover);
  transition: background-color var(--transition-speed) ease;
}

/* ============================================
   Scrollable Tables
   ============================================ */
.SYS_scroll_FIX {
  flex: 1;
}

.SYS_scrollhead {
  padding-right: 17px !important;
  background-color: var(--color-bg-light);
 overflow: auto;
  scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge */
}

  
.SYS_scrollhead::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}


.SYS__panel_scrollhead {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: none;
}

table.SYS__panel_scrollhead th {
    background: var(--bg-tertiary);
    padding: 9px 14px;
    text-align: left;
    font-weight: 700;
    font-size: var(--th-fontsize);
    color: var(--text-label);
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
    
    
}

table.SYS__panel_scrollhead thead th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;  /* 위에서 25% 지점부터 시작 */
    height: 50%;  /* 50% 높이 */
    width: 1px;
    background-color: #ddd;
}

table.SYS__panel_scrollhead td {
  border: none;
  border-bottom: 1px solid var(--color-border-table);
  padding: 12px 16px;
  height: auto;
  text-align: left;
  vertical-align: middle;
  background: white;
}

table.SYS__panel_scrollhead .lefttitle {
  padding-left: 16px;
  text-align: left;
}

table.SYS__panel_scrollhead .righttitle {
  padding-right: 16px;
  text-align: right;
}

table.SYS__panel_scrollhead .centertitle {
  text-align: center;
   padding:0 5px;
}

table.SYS__panel_scrollhead .nonetitle {
  background-color: white;
}

.SYS_scrollbody {
  position: relative;
  overflow-x: auto;
  overflow-y: scroll;
  border-right: 1px solid vvar(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);

 
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
}

.SYS__panel_scrollbody {
  margin: 0;
  table-layout: fixed;
  outline-style: none;
}

.SYS__panel_scrollbody td {
  padding: 12px 16px;
  height: auto;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  border: none;
 
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size:  var(--td-fontsize);  
}

tr.sys_rowevent:hover {
  background-color: var(--color-bg-hover);
  cursor: pointer;
}

tr.sys_rowevent td {
  background-color: transparent !important;
}

/* ============================================
   Tabs - 모던 스타일
   ============================================ */
.Sys_tab_ul_basic {
  display: flex !important;
  border-bottom: 2px solid #dee2e6 !important;
  background-color: white !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  overflow: visible !important;
  box-sizing: border-box;
}

.Sys_tab_ul_basic li {
  float: none !important;
  display: block !important;
  list-style-type: none;
  min-width: auto !important;
  height: auto !important;
  padding: 15px 30px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 3px solid transparent !important;
  text-align: center;
  white-space: nowrap;
  color: #333  ;
  font-size: 14px !important;
  font-weight: bold !important;
  cursor: pointer;
  background: none  ;
  box-sizing: border-box;
}




.Sys_tab_ul_basic li:first-child {
  border-left: none !important;
  margin-left: 0;
}

.Sys_tab_ul_basic .select,
.Sys_tab_ul_basic .Sys_tab_selected-tab,
.Sys_tab_ul_basic li.selected-tab {
  color: var(--color-text-blue) !important;
  border: none !important;
  border-bottom: 3px solid var(--color-text-blue) !important;
  background: none !important;
  font-weight: bold !important;
}

.Sys_tab_ul_basic li:last-child {
  border-right: none !important;
}

.sys_tab_body {
  padding-top: 20px !important;
  border-top: none !important;
}


.Sys_tab_ul_basic>li:hover {

      color: #333333; 
    background: #f0f0f0;
 
}
/* Small Tabs */
.Sys_tab_ul_sm_basic {
  display: flex !important;
  overflow: hidden;
  height: auto !important;
  border-bottom: 2px solid #dee2e6 !important;
  background-color: white !important;
  padding: 0 !important;
  margin: 0 !important;
}

.Sys_tab_ul_sm_basic li {
  float: none !important;
  min-width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 12px 20px !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  text-align: center;
  font-size: 14px !important;
  font-weight: normal !important;
  color: var(--color-text-darker) !important;
  cursor: pointer;
  background: none !important;
}

.Sys_tab_ul_sm_basic li:first-child {
  border-left: none !important;
}

.Sys_tab_ul_sm_basic li.select,
.Sys_tab_ul_sm_basic li.Sys_tab_selected-tab {
  padding: 12px 20px !important;
  border: none !important;
  border-bottom: 3px solid var(--color-text-blue) !important;
  background-color: transparent !important;
  color: var(--color-text-blue) !important;
  font-weight: bold !important;
}

.Sys_tab_selected-tab {
  color: var(--color-text-blue) !important;
  border: none !important;
  border-bottom: 3px solid var(--color-text-blue) !important;
  font-weight: bold !important;
  background: none !important;
}

.selected-tab {
  color: var(--color-text-blue) !important;
  border: none !important;
  border-bottom: 3px solid var(--color-text-blue) !important;
  font-weight: bold !important;
  background: none !important;
}

/* ng-style inline 덮어쓰기 */
.Sys_tab_ul_basic li[ng-style],
.Sys_tab_ul_sm_basic li[ng-style] {
  color: inherit !important;
  border-right: none !important;
  border-top: none !important;
  background: none !important;
}

.Sys_tab_ul_basic li[ng-style].Sys_tab_selected-tab,
.Sys_tab_ul_basic li[ng-style].select,
.Sys_tab_ul_sm_basic li[ng-style].Sys_tab_selected-tab,
.Sys_tab_ul_sm_basic li[ng-style].select {
  color: var(--color-text-blue) !important;
  border-bottom: 3px solid var(--color-text-blue) !important;
}

/* ============================================
   Modal
   ============================================ */
.fade.in {
  opacity: 0.6;
  background: #121212;
}

.fade {
  opacity: 0;
  transition: opacity var(--transition-speed) linear;
}

.sys_modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #8d8d8d;
  opacity: 0;
  transition: opacity var(--transition-speed) linear;
}

.sys_modal-backdrop.in {
  opacity: 0.5;
}

.sys_modal-content {
  position: relative;
  background-color: var(--color-bg-white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-large);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.sys_modal-header {
 
 border-bottom: 1px solid var(--color-border-light);
    
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px 11px;
    padding-bottom: 24px;
          
}

.sys_modal_body_scbody {
  height: 70vh;
  overflow: auto;
}


.sys_modal-alerttitle {
  margin: 0;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: bold;
  color: #333;
  line-height: normal;
  height: 20px;

      font-size: 17px;
    font-weight: 700;
}
tr {
    transition: background .1s;
}

.sys_modal-title {
  margin: 0;
  font-family: var(--font-family);
  font-size:  var(--modal-title-fontsize);
  font-weight: bold;
  color: #333;
  line-height: normal;
  height: 20px;
  font-weight: 700; 
  padding-top: 5px;
  
    padding-left: 12px;
}


.__Sys_modal_ok{
background-color: white;
    text-align: center;
    display: inline-block; 
    min-width: 58px;
    cursor: pointer;
    background-image: url(/Sys/btnimg/okbtn.png) !important;
    background-repeat: no-repeat;
    background-position: 7px 8px;
    margin: 0 0 0 3px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--color-accent-gray);
    font-size: 14px !important;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: normal;
    min-width: auto;
    min-width: 85px;
    height: 26px;
}

 .sys_tdclass{
 
  box-sizing: border-box;
 
}


.sys_tree{
display:inline-block;
height:20px;
text-align:right;
}

.sys_tree_span{
display:inline-block;
    height: 20px;
    width: 35px;

}

.__sys_treelnot{

background: url(/treeimg/foldnochild.gif) no-repeat;
    background-position: right; 
    
}
.__sys_treelist{

background: url(/treeimg/foldclose.gif) no-repeat;
    background-position: right; 
    
}
.__sys_treelist_o{

background: url(/treeimg/foldopen.gif) no-repeat;
    background-position: right; 
    
}
.abc_c{

background: url(/treeimg/fold.gif) no-repeat;
    background-position: right; 
    
}
.__sys_treedoc{

background: url(/x2form/img/tree/page.gif) no-repeat;
    background-position: right; 
    
}


.__Sys_modal_cancel{
background-color:white;text-align: center;display:inline-block;z-b90:3;min-width:58px;;cursor:pointer;
margin: 0 0 0 3px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--color-accent-gray);
    font-size: 14px !important;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: normal;
    min-width: auto;
        min-width: 85px;
    height: 26px;
}

.__Sys_modal_close{
background-color:white;text-align: center;display:inline-block;z-b90:3;min-width:58px;;cursor:pointer;
margin: 0 0 0 3px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--color-accent-gray);
    font-size: 14px !important;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: normal;
    min-width: auto;
        min-width: 85px;
    height: 26px;
}


.sys_modal-msg-header {
    border-bottom: 1px solid var(--color-border-light);
    background-color: var(--color-bg-modal);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px;
    /* padding-bottom: 32px; */
}

.__sys_msg-close {
       position: absolute;
    right: 5px;
    
    width: 18px;
    margin: 11px 20px 0 0;
    padding-top: 0;
    line-height: 27px;
    border: 0;
    color: var(--color-bg-white);
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    cursor: pointer;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1px; 

}
.__Sys_modal_msg_content{

text-align: center;

}
.__sys_proj_modal{

background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 300px;
 
  
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;


}


.__sys_close {
  position: absolute;
  right: 5px;
     top: 12px;
    width: 12px;
  margin: 11px 20px 0 0;
  padding-top: 0;
  line-height: 27px;
  border: 0;
  color: var(--color-bg-white);
  font-size: 20px;
  font-weight: 700;
  opacity: 1;
  cursor: pointer;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.sys_modal-body {
  padding: 5px 13px 10px 13px !important;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 13px;
}

.sys_modal-body .Sys_form_search_out_bord {
  background: #f7f5f5;
  border-radius: 7px;
  padding: 3px;
  border: 1px solid #f1f0f0;
}

.sys_modal-body .Sys_panel {
  background: #f7f5f5;
  border-radius: 7px;
  padding: 3px;
}

.sys_modal-footer {
  padding: 10px 15px;
  border: none;
}

/* ============================================
   Panels & Forms
   ============================================ */
.Sys_form_search_out_bord {
  
     background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    padding: 6px 3px;
    
}

.SYS_scrollhead:parent {
  /* 일부 브라우저에서 지원 안함 */

    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);

}

.SYS_Panel_Title {
  padding: 10px 2px 10px 25px;
  font-size: var(--font-size-large);
  font-weight: bold;
  position: relative;
}

.SYS_Panel_Title::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 13px;
  width: 13px;
  height: 15px;
  background-image: url('/asset/title.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.Sys_head_label {
 display: flex !important;
  margin-top: -21px;
  margin-bottom: -21px;
  padding: 27px 10px;
  color: #333;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
      font-size: 16px;
    font-weight: 600;
    
}


.Sys_head_label::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
    border-radius: 2px;
    margin-right: 12px;
}

._sys_next_trap {
  display: inline-block;
  margin-right: 5px !important;
}

/* Form Layouts */
.SYS_FormLayout {
  border: none;
  padding: 0;
}

table.SYS_FormLayout {
  width: 100%;
}

table.SYS_FormLayout > tbody {
  padding: 0;
  display: table-row-group;
}

table.SYS_FormLayout > tbody > tr {
  display: table-row;
}

table.SYS_FormLayout > tbody > tr > th,
table.SYS_FormLayout > tbody > tr > td {
  display: table-cell;
  border: none;
  height: auto;
  padding: 10px;
  vertical-align: middle;
}

table.SYS_FormLayout > tbody > tr > th {
  background: var(--color-bg-light);
  font-weight: normal;
  color: #333;
  font-size: 14px;
  text-align: left;
  width: 120px;
  white-space: nowrap;
}

table.SYS_FormLayout > tbody > tr > td {
  background: white;
  text-align: left;
}

table.SYS_FormLayout > tbody > tr:first-child th,
table.SYS_FormLayout > tbody > tr:first-child td {
  padding-top: 10px;
}

div.SYS_FormLayout > div {
  padding-top: 7px;
}

div.SYS_FormLayout > div:first-child {
  padding-top: 0;
}

/* ============================================
   Pagination
   ============================================ */
div.Sys_paging_list {
  padding: 5px 0 10px;
  text-align: center;
}

div.Sys_paging_list a,
div.Sys_paging_list strong {
  display: inline-block;
  width: 23px;
  height: 24px;
  margin-left: 4px;
  padding-top: 3px;
  border: 1px solid #afafaf;
  box-sizing: border-box;
  text-align: center;
  font-size: var(--font-size-small);
  line-height: 15px;
  vertical-align: top;
}

div.Sys_paging_list strong {
  background-color: #f4f4f4;
}

div.Sys_paging_list a img {
  width: 23px;
}

/* ============================================
   File Upload Components
   ============================================ */
._sys_file_checkbod,
._sys_file_addfilebod,
._sys_file_btndrop,
._sys_file_addcom,
._sys_file_btnfileup,
._sys_file_btnfiledown,
._sys_file_btnfiledel,
._sys_file_totaltxt,
._sys_file_addfile {
  display: inline-block;
  white-space: nowrap;
}

._sys_file_list {
  display: block;
  padding: 5px 0;
}

._sys_file_sing_body {
  padding-left: 0;
}

._sys_file_txt {
  padding-left: 3px;
}

._sys_file_alltxt {
  padding-left: 2px;
}

._sys_file_del {
  margin-left: 10px;
  cursor: pointer;
}

/* File Action Links */
._sys_file_addfilelink,
._sys_file_droplink,
._sys_file_btnfileuplink,
._sys_file_btnfiledownlink,
._sys_file_btnfiledellink,
._sys_file_alink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-accent-gray);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

._sys_file_addfilelink:hover,
._sys_file_droplink:hover,
._sys_file_btnfileuplink:hover,
._sys_file_btnfiledownlink:hover,
._sys_file_btnfiledellink:hover,
._sys_file_alink:hover {
  background-color: #5a6268;
  text-decoration: none;
}

._sys_file_addfilelink {
  background-color: var(--color-accent-green);
}

._sys_file_btnfileuplink,
._sys_file_btnfiledownlink,
._sys_file_btnfiledellink,
._sys_file_alink {
  background-color: var(--color-accent-dark-gray);
}

/* ============================================
   Sort Arrows
   ============================================ */
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.66;
}

th.active .arrow {
  opacity: 1;
}

.arrow.asc {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #590e0e;
}

.arrow.desc {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #590e0e;
}

.arrow.blank {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 1px solid #590e0e;
}

/* ============================================
   Utilities
   ============================================ */
.SYS__NoneBorder {
  border: none;
}

.SYS__NoneBorder > tbody > tr > td,
.SYS__NoneBorder > tbody > tr > th {
  border: none;
}

.sys_nowrap {
  white-space: nowrap;
}

.SYS_nestar {
  color: var(--color-accent-red);
}

.blind {
  position: absolute !important;
  left: -9999em;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-indent: -9999em;
  font-size: 0;
  line-height: 0;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

iframe {
  height: 100%;
  width: 100%;
  border: 0;
}

span[blank="true"] {
  user-select: none;
}

/* ============================================
   Layout
   ============================================ */
#content {
  padding: 100px 0 130px;
  background: var(--color-bg-white);
}

.section {
  margin: 0 auto;
}

.section:after {
  content: "";
  display: table;
  clear: both;
}

.section + .section {
  margin-top: 50px;
}

.section.form {
  width: 100%;
  padding: 45px 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  background: #f6f5f0;
}

.section.form .inner {
  width: 710px;
  margin: 0 auto;
}

/* ============================================
   Move Field
   ============================================ */
.moveField select {
  width: 180px;
  height: var(--button-height);
}

.moveField button {
  height: var(--button-height);
  line-height: normal;
  font-size: 14px !important;
  font-weight: bold !important;
  background-color: var(--color-accent-gray) !important;
}