@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jua&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&family=Jua&family=Orbit&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/*reset*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  vertical-align: baseline;
  background: transparent;
  color: #222;
  font-style: normal;
  line-height: 1.35em;
  letter-spacing: -0.5px;
  font-weight: 500;
}

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 216, 216, 0.98) transparent;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  padding: 0;
  background-color: #fff;
  overflow: auto;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #222;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #dddddd;
  margin: 1em 0;
  padding: 0;
}

input::placeholder {
  color: #817a7a;
  font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: bold;
}

br {
  font-size: 0;
  line-height: 0;
}

img {
  vertical-align: top;
}

.color_blue {
  color: blue;
}

/*layout*/

.loginwrap {
  width: 100%;
  background: #fafcff;
  height: 100vh;
}

.wrap {
  width: 100%;
  background: #fff;
  min-height: 100vh;
}

.navbar a {
  color: #7ea4cc;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #05386d;
  padding: 0 12px;
}

.navbar__menu {
  list-style: none;
  display: flex;
  margin: 0 auto;
  padding-left: 0;
}

.navbar__menu li {
  padding: 25px 30px;
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
  border-bottom: 2px solid #05386d;
  /*list-style: none;*/
}

.navbar__menu li a:hover {
  color: #fff;
}

.fon a {
  color: #fff;
}

.mognb {
  display: none;
}

.subbtn01 {
  padding: 11px 34px;
  background: linear-gradient(103deg, rgba(255, 75, 43, 0.81) 0%, rgb(255 40 36 / 83%) 35%);
  color: #fff;
  font-size: 20px;
  border-radius: 6px;
  align-content: end;
  font-family: "Jua", sans-serif;
  font-weight: 400;
}

/*반응형*/

@media screen and (max-width: 768px) {
  .navbar {
    display: none;
  }

  header {
    background: linear-gradient(142deg,rgba(5, 56, 109, 0.78) 0%, rgba(0, 8, 15, 0.89) 100%);
    height: 50px;
    display: flex;
    justify-content: space-between;
    line-height: 70px;
    padding: 0 20px;
    border-radius: 50px;
    font-family: "Jua", sans-serif;
    font-weight: 400;
  }

  .mognb {
    display: block;
    width: 100%;
    align-content: center;
  }

  .mognb h1 {
    text-align: center;
  }

  .mognb .logo {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 0;
  }

  .mognb .mBtn a {
    float: right;
    margin-top: -35px;
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url('../img/menu.png') no-repeat;
  }

  .mognb .mNav {
    z-index: 2;
    position: fixed;
    background-color: #05386d;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    transition: all 0.3s ease;
  }

  .mognb .mNav.on {
    right: 0;
  }

  .mognb .bg-shadow {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    cursor: pointer;
  }

  .mognb .sub {
    position: relative;
    padding-top: 30px;
  }

  .mognb .closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
  }

  .mognb .closeBtn a {
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url('../img/close.png') no-repeat;
    margin-top: 15px;
    margin-right: 20px;
  }

  .mognb .sub li:nth-child(2) {
    margin-top: 20px;
  }

  .mognb .sub li a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #0f4b88;
  }

  .mognb .sub li a:hover {
    background: rgb(41, 122, 199);
  }
}


/*login - 첫 로그인*/
.loginpage {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logintitle {
  width: 100%;
  text-align: center;
  padding: 0px 0px 0;
}

.logintitle h1 {
  margin-bottom: 40px;
}

.logintitle p.btitle {
  font-size: 25px;
  line-height: 34px;
  margin-bottom: 15px;
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1.1px;
  color: #434242;
}

.logintitle p.stitle {
  font-size: 24px;
  font-weight: bold;
}

.loginsection {
  text-align: center;
}

.loginsection .login p label {
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  width: 334px;
  display: inline-block;
}

.loginsection .login p input {
  background-color: #eee;
  border: none;
  padding: 21px 15px;
  margin: 8px 0;
  width: 95%;
  height: 62px;
  border-radius: 0px;
}

.loginsection .login p.txtadd {
  font-weight: normal;
  color: #767676;
  margin: 5px 0 15px 0;
  font-size: 14px;
}

.loginsection a.loginbtn {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  width: 212px;
  background: #FF4B2B;
  border-radius: 50px;
  border: 1px solid #FF4B2B;
  padding: 25px 0;
  color: #fff;
  font-weight: bold;
  margin: 38px;
  font-size: 19px;
}

.loginsection .btn3 {
  margin: 23px 0 15px;
}

.loginsection .btn3 a {
  color: #fff;
  font-size: 13px;
}

.loginsection .btn3 a.btnguide {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #FF4B2B;
  background-color: #FF4B2B;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 28px;
  margin-right:16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}

.loginsection .btn3 a.btnvideo {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #ff6b35;
  background-color: #ff6b35;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 33px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}

.loginsection .btn3 a.btnregister {
  display: inline-block;
  background: #96a1a7;
  padding: 5px 10px;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #bdbdbd;
  font-weight: bold;
  letter-spacing: 0px;
}

/*login02 - 사용자등록하기 화면가기 전 로그인*/

.loginbox {
  width: 300px;
  text-align: right;
}

.loginbox p {
  font-weight: bold;
  margin-bottom: 10px;
}

.loginbox input {
  background: #fff;
  height: 22px;
  width: 200px;
  margin-left: 5px;
  padding: 5px;
}

p.caution {
  font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: #ff0000;
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.loginbox_btn2 {
  text-align: center;
  margin-top: 25px;
}

.loginbox_btn2 a {
  display: inline-block;
}

.loginbox_btn2 a.backbtn {
  border: 1px solid #ddd;
  color: #666;
  padding: 10px 20px;
  background: #fff;
}

.loginbox_btn2 a.okbtn {
  border: 1px solid #225ce3;
  background: #225ce3;
  color: #fff;
  padding: 10px 20px;
}

/*page_userregister*/

.page_userregister {
  width: 100%;
}

.page_userregister .subtitle {
  width: 100%;
  background: #e6ebee;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 16px;
}

.page_userregister .urstep01 {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 5px;
}

.page_userregister .urstep01 p.srs01_title {
  background: #848d95;
  color: #fff;
  padding: 15px 10px 15px 10px;
  font-weight: bold;
}

.page_userregister .urstep01 .userid_search {
  background: #fff;
  padding: 15px 10px;
}

.page_userregister .urstep01 .userid_search input {
  padding: 5px;
}

.page_userregister .urstep01 .userid_table table {
  border: 1px solid #c8ccd0;
  width: 100%;
  text-align: center;
  border-bottom: none;
}

.page_userregister .urstep01 .userid_table table thead tr th {
  padding: 10px;
  background: #e4ecfc;
  border-bottom: 1px solid #c8ccd0;
  border-right: 1px solid #c8ccd0;
}

.page_userregister .urstep01 .userid_table table thead tr th:nth-child(4) {
  border-right: none;
}

.page_userregister .urstep01 .userid_table table tbody tr td {
  padding: 10px;
  border-bottom: 1px solid #c8ccd0;
  border-right: 1px solid #c8ccd0;
  padding: 5px;
}

.page_userregister .urstep01 .userid_table table tbody tr td:nth-child(4) {
  border-right: none;
}

.page_userregister .urstep01 .userid_table table tbody tr td a {
  display: inline-block;
  border: 1px solid #225ce3;
  padding: 7px 15px;
  color: #225ce3;
  background: #f8faff;
  font-weight: bold;
}

.page_userregister .urstep02 {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 5px;
}

.page_userregister .urstep02 p.srs02_title {
  background: #848d95;
  color: #fff;
  padding: 15px 10px 15px 10px;
  font-weight: bold;
}

.page_userregister .urstep02 .suserid_table {
  margin-top: 10px;
}

.page_userregister .urstep02 .suserid_table table {
  border: 1px solid #c8ccd0;
  width: 100%;
  text-align: center;
  border-bottom: none;
}

.page_userregister .urstep02 .suserid_table table tr th {
  background: #fcfce4;
  width: 20%;
  border-right: 1px solid #c8ccd0;
  border-bottom: 1px solid #c8ccd0;
  padding: 7px;
}

.page_userregister .urstep02 .suserid_table table tr td {
  width: 80%;
  text-align: left;
  padding: 7px;
  border-bottom: 1px solid #c8ccd0;
}

.page_userregister .urstep02 .suserid_table table tr td input {
  width: 50%;
  border: 1px solid #ddd;
  padding: 5px;
}

.page_userregister .urstep03 {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 5px;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 20px;
}

.page_userregister .urstep03 p.srs03_title {
  background: #848d95;
  color: #fff;
  padding: 15px 10px 15px 10px;
  font-weight: bold;
}

.page_userregister .urstep03 .scashbook_date {
  margin-top: 15px;
}

.page_userregister .urstep03 .scashbook_date input {
  width: 30%;
  padding: 10px;
}

.page_userregister .registerss {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding-bottom: 25px;
}

.cashbookpage .receipt_time {
  vertical-align: middle;
}

.cashbookpage .receipt_time span {
  font-weight: bold;
  display: inline-block;
  width: 80px;
}

.cashbookpage .receipt_time .receipts {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.cashbookpage .receipt_time .receipts a:hover, .cashbookpage .receipt_time .receipts a:focus {
  text-decoration: underline;
}

.cashbookpage .receipt_time .rstime {
  float: left;
  margin-left: 16px;
}

.cashbookpage .receipt_time .rstime input {
  padding: 7px 8px;
  width: 100px;
  margin-top: -7px;
}

.cashbookpage .paymentway {
  padding: 15px 0 5px 0;
}

.cashbookpage .paymentway span {
  font-weight: bold;
  display: inline-block;
  width: 60px;
  margin-bottom: 5px;
}

.cashbookpage .paymentway p {
  background: #efeff0;
  padding: 15px;
}

.cashbookpage .paymentway p label {
  margin-right: 5px;
}

.cashbookpage .paymentway p span.br {
  display: none;
}

.cashbookpage .paymentway p span.nbr {
  display: none;
}
.inputTitle {
  font-size:12px;
  font-weight: 500;
}

.clTable,
.clTable1 {
  padding-top: 3px;
  width: 100%;
}

.month-year-picker {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 5px 0;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.month-year-picker label {
  margin-bottom: 10px;
  font-size: 18px;
}
.month-year-picker input {
  font-size: 21px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 65%;
  color: #fff;
  background: linear-gradient(103deg, rgb(94 112 153 / 63%) 0%, rgb(0 14 87 / 55%) 35%);
  text-align: center;
  font-family: "Jua", sans-serif;
  font-weight: 400;
}

.daliyprecon_table1 th, .daliyprecon_table1 td {
  padding: 8px;
  text-align: center;
  align-content: center;
}

.daliyprecon_table1 th {
  background-color: #e1e8ff;
}

.uploadName {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: end;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .cashbookpage .paymentway p span.br {
    display: block;
  }

  .cashbookpage .paymentway p span.nbr {
    display: inline-block;
    width: 8px;
  }
}

.cashbookpage .cashbook_detail .cdtitlebox {
  margin-bottom: 10px;
  background: yellow;
}

.cashbookpage .cashbook_detail .cdtitlebox span {
  font-weight: bold;
}

.cashbookpage .cashbook_detail .cdtitlebox p.cdtitle {
  float: left;
}

.cashbookpage .cashbook_detail .cdtitlebox p.cdtotal {
  float: right;
}

.cashbookpage .cashbook_detail .cdtitlebox p.cdtotal span {
  margin-right: 5px;
  font-weight: normal;
}

.cashbookpage .cashbook_detail .cdtitlebox p.cdtotal input {
  padding: 7px 8px;
  width: 130px;
  margin-top: -6px;
}

.clTable th,
.clTable1 th{
  align-content: center;
}

.cashbookpage .cashbook_detail .cdtable .cdtable_section table {
  width: 100%;
  padding: 5px;
}

.cashbookpage .cashbook_detail .cdtable .cdtable_section table tr th {
  vertical-align: middle;
  width: 20%;
}

.idTbody{
  background: #fff;
}

.idTbody td {
  padding: 5px 5px 5px 5px !important;
}

.cashbookpage .cashbook_detail .cdtable .cdtable_section table tr td {
  vertical-align: middle;
  width: 43%;
  border: 1px solid #f7f9fa;
  padding: 5px 5px 0px 5px;
}

.cashbookpage .cashbook_detail .cdtable .cdtable_section table tr td input[type="text"] {
  padding: 5px 0;
  background: #fff;
  width: 100%;
  text-indent: 10px;
}

.cashbookpage .cashbook_detail .cdtable_section_addbtn {
  padding-top: 10px;
  text-align: right;
}

.filebox input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip:rect(0,0,0,0);
  border: 0;
}

.filebox label {
  display: inline-block;
  padding: .5em .75em;
  color: #225ce3;
  font-size: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #f8faff;
  cursor: pointer;
  border: 1px solid #225ce3;
  border-bottom-color: #225ce3;
  border-radius: .25em;
  align-content: center;
}

/* named upload */
.filebox .upload-name {
  display: inline-block;
  padding: .5em .75em;  /* label의 패딩값과 일치 */
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  vertical-align: middle;
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-bottom-color: #e2e2e2;
  border-radius: .25em;
  -webkit-appearance: none; /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
  width: 51%;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #adc1ef;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  top: -23px;
  left: -123px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tooltip .tooltiptext2 {
  visibility: hidden;
  width: 200px;
  background-color: #adc1ef;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: -77px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tooltip .tooltiptext3 {
  visibility: hidden;
  width: 160px;
  background-color: #adc1ef;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  top: -73px;
  left: -70px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.tooltip:hover .tooltiptext,
.tooltip:hover .tooltiptext2,
.tooltip:hover .tooltiptext3{
  visibility: visible;
}

.info-icon {
  cursor: pointer;
  color: #0f8ceb;
  position: absolute;
  bottom: -19px;
  right: 23px;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 10px;
}

.info-icon2 {
  cursor: pointer;
  color: #0f8ceb;
  position: absolute;
  bottom: -1px;
  right: -13px;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
}

.info-icon3 {
  cursor: pointer;
  color: #0f8ceb;
  position: absolute;
  bottom: -1px;
  right: -13px;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-radius: 50%;
  font-size: 10px;
  text-align: center;
}

.swal2-title{
  font-weight: 400 !important;
}

.cycbuypage {
  max-width: 1200px;
}

.cycbuypage span.fcb {
  color: #225ce3;
}

.cycbuypage .cycbuyinfo {
  padding: 10px 0;
  text-align: center;
  background: #f3fcff;
  color: #225ce3;
  font-weight: bold;
}

.cycbuypage .cycbuyinfo i {
  color: #225ce3;
}

.cycbuypage .cycbuypage_detail .cbuytitlebox p {
  font-weight: bold;
}

.cycbuypage .cycbuypage_detail .cbuytitlebox p span {
  font-weight: normal;
}

.cycbuypage .cycbuypage_detail .cbuytable {
  padding: 10px 0;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section {
  background: #f7f9fa;
  border: 1px solid #ddd;
  padding: 10px 0 5px 0;
  margin-bottom: 10px;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table {
  width: 100%;
  padding-bottom: 5px;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr th {
  vertical-align: middle;
  width: 13%;
  border-bottom: 1px solid #f7f9fa;
  text-align: left;
  padding-left: 10px;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td {
  vertical-align: middle;
  width: 29%;
  border: 1px solid #f7f9fa;
  padding: 5px 5px 0px 0px;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td input[type="text"] {
  padding: 5px 0;
  background: #fff;
  width: 100%;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td select {
  background: #fff;
  width: 50%;
  padding: 5px 0;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td.box3input {
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td.box3input input {
  width: 46%;
  padding: 6px 0;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section table tr td.box3input select {
  width: 47%;
  float: right;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section p.cbuytable_section_delbtn {
  text-align: right;
  padding: 5px;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section p.cbuytable_section_delbtn a {
  display: inline-block;
  background: #bb0000;
  padding: 5px 10px;
  color: #fff;
}

.cycbuypage .cycbuypage_detail .cbuytable .cbuytable_section_addbtn {
  padding: 10px 0;
  text-align: right;
}

.cycbuypage .cycbuypage_detail .cbuytable_section_addbtn a {
  display: inline-block;
  background: #606e89;
  padding: 5px 10px;
  color: #fff;
}

.cycbuypage .cycbuypage_btn {
  text-align: center;
  margin: 10px 0;
}

/*preconpage*/

.preconpage {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 5px;
}

.preconpage .preconpage_title {
  background: linear-gradient(304deg, rgb(30 52 117 / 63%) 0%, #d3dbed 35%);
  padding: 6px 10px;
  border-top: 1px solid #d0e7ff;
  border-bottom: 1px solid #c6d4e3;
  font-family: "Jua", sans-serif;
  font-weight: 400;
  border-radius: 6px;
}

.preconpage .preconpage_title span {
  font-size: 19px;
}

.preconpage .preconpage_title span.pcptotalnum {
  float: right;
}

.preconpage .preconpage_title span.pcptotalnum b {
  font-size: 18px;
}

.preconpage .daliyprecon {
  margin-top: 16px;
  vertical-align: middle;
}

.preconpage .daliyprecon p.daliyprecon_title {
  font-size: 18px;
  font-family: "Jua", sans-serif;
  font-weight: 400;
  letter-spacing: -1px;
}

.preconpage .daliyprecon table {
  width: 100%;
  margin-top: 10px;
  border-bottom: none;
  border-top: 2px solid #444;
}

.preconpage .daliyprecon table tr th {
  background: linear-gradient(178deg, rgb(223 235 255 / 78%) 0%, rgb(232 218 255 / 57%) 100%);
  padding: 5px 0;
  border-bottom: 1px solid #372f619e;
  font-weight: 600;
}

.preconpage .daliyprecon table tr th:last-child {
  border-right: none;
}

.preconpage .daliyprecon table tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 5px;
  border-bottom: 1px solid #ededed;
  border-right: 1px solid #e5e5f7;
}

.preconpage .daliyprecon table tr td:last-child {
  border-right: none;
}

.preconpage .daliyprecon table tr td a {
  color: #3262d1;
}

/*page_notice*/

.page_notice {
  width: 100%;
}

.page_notice .subtitle {
  width: 100%;
  background: #e6ebee;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 16px;
}

.page_notice .noticesection {
  max-width: 1200px;
  margin: 10px auto 0 auto;
  padding: 5px;
}

.page_notice .noticesection .notice {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 1%;
  background: linear-gradient(142deg, rgba(237, 244, 255, 0.78) 0%, rgb(248 225 255 / 57%) 100%);
}

/*masterpage*/

.masterpage {
  max-width: 1200px;
  margin: 10px auto 0 auto;
  padding: 5px;
}

.masterpage .mptop {
  padding: 10px 0;
  font-size: 15px;
  font-weight: bold;
}

.masterpage .mptop p.mptsearch select {
  padding: 5px 10px;
  margin-top: -0px;
  margin-right: 10px;
}

.masterpage .mptop p.mptdownbtn {
  float: right;
  margin-top: 10px;
}

.masterpage .mptop a {
  display: inline-block;
  padding: 5px 15px;
  background: #225ce3;
  color: #fff;
  border: 1px solid #225ce3;
}

.masterpage .mptable {
  clear: both;
  margin-top: 20px;
}

.masterpage .mptable table {
  width: 100%;
  margin-top: 10px;
  border-bottom: none;
  border-top: 2px solid #444;
}

.masterpage .mptable table tr th {
  background: #f7f7f7;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.masterpage .mptable table tr th:last-child {
  border-right: none;
}

.masterpage .mptable table tr td {
  vertical-align: middle;
  text-align: center;
  padding: 10px 5px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.masterpage .mptable table tr td:last-child {
  border-right: none;
}

/* page-loading */
#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  opacity: 0.6;
  background: #e4e4e4;
  z-index: 99;
  text-align: center;
}

#loading > img {
  vertical-align: middle;
  width: 20%;
}

#loading p {
  top: 50%;
  left: 50%;
  position: absolute;
  display: block;
  white-space: nowrap;
  transform: translate(-50%, 100%);
  color: #bb0000;
  font-weight: bold;
}

#loading::after {
  display: inline-block;
  height: 100%;
  content: "";
  vertical-align: middle;
}

.total {
  float: right;
  padding: 10px 10px 5px 0;
}

/* 현재 선택된 검색어 */
.autocomplete > div.active {
  background: #e0e5f6;
  color: #000;
  border-radius: 4px;
}

/* -------------------------- */

.autocomplete > div {
  background: #f1f3f499;
  padding: .4rem .7rem;
  width: 100%;
  margin-top: 2px;
}

mark-auto {
  background: #febf0090;
  padding: 2px 0;
}

.notice p{
  padding-bottom: 20px;
}

textarea {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  color: #222;
}

/* ── 가계부 입력 화면 ── */
.container {
  max-width: 460px;
  margin: 0 auto;
  padding: 16px 4px 40px;
}

.cashbookpage {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 10px;
  padding: 5px
}

.color_red { color: #e05050; }
.color_blue { color: #2d7dd2; }

.col2 {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.col2 > div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.col2 > div > span {
  white-space: nowrap;
  font-size: 13px;
  min-width: 54px;
  flex-shrink: 0;
  font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"] {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  font-family: 'Noto Sans KR', sans-serif;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
}

select {
  width: 100%;
  height: 38px;
  padding: 0 8px;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  background: #fff;
  outline: none;
  cursor: pointer;
}

.note {
  padding-top: 5px;
  padding-left: 45px;
  font-size: 11px;
  color: #e05050;
  margin-top: 4px;
  font-weight: bold;
}

/* ── 상점명 행 ── */
.buyshopname {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.buyshopname > span {
  white-space: nowrap;
  font-size: 13px;
  min-width: 54px;
  flex-shrink: 0;
  font-weight: bold;
}

.buyshopname > div {
  flex: 1;
  position: relative;
}

.buyshopnamedesc {
  flex: 1;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.autocomplete {
  position: absolute;
  z-index: 99;
  width: 90%;
  background: #fff;
  border-radius: 8px;
  top: 100%;
  left: 0;
}

/* ── 영수증 타입 ── */
.receiptType {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.receiptType > span {
  font-size: 13px;
  white-space: nowrap;
  min-width: 66px;
  flex-shrink: 0;
}

.receiptType label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d8dde5;
  background: #f1f6ff;
  color: #4a6fa5;
  font-size: 13px;
  cursor: pointer;
  gap: 6px;
  transition: all 0.15s;
}

.receiptType label span {
  color: #777272;
}

.receiptType label:has(input:checked) span {
  color: #fff;
}

.receiptType label input[type="radio"] {
  display: none;
}

.receiptType label:has(input:checked) {
  background: #2c4a7c;
  color: #fff;
  border-color: #2c4a7c;
}

/* ── 영수증 등록 ── */
.filebox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.filebox > span {
  font-size: 13px;
  white-space: nowrap;
  min-width: 66px;
  flex-shrink: 0;
}

#uploadContainer {
  flex: 1;
}

.uploadName {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fileUpload {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 56%;
}

.fileUpload > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  background: linear-gradient(142deg,rgba(67, 81, 125, 0.78) 0%, rgba(55, 55, 125, 0.89) 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.fileUpload > a:hover { background: #1e3560; }

.fileUpload button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 18px;
}

.btn-remove-file {
  border: 1px solid #d8dde5;
  background: #efefef;
  color: #555;
}

.btn-add-file {
  border: 1px solid #556aff;
  background: #fff;
  color: #225ce3;
}

.uploadName > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 10px;
  background: linear-gradient(142deg,rgba(204, 225, 255, 0.78) 0%, rgba(254, 232, 255, 0.57) 100%);
  color: #2c4a7c;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid #c5d5ee;
}

.detail-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.total-list {
  font-size: 13px;
  color: #555;
  font-weight: 600;
  padding-top: 14px;
}

.total_count {
  color: #2c4a7c;
  font-weight: 500;
}

.cdtable {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e4ea;
  margin-bottom: 10px;
  clear: both;
  display: block;
  max-height: 390px;
  overflow-y: auto;
}

.cdtable_section_addbtn a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: linear-gradient(142deg,rgba(255, 105, 31, 0.73) 0%, rgba(255, 61, 61, 0.7) 100%);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.cdtable_section_addbtn a:hover { background: #ff4444; }

/* ── 품목 카드 ── */
.cdtable_section {
  border-bottom: 1px solid #edf0f4;
  background: linear-gradient(142deg,rgba(237, 244, 255, 0.78) 0%, rgba(253, 247, 255, 0.57) 100%);
  padding: 10px 4px 5px 4px;
  margin-bottom: 10px;
  border-radius: 3%;
}

.cdtable_section:last-of-type {
  border-bottom: none;
}

.receiptNo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8edf5;
  color: #2c4a7c;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Jua", sans-serif;
  margin-left: 10px;
}

/* ── 품목 기본 테이블 ── */
.clTable {
  width: 100%;
  border-collapse: collapse;
  padding: 5px;
}

.clTable > tr > th.inputTitled {
  text-align: left;
  font-size: 13px;
  color: #555;
  padding: 5px 8px 5px 0;
  white-space: nowrap;
  width: 22%;
  vertical-align: middle;
  font-weight: 400;
}

.clTable > tr > td {
  padding: 5px 0;
  vertical-align: middle;
}

/* ── 수량/단가 서브 테이블 ── */
.daliyprecon_table {
  margin-top: 8px;
  border-collapse: separate;
  border-radius: 10px;
  border-spacing: 0;
  border: 1px solid #e4ecf9;
}

.daliyprecon_table thead tr {
  background: #f4f6f9;
}

.daliyprecon_table th {
  text-align: center;
  padding: 8px 4px;
  font-size: 12px;
  color: #555;
  border-bottom: 1px solid #e0e4ea;
  border-right: 1px solid #e0e4ea;
  font-weight: 600;
  line-height: 1.4;
  background-color: #e1e8ff;
}

.daliyprecon_table th:last-child { border-right: none; }

.daliyprecon_table td {
  text-align: center;
  padding: 4px;
  border-right: 1px solid #e0e4ea;
  vertical-align: middle;
}

.daliyprecon_table td:last-child { border-right: none; }

.daliyprecon_table td input[type="number"] {
  border: none;
  background: transparent;
  text-align: center;
  height: 32px;
  padding: 0 4px;
  box-shadow: none;
  border-radius: 0;
}

.daliyprecon_table td input[type="number"]:focus {
  background: #f0f7eb;
  border-radius: 6px;
  box-shadow: none;
}

/* ── 할인액 / 실구매액 서브 테이블 ── */
.clTable > table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.clTable > table > tr > th.inputTitled {
  text-align: left;
  font-size: 13px;
  color: #555;
  padding: 5px 8px 5px 2px;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 400;
}

.clTable > table > tr > td {
  padding: 5px 0;
  vertical-align: middle;
}

.clTable > table > tr:last-child > th.inputTitled .color_red {
  font-size: 14px;
  font-weight: 500;
}

.clTable > table > tr:last-child > td input {
  font-size: 15px;
  font-weight: 700;
  color: #1aaa8a;
}

/* ── 삭제 버튼 ── */
.cdtable_section_delbtn {
  text-align: right;
  margin-top: 10px;
  padding: 5px 10px;
}

.cdtable_section_delbtn a {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: #c5c5c58a;
  color: #e05050;
  border-radius: 6px;
  font-size: 12px;
  text-decoration: none;
}

/* ══════════════════════════════
   합계 카드 (별도 카드)
══════════════════════════════ */
.containerFlex {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e4ea;
  overflow: hidden;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  padding: 10px 16px;
}

.clTable1 {
  width: 100%;
  border-collapse: collapse;
}

.clTable1 > tr {
  border-bottom: 1px solid #edf0f4;
}

.clTable1 > tr:last-child {
  border-bottom: none;
}

.clTable1 > tr > th {
  text-align: left;
  padding: 14px 14px;
  font-size: 13px;
  color: #555;
  font-weight: 400;
  vertical-align: middle;
  white-space: nowrap;
  width: 50%;
}

.clTable1 > tr > td {
  text-align: right;
  padding: 14px 14px;
  vertical-align: middle;
}

/* 실 구매액 합계 행 */
.clTable1 > tr:first-child > th .color_red {
  font-size: 14px;
  font-weight: 500;
}

.clTable1 > tr:first-child > td .bottomTitle {
  font-size: 15px;
  font-weight: 700;
  color: #1aaa8a;
  text-align: right;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  padding: 0 10px;
  height: 38px;
  width: 100%;
  background: #fff;
}

/* 구분선 행 */
.clTable1 > tr > td[colspan="2"] {
  padding: 0 14px;
}

/* 결제금액 행 강조 */
.clTable1 > tr:nth-child(5) > th .color_blue {
  font-size: 15px;
  font-weight: 700;
}

.clTable1 > tr:nth-child(5) > td .bottomTitle {
  font-size: 16px;
  font-weight: 700;
  color: #1aaa8a;
  text-align: right;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  padding: 0 10px;
  height: 38px;
  width: 100%;
  background: #fff;
}

/* 공통 bottomTitle input */
.bottomTitle {
  text-align: right;
  width: 100%;
  height: 38px;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  font-size: 14px;
  margin: 5px 0;
}

textarea.bottomTitle {
  height: auto;
  min-height: 60px;
  padding: 8px 10px;
  resize: vertical;
  line-height: 1.5;
}

.bottomTitle:focus {
  border-color: #4a90d9;
  box-shadow: 0 0 0 3px rgba(74,144,217,0.12);
  outline: none;
}

/* ── 저장 버튼 ── */
.cashbookpage_btn {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 25px 0 15px 0;
}

.subbtn01:active { transform: scale(0.98); }

/* ── 툴팁 ── */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.info-icon, .info-icon2, .info-icon3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #9ab0cc;
  color: #fff;
  font-size: 11px;
  font-style: normal;
}

/* ── 체크박스 ── */
input[type="checkbox"] {
  width: auto;
  height: auto;
  margin-right: 4px;
  accent-color: #2c4a7c;
}