/* common */
/*
@font-face {
    font-family: 'NotoSans-Medium';
    src: url("../../fonts/NotoSans-Medium.woff2") format("woff2");
}

* {
    font-family: NotoSans-Medium;
}
 */

@font-face {
    font-family: 'KOHIBaeum';
    src: url("../../fonts/KOHIBaeum.woff2") format("woff2");
}

@font-face {
    font-family: 'NotoSans-Medium';
    src: url("../../fonts/NotoSans-Medium.woff2") format("woff2");
}
@font-face {
    font-family: 'NotoSans-Thin';
    src: url("../../fonts/NotoSans-Thin.woff2") format("woff2");
}

* {
    font-family: NotoSans-Medium;
}

/*화면 크기에 따른 rem 설정*/
html {
    font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1920 - 300)));
}

.content-box::-webkit-scrollbar,
.galmaet-lk-content::-webkit-scrollbar,
.facilities-popup::-webkit-scrollbar{
    width: 10px;
}
.content-box::-webkit-scrollbar-thumb,
.galmaet-lk-content::-webkit-scrollbar-thumb,
.facilities-popup::-webkit-scrollbar-thumb{
    background-color: #8b8b8b;
    border-radius: 10px;
    background-clip: padding-box;
    border: 2px solid transparent;
}
.content-box::-webkit-scrollbar-track,
.galmaet-lk-content::-webkit-scrollbar-track,
.facilities-popup::-webkit-scrollbar-track{
    background-color: #d5d5d5;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px white;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

*,
*:before,
*:after {
    position: relative;
    box-sizing: border-box;
}

table {
    text-align: center;
}

/* 타겟 배경 이미지 */
main {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

body,
div,
span,
header,
main,
section,
footer,
nav,
img,
form,
figcaption,
figure,
i,
p {
    margin: 0;
    padding: 0;
    border: 0;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 100%;
    margin: 0;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    overflow-y: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-use-select: none;
    user-select: none;
}

table, th, td {
    border: 1px solid #bfbfbf;
}

button {
    color: black;
}

/* scroll bar 클래스 */
html::-webkit-scrollbar {
    display: none;
}
select {
    background-color: #fff;
    background-image: none;

}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none; /* 경계선 제거 */
    background: none; /* 배경 제거 */
    padding: 0; /* 여백 제거 */
    margin: 0; /* 마진 제거 */
    font-weight: 500;
}
/*input, textarea {

    appearance: none;

    -webkit-appearance: none;

    -webkit-border-radius: 0;

}*/


/* scroll bar 클래스 끝 */

/* 변수 선언 */
:root {
    color-scheme: light only;

    --theme-menu-width: 600px;

    /* header 변수 */
    --header-section-height: 80px;
    /* header 변수 끝 */

    /* font-size 변수 */
    --font-size-lg: 1.5rem;
    --font-size-md: 1rem;
    --font-size-sm: 0.8rem;
    /* font-size 변수 */

    /* side-section 변수 */
    --side-section-width: calc((100vh - var(--header-section-height) - 8px) / 1.37777);
    --side-section-radius: 20px;
    --side-header-height: 3rem;
    /* side-section 변수 끝 */
}

/* 변수 선언 끝 */


/* catch-section 클래스 */
.catch-section {
    height: 28vw;
}
/* catch-section 클래스 끝 */

/* content section 클래스 */
.content-section {
    /*부모 구역의 길이*/
    --scroll-length: 1;
    height: calc(var(--scroll-length) * 100dvh);
    width: 100%;
}
/* content section 클래스 끝 */

/* figure 클래스 */
.figure {
    --scale: calc(0.8 + (0.2 * var(--scroll-length) * var(--visible-y)));
    top: 0;
    left: 0;
    margin: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100dvh;
    display: block;
    position: sticky;
    overflow: hidden;
    will-change: transform;
    transform: scale(var(--scale));
    border-radius: 30px;
    box-shadow: #8d8787 5px 5px 5px;
}
/* figure 클래스 끝 */

/* title section 클래스 */
.title-section {
    display: flex;
    align-items: center;
    height: var(--header-section-height);
    padding: 0.5rem 2.0497%;
    border-bottom: 1px solid lightgray;
}

.title-section > h1 {
    margin-left: 16px;
}

.title-img {
    width: 2.1em;
    height: 2.1rem;
}

.title-text {
    font-weight: bold;
}

/* title 클래스 끝 */

/* map section 클래스 */
.map-section {
    width: 100%;
    height: calc(100dvh - var(--header-section-height));
}

.map-bottom-text {
    z-index: 9;
    font-size: 12px;
    padding: 6px 8px;
    position: absolute;
    left: calc(0.5em + 8px);
    bottom: 0.5em;
    background: #ffffff70;
    border-radius: 4px;
}
/* map section 클래스 끝 */

/* side-header-section */
.side-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: #2f5597;
    border-top-left-radius: var(--side-section-radius);
    padding: 0 16px;
}

.side-header-section .header-title {
    display: inline-block;
    font-weight: bold;
    color: #FFFFFF;
}

.side-header-section .header-name {
   /* color: #595959;*/
    color: #FFFFFF;
    font-size: 0.6rem;
}

.side-header-section .header-date {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.53333rem;
    color: #FFFFFF;
}

.side-header-section > .header-btn {
    background: #fff2cc;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    font-size: 0.63333rem;
    padding: 1px 8px;
}

/* side-header-section 끝 */

/* theme menu */
.theme-menu-section {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: white;
   /* padding: 0.5vh 1vh;*/
    border-radius: 5px;
    border: 1px solid #d7d7d7;
}

.theme-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 0.5vh 1vh;
}

.theme-menu li {
    margin: 0 10px;
}

.theme-item-img {
    width: 1.53846rem;
    aspect-ratio: 1 / 1;
}

.theme-item{
    color: #212529;
    text-decoration: none;
    font-size: 0.53333rem;
    cursor: pointer;
}

.theme-item:hover,
.theme-item.on,
.dropdown-btn.on {
    background-color: #ffffff;
    color: #e658a6;
}

.theme-item > span{
    font-family: KOHIBaeum;
}

.side-theme-item > span{
    font-family: KOHIBaeum;
}

/* side-section */
.side-section {
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    background-color: #ffffff;
    width: var(--side-section-width);
    min-width: 600px;
    z-index: 999;
}

.side-section {
    border-top-left-radius: var(--side-section-radius);
    border-bottom-left-radius: var(--side-section-radius);
    transform: translate(calc(var(--side-section-width) * 1), 0);
    transition: .5s;
}

.side-section.on {
    transform: translate(0, 0);
}

.side-section-btn {
    position: absolute;
    top: 48%;
    right: 100%;
    display: none;
    width: 24px;
    height: 52px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: white;
    border: 0.5px solid lightgray;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.side-section-btn.on {
    display: inline-block;
}

.side-section-btn.back {
    background-image: url(../../images/common/back.webp);
}

.side-section-btn.next {
    background-image: url(../../images/common/next.webp);
}

.side-section-page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.side-content-section {
    height: 100%;
    width: 100%;
    border-radius: var(--side-section-radius);
    display: flex;
    flex-direction: column;
    padding-bottom: 1vh;
    /*padding: 1vh 2.5vh;*/
    min-height: calc(var(--side-section-width) * 1.29);
}

/* dash-section */
.dash-section {
    border: 1px solid lightgray;
    border-radius: 8px;
    padding: 1vh;
    margin: 1vh 5.5% 0vh 5.5%;
}

/* dash-section 끝 */

/* dash-cover */
.dash-cover{
    border-bottom-left-radius: var(--side-section-radius);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 99;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    justify-content: flex-start;
    padding: 20% 0;

    /*t1 날짜 검색 부분 추가*/
    /*
    border-width: 1px 0 0 0;
    border-style: solid;
    top: 67px;
     */
}

.dash-cover span {
    font-size: 1.5rem;
}
/* dash-cover 끝 */

/* 페이지 버튼 */
.page-btn > img {
    width: 0.8rem;
    aspect-ratio: 1 / 1.6;
}

.page-btn:hover {
    opacity: 0.5;
    cursor: pointer;
}
.page-btn {
    position: absolute;
    border: none;
    background: none;
    z-index: 1;
}

.page-btn.prev {
    left: 1%;
    top: 45%;
}

.page-btn.next {
    right: 1%;
    top: 45%;
}

/* 페이지 버튼 끝 */

.ui-datepicker{
    font-size: 0.53333rem;
}
/* common 끝 */

/* toggle 버튼 */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
   margin-left: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}
/* toggle 버튼 끝 */

/*준비중 팝업*/
.preparing-popup{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    z-index: 100;
}

.preparing-popup-background{
    /*width: 360px;*/
    /*height: 142px;*/
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #00aaff;
    border-radius: 9px;
    line-height: 1.6em;
    color: #FFFFFF;
    z-index: 9999;
    font-size: 16px;
}

.preparing-popup.active {
    display: block;
    z-index: 99999;
}

.preparing-popup-btn {
    /*margin-left: 330px;*/
    border: none;
    background: none;
    color: #6d6d6d;
    position: absolute;
    top: 5px;
    right: 12px;

}

.preparing-popup-btn:hover {
    color: black;
}

.preparing-popup-content {
    margin: 30px;
    background: white;
    padding: 10px;
    background: white;
    text-align: center;
}
.preparing-popup-content>p{
    line-height: 30px;
}
.btn-bug-report{
    font-size: 0.5rem;
    line-height: 0.3rem;
    color: white;
}

    /*준비중 팝업 끝*/

/* datepicker */
.datepicker-container {
    position: relative;
    display: inline-block;
}
.datepicker-icon {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 12%;
    aspect-ratio: 1 / 1;
}
.datepicker-container input[type="text"] {
 /*   padding-right: 2.0835vw; !* 아이콘 공간 확보 *!
    width: 160px;*/
}

/* 비활성화된 날짜 스타일 */
.ui-datepicker-unselectable .ui-state-disabled {
    background: #e0e0e0;
    color: #808080;
}

/* 월과 연도 Select Box의 폰트 스타일 변경 */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    font-family: NotoSans-Medium; /* 원하는 폰트 패밀리 설정 */
    font-size: 14px; /* 원하는 폰트 크기 설정 */
    color: #333; /* 원하는 폰트 색상 설정 */
}


/*사이드메뉴*/
/*
.side-menu-wrap {
    position: absolute;
    border: 1px solid #bfbfbf;
    width: 17vw;
    height: 80dvh;
    top: 14vh;
    left: 2.8vw;
    border-radius: 6px;
    padding: 1.3vw;
    white-space : nowrap
}

.side-menu-id {
    font-size: 0.54444rem;
}

.menu-list-title {
    font-size: 1.3vw;
}

.menu-list ol {
    text-indent: 1em;
}

.menu-list a {
    text-decoration:none;
    color: black;
    font-size: 1vw;
}

.menu-list-item.on {
    background: #36aeec;
    border-radius: 4px;
    padding: 0.4vw;
    color: white;
}
*/


/*모바일*/
.mobile-side-menu-wrap {
    display: none;
}


.mobile-my-page {
    position: absolute;
    width: 100%;
    height: 137px;
    top: 54px;
}

.mobile-side-menu-container {
    position: relative;
    left: 10px;
    font-size: 11px;
    color: #a2a2a2;
    display: none;
}

.mobile-side-menu-container img {
    width: 15px;
    height: 15px;
}

.mobile-side-menu-data-pop-wrap {
    position: absolute;
    top: 222px;
    width: 100%;
    height: 77vh;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.mobile-side-menu-data-pop-wrap.show {
    display: block;
}

.mobile-side-menu-data-pop-container {
    width: 100%;
    background: #FFFFFF;
    height: 203px;
    padding: 14px;
    top: 32lvh;
    z-index: 9999;
    border-radius: 10px;
}

.mobile-side-menu-radio-wrap {
    display: flex;
    flex-direction: column;
}

.mobile-side-top-menu {
    display: none;
}

.mobile-side-top-menu.show {
    display: flex;
}

.mobile-side-low-menu {
    display: none;
}

.mobile-side-low-menu.show {
    display: flex;
}

.mobile-file-upload-pop {
    width: 100%;
    height: 67dvh;
    background: white;
    top: 256px;
    font-size: 22px;
    text-align: center;
    display: none;
    position: absolute;
}

.mobile-file-upload-pop img {
    width: 160px;
}

.mobile-file-upload-pop.show {
    display: block;
}

.mobile-file-upload-pop-text {
    top:20px
}

.mobile-file-upload-pop-title {
    font-size: 36px;
}

/*준비중 팝업 끝*/

/* 마이페이지 공통 클래스 */
:root {
    --user-side-menu-width: 275px;
    --container-width: 1400px;
    --box-border-radius: 14px;
    --box-default-padding: 15px;
    --box-gap: 20px;
    --line-map-arrow-padding: 16px;
    --line-map-dropdown-width: 240px;
}
body {
    font-family: 'NotoSans-Medium';
    margin: 0;
    padding: 0;
}
.page-title {
    margin-top: var(--header-section-height);
}

/*
.page-title > div:first-child {
    padding-top: 80px;
}
*/

.page-title > div:first-child{
    /*height: 25%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 12px;
    position: relative;
}

.page-title > div:first-child >img{
    width: 94%;
    /*height: 100%*/
    height: auto;
    max-width: 94%;
}

.page-title > div:first-child >span{
    position: absolute;
}



.page-title > div:first-child > div {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
/* line-map 스타일 */
.line-map {
    padding: 0 20px;
    margin: 0 auto;
    max-width: var(--container-width);
    font-size: 16px;
    display: flex;
}

.line-map > div {
    border-left: 1px solid #ddd;
}

.line-map > div:last-child {
    border-right: 1px solid #ddd;
}

.line-map > div > a {
    padding: 8px var(--line-map-arrow-padding);
    display: block;
    color: black;
    text-decoration: none;
}

/* dropdown 스타일 */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown > span {
    display: inline-block;
    padding: 8px var(--line-map-arrow-padding);
    cursor: pointer;
    width: var(--line-map-dropdown-width);
}

.dropdown > img {
    width: 16px;
    display: inline-block;
    position: absolute;
    right: var(--line-map-arrow-padding);
    top: 8px;
    z-index: -1;
    transform: rotate(90deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    font-weight: 400;
    background-color: #f9f9f9;
    min-width: var(--line-map-dropdown-width);
}

.dropdown-content > li:hover {
    background-color: #ececec;
    cursor: pointer;
}

.dropdown-content > li > a {
    display: block;
    color: black;
    text-decoration: none;
    font-size: 12px;
    padding: 12px 16px;
}

.dropdown.show .dropdown-content {
    display: block;
}

.dropdown.show > img {
    transform: rotate(-90deg);
}

/* dropdown 스타일 끝*/
/* line-map 스타일 끝 */

.container-inner {
    /*display: flex;*/
    /*max-width: var(--container-width);*/
    /*margin: 0 auto;*/
    /*padding: 0 20px;*/

    display: flex;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/*
.side-bar {
    flex: 0 0 var(--user-side-menu-width);
    max-width: var(--user-side-menu-width);
    padding: 0 0 100px;
    position: relative;
    width: var(--user-side-menu-width);
}
*/

/* 제목 텍스트 스타일 */
.title-underline {
    flex: 1;
    font-weight: bold;
    align-items: center;
    display: flex;
}

.title-underline > span {
    margin-left: 6px;
    font-size: 16px;
    line-height: 100%;
}

/* 제목 텍스트 스타일 끝 */

.contents {
    flex: 1;
    padding-left: 20px;
    margin-left: var(--user-side-menu-width);
}

.contents-non-margin-left{
    margin-left: 0;
}

.default-box-style {
    background-color: white;
    border-radius: var(--box-border-radius);
    box-shadow: 6px 5px 16px rgba(0, 0, 0, 0.09);
}
/* 페이지 네이션 스타일 */
.pagination-container {
    font-size: 16px;
}

.pagination {
    justify-content: center;
}

.pagination.expired-popup {
    margin-top: 15px
}

.page-link {
    color: black;
    border: none;
    border-radius: 8px;
}

.page-link.page-prev {
    margin-left: -5px !important;
}

.page-link.page-next {
    margin-right: -5px !important;
}

.page-link.page-start {
    margin-right: -10px !important;
}

.page-link.page-end {
    margin-left: -10px !important;
}

.page-link:hover,
.page-link:focus {
    color: #0a58ca;
}

.page-item.active .page-link {
    color: #0a58ca;
    background-color: transparent;
}
/* 페이지 네이션 스타일 끝 */
/* 마이페이지 공통 클래스 끝 */

/* 공통 요소 */
/*!마크*/
.ic-exmark:hover{
    cursor: pointer;
}

.popup-text-close{
    position: fixed;
    z-index: 10;
    right: 3%;
    top: 3%;
    color: white;
}

.popup-text-close:hover{
    cursor: pointer;
}


/* breadcrumb */

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.6em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}
breadcrumb-text{
    cursor: pointer;
}

.breadcrumb-link {
    color: #555;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-parent {
    color: #000;
}

.breadcrumb-toggle{
    display: none;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    z-index: 1000;
}

.submenu li {
    margin: 0;
    white-space: nowrap;
    padding: 5px 10px;
}

.submenu li a {
    color: #555;
    text-decoration: none;
    display: block;
}

.submenu li a:hover {
    background-color: #f0f0f0;
}

.breadcrumb-current {
    color: #000;
    font-weight: bold;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #c1c1c1;
    padding : 2.5% 0;
}



/* 공공 시설 */
/* 배경 이미지 끝 */
:root {
    --side-theme-width : 200px;
/*    --side-layer-width : 150px;*/
    --side-layer-width : 192px;
}

/* side-section */
/* side-theme-section */
.side-theme-section {
    right: 8px;
    top: var(--header-section-height);
    font-size: 0.53333rem;
    position: fixed;
    z-index: 999;
    transform: translate(0, 0);
    transition: .5s;

}

/*
.side-theme-section.on {
    transform: translate(calc(var(--side-section-width) * -1), 0);
}
*/

.side-theme.show {
    display: block;
}

.side-theme-location {
    position: absolute;
    left: calc(var(--side-theme-width) * -1);
    top: 10px;
    display: none;
}


/* side-layer */
.side-layer{
    left: calc(var(--side-layer-width)* -1.13);
}

.side-layer.show {
    display: block;
}

.side-layer-group {
    flex-direction: column;
    width: var(--side-layer-width);
    aspect-ratio: 5.5555 / 1;
    border-radius: 20px;
    margin-bottom: 8px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-layer-group-title{
 /*   margin-left: 12px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #315698;
    width: 100%;
    border-top-right-radius: 9px;
    border-top-left-radius: 9px;
    text-align: center;
    color: #FFFFFF;
/*    height: 33px;*/
    height: 35px;
    transition: border-radius 0.3s ease;
   /* margin-bottom: 5px;*/
}

.side-layer-group-title.on{
   /* margin: 0 0 8px 12px;*/
}

.toggle-icon {
   /* width: 16px;
    height: 16px;*/
    transition: transform 0.3s ease;
    /*transform: rotate(180deg);;*/
    /*-webkit-transform: rotate(180deg); !* Safari 호환 *!*/
    cursor: pointer;

}

.collapsed {
    /*transform: rotate(180deg);  */
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg); /* Safari 호환 */
}

.side-layer-items {
/*    display: none;*/
    width: 100%;
    padding-left: 0;
}
.side-layer-items.show {
    display: block; /* 클릭 시 나타나도록 */
}

.side-layer-item {
    width: var(--side-layer-width);
    aspect-ratio: 5.5555 / 1;
    border-radius: 20px;
    margin-bottom: 1px;
 /*   background-color: #ffffff;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-layer-item > img {
    width: 35px;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 0;
   /* margin-left: 8px;*/
    margin-left: 6px;
}

.side-layer-item > span {
    /*margin-left: 30px;*/
    left: 43px;
}

.side-layer-item > .switch{
  /*  margin-left : 10px;*/
    right: 4px;
}

/*new 토글 css*/
.toggle-title {
    width: 100%;
    background: #f0f0f0;
    text-align: center;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.toggle-title-margin {
   margin-top: 4px;

}

.toggle-only-title-margin {
    margin: 4px 0 ;
}

.toggle-wrap {
    display: block;
}

.toggle-wrap.hide {
    display: none;
}

.public-toggle-icon {
    margin-left: 10px;
}

.side-layer-item p {
/*    font-size: 0.53333rem;*/
    font-size: 0.527rem;
}

.toggle-round {
    border-radius: 25px;
    transition: border-radius 1s ease;
}

.toggle-margin-vertical {
    margin: 10px 0;
}

.toggle-symbol-margin {
    margin-bottom: 6px;
}

/*해양공간정보 토글*/
.toggle-ocean-title-margin {
    margin: 10px 0 5px 0;
}

.toggle-icon-flex {
    display: flex;
    align-items: center;
    margin-left: 11px;
}

.icon-right {
    margin-right: 6px;
}


.lsmd-icon { /*항만/용도구역*/
    margin-top: 3px;
    width: 25px;
    height: 22px;
    background-color: #c8c80a;
    border-radius: 5px;
}

.wgisieilban-icon { /*일반산업단지*/
    margin-top: 3px;
    width: 25px;
    height: 22px;
    background-color: #ff9000;
    border-radius: 5px;
}

/*보호지구*/
.uq126-icon {
    position: relative;
    margin-top: 3px;
    width: 25px;
    height: 22px;
    border-radius: 5px;
    border: 1px solid #000;
}

.uq126-icon::before {
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    background-color: #008000;
    top: 0;
    left: 18px;
}
.uq126-icon::after {
    position: absolute;
    content: '';
    width: 2px;
    height: 20px;
    background-color: #008000;
    top: 0;
    right: 18px;
}

.wgispl2abs-icon { /*보전연안해역*/
    margin-top: 3px;
    width: 25px;
    height: 22px;
    background-color: #7fffff;
    border-radius: 5px;
}

.wgispl2abs-margin {
    margin-bottom: 10px;
}






    /* side-layer 끝*/

.facilities-popup{
    padding: 15px 15px 0 15px;
    background-color: #F0F0F0F0;
    border-radius: 15px;
    overflow-y: scroll;
    /*max-height: 475px;*/
    max-height: 353px;
    overflow-x: hidden;
    /*pointer-events: none;*/
    user-select: none;
    cursor: default;
}

.facilities-popup-content{
    border : solid #F0F0F0;
    border-radius: 10px;
    background-color: #FFFFFF;
    /*padding: 10px;*/
    padding: 10px 10px 0 10px;
    margin: 0 0 10px 0;
}

.facilities-popup-content h2{
    font-size: 0.7333rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.facilities-popup-content > h2> img{
    margin-left: auto;
    cursor: pointer;
}


.facilities-popup-content hr{
    margin: 8px 0;
}

.facilities-popup-content p{
    font-size: 0.5333rem;
}

.se-name{
    margin: 0 0 0 10px;
    font-size: 0.46rem;
    color: #595959;
}

.content-container {
    display: flex;
    align-items: flex-start; /* 아이콘이 첫 번째 줄에 맞춰지도록 */
    margin: 5px 0;
}

.facilities-popup-content .icon{
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px; /* 아이콘과 텍스트 사이의 간격 */
}

.address-icon {
    background-image: url('../../images/common/img_location.webp');
}

.phone-icon {
    background-image: url('../../images/common/img_telephone.webp');
}

.time-icon {
    background-image: url('../../images/common/img_clock.webp');
}

.fee-icon {
    background-image: url('../../images/common/img_money.webp');
}

.gender-se-icon{
    background-image: url('../../images/common/img_toilet.webp');
}

.gender-icon{
    background-image: url('../../images/common/img_gender.webp');
}

.content-text {
    display: inline-block;
    max-width: 230px;
}

.address-text p {
    line-height: 1.4;
}

.time-text span{
    margin: 0 10px 0 0;
    display: inline-block;
}

.time-text span:first-child {
    width : 50px;
}

.facilities-popup-content ul{
    font-size: 0.5333rem;
}
.no-scroll{
    overflow: hidden;
}
/* 공통 요소 끝 */

/*준비중 팝업*/
.preparing-popup-content div {
    color: black;
}

/* 반응형 */
@media screen and (min-width: 600px) and (max-width: 1400px) {

    :root {
        --theme-menu-width: auto;
        /* chart가 크기를 동적으로 설정하면 chart가 나오지 않기 때문에 대시보드 너비 고정*/
        /*--side-section-width: 44vw;*/
        --side-section-width: 600px;
        --font-size-md: 0.8rem;
    }

    .title-section {
        height: var(--header-section-height);
        padding: 14px 28px;
    }

    .title-img {
        width: 2em;
        height: 2em;
    }

    .title-text {
        font-size: 1.5em;
        line-height: 1.5;
    }

    .side-theme-section {
       /* right: -26px;*/
    }

    .side-theme-item {
        width: 165px;
        height: 32px;
    }

    .submenu{
        display: none;
    }


}

@media screen and (orientation: portrait) {


    :root {
        --theme-menu-width: 96vw;
        --side-section-width: 100%;
        --side-section-height: 42dvh;

        --font-size-lg: 1.2rem;
        --font-size-md: 0.7rem;
        --font-size-sm: 0.6rem;

        --side-header-height: 3rem;


    }

    .side-section {
        position: absolute;
        bottom: 0;
        height: var(--side-section-height);
        width: var(--side-section-width);
        background-color: #ffffff;
        z-index: 999;
    }

    .side-section {
        border-bottom-left-radius: 0;
        border-top-right-radius: var(--side-section-radius);
        transform: translate(0, calc(100dvh - var(--header-section-height)));
    }

    .side-section.on {
        transform: translate(0, calc(100dvh - var(--header-section-height) - var(--side-section-height)));
    }

    .side-section-content {
        z-index: 99;
    }

    .side-section-btn {
        transform: rotate(90deg);
        bottom: calc(var(--side-section-height) - 15px);
        top: auto;
        right: 47.5%;
        z-index: 9;
    }

    .side-theme {
        right: 0;
        left: auto;
    }

    .side-theme-section {
      /*  right: 8px;*/
    /*    top: 60px;*/
        position: fixed;
        z-index: 999;
    }

    .side-theme-item {
        width: 144px;
     /*   height: 26px;*/
    }

    .side-theme-item > img {
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        margin-left: 8px;
    }

    .side-theme-item > span {
        font-size: 12px;
    }

    .theme-menu {
        font-size: 16px;
        height: 40px;
    }

    .theme-item > img {
        height: 20px;
        width: 20px;
    }

    /* dashboard */
    .dash-section {
        border: 1px solid lightgray;
        border-radius: 8px;
        margin-bottom: 4px;
        padding: 4px;
    }

    .dash-section-title {
        margin-bottom: 4px;
    }

    /* dashboard 끝 */

}

@media screen and (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
    .theme-menu {
        width: calc(var(--theme-menu-width) - 144px);
    }

/*    .debris-theme-menu {
        width: calc(var(--theme-menu-width) - 380px);
    }

    .dron-legend-wrap {
        background: #0dcaf0;
    }*/
}

@media screen and (max-width: 600px) and (orientation: portrait) {

    .title-section {
        height: var(--header-section-height);
        padding: 1.7vh 2.5vh;
    }

    .title-text {
        font-size: 4.5vw;
    }

    .title-img {
        width: 7vw;
        height: 7vw;
    }

    .theme-menu {
        font-size: 2.9vw;
        width: auto;
        height: auto;
        /*left: 8px;*/
        /*right: 8px;*/
    }

    .side-theme-section {
    /*    top: 110px;*/
     /*   right: 8px;*/
        position: fixed;
        z-index: 999;
    }

    .side-header-section {
        border-top-right-radius: var(--side-section-radius);
    }
}
/* 마이페이지 반응형 */
/* 모바일 화면 */
@media (max-width: 768px) {

    :root {
        /* line-map arrow padding 수정 */
        --line-map-arrow-padding: 8px;
        /*!* line-map width *!*/
        /*--line-map-dropdown-width: 160px;*/
    }

    /* 사이드 메뉴와 간격 제거*/
    .contents {
        padding-left: 0;
        margin-left: 0;
    }

    /* 사이드 메뉴 숨기기 */
    .side-bar {
        display: none;
    }

    /* breadcrumb */
    .title-underline{
        display: none;
    }

    .breadcrumb-toggle{
        display: inline-block;
        width: 10px;
        height: 10px;
    }

    .breadcrumb-parent {
        color: #000;
        position: relative;
        cursor: pointer;
    }

    .submenu {
        width: max-content; /* 하위 콘텐츠에 맞게 크기 자동 조정 */
    }

    /* user-trace 줄간격 변경 */
    .user-trace-contents > div:last-child > span {
        line-height: 24px;
    }
}


/* 작은 모바일 화면 */
@media (max-width: 513px) {

    /* line-map 가장 긴 메뉴 크기 적용 */
    .line-map {
        font-size: 12px;
    }

    .line-map > .dropdown:nth-child(2) > span {
        width: 130px;
    }

    .line-map > .dropdown:nth-child(2) > .dropdown-content {
        min-width: 130px;
    }

    .line-map > .dropdown:nth-child(3) > span {
        width: 190px;
    }

    .line-map > .dropdown:nth-child(3) > .dropdown-content {
        min-width: 190px;
    }
    /* line-map 가장 긴 메뉴 크기 적용 끝 */


}
/* 마이페이지 반응형 끝 */
/* 반응형 끝 */


/* temp 보고서 */
.temp-report-popup{
    width: 700px;
    height: 750px;
    position: fixed;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 9px;
    line-height: 1.6em;
    display: none;
    color: #000000;
    font-size: 0.53333rem;
}

.temp-report-popup.active {
    display: block;
}

.temp-btn-report-popup {
    margin-left: 670px;
    border: none;
    background: none;
    color: black;
}

.temp-btn-report-popup:hover {
    color: black;
}

.temp-report-popup h3{
    margin-bottom: 10px;
    text-align: center;
}

.temp-report-popup-content {
    width: 100%;
    height: 90%;
    overflow: scroll;
    text-align: center;
}


.temp-report-popup-content img {
    display:block;
    width:100%;
    /*height:85%*/
}
.temp-report-popup-content .temp-btn-report-download{
    display:block;
    width:100%;
    height:7%;
}

.temp-side-theme-item {
    width: 200px;
    height: 36px;
    border-radius: 20px;
    margin-bottom: 8px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.temp-side-theme-item > span {
    margin-left: 12px;
    font-size: var(--font-size-md);
}

.temp-side-theme-item:hover {
    cursor: pointer;
    background: #2f5597;
    color: white;
}

.show {
    display: block;
}

.hide {
    display: none;
}



@keyframes cursor {
    0% {
        opacity: 0;
        transform: translateY(-1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(1rem);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.25;
    }
    50% {
        opacity: 0.5;
    }
    75% {
        opacity: 0.75;
    }

    100% {
        opacity: 1;
    }
}


@media all and (max-width: 1300px) {
    :root {
        --side-theme-width: 150px;
        /*--side-layer-width : 120px;*/
    }

/*    .side-theme-section.on {
        transform: translate(calc(var(--side-section-width) * -1), calc(2rem + 1vh));
    }*/

    /*new css*/
    .legend-toggle-icon{
        width: 2vw;
    }

}

@media all and (orientation: portrait){

    :root {
        --side-theme-width: 150px;
        /*--side-layer-width : 120px;*/
    }
/*    .side-theme-section.on {
        transform: translate(0, 0);
    }*/
}

@media all and (orientation: portrait) and (max-width: 540px) {

    .side-theme-section,
    .side-theme-section.on {
       /* transform: translate(0, calc(2rem + 1vh));*/
    }

    .side-layer-item > img {
        width: 30px;
    }
}
