 /* 검색바 */
.search {
  display: flex;
  justify-content: flex-end;
}

.search form {
  display: flex;
  width: 476px;
  height: 50px;
  border:1px solid #B3B3B3;
  border-radius: 10px;
  overflow: hidden;
}

.search .search-select {
  width: 160px;
  height: 100%;
}

.search .search-input {
  display: flex;
  width: 100%;
  height: 100%;
}

.search select {
  width: 100%;
  height: 100%;
  padding: 0px 30px;
  font-size: 1.6rem;
  background: url('/shop/asset/img/common/sch_select.png') no-repeat right 30px center;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  font-size: 1.6rem;
}

.search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: #37308e url('/shop/asset/img/icon/ico-search.png') no-repeat center;
}

.search-flex-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-flex-box .search-choice{
  display: flex;
  align-items: center;
}
.search-flex-box .search-choice .cho-btn{
  padding: 0 10px;
  display: block;
  position: relative;
}
.search-flex-box .search-choice .cho-btn + .cho-btn:before{
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #222;
}
.search-flex-box .search-choice .cho-btn:last-child{
  padding-right: 0;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .search select{
    font-size: 1.6rem;
    padding: 0 15px;
  }
  .search form{height: 50px;}
  .search .search-select{
    width: 130px;
  }
}
@media screen and (max-width:576px) {
.search select{
  font-size: 1.4rem;
}
}


/* 페이지네이션 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:30px;
  height:30px;
	margin:0px 8px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:1.8rem;
  transition:all ease-out .15s;
  color: #898989;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#333333;
	font-weight:800;
}

.pagination a.pagination-prev,
.pagination a.pagination-next,
.pagination a.pagination-backward,
.pagination a.pagination-forward {
  border: 1px solid #dcdcdc;
}

.pagination a.pagination-prev {
	margin-right:16px;
  background-image: url('/shop/asset/img/bbs/page_btn_prev.png');
}
.pagination a.pagination-backward{
  background-image: url('/shop/asset/img/bbs/page_btn_prev02.png');
}

.pagination a.pagination-next {
	margin-left:16px;
  background-image: url('/shop/asset/img/bbs/page_btn_next.png');
}

.pagination a.pagination-forward{
  background-image: url('/shop/asset/img/bbs/page_btn_next02.png');
}

@media screen and (max-width:1200px) {
  .pagination a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .pagination {
    margin-top: 60px;
  }

  .pagination a {
    width: 30px;
    height:30px;
    margin: 0px 4px;
  }
}
@media screen and (max-width:768px) {
  .pagination {
    margin-top: 40px;
  }

  .pagination a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width:576px) {
  .pagination {
    margin-top:30px;
  }

  .pagination a {
    width:26px;
    height:26px;
    margin: 0px 2px;
    background-size: auto 8px;
    font-size: 1.4rem;
  }
}


/* 카테고리 탭메뉴 */
.bbs-category {
  max-width:565px;
  width: 100%;
  margin: 0 auto 60px;
}

.bbs-category.mw100 {
  max-width: 100%;
}

.bbs-category ul {
  display: flex;
  gap:10px;
  padding: 10px;
  background: #E5F5F5;
  border-radius: 100px;
}

.bbs-category li {
  flex:1 1;
}

.bbs-category a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 100px;
  background: #fff;
  font-size: 1.8rem;
  transition: all .3s ease;
}

.bbs-category li.on a {
  font-weight: 700;
  color:#fff;
  background: #00A19A;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
.bbs-category a{
  font-size: 1.4rem;
  height: 30px;
}
}


/* 게시판 상세 - 기본형 */
.bbs-basic-view {
  border-top: 3px solid #00A19A;
}

.bbs-basic-view .bbs-view-head {
  padding: 40px 0px 20px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-basic-view .bbs-view-head .top {
  display: flex;
  align-items: center;
  gap:20px;
}

.bbs-basic-view .bbs-view-head .btm {
  display: flex;
  justify-content: flex-end;
}

.bbs-basic-view .bbs-view-head .cls {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0px 12px;
  border-radius: 5px;
  background-color: #00A19A;
  font-size: 1.8rem;
  font-weight: 700;
  color:#fff;
}

.bbs-basic-view .bbs-view-head .dl {
  display: flex;
  gap:30px;
}

.bbs-basic-view .bbs-view-head dd {
  display: flex;
  align-items: center;
  gap:10px;
}

.bbs-basic-view .bbs-view-head i {
  display: block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bbs-basic-view .bbs-view-head i.icon01 {
  background-image: url('/shop/asset/img/icon/ico_write.png');
}

.bbs-basic-view .bbs-view-head i.icon02 {
  background-image: url('/shop/asset/img/icon/ico_data.png');
}

.bbs-basic-view .bbs-view-file {
  padding: 20px 0px;
}

.bbs-basic-view .bbs-view-file .file {
  padding: 20px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.bbs-basic-view .bbs-view-file .file a {
  display: flex;
  align-items: center;
  gap:10px;
}

.bbs-basic-view .bbs-view-file .file i {
  display: block;
  width: 20px;
  height:20px;
  background: url('/shop/asset/img/icon/ico_file.png') no-repeat center / 20px auto;
}

.bbs-basic-view .bbs-view-file .file span {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: calc(100% - 30px);
}

.bbs-basic-view .bbs-view-area {
  min-height: 400px;
  padding: 20px 0px;
  border-bottom: 1px solid #D9D9D9;
}

.bbs-basic-view .bbs-view-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 40px;
}

.bbs-basic-view .bbs-view-nav .nav-prev,
.bbs-basic-view .bbs-view-nav .nav-next {
  max-width: 430px;
  width: 100%;
}

.bbs-basic-view .bbs-view-nav .nav-prev i,
.bbs-basic-view .bbs-view-nav .nav-next i {
  display: inline-block;
  width: 34px;
  height: 16px;
  background-repeat: no-repeat;
}

.bbs-basic-view .bbs-view-nav .nav-prev i {
  background-position:left center;
  background-image: url('/shop/asset/img/common/nav_prev.png');
}

.bbs-basic-view .bbs-view-nav .nav-next i {
  background-position:right center;
  background-image: url('/shop/asset/img/common/nav_next.png');
}

.bbs-basic-view .bbs-view-nav .nav-prev span,
.bbs-basic-view .bbs-view-nav .nav-next span {
  display: block;
  margin: 20px 0px;
}

.bbs-basic-view .bbs-view-nav .nav-prev p,
.bbs-basic-view .bbs-view-nav .nav-next p {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  white-space: nowrap;
}

.bbs-basic-view .bbs-view-nav .nav-prev {
  left: 0;
}

.bbs-basic-view .bbs-view-nav .nav-next {
  right: 0;
  text-align: right;
}

.bbs-basic-view .bbs-view-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  margin: 0 auto;
  background-color: #00A19A;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
}

.bbs-basic-view .bbs-view-nav:not(.sol) .nav-back {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.bbs-basic-view .bbs-view-comment {
  margin-top: 100px;
}

.bbs-basic-view .bbs-view-comment.mt-60{
  margin-top:60px;
}

.bbs-basic-view .bbs-view-comment .comment-title {
  display: flex;
  align-items: center;
  gap:10px;
}

.bbs-basic-view .bbs-view-comment .comment-title i {
  display: block;
  width:30px;
  height: 30px;
  background: url('/shop/asset/img/icon/ico_comment.png') no-repeat center / cover;
}
.bbs-basic-view .bbs-view-comment .comment-title i.commet02{
  width: 24px;
  height: 21px;
  background-image: url('/shop/asset/img/icon/ico_comment02.png');
}

.bbs-basic-view .bbs-view-comment .comment-textarea {
  height: 240px;
  background-color: #F5F5F5;
  border-radius: 10px;
  overflow-y: auto;
}

.bbs-basic-view .bbs-view-comment .comment-textarea .textarea {
  width: 100%;
  padding: 30px;
}

.bbs-basic-view .bbs-view-comment .comment-textarea .textarea p {
  font-size: 1.8rem;
}

@media screen and (max-width:1200px) {
  .bbs-basic-view .bbs-view-nav .nav-prev,
  .bbs-basic-view .bbs-view-nav .nav-next{width: 50%;}

  .bbs-basic-view .bbs-view-nav{flex-wrap: wrap;}
  .bbs-basic-view .bbs-view-nav:not(.sol) .nav-back{
    position: unset; transform: none;
    order: 3;
    margin-top: 30px;
  }
  .bbs-basic-view .bbs-view-comment{
    margin-top: 50px;
  }
  }
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-basic-view .bbs-view-head{
    padding: 20px 0 10px;
  }

  .bbs-basic-view .bbs-view-nav .nav-back{
    height: 50px;
    font-size: 1.8rem;
  }
  .bbs-basic-view .bbs-view-comment .comment-textarea .textarea{
    padding: 15px;
  }
  .bbs-basic-view .bbs-view-comment{
    margin-top: 30px;
  }
  .bbs-basic-view .bbs-view-area{
    min-height: 250px;
  }
}
@media screen and (max-width:576px) {
  .bbs-basic-view .bbs-view-nav .nav-back,
  .bbs-basic-view .bbs-view-comment .comment-textarea .textarea p{
    font-size: 1.6rem;
  }
}


/* 게시판 문의 - 기본형 */
.bbs-basic-form .tit {
  position: relative;
  display: flex;
  align-items: center;
  gap:20px;
}

.bbs-basic-form .tit::before {
  content: "";
  display: block;
  width: 8px;
  height: 38px;
  background-color: #00A19A;
}

.bbs-basic-form .block {
  padding: 40px;
  background-color: #F5F5F5;
  border-radius: 20px;
}

.bbs-basic-form .table {
  display: flex;
  flex-wrap: wrap;
  gap:40px;
}

.bbs-basic-form .table .row {
  flex:1 1 calc(50% - 40px);
  max-width: 50%;
}

.bbs-basic-form .table .row.w33 {
  flex:1 1 calc(33.33% - 40px);
  max-width: 33.33%;
}

.bbs-basic-form .table .row.w50 {
  flex:1 1 calc(50.50% - 40px);
  max-width: 50.50%;
}

.bbs-basic-form .table .row.w100 {
  flex:1 1 calc(100% - 40px);
  max-width: 100%;
}

.bbs-basic-form .table input {
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 10px;
  font-size: 1.8rem;
}

.bbs-basic-form .table select {
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position:right 20px center;;
  background-image:url('/shop/asset/img/icon/ico_select.png');
  border-radius: 10px;
  font-size: 1.8rem;
}

.bbs-basic-form .table textarea {
  display: block;
  resize: none;
  width: 100%;
  height:200px;
  padding:20px;
  border-radius: 10px;
  font-size: 1.8rem;
}

.bbs-basic-form .table .email-wrap,
.bbs-basic-form .table .tel-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bbs-basic-form .table .email-wrap .box,
.bbs-basic-form .table .tel-wrap .box {
  width: 29.6%;
}

.bbs-basic-form .table .email-wrap span,
.bbs-basic-form .table .tel-wrap span {
  width: 6.25%;
}

.bbs-basic-form .table .addr-wrap{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
}

.bbs-basic-form .table .keyword-wrap {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}

.bbs-basic-form .table .addr-wrap .box {
  flex:1 1 calc(50% - 10px);
  max-width: 50%;
}


.bbs-basic-form .table .keyword-wrap .box {
  flex:1 1 calc(16.666% - 20px);
  max-width: 16.666%;
}


.bbs-basic-form .table .addr-wrap-search {
  position: relative;
  padding-right: 130px;
  border-radius: 10px;
  overflow: hidden;
}

.bbs-basic-form .table .addr-wrap-search input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.bbs-basic-form .table .addr-wrap-search button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  right: 0;
  width: 130px;
  height: 100%;
  background-color: #E2E2E2;
  font-size: 1.8rem;
}

.bbs-basic-form .down-wrap {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}

.bbs-basic-form .down-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  height: 50px;
  padding:0px 20px;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.8rem;
  max-width: calc(33.333% - 6.666px);

}
.bbs-basic-form .down-btn .down-txt{
overflow: hidden;

    /* 2. 텍스트를 한 줄로 강제합니다. */
    white-space: nowrap;

    /* 3. 넘치는 텍스트에 줄임표(...)를 표시합니다. */
    text-overflow: ellipsis;

    /* 4. 블록 요소가 너비를 갖도록 설정합니다. (선택 사항이지만 안전을 위해 추가) */
    display: block;
    max-width: calc(100% - 45px);
    width: 100%;
}

.bbs-basic-form .down-btn::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url('/shop/asset/img/icon/ico_dld02.png') no-repeat center / cover;
}

.bbs-basic-form .file-wrap {
  width: 49.24%;
}

.bbs-basic-form .file-wrap.w100{
  width: 100%;
}

.bbs-basic-form .file-wrap label {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  padding-right: 130px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.bbs-basic-form .file-wrap input {
  position: absolute;
	top:0;
	left:0;
	width: 100%;
  height: 100%;
	opacity:0;
  cursor: pointer;
}

.bbs-basic-form .file-wrap span {
  display: block;
}

.bbs-basic-form .file-wrap span.file-holder {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding:0px 20px;
  font-size: 1.8rem;
}

.bbs-basic-form .file-wrap span.file-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  right: 0;
  width: 130px;
  height: 100%;
  background-color: #E2E2E2;
  font-size: 1.8rem;
}

.bbs-basic-form .agree label {
  display: flex;
  align-items: center;
  position: relative;
  gap:10px;
}

.bbs-basic-form .agree input {
  position: absolute;
	top:0;
	left:0;
	width: 30%;
  height: 100%;
	opacity:0;
  cursor: pointer;
}

.bbs-basic-form .agree i {
  display: block;
  min-width: 30px;
  width: 30px;
  height: 30px;
  background: url('/shop/asset/img/icon/ico_chk_off.png') no-repeat center / cover;
}

.bbs-basic-form .agree input:checked ~ i {
  background-image: url('/shop/asset/img/icon/ico_chk02_on.png');
}

.bbs-basic-form .agree-textarea {
  display: none;
  margin-top: 40px;
}

.bbs-basic-form .agree-textarea-wrap {
  height: 140px;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
}

.bbs-basic-form .btn-group {
  display: flex;
  justify-content: center;
  gap:20px;
}

.bbs-basic-form .btn-group .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height:70px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.bbs-basic-form .btn-group .btn01 {
  color:#fff;
  background-color: #00A19A;
}

.bbs-basic-form .btn-group .btn02 {
  background-color: #E2E2E2;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-basic-form .block{
    padding: 20px;
  }
}
@media screen and (max-width:768px) {
.bbs-basic-form .table .row.w50,
.bbs-basic-form .table .row.w33,
.bbs-basic-form .table .row{
  width: 100%;
  max-width: none;
  flex: none;
}
.bbs-basic-form .table{
  gap: 20px;
}

.bbs-basic-form .table .addr-wrap .box{
  flex: none;
  max-width: 100%;
  width: 100%;
}
.bbs-basic-form .file-wrap{
  width: 100%;
}
.bbs-basic-form .table .addr-wrap .box.m-none,
.bbs-basic-form .table .row.m-none{
  display: none;
}

.bbs-basic-form .table .keyword-wrap .box{
    flex: 1 1 calc(33.333% - 20px);
    max-width: 33.333%;
  }

  .bbs-basic-form .btn-group .btn{
    height: 50px;
    font-size: 1.8rem;
  }

  .bbs-basic-form .tit{
    gap: 10px;
  }

  .bbs-basic-form .tit::before{
    width: 4px;
    height: 24px;
  }

  .bbs-basic-form .table select,
  .bbs-basic-form .table input,
  .bbs-basic-form .file-wrap span.file-btn{
    font-size: 1.6rem;
  }
  .bbs-basic-form .file-wrap span.file-btn{
    width: 80px;
  }
  .bbs-basic-form .file-wrap label{
    padding-right: 80px;
  }

  .bbs-basic-form .table .addr-wrap-search button{
    font-size: 1.6rem;
    width: 100px;
  }

  .bbs-basic-form .table .addr-wrap-search{
    padding-right: 100px;
  }
}
@media screen and (max-width:576px) {
  .bbs-basic-form .down-btn{
    max-width: 100%;
    width: 100%;
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .bbs-basic-form .table select,
  .bbs-basic-form .table input,
  .bbs-basic-form .file-wrap span.file-btn,
  .bbs-basic-form .table .addr-wrap-search button{
    font-size: 1.4rem;
  }
}


/* 국가표준확산지원사업 - 사업참여현황 목록 */
.bbs-support .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}

.bbs-support .table th,
.bbs-support .table td {
  font-size: 1.8rem;
  border:1px solid #B3B3B3;
}

.bbs-support .table th {
  height: 40px;
  padding: 10px;
  background-color: #E5F5F5;
}

.bbs-support .table td {
  height: 60px;
  padding: 10px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
.bbs-support .table th,
.bbs-support .table td{
  font-size: 1.4rem;
}
}


/* 사업신청 - 사업 신청하기 목록 */
.bbs-business .list {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.bbs-business .list li {
  flex:1 1 33.33%;
  max-width: 33.33%;
  padding: 14px;
}

.bbs-business .list .card {
  position: relative;
}

.bbs-business .list .area {
  padding:50px;
  background-color: #E5F5F5;
  border-radius: 10px;
}

.bbs-business .list .point {
  position: absolute;
  right:0;
  bottom:0;
  width: 70px;
  height: 70px;
}

.bbs-business .list .point span {
	display: block;
	background-color: transparent;
}

.bbs-business .list .point span:first-child {
	position: absolute;
	right:0px;
	bottom:0px;
	width:100%;
	height:100%;
	border-radius:50% 0 0 0;
	background-color: #fff;
}

.bbs-business .list .point span:first-child::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -10px;
	width: 10px;
	height: 10px;
	border-right: 1px solid #fff;
	box-sizing: content-box;
	background: radial-gradient(circle at 0 0, transparent 70%, #fff 71%);
}

.bbs-business .list .point span:first-child::after {
	content: "";
	position: absolute;
	top: -10px;
	right: 0;
	width: 10px;
	height: 10px;
	border-bottom: 1px solid #fff;
	box-sizing: content-box;
	background: radial-gradient(circle at 0 0, transparent 70%, #fff 71%);
}

.bbs-business .list .point span:last-child {
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 0;
	width:55px;
	height:55px;
}

.bbs-business .list .point span:last-child::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #00A19A;
}

.bbs-business .list .point span:last-child::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/shop/asset/img/sub/business/app/ico_arr.png') no-repeat center / auto 16px;
  transition:all .4s cubic-bezier(.25,.46,.45,.94);
}


.bbs-business .list .category {
  font-size: 2rem;
  font-weight:700;
  color:#00a19a;
  text-decoration: underline;
  text-underline-offset:8px;
  margin-bottom:30px;
}

.bbs-business .list .subject {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp:2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size:2.4rem;
  font-weight:700;
  line-height:34px;
  height:70px;
  margin-bottom:80px;
}

.bbs-business .list .info {
  font-size: 0px;
}

.bbs-business .list .info dd {
  display: flex;
  gap:20px;
}

.bbs-business .list .info dd:not(:last-child) {
  margin-bottom:10px;
}

.bbs-business .list .info .dot {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:90px;
  height:30px;
  background: linear-gradient(90deg,rgba(0, 47, 135, 1) 0%, rgba(0, 161, 154, 1) 100%);
  border-radius:50px;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}

.bbs-business .list .info .txt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: calc(100% - 110px);
  font-size:1.8rem;
  line-height:30px;
}

.bbs-business .list .info .txt01 {
  -webkit-line-clamp:1;
}

.bbs-business .list .info .txt02 {
  -webkit-line-clamp:2;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-business .list li{
    flex: none;
    max-width: none;
    width: 50%;
  }
  .bbs-business .list .subject{
    margin-bottom: 40px;
  }
}
@media screen and (max-width:768px) {
  .bbs-business .list li{
    width: 100%;
  }
  .bbs-business .list .area{
    padding: 25px;
  }
  .bbs-business .list .subject{
    height: auto;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .bbs-business .list .info .txt{
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {

}


/* 사업신청 - 사업 신청하기 상세 */
.bbs-business-view .bbs-view-head {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #A4A4A4;;
}

.bbs-business-view .bbs-view-head .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width:90px;
  height:30px;
  background: linear-gradient(90deg,rgba(0, 47, 135, 1) 0%, rgba(0, 161, 154, 1) 100%);
  border-radius:50px;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}

.bbs-business-view .bbs-view-head .data {
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
}

.bbs-business-view .bbs-view-head .data::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url('/shop/asset/img/sub/business/app/ico_time.png') no-repeat center / cover;
}

.bbs-business-view .bbs-view-area .din {
  display: flex;
  justify-content: space-between;
}

.bbs-business-view .bbs-view-area .lt {
  width: 40%;
}

.bbs-business-view .bbs-view-area .rt {
  width: 54%;
}

.bbs-business-view .bbs-view-area .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(660/567*100%);
  margin-bottom: 30px;
  border-radius:20px;
  overflow: hidden;
}

.bbs-business-view .bbs-view-area .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-business-view .bbs-view-area .box {
  padding: 30px;
  background-color: #E5F5F5;
  border-radius: 20px;
}

.bbs-business-view .bbs-view-area .box dt {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #B3B3B3;
}

.bbs-business-view .bbs-view-area .box dd {
  display: flex;
  align-items: center;
}

.bbs-business-view .bbs-view-area .box dd:not(:last-child) {
  margin-bottom: 20px;
}

.bbs-business-view .bbs-view-area .box strong {
  position: relative;
  width: 115px;
  padding-left:40px;
}

.bbs-business-view .bbs-view-area .box i {
  display: block;
  position: absolute;
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bbs-business-view .bbs-view-area .box i.icon01 {
  background-image: url('/shop/asset/img/sub/business/app/ico_home.png');
}

.bbs-business-view .bbs-view-area .box i.icon02 {
  background-image: url('/shop/asset/img/sub/business/app/ico_tel.png');
}

.bbs-business-view .bbs-view-area .box span {
  width: calc(100% - 115px);
}

.bbs-business-view .bbs-view-area .info dl {
  padding-left: 20px;
}

.bbs-business-view .bbs-view-area .info dl:not(:last-child) {
  padding-bottom: 30px;
}

.bbs-business-view .bbs-view-area .info dt {
  position: relative;
}

.bbs-business-view .bbs-view-area .info dt::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: -20px;
  transform: translateY(-50%);
  width:8px;
  height: 8px;
  background-color: #00A19A;
}

.bbs-business-view .bbs-view-area .info .down-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  height:50px;
  padding: 0px 20px;
  border-radius: 40px;
  background-color: #E5F5F5;
}

.bbs-business-view .bbs-view-area .info .down-link::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 26px;
  background: url('/shop/asset/img/icon/ico_dld01.png') no-repeat center / cover;
}

.bbs-business-view .bbs-view-area .action {
  display: flex;
  gap:10px;
}

.bbs-business-view .bbs-view-area .action .btn {
  flex:1 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  border-radius: 10px;
  font-size: 2rem;
  transition:all .4s ease;
}

.bbs-business-view .bbs-view-area .action .btn01 {
  color:#fff;
  background-color: #00A19A;
}

.bbs-business-view .bbs-view-area .action .btn02 {
  background-color: #E5F5F5;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-business-view .bbs-view-area .din{
    flex-wrap: wrap;
    gap: 20px;
  }
  .bbs-business-view .bbs-view-area .lt,
  .bbs-business-view .bbs-view-area .rt{
    width: 100%;
  }
}
@media screen and (max-width:768px) {
.bbs-business-view .bbs-view-area .action .btn{
  height: 50px;
  font-size: 1.8rem;
}
}
@media screen and (max-width:576px) {
  .bbs-business-view .bbs-view-area .action .btn{
    font-size: 1.6rem;
  }
}


/* 사업신청 - 사업 신청하기 폼 */
.bbs-form-business .article01 p {
  display: flex;
  align-items: center;
  gap:10px;
}

.bbs-form-business .article01 .din {
  display: flex;
}

.bbs-form-business .article01 .lt {
  width: 330px;
}

.bbs-form-business .article01 .rt {
  position: relative;
  width: calc(100% - 330px);
  padding-left: 80px;
}

.bbs-form-business .article01 .rt::before {
  content: "";
  display: block;
  position: absolute;
  top:50%;
  left: 40px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #B3B3B3;
}

.bbs-form-business .radio-wrap,
.bbs-form-business .check-wrap {
  display: flex;
  flex-wrap: wrap;
  gap:10px;
}

.bbs-form-business .radio-wrap li,
.bbs-form-business .check-wrap li {
  max-width: 150px;
  width: 100%;
}

.bbs-form-business .radio-wrap li.w50{
  max-width: 50%;
  flex:1 1 calc(50% - 5px)
}

.bbs-form-business .radio-wrap label,
.bbs-form-business .check-wrap label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap:10px;
  width: 100%;
  height:50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.bbs-form-business .radio-wrap input,
.bbs-form-business .check-wrap input {
  position: absolute;
	top:0;
	left:0;
	width: 100%;
  height: 100%;
	opacity:0;
  cursor: pointer;
}

.bbs-form-business .radio-wrap i,
.bbs-form-business .check-wrap i {
  display: block;
  width: 30px;
  height: 30px;
  background: url('/shop/asset/img/icon/ico_chk_off.png') no-repeat center / cover;
}

.bbs-form-business .radio-wrap span,
.bbs-form-business .check-wrap span {
  font-size:1.8rem;
}

.bbs-form-business .radio-wrap label.on,
.bbs-form-business .check-wrap label.on {
  background-color: #00A19A;
}

.bbs-form-business .radio-wrap input:checked ~ i,
.bbs-form-business .check-wrap input:checked ~ i {
  background-image: url('/shop/asset/img/icon/ico_chk01_on.png');
}

.bbs-form-business .radio-wrap input:checked ~ span,
.bbs-form-business .check-wrap input:checked ~ span {
  color:#fff;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-form-business .article01 .din{
    flex-wrap: wrap;
    gap: 40px 0;
  }
  .bbs-form-business .article01 .lt,
  .bbs-form-business .article01 .rt{
    width: 100%;
  }

  .bbs-form-business .article01 .rt{
    padding-left: 0;
  }
  .bbs-form-business .article01 .rt:before{
    content: none;
  }

}
@media screen and (max-width:768px) {
  .bbs-form-business .radio-wrap span,
  .bbs-form-business .check-wrap span{
    font-size: 1.6rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-form-business .radio-wrap span,
  .bbs-form-business .check-wrap span{
    font-size: 1.4rem;
  }
}


/* ICT 기자재성능시험접수 목록 */
.bbs-ict .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #00A19A;
}

.bbs-ict .table th,
.bbs-ict .table td {
  padding: 10px;
  height: 60px;
  font-size: 1.8rem;
}

.bbs-ict .table th:not(:last-child),
.bbs-ict .table td:not(:last-child) {
  border-right:1px solid #B3B3B3;
}

.bbs-ict .table td {
  border-bottom: 1px solid #B3B3B3;
}

.bbs-ict .table td.subject {
  padding: 10px 30px;
}

.bbs-ict .table th {
  background-color:#E5F5F5 ;
}

.bbs-ict .table a {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
.bbs-ict .table th,
.bbs-ict .table td{
  font-size: 1.6rem;
}
}
@media screen and (max-width:576px) {

}


/* 알림 소식 - 공지사항 */
.bbs-notice .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #00A19A;
}

.bbs-notice .table th,
.bbs-notice .table td {
  padding: 10px;
  height: 60px;
  font-size: 1.8rem;
}

.bbs-notice .table th:not(:last-child),
.bbs-notice .table td:not(:last-child),
.bbs-inquiry.border-table .table th:not(:last-child),
.bbs-inquiry.border-table .table td:not(:last-child){
  border-right:1px solid #B3B3B3;
}

.bbs-notice .table td {
  border-bottom: 1px solid #B3B3B3;
}

.bbs-notice .table td.subject {
  padding: 10px 30px;
}

.bbs-notice .table th {
  background-color:#E5F5F5 ;
}

.bbs-notice .table a {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-notice .table th,
.bbs-notice .table td {
  font-size: 1.6rem;
  height: 50px;
}

}
@media screen and (max-width:576px) {

}


/* 알림소식 - 홍보(카드뉴스) */
.bbs-media .list {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.bbs-media .list li {
  flex:1 1 25%;
  max-width: 25%;
  padding: 14px;
}

.bbs-media .list a {
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(157, 157, 157, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.bbs-media .list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}

.bbs-media .list .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-media .list .con {
  padding:30px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-media .list li{
      flex:1 1 33.333%;
      max-width: 33.333%;
  }

}
@media screen and (max-width:768px) {
  .bbs-media .list li{
      flex:1 1 50%;
      max-width: 50%;
  }
  .bbs-media .list .con{
    padding: 15px;
  }
}
@media screen and (max-width:576px) {

}


/* 알림소식 - 홍보(영상) */
.bbs-video .list {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.bbs-video .list li {
  flex:1 1 33.33%;
  max-width: 33.33%;
  padding: 14px;
}

.bbs-video .list a {
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(157, 157, 157, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.bbs-video .list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(252/448*100%);
}

.bbs-video .list .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-video .list .con {
  padding:30px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-video .list li{
      flex:1 1 50%;
      max-width: 50%;
  }

}
@media screen and (max-width:768px) {
  .bbs-video .list .con{
    padding: 15px;
  }
}
@media screen and (max-width:576px) {

}


/* 알림소식 - 홍보(우수사례) */
.bbs-case .list {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.bbs-case .list li {
  flex:1 1 50%;
  max-width: 50%;
  padding: 14px;
}

.bbs-case .list a {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(157, 157, 157, 0.3);
  border-radius: 20px;
  overflow: hidden;
}

.bbs-case .list .img {
  position: relative;
  width: 44%;
  height: 0;
  padding-top: calc(300/686*100%);
  overflow: hidden;
}

.bbs-case .list .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-case .list .con {
  width: 56%;
  padding:30px 50px;
}

.bbs-case .list .category {
  text-decoration: underline;
  text-underline-offset:8px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-case .list li{
        flex: 1 1 100%;
      max-width: 100%;
  }

}
@media screen and (max-width:576px) {
  .bbs-case .list .con{
    padding: 20px;
  }
}


/* 알림소식 - 문의하기 목록 */
.bbs-inquiry .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: 2px solid #00A19A;
}

.bbs-inquiry .table th,
.bbs-inquiry .table td {
  padding: 10px;
  height: 60px;
  font-size: 1.8rem;
}

.bbs-inquiry .table td {
  border-bottom: 1px solid #B3B3B3;
}

.bbs-inquiry .table td.subject {
  padding: 10px 30px;
}

.bbs-inquiry .table th {
  background-color:#E5F5F5 ;
}

.bbs-inquiry .table a {
  display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
  overflow: hidden;
}

.bbs-inquiry .action {
  display: flex;
  justify-content: flex-end;
}

.bbs-inquiry .write-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  background-color: #00A19A;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-inquiry .table th,
.bbs-inquiry .table td{
  font-size: 1.6rem;
  height: 50px;
}
  .bbs-inquiry .write-btn{
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px) {
  .bbs-inquiry .write-btn{
    font-size: 1.6rem;
  }
}


/* 알림소식 - FAQ */
.bbs-faq .list li {
  cursor: pointer;
  background-color: #fff;
  border:1px solid #AEAEAE;
  border-radius: 20px;
  transition: all .3s ease;
}

.bbs-faq .list li:not(:last-child){
  margin-bottom: 20px;
}

.bbs-faq .list .question {
  position: relative;
  margin: 0px 40px;
  padding: 30px 80px 30px 0px;
}

.bbs-faq .list .question i {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00A19A;
}

.bbs-faq .list .question i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url('/shop/asset/img/sub/alarm/faq/ico_arr.png') no-repeat center / 14px auto;
  transition: all .3s ease;
}

.bbs-faq .list .answer {
  max-height:0;
  margin: 0px 40px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.bbs-faq .list .answer-wrap {
  padding: 30px 0px;
  border-top: 1px solid #B3B3B3;
}

.bbs-faq .list li.active {
  border-color: transparent;
  background-color: #F5F5F5;
}

.bbs-faq .list li.active .question i::before {
  transform: rotate(180deg);
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .bbs-faq .list .question{
    margin: 0 20px;
    padding: 20px 25px 20px 0px;
  }
  .bbs-faq .list .answer{
    margin: 0 20px;
  }
  .bbs-faq .list .answer-wrap{
    padding: 20px 0;
  }

  .bbs-faq .list .question i{
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width:576px) {

}


/* 표준제품 공통 */
.prd-category {
  max-width:940px;
  width: 100%;
  margin:0 auto 80px;
}

.prd-category ul {
  display: flex;
  gap:10px;
  padding: 10px;
  border-radius: 500px;
  background-color: #E5F5F5;
}

.prd-category li {
  flex:1 1;
}

.prd-category a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:10px;
  width: 100%;
  height: 130px;
  background-color: #fff;
  border-radius: 100px;
}

.prd-category i {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E5F5F5;
}

.prd-category i::before {
  content: "";
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.prd-category i.icon01::before {
  background-image: url('/shop/asset/img/sub/product/ico_category01.png');
}

.prd-category i.icon02::before {
  background-image: url('/shop/asset/img/sub/product/ico_category02.png');
}

.prd-category i.icon03::before {
  background-image: url('/shop/asset/img/sub/product/ico_category03.png');
}

.prd-category p {
  font-size: 1.8rem;
}

.prd-category li.on a {
  background-color: #00A19A;
}

.prd-category li.on i {
  background-color: #fff;
}

.prd-category li.on p {
  font-weight: 700;
  color:#fff;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* 표준제품 목록 */
.bbs-product .prd-lnb {
  position: absolute;
  top:50px;
  left:0;
  width:330px;
  padding: 30px 20px;
  border: 1px solid #aeaeae;
  border-radius: 10px;
}

.bbs-product .prd-lnb dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #B3B3B3;
}

.bbs-product .prd-lnb dt button {
  display: block;
  width:21px;
  height: 21px;
  background: url('/shop/asset/img/sub/product/ico_reset.png') no-repeat center / cover;
}

.bbs-product .prd-lnb label {
  display: flex;
  align-items: center;
  position: relative;
  gap:10px;
}

.bbs-product .prd-lnb label:not(:last-child) {
  margin-bottom:10px;
}

.bbs-product .prd-lnb input {
  position: absolute;
	top:0;
	left:0;
	width: 100%;
  height: 100%;
	opacity:0;
  cursor: pointer;
}

.bbs-product .prd-lnb i {
  display: block;
  width: 16px;
  height: 16px;
  background: url('/shop/asset/img/sub/product/ico_chk_off.png') no-repeat center / cover;
}

.bbs-product .prd-lnb input:checked ~ i {
  background-image: url('/shop/asset/img/sub/product/ico_chk_on.png');
}

.bbs-product .prd-lnb .result-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #00A19A;
  border-radius: 10px;
  font-size: 1.6rem;
  color:#fff;
}

.bbs-product .list-wrap {
  position: relative;
  padding-left:370px;
}

.bbs-product .list {
  display: flex;
  flex-wrap: wrap;
  margin: -30px -10px;
}

.bbs-product .list li {
  flex:1 1 33.33%;
  max-width: 33.33%;
  padding:30px 10px;
}

.bbs-product .list .card {
  position: relative;
}

.bbs-product .list .wish {
  display: block;
  position: absolute;
  top:20px;
  right: 20px;
  width: 28px;
  height: 26px;
  background: url('/shop/asset/img/icon/ico_wish_off.png') no-repeat center / cover;
  z-index: 10;
}

.bbs-product .list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top:100%;
  border:1px solid #aeaeae;
  overflow: hidden;
}

.bbs-product .list .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-product .list .badge dd {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding:0px 10px;
  background: linear-gradient(90deg,rgba(0, 47, 135, 1) 0%, rgba(0, 161, 154, 1) 100%);
  border-radius: 50px;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}

.bbs-product .list .badge dd:not(:last-child) {
  margin-right:5px;
}

.bbs-product .action {
  display: flex;
  justify-content: center;
}

.bbs-product .action button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  background-color: #00A19A;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
  max-width: 330%;
}
.m-prd-btn{
  display: none;
}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
  .bbs-product .list li{
    flex: 1 1 50%;
    max-width: 50%;
  }

  .bbs-product .prd-lnb{
    width: 280px;
  }
  .bbs-product .list-wrap{padding-left: 320px;}
}
@media screen and (max-width:768px) {
  .bbs-product .action button{
    height: 50px;
    font-size: 1.8rem;
  }
  .bbs-product .list .wish{
    top: 8px;
    right: 8px;
  }
  .bbs-product .list-wrap{
    padding-left: 0;
  }

  .bbs-product .prd-lnb{
    position: fixed;
    background: #fff;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    z-index: 11;
    padding: 0;
    transition: .5s;
  }
  .bbs-product .prd-lnb .prd-scroll{
    max-height: 70vh;
    overflow-y: auto;
    padding: 30px 10px;
  }
  .bbs-product .prd-lnb.open{
    transform: translateY(-50%) translateX(0);
  }
  .bbs-product .prd-lnb .m-prd-btn{
    content: '';
    width: 33px;
    height: 33px;
    position: absolute;
    left: 100%;
    top: 20px;
    background: #fff url(/shop/asset/img/icon/filter03.png)no-repeat center center / 20px 20px;
    border-radius: 0 10px 10px 0;
    border: 1px solid #a8a8a8;
    display: block;
  }

}
@media screen and (max-width:576px) {
  .bbs-product .list .badge dd{
    font-size: 1.4rem;
  }
}


/* 표준제품 상세 */
.bbs-product-view .din {
  display: flex;
  gap:100px;
}

.bbs-product-view .product-gallery {
  width: 565px;
}

.bbs-product-view .product-info {
  width: calc(100% - 665px);
}

.bbs-product-view .main-image {
  position: relative;
  width: 100%;
  border:1px solid #aeaeae;
}

.bbs-product-view .main-image .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top:calc(565/565*100%);
  overflow: hidden;
}

.bbs-product-view .main-image .img img {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-product-view .thumbnail-list {
  margin-top: 10px;
}

.bbs-product-view .thumbnail-list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(134/134*100%);
  background-color: #fff;
  border:1px solid #aeaeae;
  overflow: hidden;
  cursor: pointer;
}

.bbs-product-view .thumbnail-list .img img {
  display: block;
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.bbs-product-view .badge dd {
  display: inline-flex;
  align-items: center;
  gap:20px;
}

.bbs-product-view .badge dd:not(:last-child) {
  margin-right: 40px;
}

.bbs-product-view .badge em {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 30px;
  padding:0px 10px;
  background: linear-gradient(90deg,rgba(0, 47, 135, 1) 0%, rgba(0, 161, 154, 1) 100%);
  border-radius: 50px;
  font-size:1.6rem;
  font-weight:700;
  color:#fff;
}

.bbs-product-view .detail {
  border:1px solid #AEAEAE;
}

.bbs-product-view .detail-menu {
  display: flex;
  border-bottom: 1px solid #aeaeae;
}

.bbs-product-view .detail-menu li {
  flex:1 1;
  overflow: hidden;
}

.bbs-product-view .detail-menu li:not(:last-child) {
  border-right: 1px solid #aeaeae;
}

.bbs-product-view .detail-menu button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:50px;
  font-size: 1.8rem;
}

.bbs-product-view .detail-menu li.on button {
  font-weight: 700;
  color:#00A19A;
  background-color: #E5F5F5;
}

.bbs-product-view .detail-con {
  position: relative;
}

.bbs-product-view .detail-con > li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.bbs-product-view .detail-con > li.on {
  display: block;
  position:relative;
  height:auto;
}

.bbs-product-view .block {
  height: 340px;
  padding: 20px 30px;
  overflow-y: auto;
}

.bbs-product-view .block::-webkit-scrollbar-track {
	border: 1px solid #aeaeae;
  border-top: 0px;
  border-bottom: 0px;
  border-right: 0px;
	background-color: #FFFFFf;
}

.bbs-product-view .block::-webkit-scrollbar {
	width: 10px;
}

.bbs-product-view .block::-webkit-scrollbar-thumb {
	background-color: #aeaeae;
}

.bbs-product-view .spec dl,
.bbs-product-view .files dl  {
  display: flex;
}

.bbs-product-view .spec dl:not(:last-child),
.bbs-product-view .files dl:not(:last-child) {
  margin-bottom: 20px;
}

.bbs-product-view .spec dt,
.bbs-product-view .files dt  {
  width: 120px;
}

.bbs-product-view .spec dd,
.bbs-product-view .files dd {
  width: calc(100% - 120px);
}

@media screen and (max-width:1200px) {
  .bbs-product-view .din{
    gap: 50px;
  }
  .bbs-product-view .product-info{
    width: calc(100% - 615px);
  }
}
@media screen and (max-width:1024px) {
  .bbs-product-view .din{
    flex-wrap: wrap;
  }
  .bbs-product-view .product-gallery{
    width: 100%;
  }
  .bbs-product-view .product-info{
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .bbs-product-view .block{
    padding: 15px;
  }

}
@media screen and (max-width:576px) {

}


/* product view */

.product-top-cont{
  display: flex;
  gap: 90px;
  align-items: flex-start;
}
.product-top-cont .product-slide{
  max-width: 685px;
  width: 100%;
  display: flex;
  gap: 25px;
}
.product-top-cont .product-slide .sm-slide .swiper-wrapper{
  height: 100%;
}
.product-top-cont .product-slide .sm-slide{
  width: 90px;
}
.product-top-cont .product-slide .swiper_slider,
.product-top-cont .product-slide .swiper-container{height: 100%;}
.product-top-cont .product-slide .bg-slide{
  width: calc(100% - 115px);
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
}

.product-top-cont .bg-slide-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;

}
.product-top-cont .bg-slide-btn .bg-btn{
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: rgba(89,89,89,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-50%);
  cursor: pointer;
}
.product-top-cont .bg-slide-btn .bg-btn img{
  filter: invert(93%) sepia(93%) saturate(0%) hue-rotate(249deg) brightness(107%) contrast(107%);
}
.product-top-cont .bg-slide-btn .prev-btn{left: 0;}
.product-top-cont .bg-slide-btn .next-btn{right: 0;}

.product-top-cont .product-slide .sm-slide .img-box{
  position: relative;
  cursor: pointer;
}

.product-top-cont .product-slide .sm-slide .active-thumb .img-box{
  border-color: transparent;
}
.product-top-cont .product-slide .sm-slide .active-thumb .img-box:before{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #37308e;
  border-radius: 10px;
}

.product-top-cont .product-slide .img-box{
  aspect-ratio: 1/1;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.product-top-cont .product-slide .img-box img{
  width: 100%;
  height: 100%;
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}



.product-top-cont .product-info{
  width: calc(100% - 775px);
}

.product-selectBox .pro-select{
  border-radius: 10px;
  border: 1px solid #b5b5b5;
  height: 40px;
  overflow: hidden;
}
.product-selectBox .pro-select select{
  cursor: pointer;
  width: 100%;
  padding: 0 15px;
  height: 100%;
  background: url(/shop/asset/img/icon/ico-pro-arw01.png)no-repeat right 15px center;
}
.product-top-cont .product-countBox{
  padding: 15px 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.product-top-cont .product-countBox .delete-btn{
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
}
.product-countBox .pro-count{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-countBox .rt-count{
  display: flex;
  align-items: center;
  gap: 0 40px;
}
.product-countBox .count-box{
  display: flex;
  align-items: center;
  position: relative;
}
.product-countBox .count-box .num-box{
  width: 80px;
  height: 35px;
  position: relative;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding-right: 20px;
}
.product-countBox .count-box .num-box .num{
  width: 100%;
  height: 100%;
  text-align: center;

}
.product-countBox .count-box .count-arw-box{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20px;
}
.product-countBox .count-box .count-arw-box .count-arw{
  height: 50%;
  width: 100%;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.product-countBox .count-box .num-box .num::-webkit-outer-spin-button,
.product-countBox .count-box .num-box .num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox에서 화살표 제거 */
.product-countBox .count-box .num-box .num[type=number] {
    -moz-appearance: textfield;
}

.product-priceBox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.product-btnBox{
  display: flex;
  gap: 10px;
}
.product-btnBox .pro-btn{
  width: calc(50% - 5px);
  height: 60px;

}
.product-btnBox .pro-btn .btn{
  width: 100%;
  height: 100%;
  outline: none;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid;
}
.product-btnBox .pro-btn.wh-btn .btn{
  background-color: #fff;
  border-color: #959595;
}
.product-btnBox .pro-btn.bl-btn .btn{
  background-color: #37308e;
  border-color: #37308e;
  color: #fff;
}

.product-top-cont .product-between{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-top-cont .product-line{
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}

.product-tabBtn{
  width: 100%;
  display: flex;
}
.product-tabBtn .tab-btn{
  width: 33.333%;
  text-align: center;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}

.product-tabBtn .tab-btn.on{
  font-weight: 700;
}

.product-tabBtn .tab-btn:before{
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #626262;
  transition: .5s;
}

.product-tabBtn .tab-btn.on:before{
  width: 100%;
}
.product-tab{
  display: none;
}

.product-tab.on{
  display: block;
}


@media all and (max-width:1400px){
  .product-top-cont{
    gap: 30px;
  }
  .product-top-cont .product-info{
    width: calc(100% - 715px);
  }
}

@media all and (max-width:1200px){
 .product-top-cont{
  flex-direction: column;
  align-items: center;
 }
 .product-top-cont .product-slide .sm-slide{
  height: auto;
 }
 .product-top-cont .product-info{
  max-width: 685px;
  width: 100%;
 }

}

@media all and (max-width:768px){
  .product-tabBtn .tab-btn{
    padding: 10px 0;
  }

  .product-top-cont .bg-slide-btn .bg-btn{
    width: 40px;
    height: 40px;
  }
}

@media all and (max-width:730px){
  .product-top-cont .product-slide .bg-slide{
    margin: 0 auto;
    height: auto;
    width: 100%;
  }
  .product-top-cont .product-slide{
    flex-direction: column-reverse;
    gap: 10px;
  }
  .product-top-cont .product-slide .sm-slide{
    width: 100%;
    height: auto;
  }

  .product-countBox .rt-count{
    gap: 10px;
  }
  .product-btnBox .pro-btn{height: 40px;}
}


/* 주문/결제 페이지 */
.pay-ment-cont {
  display: flex;
  gap: 28px;
}

.pay-ment-cont .lt-pay-ment{
  width: 74.5%;
}
.pay-ment-cont .rt-pay-ment{
  width: calc(25.5% - 28px);
}

.pay-info-box .bd-box{
  border-top: 2px solid #959595;
  border-bottom: 2px solid #959595;
}
.pay-info-box .bd-box.b-bottom-none{
  border-bottom: none;
}
.pay-info-box .bd-box.pd-20{
  padding: 20px 0;
}

.table-box-area .input-check .checkbox{
  display: none;
}
.table-box-area .input-check .checkbox ~ i{
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #959595;
  cursor: pointer;
}
.table-box-area .input-check .checkbox:checked ~ i{
  background: #191919 url(/shop/asset/img/icon/ico-check01.png)no-repeat center center;
}

.table-box-area .tab-info-box{
  display: flex;
  align-items: center;
  gap: 15px;
}
.table-box-area .tab-info-box .img-are{
  width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.table-box-area .tab-info-box .img-are img{
  max-width: 100%;
  max-height: 100%;
}

.table-box-area .tab-info-box .text-overflow01{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}
.table-box-area .tab-info-box .text-overflow02{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.info-flex-half{
  display: flex;
  flex-wrap: wrap;
}

.info-flex-box{
  display: flex;
  align-items: center;
}

.info-flex-box.align-start{
  align-items: flex-start;
}
.info-flex-box.align-unset{
  align-items: unset;
}
.info-flex-box.align-start .info-tit{
  padding: 15px 0;
}

.info-flex-half .info-flex-box.w50{
  width: 50%;
}
.info-flex-half .info-flex-box.w50:nth-child(even) .info-tit{
  padding-left: 20px;
}

.info-flex-box .info-tit{
  min-width: 210px;
  width: 210px;

}

.info-flex-box .info-tit.pl-30{
  padding-left: 30px;
}

.info-flex-box .info-txt{
  padding: 15px 0;
}
.info-flex-box .info-txt.pb-5{
  padding-bottom: 5px;
}
.info-flex-box .info-txt.pt-0{
  padding-top: 0;
}
.info-flex-box .info-txt{
  width: 100%;
}

.info-flex-box .mw-350{
  max-width: 350px;
}
.info-flex-box .mw-450{
  max-width: 450px;
}

.info-flex-box .mw-500{
  max-width: 500px;
}
.info-flex-box .mw-670{
  max-width: 670px;
}
.info-flex-box .mw-750{
  max-width: 750px;
}
.info-flex-box .mw-1150{
  max-width: 1150px;
}

.info-flex-box .info-box{
  position: relative;
}

.info-flex-box .info-box .text-area{
  width: 100%;
  height: 160px;
  background-color: #f5f5f5;
  padding: 20px;
  resize: none;
  outline: none;
}

.info-flex-box .info-txt input,
.info-flex-box .info-txt select{
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background-color: #f5f5f5;
}
.info-flex-box.border-top{
  border-top: 1px solid #dcdcdc;
}
.info-flex-box .info-txt input::placeholder{
  color: #959595;
}

.info-flex-box .info-phone{
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-flex-box .info-phone.gap10{
  gap: 10px;
}

.info-flex-box .info-phone.item04 .num-box{
  width: calc(25% - 8.75px);
}

.info-flex-box .info-phone .num-box{
  width: calc(33.333% - 10px);
}
.info-flex-box .info-phone .num-box .button{
  height: 40px;
  background-color: #8c8c8c;
  width: 100%;

}
.info-flex-box .info-phone select,
.info-flex-box .info-box select{
  width: 100%;
  height: 40px;
  padding: 0 20px;
  background:#f5f5f5 url(/shop/asset/img/icon/ico-pro-arw01.png)no-repeat right 15px center;
}

.info-flex-box .info-address{
  width: 100%;
}
.info-flex-box .info-address .info-txt{position: relative;
display: flex; flex-wrap: wrap; gap: 10px;}
.info-flex-box .pr-150 input{
  padding-right: 150px;
}
.info-flex-box .info-address .address-btn{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 40px;
  background-color: #8c8c8c;
  color: #fff;
}
.info-flex-box .info-address .mw-500{
  width: 100%;
}
.info-flex-box .info-address .mw-auto{
  width: calc(100% - 510px);
}

.info-flex-box .input-radio{
  display: flex;
  gap: 10px 40px;
  padding: 25px 0;
  width: 100%;
  flex-wrap: wrap;
}
.info-flex-box .radio-label{
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.info-flex-box .radio-label i{
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b5b5b5;
  position: relative;
}
.info-flex-box .radio-label i:before{
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #191919;
  border-radius: 50%;
  opacity: 0;
}
.info-flex-box .radio-label input[type="radio"]:checked ~ i{
  border-color: #191919;
}
.info-flex-box .radio-label input[type="radio"]:checked ~ i:before{
  opacity: 1;
}
.info-flex-box .input-radio input[type="radio"]{
  display: none;
}

.info-flex-box .in-check-File{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 120px;
  background-color: #dcdcdc;
  height:40px;
}

.info-flex-box .in-check-File.mw-90{
  max-width: 90px;
}
.info-flex-box .in-check-File.bg-blue{
  background-color: #37308e;
}

.info-flex-box .in-check-File input[type="file"],
.info-flex-box .in-check-File input.buttons-btn{
  display: none;
}

.tit-d-flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tit-d-flex .tit-href{
  width: 70px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8c8c8c;
}


.info-flex-box .white-box .in-put{
  background-color: #fff;
  border: 1px solid #b5b5b5 !important;
}

@media all and (max-width:1024px){
  .info-flex-half .info-flex-box.w50{
    width: 100%;
  }
  .info-flex-half .info-flex-box.w50:nth-child(even) .info-tit{
    padding-left: 0;
  }
  .info-flex-box .mw-450{
    max-width: 500px;
  }

  .info-flex-box .info-tit.pl-30{
    padding-left: 0;
  }
}

@media all and (max-width:768px){
  .info-flex-box .radio-label{
    gap: 5px;
  }

  .info-flex-box .input-radio{
    padding: 15px 0;
  }
  .info-flex-box .info-phone.ta-wrap{flex-wrap: wrap;}
  .info-flex-box .ta-w100{width: 100% !important;}

  .info-flex-box .info-phone.ta-wrap.item03 .num-box{
    width: calc(50% - 11.625px);
  }
  .info-flex-box .info-phone.gap10{
    gap: 5px;
  }

  .info-flex-box .mw-350{
    max-width: 405px;
  }
}

@media all and (max-width:576px){

  .info-flex-box.align-start .info-tit{
    padding: 0;
  }
.info-flex-box .input-radio{
  padding: 5px 0;
  gap: 10px 15px;
}
  .info-flex-box .info-phone.mo-wrap{flex-wrap: wrap;}
  .info-flex-box .info-phone.item04 .num-box{width: calc(33.333% - 10px);}
  .info-flex-box .info-phone .mo-w100{width: 100% !important;}

  .info-flex-box .input-radio.mo-px-0{
    padding-left: 0;
    padding-right: 0;
  }

  .info-flex-box .mw-350{
    max-width: 500px;
  }
  .info-flex-box .in-check-File.mw-90{
    max-width: 500px;
  }
}

.pay-btn-area{
  padding: 15px 0;
  display: flex;
  gap: 8px;
}
.pay-btn-area .pay-btn{
  width: 160px;
  height: 40px;
  max-width: calc(33.333% - 5.333px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #b5b5b5;
}
.pay-btn-area .pay-btn.on{
  background-color: #37308e;
  border-color: #37308e;
  color: #fff;
}

.check-area-form label{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.check-area-form input[type="checkbox"]{display: none;}
.check-area-form input[type="checkbox"] ~ i{
  width: 18px;
  height: 18px;
  border: 1px solid #191919;
  display: block;
}
.check-area-form input[type="checkbox"]:checked ~ i{
  background: #191919 url(/shop/asset/img/icon/ico-check01.png)no-repeat center center;
}

.check-area-form .text-area{
  width: 100%;
  max-width: 714px;
  height: 180px;
  border: 1px solid #b5b5b5;
}
.check-area-form .text-area textarea{
  width: 100%;
  height: 100%;
  resize: none;
  outline: none;
  padding: 20px;
  font-size: 1.4rem;
}

.sticky-pay-box{
  position: sticky;
  top: 10px;
  padding: 30px 20px;
  border: 1px solid #b5b5b5;
}
.sticky-pay-box .sticky-flex{
  display: flex; align-items: center;
  justify-content: space-between;
}
.sticky-pay-box .sticky-line{
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
  margin: 15px 0;
}

.sticky-pay-box .sticky-btn .btn{
  width: 100%;
  height: 50px;
  background-color: #37308e;
}


.table-box-area .tables-box{
  display: flex;
}

.table-box-area .thead-group{
  display: flex;
}
.table-box-area .thead-gr01{
  width: 130px;
  min-width: 130px;
}
.table-box-area .thead-gr01 .td-box{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.table-box-area .thead-box .td-box{
  padding: 20px 0;
  text-align: center;
}
.table-box-area .tables-box.border-top{
  border-top: 1px solid #dcdcdc;
}
.table-box-area .tables-box .td-box.pl-20{
  padding-left: 20px;
}
.table-box-area .tables-box .td-box.text-left{
  text-align: left;
}
.table-box-area .tbody-box .td-box{
  padding: 30px 0;
  text-align: center;
}
.table-box-area .td-box .img-are{
  width: 90px;
  min-width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}


.table-box-area .td-box .img-are img{
  max-width: 100%;
  max-height: 100%;
}

.table-box-area .thead-gr02{
  width: calc(100% - 130px);
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr ;
  align-items: center;
}
.table-box-area .thead-gr02.thead-gr03{
  grid-template-columns: 3fr 1fr 1fr 1fr ;
}
.table-box-area .td-box .mobile-on{
  display: none;
}

.rt-pay-ment .sticky-mo-btn{
  position: absolute;
  left: 50%;
  bottom: calc(100% - 1px);
  transform: translateX(-50%);
  width: 45px;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 1px solid #b5b5b5;
  border-bottom: none;
  display: none;
  padding: 3px 0;
}


.table-box-area .table-gray-info{
  padding: 20px 30px;
  background-color: #f5f5f5;
}
.info-flex-box .info-txt .after-won{
  position: relative;
}

.info-flex-box .info-txt .after-won:after{
  content: '원';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.info-flex-box .info-txt .after-won .in-put{
  padding-right: 35px;
}

@media all and (max-width:1400px){
  .info-flex-box .info-address .info-txt{
    flex-direction: column;
  }
  .info-flex-box .info-address .mw-auto{
    width: 100%;
    max-width: 500px;
  }
}

@media all and (max-width:1024px){
  .pay-ment-cont .lt-pay-ment{
    width: 100%;
  }
  .pay-ment-cont .rt-pay-ment{
    width: auto;
    position: fixed;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: #fff;
    z-index: 10;
    max-width: 650px;
    width: 100%;
    transition: transform .5s;
  }
  .pay-ment-cont .rt-pay-ment.on{
    transform: translateX(-50%);
  }

  .rt-pay-ment.on .sticky-mo-btn svg{
    transform: rotate(180deg);
  }
  .sticky-pay-box{
    position: relative;
    top: auto;
    padding: 20px;
  }
  .rt-pay-ment .sticky-mo-btn{
    display: flex;
  }
}

@media all and (max-width:900px){
  .table-box-area .thead-box .thead-gr02{
    display: none;
  }
  .table-box-area .thead-box .td-box{
    padding: 10px 0;
  }
  .table-box-area .tbody-box .td-box{
    padding: 15px 0;
  }

  .table-box-area .tbody-box .thead-gr02 .td-box{
    padding: 0;
  }

  .table-box-area .thead-gr02{
    padding: 20px 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-between;
    width: calc(100% - 115px);
  }
  .table-box-area .td-box .mobile-on{
    display: inline-block;
  }

  .table-box-area .thead-gr01{
    min-width: 115px;
    width: 115px;
  }
}

@media all and (max-width:768px){
  .info-flex-box .info-tit{
    width: 100px;
    min-width: 100px;
  }

  .info-flex-box .info-txt input,
  .info-flex-box .info-phone select{
    padding: 0 10px;
  }
  .info-flex-box .info-box .text-area{
    padding: 10px;
  }
  .info-flex-box .info-phone select{
    background-position: right 10px center;
  }

  .info-flex-box .info-address .address-btn{
    width: 100px;
  }
  .info-flex-box .pr-150 input{
    padding-right: 110px;
  }

  .check-area-form .text-area textarea{
    padding: 10px ;
  }

  .sticky-pay-box .sticky-btn .btn{
    height: 38px;
  }
  .sticky-pay-box .sticky-line{
    margin: 10px 0;
  }

  .table-box-area .table-gray-info{
    padding: 10px 15px;
  }
}

@media all and (max-width:576px){
  .info-flex-box{
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }

  .info-flex-box .info-tit{
    width: 100%; min-width: 100%; margin-bottom: 5px;
  }
  .info-flex-box .info-txt{
    padding: 0;
  }
  .info-flex-box.mo-none{
    display: none;
  }
  .info-flex-box.mo-p0{
    padding: 0;
  }
  .info-flex-box.mo-p0 .mo-none{
    display: none;
  }

  .info-flex-box .info-address .info-txt.pt-0{
    margin-top: 10px;
  }

  .table-box-area .tbody-box .thead-gr02 a.td-box{
    width: 100%;
  }
  .table-box-area .tbody-box .thead-gr02 .td-box{
    width: calc(50% - 2.5px);

  }

  .table-box-area .tbody-box .thead-gr02 .td-box.td-count,
  .table-box-area .tbody-box .thead-gr02 .td-box.td-btn{width: 100%;}

  .table-box-area .tbody-box .thead-gr02 .td-box.td-count .count-flex-box{
    justify-content: flex-start;
  }
  .table-box-area .tbody-box .thead-gr02 .td-box.td-btn .table-btn-zone{
    flex-direction: row;
  }
  .table-box-area .tbody-box .thead-gr02 .td-box.td-btn .table-btn-zone .b-btn{
    width: 50%;
    height: 35px;
  }
}

/* 로그인 페이지 */
.in-put-area{
  border: 1px solid #b5b5b5;
}


.in-put-area .in-put{
  width: 100%;
  height: 45px;
  padding: 0 20px;
}

.in-put-button.d-flex{
  display: flex;
  gap: 10px;
}
.in-put-button.mw-860{
  max-width: 860px;
  margin: 0 auto;
}
.in-put-button.mw-570{
  max-width: 570px;
  margin: 0 auto;
}
.in-put-button.mw-350{
  max-width: 350px;
  margin: 0 auto;
}
.in-put-button.mw-280{
  max-width: 280px;
  margin: 0 auto;
}
.in-put-button.mw-180{
  max-width: 180px;
}
.in-put-button .bu-tton{
  display: block;
  height: 45px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-put-button .bu-tton.he-60{
  height: 60px;
}
.in-put-button .bu-tton.icon-btn{
  gap: 10px;
}

.in-put-button .bu-tton.mw-200{
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}

.in-put-button .bu-tton.gray-btn{background-color: #8c8c8c;}
.in-put-button .bu-tton.blue-btn{background-color: #37308e;}
.in-put-button .bu-tton.green-btn{background-color: #02c83d;}
.in-put-button .bu-tton.white-btn{
  background-color: #fff;
  border: 1px solid #bfbfbf;
}

.in-put-button .bu-tton.hover-btn:hover{
  border-color: #37308e;
  background-color: #37308e;
  color: #fff;
}

.log-in-href{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.log-in-href .a-href{
  color: #8c8c8c;
  position: relative;
}
.log-in-href .a-href:hover{
  color: #37308e;
  font-weight: 700;
}


.log-in-href .a-href + .a-href:before{
  content: '';
  width: 1px;
  height: 14px;
  background-color: #8c8c8c;
  left: -10px;
  top: 4px;
  position: absolute;
}

@media all and (max-width:768px){

  .in-put-button .bu-tton.he-60{
    height: 45px;
  }
}

/* 로그인 페이지 */
.join-tit01.bd-bottom{
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 15px;
}

.input-ex-box {
  position: relative;
}
.input-ex-box .in-put{
  width: 100%;
  border: 1px solid #b5b5b5;
}
.input-ex-box .in-put .input{
  width: 100%;
  height: 40px;
  padding: 0 20px;
}
.input-ex-box .in-put .input::placeholder{
  color: #8c8c8c;
}
.input-ex-box .in-check{
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 2px);
  width: 120px;
  background-color: #dcdcdc;
  z-index: 1;
}

.input-ex-box .in-check.in-checkFile{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.input-ex-box .in-check.in-checkFile input[type="file"]{
  display: none;
}

.join-check-li .all-check-box{
  padding: 20px 0;
  border-top:  1px solid #b5b5b5;
}
.join-check-li .all-check-box.border-none{
  border:none;
}

.join-check-li .sel-check-box{
  padding: 20px 0;
  border-top:  1px solid #dcdcdc;
  border-bottom:  1px solid #dcdcdc;
}
.join-check-li .join-check{
  display: none;
}
.join-check-li label{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.join-check-li .sel-ch-eck{
  display: flex;
  align-items: center;
  gap: 10px;
}

.join-check-li .join-check ~ i{
  min-width: 18px;
  width: 18px;
  height: 18px;
  border: 1px solid #191919;
  display: block;
}
.join-check-li .join-check:checked ~ i{
  background: #191919 url(/shop/asset/img/icon/ico-check01.png)no-repeat center center;
}


/* agree-pop-up */
.agree-pop-up{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.3);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.agree-pop-up.on{
  opacity: 1;
  visibility: visible;
}
.agree-pop-up .pop-cont{
  max-width: 504px;
  width: 93.75%;
  background-color: #fff;
  padding: 40px 30px;
}

.agree-pop-up .text-area{
  width: 100%;
  height: 320px;
  border-bottom: 1px solid #b5b5b5;
  overflow-y: auto;
  padding: 5px 0;
}
.agree-pop-up .text-area textarea{
  width: 100%;
  height: 100%;
  resize: none;
  outline: none;
  padding: 20px 0;
}

.agree-pop-up .top-co{
  position: relative;
}
.agree-pop-up .closed-btn{
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 1;
  cursor: pointer;
}

.complate-ico-box{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #37308e;
}

@media all and (max-width:768px){
  .complate-ico-box{
    width: 35px;
    height: 35px;
  }
  .complate-ico-box img{
    width: 50%;
  }
}

/* 아이디, 비밀번호 찾기 */
.find-tab-area{
  display: flex;
}
.find-tab-area .find-btn{
  width: 50%;
  padding: 15px 0;
  color: #8c8c8c;
  text-align: center;
  position: relative;
}
.find-tab-area .find-btn:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e5e5e5;
}
.find-tab-area .find-btn.on{
  color: #37308e;
  font-weight: 700;
}
.find-tab-area .find-btn.on:before{
  background-color: #37308e;
}

.find-input-area .input-flex{
  display: flex;
  align-items: center;
}
.find-input-area .input-tit{
  min-width: 125px;
  width: 125px;
}
.find-input-area .input-box{
  width: calc(100% - 125px);
  height: 40px;
  border: 1px solid #b5b5b5;
}
.find-input-area .input-box input{
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.find-com-plate{
  padding: 30px;
  border: 1px solid #b5b5b5;
}
.find-com-plate .compltae-txt{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}
.find-com-plate .find-list li{
  position: relative;
  padding-left: 13px;
}
.find-com-plate .find-list li + li{
  margin-top: 10px;
}
.find-com-plate .find-list li:before{
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #191919;
  position: absolute;
  left: 4px;
  top: 14px;
}

@media all and (max-width:768px){
  .find-input-area .input-tit{
    width: 95px;
    min-width: 95px;
  }
  .find-input-area .input-box{
    width: calc(100% - 95px);
  }

  .find-com-plate .find-list li:before{
    top:11px;
  }
}

.list-style-dash > li{
  padding-left: 10px;
  position: relative;
}
.list-style-dash > li:before{
  position: absolute;
  left: 0;
  top: 13px;
  content: '';
  width: 5px;
  height: 1px;
  background-color: #191919;
}

.tit-gray-box{
  padding: 25px;
  background-color: #f5f5f5;
}

.tit-gray-box.py-50{
  padding: 50px 25px;
}

.tit-gray-box.border{
  border: 1px solid #dcdcdc;
}

@media all and (max-width:768px){
  .tit-gray-box{
    padding: 15px;
  }
  .tit-gray-box.py-50{
    padding: 20px 15px;
  }
}

/* 마이페이지 tab */
.mypage-tab-area{
  border-top: 2px solid #959595;
  border-bottom: 1px solid #dcdcdc;
  position: relative;
}
.mypage-tab-area:before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #f5f5f5;
}
.mypage-tab-area .depth-01-ul{
  display: flex;
}

.mypage-tab-area .depth-01-li{
  flex:1;
  border-left: 1px solid #dcdcdc;
}

.mypage-tab-area .depth-01-li:last-child{
  border-right: 1px solid #dcdcdc;
}

.mypage-tab-area .depth-01-li > a{
  display: block;
  padding: 18px 0;

}

.mypage-tab-area .depth-02-ul{
  padding: 18px 0;
  min-height: 160px;
}
.mypage-tab-area .depth-02-ul a{
  display: block;
  padding: 8px 0;
}

.mypage-tab-area .depth-02-ul .on a{
  color: #37308e;
  font-weight: 700;
}

/* 나의 문의 내역 */
.inquiry-table-area{
  border-top: 2px solid #959595;
  border-bottom: 1px solid #dcdcdc ;
}
.inquiry-table-area table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: none;
}
.inquiry-table-area th,
.inquiry-table-area td{
  padding: 15px 0;
}
.inquiry-table-area th{
  background-color: #f5f5f5;
  border-bottom: 1px solid #dcdcdc;
}
.inquiry-table-area th + th,
.inquiry-table-area td + td{
  border-left: 1px solid #dcdcdc;
}
.inquiry-table-area tbody tr + tr td{
  border-top: 1px solid #dcdcdc;
}

.inquiry-table-area .td-subject a{
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0 5px;
}
.inquiry-table-area td.answer-no{
  color: #d5000d;
}

.inquiry-table-area td.answer-yes{
  color: #1650a7;
}


@media all and (max-width:768px){
  .mypage-tab-area .m-none{display: none;}
.mypage-tab-area .depth-01-li > a,
.mypage-tab-area .depth-02-ul{
  padding: 10px 0;
}
.mypage-tab-area .depth-02-ul a{
  padding: 5px 0;
}
.mypage-tab-area .depth-02-ul{
  min-height: auto;
}
.mypage-tab-area:before{
  height: 40px;
}

    .inquiry-table-area table{
      display: block;
    }
  .inquiry-table-area thead{display: none;}
  .inquiry-table-area tbody{
    display: block;
  }
  .inquiry-table-area tbody tr{
    display: flex;
    flex-wrap: wrap;
    padding: 3px 7px;
  }
  .inquiry-table-area td{
    text-align: left;
    padding: 2px 5px;
    order: 3;
    position: relative;
  }
  .inquiry-table-area td:before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #959595;
    display: block;
  }


  .inquiry-table-area .td-subject a{
    padding: 0;
  }
  .inquiry-table-area tbody tr + tr{
    border-top: 1px solid #dcdcdc;
  }
  .inquiry-table-area td + td,
  .inquiry-table-area tbody tr + tr td{
    border: none;
  }
  .inquiry-table-area td.td-answer{
    order: 1;
    width: 70px;
    min-width: 70px;
    border-left: none;
    padding-left: 0;
  }
  .inquiry-table-area td.td-num{
    border-left: none;
    padding-left: 0;
  }
  .inquiry-table-area td.td-subject{
    width: calc(100% - 70px);
    order: 2;
    border-left: none;
  }
  .inquiry-table-area td.td-answer:before,
  .inquiry-table-area td.td-num:before,
    .inquiry-table-area td.td-subject:before{
    content: none;
  }
}

@media all and (max-width:576px){
  .mypage-tab-area .depth-02-ul a{
    font-size: 1.2rem;
  }
}

.info-edit-view .info-flex-box .info-tit{
  display: flex;
  align-items: center;
  padding-left: 30px;
  background-color: #f5f5f5;
}
.info-edit-view .info-flex-box .info-txt{
  padding-left: 10px;
}


.info-edit-view  .info-flex-box .info-txt input,
.info-edit-view  .info-flex-box .info-txt textarea{
  background-color: #fff;
  border: none;
  color: #191919;
}

.info-edit-view  .info-flex-box .info-txt input::placeholder,
.info-edit-view  .info-flex-box .info-txt textarea::placeholder{
  color: #191919;
}

u.underline-offset-3{
  text-underline-offset: 3px;
}

.info-flex-box .al-ready-input{
  width: 100%;
  padding: 0 20px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

@media all and (max-width:768px){
  .info-flex-box .al-ready-input{
    padding: 0 10px;
  }
}

@media all and (max-width:576px){
  .info-edit-view .info-flex-box .info-tit{
    background-color: transparent;
    padding-left: 0;
  }
  .info-edit-view .info-flex-box .info-txt{
    padding-left: 0;
  }
}

/* 마이페이지 주문 내역 */
.order-list-now {
  display: flex;
  border: 1px solid #dcdcdc;
  padding: 24px 0;
}
.order-list-now .order-li{
  width: 33.333%;
  display: block;
  padding: 30px 0;
}
.order-list-now .order-li + .order-li{
  border-left: 1px solid #dcdcdc;
}


@media all and (max-width:768px){
  .order-list-now{
    padding: 12px 0;
  }
  .order-list-now .order-li{
    padding: 15px 0;
  }
}

.order-date-area{
  background-color: #f5f5f5;
  padding: 30px 20px;
}
.order-date-area .date-btt-area{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.date-btt-area .month-button{
  display: flex;
  gap: 10px;
}
.date-btt-area .month-button .mon-bt{
  background-color: #fff;
  border: 1px solid #b5b5b5;
  height: 30px;
  width: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-btt-area .calendar-box{
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-btt-area .btn-cal{
  background-color: #fff;
  border: 1px solid #b5b5b5;
  width: 150px;
  height: 30px;
}
.date-btt-area .btn-cal .cal{
  width: 100%;
  height: 100%;
  padding: 0 40px 0 20px;
  cursor: pointer;
  background: url(/shop/asset/img/icon/ico-calendar.png)no-repeat right 20px center;
}

.date-btt-area .add-btn{
  width: 100px;
  height: 30px;
  background-color: #8c8c8c;
}

@media all and (max-width:768px){
  .order-date-area{
    padding: 20px 10px;
  }
  .order-date-area .date-btt-area{
    flex-wrap: wrap;
    gap: 10px;
  }
  .date-btt-area .month-button{
    width: 100%;
    justify-content: center;
  }
}

@media all and (max-width:550px){
  .date-btt-area .calendar-box{
    flex-wrap: wrap;
  }
  .date-btt-area .calendar-box .cal-tit{
    display: none;
  }
  .date-btt-area .add-btn{
    width: 100%;
  }
  .date-btt-area .btn-cal{
    width: calc(50% - 14px);
  }

  .date-btt-area .btn-cal .cal{
    padding: 0 20px 0 10px;
    background-position: center right 5px;
  }

}

.order-table-area{
  border-top: 1px solid #959595;
}
.order-table-area table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    border: none;
}
.order-table-area table td{
  border-bottom: 1px solid #dcdcdc;
}

.order-table-area thead td{
  padding: 20px 0;
}
.order-table-area thead td.py-15{
  padding: 15px 0;
}
.order-table-area tbody td{
  padding: 30px 0;
}

.order-table-area .input-check .checkbox{
  display: none;
}
.order-table-area .input-check .checkbox ~ i{
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #959595;
  cursor: pointer;
}
.order-table-area .input-check .checkbox:checked ~ i{
  background: url(/shop/asset/img/icon/ico-check02.png)no-repeat center center;
}




.order-table-area .pro .img-box{
  width: 90px;
  min-width: 90px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.order-table-area .pro .img-box img{
  max-width: 100%;
  max-height: 100%;
}
.order-table-area .pro .text-overflow01{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.order-table-area .pro .pro-href{
  display: flex;
  align-items: center;
  gap: 15px;
}




.more-view-area .more-btn{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
.more-view-area .more-btn img{
  filter: invert(15%) sepia(39%) saturate(4836%) hue-rotate(238deg) brightness(91%) contrast(91%);
}


@media all and (max-width:768px){
  .order-table-area table {
    display: block;
  }
  .order-table-area thead {
    display: none;
  }
  .order-table-area tbody {
    display: block;
  }

  .order-table-area tbody tr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    padding: 10px 7px;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
  }

  .order-table-area tbody td{
    padding: 0;
    border-bottom: none;
  }
  .order-table-area tbody td.date{
    text-align: left;
  }
  .order-table-area tbody td.date br{
    display: none;
  }
  .order-table-area tbody td.price p,
  .order-table-area tbody td.price del{
    display: inline-block;
  }
  .order-table-area .pro .pro-href{
    gap: 5px;
  }
  .order-table-area .pro .pro-href:before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
  }
}

@media all and (max-width:576px){

}

.order-view-area{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.order-view-tab{
  display: flex;
  gap: 5px;
}
.order-view-tab .tab-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90px;
  height: 30px;
  background-color: #fff;
  border: 1px solid #b5b5b5;
}

.order-view-tab .tab-btn.black-btn{
  background-color: #191919;
  border-color: #191919;
}
.order-view-tab .tab-btn.w130{
  width: 130px;
}

.order-view-tab .tab-btn.active{
  background-color: #37308e;
  border-color: #37308e;
  color: #fff;
}


@media all and (max-width:900px){
  .order-view-area .more-view-area{
    width: 100%;
  }
  .order-view-area .order-view-tab{
    overflow-x: auto;
  }
}
@media all and (max-width:600px){
  .order-view-area .order-view-tab{
    flex-wrap: wrap;
    width: 100%;
  }
  .order-view-tab .tab-btn.all-btn{
    width: 100%;
  }
  .order-view-tab .tab-btn,
  .order-view-tab .tab-btn.w130{
    width: calc(33.333% - 3.3333px);
  }
  .order-view-tab .tab-btn{
    height: 25px;
  }
}

.parcel-num-copy .parcel-num{
  color: #1650a7;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.refund-between-area{
  padding: 25px 0;
  display: flex;
}
.refund-between-area .lt-between{
  width: 57%;
  padding-right: 40px;
}
.refund-between-area .rt-between{
  width: 43%;
  padding-left: 40px;
  border-left: 1px solid #dcdcdc;
}
.refund-between-area .bet-li{
  display: flex;
  justify-content: space-between;
}

.refund-between-area .bet-li.border-top{
  padding-top: 15px;
  border-top: 1px solid #dcdcdc;
}

.refund-between-area .bet-li + .bet-li{
  margin-top: 15px;
}

@media all and (max-width:630px){
  .refund-between-area{
    padding: 15px 0;
    flex-wrap: wrap;
  }
  .refund-between-area .lt-between{
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  .refund-between-area .rt-between{
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
    border-top: 1px solid #dcdcdc;
    border-left: none;
  }
  .refund-between-area .bet-li + .bet-li{
    margin-top:5px
  }
  .refund-between-area .bet-li.border-top{
    padding-top: 10px;
    margin-top: 10px;
  }
  .refund-between-area .lt-between .bet-li + .bet-li{
    margin-top: 0;
  }
}

.count-flex-box{
  display: flex;
  justify-content: center;
}
.count-flex-box .nus-box{
  width: 30px;
  height: 30px;
  min-width: 30px;
  border: 1px solid #b5b5b5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.count-flex-box .nus-box + .nus-box{
  border-left: none;
}
.count-flex-box .nus-box.minus-btn,
.count-flex-box .nus-box.plus-btn{
  cursor: pointer;
}
.count-flex-box .pong-box input{
  width: 100%;
  height: 100%;
  text-align: center;
  color: #191919;
}
.count-flex-box .pong-box input::placeholder{
  text-align: center;
  color: #191919;
}

.count-flex-box .pong-box input::-webkit-outer-spin-button,
.count-flex-box .pong-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefoxì—ì„œ í™”ì‚´í‘œ ì œê±° */
.count-flex-box .pong-box input[type=number] {
    -moz-appearance: textfield;
}

.table-btn-zone{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.table-btn-zone .b-btn{
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #b5b5b5;
}

.card-table-area table{
  border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    table-layout: fixed;
    border: none;
}

.card-table-area .text-overflow01{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}


.card-table-area table td:first-child{
  border-left: none;
}
.card-table-area thead td{
  border-top: 2px solid #959595;
}
.card-table-area table td{
  border-left: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.card-table-area table td{
  padding: 15px 0;
}

.card-table-area .input-check .checkbox{
  display: none;
}
.card-table-area .input-check .checkbox ~ i{
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #959595;
  cursor: pointer;
}
.card-table-area .input-check .checkbox:checked ~ i{
  background: url(/shop/asset/img/icon/ico-check02.png)no-repeat center center;
}

.card-table-area .change-btn{
  display: flex;
  width: 100%;
  max-width: 90px;
  height: 30px;
  background-color: #37308e;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.card-table-area .change-btn.green-btn{
  background-color: #009640;
}
.card-table-area tbody td .green{color: #009640;}
.card-table-area tbody td .red{color: #e30613;}
.card-table-area tbody td .blue{color: #0069b4;}
.card-table-area tbody td .black{color: #191919;}


 @media screen and (max-width: 768px) {
  .card-table-area.mo-border-none{
    border-top: none;
  }
  .order-table {
      border: 0;
  }

  .card-table-area thead td {
      display: none;
  }
    .card-table-area thead td.td-check{
      display: block;
      padding: 10px;
    }
  .card-table-area tbody,
  .card-table-area table{
    display: block;
    width: 100%;
  }
  .card-table-area tbody tr {
      display: block;
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      padding: 10px;
  }

  .card-table-area td {
      display: block;
      text-align: right;
      padding: 10px 15px;
      border: none;
      position: relative;
      padding-left: 50%;
      border-bottom: 1px solid #eee;
  }

  .card-table-area tr td:last-child {
      border-bottom: none;
  }
  .card-table-area tbody td.td-check:before{
    content: none;
  }
  .card-table-area .change-btn{
    margin-right: 0;
    margin-left: auto;
  }
  .card-table-area tbody td{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-table-area table td{
    padding: 5px 0;
    border: none;
  }
  .card-table-area td::before {
      content: attr(data-label);
      font-size: 1.4rem;
      font-weight: bold;
      color: #333;
  }

}

/* 기획전 view */
.event-view-page .view-tit-box{
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #8c8c8c;
}
.event-view-page .txt-box{
  border-top: 1px solid #dcdcdc;
}

.event-view-page .view-text-box{
  border-top: 1px solid #8c8c8c;
  min-height: 400px;
}

@media all and (max-width:768px){
  .event-view-page .view-text-box{
    min-height: 200px;
  }
}


/* News List */
.bbs-news .table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #959595;
}

.bbs-news .table tr {
  border-bottom: 1px solid #dcdcdc;
}

.bbs-news .table th,
.bbs-news .table td {
  height: 60px;
  padding: 10px;
  font-size: 1.6rem;
}

.bbs-news .table td a {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bbs-news .table tr.tr-notice {
  background-color: #EBEFF7;
}

.bbs-news .table tr.tr-notice .no {
  font-weight: 700;
  color:#37308e;
}

.bbs-news .table tr.table-message .txt {
  text-align: center;
  padding: 130px 20px;
}

.bbs-news .table tr.table-message .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width:1200px) {
  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:1024px) {
  .bbs-news .table th,
  .bbs-news .table td {
    height: 50px;
    padding: 6px;
  }
}
@media screen and (max-width:768px) {
  .bbs-news .table thead {
    display: none;
  }

  .bbs-news .table {
    display: block;
  }

  .bbs-news .table tbody {
    display: block;
  }

  .bbs-news .table tr {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 4px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    position: relative;
    height: auto;
    padding: 4px 6px;
    font-size: 1.4rem;
  }

  .bbs-news .table td.no {
    order: 2;
  }

  .bbs-news .table td.no::after,
  .bbs-news .table td.writer::after {
    content: "";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
    width: 1px;
    height:10px;
    background-color:#999;
  }

  .bbs-news .table td.subject {
    width: 100%;
    order: 1;
  }

  .bbs-news .table td.data {
    order: 4;
  }
  .bbs-news .table td.writer{
    order: 3;
  }
}
@media screen and (max-width:576px) {
  .bbs-news .table tr {
    padding: 4px 2px;
  }

  .bbs-news .table th,
  .bbs-news .table td {
    font-size: 1.3rem;
  }
}

/* 자주묻는 질문 */
.qna-toggle-list{
  border-top: 2px solid #959595;
}
.qna-toggle-list .qna-toggle-box{
  border-bottom: 1px solid #b5b5b5;
}
.qna-toggle-list .qna-box{
  padding: 30px;
}
.qna-toggle-list .qna-q{
  cursor: pointer;
  background-color: #fff;
  position: relative;
}
.qna-toggle-list .qna-q:before{
  background:  url(/shop/asset/img/icon/ico-qna01.png)no-repeat center center /cover;
  width: 12px;
  height: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  transition: .5s;
}

.qna-toggle-list .qna-toggle-box.on .qna-q:before{
  transform: translateY(-50%) rotate(180deg);
}

.qna-toggle-list .qna-q .txt{
  position: relative;
}
.qna-toggle-list .qna-q .txt:before{
  content: 'Q.';
  position: absolute;
  top: 0;
  left: -20px;
  font-weight: 700;
  color: #37308e;
}
.qna-toggle-list .qna-a{
  background-color: #f5f5f5;
  display: none;
}

@media all and (max-width:768px){
  .qna-toggle-list .qna-box{
    padding: 15px 25px;
  }
}

.input-phone-box{
  display: flex;
  gap: 5px;
  align-items: center;
}
.input-phone-box .select{
  background: url(/shop/asset/img/icon/ico-pro-arw01.png)no-repeat right 15px center;
}

.cash-paper-box,
.cash-paper-box02{
  display: none;
}
.cash-paper-box.on{
  display: block;
}
.cash-paper-box02.on{
  display: flex;
}


.info-flex-box .info-txt .check-square{
  width: 80px;
  height: 30px;
  background-color: #37308e;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.info-flex-box .file-up-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.info-flex-box .file-up-btn .file-input{
  display: none;
}

.info-flex-box .info-txt .file-square{
  align-self: center;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #8c8c8c;
  padding: 3px 5px;
  min-width: 110px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 100%;
}

@media all and (max-width:1400px){
  .info-flex-box .info-txt .check-square,
  .info-flex-box .info-txt .file-square{
    align-self: flex-start;
  }
}