 /* 검색바 */
.search {
  display: flex;
  justify-content: flex-end;
}

.search form {
  display: flex;
  width: 520px;
  height: 60px;
  border:1px solid #B3B3B3;
  border-radius: 100px;
  overflow: hidden;
}

.search .search-select {
  width: 160px;
  height: 100%;
}

.search .search-input {
  position: relative;
  width: calc(100% - 160px);
  height: 100%;
  padding-right: 80px;
}

.search select {
  width: 100%;
  height: 100%;
  padding: 0px 30px;
  font-size: 1.8rem;
  background: url('/asset/img/common/sch_select.png') no-repeat right 30px center;
}

.search input {
  width: 100%;
  height: 100%;
  padding: 0px 30px;
  font-size: 1.8rem;
}

.search button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top:50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #F5F5F5 url('/asset/img/common/sch_search.png') no-repeat center;
  border-radius: 50%;
}

@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;
  }
  .search .search-input{
    width: calc(100% - 130px);
  }
  .search .search-input{
    padding-right: 50px;
  }
}
@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:35px;
  height:35px;
	margin:0px 8px;
	border-radius:50%;
  background-repeat:no-repeat;
  background-position:center;
  background-color:transparent;
  text-align: center;
  font-size:1.8rem;
  transition:all ease-out .15s;
}

.pagination a:not(.current) {
  cursor:pointer;
}

.pagination a.current {
	color:#00A19A;
	font-weight:800;
}

.pagination a.pagination-prev,
.pagination a.pagination-next {
  background-color: #f5f5f5;
}

.pagination a.pagination-prev {
	margin-right:16px;
  background-image: url('/asset/img/common/pg_prev.png');
}

.pagination a.pagination-next {
	margin-left:16px;
  background-image: url('/asset/img/common/pg_next.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('/asset/img/icon/ico_write.png');
}

.bbs-basic-view .bbs-view-head i.icon02 {
  background-image: url('/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('/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('/asset/img/common/nav_prev.png');
}

.bbs-basic-view .bbs-view-nav .nav-next i {
  background-position:right center;
  background-image: url('/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-nav .btn-3group{
  display: flex;
  align-items: center;
}
.bbs-basic-view .bbs-view-nav .btn-3group .nav-back{
  position: unset;
  transform: none;
}

.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('/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('/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;
  }

  .bbs-basic-view .bbs-view-head .btm{
    margin-top: 20px;
  }
}
@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-view .bbs-view-head .top{
    gap: 10px;
  }
  .bbs-basic-view .bbs-view-head .cls{
    font-size: 1.4rem;
    height: 20px;
    padding: 0 8px;
  }
}


/* 게시판 문의 - 기본형 */
.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 .tit.bg-none::before{
  background-color: transparent;
}

.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.gap-20 {
  gap: 20px;
}

.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 .row.d-flex{
  display: flex;
  align-items: center;
  width: 100%;
}
.bbs-basic-form .table .row.d-flex .th{
  min-width: 150px;
  width: 150px;
}
.bbs-basic-form .table .row.d-flex .td{
  width: calc(100% - 150px);
}

.bbs-basic-form .table input {
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  border-radius: 10px;
  font-size: 1.8rem;
}

.bbs-basic-form .table .td:has(.readonly){
  position: relative;
}
.bbs-basic-form .table .td:has(.readonly):before{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(164,164,164,.4);
  border-radius: 10px;
}


.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('/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(20% - 20px);
  max-width: 20%;
}


.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); */
  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('/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;
  align-content: center;
}

.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('/asset/img/icon/ico_chk_off.png') no-repeat center / cover;
}

.bbs-basic-form .agree input:checked ~ i {
  background-image: url('/asset/img/icon/ico_chk02_on.png');
}

.bbs-basic-form .agree-textarea {
  display: none;
  margin-top: 40px;
}

.bbs-basic-form .agree-textarea.open{
  display: block;
}

.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;
}
.bbs-basic-form .btn-group .btn03 {
  background-color: #E5F5F5;
}
@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;
  }


  .bbs-basic-form .table .row.d-flex .th{
    width: 80px;
    min-width: 80px;
  }
  .bbs-basic-form .table .row.d-flex .td{
    width: calc(100% - 80px);
  }


  .bbs-basic-form .table .email-wrap{
    flex-wrap: wrap;
    gap: 8px 3px;
  }

  .bbs-basic-form .table .email-wrap span.mo-wauto{
    width: auto;
  }
  .bbs-basic-form .table .email-wrap .box.mo-w50{
    width: calc(50% - 15px);
  }
  .bbs-basic-form .table .email-wrap .box.mo-w100{
    width: 100%;
  }
}
@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('/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 .list .category{
    font-size: 1.4rem;
  }
  .bbs-business .list .subject{
    font-size: 1.6rem;
    height: 44px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .bbs-business .list .info .dot{
    font-size: 1.2rem;
    width: 54px;
    height: 18px;
  }
  .bbs-business .list .info .txt{
    font-size: 1.2rem;
    line-height: 18px;
  }
  .bbs-business .list .info dd{
    align-items: center;
    gap: 8px;
  }
  .bbs-business .list .info dd:not(:last-child){
    margin: 0;
  }
}


/* 사업신청 - 사업 신청하기 상세 */
.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('/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('/asset/img/sub/business/app/ico_home.png');
}

.bbs-business-view .bbs-view-area .box i.icon02 {
  background-image: url('/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('/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('/asset/img/icon/ico_chk01_off.svg') 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('/asset/img/icon/ico_chk01_on.svg');
}

.bbs-form-business .radio-wrap input:checked ~ span,
.bbs-form-business .check-wrap input:checked ~ span {
  color:#fff;
}

.bbs-form-business .app-files {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@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;
  }

  .bbs-form-business .radio-wrap li,
  .bbs-form-business .check-wrap li {
    max-width: calc(50% - 5px);
    width: 100%;
  }
  .bbs-form-business .radio-wrap i,
  .bbs-form-business .check-wrap i{
    width: 20px;
    height: 20px;
  }
  .bbs-form-business .radio-wrap label,
  .bbs-form-business .check-wrap label{
    height: 35px;
  }
}



/* 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 tr:has(td.notice){background-color: #f5f5f5;}

.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;
}

.bbs-ict .action {
  display: flex;
  justify-content: flex-end;
}

.bbs-ict .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-ict .table th,
.bbs-ict .table td{
  font-size: 1.6rem;
}
.bbs-ict .write-btn{
  font-size: 1.8rem;
}
}
@media screen and (max-width:576px) {
  .bbs-ict .write-btn{
    font-size: 1.6rem;
  }
}


/* 알림 소식 - 공지사항 */
.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('/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('/asset/img/sub/product/ico_category01.png');
}

.prd-category i.icon02::before {
  background-image: url('/asset/img/sub/product/ico_category02.png');
}

.prd-category i.icon03::before {
  background-image: url('/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) {
  .prd-category a{
    height: 45px;
  }

  .prd-category i{
    display: none;
  }
}
@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('/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('/asset/img/sub/product/ico_chk_off.png') no-repeat center / cover;
}

.bbs-product .prd-lnb input:checked ~ i {
  background-image: url('/asset/img/sub/product/ico_chk_on.png');
}
.bbs-product .prd-lnb  .isActive {
   background-image: url('/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;
  min-height: 1150px;
}

.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('/asset/img/icon/ico_wish_off.png') no-repeat center / cover;
  z-index: 10;
}

.bbs-product .list .wish.color{
  background-image: url('/asset/img/icon/ico_wish_on.png');
}

.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;
    min-height: auto;
  }

  .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(/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) {

}


/* 회원가입 */
.member-container{
  max-width: 686px;
  width: 93.75%;
  margin: 0 auto;
}

.member-gray-box{
  padding: 50px 40px;
  background-color: #F5F5F5;
  border-radius: 20px;
}


.member-container .row{
  width: 100%;
}

.member-container .tit.bd-bottom{
  padding-bottom: 20px;
  border-bottom: 1px solid #aeaeae;
}

.member-container .member-flex{
  display: flex;
  flex-wrap: wrap;
}

.member-container .radio-input{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.member-container .radio-input .radio{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.member-container .radio-input input{
  display: none;
}
.member-container .radio-input i{
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  position: relative;
}
.member-container .radio-input i:before{
  position: absolute;
  width: 10px;
  height: 10px;
  content: '';
  border-radius: 50%;
  background-color: #191919;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.member-container .radio-input input:checked ~ i{
  border-color: #191919;
}
.member-container .radio-input input:checked ~ i:before{
  opacity: 1;
}

.member-container .text-input{
  display: flex;
  align-items: center;

}
.member-container .text-input .input-tit{
  width: 150px;
  min-width: 150px;
}
.member-container .text-input .input-box{
  width: calc(100% - 150px);
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.member-container .text-input .input-box.w100{
  width: 100%;
}

.member-container .text-input .input-box.he-70{
  height: 70px;
}
.member-container .text-input .input-box.bg-gray input{
  background-color: #F5F5F5;
}

.member-container .text-input .input-box input{
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  padding: 0 20px;
  font-size: 1.8rem;
}
.member-container .text-input .input-box:has(.readonly):before{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(164,164,164,.4);
}

.member-container .text-input .input-box select {
  width: 100%;
  height: 50px;
  padding: 0px 20px;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-position:right 20px center;;
  background-image:url('/asset/img/icon/ico_select.png');
  border-radius: 10px;
  font-size: 1.8rem;
}

.member-container .email-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.member-container .email-wrap .input-box{
  width: 29.6%;
}

.member-container .email-wrap span{
  width: 6.25%;
}

@media all and (max-width:768px){
  .member-gray-box{
    padding: 25px 20px;
  }
  .member-container .tit.bd-bottom{
    padding-bottom: 10px;
  }
  .member-container .text-input .input-box.he-70{
    height: 55px;
    font-size: 1.6rem;
  }

  .member-container .text-input{
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .member-container .text-input .input-tit{
    min-width: auto;
    width: 100%;
  }
  .member-container .text-input .input-tit.m-none{
    display: none;
  }
  .member-container .text-input .input-box{
    width: 100%;
  }

  .member-container .text-input .input-box select{
    font-size: 1.6rem;
  }
  .member-container .email-wrap{
    gap: 8px 3px;
    flex-wrap: wrap;
  }

  .member-container .text-input .input-box input{
    font-size: 1.6rem;
    padding: 0 10px;
  }
  .member-container .text-input .input-box select{
    padding: 0 10px;
  }

  .member-container .text-input .input-box.mo-w100{
    width: 100%;
  }
  .member-container .text-input .input-box.mo-w50{
    width: calc(50% - 15px);
  }
  .member-container .text-input span.mo-wauto{
    width: auto;
  }
}

@media all and (max-width:576px){
  .member-container .text-input{
    gap: 10px 0;
  }
  .member-container .text-input .input-box input,
  .member-container .text-input .input-box select{
    font-size: 1.4rem;
  }
}

.agree-wrap .agree-check label{
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.agree-wrap .agree-check input{display: none;}
.agree-wrap .agree-check i{
  width: 25px;
  height: 25px;
  border-radius: 5px;
  border: 1px solid #aeaeae;
  display: block;
  position: relative;
  min-width: 25px;
}

.agree-wrap .agree-check i:before{
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 8px;
  background: url(/asset/img/icon/icon-check01.png)no-repeat center center;
  transform: translate(-50%,-50%);
  opacity: 0;
}
.agree-wrap .agree-check input:checked ~ i{
  background-color: #00A19A;
  border-color: #00A19A;
}
.agree-wrap .agree-check input:checked ~ i:before{
  opacity: 1;
}
.agree-wrap .agree-check .answer-txt textarea{
  width: 100%;
  height: 150px;
  padding: 20px;
  font-size: 1.6rem;
  outline: none;
  resize: none;
}

.member-btn-box{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 20px;
}
.member-btn-box.mw-300{
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.member-btn-box.mw-620{
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.member-btn-box.mw-940{
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.member-btn-box .btn{
  width: 100%;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-btn-box .btn.g-btn{
  background-color: #00A19A;
}

.member-btn-box .btn.skyg-btn{
  background-color: #B3E3E1;
  color: #00A19A;
}

.member-btn-box .btn.gy-btn{
  background-color: #E2E2E2;
}

@media all and (max-width:768px){
  .member-btn-box .btn{
    height: 50px;
    font-size: 1.8rem;
  }

}

@media all and (max-width:576px){
  .member-btn-box .btn{
    font-size: 1.6rem;
  }
}


/* login page */
.login-find-href {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-find-href .href-btn{
  padding: 0 10px;
  position: relative;
}
.login-find-href .href-btn + .href-btn:before{
  content: '';
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #191919;
}

.unicorn-bg-before{
  background: url(/asset/img/icon/login-page-icon.png)no-repeat right 60px bottom 60px;
}

@media all and (max-width:1024px){
  .unicorn-bg-before {
    background: none;
  }
}

/* 마이페이지 -> 내정보 */
.my-info-page .top-info-box{
  display: flex; gap: 28px;
}
.my-info-page .info-two{
  border-radius: 20px;
  background-color: #f5f5f5;
  padding: 50px 30px 30px 50px;
  width: calc(50% - 14px);
}
.my-info-page .info-two.info-type02{
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.my-info-page .mypage-flex{
  display: flex;
  align-items: center;
}
.my-info-page .mypage-flex .info-tit{
  min-width: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
}



.my-info-page .mypage-flex .info-tit i{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.my-info-page .mypage-href{
  display: flex;
  justify-content: flex-end;
}
.my-info-page .mypage-href .href-a{
  position: relative;
  padding: 0 10px;
}
.my-info-page .mypage-href .href-a + .href-a:before{
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 1px;
  height: 10px;
  background-color: #191919;
}

.my-info-page .mypage-simsa{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.my-info-page .mypage-simsa + .mypage-simsa{
  border-top: 1px solid #a8a8a8;
}

/* .my-info-page .mypage-simsa:nth-child(1){padding-bottom:30px} */
.my-info-page .mypage-simsa + .mypage-simsa{margin-top:30px; padding-top:30px}
.my-info-page .mypage-simsa .icon i{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.my-info-table{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-info-table .btn-right{
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-info-table .btn-right .info-btn{
  padding: 7px 35px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3b3b3;
  text-align: center;
}
.my-info-table .btn-right .info-btn.on{
  background-color: #00A19A;
  color: #fff;
  font-weight: 700;
  border-color: #00A19A;
}

.info-tab-area .info-tab{display: none;}
.info-tab-area .info-tab.on{display: block;}

.my-info-table .more-left .more-btn{
  text-decoration: underline;
}
.my-info-table .more-left .more-btn.more-tab{
  display: none;
}
.my-info-table .more-left .more-btn.more-tab.on{
  display: block;
}

@media all and (max-width:1024px){
  .my-info-page .info-two{
    padding: 50px 30px;
  }
  .my-info-page .info-two.info-type02{
    padding: 40px 30px;
  }
}
@media all and (max-width: 768px){
  .my-info-page .top-info-box{flex-wrap: wrap;}
  .my-info-page .info-two,
  .my-info-page .info-two.info-type02{
    width: 100%;
    padding: 25px;
  }
  .my-info-page .mypage-flex .info-tit{
    width: 100px;
    min-width: 100px;
  }


  .my-info-page .mypage-simsa .icon i{
    width: 60px;
    height: 60px;
  }

  /* .my-info-page .mypage-simsa:nth-child(1){
    padding-bottom: 20px;
  } */
  .my-info-page .mypage-simsa + .mypage-simsa{
    margin-top: 20px;
    padding-top: 20px;
  }
}

.mypage-myinfo-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin-top: 40px;
}

.mypage-myinfo-nav .nav-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  background-color: #00A19A;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color:#fff;
}

@media all and (max-width: 768px){
  .mypage-myinfo-nav .nav-back {
    width: 260px;
    height: 60px;
  }
}

@media all and (max-width:576px){
  .mypage-myinfo-nav .nav-back {
    width: 200px;
    height: 45px;
    font-size: 1.8rem;
  }
}

/* 마이페이지 -> 내정보 팝업 */
.myinfo-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  background-color: rgba(0,0,0,.2);
}

.myinfo-popup.on{
  display: flex;
}

.myinfo-popup .popup-center{
  max-width: 1162px;
  width: 97%;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #000;
  background-color: #fff;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}
.myinfo-popup .pop-flex{
  display: flex;
  align-items: center;
}
.myinfo-popup .pop-flex.pb-txt{
  padding-bottom: 70px;
}
.myinfo-popup .pop-flex .pop-icon{
  width: 255px;
  min-width: 255px;
}

.myinfo-popup .pop-now-ing{
  width: calc(100% - 255px);
}

.myinfo-popup .num-ber-ing{
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;

}

 .myinfo-popup .num-ber-ing .num-ber-box{
  position: relative;
  z-index: 1;
 }

.myinfo-popup .num-ber-ing:before{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: #F5F5F5;
  width: calc(100% - 10px);
  content: '';
  height: 25px;
}


.myinfo-popup .num-ber-ing:after{
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00A19A;
  content: '';
  height: 25px;
}

.myinfo-popup .num-ber-ing.pink-num:after{
  background-color: #EE689E;
}

.num-ber-ing:has(.num-ber-box01.complete):after {
  width: calc(25% - 2.5px);
}
.num-ber-ing:has(.num-ber-box02.complete):after {
  width: calc(50% - 5px);
}
.num-ber-ing:has(.num-ber-box03.complete):after {
  width: calc(75% - 7.5px);
}
.num-ber-ing:has(.num-ber-box04.complete):after {
  width: calc(100% - 10px);
}

.popup-01 .num-ber-ing.pink-num:has(.num-ber-box01.complete):after{
  width: calc(50% - 2.5px);
}
.popup-01 .num-ber-ing.pink-num:has(.num-ber-box02.complete):after{
  width: calc(100% - 10px);
}
.popup-02 .num-ber-ing.pink-num:has(.num-ber-box01.complete):after{
  width: calc(33.333% - 2.5px);
}
.popup-02 .num-ber-ing.pink-num:has(.num-ber-box02.complete):after{
  width: calc(66.666% - 5px);
}
.popup-02 .num-ber-ing.pink-num:has(.num-ber-box03.complete):after{
  width: calc(100% - 10px);
}
.myinfo-popup .num-ber-ing.pink-num .num-ber-box.off{
  display: none;
}

.myinfo-popup .num-ber-ing .on .txt br.mo-only{
  display: none;
}
.myinfo-popup .num-ber-ing .num{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D9D9D9;
  box-shadow: 0px 0px 8px 0px rgba(89, 89, 89, 0.3);
  margin: 0 auto;
  position: relative;
}




.myinfo-popup .num-ber-ing .txt{
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.myinfo-popup .num-ber-ing .on .num{
  background-color: #00A19A;
}

.myinfo-popup .num-ber-ing .on .txt{
  color: #00A19A;
  font-weight: 700;
}

.myinfo-popup .num-ber-ing.pink-num .on .num{
  background-color: #EE689E;
}

.myinfo-popup .num-ber-ing.pink-num .on .txt{
  color: #EE689E;
  font-weight: 700;
}

.myinfo-popup .num-ber-ing .complete .num:before{
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #00A19A url(/asset/img/icon/ico-checksvg.svg)no-repeat center center;
}

.myinfo-popup .num-ber-ing.pink-num .complete .num:before{
  background-color: #EE689E;
}

.myinfo-popup .pop-gosi{
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: rgba(0,161,154,.1);
}

.myinfo-popup .closed-btn{
  position: absolute;
  width: 30px;
  height: 30px;
  right: 24px;
  top: 24px;
  z-index: 10;
  cursor: pointer;
}
.myinfo-popup .closed-btn i{
  width: 100%;
  height: 2px;
  background-color: #191919;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.myinfo-popup .closed-btn i:nth-child(1){
  transform: translate(-50%,-50%) rotate(45deg);
}
.myinfo-popup .closed-btn i:nth-child(2){
  transform: translate(-50%,-50%) rotate(-45deg);
}

.myinfo-popbtn{
  position: relative;
  padding-right: 25px;
  margin-right: -25px;
  }
.myinfo-popbtn:before{
  width: 25px;
  height: 25px;
  background: url(/asset/img/icon/readclass-iocn.png)no-repeat center center;
  position: absolute;
  right: 15px;
  top: 0;
  content: '';
}

@media all and (max-width:768px){
  .myinfo-popup .popup-center{
    padding: 30px 10px;
  }
  .myinfo-popup .pop-flex{
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .myinfo-popup .pop-flex .pop-icon{
    width: 100%;
    text-align: center;
  }
  .myinfo-popup .pop-now-ing{
    width: 100%;
  }

  .myinfo-popup .pop-gosi{
    height: 50px;
  }

  .myinfo-popup .num-ber-ing .num{
    width: 40px;
    height: 40px;
  }

  .myinfo-popup .num-ber-ing .complete .num:before{
    width: 30px;
    height: 30px;
  }

  .myinfo-popup .num-ber-ing:before,
  .myinfo-popup .num-ber-ing:after{
    height: 15px;
  }
  .myinfo-popup .num-ber-ing .txt{
    font-size: 1.4rem;
  }
}

@media all and (max-width:576px){
  .myinfo-popup .num-ber-ing .num,
  .myinfo-popup .num-ber-ing .txt{
    font-size: 1.2rem;
  }

  .myinfo-popup .popup-center{
    padding: 20px 22px;
  }
  .myinfo-popup .num-ber-ing .complete .num:before{
    background-size: 12px;
  }
  .myinfo-popup .num-ber-ing .on .txt br.mo-only{
  display: block;
}
}

.down-btn-icon{
  display: flex;
  align-items: center;
  gap: 10px;
}
.down-btn-icon:before{
  display: block;
  width: 24px;
  height: 24px;
  background: url(/asset/img/icon/download-icon.png)no-repeat center center /cover;
  content: '';
}

.mypage-tit-span{
  padding: 5px 15px;
  border-radius: 5px;
  background-color: #00A19A;
}

.inte-rest-list{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 28px;
}
.inte-rest-list .list-box{
  width: calc(25% - 21px);
}

.inte-rest-list .top-img{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border: 1px solid #AEAEAE;
  position: relative;
}
.inte-rest-list .top-img img{
  max-width: 90%;
  max-height: 90%;
}
.inte-rest-list .check-box{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}
.inte-rest-list .check-box input{display: none;}
.inte-rest-list .check-box i{
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid #aeaeae;
  position: relative;
}
.inte-rest-list .check-box input:checked ~ i:before{
  opacity: 1;
}
.inte-rest-list .check-box i:before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: #191919 url(/asset/img/sub/mypage/interest_check.png)no-repeat center center;
  opacity: 0;
}

.inte-rest-list .tag-li{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.inte-rest-list .tag-li span{
  display: inline-block;
  padding: 5px 10px;
  border-radius: 50px;
  background: linear-gradient(270deg,rgba(0, 161, 154, 1) 0%, rgba(0, 47, 135, 1) 100%);
}

.inte-rest-delete{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #00A19A;
  width: 200px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}

@media all and (max-width:1024px){
  .inte-rest-list .list-box{
    width: calc(33.333% - 18.666px);
  }
}

@media all and (max-width:768px){
  .inte-rest-delete{
    font-size: 1.8rem;
  }
  .inte-rest-list .list-box{
    width: calc(50% - 14px);
  }
}



/* Form Modal */
.form-modal {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	padding:20px;;
	z-index: 9999;
}

.form-modal .modal-con {
	display: flex;
  justify-content: center;
  align-items: center;
  max-width:640px;
  width: 100%;
  max-height: calc(100% - 300px);
	height:100%;
	margin:0 auto;
}

.form-modal .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.form-modal .modal-inner {
	position: relative;
  width: 100%;
  height: 100%;
  padding:40px;
  background-color: #fff;
	overflow-y: auto;
}

.form-modal .textarea p {
	font-size:1.6rem;
}

.form-modal.open {
  display: flex;
  align-items: center;
  visibility: visible;
}

@media screen and (max-width:1200px) {
  .form-modal .textarea p {
    font-size:1.4rem;
  }
}
@media screen and (max-width:1024px) {
  .form-modal .modal-inner {
    padding: 30px;
  }
}
@media screen and (max-width:768px) {
  .form-modal .textarea p {
    font-size:1.3rem;
  }
}
@media screen and (max-width:576px) {
  .form-modal .modal-inner {
    padding: 20px;
  }

  .form-modal .textarea p {
    font-size:1.2rem;
  }
}


.wish-sub-mit{
  max-width: 550px;
  max-height: 280px;
  width: 93.75%;
  height: 93.75%;
  background-color: #fff;
  margin: 0 auto;
}
.wish-sub-mit .wish-con{
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.wish-sub-mit .top-tit{
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0 10px;
}
.wish-sub-mit .war-ning-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wish-sub-mit .bot-btn{
  display: flex;
  gap: 10px;
}
.wish-sub-mit .bot-btn .wish-btn{
  width: calc(50% - 5px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-align: center;

}
.wish-sub-mit .bot-btn .wish-btn.bg-green{
  background-color: #00A19A;
}
.wish-sub-mit .bot-btn .wish-btn.bg-skygreen{
  background-color: #E5F5F5;
}

.leave-text-area{
  width: 100%;
}
.leave-text-area textarea{
  width: 100%;
  min-height: 360px;
  padding: 30px;
  resize: none;
  outline: none;
  background-color: #F5F5F5;
  border-radius: 20px;
}

@media all and (max-width:768px){
  .leave-text-area textarea{
    min-height: 180px;
  }
}
.file-attach{
  margin-top: 10px;
}

/* privacy */
.privacy .textarea {
  height: 600px;
  overflow-y: auto;
  border:1px solid #B3B3B3;
  border-radius: 5px;
}

.privacy .textarea > div {
  padding:20px;
  font-size:2rem;
}

@media screen and (max-width:1200px) {
  .privacy .textarea > div {
    font-size:1.8rem;
  }
}
@media screen and (max-width:1024px) {
  .privacy .textarea {
    height: 400px;
  }
}
@media screen and (max-width:768px) {
  .privacy .textarea > div {
    font-size:1.6rem;
  }
}
@media screen and (max-width:576px) {
  .privacy .textarea > div {
    font-size:1.4rem;
  }
}



.standard-status-container {
    width: 100%;
    margin: 40px 0;
    padding: 0 15px; /* 페이지 양옆 여백 */
}

.standard-status-container .status-inner {
    max-width: 1162px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #eee; /* 팝업보다 부드러운 테두리 */
    background-color: #fff;
    position: relative;
    /* max-height 및 overflow 제거 (페이지 흐름에 따름) */
}

/* 팝업 전용이었던 요소를 일반 레이아웃으로 변경 */
.standard-status-container .pop-flex {
    display: flex;
    align-items: center;
}

.standard-status-container .pop-flex.pb-txt {
    padding-bottom: 90px; /* 글자 겹침 방지를 위해 하단 여백 확보 */
}

.standard-status-container .pop-icon {
    width: 255px;
    min-width: 255px;
}

.standard-status-container .pop-now-ing {
    width: calc(100% - 255px);
}

/* 게이지 바 및 번호 스타일 (기존 스타일 유지하되 위치 보정) */
.standard-status-container .num-ber-ing {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.standard-status-container .num-ber-ing:before {
    position: absolute;
    left: 50%;
    top: 30px; /* 원의 중앙 위치에 맞춤 (60px 원의 절반) */
    transform: translateX(-50%);
    background-color: #F5F5F5;
    width: calc(100% - 10px);
    content: '';
    height: 25px;
    z-index: 0;
}

.standard-status-container .num-ber-ing:after {
    position: absolute;
    left: 5px;
    top: 30px;
    background-color: #00A19A;
    content: '';
    height: 25px;
    z-index: 0;
    width: 0; /* 기본값 0 */
}

.standard-status-container .num-ber-ing.pink-num:after {
    background-color: #EE689E;
}

/* 단계별 게이지 너비 (기존 로직 유지) */
.standard-status-container .num-ber-ing:has(.num-ber-box01.complete):after { width: calc(10% + 5px); } /* 개수에 따라 조정 필요 */
/* ... 위 방식보다는 실제 작업시 .complete된 마지막 박스 위치에 맞게 %를 조정하세요 ... */

.standard-status-container .num-ber-box {
    position: relative;
    z-index: 1;
}

.standard-status-container .num-ber-ing .num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00A19A;
    box-shadow: 0px 0px 8px 0px rgba(89, 89, 89, 0.3);
    margin: 0 auto;
}

.standard-status-container .num-ber-ing .txt {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    font-size: 18px;
    color: #000;
}

/* 활성화 상태 */
.standard-status-container .num-ber-ing .on .num { background-color: #00A19A; }
.standard-status-container .num-ber-ing .on .txt { color: #00A19A; font-weight: 700; }
.standard-status-container .num-ber-ing.pink-num .on .num { background-color: #EE689E; }
.standard-status-container .num-ber-ing.pink-num .on .txt { color: #EE689E; font-weight: 700; }

.standard-status-container .num-ber-ing .complete .num:before {
    content: '';
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    background: #00A19A url('/asset/img/icon/ico-checksvg.svg') no-repeat center center;
}

.standard-status-container .pop-gosi {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: rgba(0, 161, 154, 0.1);
    color: #00A19A;
}

/* 반응형 처리 */
@media all and (max-width: 768px) {
    .standard-status-container .pop-flex { flex-wrap: wrap; }
    .standard-status-container .pop-icon { width: 100%; text-align: center; margin-bottom: 20px; }
    .standard-status-container .pop-now-ing { width: 100%; }
    .standard-status-container .num-ber-ing .txt { font-size: 14px; }
    .standard-status-container .status-inner { padding: 30px 15px; }
}