@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

@font-face {
    font-family: 'S-CoreDream-6Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold') format('woff');
    font-weight: normal;
    font-style: normal;
}

a, h1, h2, h3, h4, span, table, div, input, input::placeholder {
    letter-spacing: -0.8px;
    font-family: Pretendard, serif;
    color: #1c1c1c;
    text-decoration-line: none;
}

html {
    height: 100%;
}


body {
    min-height: 100%;
    overflow-y: hidden;
    margin: 0;
}


.sidebar-tools {
    background-color: #EFEFEF;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 5px;

}

.sidebar-tools a {
    color: #181818;
}


.sidebar-tools a[href]:hover {
    background-color: #bebebe;
    padding: 0 5px;
    border-radius: 5px;
}

.search {
    padding: 10px 0;
}


.search input {
    width: 75px;
    height: 18px;
    border: 0;
    background-color: #EDEDED;
    color: #181818;
    border-radius: 5px;
    padding: 2px 10px;
    font-size: 13px;
}

.search input::placeholder {
    color: #757575;
}

.search button {
    width: 40px;
    height: 23px;
    border: 0;
    background-color: #84CE7A;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 13px;
    margin: 0 0 0 5px;
}


.menu-container {
    padding: 10px 8px;
    border-radius: 10px;
    text-align: left;
    margin: 5px 0 0 0;
}

.menu-title {
    margin: 0 0 5px 4px;
    display: flex;
    flex-direction: row;
}

.menu-title a {
    font-size: 18px;
    font-weight: 700;
}

.menu-button-container {
    display: flex;
    justify-content: start;
    margin: 5px 0 0 0;
}

.menu-button {
    margin: 0 3px;
}

.menu-button a {
    cursor: pointer;
    background-color: #FFFFFF;
    padding: 2px 6px;;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
}


.map-container {
    position: absolute;
    height: 100vh;
    width: 100%;
}


#map {
    height: 100%;
    width: 100%;
}

.topbar {
    display: flex;
    justify-content: space-between;
    background-color: #FFFFFF;
    box-shadow: 0 35px 25px -3px rgba(0, 0, 0, 0.1);
    width: 100vw;
    margin: 0;
    padding: 15px 0;
    vertical-align: center;
    position: relative;
    z-index: 5
    /*padding-bottom: 20px;*/
}

.topbar-contents {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;;
}

.topbar-contents a {
    font-size: 20px;
    font-weight: 600;
    margin: 0 10px 0 10px;
}

.topbar-group {
    display: block;
}

.topbar-group a {
    display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.topbar-group a:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.topbar-group a:hover {
    transform: scale(1.1);
}


.topbar-logo {
    margin: 0 60px 0 60px;
    cursor: pointer;
}

.topbar-logo img {
    width: 200px;
    padding: 10px 0;
    height: auto;
    margin: 0;
}

.topbar-logo h1 {
    font-family: S-CoreDream-6Bold;
    text-align: center;
    font-size: 14px;
    width: 200px;
    margin: 0;
    color: #64BF6A;
}

/* 사이드바 기본 스타일 */
.sidebar {
    display: flex;
    width: 800px;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

/* 사이드바 숨김 스타일 */
.sidebar-hidden-main {
    transform: translateX(-100%);
}

/* 사이드바 숨김 스타일 */
.sidebar-hidden-list {
    transform: translateX(-100%);
}

/* 사이드바 숨김 스타일 */
.sidebar-hidden-detail {
    transform: translateX(-200%);
}

.sidebar-list {
    width: 340px;
    overflow-y: auto;
    max-height: calc(100vh - 85px);
    transition: transform 0.3s ease;
}

.sidebar-card-toggle {
    display: none;
    padding: 5px 1.5px;
    width: 10px;
    height: 20px;
    border-radius: 0 5px 5px 0;
    margin: 50px 0 0 0;
    background-color: white;
    box-shadow: 30px 0 30px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.sidebar-card-toggle svg {
    height: 10px;
    margin: 0;
    padding: 0;
}


.sidebar-card-top {
    width: 280px;
    height: 80px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 5px 10px;
    margin: 20px 0 10px 20px;
    text-align: center;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-card-top-title {
    margin: 10px 0 0 0;
}

.sidebar-card-top-title a {
    font-weight: 800;
    font-size: 30px;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin: 5px 0 5px 0;

}

.pagination a {
    color: #181818;
}


.pagination a[href]:hover {
    background-color: #bebebe;
    padding: 0 5px;
    border-radius: 5px;
}

.card {
    border-radius: 20px;
    align-items: center;
    margin: 10px 20px;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: #6cd273;
}

.card-title {
    justify-content: center;
    width: 250px;
    margin: 0 15px 10px 15px;
    padding: 20px 0 0 0;
}

.card-title a {
    font-size: 23px;
    font-weight: 600;
    margin: 20px 0 5px 0;
    color: white;
}


.card-contents {
    display: flex;
    width: 240px;
    margin: 5px 20px 5px 20px;
    height: 25px;
}

.card-contents a {
    font-size: 18px;
    color: white;
}


.sidebar-detail {
    width: 380px;
    overflow-y: auto;
    max-height: calc(100vh - 85px);
    transition: transform 0.3s ease;
}

.card-detail {
    background-color: #FFFFFF;
    width: 350px;
    border-radius: 20px;
    align-items: center;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.1);
    padding: 0 0 15px 0;
}

.card-title-detail {
    text-align: left;
    width: 310px;
    padding: 20px 0 5px 0;
    margin: 20px 0 0 20px;

}

.card-title-detail button {
    border: 0;
    background-color: transparent;
}

.card-title-detail a, button {
    font-size: 23px;
    color: #181818;
    font-weight: 800;
}

.card-contents-detail {
    display: flex;
    margin: 5px 20px 5px 20px;
    justify-content: left;
}

.card-contents-detail svg {
    margin: 0 5px 0 0;
}


.card-icon {
    display: flex;
    /*background-color: #282828;*/
    /*border-radius: 20px;*/
    /*padding: 2px 5px;*/
    margin: 0 5px 0 0;
    /*box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);*/
}

.card-icon img, svg {
    margin: 0 0 0 5px;
    height: 20px;
}


.card-icon a {
    margin: 0 5px;
    color: #181818;
    font-size: 15px;
    font-weight: 500;
}

.card-icon svg {
    margin: 0 1px 0 0;
}


.card-subtitle {
    text-align: left;
    height: 25px;
    margin: 2px 0 2px 20px;

}

.card-subtitle a {
    background-color: #3973F6;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 17px;
    color: #FFFFFF;
    font-weight: 600;
}

.card-subtitle img {
    filter: invert(100%) sepia(5%) saturate(0%) hue-rotate(41deg) brightness(107%) contrast(105%);
    height: 13px;
}


.area {
    background: white;
    border: 1px solid #bdbdbd;
    border-radius: 3px;
    font-size: 12px;
    padding: 5px;
    font-weight: 700;
}