﻿@charset "utf-8";
/*=======================================
// 공통
=======================================*/
/* reset */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.5;
  font-family: 'pretendard';
  /* letter-spacing: -0.03rem; */
  word-break: keep-all;
  background-color: #eff1f2;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}
body {
  font-size: 1.6rem;
}

h1,
h2,
h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

button {
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
button,
input,
textarea,
select {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}

label {
  cursor: pointer;
}
li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
textarea {
  resize: none;
  border-radius: 0.8rem;
  border: 0.1rem solid #bfbfbf;
  background-color: #fff;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 15rem;
  height: 3.2rem;
  padding: 0.4rem 1.2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #ddd;
  background: #fff url('/images/ico/ico_arr_fill.png') no-repeat center right 1.2rem / 1rem;
  color: #4f4f4f;
}

input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='number'],
input[type='search'],
textarea {
  /* width: 15rem; */
  /* height: 4rem; */
  /* border-radius: 0.8rem; */
  /* padding: 0 1.4rem; */
  min-width: 15rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #ddd;
  background-color: #fff;
  color: #222;
  padding: 0.4rem 1.2rem;
}
input[type='password'] {
  font-family: 'ns-kr' !important;
}
input[readonly] {
  background-color: #f2f3f5;
  color: #000;
  outline: none;
}

input[type='checkbox'],
input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.1s;
}
input[type='radio'] {
  background: url('/images/ico/ico_radio_off.png');
}
input[type='radio']:checked {
  background-image: url('/images/ico/ico_radio_on.png');
}
.radio_box {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  word-break: keep-all;
  line-height: 2rem;
}

.file_box .upload_name {
  /* background-color: #fff;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  padding: 0.4rem;
  font: inherit;
  width: none !important;
  height: 3.2rem;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0.1rem solid #c3c6c9;
  border-radius: 0.4rem;
  margin-bottom: 0.8rem; */
  min-width: 15rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #ddd;
  background-color: #fff;
  color: #222;
  padding: 0.4rem 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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 {
  cursor: pointer;
}

.underline,
a.underline {
  text-decoration: underline;
}
strong,
.strong {
  font-weight: 600;
}
em {
  font-style: normal;
}
textarea {
  line-height: 1.5 !important;
}
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;
}

/*=======================================
// 너비&높이 값
=======================================*/
.mw0 {
  min-width: 0 !important;
}
.mw10 {
  min-width: 10rem !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;
}
.w65p {
  width: 65% !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;
}
.w60 {
  width: 60px !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;
}
.h100p {
  height: 100% !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;
}
.mgt24 {
  margin-top: 24px !important;
}
.mgt25 {
  margin-top: 25px !important;
}
.mgt30 {
  margin-top: 30px !important;
}
.mgt35 {
  margin-top: 35px !important;
}
.mgt40 {
  margin-top: 40px !important;
}
.mgt48 {
  margin-top: 48px !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;
}
.mgb32 {
  margin-bottom: 32px !important;
}
.mgb35 {
  margin-bottom: 35px !important;
}
.mgb40 {
  margin-bottom: 40px !important;
}
.mgb48 {
  margin-bottom: 48px !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;
}
.mgl04 {
  margin-left: 4px !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;
}
.mgr04 {
  margin-right: 4px !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;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
}

/*=======================================
// 제목텍스트
=======================================*/
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_search {
  background-color: #007bff; 
  color: #fff; 
  border: none;
  border-radius: 0.5rem;
  padding: 0.8rem 1.6rem; 
  font-size: 1.4rem; 
  cursor: pointer; 
  transition: background-color 0.3s; 
}
.btn_search:hover {
  background-color: #0056b3;
} */
.common_button {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.small {
  height: 3.2rem !important;
  padding: 0 1.2rem !important;
  font-size: 1.2rem !important;
}
.black {
  background-color: #000 !important;
  color: #fff !important;
}

.blue {
  background-color: #0056b3 !important;
  color: #fff !important;
}

.lightgray {
  background-color: #f5f5f5 !important;
  color: #000 !important;
}

.darkgray {
  background-color: #5d5d5d !important;
  color: #fff !important;
}
.green {
  background-color: #087b17 !important;
  color: #fff !important;
}
.red {
  background-color: #e2383b !important;
  color: #fff !important;
}

.outline {
  border: 1px solid #ddd;
}

.outline_blue {
  border: 1px solid #0056b3 !important;
  color: #0056b3 !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: 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;
}

.box_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.btn_box.notice-btn button:not(.middle button):first-child {
  border: 0.1rem solid #5d5d5d;
  background-color: #fff;
  color: #5d5d5d;
}
.btn_box.notice-btn .middle button:nth-child(1) {
  background-color: #5d5d5d;
}
.btn_box.notice-btn button:not(.middle button):last-child {
  border: 0.1rem solid #0060ba;
  background-color: #fff;
  color: #0060ba;
}
.btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.btn_box.bottom {
  justify-content: space-between !important;
}
.btn_box .button1 {
  width: 12rem;
  height: 5.2rem;
  border-radius: 0.8rem;
  background-color: #0060ba;
  color: #fff;
  font-size: 1.6rem;
}
.btn_box .button1.type2 {
  background-color: #5d5d5d;
}
.btn_box .button1.type3 {
  border: 0.1rem solid #0060ba;
  background-color: #fff;
  color: #0060ba;
}

/* btn2 */

.button2 {
  width: fit-content;
  min-width: 12rem;
  height: 4rem;
  padding: 0 2rem;
  border-radius: 0.8rem;
  border: 0.1rem solid #0060ba;
  background-color: #fff;
  color: #0060ba;
  font-size: 1.6rem;
}
.button2.type2 {
  border: 0;
  background-color: #000;
  color: #fff;
}
.button2.type3 {
  border: 0.1rem solid #444;
  color: #444;
}
.button2.type4 {
  border: 0.1rem solid #000;
  color: #000;
}
.button2.right {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
}

/* 아이콘 위치 */
i.positionTop {
  position: relative;
  top: 1px;
}
/*=======================================
// 로딩화면
=======================================*/

.clearfix {
  display: block !important;
  content: '' !important;
  clear: both !important;
}
.hidden {
  overflow: hidden !important;
}

/*=======================================
// 스크롤
=======================================*/
.x_scroll {
  overflow-x: auto !important;
}
.y_scroll {
  overflow-y: auto !important;
}

/* .scroll_box {
  position: relative;
  width: 100%;
  overflow-y: auto;
  
  &::-webkit-scrollbar {
    padding: 0 0.4rem;
    width: 0.4rem;
  }

  
  &::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0.8rem;
  }

  
  &::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 0.8rem;
  }
} */

/* 스크롤바 전체 영역 */
.scroll_box {
  position: relative;
  width: 100%;
  overflow-y: auto;
}

/* Webkit 브라우저용 스크롤바 스타일 */
.scroll_box::-webkit-scrollbar {
  width: 0.8rem; /* 스크롤바 너비 */
}

/* 스크롤바 트랙(배경) 스타일 */
.scroll_box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.8rem;
}

/* 스크롤바 핸들(움직이는 부분) 스타일 */
.scroll_box::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 0.8rem;
  border: 0.2rem solid #f1f1f1; /* 테두리 효과 */
}

/* 스크롤바 핸들 호버 효과 */
.scroll_box::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Firefox용 스크롤바 스타일 */
.scroll_box {
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 #f1f1f1;
}

/*=======================================
// 타이틀
=======================================*/
/* h2.tit {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 22px;
  color: #222;
  letter-spacing: -0.5px;
  font-weight: bold;
  margin-top: 35px;
} */

.point {
  color: #f50000;
  margin-right: 5px;
  position: relative;
  top: 0;
}
.error,
.red_point {
  font-weight: bold;
  color: #e2383b !important;
}

input::placeholder {
  color: #dedede;
}

.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 #ddd;
}

.line_t {
  border-top: 1px solid #ddd !important;
}
.line_r {
  border-right: 1px solid #ddd !important;
}
.line_b {
  border-bottom: 1px solid #ddd !important;
}
.line_l {
  border-left: 1px solid #ddd !important;
}

/*=======================================
// 파일찾기
=======================================*/

.file_box .img_inner {
  /* display: inline-block; */
  display: flex;
  align-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 5px;
}

.file_box .no_img {
  line-height: 1.5;
}

.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.btn_b label {
  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;
  cursor: pointer;
} */

.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;
}

/*=======================================
// 업로드버튼 (인풋창 히든)
=======================================*/

.upload_hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

/*=======================================
// 처리이력 (텍스트 박스)
=======================================*/

.process-history {
  width: 100%;
  margin-top: 70px;
}

.process-item {
  border: 1px solid #ccc;
  margin-bottom: 1rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.process-item > * {
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.process-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.date,
.writer {
  font-weight: bold;
}

.content-box {
  flex: 1;
}

.content-box .content {
  font-size: 1.4rem;
  line-height: 1.5;
  white-space: pre-wrap;
  width: 100% !important;
  min-height: auto !important;
  background: #f9f9f9 !important;
  padding: 1rem !important;
  margin-left: 0 !important;
}

.no-history {
  font-size: 14px;
  color: #999;
  padding: 10px;
  border: 1px solid #ccc;
}

/*=======================================
// 탭 (tabs)
=======================================*/

.tabs {
  display: flex;
  width: 50%;
  position: relative;
  top: 13rem;
  left: 27rem;
}

.tabs button {
  padding: 1.6rem 10rem;
  background-color: #ffffff;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  font-size: 1.6rem;
}

.tabs button.active {
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border-top: 2px solid #333;
}

.flex {
  display: flex;
}

.jc-sb {
  justify-content: space-between;
}

.gap4 {
  gap: 0.4rem;
}

.sec_box {
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0 0 0.7rem 0 rgba(84, 90, 109, 0.15);
  /* overflow-x: auto; */
}
.sec_box:not(:last-of-type) {
  margin-bottom: 2.8rem;
}

/* .half_box {
  width: 50%;
  display: inline-block;
} */
.half_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.4rem;
}

.half_box > * {
  width: 50%;
}

/* 수정할 것 */
.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.8rem;
}
.paging ul {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.paging li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  color: #bbb;
  cursor: pointer;
}
.paging li a.active {
  color: #222;
}
.paging li a.arr_btn {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.paging li a.first {
  background-image: url('/images/ico/ico_first_page.svg');
}
.paging li a.prev {
  background-image: url('/images/ico/ico_prev_page.svg');
}
.paging li a.next {
  background-image: url('/images/ico/ico_next_page.svg');
}
.paging li a.last {
  background-image: url('/images/ico/ico_last_page.svg');
}

/* 팝업 */
.tit_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 6.4rem;
  padding: 0 3.2rem;
  border-bottom: 0.1rem solid #ddd;
}
.tit_box h1 {
  font-weight: bold;
  font-size: 2rem;
}
.tit_box .close_btn {
  width: 1.8rem;
  height: 1.8rem;
  background: url('/images/ico/ico_close_btn.png') no-repeat center / contain;
}

.content_box {
  padding: 3.2rem 2.4rem;
}

/* 버튼 */

.table_top_box {
  padding: 0 0.4rem;
  margin-bottom: 1rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.table_top_box .left_box {
  gap: 1.4rem;
  display: flex;
  align-items: center;
}
.top_left {
  gap: 1.4rem;
  margin-top: -0.2rem;
  display: flex;
  align-items: center;
}

.table_top_box .left_box .total_box,
.table_top_box .left_box .top_left {
  margin-top: 2.4rem;
}
.table_top_box .left_box .total_box p li {
  margin: 0;
  padding: 0;
  position: relative;
}

.top_left li:not(:last-of-type)::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  right: -0.8rem;
  width: 0.1rem;
  height: calc(100% - 0.2rem);
  background-color: #000;
}

.table_top_box .right_box {
  gap: 1.4rem;
}
