@charset "utf-8";
button {
    outline: none;
}
input {
    outline: none;
    width: 100%;
}
.switch {
    display: flex;
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 10000;
}

/*slider switch css */
.theme-switch-wrapper {
    display: inline-block;
    align-items: center;
    em {
        margin-left: 1rem;
        font-size: 1rem;
    }
}
.theme-switch {
    display: inline-block;
    height: 3.4rem;
    position: relative;
    width: 3.4rem;
    margin-bottom: 0;
    cursor: pointer;
}
.theme-switch input {
    display: none;
}
h1 {
    font-size: 4rem;
}
h2 {
    font-size: 3.6rem;
}
h3 {
    font-size: 3.2rem;
}
h4 {
    font-size: 2.8rem;
}
h5 {
    font-size: 2.4rem;
}
h6 {
    font-size: 2rem;
}
p {
    font-size: 1.4rem;
}
.p2 {
    font-size: 1.2rem;
}
section {
    padding: 1rem;
}
pre {
    line-height: 2rem;
    margin: 1em 0 0.5em 0;
    background-color: #666;
    display: inline-flex;
    padding: 0.5em 2rem;
    border-radius: 5em;
    color: #fff;
    font-size: 1rem;
}
.form-control {
    font-size: 1.4rem;
    padding: 0.5em 1rem;
    min-height: 4.8rem;
    border-radius: 0.5rem;
    background: var(--inputBg);
    color: var(--inputColor);
    border-color: var(--inputBorder);
}
.form-control:focus {
    background: var(--inputBgFocus);
    border: var(--inputBorder);
    color: var(--inputColor);
}
.form-control::placeholder {
    color: var(--inputPlaceholder);
}
.form-control:read-only {
    background: var(--pointBg2);
    color: var(--pointColor);
}
.form-select {
    font-size: 1.4rem;
    padding: 0.5em 1rem;
    min-height: 4.8rem;
    border-radius: 0.5rem;
    background-color: var(--inputBg);
    border-color: var(--inputBorder);
    color: var(--inputColor);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%2333d8e6' stroke='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
.form-select:disabled {
    background-color: var(--disableBg);
    border-color: var(--disableBorder);
    color: var(--disableColor);
    cursor: no-drop;
}
.form-floating > .form-control {
    font-size: 1.4rem;
    padding: 0.5em 1rem;
    min-height: 4.8rem;
    background: var(--inputBg);
}
.form-floating > label {
    font-size: 1.6rem;
    padding: 0.5em 1rem;
    line-height: 1.6em;
    color: var(--inputLabel);
}
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--pointColor);
}
input[type="file"]::file-selector-button {
    background: var(--inputFilebtnbg);
    color: var(--inputFilebtncolor);
    cursor: pointer;
}
input[type="file"]:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: var(--inputFilebtnbg);
    color: var(--inputFilebtncolor);
}
.file_choose {
    display: flex;
}
.file_choose .form-control {
    padding: 0;
    min-height: inherit;
    line-height: 4rem;
}
.file_choose .form-control[type="file"] {
    padding: 0 0.5rem;
    height: 4rem;
}
.file_choose .input-group-text {
    cursor: pointer;
}
.form-floating > .form-select ~ label {
    opacity: 1;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-0.8rem) translateX(0.15rem);
}

.check {
    display: inline-flex;
    align-items: center;
}
.check span {
    display: inline-flex;
    align-items: center;
}
input.check_style[type="checkbox"] {
    position: relative;
    top: 0;
    width: 2em;
    height: 2em;
    -webkit-appearance: none;
    outline: none;
    transition: 0.3s;
    margin-right: 0.5rem;
    margin-left: 1rem;
    cursor: pointer;
    margin-right: 1rem;
}
input.check_style[type="checkbox"]:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pointColor);
    box-sizing: border-box;
    transition: 0.3s;
}
input.check_style:checked[type="checkbox"]:before {
    border-left: none;
    border-top: none;
    width: 1rem;
    border-color: var(--pointColorHover);
    transform: rotate(45deg) translate(0.45rem, -1rem);
}

input.radio_style[type="radio"] {
    display: none;
}
input.radio_style[type="radio"] + label {
    margin-left: 1rem;
    cursor: pointer;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}
input.radio_style[type="radio"] + label span {
    display: inline-block;
    width: 1.9rem;
    height: 1.9rem;
    vertical-align: middle;
    background: var(--radioBg);
    border: 1px solid var(--radioBdColor);
    cursor: pointer;
    border-radius: 50%;
    transition: 0.5s;
    margin-right: 0.5rem;
}
input.radio_style[type="radio"]:checked + label span {
    background: var(--pointColor);
    border: 5px solid var(--radioBg);
    transition: 0.5s;
    box-shadow: 0 0 5px #888;
}

label.swt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}
.swt input[type="checkbox"] {
    appearance: none;
    border: max(1px, 0.1em) solid var(--borderColor);
    border-radius: 2em;
    width: 5em;
    height: 2.45em;
    cursor: pointer;
}
.swt input[type="checkbox"]::before {
    content: "";
    position: absolute;
    left: 0.3em;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    transform: scale(0.8);
    background-color: var(--switchColor);
    transition: left 250ms linear;
    top: 0.22em;
}
.swt input[type="checkbox"]:checked {
    background-color: var(--pointColor);
    border-color: var(--pointColor);
}
.swt input[type="checkbox"]:checked::before {
    background-color: white;
    left: 2.8em;
}
.swt input[type="checkbox"]:disabled {
    background-color: var(--disableBg);
    border-color: var(--disableBorder);
    color: var(--disableColor);
    opacity: 0.7;
    cursor: not-allowed;
}
.swt input[type="checkbox"]:disabled:before {
    background-color: var(--disableColor);
}
.swt input[type="checkbox"]:disabled + span {
    opacity: 0.7;
    cursor: not-allowed;
}
.swt input[type="checkbox"]:focus-visible {
    outline-offset: max(0.2rem, 0.1em);
    outline: max(2px, 0.1em) solid var(--pointColor);
}
.swt input[type="checkbox"]:enabled:hover {
    box-shadow: 0 0 0 max(0.4rem, 0.2em) var(--switchShadow);
}

.table {
    font-size: 1.4rem;
    text-align: center;
}
.btn {
    transition: 0.5s;
    font-size: 1.4rem;
    line-height: 4.6rem;
    padding: 0 1.4em 0 1.6em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn_point {
    background-color: var(--pointColor);
    color: #fff;
    border-radius: 5px;
}
.btn_point:hover {
    background-color: var(--pointColorHover);
    color: #fff;
    border-radius: 5px;
}
.dropdown-item {
    transition: 0.5s;
    font-size: 1.4rem;
    color: var(--inputColor);
}
.dropdown-menu {
    background: var(--inputBg);
}
.dropdown .btn {
    padding: 0;
    line-height: inherit;
}
.dropdown .dropdown-toggle::after {
    margin-left: 0;
    margin-right: 0.5rem;
}
.dropdown .dropdown-menu li {
    margin-top: 0;
}
.dropdown .btn span {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn_default {
    border: 1px solid var(--inputBorder);
    color: var(--inputColor);
}
.btn_default:hover {
    border: 1px solid var(--pointColor);
    background-color: var(--pointColor);
    color: var(--originWhite);
}

.progress {
    height: 2rem;
    background: var(--inputBg);
    border-radius: 2rem;
    border: 1px solid var(--inputBorder);
    overflow: visible;
    position: relative;
}
.progress .progress-bar {
    border-radius: 2em;
    -webkit-animation: animate-positive 2s;
    animation: animate-positive 2s;
}
.progress .progress-value {
    width: 6.5rem;
    height: 2.5em;
    line-height: 2.5em;
    background: #171b3c;
    font-size: 1.5em;
    color: #fff;
    border-radius: 0 0 1.5rem 1.5rem;
    border: 1px solid #000;
    border-top: none;
    box-shadow: 0 2px 2px #4f4c4c;
    position: absolute;
    bottom: -2.5em;
    right: 6rem;
}
@-webkit-keyframes animate-positive {
    0% {
        width: 0;
    }
}
@keyframes animate-positive {
    0% {
        width: 0;
    }
}
.circular_progress {
    position: relative;
    width: 20rem;
    height: 20rem;
}
.circular_progress .rating {
    position: relative;
    width: 100%;
    height: 100%;
}
.circular_progress .rating .block {
    position: absolute;
    width: 0.2rem;
    height: 1.5rem;
    background: var(--inputBorder);
    left: 50%;
    transform-origin: 50% 10rem;
    opacity: 0;
    animation: animate 0.1s linear forwards;
}
.circular_progress .rating h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--pointColor);
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    line-height: 1.5em;
}
.circular_progress .rating h2 span {
    font-size: 2.5em;
    font-weight: 700;
}
.circular_progress .rating h2 sup {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--inputLabel);
    transform: translateY(0.4em);
    display: inline-flex;
}
@keyframes animate {
    to {
        opacity: 1;
    }
}
.page {
    margin: 1.5em 0;
    display: flex;
    justify-content: center;
}
.page ul {
    display: flex;
    justify-content: center;
    gap: 0.5em;
}
.page ul li {
    display: flex;
    align-items: center;
}
.page ul li a {
    color: var(--inputColor);
    font-size: 1.4rem;
    padding: 0.2em;
    display: flex;
    align-items: center;
    border-radius: 5rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--inputBorder);
    justify-content: center;
    transition: 0.5s;
}
.page ul li a.active {
    background-color: var(--pointColorHover);
    color: #fff;
    border-color: var(--pointColorHover);
}
.page ul li a:hover {
    background-color: var(--pointColorHover);
    color: #fff;
    border-color: var(--pointColorHover);
    transition: 0.5s;
}
.page ul li a span {
    line-height: 2.4rem;
    font-size: 1.4rem;
    display: inline-flex;
    justify-content: center;
}

.dtp-picker-days thead th {
    color: #fff !important;
}
.dtp table.dtp-picker-days tr > td > a,
.dtp .dtp-picker-time > a {
    border-radius: 5px !important;
}
.year-picker-item.active {
    color: var(--pointColor);
}
.year-picker-item:hover {
    color: var(--pointColor);
}
.time_pick {
    display: flex;
    align-items: center;
}
.tp_date {
    position: relative;
    margin-right: 0.5rem;
}
.tp_mid {
    margin-right: 0.5rem;
    color: var(--swtColor);
}
.tp_date > span {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--swtColor);
}
.dtp > .dtp-content {
    background: var(--inputBg) !important;
}
.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
    background: var(--pointGradient);
}
.dtp div.dtp-date,
.dtp div.dtp-time {
    background: var(--pointColor);
}
.dtp div.dtp-picker-month,
.dtp div.dtp-actual-time {
    color: var(--pointColor);
}
.dtp table.dtp-picker-days tr > td > a.selected {
    background: var(--pointGradient);
    border-radius: 0.5rem !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.dtp-picker .table thead {
    background: var(--tableOddbg) !important;
}
.dtp-picker .table thead th {
    color: var(--textColor) !important;
    border-bottom: 0;
}
.dtp-picker-days thead th:first-child {
    color: #5e90ff !important;
}
.dtp-picker-days thead th:last-child {
    color: #5e90ff !important;
}
.dtp .dtp-buttons .dtp-btn-ok {
    background: var(--pointColor);
    color: #fff;
}
.dtp .dtp-buttons .dtp-btn-cancel {
    background: var(--inputPlaceholder);
    color: #fff;
}
.dtp .dtp-buttons .dtp-btn-clear {
    background: var(--bs-gray);
    color: #fff;
}
.dtp .p10 > a {
    color: #fff;
}
.dtp div.dtp-actual-year {
    color: #fff;
}
.dtp .dtp-close {
    top: 0.3em;
}
.dtp table.dtp-picker-days tr > td > a,
.dtp .dtp-picker-time > a {
    color: var(--inputColor);
}

.modal-content {
    background-color: var(--indexBg);
}

.material-symbols-outlined {
    width: 2.4rem;
    height: 2.4rem;
    line-height: 2.4rem !important;
    text-align: center;
}

.table_b {
    border-radius: 1rem;
    border: 1px solid var(--inputBorder);
    margin-bottom: 0;
    background-color: var(--whiteBg);
    margin-top: 1rem;
}
.table {
    margin-bottom: 0;
}
.table thead th {
    font-weight: 700;
    background-color: var(--tablethbg);
}
.table thead tr {
    border-top: 0;
}
.table thead th:first-child {
    border-left: 0;
}
.table thead th:last-child {
    border-right: 0;
}
.table thead th,
.table tbody td {
    line-height: 2.8rem;
    font-size: 1.4rem;
}
.table tbody td:first-child {
    border-left: 0;
}
.table tbody td:last-child {
    border-right: 0;
}
.table tbody tr {
    border-bottom: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--tableOddBg);
}
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--tableHoverbg);
}

@media (max-width: 720px) {
    .table-responsive .table {
        min-width: 72rem;
    }
}
.table-responsive {
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.contents_b {
    padding: 8rem 0;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}
.tree_search {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    background-color: var(--whiteBg);
    box-shadow: var(--bxShadow8);
    gap: 0.4rem;
    width: 100%;
}
.tree_info {
    display: flex;
    background: var(--pointColor);
    padding: 0 1rem;
}
.tree_info p,
.tree_info h5 {
    color: var(--textColor);
    font-size: 1.4rem;
}
.tree_info h5 {
    color: var(--originWhite);
    line-height: 3rem;
    border-radius: 0 0 1rem 1rem;
    margin-bottom: 0.4rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tree_info h5 span {
    font-size: 2rem;
}
.tree_search .input_btn_group {
    padding: 1rem 0;
    display: flex;
    gap: 0.4rem;
}
.tree_search .form-floating > .form-select {
    min-width: 10rem;
}
.tree_info_inner {
    position: absolute;
    top: 100%;
    right: 0.4rem;
    background-color: var(--pointColor);
    border-radius: 0 0 1rem 1rem;
    box-shadow: var(--bxShadow8);
    padding: 1rem;
}
.tree_info_inner p {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    color: var(--originWhite);
    font-size: 1.2rem;
}
.tree_info_inner p span {
    font-size: 2rem;
    margin-right: 0.4rem;
}
@media (max-width: 620px) {
    .contents_b {
        padding: 12rem 0;
    }
    .tree_search {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tree_info {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 0 1rem 0 0;
    }
    .tree_info_inner {
        display: flex;
        flex-wrap: nowrap;
        padding: 0.4rem;
    }
    .tree_info h5 {
        padding: 0.4rem;
        margin-bottom: 0;
    }
    .input_btn_group {
        justify-content: space-between;
        width: 100%;
    }
    .input_btn_group > div {
        flex: 1;
    }
    .tree_info p {
        margin-left: 0.4rem;
    }
    .tree_search .input_btn_group {
        padding: 0.4rem;
    }
}

.chart_b {
}
.tree ul * {
    transition: none;
}
.tree {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tree ul {
    padding-top: 3rem;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    display: flex;
    flex-wrap: nowrap;
}
.tree li {
    float: left;
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 2rem 0.5rem 0 0.5rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.tree li::before,
.tree li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 1px solid var(--chartBorder);
    width: 50%;
    height: 2rem;
}
.tree li::after {
    right: auto;
    left: 50%;
    border-left: 1px solid var(--chartBorder);
}
.tree li:only-child::after,
.tree li:only-child::before {
    display: none;
}
.tree li:only-child {
    padding-top: 0;
}
.tree li:first-child::before,
.tree li:last-child::after {
    border: 0 none;
}
.tree li:last-child::before {
    border-right: 1px solid var(--chartBorder);
    border-radius: 0 0.5rem 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 0.5rem 0 0;
}
.tree li:first-child::after {
    border-radius: 0.5rem 0 0 0;
    -webkit-border-radius: 0.5rem 0 0 0;
    -moz-border-radius: 0.5rem 0 0 0;
}
.tree ul ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 1px solid var(--chartBorder);
    width: 0;
    height: 3rem;
}
.tree li .chart_li {
    text-decoration: none;
    color: #666;
    font-size: 1.4rem;
    display: inline-block;
    border-radius: 0.5rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 0.5rem;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    white-space: nowrap;
    cursor: pointer;
    background: var(--whiteBg);
    box-shadow: var(--bxShadow8);
    border-radius: 1rem;
    padding-bottom: 2.5rem;
    min-width: 16rem;
    position: relative;
    z-index: 10;
}
.tree li .chart_li:hover,
.tree li .chart_li:hover + ul li .chart_li {
    background: var(--charHover);
    color: #000;
}
.tree li .chart_li:hover + ul li::after,
.tree li .chart_li:hover + ul li::before,
.tree li .chart_li:hover + ul::before,
.tree li .chart_li:hover + ul ul::before {
    border-color: var(--charBdHover);
}
.tree .chart_li .Level {
    background-color: var(--chartBgTit);
    color: var(--originWhite);
    padding: 0.8rem 1rem;
}
.tree .chart_li > p {
    font-weight: 300;
    color: var(--inputLabel);
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.tree .chart_li > p.memId {
    margin-top: 0.8rem;
    font-weight: 700;
    color: var(--pointColor);
}
.tree .chart_li > p.useName {
    margin-top: 0.4rem;
    font-weight: 700;
    color: var(--chartTxt);
}
.tree .chart_li > p.priceDate {
    margin-top: 0.4rem;
    font-weight: 700;
    color: var(--pointColor);
}
.chart_li > .Level {
    border-radius: 1rem 1rem 0 0;
}
.chart_li_btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    background-color: var(--pointColor);
    color: var(--originWhite);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1.8rem;
}
.lV_1 > .chart_li > .Level {
    background: gold !important;
}
.lV_2 > .chart_li > .Level {
    background: brown !important;
}
.lV_3 > .chart_li > .Level {
    background: purple !important;
}
.lV_4 > .chart_li > .Level {
    background: orange !important;
}
.lV_5 > .chart_li > .Level {
    background: green !important;
}
.lV_6 > .chart_li > .Level {
    background: red !important;
}
.lV_7 > .chart_li > .Level {
    background: navy !important;
}
.lV_8 > .chart_li > .Level {
    background: Khaki !important;
}
.lV_9 > .chart_li > .Level {
    background: pink !important;
}
.lV_10 > .chart_li > .Level {
    background: yellow !important;
    color: var(--chartTxt);
}
.lV_11 > .chart_li > .Level {
    background: black !important;
}
.lV_12 > .chart_li > .Level {
    background: gray !important;
}
.lV_13 > .chart_li > .Level {
    background: darkblue !important;
}
.lV_14 > .chart_li > .Level {
    background: silver !important;
}

/*chart_2 style*/
.tree_second.tree li {
    padding: 2rem 1rem;
}
.tree_second.tree .chart_li {
    padding-top: 1.6rem;
    text-align: left;
    padding: 1rem;
    min-width: 20rem;
}
.tree_second.tree li::before,
.tree_second.tree li::after {
    height: 3rem;
}
.tree_second.tree li:only-child {
    padding-top: 0;
}
.tree_second.tree .chart_li .Level {
    position: absolute;
    top: -1rem;
    left: 50%;
    border-radius: 1rem;
    transform: translateX(-50%);
}
.tree_second.tree .chart_li > p {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    line-height: 1rem;
    margin-top: 0.4rem;
    border-bottom: 1px dashed var(--inputBorder);
    padding: 0.4rem 0;
}
.tree_second.tree .chart_li p span {
    margin-right: 0.8rem;
    margin-left: -2rem;
    background-color: var(--whiteBg);
    color: var(--pointColor);
    padding: 0.4rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 3.2rem;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bxShadow2);
}
.tree_second.tree .chart_li > p.priceDate {
    background-color: var(--pointColor);
    color: var(--originWhite);
    justify-content: center;
    border: 0;
    line-height: 2rem;
    border-radius: 0.5rem;
}
.tree_second.tree .chart_li > p.uderP {
    background: var(--freecolorBl);
    color: var(--originWhite);
    justify-content: center;
    border: 0;
    line-height: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.6rem;
}
