﻿@charset "utf-8";

/*=======================================
// 공통
=======================================*/

body,
button,
dd,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
menu,
ol,
p,
table,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  /* overflow-y: auto; */
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
  font-weight: normal;
  font-size: 16px;
  font-family: 'Noto Sans KR';
  letter-spacing: -0.4px;
}
input,
select {
  /*line-height: 1.42857143;*/
  vertical-align: middle !important;
  border-radius: 0;
}
input,
textarea {
  -moz-user-select: auto;
  -webkit-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

button,
input,
textarea,
select,
label {
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: #000;
  letter-spacing: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* input 자동완성 시 css 수정 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:disabled {
  border-color: #858585 !important;
  background-color: rgba(7, 7, 7, 0.2) !important;
  color: #777 !important;

  /* IOS에서 input disabled의 기본값 해제 */
  opacity: 1;
  -webkit-text-fill-color: #777;
}

input[type='text'],
input[type='search'],
input[type='number'],
input[type='password'],
input[type='email'],
input[type='tel'],
input[type='I_NO_BIZ'],
input[type='date'],
.upload_name {
  /* padding: 4px; */
  font: inherit;
  /* width: none !important; */
  height: 30px;
  border-radius: 0;
  -webkit-appearance: none; /* 브라우저별 기본 스타일링 제거 */
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #c3c6c9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  /* IOS에서 input border-radius, 그림자 해제 */
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='submit'] {
  cursor: pointer;
}
input[type='button'] {
  cursor: pointer;
}

input[type='checkbox'],
input[type='radio'] {
  margin: 0;
  padding: 0;
  vertical-align: top;
  width: 13px;
  height: 13px;
  line-height: 13px;
  border: none;
}

select {
  width: 2rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: url('/images/img_selectbox_arrow.png') no-repeat 90% 50%;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

select {
  font-size: 12px;
  padding: 4px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #c3c6c9;
}

address {
  padding-top: 10px;
  font-style: normal;
  font-weight: normal;
}
address p,
address p span {
  color: #fff !important;
}

.terms {
  position: relative;
}
.chk_wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.check_all {
  font-size: 18px;
}

.terms_wrap .chk_wrap label,
.common_wrap .chk_wrap label {
  font-size: 18px;
}

label {
  cursor: pointer;
}

label button {
  border: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
label.checkbox {
  display: inline-block;
  border: 0;
  margin-top: 1px;
}

label.checkbox button {
  width: 20px;
  height: 20px;
  margin: -2px 3px 0 0;
  vertical-align: middle;
  background: url(/contents/images/img_checkbox.png) 0 0 no-repeat;
}

label.checkbox.on button {
  background-position: -29px 0;
}

ul li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #333;
}
a,
a:visited,
a:focus,
a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

.underline,
a.underline {
  text-decoration: underline;
}
strong,
.strong {
  font-weight: 600;
}
em {
  font-style: normal;
}
textarea {
  /* line-height: 1.5 !important; */
  line-height: 1.5;
}
figure {
  margin: 0;
}
img {
  border: 0;
  vertical-align: middle;
}
.pointer {
  cursor: pointer;
}

/*=======================================
// 폰트크기
=======================================*/
.fs10 {
  font-size: 10px !important;
}
.fs11 {
  font-size: 11px !important;
}
.fs12 {
  font-size: 12px !important;
}
.fs13 {
  font-size: 13px !important;
}
.fs14 {
  font-size: 14px !important;
}
.fs15 {
  font-size: 15px !important;
}
.fs16 {
  font-size: 16px !important;
}
.fs17 {
  font-size: 17px !important;
}
.fs18 {
  font-size: 18px !important;
}
.fs19 {
  font-size: 19px !important;
}
.fs20 {
  font-size: 20px !important;
}
.fs21 {
  font-size: 21px !important;
}
.fs22 {
  font-size: 22px !important;
}
.fs23 {
  font-size: 23px !important;
}
.fs24 {
  font-size: 24px !important;
}
.fs25 {
  font-size: 25px !important;
}
.fs26 {
  font-size: 26px !important;
}
.fs27 {
  font-size: 27px !important;
}
.fs28 {
  font-size: 28px !important;
}
.fs29 {
  font-size: 29px !important;
}
.fs30 {
  font-size: 30px !important;
}
.fs35 {
  font-size: 35px !important;
}
.fs40 {
  font-size: 40px !important;
}
.fs45 {
  font-size: 45px !important;
}
.fs50 {
  font-size: 50px !important;
}

/*=======================================
// 폰트색상
=======================================*/
.fc01 {
  color: #000 !important;
}
.fc02 {
  color: #fff !important;
}
.fc03 {
  color: #d8363d !important;
}
/*=======================================
// 폰트굵기
=======================================*/
.normal {
  font-weight: 400 !important;
}
.light {
  font-weight: 300 !important;
}
.bold {
  font-weight: 700 !important;
}

/*=======================================
// 너비&높이 값
=======================================*/
.w10p {
  width: 10% !important;
}
.w16p {
  width: 16.6666% !important;
}
.w20p {
  width: 20% !important;
}
.w25p {
  width: 25% !important;
}
.w30p {
  width: 30% !important;
}
.w33p {
  width: 33.3333% !important;
}
.w40p {
  width: 40% !important;
}
.w45p {
  width: 45% !important;
}
.w49p {
  width: 49% !important;
}
.w50p {
  width: 50% !important;
}
.w55p {
  width: 55% !important;
}
.w60p {
  width: 60% !important;
}
.w66p {
  width: 66.6666% !important;
}
.w70p {
  width: 70% !important;
}
.w75p {
  width: 75% !important;
}
.w80p {
  width: 80% !important;
}
.w83p {
  width: 83.3333% !important;
}
.w90p {
  width: 90% !important;
}
.w100p {
  width: 100% !important;
}

.w30 {
  width: 30px !important;
}
.w40 {
  width: 40px !important;
}
.w45 {
  width: 45px !important;
}
.w50 {
  width: 50px !important;
}
.w70 {
  width: 70px !important;
}
.w80 {
  width: 80px !important;
}
.w100 {
  width: 100px !important;
}
.w130 {
  width: 130px !important;
}
.w150 {
  width: 150px !important;
}
.w180 {
  width: 180px !important;
}
.w190 {
  width: 190px !important;
}
.w200 {
  width: 200px !important;
}
.w220 {
  width: 220px !important;
}
.w250 {
  width: 250px !important;
}
.w300 {
  width: 300px !important;
}
.w320 {
  width: 320px !important;
}
.w350 {
  width: 350px !important;
}
.w380 {
  width: 380px !important;
}
.w400 {
  width: 400px !important;
}
.w500 {
  width: 500px !important;
}
.w570 {
  width: 570px !important;
}
.w600 {
  width: 600px !important;
}
.w680 {
  width: 680px !important;
}
.w700 {
  width: 700px !important;
}
.w890 {
  width: 890px !important;
}
.w1000 {
  width: 1000px !important;
}

.h100p {
  height: 100% !important;
}
.h27 {
  height: 27px !important;
}
.h30 {
  height: 30px !important;
}
.h35 {
  height: 35px !important;
}
.h40 {
  height: 40px !important;
}
.h45 {
  height: 45px !important;
}
.h50 {
  height: 50px !important;
}
.h55 {
  height: 55px !important;
}
.h60 {
  height: 60px !important;
}
.h70 {
  height: 70px !important;
}
.h80 {
  height: 80px !important;
}
.h100 {
  height: 100px !important;
}
.h200 {
  height: 200px !important;
}
.h250 {
  height: 250px !important;
}
.h300 {
  height: 300px !important;
}
.h350 {
  height: 350px !important;
}
.h400 {
  height: 400px !important;
}
.h480 {
  height: 480px !important;
}

/*=======================================
// 패딩&마진 값
=======================================*/
.mg0 {
  margin: 0px !important;
}
.mg05 {
  margin: 5px !important;
}
.mg10 {
  margin: 10px !important;
}
.mg15 {
  margin: 15px !important;
}
.mg20 {
  margin: 20px !important;
}
.mg30 {
  margin: 30px !important;
}
.mg40 {
  margin: 40px !important;
}
.mg50 {
  margin: 50px !important;
}
.mg100 {
  margin: 100px !important;
}
.mgt0 {
  margin-top: 0px !important;
}
.mgt05 {
  margin-top: 5px !important;
}
.mgt10 {
  margin-top: 10px !important;
}
.mgt15 {
  margin-top: 15px !important;
}
.mgt20 {
  margin-top: 20px !important;
}
.mgt25 {
  margin-top: 25px !important;
}
.mgt30 {
  margin-top: 30px !important;
}
.mgt35 {
  margin-top: 35px !important;
}
.mgt40 {
  margin-top: 40px !important;
}
.mgt50 {
  margin-top: 50px !important;
}
.mgt55 {
  margin-top: 55px !important;
}
.mgt60 {
  margin-top: 60px !important;
}
.mgt70 {
  margin-top: 70px !important;
}
.mgt80 {
  margin-top: 80px !important;
}
.mgt85 {
  margin-top: 85px !important;
}
.mgt90 {
  margin-top: 90px !important;
}
.mgt95 {
  margin-top: 95px !important;
}
.mgt100 {
  margin-top: 100px !important;
}

.mgb0 {
  margin-bottom: 0px !important;
}
.mgb05 {
  margin-bottom: 5px !important;
}
.mgb10 {
  margin-bottom: 10px !important;
}
.mgb15 {
  margin-bottom: 15px !important;
}
.mgb20 {
  margin-bottom: 20px !important;
}
.mgb25 {
  margin-bottom: 25px !important;
}
.mgb30 {
  margin-bottom: 30px !important;
}
.mgb35 {
  margin-bottom: 35px !important;
}
.mgb40 {
  margin-bottom: 40px !important;
}
.mgb50 {
  margin-bottom: 50px !important;
}
.mgb60 {
  margin-bottom: 60px !important;
}
.mgb70 {
  margin-bottom: 70px !important;
}
.mgb80 {
  margin-bottom: 80px !important;
}
.mgb85 {
  margin-bottom: 85px !important;
}
.mgb90 {
  margin-bottom: 90px !important;
}
.mgb95 {
  margin-bottom: 95px !important;
}
.mgb100 {
  margin-bottom: 100px !important;
}

.mgl0 {
  margin-left: 0px !important;
}
.mgl05 {
  margin-left: 5px !important;
}
.mgl10 {
  margin-left: 10px !important;
}
.mgl20 {
  margin-left: 20px !important;
}
.mgl30 {
  margin-left: 30px !important;
}
.mgl40 {
  margin-left: 40px !important;
}
.mgl50 {
  margin-left: 50px !important;
}
.mgl60 {
  margin-left: 60px !important;
}
.mgl70 {
  margin-left: 70px !important;
}
.mgl80 {
  margin-left: 80px !important;
}

.mgr0 {
  margin-right: 0px !important;
}
.mgr05 {
  margin-right: 5px !important;
}
.mgr10 {
  margin-right: 10px !important;
}
.mgr20 {
  margin-right: 20px !important;
}
.mgr30 {
  margin-right: 30px !important;
}
.mgr40 {
  margin-right: 40px !important;
}
.mgr50 {
  margin-right: 50px !important;
}
.mgr60 {
  margin-right: 60px !important;
}
.mgr70 {
  margin-right: 70px !important;
}
.mgr80 {
  margin-right: 80px !important;
}

.pd0 {
  padding: 0px !important;
}
.pd05 {
  padding: 5px !important;
}
.pd10 {
  padding: 10px !important;
}
.pd20 {
  padding: 20px !important;
}
.pd30 {
  padding: 30px !important;
}
.pd40 {
  padding: 40px !important;
}
.pd50 {
  padding: 50px !important;
}
.pd100 {
  padding: 100px !important;
}

.pdt0 {
  padding-top: 0px !important;
}
.pdt05 {
  padding-top: 5px !important;
}
.pdt10 {
  padding-top: 10px !important;
}
.pdt15 {
  padding-top: 15px !important;
}
.pdt20 {
  padding-top: 20px !important;
}
.pdt25 {
  padding-top: 25px !important;
}
.pdt30 {
  padding-top: 30px !important;
}
.pdt35 {
  padding-top: 35px !important;
}
.pdt40 {
  padding-top: 40px !important;
}
.pdt45 {
  padding-top: 45px !important;
}
.pdt50 {
  padding-top: 50px !important;
}
.pdt100 {
  padding-top: 100px !important;
}

.pdb0 {
  padding-bottom: 0px !important;
}
.pdb05 {
  padding-bottom: 5px !important;
}
.pdb10 {
  padding-bottom: 10px !important;
}
.pdb15 {
  padding-bottom: 15px !important;
}
.pdb20 {
  padding-bottom: 20px !important;
}
.pdb25 {
  padding-bottom: 25px !important;
}
.pdb30 {
  padding-bottom: 30px !important;
}
.pdb35 {
  padding-bottom: 35px !important;
}
.pdb40 {
  padding-bottom: 40px !important;
}
.pdb45 {
  padding-bottom: 45px !important;
}
.pdb50 {
  padding-bottom: 50px !important;
}
.pdb100 {
  padding-bottom: 100px !important;
}

.pdl0 {
  padding-left: 0px !important;
}
.pdl05 {
  padding-left: 5px !important;
}
.pdl10 {
  padding-left: 10px !important;
}
.pdl15 {
  padding-left: 15px !important;
}
.pdl20 {
  padding-left: 20px !important;
}
.pdl30 {
  padding-left: 30px !important;
}
.pdl40 {
  padding-left: 40px !important;
}
.pdl50 {
  padding-left: 50px !important;
}
.pdl100 {
  padding-left: 100px !important;
}

.pdr0 {
  padding-right: 0px !important;
}
.pdr05 {
  padding-right: 5px !important;
}
.pdr10 {
  padding-right: 10px !important;
}
.pdr15 {
  padding-right: 15px !important;
}
.pdr20 {
  padding-right: 20px !important;
}
.pdr30 {
  padding-right: 30px !important;
}
.pdr40 {
  padding-right: 40px !important;
}
.pdr50 {
  padding-right: 50px !important;
}
.pdr100 {
  padding-right: 100px !important;
}

/*=======================================
// 위치값
=======================================*/
.top0 {
  top: 0 !important;
}
.top10 {
  top: 10px !important;
}
.top15 {
  top: 15px !important;
}
.top20 {
  top: 20px !important;
}
.top25 {
  top: 25px !important;
}
.top30 {
  top: 30px !important;
}
.top35 {
  top: 35px !important;
}
.top42 {
  top: 42px !important;
}
.left0 {
  left: 0 !important;
}
.left10 {
  left: 10px !important;
}
.left20 {
  left: 20px !important;
}
.left45 {
  left: 45px !important;
}
.left50 {
  left: 50px !important;
}
.left120 {
  left: 120px !important;
}
.right0 {
  right: 0 !important;
}
.right10 {
  right: 10px !important;
}
.right15 {
  right: 15px !important;
}
.right20 {
  right: 20px !important;
}
.right30 {
  right: 30px !important;
}
.right40 {
  right: 40px !important;
}
.right50 {
  right: 50px !important;
}
.right60 {
  right: 60px !important;
}
.right70 {
  right: 70px !important;
}
.bottom0 {
  bottom: 0 !important;
}
.bottom12 {
  bottom: 12px !important;
}
.bottom15 {
  bottom: 15px !important;
}

.gap0 {
  gap: 0px;
}
.gap2 {
  gap: 2px;
}
.gap4 {
  gap: 4px;
}
.gap6 {
  gap: 6px;
}
.gap8 {
  gap: 8px;
}
.gap10 {
  gap: 10px;
}
.gap12 {
  gap: 12px;
}
.gap14 {
  gap: 14px;
}
.gap16 {
  gap: 16px;
}
.gap18 {
  gap: 18px;
}
.gap20 {
  gap: 20px;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0.1rem;
  height: 0.1rem;
  margin: -0.1rem;
  padding: 0;
  border: 0;
  clip-path: circle(0);
  white-space: nowrap;
  text-indent: 100%;
}

/*=======================================
// 제목텍스트
=======================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: 500;
  line-height: 1.1;
}

/*=======================================
// 텍스트 정렬
=======================================*/
.ta-c {
  text-align: center !important;
}
.ta-l {
  text-align: left !important;
}
.ta-r {
  text-align: right !important;
}

.va-m {
  vertical-align: middle !important;
}
.va-t {
  vertical-align: top !important;
}
.va-b {
  vertical-align: bottom !important;
}

.fl-l {
  float: left !important;
}
.fl-r {
  float: right !important;
}

/*====================================
// 버튼 디자인
====================================*/

.btn_small,
.btn_small a,
.btn_small button,
.btn_small input {
  margin: 0;
  text-decoration: none !important;
  border: 0;
  font-size: 12px;
  font-family: Tahoma, Sans-serif;
  white-space: nowrap;
  height: 27px;
  line-height: 25px;
  display: inline-block;
  overflow: visible;
  vertical-align: middle;
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
  left: 2px;
  /* vertical-align: top; */
  vertical-align: middle;
  cursor: pointer;
}

.btn_color_red {
  border: 1px solid #b60008 !important;
  background-color: #d8363d;
  padding: 0 10px;
}
.btn_color_blue {
  border: 1px solid #00acc1 !important;
  background-color: #26c6da;
  padding: 0 10px;
}
.btn_color_blue02 {
  border: 1px solid #2b5ca1 !important;
  background-color: #2b5ca1;
  padding: 0 10px;
}
.btn_color_gray {
  border: 1px solid #3a3839 !important;
  background-color: #5f5d5e;
  padding: 0 10px;
}
.btn_color_black {
  border: 1px solid #000 !important;
  background-color: #424242;
  padding: 0 10px;
}
.btn_color_cancel {
  border: 1px solid #cccbcb !important;
  background-color: #e1e1e1;
  color: #000 !important;
  padding: 0 10px;
}
.btn_color_green {
  border: 1px solid #036910 !important;
  background-color: #087b17;
  padding: 0 10px;
}

/* 아이콘 위치 */
i.positionTop {
  position: relative;
  top: 1px;
}
/* 버튼 위치*/
.btn_position {
  position: relative;
  top: 5px;
}

/* 백그라운드 */
.nobg {
  background: none !important;
}

/*=======================================
// 로딩화면
=======================================*/

.loader_wrap {
  background-color: rgb(0, 0, 0);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.7;
  z-index: 10000;
  cursor: progress;
}
.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 100px;
  height: 100px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.clearfix {
  display: block !important;
  content: '' !important;
  clear: both !important;
}
.hidden {
  overflow: hidden !important;
}
/*=======================================
// 그림자효과
=======================================*/
.shadow {
  /* box-shadow: -60px 0px 100px -90px #000000,
        60px 0px 100px -90px #000000; */
  box-shadow: -60px 60px 80px -90px #000000, 60px 60px 80px -90px #000000;
}

.shadowbox {
  position: relative;
  border: 1px solid #dee3eb;
  background: #fff;
  box-shadow: 0px 4px 6px -1px #b0b0b0;
  border-radius: 4px;
}

/*=======================================
// 스크롤
=======================================*/
.x_scroll {
  overflow-x: auto !important;
}
.y_scroll {
  overflow-y: auto !important;
}

/*=======================================
// 유효성검증
=======================================*/
p.field-validation-valid {
  color: #d8363d;
  line-height: 30px;
}

/*=======================================
// 타이틀
=======================================*/
h2.tit {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 22px;
  color: #222;
  letter-spacing: -0.5px;
  font-weight: bold;
  margin-top: 35px;
}

.btn_wrap {
  text-align: center;
  /* margin-top: 110px; */
  margin-top: 60px;
}

.btn {
  width: 220px;
  height: 60px;
  display: inline-block;
  line-height: 60px;
  font-size: 20px;
}

.btn.gray {
  background: #f3f3f3;
  border: 1px solid #e2e2e2;
  color: #000 !important;
}

.btn.blue {
  background: #134489;
  border: 1px solid #0a346f;
  color: #fff !important;
}

.point {
  color: #f50000;
  margin-right: 5px;
  position: relative;
  top: 0;
}
.point_txt {
  color: #e2383b !important;
  font-weight: bold;
}
.point_blue {
  color: #134489;
  font-size: 18px;
}

.error,
.red_point {
  font-weight: bold;
  color: #e2383b !important;
}

input.cform {
  width: 100%;
  height: 45px;
  /* line-height: 45px; */
  font-size: 17px;
  float: left;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 20px;
  color: #134489 !important;
  border: 1px solid #dedede;
}

.icon_at {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  float: left;
  display: block;
  line-height: 45px;
  padding: 0 5px;
}

input::placeholder {
  color: #dedede !important;
}
.input_wrap label {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -9999em;
}

select.mail {
  font-size: 17px;
  padding: 5px;
  height: 45px;
  border: 1px solid #dedede;
}

.block {
  display: block !important;
}
.none {
  display: none !important;
}
.inlineblock {
  display: inline-block !important;
}

/*=======================================
// 라인처리
=======================================*/

.noline_t {
  border-top: none !important;
}
.noline_r {
  border-right: none !important;
}
.noline_b {
  border-bottom: none !important;
}
.noline_l {
  border-left: none !important;
}

.border {
  border: 1px solid #e0e0e0;
}

.line_t {
  border-top: 1px solid #e0e0e0 !important;
}
.line_r {
  border-right: 1px solid #e0e0e0 !important;
}
.line_b {
  border-bottom: 1px solid #e0e0e0 !important;
}
.line_l {
  border-left: 1px solid #e0e0e0 !important;
}

/*=======================================
// 레이어팝업
=======================================*/
.fancybox-content {
  padding: 0 !important;
}
.layerPopup_wrap {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
}
.layerPopup {
  z-index: 9998;
  /* margin-left: -300px; */
}
.layer_wrap .layer_inner .header_wrap {
  background: #424242;
  padding: 10px 20px;
  color: #fff;
}
.layer_wrap .layer_inner .header_wrap p span {
  position: relative;
  top: -6px;
  left: 5px;
}

.layer_wrap .layer_inner .contents_wrap {
  width: 100%;
  height: auto;
  padding: 20px;
  margin-bottom: 30px;
  margin: 0 auto;
}
.layer_wrap .layer_inner .contents_wrap .search_wrap {
  margin: 0 0 20px;
  background-color: #f3f3f3;
  padding: 10px 20px 10px 4px;
}
.layer_wrap .layer_inner .contents_wrap .search_wrap table tr td {
  text-align: center;
}
.layer_wrap .layer_inner .contents_wrap .list_info {
  margin: 10px 0;
}
.layer_wrap .layer_inner .contents_wrap .list_info span {
  color: #d8363d;
  font-weight: bold;
}
.layer_wrap .layer_inner .contents_wrap .contents_list {
  border-bottom: 2px solid #e0e0e0;
}

.layer_wrap .layer_inner .contents_wrap .pager {
  padding: 10px 0 !important;
}

.layer_wrap .layer_inner .contents_wrap .sch_nav {
  text-align: center;
  margin-top: 20px;
}
.layer_wrap .layer_inner .contents_wrap .sch_nav p {
  width: 100px;
}
.layer_wrap .layer_inner .contents_wrap .sch_nav a {
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
}

/* col_type */
.layer_wrap .layer_inner .contents_wrap .contents_list .table.col_type tr th,
.layer_wrap .layer_inner .contents_wrap .contents_list .table.col_type tr td {
  border-top: 1px solid #e0e0e0;
  padding: 10px;
}
.layer_wrap .layer_inner .contents_wrap .contents_list .table.col_type tr th {
  vertical-align: bottom;
  border-bottom: 2px solid #e0e0e0;
  text-align: center;
  font-weight: bold;
}
.layer_wrap .layer_inner .contents_wrap .contents_list .table.col_type tr td {
  text-align: center;
}

/* row_type */
.layer_wrap .layer_inner .contents_wrap .contents_list .table.row_type tr th,
.layer_wrap .layer_inner .contents_wrap .contents_list .table.row_type tr td {
  padding: 10px;
  border-top: 1px solid #e0e0e0;
}
.layer_wrap .layer_inner .contents_wrap .contents_list .table.row_type tr th {
  text-align: center;
  background: #f3f3f3;
  font-weight: bold;
}
.layer_wrap .layer_inner .contents_wrap .contents_list .table.row_type tr td {
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.fancybox-button svg path {
  fill: #fff !important;
}

/*=======================================
// 파일찾기
=======================================*/

.file_box .img_inner {
  display: inline-block;
  width: 150px;
  height: 150px;
  border: 1px solid #c3c6c9;
  border-radius: 5px;
  margin-bottom: 5px;
}

.file_box .no_img {
  line-height: 150px;
}

.file_box input[type='file'] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.file_box .upload_name {
  background-color: #fff;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.file_box.btn_b label {
  /* border: 1px solid #b60008 !important; */
  background-color: #2b5ca1;
  padding: 0 10px;
  margin: 0;
  text-decoration: none !important;
  border: 0;
  font-size: 12px;
  font-family: Tahoma, Sans-serif;
  white-space: nowrap;
  height: 27px;
  line-height: 25px;
  display: inline-block;
  overflow: visible;
  vertical-align: middle;
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
  left: 2px;
  /* vertical-align: top; */
  cursor: pointer;
}

/*=======================================
// 페이징
=======================================*/
.pager {
  padding: 30px 0;
  position: relative;
  text-align: center !important;
  background: #fff;
}

.pager ul {
  overflow: hidden;
}

.pager li {
  margin-left: 3px;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.pager li a {
  display: block;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ccc;
  color: #666;
  font-weight: bold;
  border-radius: 3px;
  line-height: 12px;
}

.pager li.active a {
  font-weight: bold;
  background: #424242;
  border: 1px solid #666;
  color: #fff !important;
}

.pager li a:hover,
.pager li.active a:hover,
.pager p a:hover {
  border: 1px solid #424242;
  color: #000;
  font-weight: bold;
}

/*=======================================
// 탭메뉴 (상단라인)
=======================================*/
.tab_wrap {
  /* margin: 25px 0 18px; */
  margin-bottom: 20px;
}
.tab_wrap .tab_menu li {
  float: left;
  height: 45px;
  background: #f7f7f7;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  outline: none;
  display: block;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
.tab_wrap .tab_menu li.on a {
  background: #333;
  color: #fff !important;
}
.tab_wrap .tab_menu li:first-child {
  border-left: 1px solid #dfdfdf;
}
.tab_wrap .tab_menu li:last-child {
  border-right: 1px solid #dfdfdf;
}
.tab_wrap .tab_menu.col2 li {
  width: 50%;
}
.tab_wrap .tab_menu.col3 li:first-child {
  width: 33.4%;
}
.tab_wrap .tab_menu.col3 li {
  width: 33.3%;
}
.tab_wrap .tab_menu.col4 li {
  width: 25%;
}
.tab_wrap .tab_menu.col5 li {
  width: 20%;
}
.tab_wrap .tab_menu.col6 li:first-child {
  width: 16.5%;
}
.tab_wrap .tab_menu.col6 li {
  width: 16.7%;
}
.tab_wrap .tab_menu.col7 li:first-child {
  width: 14.2%;
}
.tab_wrap .tab_menu.col7 li {
  width: 14.3%;
}
.tab_wrap .tab_menu.col8 li {
  width: 12.5%;
}
.tab_wrap .tab_menu.col9 li {
  width: 11.1%;
}
.tab_wrap .tab_menu.col10 li {
  width: 10%;
}

.tab_wrap .tab_menu li a.tab {
  color: #767676;
  line-height: 40px;
  display: block;
  padding-top: 5px;
}
.tab_wrap .tab_menu li a.on {
  color: #d8363d !important;
  background-color: #fff !important;
  padding-top: 0 !important;
  border-top: 5px solid #d8363d !important;
}

.bottom_tab_wrap {
  width: 100%;
  margin-top: 20px;
}
.bottom_tab_wrap .bottom_tab_inner .tab_menu.col9 li {
  width: 11%;
}
.bottom_tab_wrap .bottom_tab_inner .tab_menu li {
  float: left;
  height: 45px;
  /* background: #f7f7f7; */
  background: #3c3c3c;
  border-right: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  outline: none;
  display: block;
  font-weight: bold;
  /* line-height: 40px; */
  line-height: 45px;
  text-align: center;
}

.bottom_tab_wrap .bottom_tab_inner .tab_menu li a.on {
  color: #fff !important;
  background-color: #d8363d !important;
  /* padding-top: 0 !important; */
  /* border-top: 5px solid #d8363d !important; */
  /* background: #d8363d;*/
}
.bottom_tab_wrap .bottom_tab_inner .tab_menu li a.tab {
  /* color: #767676; */
  color: #fff;
  line-height: 45px;
  display: block;
  /* padding-top: 5px; */
}

/*=======================================
// 탭메뉴 (서브메뉴)
=======================================*/

.tab_wrap ul.sub_common li {
  /* width: 160px; */
  width: 130px;
  border-radius: 20px;
}

.tab_wrap ul.sub_common li.on {
  font-weight: bold;
  background: #d3292c;
}
.tab_wrap ul.sub_common li.on a {
  line-height: 40px;
  display: block;
  color: #fff;
}

/* 전표입력, 보조장부 */
.tab_wrap ul.tab_subMenu01,
.tab_wrap ul.tab_subMenu03 {
  width: 21%;
  position: relative;
  top: 6px;
  left: 1.7%;
}
.tab_wrap ul.tab_subMenu03 {
  left: 41.7%;
}

.tab_wrap ul.tab_subMenu01 li,
.tab_wrap ul.tab_subMenu03 li {
  float: left;
  /* width: 50%; */
  text-align: center;
  height: 40px;
  line-height: 40px;
}

/* 재무제표 */
.tab_wrap ul.tab_subMenu02 {
  width: 31%;
  position: relative;
  left: 17.6%;
  top: 6px;
}

.tab_wrap ul.tab_subMenu02 li {
  float: left;
  /* width: 33.3%; */
  text-align: center;
  height: 40px;
  line-height: 40px;
}

/* 자동수집전표 */
.tab_wrap ul.tab_subMenu04 {
  width: 51%;
  position: relative;
  left: 49.3%;
  top: 6px;
}

.tab_wrap ul.tab_subMenu04 li {
  float: left;
  /* width: 33.3%; */
  text-align: center;
  height: 40px;
  line-height: 40px;
}
.tab_wrap ul.tab_subMenu04 {
  left: 50%;
}

.fancybox-button svg path {
  fill: #fff !important;
}

.triangle-isosceles {
  position: relative;
  padding: 15px;
  margin: 1em 0 3em;
  color: #000;
  background: #f3961c; /* default background for browsers without gradient support */
  /* css3 */
  background: -webkit-gradient(linear, 0 0, 0 100%, from(#f9d835), to(#f3961c));
  background: -moz-linear-gradient(#f9d835, #f3961c);
  background: -o-linear-gradient(#f9d835, #f3961c);
  background: linear-gradient(#f9d835, #f3961c);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.section.admin.wrap .table tbody tr.on {
  background: #ffeaea;
}

.table tbody tr.bg {
  background: #f5f5f5;
}

.top_box {
  margin: 10px 0;
}

.top_box .list_info,
.top_box .list_tit {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
  float: left;
}

.top_box .list_info span {
  color: #d8363d;
}

/* paging */
.paging {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 30px;
}
.paging a {
  display: inline-block;
  vertical-align: middle;
  min-width: 28px;
  height: 28px;
  margin: 0 1px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 28px;
}
.paging strong {
  display: inline-block;
  vertical-align: middle;
  min-width: 28px;
  height: 28px;
  margin: 0 1px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 28px;
  background: #f5f5f5;
}
.paging strong a {
  min-width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  line-height: 25px;
}
.paging .first {
  background: url(/images/bg_paging_frst.png) no-repeat center center;
  font-size: 0;
}
.paging .prev {
  margin-right: 20px;
  background: url(/images/bg_paging_prev.png) no-repeat center center;
  font-size: 0;
}
.paging .next {
  margin-left: 20px;
  background: url(/images/bg_paging_next.png) no-repeat center center;
  font-size: 0;
}
.paging .last {
  background: url(/images/bg_paging_last.png) no-repeat center center;
  font-size: 0;
}
.paging + .botBtn {
  text-align: right;
}
.lyrpop .paging + .botBtn {
  padding-top: 20px;
  text-align: center !important;
}
.Common__Wrap-sc-1tsa548-1 {
  position: relative;
}
/* 모바일 장치에서 수직 스크롤 비활성화 */
/* @media only screen and (max-width: 768px) {
  .no-scroll-y {
    overflow-y: hidden;
  }
} */

/* .Common__Wrap-sc-1tsa548-1 oFDqG {
  max-width: 50rem !important;
} */

/* @media screen and (orientation: landscape) {
  .horizontal-mode {
    transform: rotate(-90deg) translateX(0);
    transform-origin: top left;
    position: absolute;
    top: 118%;
    left: 0;
    width: 100vh;
    height: 100vw;
    overflow-y: scroll;
  }
  .Common__Content_t-sc-1tsa548-2 {
    position: fixed;
    overflow: scroll !important;
    width: 100vh;
    height: 100vw;
    padding-bottom: 140px !important;
  }
  .service-wrap {
    position: absolute;
    width: 100vh;
    height: 100vw;
  }
  .cancel-alert.bg,
  .modal.bg {
    width: 100vh !important;
    height: 100vw !important;
  }
  .swal2-container {
    transform: rotate(-90deg) translateX(0);
    transform-origin: top left;
    position: absolute;
    top: 118%;
    left: 0;
    width: 100vh;
    height: 100vw;
  }

  .common .btn-box {
    position: static !important;
  } */

/* calendar 위치조정 */
/* .react-datepicker-popper {
    transform: translate3d(136px, 175px, 0px) !important;
  }
  .react-datepicker-popper[data-placement^='top'] .react-datepicker__triangle {
    display: none;
  } */
/* } */
