:root {
    --box: #ffffff;
    --line: #333;
    --white: white;
    --bg: #ffffff;
    --title: #333;
    --line-2: #00000026;
    --black: black;
    --input: #333;
    --point: #37dacf;
    --hover: #4a9da7;
    --btn2: #222d3580;
    --hover2: #11373c;
    --txt: #333;
    --black_50: #00000080;
    --up: #0da09d;
    --dark-slate-grey: #eaf0f524;
    --shdow: #00000026;
    --line_grey: #333;
    --point_on: #2eb9b0;
    --up2: #117cff;
    --down2: #ff385c;
    --medium-turquoise: #50ccc4;
    --down: red;
    --grey: grey;
    --white-2: #f55;
    --back: #fafafa;
    --grd2: #ccf1ee;
    --grd1: #effffe;
    --hover_trade: #fff1b5;
    --transparent: transparent;
    --side_btn: #131c23;
    --hover-3: #a8d5ff;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

.frame {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.top {
    background-color: var(--box);
    color: var(--line);
    width: 100%;
    height: 4rem;
    min-height: 4rem;
}

.footer {
    background-color: var(--box);
    width: 100%;
    min-width: 1280px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.login_section {
    color: var(--white);
    /*background-image: url('../images/login_bg1.png');
    background-position: 50% 70%;
    background-repeat: no-repeat;
    background-size: auto;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.body {
    background-color: var(--bg);
    color: var(--line);
    font-family: Noto Sans KR, sans-serif;
}

.body.white {
    background-color: var(--line);
    color: #000;
}

.login_box {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border-bottom: 1px solid #f2f2f21a;
    flex-direction: column;
    align-items: center;
    min-width: 992px;
    padding: 100px 40px;
    display: flex;
}

.login_llogo {
    color: var(--line);
    width: 300px;
}

.login_head {
    text-align: center;
    margin-bottom: 0;
    color: var(--black);
}

.form-block {
    width: 100%;
    margin-bottom: 0;
}

.login_block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    flex-direction: column;
    width: 50%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.input_box {
    border: 1px solid var(--title);
    background-color: var(--line-2);
    border-radius: 4px;
    align-items: center;
    width: 75%;
    height: 48px;
    margin-bottom: 0;
    display: flex;
    position: relative;
}

.input {
    color: var(--white);
    text-align: left;
    background-color: #0000;
    border: 1px #000;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.input::placeholder {
    color: var(--white);
}

.input._2, .input._2::placeholder {
    color: var(--black);
}

.input_title {
    background-color: var(--input);
    color: #ffffff80;
    text-align: center;
    border: 1px solid #f2f2f280;
    border-radius: 4px;
    min-width: 40px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    inset: -30% auto auto 2%;
}

.pw_view {
    cursor: pointer;
    background-image: url('../images/pw.svg');
    background-position: 50%;
    background-size: 100% 100%;
    width: 32px;
    height: 32px;
    transition: all .2s;
    position: absolute;
    left: auto;
    right: 2%;
}

.pw_view:hover, .pw_view.on {
    background-image: url('../images/remove_red_eye.svg');
}

.login_head2 {
    color: var(--title);
    text-align: center;
    font-size: 24px;
    line-height: 32px;
}

.btn {
    border: 1px solid var(--point);
    background-color: var(--point);
    text-align: center;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
}

.btn:hover {
    background-color: var(--hover);
}

.btn._2 {
    background-color: var(--btn2);
    color: var(--point);
}

.btn._2:hover {
    background-color: var(--hover2);
}

.btn_area {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    width: 50%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.section {
    width: 100%;
    min-width: 1280px;
    max-width: 1700px;
    min-height: 850px;
    margin-right: auto;
    display: flex;
}

.side_menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-color: var(--box);
    color: var(--line);
    flex-direction: column;
    width: 14%;
    min-width: 200px;
    padding: 24px 14px;
    display: flex;
}

.top_warp {
    align-items: center;
    min-width: 1280px;
    max-width: 1700px;
    height: 100%;
    display: flex;
    box-shadow: 0 1px 3px #333;
}

.content {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    width: 86%;
    min-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 14px;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.content.dark {
    background-color: #131c23;
}

.chart_box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 4px;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    padding-top: 10px;
    font-size: 12px;
    display: flex;
}

.title_section {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    width: 100%;
    padding: 20px 14px;
    display: flex;
    position: relative;
}

.title_section._2 {
    color: var(--white);
}

.heading {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    line-height: 40px;
}

.copyright {
    width: 100%;
    min-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}

.side_btn {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    color: var(--txt);
    cursor: pointer;
    border-radius: 7.5px;
    align-items: center;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s, background-color .2s;
    display: flex;
}

.side_btn:hover, .side_btn.on {
    background-color: var(--black_50);
    color: var(--point);
}

.icon {
    width: 22px;
    height: 23px;
}

.icon.chat.off {
    display: none;
}

.icon.chat.on {
    display: block;
}

.time_section {
    align-items: center;
    width: 14%;
    min-width: 200px;
    height: 100%;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.time_frame {
    border: 1px solid var(--point);
    text-align: center;
    border-radius: 6px;
    width: 100%;
    padding: 4px;
    line-height: 18px;
}

.logo {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 100px;
    min-width: 100px;
    height: 100%;
    display: flex;
}

.logo.w--current {
    width: 130px;
    min-width: 130px;
}

.top_left {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    align-items: center;
    height: 100%;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.logo_img {
    object-fit: contain;
    height: 100%;
}

.menu_deco {
    background-color: var(--point);
    border-radius: 50px;
    width: 0%;
    height: 6px;
    transition: width .2s;
}

.menu_deco.on {
    width: 100%;
}

.menu_btn {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: var(--txt);
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    font-size: 14px;
    line-height: 14px;
    text-decoration: none;
    display: flex;
    font-weight: 700;
}

.menu_btn:hover {
    color: var(--up);
}

.btn_area2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: center;
    width: 50%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.heading-2 {
    margin-top: 0;
    margin-bottom: 0;
}

.btn2 {
    border: 1px solid var(--point);
    background-color: var(--input);
    text-align: center;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
}

.btn2:hover {
    background-color: var(--hover);
}

.btn2._2 {
    background-color: var(--btn2);
    color: var(--point);
}

.btn2._2:hover {
    background-color: var(--hover2);
}

.c_block1 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.c_block2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    width: 28%;
    display: flex;
}

.f_box {
    color: #ffffff80;
    text-align: center;
}

.chart_bar {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    border: 1px solid var(--line-2);
    background-color: var(--dark-slate-grey);
    box-shadow: 0 0 5px 1px var(--shdow);
    color: var(--txt);
    border-radius: 4px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding: 4px;
    display: flex;
}

.chart_bar.mo {
    display: none;
}

.chart_block {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--line-2);
    background-color: var(--dark-slate-grey);
    box-shadow: 0 0 5px 1px var(--shdow);
    border-radius: 4px;
    flex-direction: column;
    display: flex;
}

.general_icon {
    width: 22px;
    height: 22px;
}

.chart_tradebtn_area {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    align-items: center;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.chart_tradebtn_area.mo {
    display: none;
}

.chart_tradebtn {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    border: 1px solid var(--title);
    color: var(--line_grey);
    cursor: pointer;
    background-color: #ffffff24;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 24px;
    padding: 8px 4px;
    font-weight: 500;
    transition: color .2s, background-color .2s;
    display: flex;
}

.chart_tradebtn:hover {
    color: var(--point_on);
    background-color: #50ccc424;
}

.chart_tradebtn.on {
    color: var(--up2);
    background-color: #0173ff33;
}

.chart_tradebtn.on:hover {
    background-color: #0173ff66;
}

.chart_tradebtn.on.chart_limitbtn {
    width: auto;
}

.chart_tradebtn.red {
    color: var(--down2);
    background-color: #ff194333;
}

.chart_tradebtn.red:hover {
    background-color: #ff19434d;
}

.chart_tradebtn.red.chart_limitbtn {
    width: auto;
}

.chart_btn_area {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-items: center;
    display: flex;
}

.chart_btn1 {
    border: 2px solid var(--txt);
    color: var(--line_grey);
    text-align: center;
    background-color: #0000;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 48px;
    height: 24px;
    padding: 4px;
    font-weight: 500;
    transition: background-color .2s;
    display: flex;
}

.chart_btn1:hover {
    background-color: #37dacf66;
}

.chart_btn1.on {
    background-color: var(--point);
    box-shadow: 0 0 3px 0 var(--point_on);
    border-style: none;
}

.chart_title {
    border: 2px solid var(--txt);
    color: var(--line_grey);
    text-align: center;
    background-color: #0000;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    height: 24px;
    min-height: 24px;
    padding: 4px;
    font-weight: 700;
    display: flex;
}

.chart_title:hover {
    color: var(--medium-turquoise);
}

.c_info_block {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-items: center;
    padding: 4px;
    display: flex;
}

.c_info_box {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font-weight: 500;
    display: flex;
}

.listtxt.blue {
    color: var(--up2);
}

.listtxt.red {
    color: var(--down2);
}

.listtxt.grey {
    color: var(--txt);
}

.check_general_box {
    border-width: 2px;
    border-color: var(--line_grey);
    margin-top: 0;
}

.check_general_box.w--redirected-checked {
    border-color: var(--point);
    background-color: var(--point);
    margin-top: 0;
}

.check_general_box.red {
    border-color: var(--down);
}

.check_general_box.red.w--redirected-checked {
    background-color: var(--down);
}

.check_general_box.blue {
    border-color: var(--up2);
}

.check_general_box.blue.w--redirected-checked {
    background-color: var(--up2);
}

.check_general {
    align-items: center;
    min-width: 40px;
    margin-bottom: 0;
    display: flex;
}

.check_general_label {
    margin-bottom: 0;
    margin-left: 4px;
}

.chart_area {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.chart_area.long {
    flex-flow: row;
    width: 100%;
}

.chart_label {
    color: #b3b3b3;
    text-align: center;
    min-width: 30px;
}

.chart_input {
    border: 1px solid var(--title);
    background-color: var(--shdow);
    color: var(--black);
    border-radius: 4px;
    min-width: 50px;
    height: 24px;
    margin-bottom: 0;
    padding: 4px;
}

.chart_input::placeholder {
    color: var(--black);
}

.chart_input.w {
    background-color: var(--line);
    color: var(--bg);
    font-size: 11px;
}

.chart_input.w::placeholder {
    color: var(--line_grey);
}

.c_scalebtn_area {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    align-items: center;
    width: 35%;
    display: flex;
}

.c_scalebtn {
    border: 1px solid var(--title);
    background-color: var(--line-2);
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 16%;
    min-height: 20px;
    transition: background-color .2s;
    display: flex;
}

.c_scalebtn:hover {
    background-color: var(--hover);
}

.check_general_label2 {
    color: var(--txt);
    margin-bottom: 0;
    margin-left: 4px;
}

.c_chart_top {
    border-bottom: 3px solid var(--title);
    color: var(--line_grey);
    background-color: #ffffff0a;
    align-items: center;
    height: 24px;
    /* padding-right: 10px; */
    padding-right: 16px;
    display: flex;
}

.c_chart_list1 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 9%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.c_chart_list1:hover {
    border: 1px solid red;
}

.c_chart_list1.red {
    background-color: #ff395c24;
}

.c_chart_list1.red2 {
    background-color: #ff395c4d;
}

.c_chart_list1.blue {
    background-color: #0173ff33;
}

.c_chart_list1.blue2 {
    background-color: #0173ff80;
}

.c_chart_list2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 6%;
    height: 100%;
    display: flex;
}

.c_chart_list2.center {
    background-color: #ffe26380;
}

.c_chart_list3 {
    border-right: 1px solid var(--title);
    /*background-color: var(--line-2);*/
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 16%;
    height: 100%;
    display: flex;
}

.c_chart_list3:hover {
    background-color: #cbab1c;
    border: 1px solid red;
}

.c_chart_list3.center {
    background-color: #ffe26380;
}

.c_chart {
    width: 100%;
}

.c_chart_list {
    border-bottom: 1px solid var(--title);
    align-items: center;
    width: 100%;
    height: 24px;
    display: flex;
}

.c_chart_list:hover {
    background-color: var(--line-2);
}

.c_chart_scroll {
    height: 390px;
    overflow: scroll;
}

.c_chart_bottom {
    border-top: 1px solid var(--hover);
    border-bottom: 1px solid var(--line-2);
    align-items: center;
    height: 24px;
    /* padding-right: 10px; */
    padding-right: 16px;
    display: flex;
}

.c_b_btnarea {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    align-items: center;
    width: 18%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.c_chart_bottom2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border-top-color: var(--hover);
    align-items: center;
    height: 32px;
    margin-top: 4px;
    padding-right: 16px;
    display: flex;
}

.c_b_btn {
    border: 1px solid var(--txt);
    background-color: var(--line-2);
    color: var(--txt);
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 24px;
    transition: background-color .2s;
    display: flex;
}

.c_b_btn:hover {
    color: var(--point_on);
    background-color: #fff3;
}

.c_b_btn2 {
    border: 1px solid var(--txt);
    /*background-color: var(--line-2);*/
    color: var(--txt);
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 24px;
    transition: background-color .2s;
    display: flex;
}

.c_b_btn2:hover {
    color: var(--point_on);
    background-color: #fff3;
}

.c_list_scroll {
    height: 150px;
    overflow: scroll;
}

.top_right {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    align-items: center;
    height: 100%;
    margin-left: auto;
    display: flex;
}

.c_input_warp {
    align-items: center;
    width: 20%;
    min-height: 24px;
    display: flex;
}

.c_input_warp.long {
    width: 100%;
}

.c_list {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.c_list._2 {
    width: 12%;
}

.c_listwarp {
    border-bottom: 1px solid var(--title);
    align-items: center;
    width: 100%;
    height: 24px;
    display: flex;
}

.c_listwarp:hover {
    background-color: var(--line-2);
}

.chart_btn2 {
    border: 2px solid var(--txt);
    color: var(--line_grey);
    text-align: center;
    background-color: #0000;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 24px;
    margin-left: auto;
    padding: 4px;
    font-weight: 500;
    transition: background-color .2s;
    display: flex;
    line-height: 1;
}

.chart_btn2:hover {
    background-color: #37dacf66;
}

.chart_btn2.on {
    background-color: var(--point);
    box-shadow: 0 0 3px 0 var(--point_on);
    border-style: none;
}

.chart_block2 {
    border: 1px solid var(--line-2);
    background-color: var(--box);
    color: var(--line);
    border-radius: 4px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px;
    display: flex;
    box-shadow: 0 0 5px 1px #00000080;
}

.c_info_warp {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border-bottom: 1px solid var(--grey);
    align-items: center;
    width: 100%;
    height: 28px;
    display: flex;
}

.c_info_warp.t {
    border-top: 1px solid var(--line-2);
    font-size: 16px;
}

.c_info {
    width: 48%;
    font-weight: 500;
}

.c_info._2 {
    color: var(--up);
}

.c_info_num {
    margin-left: 4px;
}

.c_info_num.red {
    color: var(--down2);
}

.c_info_num.blue {
    color: var(--up);
}

.c_info_num.white {
    color: var(--white);
}

.chart_block3 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    border: 1px solid var(--line-2);
    background-color: var(--dark-slate-grey);
    box-shadow: 0 0 5px 1px var(--shdow);
    border-radius: 4px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 8px;
    display: flex;
}

.c_title {
    border: 1px solid var(--point);
    color: var(--up);
    text-align: center;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 4px;
    line-height: 16px;
    display: flex;
}

.c_list2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.c_list_scroll2 {
    height: 254px;
    overflow: scroll;
}

.c_list_scroll2._2 {
    height: 440px;
}

.c_list_scroll3 {
    height: 290px;
    overflow: scroll;
}

.t_content {
    align-items: center;
    width: 86%;
    min-width: 1120px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    display: flex;
}

.my_box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: var(--line);
    cursor: pointer;
    border-radius: 8px;
    align-items: center;
    min-width: 200px;
    padding: 4px 8px 4px 10px;
    transition: background-color .2s;
    display: flex;
    position: relative;
}

.my_box:hover {
    background-color: var(--hover);
}

.my_imgarea {
    border-radius: 6px;
    width: 44px;
    height: 44px;
    overflow: hidden;
}

.my_img {
    width: 100%;
    height: 100%;
}

.toggle_arrow {
    filter: invert();
    width: 14px;
}

.my_warp {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: center;
    width: 55%;
    height: 100%;
    display: flex;
}

.toggle_box {
    z-index: 1;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
    right: 0%;
    overflow: hidden;
    box-shadow: 0 0 8px #37dacf24;
}

.toggle_btn {
    color: var(--white);
    cursor: pointer;
    align-items: center;
    height: 54px;
    min-height: 54px;
    padding-left: 14px;
    padding-right: 14px;
    text-decoration: none;
    display: flex;
}

.toggle_btn:hover {
    background-color: var(--line-2);
}

.t_iconmenu {
    color: var(--point_on);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: color .2s;
    display: flex;
}

.t_iconmenu:hover {
    color: var(--white);
}

.g_block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    border: 1px solid var(--line-2);
    background-color: #e7eef226;
    border-radius: 4px;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 40px;
    display: flex;
    position: relative;
    box-shadow: 0 0 8px #0000004d;
}

.g_block._2 {
    padding-bottom: 20px;
}

.g_block._3 {
    margin-bottom: 50px;
    padding-top: 0;
    padding-bottom: 0;
}

.title_box {
    border-bottom: 1px solid var(--txt);
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 24px 40px;
    display: flex;
}

.title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
}

.title_logo {
    opacity: .5;
    height: 40px;
    margin-bottom: 14px;
}

.title_logo_box {
    color: var(--title);
    text-align: right;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
    line-height: 14px;
    display: flex;
}

.neo_txt {
    color: var(--txt);
}

.dw_container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    width: 100%;
    padding: 40px;
    display: flex;
}

.dw_block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    width: 48%;
    font-size: 20px;
    font-weight: 500;
    display: flex;
}

.pw_btn {
    color: var(--grey);
    text-align: center;
    text-decoration: underline;
    transition: transform .2s;
}

.pw_btn:hover {
    color: var(--medium-turquoise);
    transform: scale(1.1);
}

.dw_remote {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 10px;
    display: grid;
}

.dw_btn1 {
    border: 2px solid var(--point_on);
    color: var(--point_on);
    text-align: center;
    cursor: pointer;
    background-color: #0000;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 18px;
    transition: background-color .2s;
    display: flex;
}

.dw_btn1:hover {
    background-color: var(--hover);
    color: var(--line);
}

.dw_btn1.r {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    border-color: var(--title);
    color: var(--txt);
}

.dw_btn1.r:hover {
    background-color: var(--point);
}

.dw_input {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: center;
    margin-bottom: 14px;
    display: flex;
}

.input_label {
    text-align: center;
    width: 20%;
    font-size: 16px;
}

.input_box_login {
    background-color: #0000004d;
    border: 1px solid #ffffff80;
    border-radius: 4px;
    align-items: center;
    height: 48px;
    padding-right: 48px;
    display: flex;
    position: relative;
}

.g_title {
    color: var(--line_grey);
    font-size: 18px;
    font-weight: 400;
}

.list {
    width: 100%;
    overflow: auto;
}

.list_top {
    border-bottom: 2px solid var(--txt);
    background-color: var(--line-2);
    color: var(--line_grey);
    align-items: flex-start;
    width: 100%;
    height: 48px;
    display: flex;
}

.list_top.scroll {
    padding-right: 18px;
}

.list_warp {
    border-bottom: 1px solid var(--txt);
    align-items: center;
    width: 100%;
    height: 48px;
    display: flex;
}

.list_warp:hover {
    background-color: #ffffff0a;
}

.list_btn2 {
    border: 2px solid var(--title);
    color: var(--title);
    text-align: center;
    background-color: #0000;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    height: 48px;
    margin-left: auto;
    margin-right: 40px;
    font-size: 16px;
    transition: background-color .2s;
    display: flex;
}

.list_btn2:hover {
    background-color: var(--hover);
}

.dw_btn3 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    background-color: var(--medium-turquoise);
    color: var(--line);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .2s;
    display: flex;
}

.dw_btn3:hover {
    background-color: var(--hover);
}

.list1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 14%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.list_scroll {
    width: 100%;
    min-height: 448px;
    max-height: 448px;
    overflow: auto;
}

.list_scroll.always {
    overflow: scroll;
}

.list2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 18%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.list3 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 28%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.chart {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border: 1px solid var(--line-2);
    box-shadow: 0 0 8px 0 var(--shdow);
    background-color: #eaf0f524;
    border-radius: 4px;
    flex-direction: row;
    width: 100%;
    height: 506px;
    display: flex;
}

.h_block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border: 1px solid var(--line-2);
    background-color: var(--box);
    background-image: url('../images/Rectangle-155.png');
    background-position: 50%;
    background-size: cover;
    border-radius: 4px;
    flex-direction: column;
    padding: 40px 20px;
    display: flex;
    box-shadow: 0 0 8px #0000004d;
}

.block_title {
    color: var(--txt);
    font-size: 20px;
    font-weight: 500;
}

.h_container {
    display: flex;
}

.h_box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-right: 1px solid var(--line-2);
    width: 60%;
    display: flex;
}

.h_box._2 {
    border-right-style: none;
    width: 40%;
}

.h_content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    width: 30%;
    padding-left: 20px;
    display: flex;
}

.h_txt {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: var(--title);
    flex-direction: column;
    font-size: 18px;
    display: flex;
}

.info_title {
    color: var(--white);
    font-family: Nanumsquareneootf, sans-serif;
    font-weight: 700;
}

.h_content2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.h_symbol {
    background-color: #00ffee24;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    display: flex;
}

.symbol_icon {
    width: 42px;
    height: 42px;
}

.result_title {
    color: var(--white);
    font-family: Nanumsquareneootf, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.result_subtitle {
    font-size: 18px;
}

.result_num {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.result_num.blue {
    color: var(--point_on);
}

.result_num.red {
    color: var(--white-2);
}

.pagging {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.pagging_btn {
    background-color: var(--box);
    text-align: center;
    border-radius: 6px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: background-color .2s;
    display: flex;
    box-shadow: 0 0 8px #0003;
}

.pagging_btn:hover {
    background-color: var(--hover);
}

.pagging_btn.on {
    color: var(--up);
}

.h_titlebox {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    color: var(--title);
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.date_block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.datebox {
    border: 1px solid var(--line);
    background-color: var(--btn2);
    border-radius: 6px;
    width: 180px;
    min-width: 180px;
    height: 44px;
    margin-bottom: 0;
}

.datebox::placeholder {
    color: var(--back);
}

.datebox._2 {
    border-color: var(--title);
    background-color: var(--line-2);
    color: var(--black);
}

.datebox._2::placeholder {
    color: var(--black);
}

.search_btn {
    border: 1px solid var(--point_on);
    color: var(--point_on);
    cursor: pointer;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
    transition: background-color .2s;
    display: flex;
}

.search_btn:hover {
    background-color: var(--hover);
    color: var(--line);
    text-align: left;
}

.o_block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    border: 1px solid var(--line-2);
    background-color: var(--box);
    background-image: url('../images/Rectangle-68.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    box-shadow: 0 0 8px #0000004d;
}

.o_item {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
}

.o_itembox {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    width: 46%;
    display: flex;
}

.o_item_symbol {
    background-color: var(--white-2);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    display: flex;
    box-shadow: 0 0 5px 1px #ff194380;
}

.o_item_symbol._2 {
    background-color: var(--medium-turquoise);
    box-shadow: 0 0 5px 1px #50ccc480;
}

.result_txt {
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.sub_btn {
    border: 1px solid var(--point_on);
    color: var(--point_on);
    cursor: pointer;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
    transition: background-color .2s;
    display: flex;
    position: absolute;
    inset: 2% 2% auto auto;
}

.sub_btn:hover {
    background-color: var(--hover);
    color: var(--line);
    text-align: left;
}

.titlesub_btn {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--point_on);
    background-color: var(--box);
    color: var(--point_on);
    cursor: pointer;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 90px;
    height: 44px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 16px;
    transition: background-color .2s;
    display: flex;
}

.titlesub_btn:hover {
    background-color: var(--hover);
    color: var(--line);
    text-align: left;
}

.titlesub_btn._2 {
    border-color: var(--white-2);
    color: var(--white-2);
}

.titlesub_btn._2:hover {
    background-color: var(--white-2);
    color: var(--white);
}

.list_check {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
}

.list_check_box {
    border-width: 2px;
    border-radius: 6px;
    width: 20px;
    height: 20px;
    margin-top: 0;
    margin-left: 0;
}

.list_check_box.w--redirected-checked {
    border-width: 2px;
    border-color: var(--point_on);
    background-color: #0000;
    background-image: url('../images/check_box_1check_box.png');
    background-size: 80%;
    margin-top: 0;
    margin-left: 0;
}

.list_check_label {
    margin-bottom: 0;
}

.warning_box {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    color: var(--grey);
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    display: flex;
}

.popup {
    z-index: 9999;
    color: var(--line);
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    inset: 0%;
}

.popup.pw {
    background-image: linear-gradient(180deg, #50ccc44d, var(--hover2));
    display: none;
}

.popup.notice {
    background-image: linear-gradient(180deg, #37dacf4d, var(--hover2));
    display: none;
    overflow: auto;
}

.popup.general {
    display: none;
}

.popup.terms {
    background-color: var(--btn2);
    -webkit-text-fill-color: inherit;
    mix-blend-mode: normal;
    background-clip: border-box;
    display: flex;
}

.popup.order {
    display: none;
}

.pw_popblock {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    width: 450px;
    padding: 60px 60px 40px;
    display: flex;
    position: relative;
}

.popexsit {
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    display: flex;
    position: absolute;
    inset: 20px 20px auto auto;
}

.exsit_icon {
    width: 20px;
    height: 20px;
}

.pop_logo {
    margin-left: auto;
    margin-right: auto;
}

.pop_logo_img {
    height: 48px;
}

.pop_titleblock {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
}

.pop_title2 {
    color: var(--title);
}

.pop_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.pop_inputblock {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.pop_btn_area {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.notice_popblock {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 800px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    position: absolute;
}

.notice_popblock._2 {
    display: none;
}

.list4 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: 46%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
}

.pop_btn_area2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.pop_txtbox {
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    height: 500px;
    min-height: 500px;
    padding: 20px;
    overflow: auto;
}

.general_popbox {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    width: 450px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    position: relative;
}

.general_poptxt {
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
    display: flex;
}

.color_txt {
    color: var(--point_on);
}

.titlesub_btn_area {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: 10%;
    right: 2%;
}

.delete_btn {
    cursor: pointer;
    background-color: #ff19434d;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    display: flex;
}

.delete_btn:hover {
    background-color: #ff395c80;
}

.delete_icon {
    width: 24px;
    height: 24px;
}

.d_box {
    width: 100%;
}

.detail_pagging {
    border: 1px solid var(--line-2);
    background-color: var(--box);
    color: var(--line);
    border-radius: 4px;
    flex-direction: column;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 8px #0000004d;
}

.d_page_btn {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    width: 100%;
    height: 54px;
    padding-left: 20px;
    padding-right: 20px;
    transition: background-color .2s;
    display: flex;
}

.d_page_btn:hover {
    background-color: var(--line-2);
}

.d_page_btn._2 {
    border-bottom: 1px solid var(--line-2);
}

.d_page_icon {
    filter: invert();
    width: 14px;
}

.d_page_icon._2 {
    transform: rotate(180deg);
}

.date {
    color: var(--title);
    margin-left: auto;
    font-size: 12px;
}

.d_page_txt {
    width: 80%;
}

.d_titlebox {
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    background-color: #00000024;
    width: 100%;
    padding: 20px;
}

.d_title {
    font-size: 24px;
    line-height: 32px;
}

.d_txtbox {
    border-bottom: 1px solid var(--line-2);
    height: 480px;
    padding-top: 14px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
}

.file_warp {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.file_box {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    border: 1px solid var(--title);
    background-color: var(--btn2);
    color: var(--title);
    border-radius: 4px;
    align-items: center;
    width: 100%;
    height: 48px;
    padding-left: 14px;
    padding-right: 14px;
    transition: color .2s;
    display: flex;
}

.file_box:hover {
    color: var(--white);
}

.file_x {
    width: 20px;
    height: 20px;
    margin-left: auto;
    font-size: 20px;
}

.file_title {
    align-items: center;
    display: flex;
}

.file_btn {
    border: 1px solid var(--title);
    color: var(--title);
    text-align: center;
    background-color: #0000;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 44px;
    margin-left: auto;
    transition: background-color .2s;
    display: flex;
}

.file_btn:hover {
    background-color: var(--hover);
}

.qna_box {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.input_warp {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    min-height: 30px;
    font-size: 14px;
    line-height: 20px;
    display: flex;
}

.input_box2 {
    border: 1px solid var(--title);
    background-color: var(--btn2);
    color: var(--white);
    border-radius: 4px;
    align-items: center;
    width: 90%;
    height: 48px;
    margin-bottom: 0;
    display: flex;
    position: relative;
}

.input_box2::placeholder {
    color: var(--line);
}

.input_box2._2 {
    background-color: var(--line-2);
    color: var(--black);
}

.input_box2._2::placeholder {
    color: var(--black);
}

.input_label2 {
    min-width: 100px;
}

.qna_area {
    border: 1px solid var(--title);
    background-color: var(--btn2);
    color: var(--white);
    border-radius: 4px;
    width: 100%;
    height: 400px;
    min-height: 400px;
    margin-bottom: 0;
}

.qna_area::placeholder {
    color: var(--back);
}

.qna_area._2 {
    background-color: var(--line-2);
    color: var(--black);
}

.qna_area._2::placeholder {
    color: var(--black);
}

.option_block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.option_area {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    width: 48%;
    display: flex;
}

.option_box {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
}

.o_input_warp {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    justify-content: space-between;
    align-items: center;
    width: 45%;
    height: 48px;
    display: flex;
}

.o_input {
    border: 1px solid var(--title);
    background-color: var(--btn2);
    color: var(--white);
    border-radius: 4px;
    width: 75%;
    height: 44px;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.o_input::placeholder {
    color: var(--white);
}

.o_input._2 {
    background-color: var(--line-2);
    color: var(--black);
}

.o_input._2::placeholder {
    color: var(--black);
}

.g_check_label {
    margin-bottom: 0;
    margin-left: 8px;
    font-size: 16px;
}

.btn3 {
    border: 1px solid var(--point);
    background-color: var(--input);
    text-align: center;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    height: 48px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
}

.btn3:hover {
    background-color: var(--hover);
}

.btn3._2 {
    background-color: var(--btn2);
    color: var(--point);
}

.btn3._2:hover {
    background-color: var(--hover2);
}

.mobile_menu {
    display: none;
}

.c_chartlist {
    width: 100%;
}

.c_chart_listtop {
    border-bottom: 3px solid var(--txt);
    color: var(--line_grey);
    background-color: #ffffff0a;
    align-items: center;
    height: 24px;
    padding-right: 10px;
    display: flex;
}

.body2 {
    background-color: var(--line);
    justify-content: center;
    align-items: center;
    font-family: Nanum Gothic, sans-serif;
    font-size: 12px;
    line-height: 12px;
    display: flex;
}

.body2.white {
    background-color: var(--line);
    color: var(--bg);
    font-family: Nanum Gothic, sans-serif;
}

.content2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    min-width: 768px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    display: flex;
}

.c_chart_list_2 {
    border-bottom: 1px solid var(--title);
    align-items: center;
    width: 100%;
    height: 18px;
    display: flex;
}

.c_chart_list_2:hover {
    background-color: var(--line-2);
}

.chart_input2 {
    border: 1px solid var(--title);
    background-color: var(--white);
    color: var(--black);
    width: 66px;
    min-width: 66px;
    height: 24px;
    margin-bottom: 0;
    padding-left: 4px;
    padding-right: 4px;
}

.c_listwarp2 {
    border-bottom: 1px solid var(--title);
    align-items: center;
    width: 100%;
    height: 20px;
    display: flex;
}

.c_listwarp2:hover {
    background-color: var(--line);
}

.chart_tradebtn2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--title);
    background-color: var(--white);
    background-image: linear-gradient(to bottom, white, var(--line));
    color: var(--bg);
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 24px;
    padding: 4px 8px;
    font-weight: 700;
    display: flex;
}

.chart_tradebtn2:hover {
    background-color: var(--grd2);
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.chart_tradebtn2.on {
    color: var(--up2);
}

.chart_tradebtn2.on:hover {
    background-color: var(--hover_trade);
}

.chart_tradebtn2.red {
    color: var(--white-2);
}

.chart_tradebtn2.red:hover {
    background-color: var(--hover_trade);
}

.chart_btn1_2 {
    border: 1px solid var(--title);
    background-color: #0000;
    background-image: linear-gradient(to bottom, white, var(--line));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    height: 20px;
    margin-left: auto;
    padding: 4px 8px;
    font-weight: 700;
    display: flex;
}

.chart_btn1_2:hover {
    background-color: var(--grd1);
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.chart_btn1_2.on {
    background-color: var(--up2);
    color: var(--line);
}

.chart_bar2 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    border: 2px solid var(--title);
    background-color: #fafafa;
    background-image: linear-gradient(to bottom, var(--line), white);
    color: var(--black);
    border-radius: 2px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 32px;
    padding: 4px 8px;
    display: flex;
}

.chart_btn2_2 {
    border: 1px solid var(--title);
    background-color: #0000;
    background-image: linear-gradient(to bottom, white, var(--line));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 49%;
    height: 20px;
    margin-left: auto;
    padding: 4px 10px;
    font-weight: 700;
    display: flex;
}

.chart_btn2_2:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.chart_btn2_2.on {
    background-color: var(--point);
    box-shadow: 0 0 3px 0 var(--point_on);
    border-style: none;
}

.c_chart_top2 {
    border-bottom: 1px solid var(--title);
    color: var(--black);
    background-color: #f2f2f2;
    align-items: center;
    height: 24px;
    padding-right: 19px;
    font-weight: 700;
    display: flex;
}

.chart_block_2 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    border: 2px solid var(--title);
    background-color: var(--back);
    background-image: linear-gradient(to bottom, var(--line), white);
    color: var(--black);
    flex-direction: column;
    display: flex;
}

.listtxt2.blue {
    color: var(--up2);
}

.listtxt2.red {
    color: var(--down);
}

.listtxt2.grey {
    color: var(--title);
}

.c_info_box2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 16%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 700;
    line-height: 14px;
    display: flex;
}

.c_info_box2._2 {
    width: 12%;
}

.c_info_box2._3 {
    width: 20%;
}

.chart_label_2 {
    text-align: center;
    min-width: 50px;
    font-weight: 700;
}

.check_general_label_2 {
    margin-bottom: 0;
    margin-left: 4px;
}

.c_scalebtn_2 {
    border: 1px solid var(--title);
    background-color: var(--line-2);
    background-image: linear-gradient(to bottom, white, var(--line));
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    min-height: 20px;
    font-size: 12px;
    display: flex;
}

.c_scalebtn_2:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.chart_block2_2 {
    border: 2px solid var(--title);
    background-color: var(--white);
    color: var(--black);
    border-radius: 2px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.c_info_num2 {
    margin-left: 4px;
}

.c_info_num2.red {
    color: var(--down);
}

.c_info_num2.blue {
    color: var(--up);
}

.c_info_num2.white {
    color: var(--grey);
}

.chart_block3_2 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    border: 1px solid var(--title);
    background-color: var(--back);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.c_listwarp2_2 {
    border-bottom: 1px solid var(--title);
    align-items: center;
    width: 100%;
    height: 22px;
    display: flex;
}

.c_listwarp2_2:hover {
    background-color: var(--line);
}

.c_list2_2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.c_chart_bottom_2 {
    border-top: 1px solid var(--title);
    border-bottom: 1px solid var(--title);
    align-items: center;
    height: 24px;
    padding-right: 19px;
    display: flex;
}

.c_chart_bottom2_2 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    border-top-color: var(--hover);
    align-items: center;
    height: 30px;
    padding-right: 18px;
    display: flex;
}

.c_b_btn_2 {
    border: 1px solid var(--title);
    background-image: linear-gradient(to bottom, var(--white), var(--line));
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 20px;
    font-weight: 700;
    display: flex;
}

.c_b_btn_2:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
    color: var(--bg);
}

.c_b_btn2_2 {
    border: 1px solid var(--title);
    background-color: var(--line-2);
    background-image: linear-gradient(to bottom, white, var(--line));
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 22%;
    height: 20px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
}

.c_b_btn2_2:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.c_chart_listtop_2 {
    border-top: 1px solid var(--title);
    border-bottom: 1px solid var(--title);
    background-color: var(--line);
    color: var(--bg);
    align-items: center;
    height: 24px;
    padding-right: 19px;
    font-weight: 700;
    display: flex;
}

.c_chart_list1_2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 9%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.c_chart_list1_2:hover {
    border: 1px solid red;
}

.c_chart_list1_2.red {
    background-color: #ff000024;
}

.c_chart_list1_2.red2 {
    background-color: #ff00004d;
}

.c_chart_list1_2.blue {
    background-color: #0173ff24;
}

.c_chart_list1_2.blue2 {
    background-color: #0173ff4d;
}

.c_chart_list3_2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 16%;
    height: 100%;
    display: flex;
}

.c_chart_list3_2:hover {
    background-color: var(--hover_trade);
    border: 1px solid red;
}

.c_chart_list3_2.center {
    background-color: var(--hover_trade);
}

.c_chart_list3_2.line {
    border-left: 1px solid #000;
    border-right-style: solid;
    border-right-color: #000;
    position: relative;
}

.c_chart_list3_2.line:hover {
    border: 1px solid var(--down);
}

.c_chart_list2_2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 6%;
    height: 100%;
    display: flex;
}

.c_chart_list2_2.center {
    background-color: var(--hover_trade);
}

.c_list_scroll_2 {
    background-color: var(--white);
    height: 94px;
    overflow: scroll;
}

.c_list_scroll3_2 {
    background-color: var(--white);
    height: 338px;
    overflow: scroll;
}

.c_list_scroll2_2 {
    background-color: var(--white);
    height: 304px;
    overflow: scroll;
}

.c_list_scroll2_2._2 {
    height: 480px;
}

.c_table {
    border-style: solid solid none;
    border-width: 1px;
    border-color: var(--txt);
    border-radius: 2px;
    flex-direction: column;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    display: flex;
}

.chart_box2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    border-radius: 4px;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    display: flex;
}

.chart_box2.size1 {
    transform: scale(1.1);
}

.c_chart_scroll_2 {
    height: 440px;
    font-weight: 700;
    overflow: scroll;
}

.c_table_warp {
    border-bottom: 1px solid var(--txt);
    width: 100%;
    height: 20px;
    display: flex;
}

.c_table1 {
    border-right: 1px solid var(--txt);
    background-color: var(--hover);
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 100%;
    font-weight: 700;
    display: flex;
}

.c_table1.w {
    background-color: var(--title);
}

.c_table2 {
    border-right: 1px solid var(--title);
    justify-content: center;
    align-items: center;
    width: 35%;
    height: 100%;
    display: flex;
}

.c_table2._2 {
    border-right-style: none;
}

.c_chart_2 {
    border-top: 3px solid var(--title);
    border-bottom: 3px solid var(--title);
    background-color: var(--white);
    width: 100%;
}

.c_chart2_2 {
    border: 2px solid var(--title);
    width: 100%;
}

.chart_content {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-direction: column;
    display: flex;
}

.c_list_2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 11%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.c_list_2._2 {
    width: 12%;
}

.c_count_box {
    border-right: 1px solid var(--title);
    width: 33.3%;
    height: 100%;
}

.c_count_box._2 {
    border-right-style: none;
}

.c_count_area {
    border: 1px solid var(--title);
    background-color: var(--white);
    min-width: 160px;
    height: 40px;
    margin-right: auto;
    font-weight: 700;
    display: flex;
}

.c_count_title {
    border-bottom: 1px solid var(--title);
    background-color: var(--grd2);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    display: flex;
}

.c_count_title.red {
    background-color: var(--white-2);
    color: var(--line);
}

.c_count_title.blue {
    background-color: var(--up2);
    color: var(--white);
}

.c_count_box2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 20px;
    display: flex;
}

.c_count_box2.red {
    color: var(--down);
}

.c_count_box2.blue {
    color: var(--up2);
}

.menu {
    border: 3px solid var(--title);
    background-color: var(--line);
    background-image: linear-gradient(to bottom, var(--line), white);
    width: 1200px;
}

.menu._2 {
    width: 1000px;
}

.menu._3 {
    width: 650px;
}

.menu._4 {
    width: 1600px;
}

.roling {
    border-bottom: 1px solid var(--title);
    background-color: var(--box);
    align-items: center;
    height: 36px;
    display: flex;
}

.menu_content {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    height: 90px;
    padding: 4px;
    display: flex;
}

.logo_block {
    border: 1px solid var(--title);
    border-radius: 4px;
    width: 86px;
    overflow: hidden;
}

.menu_logo {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.time {
    background-color: var(--box);
    color: var(--line);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 106px;
    font-size: 12px;
    line-height: 20px;
    display: flex;
}

.m_btn_area {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    width: 83%;
    display: flex;
}

.menu_icon {
    width: 32px;
    height: 32px;
}

.login_content {
    background-image: url('../images/wave_white.png');
    background-position: 50%;
    background-size: cover;
    flex-direction: column;
    width: 100%;
    display: flex;
}

.login_content1 {
    width: 100%;
    min-height: 300px;
    display: flex;
}

.login_content2 {
    color: var(--line);
    background-color: #00000080;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.login_item {
    width: 17%;
    padding: 14px;
    font-size: 14px;
    line-height: 20px;
}

.login_inputarea {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    min-height: 30px;
    margin-left: auto;
    padding: 24px;
    display: flex;
}

.login_logo {
    width: 320px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.input_l_box {
    border: 1px solid var(--title);
    background-color: var(--white);
    border-radius: 4px;
    align-items: center;
    width: 100%;
    height: 44px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
}

.l_input_title {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 15%;
    height: 70%;
    display: flex;
}

.login_txt {
    color: #2ca4b3;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 800;
}

.login_logoarea {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 100%;
    min-height: 300px;
    display: flex;
}

.login_title {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
}

.l_check_block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    display: flex;
}

.login_btnwarp {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    display: flex;
    overflow: hidden;
}

.login_itemtxt1 {
    font-weight: 700;
}

.login_itemtxt2 {
    font-size: 12px;
}

.login_itemtxt2.red {
    color: var(--white-2);
}

.login_itemtxt2.blue {
    color: var(--up);
}

.login_btn {
    background-color: var(--hover);
    color: var(--white);
    text-align: center;
    width: 48%;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

.login_btn:hover, .login_btn._2 {
    background-color: var(--medium-turquoise);
}

.login_btn._2:hover {
    background-color: var(--point);
}

.g_content {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    padding: 14px 24px;
    display: flex;
}

.g_content._2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
}

.g_content._3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    padding: 8px;
}

.i_label {
    width: 30%;
    font-size: 14px;
    line-height: 20px;
}

.i_input {
    border: 1px solid var(--title);
    background-color: var(--white);
    width: 70%;
    height: 30px;
}

.general_title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 800;
    line-height: 20px;
}

.r_content1 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    width: 55%;
    display: flex;
}

.r_content2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    width: 45%;
    display: flex;
}

.btn_warp {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    display: flex;
}

.g_btn {
    border: 1px solid var(--title);
    background-color: var(--line);
    background-image: linear-gradient(to bottom, var(--white), var(--back));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.g_btn:hover, .g_btn.on {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.select {
    background-color: var(--white);
    width: 70%;
    height: 30px;
    margin-bottom: 0;
    padding: 4px 8px;
}

.i_num {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: row;
    align-items: center;
    width: 70%;
    display: flex;
}

.select2 {
    background-color: var(--white);
    width: 33%;
    height: 30px;
    margin-bottom: 0;
    padding: 4px 8px;
}

.i_input2 {
    border: 1px solid var(--title);
    background-color: var(--white);
    width: 32%;
    height: 30px;
}

.n_table {
    border: 2px solid var(--title);
    background-color: var(--white);
    height: 240px;
    min-height: 240px;
}

.n_content {
    border: 2px solid var(--title);
    background-color: var(--white);
    height: 360px;
    min-height: 360px;
    padding: 14px;
    font-size: 14px;
    line-height: 18px;
    overflow: scroll;
}

.g_table_top {
    border-bottom: 1px solid var(--title);
    background-color: var(--line);
    height: 32px;
    padding-right: 19px;
    display: flex;
}

.g_tabel_area {
    height: 208px;
    min-height: 208px;
    overflow: scroll;
}

.g_table_warp {
    border-bottom: 1px solid var(--title);
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 30px;
    display: flex;
}

.g_table_warp1 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.g_table_warp2 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 100%;
    padding-left: 4px;
    padding-right: 4px;
    display: flex;
}

.dw_btnarea {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: center;
    display: flex;
}

.dw_section1 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    display: flex;
}

.dw_section2 {
    padding: 14px;
    font-size: 14px;
    line-height: 20px;
}

.dw_content1 {
    flex-direction: column;
    width: 45%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

.dw_content2 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    width: 55%;
    display: flex;
}

.input_txt {
    width: 5%;
}

.i_input3 {
    border: 1px solid var(--title);
    background-color: var(--white);
    width: 49%;
    height: 30px;
}

.select_btnarea {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    display: flex;
}

.select_btn {
    border: 1px solid var(--title);
    background-color: var(--line);
    background-image: linear-gradient(to bottom, var(--white), var(--back));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 16.6%;
    height: 30px;
    padding: 8px;
    display: flex;
}

.select_btn:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.i_txtbox {
    border: 1px solid var(--title);
    background-color: var(--white);
    align-items: center;
    width: 70%;
    height: 30px;
    padding: 4px 8px;
    display: flex;
}

.g_search_block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    align-items: center;
    display: flex;
}

.s_btn {
    border: 1px solid var(--title);
    background-color: var(--line);
    background-image: linear-gradient(to bottom, var(--white), var(--back));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 30px;
    display: flex;
}

.s_btn:hover {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.select3 {
    background-color: var(--white);
    width: 10%;
    height: 30px;
    margin-bottom: 0;
    padding: 4px 8px;
}

.g_table_warp3 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.g_table_warp4 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 10%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.g_table_warp5 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 5%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.dw_table {
    border: 2px solid var(--title);
    background-color: var(--white);
    width: 100%;
    height: 400px;
    min-height: 240px;
}

.dw_table_area {
    height: 366px;
    min-height: 366px;
    overflow: scroll;
}

.g_table_warp6 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 8%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.op_sc1 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    padding: 14px;
    display: flex;
}

.op_check {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    width: 48%;
    font-size: 14px;
    line-height: 18px;
    display: flex;
}

.select_input {
    width: 16.6%;
    height: 30px;
}

.select_btn_title {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 30px;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    display: flex;
}

.notifiction_txt {
    border: 1px solid var(--title);
    background-color: var(--white);
    padding: 4px;
    line-height: 20px;
}

.g_mnubtn_box {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    border-bottom: 3px solid var(--title);
    align-items: center;
    padding: 10px;
    display: flex;
}

.g_menubtn {
    border: 1px solid var(--title);
    background-color: var(--line);
    background-image: linear-gradient(to bottom, var(--white), var(--back));
    color: var(--black);
    text-align: center;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    height: 30px;
    padding: 8px;
    font-weight: 700;
    display: flex;
}

.g_menubtn:hover, .g_menubtn.on {
    background-image: linear-gradient(to bottom, var(--grd1), var(--grd2));
}

.g_table_warp7 {
    border-right: 1px solid var(--title);
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 100%;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
}

.chart_toggle {
    z-index: 1;
    position: relative;
    display: inline-block;
}

.chart_popup {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.c_toggle_box {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    width: 150px;
    height: 200px;
    padding: 8px 4px;
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 1000;
    overflow: auto;
}

.c_toggle_btn {
    border-bottom: 1px solid var(--line-2);
    background-color: #0000;
    width: 100%;
    padding: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c_toggle_btn:hover {
    color: var(--medium-turquoise);
}

.q_content1 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    width: 60%;
    display: flex;
}

.q_content2 {
    width: 40%;
}

.q_top {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    display: flex;
}

.chart_bar_btn {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    border: 1px solid var(--line-2);
    background-color: var(--dark-slate-grey);
    box-shadow: 0 0 5px 1px var(--shdow);
    color: var(--line);
    border-radius: 4px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 4px;
    display: flex;
    position: relative;
}

.chart_bar_btn.mobile {
    display: none;
}

.chart_areabox {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    align-items: center;
    width: 72%;
    display: flex;
}

.chart_info {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    display: flex;
}

.won_span {
    color: var(--line);
}

.chart_btn3 {
    text-align: center;
    background-color: #0000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 30px;
    margin-left: auto;
    padding: 4px;
    font-weight: 500;
    transition: color .2s;
    display: flex;
}

.chart_btn3:hover, .chart_btn3.on {
    color: var(--medium-turquoise);
}

.chart_title2 {
    color: var(--black);
    text-align: center;
    background-color: #0000;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    min-height: 24px;
    padding: 4px;
    font-weight: 700;
    display: flex;
}

.chart_title2:hover {
    color: var(--medium-turquoise);
}

.c_toggle_box2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--title);
    background-color: var(--back);
    border-radius: 2px;
    flex-direction: column;
    width: 150px;
    height: 200px;
    padding: 8px 4px;
    display: none;
    position: absolute;
    left: 0;
    overflow: auto;
}

.c_toggle_btn2 {
    border-bottom: 1px solid var(--title);
    color: var(--bg);
    background-color: #0000;
    width: 100%;
    padding: 4px;
}

.c_toggle_btn2:hover {
    color: var(--medium-turquoise);
}

.alarm_warp {
    position: relative;
}

.alarm_toggle {
    z-index: 20;
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: 1px solid var(--line-2);
    background-color: var(--input);
    border-radius: 4px;
    flex-direction: column;
    width: 240px;
    padding: 14px;
    display: none;
    position: absolute;
    top: 90%;
    right: 0;
    overflow: hidden;
    color: var(--white);
}

.alarm_content {
    border-bottom: 1px solid var(--line-2);
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
    padding-top: 4px;
    padding-bottom: 4px;
    display: flex;
}

.alarn_warn {
    background-color: var(--white-2);
    color: var(--line);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 12px;
    text-decoration: none;
    display: flex;
    position: absolute;
    inset: 0% 0% auto auto;
}

.q_top_btn {
    z-index: 99;
    background-color: #11373c80;
    border: 1px solid #ffffff1a;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    display: none;
    position: fixed;
    inset: auto 4% 4% auto;
}

.q_top_icon {
    filter: invert();
    width: 30px;
    height: 30px;
}

.terms_btnarea {
    justify-content: space-between;
    display: flex;
}

.terms_btnarea._2 {
    justify-content: center;
}

.terms_txt {
    border: 1px solid #ffffff1a;
    border-radius: 4px;
    height: 550px;
    min-height: 550px;
    padding: 14px;
    font-size: 14px;
    overflow: auto;
}

.terms_btn {
    text-align: center;
    background-color: #37dacf;
    border: 1px solid #37dacf;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48%;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    transition: background-color .2s;
    display: flex;
}

.terms_btn:hover {
    background-color: #4a9da7;
}

.terms_btn._2 {
    color: #37dacf;
    background-color: #222d3580;
}

.terms_btn._2:hover {
    background-color: #11373c;
}

.terms_pop {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    background-color: var(--bg);
    border: 1px solid #ffffff1a;
    border-radius: 4px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 650px;
    padding: 40px;
    display: flex;
    position: relative;
}

.tag {
    background-color: var(--grey);
    color: var(--white);
    align-items: center;
    width: 17px;
    height: 100%;
    display: flex;
    position: absolute;
    left: 0;
}

.tag.high {
    background-color: #bd4545;
    width: 15px;
    display: flex;
}

.tag.low {
    background-color: #578dd8;
    display: none;
}

.tag.m {
    display: none;
}

.text-block {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    font-weight: 400;
}

.text-block-2 {
    mix-blend-mode: normal;
}

.chatting-area {
    line-height: 1.5;
}

.chatting-head {
    border-bottom: 1px solid var(--line-2);
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    display: flex;
}

.chatting-body {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    scrollbar-gutter: stable;
    flex-flow: column;
    height: 550px;
    min-height: 550px;
    padding: 20px;
    display: flex;
    overflow: hidden auto;
}

.chatting-write {
    background-color: #222d35;
    border-radius: 5px;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 40px);
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
}

.chatting-title {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: var(--white);
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.chatting-cnt {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    color: #a6a6a6;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
}

.chatting-select-icon {
    border-right: 1px solid var(--line-2);
    background-color: var(--transparent);
    padding: 10px;
}

.chatting-send {
    background-color: var(--transparent);
    padding: 10px;
}

.chatting-date {
    border: 1px solid var(--point);
    color: var(--white);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    width: 150px;
    min-width: 150px;
    margin: 20px auto;
    padding: 5px;
    display: flex;
}

.chatting-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    display: flex;
}

.chatting-textarea {
    background-color: var(--transparent);
    color: #fff;
    resize: none;
    border: none;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    margin-bottom: 0;
    font-size: 13px;
}

.chatting-user-icon {
    width: 37px;
    min-width: 37px;
    min-height: 100%;
}

.msg-other {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: auto;
    padding-right: 11px;
    display: flex;
}

.chatting-footer {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border-top: 1px solid var(--line-2);
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
}

.chatting-enter {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    display: flex;
}

.btn-chat-enter {
    border: 1px solid var(--point);
    background-color: #222d35;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 150px;
    min-width: 150px;
    transition: all .2s;
    display: flex;
    box-shadow: 0 2px 5px #0003;
}

.btn-chat-enter:hover {
    transform: scale(1.08);
}

.msg-mine {
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    padding-left: 11px;
    display: flex;
}

.msg-area {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.msg-box {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-end;
    align-items: flex-end;
    display: flex;
}

.txt {
    color: #000;
    white-space: nowrap;
    font-weight: 500;
}

.txt.grey {
    color: #bbb;
    font-size: .75rem;
}

.msg-content {
    word-break: break-all;
    background-color: #222d35;
    border-radius: 5px;
    padding: 11px 15px;
    font-weight: 500;
}

.msg-content.mine {
    color: var(--black);
    background-color: #37dacf;
}

.txt-user-name {
    color: var(--white);
}

.img-chat {
    width: 100%;
    height: 100%;
}

.c_chart_btn_wrap {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    display: flex;
}

.c_chart_btn {
    white-space: nowrap;
}

.chart_limitbtn {
    white-space: nowrap;
    width: auto;
    padding: 5px;
}

.bottom {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: none;
}

.btnlist {
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 20px;
    display: flex;
}

.btnlist.footer {
    display: none;
}

.btnlist.footer._2 {
    border-top: 0 #000;
}

.bottom_btn {
    color: #fff;
    background-color: #0000;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100px;
    height: 100%;
    padding: 0 14px;
    transition: background-color .4s;
    display: flex;
}

.bottom_btn:hover {
    color: #36c87f;
}

.bottom_list {
    display: none;
}

@media screen and (min-width: 1280px) {
    .login_section {
        object-fit: fill;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-family: Noto Sans KR, sans-serif;
    }

    .login_llogo {
        aspect-ratio: auto;
        text-align: left;
        mix-blend-mode: normal;
        object-fit: fill;
        font-weight: 400;
        position: static;
    }

    .side_btn {
        flex: 0 auto;
        display: flex;
    }
}

@media screen and (min-width: 1440px) {
    .t_content {
        color: var(--line);
    }
}

@media screen and (min-width: 1920px) {
    .chart_title, .chart_title2 {
        cursor: pointer;
        background-color: #0000;
    }
}

@media screen and (max-width: 991px) {
    .footer {
        min-width: auto;
    }

    .footer.f_trade {
        padding-bottom: 120px;
    }

    .login_box {
        min-width: 768px;
    }

    .section {
        min-width: auto;
    }

    .side_menu {
        background-color: var(--white);
        width: 100%;
        min-width: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .side_menu.pc {
        display: none;
    }

    .top_warp {
        min-width: auto;
    }

    .content {
        width: 100%;
        min-width: auto;
    }

    .chart_box {
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
    }

    .copyright {
        min-width: auto;
    }

    .time_section {
        width: 100%;
        min-width: auto;
        padding-top: 14px;
        padding-bottom: 14px;
        background-color: var(--white);
    }

    .time_section.pc {
        display: none;
    }

    .logo {
        width: 70px;
        min-width: 70px;
    }

    .menu_btn {
        display: none;
    }

    .c_block1 {
        width: 100%;
    }

    .c_block1.on {
        display: flex;
    }

    .c_block1.off {
        display: none;
    }

    .c_block2 {
        width: 100%;
    }

    .chart_bar {
        width: 100%;
        display: none;
    }

    .chart_bar.mo {
        display: flex;
    }

    .chart_btn1 {
        min-width: 80px;
    }

    .c_list.w {
        display: none;
    }

    .chart_btn2 {
        width: 49%;
    }

    .c_title {
        width: 95%;
    }

    .t_content {
        min-width: auto;
        padding-right: 10px;
    }

    .list_top, .list_scroll {
        width: 150%;
    }

    .chart {
        align-items: flex-start;
        height: 450px;
        display: flex;
    }

    .chart.on {
        display: flex;
    }

    .chart.off {
        display: none;
    }

    .chart_tradebtn3.on {
        display: flex;
    }

    .chart_tradebtn3.off {
        display: none;
    }

    .h_container {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        flex-wrap: wrap;
    }

    .h_box {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        flex-direction: column;
        width: 100%;
    }

    .h_box._2 {
        width: 100%;
    }

    .h_content {
        flex-direction: row;
        width: 100%;
    }

    .h_txt {
        width: 50%;
    }

    .h_content2 {
        width: 100%;
    }

    .popup.order {
        background-color: #00000069;
        justify-content: center;
        align-items: flex-end;
        font-size: .875rem;
        line-height: 1.5;
        display: flex;
    }

    .popup.order._2, .popup.order._1, .popup.order.tick {
        display: none;
    }

    .mobile_toggle {
        z-index: 20;
        background-color: var(--input);
        border-radius: 4px;
        flex-direction: column;
        width: 240px;
        display: none;
        position: absolute;
        top: 4rem;
        left: 20px;
        overflow: hidden;
    }

    .mobile_menu {
        justify-content: center;
        align-items: center;
        width: 10%;
        height: 100%;
        display: flex;
        position: relative;
    }

    .chart_toggle._2 {
        width: 25%;
    }

    .q_content1 {
        width: 100%;
    }

    .q_content2 {
        width: 100%;
        position: absolute;
        top: 134px;
        left: 0%;
        right: 0%;
    }

    .q_top {
        flex-direction: column;
    }

    .chart_bar_btn {
        grid-column-gap: 6px;
        grid-row-gap: 6px;
        width: 100%;
    }

    .chart_bar_btn.mobile {
        display: flex;
    }

    .chart_areabox {
        width: 100%;
    }

    .chart_info {
        margin-top: 950px;
    }

    .chart_info.chartemode {
        margin-top: 0;
    }

    .chart_btn3 {
        border-bottom: 3px none var(--medium-turquoise);
    }

    .chart_btn3:hover {
        background-color: #0000;
    }

    .chart_btn3.on {
        border-bottom-style: solid;
    }

    .tag {
        width: 1.5vw;
        font-size: .5rem;
    }

    .tag.high {
        width: 11px;
    }

    .c_chart_btn_wrap {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .bottom {
        z-index: 2;
        flex-flow: column;
        width: 100%;
        margin: auto;
        font-size: .8rem;
        display: flex;
        position: fixed;
        bottom: 0;
    }

    .btnlist {
        display: none;
    }

    .btnlist.footer {
        background-color: #0a1569;
        flex-direction: row;
        width: 100%;
        height: 100%;
        min-height: auto;
        margin-left: 0;
        padding: 0;
        display: flex;
    }

    .btnlist.footer._2 {
        grid-column-gap: 2px;
        grid-row-gap: 2px;
        background-color: #000;
        border: 2px solid #15705a;
        justify-content: space-between;
        align-items: center;
        width: 99.3%;
        height: 99%;
        inset: .5% .5% .5% .2%;
    }

    .bottom_btn {
        border-right: 1px solid #eee;
        border-left: 1px solid var(--transparent);
        color: #fff;
        text-align: center;
        min-width: auto;
        height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
        font-weight: 500;
        text-decoration: none;
    }

    .bottom_btn:hover {
        color: var(--point);
        box-shadow: 0 2px 5px #0003;
    }

    .bottom_btn._2 {
        border-right-style: none;
    }

    .bottom_list {
        z-index: 3;
        background-color: #232323;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: auto;
        height: 100%;
        min-height: auto;
        margin-left: auto;
        margin-right: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        display: flex;
        position: relative;
        inset: 0% .3% 0% 0%;
    }

    .order_popbox {
        z-index: 111;
        background-color: #fff;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 15px;
        position: relative;
    }

    .btn_cal {
        color: var(--black);
        background-color: #ebebeb;
        border-radius: 3px;
        justify-content: center;
        align-items: center;
        width: 50px;
        min-width: 50px;
        height: 50px;
        min-height: 50px;
        padding: 8px;
        font-size: 1.9rem;
        text-decoration: none;
        display: flex;
    }

    .btn_cal:hover {
        background-color: #d4d3d3;
    }

    .btn_cal.tick {
        border: 1px solid var(--title);
        background-color: #f5f5f5;
        border-radius: 0;
        font-size: .8rem;
        font-weight: 700;
    }

    .btn_cal.tick:hover {
        background-color: #e9e9e9;
    }

    .btn_cal.tick._2 {
        border-left-style: none;
    }

    .btn_cal._3 {
        border: 1px solid var(--title);
        border-style: solid solid solid none;
        border-width: 1px;
        border-color: var(--title);
        background-color: #f5f5f5;
        border-radius: 0;
        font-size: .8rem;
        font-weight: 700;
    }

    .order_row {
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        justify-content: center;
        align-items: center;
        width: 95%;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
        display: flex;
    }

    .order_row._2 {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }

    .order_row._3 {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        color: #000;
        background-color: #f2f2f2;
        border-radius: 5px;
        flex-flow: column;
        padding: 10px 15px;
    }

    .order_row.tick {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        color: #333;
        white-space: nowrap;
        font-weight: 500;
    }

    .btn_order {
        background-color: #0083eb;
        border-radius: 5px;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
        transition: background-color .25s;
        display: flex;
    }

    .btn_order:hover {
        background-color: #0068bb;
    }

    .btn_order.red {
        background-color: #ff4443;
    }

    .btn_order.red:hover {
        background-color: #d63a39;
    }

    .order_field {
        color: #333;
        text-align: right;
        border-radius: 3px;
        height: 50px;
        margin-bottom: 0;
        margin-right: 5px;
        padding: 15px 15px 15px 60px;
    }

    .order_field.tick {
        text-align: left;
        padding-left: 15px;
    }

    .order_info {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        display: flex;
    }

    .order_info_col {
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        min-height: 25px;
        padding-bottom: 0;
        padding-right: 0;
        display: flex;
    }

    .order_info_col.line {
        border-right-style: solid;
        border-right-width: 1px;
        border-right-color: var(--txt);
        white-space: nowrap;
        width: 70%;
        padding-right: 20px;
        font-weight: 500;
    }

    .txt_color {
        font-weight: 500;
    }

    .txt_color.red {
        color: #ff4443;
    }

    .txt_color.blue {
        color: #0083eb;
    }

    .txt_fix {
        color: #000;
        font-weight: 500;
        position: absolute;
        left: 5%;
    }

    .pl_list {
        border-top: 1px solid var(--side_btn);
        background-color: #fff;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100%;
        display: none;
    }

    .pl_btn {
        border-right: 1px solid var(--line);
        background-color: var(--white);
        color: #000;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 55px;
        display: flex;
    }

    .pl_btn:hover {
        background-color: var(--line);
        font-weight: 500;
    }

    .btn_tick {
        border-radius: 3px;
        justify-content: flex-start;
        align-items: center;
        width: 101px;
        min-width: 101px;
        display: flex;
        overflow: hidden;
    }

    .btn_tick_smt {
        background-color: var(--point_on);
        border-radius: 5px;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        transition: all .25s;
        display: flex;
    }

    .btn_tick_smt:hover {
        background-color: var(--hover);
    }

    .ckbox {
        margin-top: 0;
        margin-left: 0;
        transform: scale(1.45);
    }

    .ckbox-field {
        grid-column-gap: .6rem;
        grid-row-gap: .6rem;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0;
        padding-left: 0;
        display: flex;
    }

    .ckbox-label {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 767px) {
    /* 모바일에서 전체 페이지 스크롤 보장 */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .top {
        z-index: 90;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    .footer {
        min-width: auto;
        padding-top: 8vw;
        padding-bottom: 8vw;
        font-size: .7rem;
    }

    .footer.f_trade {
        padding-bottom: 20vw;
        font-size: .8rem;
    }

    .body {
        font-size: .8rem;
        line-height: 1rem;
    }

    .login_box {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        min-width: 100%;
        padding: 12vw 4vw;
    }

    .login_llogo {
        width: 50vw;
    }

    .login_head {
        font-size: 1.9rem;
        line-height: 2.2rem;
    }

    .login_block {
        grid-column-gap: 6vw;
        grid-row-gap: 6vw;
        width: 70%;
        margin-top: 4vw;
    }

    .input_box {
        width: 70%;
        height: 8vw;
        padding-right: 8vw;
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .input {
        padding: 1vw 2vw;
    }

    .input_title {
        min-width: 8vw;
        padding: .1rem .4rem;
        font-size: .75rem;
        line-height: 1rem;
    }

    .pw_view {
        width: 6vw;
        height: 6vw;
    }

    .login_head2 {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .btn {
        border-radius: 1vw;
        min-width: 30vw;
        height: 9vw;
        padding: 1vw 2vw;
        font-size: 1rem;
    }

    .btn_area {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        width: 70%;
        margin-top: 7vw;
    }

    .section {
        min-width: auto;
        max-width: none;
        min-height: 90vh;
        padding-top: 17vw;
    }

    .side_menu {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .top_warp {
        min-width: auto;
    }

    .content {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 100%;
        min-width: auto;
        padding-bottom: 2vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .chart_box {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        flex-direction: column;
        padding-top: 2vw;
        font-size: .8rem;
        line-height: .9rem;
    }

    .title_section {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        padding: 5vw 2vw;
    }

    .heading {
        font-size: 2rem;
        line-height: 3rem;
    }

    .copyright {
        min-width: auto;
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .side_btn {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        padding: 2vw;
        font-size: .9rem;
    }

    .time_section {
        padding: 2vw;
    }

    .time_frame {
        padding: 1vw;
        line-height: .9rem;
    }

    .logo {
        width: 16vw;
        min-width: 16vw;
    }

    .logo.w--current {
        width: 24vw;
        min-width: 24vw;
    }

    .top_left {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .logo_img {
        width: 100%;
    }

    .menu_btn {
        display: none;
    }

    .btn_area2 {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        width: 70%;
        margin-top: 7vw;
    }

    .btn2 {
        border-radius: 1vw;
        height: 9vw;
        padding: 1vw 2vw;
        font-size: 1rem;
    }

    .c_block1 {
        font-size: .8rem;
    }

    .c_block2 {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        width: 100%;
    }

    .chart_bar {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        justify-content: space-between;
        width: 100%;
        min-height: 10vw;
        padding: 1vw;
    }

    .chart_block {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .chart_tradebtn_area {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 1vw;
        padding-right: 1vw;
        display: none;
    }

    .chart_tradebtn_area.mo {
        display: flex;
    }

    .chart_tradebtn {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        border-radius: 1vw;
        width: 48%;
        height: 6vw;
        padding: 1vw;
        font-size: 1rem;
    }

    .chart_btn_area {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .chart_btn1 {
        border-radius: 1vw;
        min-width: 10vw;
        height: 6vw;
        margin-left: 0;
        padding: 1vw;
    }

    .chart_title {
        border-radius: 1vw;
        min-width: 20vw;
        height: auto;
        min-height: 6vw;
        padding: 1vw .5vw;
        font-size: .7rem;
    }

    .c_info_box {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 31%;
        padding-left: 1vw;
        padding-right: 1vw;
        font-size: .8rem;
    }

    .check_general {
        min-width: 15%;
    }

    .chart_area {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .chart_label {
        min-width: 14vw;
        font-size: .8rem;
    }

    .chart_input {
        border-width: .2vw;
        border-radius: .8vw;
        width: 78%;
        min-width: auto;
        height: 6vw;
        margin-left: auto;
        padding: 1vw 2vw;
        font-size: .8rem;
    }

    .chart_input.w {
        padding-left: 1.5vw;
        font-size: .7rem;
    }

    .c_scalebtn_area {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        justify-content: center;
        width: 100%;
    }

    .c_scalebtn {
        min-width: 14vw;
        min-height: 6vw;
    }

    .c_chart_top {
        height: 7vw;
    }

    .c_chart {
        font-size: .8rem;
    }

    .c_chart_list {
        height: 7vw;
    }

    .c_chart_scroll {
        height: 90vw;
    }

    .c_chart_bottom {
        height: 7vw;
    }

    .c_b_btnarea {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 20%;
        padding-left: .3rem;
        padding-right: .3rem;
    }

    .c_chart_bottom2 {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        justify-content: space-between;
        height: 6vw;
        margin-top: 1vw;
        padding-right: 3vw;
    }

    .c_b_btn {
        height: 6vw;
    }

    .c_b_btn2 {
        width: 19%;
        height: 6vw;
    }

    .c_list_scroll {
        width: 150%;
        height: 60vw;
    }

    .c_list_scroll.w {
        width: 100%;
    }

    .top_right {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .c_input_warp {
        width: 100%;
    }

    .c_input_warp.long {
        min-height: 4.2vw;
    }

    .c_list {
        padding-left: .1rem;
        padding-right: .1rem;
    }

    .c_listwarp {
        height: 7vw;
    }

    .chart_btn2 {
        border-radius: 1vw;
        width: 49%;
        height: 7vw;
        padding: 1vw;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .chart_block2 {
        border-radius: 1vw;
        padding: 2vw;
    }

    .chart_block3 {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        padding-top: 1vw;
    }

    .c_title {
        border-radius: 1vw;
        height: 6vw;
        font-size: 1rem;
        line-height: 1rem;
    }

    .c_list2 {
        padding-left: .1rem;
        padding-right: .1rem;
    }

    .c_list_scroll2 {
        height: 70vw;
    }

    .c_list_scroll2._2 {
        height: 80vw;
    }

    .c_list_scroll3 {
        height: 96vw;
    }

    .t_content {
        width: 90%;
        min-width: auto;
        padding-right: 0;
    }

    .my_box {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        min-width: 35vw;
        height: auto;
        margin-right: 1vw;
        padding: 1vw 1vw 1vw 2vw;
    }

    .my_imgarea {
        width: 7vw;
        height: 7vw;
    }

    .toggle_arrow {
        width: 2vw;
    }

    .my_warp {
        grid-column-gap: .2rem;
        grid-row-gap: .2rem;
    }

    .toggle_btn {
        height: 10vw;
        min-height: 10vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .t_iconmenu {
        width: 7vw;
        padding-top: 1vw;
        padding-bottom: 1vw;
    }

    .g_block {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        padding-top: 3vw;
        padding-bottom: 7vw;
    }

    .g_block._2 {
        padding-bottom: 5vw;
    }

    .g_block._3 {
        margin-bottom: 10vw;
    }

    .title_box {
        padding: 5vw 5vw 5vw 4vw;
    }

    .title {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .title_logo {
        height: 7vw;
        margin-bottom: 2vw;
    }

    .title_logo_box {
        font-size: .7rem;
        line-height: .9rem;
    }

    .dw_container {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        flex-direction: column;
        padding: 4vw;
    }

    .dw_block {
        width: 100%;
        font-size: 1.2rem;
    }

    .dw_remote {
        margin-bottom: 2vw;
    }

    .dw_btn1 {
        height: 9vw;
        padding-left: 1vw;
        padding-right: 1vw;
        font-size: 1.2rem;
    }

    .dw_input {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        margin-bottom: 2vw;
    }

    .input_label {
        text-align: left;
        width: 30%;
        font-size: .9rem;
    }

    .input_box_login {
        height: 8vw;
        padding-right: 8vw;
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .g_title {
        font-size: 1rem;
    }

    .list {
        overflow: auto;
    }

    .list_top {
        width: 200%;
        height: 7vw;
    }

    .list_top.scroll {
        padding-right: 0;
    }

    .list_top.dw {
        width: 100%;
    }

    .list_warp {
        height: 9vw;
    }

    .list_btn2 {
        border-radius: 1vw;
        width: 80%;
        min-width: auto;
        height: 9vw;
        margin-right: auto;
        padding: 1vw 2vw;
        font-size: 1rem;
    }

    .dw_btn3 {
        border-radius: 1vw;
        min-width: 100%;
        height: 9vw;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .list1 {
        padding-left: .2vw;
        padding-right: .2vw;
    }

    .list_scroll {
        width: 200%;
        min-height: 80vw;
        max-height: none;
    }

    .list_scroll.dw {
        width: 100%;
    }

    .list2 {
        padding-left: .2vw;
        padding-right: .2vw;
    }

    .h_block {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        padding: 4vw;
    }

    .block_title {
        font-size: 1rem;
    }

    .h_container {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        flex-direction: column;
    }

    .h_box {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        border-right-style: none;
        flex-direction: column;
        width: 100%;
    }

    .h_content {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        border-bottom: 1px solid var(--line-2);
        width: 100%;
        padding: 3vw 2vw;
    }

    .h_txt {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        font-size: 1rem;
    }

    .h_content2 {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        align-items: center;
        width: 100%;
        padding-left: 0;
    }

    .h_symbol {
        width: 12vw;
        min-width: 12vw;
        height: 12vw;
    }

    .symbol_icon {
        width: 5vw;
        height: 5vw;
    }

    .result_title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .result_subtitle {
        font-size: 1rem;
    }

    .result_num {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .pagging {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
    }

    .pagging_btn {
        border-radius: 1vw;
        width: 7vw;
        height: 7vw;
        padding: 1vw 2vw;
    }

    .h_titlebox {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .date_block {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        justify-content: space-between;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .datebox {
        border-radius: 1vw;
        width: 30vw;
        min-width: 30vw;
        height: 8vw;
        padding: 1vw 2vw;
    }

    .search_btn {
        border-radius: 1vw;
        min-width: 16vw;
        height: 8vw;
        padding-left: 2vw;
        padding-right: 2vw;
        font-size: 1rem;
    }

    .o_item {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .o_itembox {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 100%;
    }

    .o_item_symbol {
        width: 10vw;
        height: 10vw;
    }

    .result_txt {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }

    .sub_btn {
        border-radius: 1vw;
        width: 100%;
        min-width: 12vw;
        height: 8vw;
        padding-left: 2vw;
        padding-right: 2vw;
        font-size: 1rem;
        position: relative;
    }

    .titlesub_btn {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        border-radius: 1vw;
        width: 48%;
        min-width: auto;
        height: 10vw;
        padding-left: 2vw;
        padding-right: 2vw;
        font-size: 1rem;
    }

    .list_check_box {
        border-radius: 1vw;
        width: 4vw;
        height: 4vw;
    }

    .pw_popblock {
        grid-column-gap: 6vw;
        grid-row-gap: 6vw;
        width: 80%;
        padding: 8vw 7vw 7vw;
    }

    .popexsit {
        width: 7vw;
        height: 7vw;
    }

    .exsit_icon {
        width: 4vw;
        height: 4vw;
    }

    .pop_logo_img {
        height: 8vw;
    }

    .pop_titleblock {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .pop_title {
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .pop_inputblock {
        grid-column-gap: 6vw;
        grid-row-gap: 6vw;
        margin-top: 4vw;
    }

    .pop_btn_area {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        width: 100%;
        margin-top: 1vw;
    }

    .notice_popblock {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 90%;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }

    .list4 {
        width: 40%;
        padding-left: .5vw;
        padding-right: .5vw;
    }

    .pop_btn_area2 {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        width: 70%;
    }

    .pop_txtbox {
        height: 88vw;
        min-height: 88vw;
        padding: 3vw;
    }

    .general_popbox {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 80%;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }

    .general_poptxt {
        min-height: 25vw;
        padding-left: 7vw;
        padding-right: 7vw;
        font-size: 1rem;
    }

    .titlesub_btn_area {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 100%;
        margin-top: 2vw;
        position: relative;
        bottom: auto;
        right: auto;
    }

    .delete_btn {
        border-radius: 1vw;
        width: 6vw;
        height: 6vw;
    }

    .d_page_btn {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        height: 10vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .d_page_icon {
        width: 3vw;
    }

    .date {
        font-size: .8rem;
    }

    .d_titlebox {
        padding-top: 3vw;
        padding-bottom: 3vw;
        padding-left: 3vw;
    }

    .d_title {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .d_txtbox {
        height: 100vw;
        padding-top: 2vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .file_warp {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .file_box {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        border-radius: 1vw;
        height: 9vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .file_x {
        width: 3vw;
        height: 3vw;
    }

    .file_btn {
        border-radius: 1vw;
        min-width: 20vw;
        height: 8vw;
        padding: 1vw 2vw;
    }

    .qna_box {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        padding-left: 3vw;
        padding-right: 3vw;
    }

    .input_warp {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
    }

    .input_box2 {
        height: 8vw;
        padding: 1vw 2vw;
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .qna_area {
        height: 50vw;
    }

    .option_block {
        flex-direction: column;
    }

    .option_area {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        width: 100%;
    }

    .option_box {
        grid-column-gap: 5vw;
        grid-row-gap: 5vw;
    }

    .o_input_warp {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        height: 8vw;
    }

    .o_input {
        width: 70%;
        height: 8vw;
        padding: 1vw 2vw;
    }

    .g_check_label {
        margin-left: 1vw;
        font-size: .9rem;
    }

    .btn3 {
        border-radius: 1vw;
        width: 100%;
        min-width: auto;
        height: 9vw;
        padding: 1vw 2vw;
        font-size: 1rem;
    }

    .mobile_toggle {
        z-index: 9990;
        border: 1px solid var(--line-2);
        background-color: var(--input);
        box-shadow: 0 0 8px 0 var(--line-2);
        border-radius: 4px;
        flex-direction: column;
        width: 40vw;
        padding: 0;
        position: absolute;
        left: 2vw;
        right: auto;
    }

    .mobile_menu {
        color: var(--txt);
        justify-content: center;
        align-items: center;
        width: 10%;
        height: 100%;
        display: flex;
        position: relative;
    }

    .mobile_menu:hover {
        color: var(--txt);
    }

    .c_chartlist {
        font-size: .8rem;
        overflow: auto;
    }

    .c_chart_listtop {
        width: 150%;
        height: 7vw;
        padding-right: 2vw;
    }

    .c_chart_listtop.w {
        width: 100%;
    }

    .section2 {
        min-width: auto;
        max-width: none;
        min-height: 90vh;
    }

    .body2 {
        font-size: .8rem;
        line-height: 1.2rem;
    }

    .content2 {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 100%;
        min-width: auto;
        margin-bottom: 7vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .c_chart_list_2 {
        height: 8vw;
    }

    .chart_input2 {
        border-radius: 1vw;
    }

    .c_listwarp2 {
        height: 8vw;
    }

    .chart_tradebtn2 {
        border-radius: 1vw;
        width: 47%;
        font-size: 1rem;
    }

    .chart_btn1_2 {
        border-radius: 1vw;
        min-width: 20vw;
        height: 7vw;
        margin-left: 0;
        padding: 1vw 2vw;
    }

    .chart_bar2 {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        justify-content: space-between;
        min-height: 14vw;
        padding: 3vw;
    }

    .chart_btn2_2 {
        height: 8vw;
    }

    .c_chart_top2 {
        height: 8vw;
        padding-right: 3vw;
    }

    .c_info_box2 {
        width: 31%;
        font-size: 1rem;
    }

    .chart_label_2 {
        font-size: .8rem;
    }

    .chart_block2_2 {
        border-radius: 1vw;
        padding: 3vw 2vw;
    }

    .c_listwarp2_2 {
        height: 8vw;
    }

    .c_chart_bottom_2 {
        height: 8vw;
        padding-right: 3vw;
    }

    .c_chart_bottom2_2 {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        justify-content: space-between;
        height: 8vw;
        margin-top: 2vw;
        padding-right: 3vw;
    }

    .c_b_btn_2 {
        height: 7vw;
    }

    .c_b_btn2_2 {
        width: 18%;
        height: 7vw;
    }

    .c_chart_listtop_2 {
        width: 150%;
        height: 8vw;
        padding-right: 2vw;
    }

    .c_chart_list1_2 {
        padding-left: .2rem;
        padding-right: .2rem;
    }

    .c_list_scroll_2 {
        width: 150%;
        height: 88vw;
    }

    .c_list_scroll3_2, .c_list_scroll2_2 {
        height: 96vw;
    }

    .chart_box2 {
        grid-column-gap: 4vw;
        grid-row-gap: 4vw;
        flex-direction: column;
    }

    .c_chart_scroll_2 {
        height: 114vw;
    }

    .c_chart_2, .c_chart2_2 {
        font-size: .8rem;
    }

    .c_list_2 {
        padding-left: .2rem;
        padding-right: .2rem;
    }

    .login_logo {
        width: 50vw;
    }

    .chart_popup {
        position: relative;
        cursor: pointer;
        /*display: inline-block;*/
    }

    .c_toggle_box {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 30vw;
        height: 40vw;
        padding: 1vw;
        top: calc(100% + 2px);
        left: 0;
        z-index: 1000;
    }

    .c_toggle_btn {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1vw;
    }

    .q_content1 {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 100%;
    }

    .q_content2 {
        width: 100%;
        top: 35vw;
    }

    .q_top {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        flex-direction: column;
    }

    .chart_bar_btn {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        justify-content: space-between;
        width: 100%;
        min-height: 10vw;
        padding: 1vw;
        position: relative;
    }

    .chart_bar_btn.mobile {
        display: flex;
    }

    .chart_areabox {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 100%;
        font-size: 1rem;
    }

    .chart_info {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        margin-top: 268vw;
    }

    .chart_btn3 {
        color: var(--grey);
        width: 49%;
        height: 7vw;
        padding: 1vw;
    }

    .chart_title2 {
        min-width: 16vw;
        min-height: 7vw;
        padding: 1vw;
    }

    .c_toggle_box2 {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 30vw;
        height: 40vw;
        padding: 1vw;
        left: auto;
        right: 0;
    }

    .alarm_toggle {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        width: 40vw;
        padding: 2vw;
        left: 0;
    }

    .alarm_content {
        min-height: 8vw;
        padding-top: 1vw;
    }

    .alarn_warn {
        width: 3vw;
        height: 3vw;
        font-size: .7rem;
        line-height: .7rem;
        top: -4%;
        right: -4%;
    }

    .q_top_btn {
        width: 10vw;
        height: 10vw;
        display: flex;
    }

    .q_top_icon {
        width: 5vw;
        height: 5vw;
    }

    .terms_txt {
        height: 90vw;
        min-height: 90vw;
        padding: 2vw;
        font-size: .9rem;
    }

    .terms_btn {
        border-radius: 1vw;
        min-width: 30vw;
        height: 9vw;
        padding: 1vw 2vw;
        font-size: 1rem;
    }

    .terms_pop {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        width: 95%;
        padding: 5vw;
    }

    .tag {
        width: 2vw;
    }

    .chatting-head {
        border-bottom-width: .2vw;
        padding: 1.7vw 3.5vw;
    }

    .chatting-body {
        grid-column-gap: 14vw;
        grid-row-gap: 14vw;
        height: 96vw;
        min-height: 96vw;
        padding: 3.5vw;
    }

    .chatting-write {
        border-radius: .8vw;
        width: calc(100% - 7vw);
        height: 8.8vw;
        margin-left: 3.5vw;
        margin-right: 3.5vw;
    }

    .chatting-title {
        grid-column-gap: 1.8vw;
        grid-row-gap: 1.8vw;
    }

    .chatting-select-icon {
        border-right-width: .2vw;
        padding: 1.5vw;
    }

    .chatting-send {
        padding: 1.5vw;
    }

    .chatting-date {
        border-width: .2vw;
        border-radius: 8vw;
        width: 26vw;
        min-width: 26vw;
        margin-top: 3vw;
        margin-bottom: 3vw;
        padding: .8vw 1vw;
    }

    .chatting-content {
        grid-column-gap: 5vw;
        grid-row-gap: 5vw;
    }

    .chatting-textarea {
        height: 7vw;
        min-height: 7vw;
        max-height: 7vw;
        padding: 1.5vw 2vw;
        font-size: .8rem;
    }

    .chatting-user-icon {
        width: 6.5vw;
        min-width: 6.5vw;
    }

    .msg-other {
        grid-column-gap: 1.8vw;
        grid-row-gap: 1.8vw;
        padding-right: 2.2vw;
    }

    .chatting-footer {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        border-top-width: .2vw;
        min-height: 17vw;
        padding-top: 3vw;
        padding-bottom: 3vw;
    }

    .chatting-enter {
        height: 8.8vw;
    }

    .btn-chat-enter {
        width: 26vw;
        min-width: 26vw;
        padding: 1.5vw 2.5vw;
    }

    .msg-mine {
        padding-left: 2.2vw;
    }

    .msg-area, .msg-box {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
    }

    .txt {
        font-size: .8rem;
    }

    .txt.grey {
        font-size: .7rem;
    }

    .msg-content {
        border-radius: .8vw;
        padding: 2vw 2.5vw;
    }

    .chart_limitbtn {
        padding: 1vw;
        font-size: .7rem;
    }

    .bottom {
        display: flex;
    }

    .btnlist {
        margin-left: auto;
        margin-right: auto;
        display: none;
    }

    .btnlist.footer {
        z-index: 3;
        color: #fff;
        background-color: #0a1569;
        flex-direction: row;
        height: 100%;
        min-height: auto;
        padding: 0;
        display: flex;
    }

    .btnlist.footer._2 {
        grid-column-gap: .2vw;
        grid-row-gap: .2vw;
        border-width: .4vw;
    }

    .bottom_btn {
        color: #fff;
        text-align: center;
        border-width: .1vw;
        padding: 2vw;
    }

    .bottom_list {
        border-width: .4vw;
        min-height: 12vw;
        padding-top: 2vw;
        padding-bottom: 2vw;
    }

    .order_popbox {
        padding-top: 4.4vw;
        padding-bottom: 1vw;
    }

    .btn_cal {
        border-radius: .4vw;
        width: 8.8vw;
        min-width: 8.8vw;
        height: 8.8vw;
        min-height: 8.8vw;
        padding: 1.4vw;
        font-size: 1.7rem;
    }

    .btn_cal.tick {
        border-width: .2vw;
    }

    .btn_cal._3 {
        border-style: solid solid solid none;
        border-width: .2vw;
    }

    .order_row {
        grid-column-gap: 1vw;
        grid-row-gap: 1vw;
        margin-bottom: 2.6vw;
    }

    .order_row._2 {
        grid-column-gap: 1.8vw;
        grid-row-gap: 1.8vw;
    }

    .order_row._3 {
        grid-column-gap: 1.3vw;
        grid-row-gap: 1.3vw;
        border-radius: .8vw;
        padding: 1.8vw 3vw;
    }

    .order_row.tick {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
    }

    .btn_order {
        border-radius: .8vw;
        padding: 2.6vw;
    }

    .order_field {
        border-radius: .4vw;
        height: 8.8vw;
        min-height: 8.8vw;
        margin-right: 1vw;
        padding: 2vw 2vw 2vw 10vw;
    }

    .order_field.tick {
        padding-left: 2vw;
    }

    .order_info {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
    }

    .order_info_col {
        min-height: 4.4vw;
    }

    .order_info_col.line {
        border-right-width: .2vw;
        padding-right: 3vw;
    }

    .pl_list {
        border-top-width: .2vw;
        min-height: 10vw;
    }

    .pl_btn {
        border-right-width: .2vw;
        height: 9.6vw;
        padding: 1.5vw 2vw;
    }

    .btn_tick {
        border-radius: .4vw;
        width: 17.6vw;
        min-width: 17.6vw;
    }

    .btn_tick_smt {
        border-radius: .8vw;
        padding: 2vw 5vw;
    }
}

@media screen and (max-width: 479px) {
    /* 소형 모바일에서 전체 페이지 스크롤 보장 */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .top {
        height: 3rem;
        min-height: 3rem;
    }

    .footer.f_trade {
        padding-bottom: 22vw;
        font-size: .65rem;
    }

    .body {
        font-size: .75rem;
        line-height: .8rem;
    }

    .login_head {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }

    .login_block {
        width: 90%;
    }

    .input_box {
        height: 10vw;
    }

    .input {
        font-size: .75rem;
        line-height: .7rem;
    }

    .input_title {
        font-size: .6rem;
        line-height: .8rem;
    }

    .login_head2 {
        font-size: .8rem;
        line-height: 1.5rem;
    }

    .btn {
        height: 11vw;
        font-size: .9rem;
    }

    .btn_area {
        width: 90%;
    }

    .chart_box {
        font-size: .75rem;
        line-height: .8rem;
    }

    .heading {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .side_btn {
        font-size: .8rem;
    }

    .logo.w--current {
        width: 27vw;
        min-width: 27vw;
    }

    .btn_area2 {
        width: 90%;
    }

    .btn2 {
        height: 11vw;
        font-size: .8rem;
    }

    .c_block1, .chart_tradebtn {
        font-size: .8rem;
    }

    .chart_title {
        font-size: .6rem;
    }

    .c_info_box {
        font-size: .7rem;
    }

    .chart_label {
        min-width: 13vw;
    }

    .chart_input.w {
        font-size: .6rem;
    }

    .c_chart {
        font-size: .7rem;
    }

    .top_right {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
    }

    .c_listwarp {
        font-size: .7rem;
    }

    .c_title {
        font-size: .8rem;
        line-height: .8rem;
    }

    .my_warp {
        font-size: .7rem;
    }

    .title {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .dw_block, .dw_btn1 {
        font-size: .8rem;
    }

    .input_label {
        font-size: .75rem;
    }

    .input_box_login {
        height: 10vw;
    }

    .g_title {
        font-size: .8rem;
    }

    .list_btn2 {
        width: 80%;
        min-width: auto;
        margin-left: 5vw;
        margin-right: 5vw;
        font-size: .8rem;
    }

    .dw_btn3 {
        font-size: .8rem;
    }

    .h_container {
        grid-column-gap: 5vw;
        grid-row-gap: 5vw;
        flex-direction: column;
    }

    .h_box {
        border-right-style: none;
    }

    .h_box._2 {
        grid-column-gap: 2vw;
        grid-row-gap: 2vw;
        justify-content: flex-end;
    }

    .h_content {
        border-bottom: 1px solid var(--line-2);
    }

    .h_txt {
        font-size: .8rem;
    }

    .h_content2 {
        padding-left: 0;
    }

    .result_title {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .result_subtitle {
        font-size: .8rem;
        line-height: 1rem;
    }

    .result_num {
        font-size: 1rem;
        line-height: 1.2rem;
    }

    .datebox {
        font-size: .75rem;
    }

    .search_btn {
        font-size: .7rem;
    }

    .result_txt {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }

    .sub_btn, .titlesub_btn {
        font-size: .8rem;
    }

    .pop_title {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }

    .pop_inputblock, .pop_btn_area, .pop_btn_area2 {
        width: 90%;
    }

    .titlesub_btn_area {
        position: relative;
        bottom: auto;
        right: auto;
    }

    .date {
        font-size: .7rem;
    }

    .d_title {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .input_box2 {
        height: 10vw;
    }

    .option_block {
        flex-direction: column;
    }

    .option_area {
        width: 100%;
    }

    .o_input_warp, .g_check_label, .btn3 {
        font-size: .8rem;
    }

    .mobile_toggle {
        width: 50vw;
    }

    .c_chartlist {
        font-size: .7rem;
    }

    .body2 {
        font-size: .75rem;
        line-height: .9rem;
    }

    .c_listwarp2 {
        font-size: .7rem;
    }

    .c_info_box2 {
        font-size: .8rem;
    }

    .c_listwarp2_2, .c_chart_2, .c_chart2_2 {
        font-size: .7rem;
    }

    .chart_areabox {
        font-size: .8rem;
    }

    .chart_info {
        margin-top: 300vw;
    }

    .alarn_warn {
        width: 4vw;
        min-width: 4vw;
        height: 4vw;
        min-height: 4vw;
        font-size: .6rem;
        top: 0%;
        right: 0%;
    }

    .terms_txt {
        font-size: .8rem;
    }

    .terms_btn {
        font-size: .9rem;
    }

    .tag {
        width: 2.5vw;
    }

    .chatting-head {
        padding-top: 3vw;
        padding-bottom: 3vw;
    }

    .chatting-body {
        height: 150vw;
        min-height: 150vw;
    }

    .chatting-write {
        height: 10vw;
    }

    .chatting-select-icon, .chatting-send {
        padding: 2vw;
    }

    .chatting-date {
        width: 45vw;
        min-width: 45vw;
        font-size: .7rem;
    }

    .chatting-textarea {
        height: 8vw;
        min-height: 8vw;
        max-height: 8vw;
        font-size: .65rem;
    }

    .chatting-footer {
        min-height: 20vw;
    }

    .btn-chat-enter {
        width: 45vw;
        min-width: 45vw;
        font-size: .7rem;
    }

    .txt {
        font-size: .65rem;
    }

    .txt.grey {
        font-size: .55rem;
    }

    .msg-content {
        font-size: .65rem;
    }

    .chart_limitbtn {
        font-size: .6rem;
    }

    .bottom {
        font-size: .65rem;
    }

    .bottom_btn {
        border-right-width: .08vw;
    }

    .bottom_list {
        min-height: 15vw;
    }

    .btn_cal {
        padding: 2vw;
        font-size: 1rem;
    }

    .btn_cal.tick {
        font-size: .5rem;
    }

    .order_row {
        margin-bottom: 3vw;
        font-size: .8rem;
    }

    .order_row.tick {
        grid-column-gap: 1.5vw;
        grid-row-gap: 1.5vw;
        font-size: .7rem;
    }

    .order_field {
        padding-left: 13vw;
        font-size: .7rem;
    }

    .order_info {
        font-size: .75rem;
    }

    .order_info_col.line {
        width: 80%;
    }

    .txt_fix {
        font-size: .7rem;
    }

    .pl_list {
        min-height: 13vw;
    }

    .ckbox {
        transform: scale(1.3);
    }

    .ckbox-field {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
    }
}

#w-node-dd7908b3-2993-b014-916a-75e7e6a16d1c-362db060, #w-node-_75549070-1dfd-47da-56d5-3fbcbb328415-362db060, #w-node-_3e58682c-4970-b2d9-b6ad-7ee816f3babb-362db060, #w-node-c3f80052-86e9-4640-21a9-b39577febdfa-362db060, #w-node-c1dc9b4e-784b-1503-d661-4dc5916dfc23-362db060, #w-node-f70c6a24-e266-3773-49e5-4498445974e0-362db060, #w-node-dd7908b3-2993-b014-916a-75e7e6a16d1c-362db061, #w-node-_75549070-1dfd-47da-56d5-3fbcbb328415-362db061, #w-node-_3e58682c-4970-b2d9-b6ad-7ee816f3babb-362db061, #w-node-c3f80052-86e9-4640-21a9-b39577febdfa-362db061, #w-node-c1dc9b4e-784b-1503-d661-4dc5916dfc23-362db061, #w-node-f70c6a24-e266-3773-49e5-4498445974e0-362db061 {
    grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
    font-family: 'Nanumsquareneootf';
    src: url('../fonts/NanumSquareNeoOTF-cBd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nanumsquareneootf';
    src: url('../fonts/NanumSquareNeoOTF-aLt.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nanumsquareneootf';
    src: url('../fonts/NanumSquareNeoOTF-eHv.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nanumsquareneootf';
    src: url('../fonts/NanumSquareNeoOTF-dEb.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nanumsquareneootf';
    src: url('../fonts/NanumSquareNeoOTF-bRg.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}