:root {
    --latlng-tool-color: #94A8CF;
    --news_bg: #FEF8EB;
    --sidebar-width: 22.5rem;
    --Corner-Extra-small: 4px;
    --Corner-Small: 8px;
    --text_color: #4C566A;
    --tip_color: #838999;
    --border_color: #BEC4D0;
    --white: #FFF;
    --about_site_content_p: #1B1E25;
    --about_site_page_button: #65728D;
    --page_type_active: #0C64A6;
    --page_type: #65728D;
    --content_text: #13151A;
    --child_title: #AEECEB;
    --child_title_bg: #ECFCFC;
    --chart_modal_height: 47vh;

}

body {
    color: var(--text_color);
}

[v-cloak] {
    display: none !important;
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

/* 側邊 */
#sidebar-wrapper {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #FBFBFB;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

.sidebar_content {
    height: calc(100% - 120px);
    position: relative;
}

.sidebar {
    transition: width 0.3s;
    z-index: 1;
    width: 0;
}

.sidebar.toggled {
    width: var(--sidebar-width);
}

.blur {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(2px);
    background: #0000001c;
}

.close_img {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    display: inline-flex;
    padding: 8px 16px;
    align-items: center;
    gap: 16px;
    margin-right: 1.2rem;
}

.expand_img {
    display: flex;
    padding: 8px 16px;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    position: relative;
    height: 62px;
}

.hamburger {
    cursor: pointer;
}

.select_block {
    /* padding: 16px; */
    height: 100%;
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
}

.option_block {
    /* height: calc(100% - 95px); */
    height: calc(100% - 50px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-left: 16px;
    width: var(--sidebar-width);
}

.sidebar_footer {
    display: flex;
    padding: 1rem 1rem;
    align-items: flex-start;
    gap: 8px;
    border-top: 1px solid var(--border_color);
    height: 55px;
    min-width: calc(var(--sidebar-width) - 2rem);
}

.sidebar_footer button {
    color: var(--text_color);
    border: unset;
    background: unset;
    padding: unset;
}

/* 側邊 */

/* 側邊內容 */
.page_block {
    display: flex;
    gap: 10px;
    padding: 10px 16px 0;
    height: 50px;
}

.page_type {
    flex: 1 1 0;
}

.page_type_btn {
    border-radius: var(--Corner-Small);
    border: 1px solid var(--page_type);
    background: var(--gray-whitefff, #FFF);
    color: var(--page_type);
    padding: 4px 8px;
    text-align: center;
    min-width: calc((var(--sidebar-width) / 3) - 20px);
    /* -20px是因為.page_block的gap */
}

.page_type_btn.active {
    color: var(--white);
    border-radius: var(--Corner-Small);
    border: 1px solid var(--page_type_active);
    background: var(--page_type_active);
}

.option_title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    /* margin-top: 1rem; */
    margin-bottom: .5rem;
    color: var(--content_text);
    gap: 3px;
    margin-top: .75rem;
}

.time_format {
    position: relative;
    gap: 8px;
}

.select-style {
    border-radius: 4px;
    border: 1px solid var(--text_color);
    padding: 8px;
    color: var(--text_color);
    cursor: pointer;
}

.time-style {
    border-radius: 4px;
    border: 1px solid var(--text_color);
    padding: 8px;
    color: var(--text_color);
    cursor: default;
}

.mode_title {
    border-radius: 50px;
    border: 1px solid var(--child_title);
    background: var(--child_title_bg);
    width: fit-content;
    display: flex;
    padding: 3px 8px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: .5rem;
}

.montior_group {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* checkbox */
.custom-input {
    -webkit-appearance: none;
    appearance: none;
}

input[type="checkbox"].custom-input {
    border-radius: 3px;
}

.custom-input::before {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    transition: 120ms transform ease-in-out;
}

input[type="checkbox"].custom-input::before {
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
}

.custom-input:checked {
    background-color: var(--text_color);
}


input[type="checkbox"].custom-input:checked::before {
    box-shadow: inset 14px 14px #fff;
    transform: scale(1);
    transform: translate(-1px, -1px);
}


input,
label {
    cursor: pointer;
}

input[type="checkbox"] {
    /* transform: translateY(2px); */
    width: 16px;
    height: 16px;
    border: 1px solid var(--text_color);
    padding: 2px;
}

/* checkbox */

/* radio button */
.energy_btn {
    border-radius: var(--Corner-Small);
    border: 1px solid var(--page_type);
    background: var(--gray-whitefff, #FFF);
    color: var(--page_type);
    padding: 4px 8px;
    text-align: center;
    cursor: pointer;
}

.energy_btn.active {
    color: var(--white);
    border-radius: var(--Corner-Small);
    border: 1px solid var(--text_color);
    background: var(--text_color);
}

.custom-option {
    display: flex;
    gap: 8px;
    margin-left: 1rem;
    margin-bottom: .5rem;
}

.radio-group {
    display: inline-block;
    padding: unset;
    margin-bottom: .25rem;
}

.radio-input {
    visibility: hidden;
    width: 0;
    position: absolute;
    /* 把原本的input藏起來 */
}

.radio-label {
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    padding-left: 1.2rem;
}

.radio-button {
    /* 自定義樣式的span */
    height: 1rem;
    width: 1rem;
    border: 1px solid #3C414D;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
}

.radio-button::after {
    /* 中間點點 */
    content: "";
    display: block;
    height: .5rem;
    width: .5rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3C414D;
    opacity: 0;
    transition: opacity 0.2s;
}

.radio-input:checked~.radio-label .radio-button::after {
    /* 選中radio時 才顯示中間點點 */
    opacity: 1;
}

.tooltips {
    position: relative;
    display: flex;
    cursor: pointer;
    margin-bottom: .25rem;
}

/* Tooltip 的文字樣式 */
.tooltips::after {
    content: attr(data-tooltip);
    position: absolute;
    white-space: break-spaces;
    /* left: 93%; */
    /* top: 1px; */
    /* position: fixed; */
    /* white-space: nowrap; */
    left: 3.5rem;
    margin-top: 1.5rem;
    background-color: #3C414D;
    color: #fff;
    padding: 5px;
    border-radius: 8px;
    visibility: hidden;
    /* 初始隱藏 */
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
    font-size: 12px;
}

/* 當懸停時顯示 Tooltip */
.tooltips:hover::after {
    visibility: visible;
    opacity: 1;
}

/* radio button */

/* 側邊內容 */

/* tip */
.tip_block {
    padding: 10px 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip_text {
    color: var(--tip_color);
    padding: 10px 4px;
    border-radius: 6px;
    border: 1px solid var(--border_color);
    font-size: .79rem;
    min-width: calc(var(--sidebar-width) - 30px);
    letter-spacing: .05rem;
    text-align: center;
}

.tip_text button {
    color: var(--tip_color);
    text-decoration: underline;
    border: unset;
    background: unset;
    padding: unset;
}

.tip_content {
    position: relative;
}

.tip_icon {
    position: absolute;
    top: -16px;
    left: 9px;
}

.del_icon {
    position: absolute;
    top: -14px;
    right: -5px;
    cursor: pointer;
}

.tip_hide {
    text-align: center;
    cursor: pointer;
}

.tip_hide img {
    margin-right: 4px;
}

/* tip */
/* echart */
.leaflet-div-icon {
    background: unset;
    border: unset;
}

.D_TGR-icon {
    width: 18px !important;
    height: 18px !important;
    background-image: url(../../Image/map/station_icon/sun.png);
    background-size: cover;
    background-position: center;
}

.D_TGR-icon.active {
    color: red;
    border: 1px solid red;
}

.WDSD-icon {
    width: 18px !important;
    height: 18px !important;
    background-image: url(../../Image/map/station_icon/10_wind.png);
    background-size: cover;
    background-position: center;
}

.hide_icon {
    display: flex;
    padding: 6px 0px;
    position: absolute;
    right: -24px;
    top: 12px;
    border-radius: 0px 16px 16px 0px;
    background: #65728D;
    width: 24px;
    height: 30px;
    cursor: pointer;
}

.hide_icon::before {
    font-family: "FontAwesome";
    content: '\f104';
    color: white;
    top: 3px;
    position: absolute;
    right: 10px;
}

.hide_icon.icon_changed::before {
    content: '\f105';
    /* 點擊後更換的 icon */
}

.chart_block {
    /* width: 30vw; */
    width: 600px;
    background: var(--white);
    border-radius: 5px;
    /* max-width: 30vw; */
    max-width: 600px;
    /* height: -webkit-fill-available; */
    margin: 5px 0px 5px 5px;
    padding-top: .5rem;
    display: flex;
    flex-direction: column;
}

.product_block {
    transition: all 0.5s ease;
    max-height: calc(100vh - 70px);
    position: absolute;
    display: flex;
}

.chart_toggle {
    background: #F7F8F9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem 1rem;
    gap: 10px;
}

.chart_toggle button {
    border-radius: var(--Corner-Extra-small, 4px);
    border: 1px solid var(--gray-3065728D, #65728D);
    background: var(--gray-whitefff, #FFF);
    color: var(--gray-3065728D, #65728D);
    font-size: 14px;
    padding: 3px 5px;
    white-space: nowrap;
}

.chart_num {
    padding: .5rem 0rem;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: auto;
}

.chart_num span {
    padding: 4px 8px;
    color: var(--content-206D7A96, #6D7A96);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--Corner-Extra-small, 4px);
    border: 1px solid var(--blue-4092CCF7, #92CCF7);
    background: var(--blue-60EDF7FE, #EDF7FE);
    display: block;
    cursor: pointer;
}

.chart_num span.disabled {
    padding: 4px 8px;
    color: var(--content-206D7A96, #6D7A96);
    font-size: 14px;
    font-weight: 600;
    display: block;
    cursor: pointer;
    border: 1px solid var(--gray-60B8BECC, #B8BECC);
    background: var(--gray-75EBEDF1, #EBEDF1);
}

.chart_content {
    overflow: auto;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.chart_detail {
    position: relative;
}

.chart_tool {
    position: absolute;
    display: flex;
    right: 4px;
    top: 2px;
    z-index: 1;
    cursor: pointer;
    gap: 4px;
}

.chart_area {
    /* width: -webkit-fill-available; */
    width: 100%;
    height: 250px;
    margin-top: 10px;
    border: 1px solid rgb(190, 196, 208);
}

.task-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
}

.drag-handle {
    margin-right: 11px;
    cursor: move;
}

.Q_data_style {
    border: 1px solid #c8c8c8;
    border-radius: 4px;
    padding: 3px;
    margin-left: 1rem;
    font-size: 10px;
    display: flex;
    flex-wrap: wrap;
}

.Q_data_title {
    font-weight: 600;
    margin-right: .25rem;
}

/* echart */

/* 產品說明 */
.wrap_block {
    position: relative;
}

.about_block {
    width: 65vw;
    background: var(--white);
    transition: all 0.5s ease;
    margin: 5px;
    border-radius: 5px;
    max-width: 65vw;
    height: -webkit-fill-available;
    position: absolute;

}

.prduct_section {
    gap: 4px;
    position: sticky;
    top: -1px;
    background: var(--white);
    z-index: 6;
}

.nav-tabs {
    border-bottom: 2px solid var(--child_title);
}

.prduct_tab .nav-link {
    border-radius: 8px 8px 0px 0px;
    border: 2px solid var(--gray-60B8BECC, #B8BECC);
    border-bottom: 1px solid #AEECEB;
    background: var(--white);
    color: var(--tip_color);
    padding: 5px 9px;
}

.prduct_tab .nav-link.active {
    border: 2px solid var(--child_title);
    border-bottom: 1px solid #AEECEB;
    background: var(--child_title_bg);
    color: var(--green-100179795, #179795);
    font-weight: 600;
}

.tab-pane {
    width: -webkit-fill-available;
}

#prduct_Content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    background: #FFF;
}

.table_block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table_title {
    position: relative;
    min-width: 1.5rem;
    min-height: 1rem;
}

.table_title img {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 2;
    /* bottom: -.8rem; */
}

.table_title svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: -.5rem;
    right: .3rem;
}

.wind_text {
    color: var(--blue-00-0D6FB8, #0D6FB8);
    font-size: 16px;
    font-weight: 600;
}

.sun_text {
    color: #D39929;
    font-size: 16px;
    font-weight: 600;
}

.product_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: -webkit-fill-available;
}

.wind_block,
.sun_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;

}

.wind_block .item::before {
    content: '|';
    border-radius: 4px;
    background: #92CCF7;
    margin-right: .5rem;
    color: #92CCF7;
}

.sun_block .item::before {
    content: '|';
    border-radius: var(--Corner-Extra-small, 4px);
    background: #F6AC1B;
    margin-right: .5rem;
    color: #F6AC1B;
}

.item span:first-of-type {
    color: var(--content_text);
    text-align: center;
    font-weight: 600;
}

.item span {
    color: var(--about_site_content_p);
    margin-right: .2rem;
}

.item span img:hover,
.tableWrapper img:hover {
    transform: scale(1.2);
}


/* 產品說明 */



/* 關於本站 */

.about_block {
    z-index: 2;
    display: inline-flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.about_site_header {
    display: flex;
    width: -webkit-fill-available;
    justify-content: space-between;
}

.about_site_header i {
    cursor: pointer;
}

.about_title {
    color: var(--content_text);
    font-size: 1.1rem;
    font-weight: 600;
}

.about_site {
    display: inline-flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

.about_site_page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.about_site_page button {
    border-radius: var(--Corner-Small);
    border: 1px solid var(--about_site_page_button);
    color: var(--about_site_page_button);
    background: var(--white);
    padding: 8px;
}

.about_site_page button.active {
    border-radius: var(--Corner-Small);
    border: 1px solid var(--text_color);
    background: var(--text_color);
    color: var(--white);
}

.about_site_page button[disabled] {
    color: #B8BECC;
    border: 1px solid #B8BECC;
}

.about_site_content {
    width: -webkit-fill-available;
    overflow-y: auto;
}

.about_site_content::-webkit-scrollbar {
    display: none;
}

.about_site_content p {
    color: var(--about_site_content_p);
    font-size: 1rem;
    line-height: 160%;
}

.link {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.link a {
    max-width: 300px;
    width: 50%;
}

.link a img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.contact_info p {
    color: var(--text_color);
    font-size: 1rem;
    line-height: 160%;
    letter-spacing: -0.304px;
    margin-bottom: unset;
}

/* 快速連結 */
.shortcutLinks_box {
    display: flex;
    align-items: center;
    border-radius: 6px;
    background: #ECFCFC;
    padding: 16px;
    width: 80%;
    max-width: 600px;
    color: white;
}

.shortcutLinks_text {
    flex: 1;
}

.shortcutLinks_text p {
    color: var(--page_type_active);
    font-size: 1rem;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.shortcutLinks_image {
    flex: 1;
    text-align: right;
}

.shortcutLinks_image img {
    max-width: 100%;
    height: auto;
}

.shortcutLinks_link .about_title {
    margin-top: 16px;
    margin-bottom: 20px;
}

.shortcutLinks_link ul a {
    padding-left: 1.5rem;
    color: var(--about_site_content_p);
    line-height: 160%;
    text-decoration-line: underline;
}

/* 快速連結 */

/* 歷史新聞 */
.his_news_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.his_news_content {
    display: flex;
    align-items: flex-start;
    padding: 0px 16px 12px 16px;
    gap: 12px;
    border-bottom: 1px solid var(--border_color);
    width: -webkit-fill-available;
}

.his_news_date {
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 50px;
    border: 1px solid var(--orange-00F6AC1B, #F6AC1B);
    background: var(--orange-30FEF8EB, #FEF8EB);
    color: var(--orange-00F6AC1B, #F6AC1B);
    font-weight: 500;
    line-height: 16px;
    /* 100% */

}

/* 歷史新聞 */

/* 關於本站 */

/* 側邊隱藏設定 */
.sidemenu {
    display: flex;
    flex-direction: row;
    /* side_menu關閉讓product_block向下 */
    /* flex-direction: column; */
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    flex: 1;
    width: var(--sidebar-width);
    /* width: fit-content; */
    /* 不確定 */
    height: 100%;
}

.small_header {
    overflow: hidden;
    display: flex;
    /* position: absolute; */
    z-index: 1;
    width: max-content;
    height: 0;
    align-items: center;
}

.small_header.active {
    height: fit-content;
    opacity: 1;
    align-items: center;
    position: unset;
}

.setting_block {
    display: inline-flex;
    padding: 8px 10px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 50px;
    border: 1px solid var(--white);
    background: linear-gradient(90deg, #0D6FB8 0%, #179795 100%);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.setting_text {
    color: var(--white);
    font-family: Roboto;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 19.2px */
}

.phone_hide {
    background-color: var(--white);
    height: calc(-62px + 100vh);
    /* height: calc(100 * var(--vh) - 62px);*/
}

/* 側邊隱藏設定 */

/* loader */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: calc(100% - 360px);
    height: 100%;
    right: 0;
    z-index: 5;
}

.loading.full_width {
    width: 100%;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 1.5em;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.loader,
.loader:before,
.loader:after {
    animation: 1s infinite ease-in-out;
}

.loader:before,
.loader:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.loader-black {
    background-color: var(--page_type_active);
}

.loader-animation {
    animation: loader7-1 1s infinite linear;
}

.loader-animation:before,
.loader-animation:after {
    content: '';
    width: 80%;
    height: 80%;
    background-color: var(--page_type_active);
    ;
    top: 5%;
}

.loader-animation:before {
    left: -5%;
    animation: loader7-2 1s infinite alternate ease-in-out;
    transform-origin: 10% 50%;
}

.loader-animation:after {
    left: auto;
    right: -5%;
    animation: loader7-2 1s 1s infinite alternate ease-in-out;
    transform: scale(0);
    transform-origin: 90% 50%;
}

@keyframes loader7-1 {
    0% {
        transform: rotate(20deg);
    }

    100% {
        transform: rotate(380deg);
    }
}

@keyframes loader7-2 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.main-site {
    text-align: center;
    margin-top: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    width: 150px;
    height: 150px;
}

.loading-text {
    color: var(--page_type_active);
}

/* loader */

/* modal */
.modal_header {
    text-align: right;
    padding-right: 8px;
    padding-top: 5px;
}

.btn-close {
    font-size: 10px;
}

.modal_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn_block {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    gap: 10px;

}

.modal_text {
    color: var(--gray-103C414D, #3C414D);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 1rem;
}

.modal_body img {
    width: 80px;
    height: 80px;
}


.modal_body .btn_style {
    display: flex;
    padding: 4px 9px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: var(--Corner-Extra-small, 4px);
    border: 1px solid var(--gray-3065728D, #65728D);
    background: var(--gray-whitefff, #FFF);
    color: var(--gray-3065728D, #65728D);
    font-size: 1rem;
}

.modal {
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(2px);
}

.chart_modal_content {
    height: -webkit-fill-available;
    background-color: unset;
    align-items: center;
    justify-content: center;
}

.modal_chart {
    width: 500px;
    height: 300px;
    background-color: #fff;
}

.child_chart {
    position: relative;
}

.child_chart_close {
    position: absolute;
    right: 6px;
    z-index: 1;
    top: 2px;
    font-size: 22px;
    cursor: pointer;
}

/* modal */


@supports (height: 100dvh) {
    .product_block {
        max-height: calc(100dvh - 70px);
    }

    .phone_hide {
        height: calc(100dvh - 62px);
    }

}

@media (max-width:425px) {
    .link a {
        width: 90%;
    }

    .chart_detail {
        margin-top: 10px;
        border: 1px solid rgb(190, 196, 208);
        overflow-x: scroll;
        margin-top: 10px;
    }

    .chart_area {
        height: 250px;
        width: 500px;
        margin-top: 0px;
        border: unset;
    }

    .chart_tool {
        right: -14rem;
        top: 0px;
    }
}

@media (max-width:992px) {
    :root {
        --sidebar-width: 100vw;
    }

    .sidemenu {
        width: var(--sidebar-width);
        height: fit-content;
    }

    .small_header {
        height: fit-content;
	z-index: 0;
    }

    .close_img {
        display: none;
    }

    .setting_block {
        position: fixed;
        top: 32.5rem;
        left: .25rem;
    }

    .setting_text {
        font-size: .88rem;
    }

    .sidebar_content {
        height: calc(100% - 160px);
    }

    .option_block {
        height: calc(100% - 50px);
    }

    .blur {
        display: none;
    }

    #sidebar-wrapper {
        background: unset;
        /* height: fit-content; */
    }

    .flex-fill {
        flex-direction: column;
    }

    .about_block {
        width: 100vw;
        max-width: 100vw;
        margin: 0px;
        border-radius: 0px;
        height: calc(100vh - 62px);
    }

    @supports (height: 100dvh) {
        .about_block {
            height: calc(100dvh - 62px);
        }
    }

    .product_block {
        width: 100%;
        max-width: 100vw;
        margin: 0px;
        border-radius: 0px;
        max-height: calc(var(--chart_modal_height) - 1vh);
        bottom: -40rem;
        z-index: 1;
    }

    .chart_area {
        height: 250px;
    }

    .hide_icon {
        right: 16px;
        top: -24px;
        width: 20px;
        height: 28px;
        cursor: pointer;
        transform: rotateZ(270deg);
    }

    .hide_icon::before {
        top: 2px;
        right: 7px;
        transform: rotateZ(180deg);
    }

    .chart_block {
        width: 100%;
        max-width: unset;
        margin: unset;
    }

    .sidebar.toggled {
        width: var(--sidebar-width);
        flex: 1;
    }

    .tip_text {
        padding: 8px;
        font-size: .7rem;
        min-width: calc(var(--sidebar-width) - 30px);
        text-align: left;
    }

    .about_site_page {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .tableWrapper {
        width: 100%;
        overflow: auto;
        /* max-width: 400px; */
    }

    .sidebar_footer {
        padding: 0.5rem 1rem;
        font-size: .88rem;
        align-items: center;
    }

    .leaflet_control_attribution {
        display: flex;
        padding: 0rem 1rem;
        align-items: center;
        gap: 8px;
        border-top: 1px solid var(--border_color);
        height: 40px;
        font-size: 12px;
        min-width: calc(var(--sidebar-width) - 2rem);
    }

    .leaflet_control_attribution a {
        color: var(--text_color);
    }

    .expand_img div:first-child {
        /* width: 80%; */
        width: fit-content;
    }

    .expand_img img {
        width: 100%;
    }

    .loading {
        width: 100%;
    }
}
