/* Pretendard Font */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-style: normal;
    src: url('../font/Pretendard-Thin.woff2') format('woff2'),
         url('../font/Pretendard-Thin.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-style: normal;
    src: url('../font/Pretendard-ExtraLight.woff2') format('woff2'),
         url('../font/Pretendard-ExtraLight.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('../font/Pretendard-Light.woff2') format('woff2'),
         url('../font/Pretendard-Light.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    src: url('../font/Pretendard-Regular.woff2') format('woff2'),
         url('../font/Pretendard-Regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('../font/Pretendard-Medium.woff2') format('woff2'),
         url('../font/Pretendard-Medium.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    src: url('../font/Pretendard-SemiBold.woff2') format('woff2'),
         url('../font/Pretendard-SemiBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    src: url('../font/Pretendard-Bold.woff2') format('woff2'),
         url('../font/Pretendard-Bold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    src: url('../font/Pretendard-ExtraBold.woff2') format('woff2'),
         url('../font/Pretendard-ExtraBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    src: url('../font/Pretendard-Black.woff2') format('woff2'),
         url('../font/Pretendard-Black.woff') format('woff');
    font-display: swap;
}

/* Reset */
*{
  margin:0; padding:0; box-sizing:inherit;
}

a {
  text-decoration: none;
  color:inherit;
}

ul,li {
  list-style: none;
}

html{
  overflow: auto;
  font-size:62.5% !important;
  color:#222;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
	letter-spacing:-0.04em;
	box-sizing:border-box;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

img{max-width:100%; border-style: none;}

body {
  overflow: hidden;
  min-width:1600px;
  font-size:1.6rem;
  font-weight:400;
  background-color: #ebebeb;
}


button{
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table{
  border-collapse:collapse;
}

input,select,textarea{
  padding-left:10px;
  padding-right:10px;
  font-family:inherit;
  background-color:#fff;
  border:1px solid #e5e5e5;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
}

textarea{
  padding:10px;
}

select{
  padding-right:30px;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  background-size:10px auto;
  background-repeat:no-repeat;
  background-position:right 10px center;
}

select::-ms-expand{
  display:none;
}

input[type=number]{
  -moz-appearance:textfield;
}

input:-moz-read-only,textarea:-moz-read-only{
  background-color:#f8f8f8;
}

input:read-only,textarea:read-only{
  background-color:#f8f8f8;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  -webkit-appearance:none;margin:0;
}

input:not([readonly="readonly"]):not(:disabled):hover{
  border-color:#bbbbbb !important;
}

select:not(:disabled):hover{
  border-color:#bbbbbb !important;
}

textarea:not(:read-only):not(:disabled):hover{
  border-color:#bbbbbb !important;
}

input:not([readonly="readonly"]):not(:disabled):focus{
  border-color:#555555 !important;

}
select:not(:disabled):focus{
  border-color:#555555 !important;
}

textarea:not(:read-only):not(:disabled):focus{
  border-color:#555555 !important;
}

:focus{
  outline:none;
}

::placeholder{
  color:#bbbbbb;
}

:-ms-input-placeholder{
  color:#bbbbbb;
}

::-ms-input-placeholder{
  color:#bbbbbb;
}

/* ::selection{
  color: #fff !important;
  background-color:#55aa1c !important
} */

/* color */
.color-gray7 {
  color:#a7a7a7 !important;
}


/* Overflow */
.hidden {
  overflow: hidden;
}

/* Block */
.block {
  display: block;
}


/* Ellip */
.ellip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px,1px,1px,1px);
}


/* Text align */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  text-align: nowrap !important;
}

/* Display */
.d-flex {
  display: flex;
}

/* Flex Align Item */
.align-center {
  align-items: center;
}

/* Flex Justify Content*/
.justify-center {
  justify-content: center;
}


/* Button */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 15px;
  text-align:center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  font-weight:300;
  cursor: pointer;
}

/* Button */
.button2 {
    margin-left: 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 15px;
    text-align:center;
    border:1px solid transparent;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    font-weight:300;
    cursor: pointer;
}

.button--blue {
  color:#fff !important;
  background-color: #2999f3 !important;
}

.button--red {
  color:#fff !important;
  background-color: #ff0000 !important;
}

.button--darkblue {
  color:#fff !important;
  background-color: #466296 !important;
}

.button--gray {
  color:#f5f5f5 !important;
  background-color: #333 !important;
}

.button--gray7 {
  color:#f5f5f5 !important;
  background-color: #777 !important;
}

.button--add, .button--remove {
    color:#fff !important;
    background-color: #222 !important;
    height:40px;
    margin:0px 2px;
}

.button--addBtn {
    color:#fff !important;
    background-color: #ff9900 !important;
    height:40px;
    margin: 2px 2px 2px 0px;
}
.button--delBtn {
    color:#f5f5f5 !important;
    background-color: #777 !important;
    height:40px;
    margin: 2px 2px 2px 0px;
}

.button--add {
  margin:0px 2px 0px 4px;
}


/* Header */
#header {
  position: relative;
  z-index:99;
}

.header-inner {
  height:64px;
  background-color: #fff;
}

.header__logo {
  position: absolute;
  top:13px;
  left:15px;
}

.header__logo a{
  display:block;
  width:126px;
  height:40px;
  background-size:auto 38px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../img/header-logo.png');
}

.header__content {
  position: absolute;
  top:0px;
  right:0px;
  display:flex;
  align-items: center;
}

.header__menu li {
  position: relative;
  float: left;
  padding-left:10px;
}

.header__menu li.first {
  padding-left:0px;
}

.header__menu li a {
  font-size:1.6rem;
  line-height: 1;
  font-weight:400;
  color:#676767;
  display:block;
  width:160px;
  background-color: #d9d9d9;
  padding:12px 20px;
  text-align: center;
}

.header__btn {
  margin-left:8px;
}

.header__btn ul {
  display:block;
}

.header__btn li {
  background-color: #466296;
  width:64px;
  height:64px;
  float: left;
  margin-left:1px;
  transition:all ease .3s;
}

.header__btn li.first {
  margin-left:0px;
}

.header__btn .button {
  display:block;
  width:100%;
  height:100%;
  background-size: auto 24px;
  background-repeat: no-repeat;
  background-position: center;
}

.header__btn .home-button {
  background-image: url('../img/home-icon.png');
  width:100%;
  height:100%;
}

.header__btn .logout-button {
  background-image: url('../img/logout-icon.png');
  width:100%;
  height:100%;
  margin-left:4px;
}

.header-on-menu {
  position: absolute;
  left:305px;
  top:50%;
  -webkit-ransform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-on-menu li {
  position: relative;
  float: left;
}

.header-on-menu li a {
  font-size:1.6rem;
  line-height: 1;
  font-weight:400;
  color:#676767;
  display:block;
  width:160px;
  background-color: #d9d9d9;
  padding:12px 20px;
  text-align: center;
}

/* Wrap */
#Wrap {
  position: relative;
  width:100%;
  min-width: 1600px;
  /* display: inline-block; */
  display: block;
  /* font-size: 0;
  letter-spacing: 0;
  word-spacing: 0; */
}

#Wrap::before {
  content:"";
  display: block;
  position: absolute;
  top:0;
  left:0;
  width:280px;
  height:100%;
  background-color: #333745;
  box-shadow:1px 0px 6px 1px rgba(0,0,0,.2);
  z-index:1;
}


/* Lnb */
#Lnb {
  float:left;
  position: relative;
  width:280px;
  height:100%;
  z-index:10;
}

.lnb__title {
  width:100%;
  min-height:64px;
  background-color: #466296;
  display:flex;
  align-items: center;
  padding:0px 20px;
  cursor: pointer;
}

.lnb__title p {
  color:#ffffff;
  font-size:1.8rem;
  font-weight:400;
}

.lnb__sub {
  background-color: #1e3868;
  overflow: hidden;
  max-height:0px;
  transition: max-height .4s ease-in-out;
}

/* .lnb__sub.open {
  max-height:auto;
} */

.lnb-menu-ul > li.open .lnb__sub {
 /* max-height: 552px;*/
    max-height: 622px;
}

.lnb-sub-ul li {
  min-height:64px;
}

.lnb-sub-ul a {
  font-size:1.6rem;
  color:#ffffff;
  display: block;
  padding:25px 40px;
}


/* Container */
#Container {
  overflow: hidden;
  margin-left: 280px;
  min-height:1080px;
}

/* Contents */
#Contents {
  padding:40px 25px;
}

.contents-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contents-title h3 {
  font-size:2rem;
  font-weight:600;
  color:#3b3b3b;
}

.contents-title button {
  width:160px;
  font-size:1.6rem;
  font-weight:500;
  padding:10px 20px;
}

/* Board Grap */
.visitor-list {
  display: flex;
  border:1px solid #f7f7f7;
}

.visitor-list li {
  flex:1 1 33.33%;
  max-width:33.33%;
  background-color: #fdfdfd;
  border-right:1px solid #f7f7f7;
}

.visitor-list li:last-child {
  border:0px;
}

.visitor-list .visitor-card {
  padding:10px;
}

.visitor-list p {
  font-size:1.6rem;
  color:#434343;
}

.visitor-list p.visitor-data {
  font-size:2.4rem;
  font-weight:600;
  color:#000000;
  margin-top:6px;
}


/* Board Basic Common */
.contentArea {
  margin-top:40px;
}

.contentArea.first {
  margin-top:0px;
}

/* Board Basic */
.contain-data__table {
 margin-top:12px;
 overflow: hidden;
}

.contain-data__table.first {
  margin-top:20px;
}

.contain-data__table .data-basic-table {
}

.contain-data__table .data-basic-table2 {
  display: flex;
}

.contain-data__table .table-inner {
  padding:0px 30px;
  background-color: #fff;
}

.contain-data__table .data-basic-table2 .table-inner {
  flex:1 1;
}

.contain-data__table h5 {
  font-weight:600;
  font-size:1.8rem;
  color:#444444;
  display:flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding:20px 0px;
  border-bottom:1px solid #cfcfcf;
}

.contain-data__table h5 .more-btn {
  display: block;
  background-size:auto;
  background-repeat:no-repeat;
  background-position: center;
  background-image: url('../img/more-btn.png');
  width:33px;
  height:20px;
}

.contain-data__table h5.h5-style2 {
  padding:10px 0px;
}

.contain-data__table .grap-item,
.contain-data__table .visitor-item {
  padding:20px 0px;
}

.contain-data__table table {
  table-layout: fixed;
  border-collapse: separate;
  padding:20px 0px;
}

.contain-data__table thead {
  background-color: #747474;
}

.contain-data__table thead td {
  font-size:1.6rem;
  text-align: center;
  color:#ffffff;
  padding:10px;
  line-height:1;
}

.contain-data__table tbody  {
  display:table-row-group;
}

.contain-data__table tbody td {
  font-size:1.6rem;
  text-align: center;
  color:#434343;
  padding:10px;
  line-height:1;
}

.contain-data__table tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}

.notice_color {
    background-color: #dad55e !important;
}

.contain-data__table tbody a {
  display: block;
}

.contain-data__table .table-search {
  position: relative;
  padding:3px;
  border:1px solid #cfcfcf;
  height:42px;
  display:flex;
  align-items: center;
}

.contain-data__table .table-search input {
  border:0px;
  height:33px;
}

.contain-data__table .table-search .button {
  max-width:56px;
  background-color: #747474;
  color:#fff;
  font-size:1.6rem;
  padding:6px 15px;
}

.contain-data__table .table-data-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
  margin-bottom:10px;
}

.contain-data__table .table-data-text .left p {
  font-size: 1.6rem;
  color:#4d4d4d;
  font-weight:400;
}

.contain-data__table .table-data-text .left span {
  font-weight:600;
}

.contain-data__table .table-data-text .right {
  display: flex;
  align-items: center;
}

.contain-data__table .table-data-text .right select {
  width: 160px;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}

.contain-data__table .table-data-text .right button {
  width:160px;
  padding:6px 15px;
  height:40px;
  display:block;
  margin-left: 8px;
  font-size:1.8rem;
  font-weight:500;
  color:#ffffff;
}

.contain-data__table .table-data-search {
  margin-bottom:40px;
}

.contain-data__table .search-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}

.contain-data__table .search-table .row {
  display: table-row;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 1px solid #fff;
}

.contain-data__table .search-table .th {
  display: table-cell;
  vertical-align: middle;
  padding: 16px 30px;
  width: 280px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #6b95e3;
  font-weight: 500;
  word-break: keep-all;
  text-align: center;
}

.contain-data__table .search-table .td {
  display: table-cell;
  vertical-align: middle;
  padding: 6px 20px;
  height: 54px;
  font-size: 1.6rem;
  color: #555555;
  background-color: #f6f6f6;
}

.contain-data__table .search-table select {
  width:160px;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}

.contain-data__table .search-table input {
  max-width: 454px;
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}

.contain-data__table .search-table .search-select {
  max-width:160px;
  width:100%;
  margin-right:10px;
}

.contain-data__table .search-table .search-calendar {
  display:flex;
  align-items: center;
  justify-content: center;
  max-width:580px;
  width:100%;
}

.contain-data__table .search-table .calendar-day {
  width:46%;
  display:flex;
  align-items: center;
}

.contain-data__table .search-table .calendar-day .calendar-button {
  background-size:auto;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../img/calendar-icon.png');
  width:22px;
  height:24px;
  margin-left:8px;
}

.contain-data__table .search-table .search-calendar span {
  width:8%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size:1.6rem;
}

.contain-data__table .search-table .search-input {
  max-width:500px;
  width:100%;
}

.contain-data__table .search-table .search-input input {
  max-width:none;
}

.contain-data__table .search-table .search-buttons {
  display:flex;
  align-items:center;
}

.contain-data__table .search-table .search-buttons button {
  margin-left:10px;
}

.contain-data__table .search-table .search-button {
  width:160px;
  padding:6px 15px;
  height:40px;
  font-size:1.8rem;
  font-weight:500;
  color:#fff;
  background-color: #466296;
  display:block;
}

.contain-data__table .search-table .reset-button {
  display: block;
  padding:0px;
  width:40px;
  height:40px;
  background-color: #494949;
  background-image: url('../img/reset-icon.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}


/* Board Style2 */
.contain-data__table-style2 {
  display: flex;
  margin:12px -6px 0px;
}

.contain-data__table-style2 .data-basic-table {
  flex:1 1;
  padding:0px 6px;
}


/* Board Style3 */
.contain-data__table-style3 {
 margin-top:20px;
 overflow: hidden;
}

.contain-data__table-style3 .table-inner {
  padding:20px 30px;
  background-color: #fff;
}

.contain-data__table-style3 table {
  table-layout: fixed;
  border-collapse: separate;
  padding:0px;
}

.contain-data__table-style3 thead {
  background-color: #6b95e3;
}

.contain-data__table-style3 thead td {
  font-size:1.6rem;
  text-align: center;
  color:#ffffff;
  padding:10px;
  line-height:1;
  height:54px;
}

.contain-data__table-style3 tbody  {
  display:table-row-group;
}

.contain-data__table-style3 tbody td {
  font-size:1.6rem;
  text-align: center;
  color:#434343;
  padding:10px;
  line-height:1;
  height:54px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #fff;
}

.contain-data__table-style3 select {
  height:28px;
  box-sizing: border-box;
  margin-right:4px;
  padding:0px 8px;
  margin:0px;
  width:90px;
  background:url('../img/select-arrow.png') no-repeat right 9px center;
  background-color: #fff;
}

.contain-data__table-style3 .button {
  padding:6px 12px;
  background-color:#466296;
  color:#fff;
  font-size:1.4rem;
  line-height:1;
  font-weight:500;
  margin-left:4px;
}

/* Pagination */
.pagination {
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.pagination a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 4px;
  width:25px;
  height:25px;
  text-align:center;
  font-size:1.6rem;
  font-weight:400;
  background-repeat:no-repeat;
  background-position:center;
  color:#999;
  background-color:#fff;
  -webkit-transition:all ease-out .15s;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination .current {
  color:#222;
  font-weight:700;
}



/* Form */
.contain-form__table {
  margin-top:20px;
  background-color: #fff;
}

.contain-form__table form {
  padding: 20px 30px;
}

.form-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}

.form-table .row {
  display: table-row;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 1px solid #fff;
}

.form-table .cell {
  display: table-cell;
  margin-right: 0;
  margin-left: 0;
  border-bottom: 1px solid #fff;
}

.form-table .th {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px;
  width: 280px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  word-break: keep-all;
  background-color: #6b95e3;
  text-align:center;
}

.form-table .th p {
  font-size:1.2rem;
  margin-top: 6px;
  color:#f7f7f7;
}

.form-table .td {
  display: table-cell;
  vertical-align: middle;
  padding: 6px 20px;
  height: 54px;
  font-size: 1.6rem;
  color: #000000;
  background-color: #f6f6f6;
}


.form-table .td input:not(.checkbox)
{
  max-width: 454px;
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}



.form-table .td input[type="checkbox"]:not{
  max-width: 454px;
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}
.form-table .td select {
  max-width: 454px;
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}

.form-table .td select {
  background:url('../img/select-arrow.png') no-repeat right 9px center;
  background-color: #fff;
}

.form-table .td  textarea {
  width:100%;
  height:200px;
  resize:none;
}

.form-table .td.td-full input {
  max-width:none !important;
}

.form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:30px;
}

.form-button .button {
  width:188px;
  color:#fff;
  font-size:1.8rem;
  font-weight:500;
  margin:0px 4px;
}

.form-table .file2 {
  margin-top:10px;
}

.form-table .filebox {
 display: flex;
 align-items: center;
 position: relative;
 margin-bottom:10px;
}

.form-table .file3 .filebox {
  margin-bottom:0px;
}

.form-table .filebox .upload-name {
  display: inline-block;
  height: 40px;
  padding: 0 10px;
  vertical-align: middle;
  border: 1px solid #dddddd;
  width: 73%;
  color: #999999;
}

.form-table .filebox label {
  width:140px;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  vertical-align: middle;
  background-color: #466296;
  cursor: pointer;
  height: 40px;
  font-size:1.8rem;
  font-weight:500;
  text-align: center;
}

.form-table .filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  font-size:0px;
  right:0;
  z-index:-1;
}

.form-table .filebox span {
  font-size:1.6rem;
  color:#555;
  display:block;
  padding-left:10px;
}

.form-table .file-thumb {
  width:240px;
  height:120px;
  overflow: hidden;
  position: relative;
}

.form-table .file-thumb img {
  max-width: none;
  width:100%;
  height:100%;
  background-color: #9e9e9e;
  display:block;
}


/* Form Style2 */
.contain-form__table-style2 {
  margin-top:20px;
  background-color: #fff;
}

.contain-form__table-style2 form {
  padding: 20px 30px;
}

.contain-form__table-style2 .checkbox {
  /*display: flex;*/
  align-items: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  margin-left:10px;
}

.contain-form__table-style2 .checkbox input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.contain-form__table-style2 .checkbox i {
  display: inline-block;
  margin-right: 8px;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-image: url('../img/check-icon.png');
}

.contain-form__table-style2 .checkbox input:checked ~ i {
  background-image: url('../img/check-icon-on.png');
}

.contain-form__table-style2 .checkbox span {
  font-size:1.4rem;
  color:#4d4d4d;
}

.contain-form__table-style2 .td-check input {
  max-width:180px;
}


/* Agreement */
.contain-agreement__table {
  margin-top:20px;
}

.contain-agreement__table .agreement-basic-table {
  background-color: #fff;
  padding:20px 30px;
}

.contain-agreement__table .agreement-tabs {
  display: flex;
  justify-content: center;
  max-width:400px;
  width:100%;
  margin:0 auto 20px;
}

.contain-agreement__table .agreement-tabs button {
  border:1px solid #bcbcbc;
  width:200px;
  margin-left:-1px;
  font-size:1.8rem;
  font-weight:500;
  color:#303030;
}

.contain-agreement__table .agreement-tabs li.on button {
  background-color: #f7f7f7;
}

.agreement-editor {
  width:100%;
  height:500px;
  border:1px solid #cfcfcf;
  display:flex;
  align-items:center;
  justify-content:center;
}

.agreement-editor > * {
}

.wrap-loading{ /*화면 전체를 어둡게 합니다.*/
  position: fixed;
  left:0;
  right:0;
  top:0;
  bottom:0;
  background: rgba(0,0,0,0.2); /*not in ie */
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr='#20000000', endColorstr='#20000000');    /* ie */

}

.wrap-loading div{ /*로딩 이미지*/
  position: fixed;
  top:50%;
  left:50%;
  margin-left: -21px;
  margin-top: -21px;

}

.display-none{ /*감추기*/
  display:none;
}

.form-table .td.td-half input {
   /* max-width:none !important; */
 }
.form-table .td input[type="checkbox"] {
  /* max-width: 454px; */
  /*width: 100%;*/
  /* height: 40px; */
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
}

.form-table .td input[type="radio"] {
  /*max-width: 154px;
  height: 40px;*/
  font-size: 1.6rem;
  background-color: #fff;
  border: 1px solid #bcbcbc;
  max-width: 100px;
  width: auto;
  height: auto;
  margin-left: 3px;
  margin-right: 10px;
}
.checkbox2{
  display: inline;
}
.check-label{
  display: inline;
  max-width: 10px;
}
.td .td-half .checkbox{
 width: 30px;
}
.noti-chk{
  max-width: 454px;
  width: auto;
}

/* Button */
.button2 {
    margin-left: 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 15px;
    text-align:center;
    border:1px solid transparent;
    -webkit-transition: all ease .3s;
    transition: all ease .3s;
    font-weight:300;
    cursor: pointer;
}

#feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
#selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
.td-full .ul_list{
    height: 300px;
    line-height: 1.8;
    margin: 0;
    border: 2px grey solid;
    overflow: scroll;
    margin-bottom: 10px;
}
.td-full .ul_list .li_item{
    border-bottom: 1px dimgray solid;
    padding-inline-start: 1.5em;
}
.contain-data__table-style4 {
    margin-top:20px;
    overflow: hidden;
    background: grey;
}
.contain-data__table-style4 .table-inner{
    padding: 20px 0px;
    background-color: #fff;
}

.popup_bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.popup {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: #ccc;
}
.close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px;
}
.add_div2 ul{
    margin-top:10px;
    width: 100px;

}
.add_div2 li{
    margin-top:3px;
    text-indent: 10px;
    line-height:30px;
    height: 30px;

}.add_div2 li button{
     color: red;

 }


/* 추가퍼블 */
.form-table .td .rl {
	position: relative;
}

.form-table .td .rl-w100 {
	max-width:100%;
	width:100%;
}

.form-table .td .rl-w454 {
	max-width: 454px;
	width:100%;
}

.form-table .td .ui-datepicker-trigger {
	position: absolute;
	top:50%;
	right:10px;
	transform: translateY(-50%);
}

.calendar-form .ui-datepicker-trigger {
  position: unset !important;
  transform: translateY(17%) !important;
}