﻿.horiAndVertMainMenuCssVariables {
    /* Font Size */
    --node-font-size: 18px;
    /* Font Weight */
    --node-font-weight: bold;
    /* Font Color */
    --node-font-color-level0: #FFFFFF;
    --current-node-font-color-level0: #FFFFFF;
    --desktop-arrow-color-level0: var(--color04);
    --mobile-node-font-color-level1: var(--color01);
    --current-node-font-color-level1: var(--color09);
    --desktop-node-font-color-current-level1: #FFFFFF;
    --desktop-node-font-color-hover-level1: #FFFFFF;
    --desktop-node-font-color-level1: var(--color08);
    --desktop-arrow-color-level1: var(--color04);
    /* Line Height */
    --node-line-height: 1.3;
    /* Background */
    --block-bg-level0: linear-gradient(to bottom, var(--color01), var(--color02));
    --node-bg: linear-gradient(to bottom, var(--color02), var(--color03));
    --current-node-bg-level0: linear-gradient(to bottom, var(--color08), var(--color09));
    --mobile-hamburger-bg: rgba(0,0,0,0.1);
    --block-bg-level1: #FFFFFF;
    --block-bg-level2: rgba(102, 102, 102, 0.1);
    --desktop-node-bg-current-level1: linear-gradient(to bottom, var(--color08), var(--color09));
    --desktop-node-bg-hover-level1: linear-gradient(to bottom, var(--color02), var(--color03));
    --desktop-node-bg-hover: linear-gradient(to bottom, var(--color05), var(--color06));
    /* Padding */
    --mobile-node-padding: calc(var(--node-font-size) / 1.6) var(--node-font-size);
    --desktop-block-padding-level1: 7px 0;
    --desktop-node-padding: calc(var(--node-font-size) * 0.7) calc(var(--node-font-size) * 1.3) calc(var(--node-font-size) * 1) calc(var(--node-font-size) * 1.3);
    /* Margin */
    /* Width */
    --mobile-block-width: 100vw;
    /* Border */
    --block-border-level0: 0 none;
    --desktop-block-border-level1: 1px solid #a8a8a8;
    --desktop-node-border-left-level0: 1px solid var(--color06);
    /* Height */
    /* Others */
    --link-text-decoration: none;
    --block-shadow-level0: 0 1px 4px rgba(0, 0, 0, 0.2);
    --menu-radius: 8px;
    --mobile-hamburger-button-size: 29px;
    --mobile-hamburger-line-color: var(--color06);
    --mobile-hamburger-shadow: black 1px 1px;
    --mobile-block-max-height: 80vh;
    --node-text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    --mobile-block-position-top: 0;
    --mobile-plus-sign: '+';
    --mobile-minus-sign: '-';
    --current-node-icon: "\f185";
    --current-node-display-level1: inline;
    --current-node-display-level0: inline;
    --current-node-icon-color-level0: #FFFFFF;
    --desktop-block-box-shadow-level0: 0 1px 1px rgba(0, 0, 0, 0.2);
    --desktop-block-shadow-level1: 0 5px 12px rgba(0, 0, 0, 0.2);
}

/* hamburger Button still on the top right corner */
.mp主導覽列3 .fspsMainNav {
    position: fixed;
    top: var(--mobile-block-position-top);
    right: 0;
    z-index: 4;
    max-height: var(--mobile-block-max-height);
    overflow-y: scroll;
}

.mp主導覽列3:after {
    clear: both;
    content: "\00a0"; /*Unicode Character 'NO-BREAK SPACE'*/
    display: block;
    height: 0;
    font: 0px/0 serif;
    overflow: hidden;
}

/* ul 主導覽列節點容器 */
#main-menu {
    clear: both;
    /* Custom Setting */
    background-image: var(--block-bg-level0);
    border-radius: var(--menu-radius);
    box-shadow: var(--block-shadow-level0);
    border: var(--block-border-level0);
}

/* Desktop Mode */
@media (min-width: 768px) {
    #main-menu {
        clear: none;
    }

    .mp主導覽列3 .fspsMainNav {
        position: static;
        max-height: initial;
        overflow-y: unset;
    }

    /* 整個主導覽列置中，上層容器：text-align:center;
    .mp主導覽列3
    {
        display : inline-block;
    }*/
}

/* 手機版, 整個主導覽列開合按鈕 */
.mp主導覽列3 .main-menu-btn {
    float: right;
    margin: 10px;
    position: relative;
    display: inline-block;
    width: var(--mobile-hamburger-button-size);
    height: var(--mobile-hamburger-button-size);
    text-indent: var(--mobile-hamburger-button-size);
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    /* lines & gray bg */
    box-shadow: var(--mobile-hamburger-shadow);
    background-color: var(--mobile-hamburger-bg);
}

/* hamburger icon，張開用 */
.mp主導覽列3 .main-menu-btn-icon,
.mp主導覽列3 .main-menu-btn-icon:before,
.mp主導覽列3 .main-menu-btn-icon:after {
    position: absolute;
    top: calc(50% - var(--mobile-hamburger-button-size) * 0.04);
    left: calc(var(--mobile-hamburger-button-size) * 0.15);
    height: calc(var(--mobile-hamburger-button-size) * 0.069);
    width: calc(var(--mobile-hamburger-button-size) * 0.7);
    background: var(--mobile-hamburger-line-color);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

.mp主導覽列3 .main-menu-btn-icon:before {
    content: '';
    top: calc(-0.3 * var(--mobile-hamburger-button-size));
    left: 0;
}

.mp主導覽列3 .main-menu-btn-icon:after {
        content: '';
        top: calc(var(--mobile-hamburger-button-size) * 0.3);
        left: 0;
    }

/* x icon，關閉用 */
#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon {
    height: 0;
    background: transparent; /* Hide this middle bar */
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#main-menu-state:checked ~ .main-menu-btn .main-menu-btn-icon:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* hide menu state checkbox (keep it visible to screen readers) */
#main-menu-state {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

/* hide the menu in mobile view */
    #main-menu-state:not(:checked) ~ #main-menu {
        display: none;
        width: var(--mobile-block-width);
    }

    #main-menu-state:checked ~ #main-menu {
        display: block;
        width: var(--mobile-block-width);
    }

@media (min-width: 768px) {
    /* hide the button in desktop view */
    .mp主導覽列3 .main-menu-btn {
        position: absolute;
        top: -99999px;
    }
    /* always show the menu in desktop view */
    #main-menu-state:not(:checked) ~ #main-menu {
        display: block;
        width: 100%;
    }
}

/* ==================================================================================================*/

/* 整個流動版導覽列 */
.mp主導覽列3 .sm-blue {
    
}

/* 所有節點通用樣式 */
    .mp主導覽列3 .sm-blue a, .mp主導覽列3 .sm-blue a:hover, .mp主導覽列3 .sm-blue a:focus, .mp主導覽列3 .sm-blue a:active {
        padding: var(--mobile-node-padding);
        /* make room for the toggle button (sub indicator) */
        padding-right: calc(var(--node-font-size) * 3.2);
        background-image: var(--node-bg);
        color: var(--node-font-color-level0);
        font-size: var(--node-font-size);
        font-weight: var(--node-font-weight);
        line-height: var(--node-line-height);
        text-decoration: var(--link-text-decoration);
        text-shadow: var(--node-text-shadow);
    }

/* 現選節點預設樣式 */
        .mp主導覽列3 .sm-blue a.currentTopNode {
            background-image: var(--current-node-bg-level0);
            color: var(--current-node-font-color-level0);
        }

            .mp主導覽列3 .sm-blue a.currentTopNode::after {
                content: var(--current-node-icon);
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                display: var(--current-node-display-level0);
                margin-left: 5px;
                color: var(--current-node-icon-color-level0);
                font-size: 0.9em;
                line-height: 1em;
            }

.mp主導覽列3 .sm-blue a.disabled { /* 已停用節點預設樣式 */
    color: var(--color04); /* 文字顏色(4) */
}

/* 有下層節點的節點的符號（+,-）樣式 */
        .mp主導覽列3 .sm-blue a .sub-arrow {
            position: absolute;
            top: 50%;
            margin-top: calc(var(--node-font-size) * -0.8);
            left: auto;
            right: calc(var(--node-font-size) / 4);
            width: calc(var(--node-font-size) * 1.6);
            height: calc(var(--node-font-size) * 1.6);
            overflow: hidden;
            font: bold calc(var(--node-font-size) * 0.9)/1.6 monospace !important;
            text-align: center;
            text-shadow: none;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 20%;
        }

            .mp主導覽列3 .sm-blue a .sub-arrow::before { /* 未被展開時 */
                content: var(--mobile-plus-sign);
            }

        .mp主導覽列3 .sm-blue a.highlighted .sub-arrow::before { /* 已被展開後 */
            content: var(--mobile-minus-sign);
        }

    .mp主導覽列3 .sm-blue > li:first-child > a, .mp主導覽列3 .sm-blue > li:first-child > :not(ul) a {
        border-radius: var(--menu-radius) var(--menu-radius) 0 0; /* 左上、右上角圓角 */
    }

    .mp主導覽列3 .sm-blue > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > *:not(ul) a, .mp主導覽列3 .sm-blue > li:last-child > ul, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul {
        border-radius: 0 0 var(--menu-radius) var(--menu-radius); /* 左下、右下角圓角 */
    }

.mp主導覽列3 .sm-blue > li:last-child > a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > *:not(ul) a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > *:not(ul) a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > a.highlighted
, .mp主導覽列3 .sm-blue > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > ul > li:last-child > *:not(ul) a.highlighted {
    border-radius: 0;
}

/* 第2層及以下 */
    .mp主導覽列3 .sm-blue ul {
        background: var(--block-bg-level1);
    }

/* 第2層及以下的節點 */
        .mp主導覽列3 .sm-blue ul a, .mp主導覽列3 .sm-blue ul a:hover, .mp主導覽列3 .sm-blue ul a:focus, .mp主導覽列3 .sm-blue ul a:active {
            background: transparent;
            color: var(--mobile-node-font-color-level1);
            font-size: calc(var(--node-font-size) * 0.9);
            text-shadow: none;
            border-left: var(--menu-radius) solid transparent;
        }

/* 第2層及以下現選節點 */
.mp主導覽列3 .sm-blue ul a.currentNode {
}

    .mp主導覽列3 .sm-blue ul a.currentNode::after
    , .mp主導覽列3 .sm-blue ul a.parentNode::after 
    {
        content: var(--current-node-icon);
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: var(--current-node-display-level1);
        margin-left: 5px;
        color: var(--current-node-font-color-level1);
    }

/* 第2層已停用節點 */
.mp主導覽列3 .sm-blue ul a.disabled {
    color: #b3b3b3;
}

/* 第2層及以下，節點之間 */
.mp主導覽列3 .sm-blue ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* 第2層及以下，第一個節點上方 */
.mp主導覽列3 .sm-blue ul li:first-child {
    border-top: 0;
}

/* 第3層 */
.mp主導覽列3 .sm-blue ul ul {
    background: var(--block-bg-level2);
}

/* 第3層節點 */
    .mp主導覽列3 .sm-blue ul ul a,
    .mp主導覽列3 .sm-blue ul ul a:hover,
    .mp主導覽列3 .sm-blue ul ul a:focus,
    .mp主導覽列3 .sm-blue ul ul a:active {
        border-left: calc(var(--node-font-size) * 0.9) solid transparent;
    }

/* 第4層節點 */
    .mp主導覽列3 .sm-blue ul ul ul a,
    .mp主導覽列3 .sm-blue ul ul ul a:hover,
    .mp主導覽列3 .sm-blue ul ul ul a:focus,
    .mp主導覽列3 .sm-blue ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 1.4) solid transparent;
    }

/* 第5層節點 */
    .mp主導覽列3 .sm-blue ul ul ul ul a,
    .mp主導覽列3 .sm-blue ul ul ul ul a:hover,
    .mp主導覽列3 .sm-blue ul ul ul ul a:focus,
    .mp主導覽列3 .sm-blue ul ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 1.8) solid transparent;
    }

/* 第6層節點 */
    .mp主導覽列3 .sm-blue ul ul ul ul ul a,
    .mp主導覽列3 .sm-blue ul ul ul ul ul a:hover,
    .mp主導覽列3 .sm-blue ul ul ul ul ul a:focus,
    .mp主導覽列3 .sm-blue ul ul ul ul ul a:active {
        border-left: calc(var(--node-font-size) * 2.3) solid transparent;
    }

.mp主導覽列3 .sm-blue li.notShowInMobileMode {
    display: none;
}

@media (min-width: 768px) {
    /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
    /* start... (it's not recommended editing these rules) */
    .mp主導覽列3 .sm-blue ul {
        position: absolute;
        width: 12em;
    }

    .mp主導覽列3 .sm-blue li {
        float: left;
    }

    .mp主導覽列3 .sm-blue li.notShowInMobileMode {
        display: inherit;
    }

    .mp主導覽列3 .sm-blue ul li
    {
        float: none;
    }

    .mp主導覽列3 .sm-blue a {
        white-space: nowrap;
    }

    .mp主導覽列3 .sm-blue ul a {
        white-space: normal;
    }

    .mp主導覽列3 .sm-blue .sm-nowrap > li > a
    , .mp主導覽列3 .sm-blue .sm-nowrap > li > :not(ul) a {
        white-space: nowrap;
    }

    /* ...end */

    /* static Block 靜態方塊 */
    .mp主導覽列3 .sm-blue {
        background-image: var(--node-bg);
        border-radius: var(--menu-radius);
        box-shadow: var(--desktop-block-box-shadow-level0);
    }

    /* 節點預設樣式 */
        .mp主導覽列3 .sm-blue a
        , .mp主導覽列3 .sm-blue a:hover
        , .mp主導覽列3 .sm-blue a:focus
        , .mp主導覽列3 .sm-blue a:active
        , .mp主導覽列3 .sm-blue a.highlighted 
        {
            padding: var(--desktop-node-padding);
            background-image: var(--node-bg);
            color: var(--node-font-color-level0);
        }

    /* 節點 Hover 樣式 */
            .mp主導覽列3 .sm-blue a:hover
            , .mp主導覽列3 .sm-blue a:focus
            , .mp主導覽列3 .sm-blue a:active
            , .mp主導覽列3 .sm-blue a.highlighted 
            {
                background-color: var(--color03);
                background-image: var(--desktop-node-bg-hover);
            }

    /* 停用節點 */
    .mp主導覽列3 .sm-blue a.disabled {
        background-color: var(--color01);
        background-image: linear-gradient(to bottom, var(--color02), var(--color03)); /*顏色(1), 顏色(2)*/
        color: var(--color04); /* 顏色(11) */
    }

    /* 第一層，向下箭頭 */
            .mp主導覽列3 .sm-blue a .sub-arrow {
                top: auto;
                margin-top: 0;
                bottom: 2px;
                left: 50%;
                margin-left: -5px;
                right: auto;
                width: 0;
                height: 0;
                border-width: 5px;
                border-style: solid dashed dashed dashed;
                border-color: var(--desktop-arrow-color-level0) transparent transparent transparent; /* 顏色(11) */
                background: transparent;
                border-radius: 0;
            }

    /* 桌面版不顯示 '+'  */
    .mp主導覽列3 .sm-blue a .sub-arrow::before {
        display: none;
    }

    /* 第1層，左邊圓角 */
        .mp主導覽列3 .sm-blue > li:first-child > a, .mp主導覽列3 .sm-blue > li:first-child > :not(ul) a {
            border-radius: var(--menu-radius) 0 0 var(--menu-radius);
        }

    /* 第1層，右邊圓角 */
        .mp主導覽列3 .sm-blue > li:last-child > a, .mp主導覽列3 .sm-blue > li:last-child > :not(ul) a {
            border-radius: 0 var(--menu-radius) var(--menu-radius) 0 !important;
        }

    /* 第1層，節點左邊Border */
        .mp主導覽列3 .sm-blue > li {
            border-left: var(--desktop-node-border-left-level0);
        }

    /* 第1層，第一個節點(Home)左邊Border */
    .mp主導覽列3 .sm-blue > li:first-child {
        border-left: 0;
    }

    /* 第2層方塊 */
        .mp主導覽列3 .sm-blue ul {
            border: var(--desktop-block-border-level1);
            padding: var(--desktop-block-padding-level1);
            background: var(--block-bg-level1);
            border-radius: 0 0 calc(var(--menu-radius) / 2) calc(var(--menu-radius) / 2) !important;
            box-shadow: var(--desktop-block-shadow-level1);
        }

    /* 第 3 層方塊 */
            .mp主導覽列3 .sm-blue ul ul {
                border-radius: calc(var(--menu-radius) / 2) !important;
                background: var(--block-bg-level1);
            }

    /* 第 2 層節點 */
            .mp主導覽列3 .sm-blue ul a, .mp主導覽列3 .sm-blue ul a:hover, .mp主導覽列3 .sm-blue ul a:focus, .mp主導覽列3 .sm-blue ul a:active, .mp主導覽列3 .sm-blue ul a.highlighted {
                border: 0 !important;
                padding: calc(var(--node-font-size) * 0.5) calc(var(--node-font-size) * 1.6) calc(var(--node-font-size) * 0.5) calc(var(--node-font-size) * 1.277778);
                background: transparent;
                color: var(--desktop-node-font-color-level1);
                border-radius: 0 !important;
            }

    /* 第 2 層節點 Hover */
                .mp主導覽列3 .sm-blue ul a:hover, .mp主導覽列3 .sm-blue ul a:focus, .mp主導覽列3 .sm-blue ul a:active, .mp主導覽列3 .sm-blue ul a.highlighted {
                    background-color: var(--color01);
                    background-image: var(--desktop-node-bg-hover-level1);
                    color: var(--desktop-node-font-color-hover-level1);
                }

    /* 第 2 層節點現選 */
                .mp主導覽列3 .sm-blue ul a.currentNode {
                    background-color: var(--color07);
                    background-image: var(--desktop-node-bg-current-level1);
                    color: var(--desktop-node-font-color-current-level1);
                }

                    .mp主導覽列3 .sm-blue ul a.currentNode::after {
                        color: var(--desktop-node-font-color-current-level1);
                    }

    /* 第 2 層節點停用 */
    .mp主導覽列3 .sm-blue ul a.disabled {
        background: #fff;
        color: #b3b3b3;
    }

    /* 第 2 層節點，下層箭頭 */
                .mp主導覽列3 .sm-blue ul a .sub-arrow {
                    top: 50%;
                    margin-top: -5px;
                    bottom: auto;
                    left: auto;
                    margin-left: 0;
                    right: 10px;
                    border-style: dashed dashed dashed solid;
                    border-color: transparent transparent transparent var(--desktop-arrow-color-level1); /* 箭頭顏色 */
                }

    /* 第 2 層節點之間無邊框 */
    .mp主導覽列3 .sm-blue ul li {
        border: 0;
    }

    /* 彈出來的方塊（即第2層、3、4....）上下的箭頭 */
    .mp主導覽列3 .sm-blue .scroll-up,
    .mp主導覽列3 .sm-blue .scroll-down {
        position: absolute;
        display: none;
        visibility: hidden;
        overflow: hidden;
        background: #fff;
        height: 20px;
    }

    /* 彈出來的方塊上下的箭頭 */
    .mp主導覽列3 .sm-blue .scroll-up-arrow,
    .mp主導覽列3 .sm-blue .scroll-down-arrow {
        position: absolute;
        top: -2px;
        left: 50%;
        margin-left: -8px;
        width: 0;
        height: 0;
        overflow: hidden;
        border-width: 8px;
        border-style: dashed dashed solid dashed;
        border-color: transparent transparent var(--color02) transparent;
    }

    .mp主導覽列3 .sm-blue .scroll-down-arrow {
        top: 6px;
        border-style: solid dashed dashed dashed;
        border-color: var(--color02) transparent transparent transparent;
    }
}

/* 彈出 menu 的動畫 */
@media (min-width:768px) {
    #main-menu {
        -webkit-font-smoothing: subpixel-antialiased;
    }

    /* show animation */
    #main-menu ul.show-animation {
        animation: show-animation 0.7s;
    }

    @keyframes show-animation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* hide animation */
    #main-menu ul.hide-animation {
        animation: hide-animation 0.7s;
    }

    @keyframes hide-animation {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }
}

/*Vertical Menu Container Start (Do not change nor remove)*/

.verticalMenuExist {
    --vertical-menu-padding: 1rem;
    --variable-content-padding: 1rem;
}

    .verticalMenuExist .fullWidthContainer {
        width: 100%;
    }

    /* Container for left(Vertical Menu) and right(Main Content) side */
    .verticalMenuExist .fspsFixedWidthRow {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: stretch;
    }

/* Vertical Menu */
    .verticalMenuExist .fspsVerticalMenuPH {
        flex-basis: 20%;
        min-width: 200px;
        max-width: 300px;
        flex-grow: 1;
        flex-shrink: 0;
        position: relative;
        padding: 0;
        border: solid var(--vertical-menu-padding) transparent;
    }

/* Main Content */
    .verticalMenuExist .variableContent
    , .verticalMenuExist .realContent {
        flex-basis: auto;
        width: 80%;
        flex-grow: 6;
        flex-shrink: 1;
    }

    .verticalMenuExist #fspsFirstRow .variableContent {
        padding: var(--variable-content-padding) var(--variable-content-padding) 0 var(--variable-content-padding);
    }

    .verticalMenuExist .fspsContentRow .realContent {
        padding: 0 var(--variable-content-padding);
    }

        .verticalMenuExist .lowerLeverVerticalMenu {
            position: absolute;
            top: 0;
            z-index: 1;
            width: 100%;
        }

    .verticalMenuExist .fspsContentRow {
        
    }

/*Vertical Menu Container End (Do not change nor remove)*/


/*Vertical Menu CSS Start (Do not change nor remove)*/

/* Hide vertical Menu */
.verticalMenuExist .fspsVerticalMenuPH {
    display: none;
}

@media (min-width: 768px) {

    .verticalMenuExist .fspsVerticalMenuPH {
        display: block;
    }

    /* show vertical menu */
    .verticalMenuExist .lowerLeverVerticalMenu {
        --highlight-color: #f2a535;
        /* Font Size */
        --v-heading-font-size: 1.5em;
        --v-node-font-size: 1.2rem;
        --v-node-font-size-level1: 1rem;
        --v-arrow-size: 1.3em;
        /* Font Weight */
        --v-node-font-weight: bold;
        --v-node-font-weight-level1: bold;
        --v-icon-font-weight: 900;
        /* Font Color */
        --v-heading-font-color: #FFFFFF;
        --v-node-font-color: var(--color08);
        --v-node-font-color-level1: var(--color08);
        --v-node-font-color-level1-hover: #000000;
        --v-current-node-font-color: var(--color02);
        /* Line Height */
        --v-node-line-height: 1.5em;
        --v-node-line-height-level1: 2em;
        /* Background */
        --v-heading-bg: linear-gradient(to bottom, var(--color02), var(--color03));
        --v-node-bg: linear-gradient(90deg, var(--color10) 0%, var(--color04) 2%, rgb(255,255,255) 3%, rgb(255,255,255) 100%);
        --v-node-bg-hover: linear-gradient(90deg, var(--highlight-color) 0%, var(--highlight-color) 2%, rgb(255,255,255) 3%, rgb(255,255,255) 100%);
        --v-node-bg-hover-level1: linear-gradient(135deg, #FFFFFF 70%, var(--color13) 100%);
        --v-block-bg-level1: #FFFFFF;
        /* Padding */
        --v-heading-padding: 0.3em 0.5em;
        --v-node-padding: 0.5em 0.6em;
        --v-node-padding-level1: 0 1em;
        /* Margin */
        --v-heading-margin: 0 0 0.5em 0;
        --v-icon-margin-right: 0.6em;
        --v-current-node-icon-margin-left: 0.5em;
        /* Width */
        /* Border */
        --v-border-bottom: solid 1px var(--color04);
        --v-border-bottom-hover: solid 1px rgba(0, 0, 0, 0.2);
        --v-node-border-left-hover-level1: 5px solid var(--highlight-color); /* Orange */
        --v-node-border-left-level1: 1px dotted rgba(0, 0, 0, 0.2);
        /* Height */
        /* Others */
        --v-block-max-height: 80vh;
        --v-border-radius: 0.3em;
        --v-animation-time: 0.15s;
        --v-block-indent-level1: 1em;
        --v-icon-font-family: "Font Awesome 6 Free";
        --v-current-node-icon: "\f185";
        color: #000000;
    }

        /* Curent Displaying webpage node on the top of vertical Menu */
        .verticalMenuExist .lowerLeverVerticalMenu .topNode {
            font-weight: 800;
            margin: var(--v-heading-margin);
            font-size: var(--v-heading-font-size);
            background-image: var(--v-heading-bg);
            color: var(--v-heading-font-color);
            padding: var(--v-heading-padding);
            border-radius: var(--v-border-radius);
        }

        /* vertical menu itself */
        .verticalMenuExist .lowerLeverVerticalMenu .mainmenu {
            border-radius: var(--v-border-radius);
            overflow: hidden;
            max-height: var(--v-block-max-height);
            overflow-y: auto;
        }

        .verticalMenuExist .lowerLeverVerticalMenu ul {
            margin: 0;
            padding: 0;
        }

        .verticalMenuExist .lowerLeverVerticalMenu a:hover {
            cursor: pointer;
        }

        /* level 1 nodes */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li > a:first-child {
            margin: 0;
            background-image: var(--v-node-bg);
            padding: var(--v-node-padding);
            font-size: var(--v-node-font-size);
            font-weight: var(--v-node-font-weight);
            line-height: var(--v-node-line-height);
            display: block;
            color: var(--v-node-font-color);
            text-decoration: none;
            border-bottom: var(--v-border-bottom);
            cursor: pointer;
        }

        /* level 1 last node */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li:last-child > a:first-child {
            border-bottom: none 0px;
        }

        /* level 1 node hover */
        .verticalMenuExist .lowerLeverVerticalMenu > ul > li > a:first-child:hover {
            border-bottom: var(--v-border-bottom-hover);
            background-image: var(--v-node-bg-hover);
        }

        /* font awesome icon */
        .verticalMenuExist .lowerLeverVerticalMenu i {
            margin-right: var(--v-icon-margin-right);
        }

        .verticalMenuExist .lowerLeverVerticalMenu li {
            list-style-type: none;
        }

        /* all nodes */
        .verticalMenuExist .lowerLeverVerticalMenu ul li a {
            position: relative;
        }

        /* level 2 or lower node */
        .verticalMenuExist .lowerLeverVerticalMenu ul ul li a {
            color: var(--v-node-font-color-level1);
            text-decoration: none;
            font-size: var(--v-node-font-size-level1);
            font-weight: var(--v-node-font-weight-level1);
            line-height: var(--v-node-line-height-level1);
            display: block;
            padding: var(--v-node-padding-level1);
            transition: all var(--v-animation-time);
        }

            /* level 2 or lower node hover */
            .verticalMenuExist .lowerLeverVerticalMenu ul ul li a:hover {
                background: var(--v-node-bg-hover-level1);
                border-left: var(--v-node-border-left-hover-level1);
                color: var(--v-node-font-color-level1-hover);
            }

        /* level 2 or lower block */
        .verticalMenuExist .lowerLeverVerticalMenu .mainmenu ul {
            display: none;
            background-color: var(--v-block-bg-level1);
        }

        /* child block of current selected node */
        .verticalMenuExist .lowerLeverVerticalMenu li.active > ul {
            display: block;
        }

        /* level 3 or lower block */
        .verticalMenuExist .lowerLeverVerticalMenu ul ul ul {
            margin-left: var(--v-block-indent-level1);
            border-left: var(--v-node-border-left-level1);
        }

        .verticalMenuExist .lowerLeverVerticalMenu a:not(:only-child)
        {
            position : relative;
        }

        /* has children node, arrow point to right, child block is hidden */
        .verticalMenuExist .lowerLeverVerticalMenu a:not(:only-child):after {
            content: "\f104";
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            position: absolute;
            right: 10px;
            top: 10px;
            font-size: var(--v-arrow-size);
        }

        .verticalMenuExist .lowerLeverVerticalMenu ul ul a:not(:only-child):after {
            top: 0px;
        }

        /* has children node, arrow point down, child block is opened */
        .verticalMenuExist .lowerLeverVerticalMenu .active > a:not(:only-child):after {
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            content: "\f107";
        }

        /* current page node,  wheel icon */
        .verticalMenuExist .lowerLeverVerticalMenu .current:after {
            content: var(--v-current-node-icon);
            font-family: var(--v-icon-font-family);
            font-weight: var(--v-icon-font-weight);
            display: inline;
            margin-left: var(--v-current-node-icon-margin-left);
            color: inherit;
        }

        /* no children node */
        .verticalMenuExist .lowerLeverVerticalMenu .noChild {
        }

            /* no children node hover */
            .verticalMenuExist .lowerLeverVerticalMenu .noChild:hover {
            }
}


/*Vertical Menu CSS End (Do not change nor remove)*/


/*Color Variable Start*/
.mainMenuColors
{
--color01 : rgb(168,48,192); /*C*/
--color02 : rgb(174,49,199); /*C*/
--color03 : rgb(161,46,184); /*C*/
--color04 : rgb(220,161,232); /*C*/
--color05 : rgb(157,45,180); /*C*/
--color06 : rgb(142,41,162); /*C*/
--color07 : rgb(116,0,146); /*C*/
--color08 : rgb(108,0,135); /*C*/
--color09 : rgb(124,0,156); /*C*/
--color10 : rgb(202,68,229); /*C*/
--color11 : rgb(198,108,216); /*C*/
--color12 : rgb(180,61,204); /*C*/
--color13 : rgb(222,174,232); /*C*/
--color14 : rgb(209,46,242); /*C*/
--color15 : rgb(217,54,249); /*C*/
}
/*Color Variable End*/

