@charset "UTF-8";

/**************************************************** 통합검색 (대민) ****************************************************/
#integratedSearchVw .integrated-search:not(a.integrated-search) .search-box .btn__search {
	cursor:pointer;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: url(../images/ico-search.svg) no-repeat center / 32px;
	border: 0;
}
#integratedSearchVw .integrated-search:not(a.integrated-search) .search-box .btn__search::before {
	content: none;
}
#integratedSearchVw .integrated-search:not(a.integrated-search) a.search__close {
	width: var(--icon-size-medium);
	height: var(--icon-size-medium);
	display: inline-block;
	background: url(../images/common/ico-sitemap-close.svg) no-repeat center;
	position: absolute;
	right: var(--icon-size-medium);
}
.search-body #integratedSearchVw  b {
	color:red;
}
.search-body #integratedSearchVw .paging ul {
	display: flex;
}
.search-body #integratedSearchVw .paging ul li{
    flex : auto;
}

.search-body #integratedSearchVw .active{
    background-color: rgb(238, 242, 247);
}


.search-body #integratedSearchVw .suggest-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 9999;
    padding-top: 1rem;
    box-sizing: border-box;
    position: relative; /* 버튼 절대위치 기준을 위해 */
}

.search-body #integratedSearchVw #suggestList {
    /* 자동완성 리스트 스타일 필요하면 추가 */
    max-height: 350px;
    overflow-y: auto;
}

.search-body #suggestList > div {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-body #suggestList > div:hover {
    background-color: #f0f4ff; /* 연한 파란색 배경 */
}

/* 닫기 버튼 스타일 */
.search-body #integratedSearchVw .btn-close {
    position: absolute;
    left: 50%;
    margin-top:1%;
    transform: translateX(-50%);
    background: #eee;
    border: 1px solid #bbb;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 16px;
    font-weight: bold;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
/**************************************************** 통합검색 (대민) ****************************************************/

/**************************************************** 특정지역 통계 infomation (대민) ****************************************************/
input[type=text].hasDatepicker, input[type=search].hasDatepicker, input[type=number].hasDatepicker {
    background: url(../images/common/ico-date.svg) no-repeat right 8px center;
    display: inline-block;
    width: 100%;
    text-align: right;
    padding-right: var(--padding-08);
}

.tip {
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    flex-direction: row;
    gap: var(--gap-01);
    font-size: var(--font-size-label-small);
}
.tip::before {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: var(--icon-size-xsmall);
    height: var(--icon-size-xsmall);
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
}
.tip.information {
    color: var(--color-text-information);
}
.tip.information::before {
    background-image: url(../images/common/ico-tip-info.svg);
}
/**************************************************** 특정지역 통계 infomation (대민) ****************************************************/

/**************************************************** QNA 목록 ****************************************************/
#qnaListVw button:disabled {
    border: 0;
    background-color: #d3d3d3;
    color: #a9a9a9;
    cursor: not-allowed;
    opacity: 0.6;
}
/**************************************************** QNA 목록 ****************************************************/

/**************************************************** QNA 등록/수정 ****************************************************/

#qnaVw .wrap.type01 {
    margin: 20px auto; /* 중앙 정렬 */
    padding: 20px;
    border-radius: 5px;
    background: #fff; /* 배경 색상 */
}

#qnaVw .table-box {
    width: 100%;
}

#qnaVw .wTable.type01 {
    width: 100%;
    border-collapse: collapse;
}

#qnaVw .wTable.type01 th,
#qnaVw .wTable.type01 td {
    border: 1px solid #ddd; /* 표 테두리 추가 */
    padding: 10px;
}

#qnaVw .wTable.type01 th {
    background: #f8f8f8;
    font-weight: bold;
    text-align: left;
}

#qnaVw .wTable.type01 input,
#qnaVw .wTable.type01 select,
#qnaVw .wTable.type01 textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

#qnaVw textarea {
    resize: vertical;
}
#qnaVw .comment-outer {
    margin-top: var(--padding-09);
    margin-bottom: var(--padding-09);
}
#qnaVw .comment-outer .paging {
    margin-top: 0;
}
#qnaVw .comment-result {
    font-size: var(--font-size-heading-small);
    padding-bottom: var(--padding-04);
}
#qnaVw .comment-box {
    margin-bottom: var(--padding-07);
    border-radius: var(--border-radius-small);
}
#qnaVw .comment-box__header {
    display: flex;
    align-items: center;
    justify-content: unset;
    flex-direction: row;
    gap: var(--gap-03);
    margin-bottom: var(--padding-02);
    padding-bottom: var(--padding-02);
    border-bottom: 1px dashed var(--color-border-gray-subtle);
}
#qnaVw .comment-box__header .date {
    font-weight: var(--font-weight-bold);
    color: var(--color-text-subtle);
}
#qnaVw .comment-box__header .private,
#qnaVw .comment-box__header .release {
    display: inline-block;
    padding: var(--padding-01);
    font-size: var(--font-size-label-small);
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-small);
    text-align: center;
    width: 60px;
}
#qnaVw .comment-box__header .private.private,
#qnaVw .comment-box__header .release.private {
    color: var(--color-text-inverse-static);
    background-color: var(--color-background-danger);
}
#qnaVw .comment-box__header .private.release,
#qnaVw .comment-box__header .release.release {
    color: var(--button-secondary-color-text);
    background-color: var(--button-tertiary-color);
    border: 1px solid var(--button-secondary-color-border);
}
#qnaVw .comment-box__item {
    padding: var(--padding-07) var(--padding-03);
    background: var(--color-background-gray-subtler);
    border-radius: var(--border-radius-small);
}
#qnaVw .comment-box__item:not(:last-child) {
    margin-bottom: var(--padding-01);
}
#qnaVw .comment-box__content {
    border-radius: var(--border-radius-small);
    padding: var(--padding-05) var(--padding-03);
    margin-bottom: var(--padding-05);
}

#qnaVw .ansBox {
    margin-top:20px;
    background-color:#F4F6F9;
    border-radius:10px;
    padding:10px 10px 45px 10px;
}

#qnaVw .ansBox table {
    width: 100%;
    border-collapse: collapse;
}

#qnaVw .ansBox th,
#qnaVw .ansBox td {
    padding: 10px;
    text-align: center;
}

#qnaVw .ansBox th {
    width: 20%;
    background-color: #E9ECEF;
    border: 1px solid #DEE2E6;
}

#qnaVw .ansBox td {
    width: 80%;
    border: 1px solid #DEE2E6;
}

#qnaVw .ansBox textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    resize: vertical;
}

#qnaVw .ansBox .btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

#qnaVw .ansArea li{
    width: 100%;
    background: white;
    padding: 15px;
    margin-top: 10px;
    border-radius: 15px;
}

#qnaVw .ansBtnArea{
    display: flex;
    width: 100%;
    justify-content: end;
    margin-bottom: 20px;
}
/**************************************************** QNA 등록/수정 ****************************************************/

/**************************************************** 관측지소 현황 ****************************************************/
.map__wrap .marker__legend {
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 2;
}

.map__wrap .marker__legend > div {
    text-align: center;
}

.map__wrap .marker__legend > div > img {
    width: 24px;
    height: 24px;
}

.map__wrap .marker__legend > div > div {
    font-size: 12px;
}

#obsvtrSttusListVw .pic__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--gap-03);
}

#obsvtrSttusListVw .pic__wrap .picture {
    flex: 1;
    width: 100%;
    max-width: 276px;
    text-align: center;
}

#obsvtrSttusListVw .pic__wrap .picture > div {
    height: 200px;
    background-color: #f4f6f9;
    border-radius: var(--border-radius-small);
}

#obsvtrSttusListVw .pic__wrap .picture p {
    font-weight: var(--font-weight-bold);
    margin-top: var(--padding-02);
}

#obsvtrSttusListVw .no-image-box {
	height: 100%;
	display: flex;
  	justify-content: center;
  	align-items: center;
  	font-weight: 600;
  	letter-spacing: 1px;
}


#obsvtrSttusListVw .slideshow-container {
	height: 718px;
	overflow: auto;
}
  
#obsvtrSttusListVw .dot-container {
	text-align:center;
	background: #fff;
	padding: 10px 0px;
}  

/* Hide the images by default */
#obsvtrSttusListVw .slides {
  padding-left:3rem;
  padding-right:3rem;
  margin:0 !important;
  
}

/* Next & previous buttons */
#obsvtrSttusListVw .prev,
#obsvtrSttusListVw .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
#obsvtrSttusListVw .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#obsvtrSttusListVw .prev:hover,
#obsvtrSttusListVw .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: #fff;
}

/* The dots/bullets/indicators */
#obsvtrSttusListVw .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

#obsvtrSttusListVw .active, #obsvtrSttusListVw .dot:hover {
  background-color: #000;
}


#obsvtrSttusListVw .ellipsis {
	display: inline-block;
  	overflow: hidden;
  	white-space: nowrap;
  	text-overflow: ellipsis;
  	max-width: 430px;
}

#obsvtrSttusListVw .ellipsis.more {
	display: block;
	overflow: visible;
  	white-space: normal;
	text-overflow: unset;
	overflow-wrap: break-word;
}

#obsvtrSttusListVw .moreText {
	float: right;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
}


#obsvtrSttusListVw .split__wrap {
	display: flex;
    align-items: unset;
    justify-content: unset;
    flex-direction: row;
    gap: var(--padding-09);
}

#obsvtrSttusListVw .split__wrap .map__wrap, #obsvtrSttusListVw .split__wrap .table__area  {
	position: relative;
	width: 50%;
	border: 1px solid var(--popup-window-body-color-background);
	border-radius: var(--border-radius-small);
}
#obsvtrSttusListVw .split__wrap .table__area  {
	width: calc(50% - 4.0rem);
}

#obsvtrSttusListVw .info__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background-color: var(--popup-window-header-color-background);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
    padding: var(--padding-02);
    font-size: var(--font-size-heading-xsmall);
    font-weight: var(--font-weight-bold);
}

@media screen and (max-width: 1280px) {
	#obsvtrSttusListVw .split__wrap {
    	flex-direction: column;
  	}
  	
  	#obsvtrSttusListVw .split__wrap .map__wrap, #obsvtrSttusListVw .split__wrap .table__area {
	    width: 100%;
  	}
  	
  	#obsvtrSttusListVw .pic__wrap {
	    flex-direction: column;
	}
	
	#obsvtrSttusListVw .slides {
	  	padding: 0;
	}
	
	#obsvtrSttusListVw .table__box {
		overflow: visible;
	}

}

/**************************************************** 관측지소 현황 ****************************************************/

/**************************************************** 메인팝업 ****************************************************/
#mainPop .pic__wrap {
    display: flex;
    align-items: center;
    justify-content: unset;
    flex-direction: row;
    gap: var(--gap-03);
}

#mainPop .pic__wrap .picture {
    flex: 1;
    text-align: center;
}

#mainPop .pic__wrap .picture > div {
    height: 200px;
    background-color: #f4f6f9;
    border-radius: var(--border-radius-small);
}

#mainPop .pic__wrap .picture p {
    font-weight: var(--font-weight-bold);
    margin-top: var(--padding-02);
}

#mainPop .no-image-box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    letter-spacing: 1px;
}



/* Hide the images by default */
#mainPop .slides {
    display: none;
    padding-left:3rem;
    padding-right:3rem;
    margin:0 !important;
}

/* Next & previous buttons */
#mainPop .prev,
#mainPop .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 10px;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
#mainPop .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#mainPop .prev:hover,
#mainPop .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: #fff;
}

/* The dots/bullets/indicators */
#mainPop .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#mainPop .active, #mainPop .dot:hover {
    background-color: #000;
}


#mainPop .ellipsis {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 465px !important;
}

#mainPop .ellipsis.more {
    display: block;
    overflow: visible;
    white-space: normal;
    text-overflow: unset;
    overflow-wrap: break-word;
}

#mainPop .moreText {
    float: right;
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
}

.main__lisk .area .lisk__explain > li .img__box p.title:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: var(--border-radius-small);
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 4px 5px rgb(255, 255, 255);
    opacity: 0.65;
    z-index: -1;
    position: absolute;
}
.main__lisk .area .lisk__explain > li .img__box p.title {	
	position: absolute;
	width: fit-content;
	white-space: nowrap; 
	font-weight: var(--font-weight-bold);
	padding: var(--padding-02);
	z-index: 2;
	display: none;
}
.main__lisk .area .lisk__explain > li.e01 .img__box p.title {
	transform: translate(65%, -198%);
}
.main__lisk .area .lisk__explain > li.e03_12 .img__box p.title {
	transform: translate(100%, -105%);
}
.main__lisk .area .lisk__explain > li.e04 .img__box p.title {
	transform: translate(3%, -135%);
}
.main__lisk .area .lisk__explain > li.e05 .img__box p.title {
	transform: translate(-30%, 10%);
}
.main__lisk .area .lisk__explain > li.e07 .img__box p.title {
	transform: translate(0%, -80%);
}
.main__lisk .area .lisk__explain > li.e08 .img__box p.title {
	transform: translate(40%, -330%);
}
.main__lisk .area .lisk__explain > li.e09 .img__box p.title {
	transform: translate(5%, 20%);
}
.main__lisk .area .lisk__explain > li.e10 .img__box p.title {
	transform: translate(80%, -5%);
}
.main__lisk .area .lisk__explain > li.e11 .img__box p.title {
	transform: translate(20%, -475%);
}
.main__lisk .area .lisk__explain > li.e14 .img__box p.title {
	transform: translate(-60%, -525%);
}
.main__lisk .area .lisk__explain > li.e15 .img__box p.title {
	transform: translate(55%, -195%);
}
.main__lisk .area .lisk__explain > li:hover .img__box p.title {
  display: block;
}
.main__lisk .area .lisk__explain > li.active .img__box p.title {
  display: none;
}
/**************************************************** 메인팝업 ****************************************************/

/**************************************************** 생태리스크 목록/상세 ****************************************************/
#riskListTbody span.tag, #riskListArea span.tag {
	display: inline-block;
    padding: 2px 10px;
    background: #e0f7fa;
    color: #00796b;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #b2ebf2;
    margin-right: 4px;
    letter-spacing: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: background 0.2s;
}

.btn__box div.eclgyRiskNo__box{
	position: absolute;
	bottom: -87px;
	display: none;
}

.btn__box div.eclgyRiskNo__box.active{
	display: flex;
}

.btn__box div.eclgyRiskNo__box ul{
    display: flex;
    align-items: center;
    justify-content: unset;
    flex-direction: row;
    padding: var(--padding-05);
    box-shadow: var(--shadow-normal-gray);
    background-color: #fff;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--color-border-gray-subtle);
    gap: var(--padding-05);
}

.btn__box div.eclgyRiskNo__box ul::after {
    content: none;
}

.btn__box div.eclgyRiskNo__box ul::before {
    content: "";
    display: block;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--icon-size-xsmall);
    height: var(--icon-size-xsmall);
    background: url(../images/common/ico-user-info-box.svg) no-repeat center;
}

.btn__box div.eclgyRiskNo__box ul button {
    border: 0;
    cursor: pointer;
    border-radius: var(--border-radius-small);
}
/**************************************************** 생태리스크 목록/상세 ****************************************************/
/**************************************************** 회원가입 ****************************************************/
span.ico {
    min-width: unset;
    display: inline-block;
    font-weight: var(--button-font-weight-bold);
    color: var(--color-text-subtle);
    margin-left: 8px;
}

span.ico.help::before {
    content: "";
    display: inline-block;
    vertical-align: sub;
    width: var(--icon-size-xsmall);
    height: var(--icon-size-xsmall);
    background-image: url(../images/ico/ico-help.svg);
    margin: 0;
    background-size: var(--icon-size-xsmall);
}

span.ico.help:hover > span {
    width: auto;
    height: auto;
    transform: translate(-5%, 75%);
    border-radius: var(--border-radius-small);
    padding: var(--padding-01);
    background: var(--icon-color-background);
    clip: unset;
    font-weight: 300;
}
/**************************************************** 회원가입 ****************************************************/

/**************************************************** 메인페이지 ****************************************************/
header .header__bottom .gnb > li > a.link {
    color: var(--color-text-primary);
}


header .header__bottom .gnb > li > a.link::after {
    background: url(../images/common/ico-link._primary.svg) no-repeat center;
}

#btn-scroll-down {
    position: absolute;
    bottom: 12%;
    left: 53%;
    transform: translateX(-50%);
    background: url(../images/common/icon_mouse.png) no-repeat center;
    width: 50px;
    height: 50px;
    border: 0;
    cursor: pointer;
}

#btn-scroll-down::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/common/ico-arrow-down.svg) no-repeat center;
    width: 16px;
    height: 17px;
    animation: smooth-bounce 2s ease-in-out infinite;
}

@keyframes smooth-bounce {
    0%, 100% {
        top: 40px;
    }
    50% {
        top: 50px;
    }
}

.main__lisk__mobile .link__box .btn__share + ul button.btn:not(.secondary) {
    min-width: var(--min-width-01);
}
/**************************************************** 메인페이지 ****************************************************/
