/* 
color chip 
#ff31fa
#F5AC1D
#ff793e
#ffde3e
*/


::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}

html[color-scheme=dark] ::-webkit-scrollbar-thumb {
    background: #404040;
}

html[color-scheme=dark] ::-webkit-scrollbar-track {
    background: #242424;
}

body {
    animation: fadein 800ms ease-out;
    -moz-animation: fadein 800ms ease-out;
    /* Firefox */
    -webkit-animation: fadein 800ms ease-out;
    /* Safari and  Chrome */
    -o-animation: fadein 800ms ease-out;
    /* Opera */
    -webkit-appearance: none;
    -moz-appearance: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {

    /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {

    /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {

    /* Opera */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




#im_pt_load {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    background: inherit;
    z-index: 9999;
    text-align: center;
}

#im_pt_load .im_pt_loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.im_pt_loader,
.im_pt_loader:before,
.im_pt_loader:after {
    animation: 1s infinite ease-in-out;
}

.im_pt_loader:before,
.im_pt_loader:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.im_pt_loader_pin {
    background: transparent;
    animation: im_pt_loader_pin 0.4s infinite linear;
}

@keyframes im_pt_loader_pin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.im_pt_loader_pin:before {
    content: '';
    width: 80%;
    height: 80%;
    background: transparent;
    top: 10%;
    left: 10%;
    box-shadow:
        5px -3px 0 rgb(135 51 255 / 70%),
        5px 5px 0 rgb(255 49 250 / 70%),
        -3px 5px 0 rgb(255 121 62 / 70%),
        -5px -5px 0 rgb(255 222 62 / 70%);
}

.im_pt_loader_pin:after {
    content: '';
    border: 3px solid transparent;
    z-index: 2;
    top: -3px;
    left: -3px;
}








:where(html) {
    --ease: cubic-bezier(.25, 0, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0, 1);
    --ease-elastic-1: cubic-bezier(0.5, 1.25, 0.75, 1.25);
    --ease-elastic-2: cubic-bezier(0.5, 1.5, 0.75, 1.25);
}

html[color-scheme=dark] {
    color-scheme: dark;
}

.im_pt_dl_sun_moon> :is(.moon, .sun, .sun-beams) {
    transform-origin: center center;
}

.im_pt_dl_sun_moon> :is(.moon, .sun) {
    fill: var(--icon-fill) !important;
}

.im_pt_dl_sun_moon>.sun-beams {
    stroke: var(--icon-fill);
    stroke-width: 0.125rem;
}

@media (hover: hover) and (pointer: fine) {
    .im_pt_dl_mode_theme_toggle:is(:hover, :focus-visible)>.im_pt_dl_sun_moon> :is(.moon, .sun) {
        fill: var(--icon-fill-hover);
    }

    .im_pt_dl_mode_theme_toggle:is(:hover, :focus-visible) .im_pt_dl_sun_moon>.sun-beams {
        stroke: var(--icon-fill-hover);
    }
}

[color-scheme=dark] .im_pt_dl_sun_moon>.sun {
    transform: scale(1.75);
}

[color-scheme=dark] .im_pt_dl_sun_moon>.sun-beams {
    opacity: 0;
}

[color-scheme=dark] .im_pt_dl_sun_moon>.moon>circle {
    transform: translateX(7px);
}

@supports (cx: 1) {
    [color-scheme=dark] .im_pt_dl_sun_moon>.moon>circle {
        transform: translateX(0);
        cx: 7;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .im_pt_dl_sun_moon>.sun {
        transition: transform 0.5s var(--ease-elastic-1);
    }

    .im_pt_dl_sun_moon>.sun-beams {
        transition: transform 0.5s var(--ease-elastic-2), opacity 0.5s var(--ease);
    }

    .im_pt_dl_sun_moon .moon>circle {
        transition: transform 0.25s var(--ease-out);
    }

    @supports (cx: 1) {
        .im_pt_dl_sun_moon .moon>circle {
            transition: cx 0.25s var(--ease-out);
        }
    }

    [color-scheme=dark] .im_pt_dl_sun_moon>.sun {
        transform: scale(1.75);
        transition-timing-function: var(--ease);
        transition-duration: 0.25s;
    }

    [color-scheme=dark] .im_pt_dl_sun_moon>.sun-beams {
        transform: rotateZ(-25deg);
        transition-duration: 0.15s;
    }

    [color-scheme=dark] .im_pt_dl_sun_moon>.moon>circle {
        transition-delay: 0.25s;
        transition-duration: 0.5s;
    }
}

.im_pt_dl_mode_theme_toggle {
    --size: 20px;
    --icon-fill: #FFD619;
    --icon-fill-hover: #ffd200;
    background: none;
    border: none;
    padding: 0;
    inline-size: var(--size);
    block-size: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    outline-offset: 0.25rem;
}

.im_pt_dl_mode_theme_toggle>svg {
    inline-size: 100%;
    block-size: 100%;
    stroke-linecap: round;
}

[color-scheme=dark] .im_pt_dl_mode_theme_toggle {
    --icon-fill: #fff;
    --icon-fill-hover: #f9f9f9;
}







#im_pt_header {
    width: 100%;
    position: relative;
    top: 0px;
    background: transparent;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    z-index: 9997;
    padding: 0 24px;
}

#im_pt_header.stick {
    background: rgb(255 255 255 / 30%);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

html[color-scheme=dark] #im_pt_header.stick {
    background: rgb(18 18 18 / 30%);
}

#im_pt_header .im_pt_pc_wrap {
    width: 100%;
    height: 64px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

#im_pt_header .im_pt_logo {
    width: 118px;
    min-width: 118px;
}

#im_pt_header .im_pt_logo_move {
    animation: logo_move 0.7s linear 0s infinite alternate;
    margin-top: 0;
}

@keyframes logo_move {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: 10px;
    }
}

#im_pt_header .im_pt_pc_menu_wrap {
    width: 100%;
}

#im_pt_header .im_pt_pc_menu_wrap.im_pt_pc_right_wrap {
    width: auto;
}

#im_pt_header .im_pt_menu_arrow_line {
    fill: none;
    stroke: #121212;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

html[color-scheme=dark] #im_pt_header .im_pt_menu_arrow_line {
    stroke: #fff;
}

#im_pt_header .im_pt_menu_arrow {
    width: 8px !important;
    height: 8px !important;
    transition: all ease .5s;
}

#im_pt_header .im_pt_pc_menu.im_pt_pc_menu_pr_8 {
    padding-right: 8px;
}

#im_pt_header .im_pt_pc_menu:hover .im_pt_menu_arrow {
    transform: scaleY(-1);
}

#im_pt_header .im_pt_pc_menu_wrap>ul {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

#im_pt_header .im_pt_pc_menu_wrap>ul:after {
    content: "";
    display: block;
    clear: both;
}

#im_pt_header .im_pt_pc_menu_wrap>ul>li {
    position: relative;
    height: 64px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

#im_pt_header .im_pt_pc_menu_wrap>ul>li:hover {
    color: #F5AC1D;
}

#im_pt_header .im_pt_pc_menu_wrap>ul>li:hover .im_pt_pc_right_ico svg {
    fill: #F5AC1D;
}

#im_pt_header .im_pt_pc_right_ico {
    width: 20px;
}

#im_pt_header .im_pt_pc_right_ico svg {
    fill: #121212;
    transition: all .2s ease-in-out;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_right_ico svg {
    fill: #fff;
}

#im_pt_header .im_pt_pc_right_qr_btn svg {
    width: 7px;
    height: 7px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

#im_pt_header .im_pt_pc_right_qr_btn label {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #F5AC1D;
    color: #fff;
    border-radius: 30px;
    padding: 6px 0;
    transition: all .2s ease-in-out;
}

#im_pt_header .im_pt_pc_right_qr_btn label:hover {
    filter: brightness(1.2);
}

#im_pt_header .im_pt_pc_right_qr_btn input {
    color: #fff;
    font-size: 15px;
}

#im_pt_header .im_pt_dot {
    position: relative;
}

#im_pt_header .im_pt_dot::after {
    content: '';
    width: 5px;
    height: 5px;
    background: red;
    border-radius: 50%;

    position: absolute;
    top: 0;
    right: -4px;
    -webkit-animation: im_pt_dot_blink 1s ease-in-out infinite alternate;
    -moz-animation: im_pt_dot_blink 1s ease-in-out infinite alternate;
    animation: im_pt_dot_blink 1s ease-in-out infinite alternate;
}

@-moz-keyframes im_pt_dot_blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes im_pt_dot_blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#im_pt_header .im_pt_pc_menu_wrap>ul>li .im_pt_pc_menu_sub {
    position: absolute;
    z-index: 9998;
    top: 64px;
    left: 0;
    background: #fff;
    color: #121212;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px;
    min-width: 360px;
    max-width: 360px;
    padding: 16px;
    border-radius: 15px;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_menu_wrap>ul>li .im_pt_pc_menu_sub {
    background: #242424;
    color: #fff;
    box-shadow: rgb(255 255 255 / 8%) 0px 0px 8px;
}

#im_pt_header .im_pt_pc_menu_sub,
#im_pt_header .im_pt_pc_menu_sub_down {
    display: none;
}


#im_pt_header .im_pt_pc_menu_sub>li {
    position: relative;
    width: 100%;
}

#im_pt_header .im_pt_pc_menu_sub>li .im_pt_pc_menu_sub_down {
    position: absolute;
    z-index: 9998;
    top: -16px;
    left: 104%;
    background: #fff;
    color: #121212;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 10px;
    min-width: 360px;
    max-width: 360px;
    padding: 16px;
    border-radius: 15px;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_menu_sub_down {
    background: #242424;
    color: #fff;
    box-shadow: rgb(255 255 255 / 8%) 0px 0px 8px;
}

#im_pt_header .im_pt_pc_menu_sub_down>li {
    width: 100%;
}

#im_pt_header .im_pt_pc_menu_sub>li>a,
#im_pt_header .im_pt_pc_menu_sub_down>li>a {
    display: block;
    padding: 12px 16px;
    border-radius: 15px;
    white-space: normal;
}

#im_pt_header .im_pt_pc_menu_sub>li>a:hover,
#im_pt_header .im_pt_pc_menu_sub_down>li>a:hover {
    background: #f9f9f9;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_menu_sub>li>a:hover {
    background: #2b2b2b;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_menu_sub_down>li>a:hover {
    background: #2b2b2b;
}

#im_pt_header .im_pt_pc_menu_area {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

#im_pt_header .im_pt_pc_menu_area_ico {
    width: 24px !important;
    height: 24px !important;
    display: inline-flex;
    align-items: center;
}

#im_pt_header .im_pt_pc_menu_area_txt_wrap {
    width: 100%;
}

#im_pt_header .im_pt_pc_menu_area_tit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    white-space: normal;
}

#im_pt_header .im_pt_pc_menu_area_tit img {
    width: 11px;
}

#im_pt_header .im_pt_pc_menu_area_txt {
    white-space: normal;
    font-size: 13px;
    font-weight: 300;
    opacity: .5;
}

#im_pt_header .im_pt_pc_menu_area_ico svg {
    width: 20px !important;
    height: 20px !important;
}

#im_pt_header .im_pt_pc_menu_area_ico .st0 {
    fill: #F5AC1D;
}

#im_pt_header .im_pt_pc_menu_area_ico .st1 {
    opacity: 0.4;
    fill: #141414;
    enable-background: new;
}

html[color-scheme=dark] #im_pt_header .im_pt_pc_menu_area_ico .st1 {
    opacity: 0.4;
    fill: #f9f9f9;
    enable-background: new;
}

#im_pt_header .im_pt_pc_menu_area_arrow {
    transition: all .5s ease-in-out;
    opacity: 0;
    width: 18px;
    height: 18px;
}

#im_pt_header .im_pt_pc_menu_sub a:hover .im_pt_pc_menu_area_arrow {
    transform: translateX(3px);
    opacity: 1;
}

#im_pt_header .im_pt_pc_menu_sub_down a:hover .im_pt_pc_menu_area_arrow {
    transform: translateX(3px);
    opacity: 1;
}

#im_pt_header .im_pt_pc_menu_area_arrow .st0 {
    fill: none;
    stroke: #F5AC1D;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

#im_pt_header .im_pt_pc_menu_area_arrow .st1 {
    fill: none;
    stroke: #F5AC1D;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    enable-background: new;
}

#im_pt_header .im_pt_mb_open_btn {
    position: absolute;
    top: 20px;
    right: 24px;
    display: none;
}

#im_pt_header .im_pt_mb_open_btn svg {
    width: 24px;
    height: 24px;
    fill: #F5AC1D;
    transition: all .2s ease-in-out;
}

#im_pt_header .im_pt_mb_open_btn:hover svg {
    fill: #121212;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_open_btn:hover svg {
    fill: #fff;
}

#im_pt_header .im_pt_mb_close_btn {
    position: absolute;
    top: 20px;
    right: 24px;
}

#im_pt_header .im_pt_mb_close_btn svg {
    width: 16px;
    height: 16px;
    fill: #121212;
    transition: all .2s ease-in-out;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_close_btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: all .2s ease-in-out;
}

#im_pt_header .im_pt_mb_close_btn:hover svg {
    fill: #F5AC1D;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_close_btn:hover svg {
    fill: #F5AC1D;
}

/* 2023.06.08 edit start */
#im_pt_header .im_pt_mb_wrap {
    height: 100vh;
    width: 100%;
    /* width: calc(100% - 36px); */
    position: fixed;
    right: -100%;
    top: 0;
    background: #fff;
    padding: 64px 0 24px;
    z-index: 9998;
    transition: all 0.3s;
    /* box-shadow: rgb(0 0 0 / 50%) -36px 0px; */
    overflow-y: scroll;
}

/* 2023.06.08 edit end */

html[color-scheme=dark] #im_pt_header .im_pt_mb_wrap {
    background: #121212;
}

#im_pt_header .im_pt_mb_wrap.on {
    right: 0;
}

#im_pt_header .im_pt_mb_menu_wrap {
    margin-top: 12px;
}

#im_pt_header .im_pt_mb_menu_wrap>li {
    width: 100%;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a {
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 0 16px;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a p {
    width: 100%;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a:hover {
    color: #F5AC1D;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a.on {
    color: #F5AC1D;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a svg {
    width: 20px;
    height: 20px;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a svg .st0 {
    fill: #F5AC1D;
}

#im_pt_header .im_pt_mb_menu_wrap>li>a svg .st1 {
    opacity: 0.4;
    fill: #141414;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_menu_wrap>li>a svg .st1 {
    fill: #f9f9f9;
}

#im_pt_header .im_pt_mb_menu_wrap>li>ul {
    display: none;
}

#im_pt_header .im_pt_mb_menu_wrap>li>ul>li>a {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    padding: 0 36px;
    font-size: 15px;
}

#im_pt_header .im_pt_mb_menu_wrap>li>ul>li:first-child>a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

#im_pt_header .im_pt_mb_menu_wrap>li>ul>li>a:hover {
    background: #f9f9f9;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_menu_wrap>li>ul>li>a:hover {
    background: #2b2b2b;
}

.im_pt_mb_menu_sub {
    display: none;
}

.im_pt_mb_menu_sub>li {
    width: 100%;
}

.im_pt_mb_menu_sub>li>a {
    display: block;
    width: 100%;
    height: 42px;
    line-height: 42px;
    padding: 0 55px;
    font-size: 15px;
}

.im_pt_mb_menu_sub>li>a:hover {
    background: #f9f9f9;
}

html[color-scheme=dark] .im_pt_mb_menu_sub>li>a:hover {
    background: #2b2b2b;
}



#im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer svg {
    width: 18px;
    fill: #121212;
    transition: all .2s ease-in-out;
}

#im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer a:hover svg {
    fill: #F5AC1D;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer a:hover svg {
    fill: #F5AC1D;
}

#im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer a.on svg {
    fill: #F5AC1D;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer a.on svg {
    fill: #F5AC1D;
}

html[color-scheme=dark] #im_pt_header .im_pt_mb_menu_wrap.im_pt_mb_footer svg {
    fill: #fff;
}

#im_pt_header .im_pt_mb_footer_menu {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#im_pt_header a.on .im_pt_menu_arrow {
    transform: scaleY(-1);
}

#im_pt_header .im_pt_pc_right_wrap {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
}

#im_pt_header .im_pt_pc_right_wrap_left {
    /* max-width: 296px; */
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

#im_pt_header .im_pt_pc_right_wrap_left .im_pt_pc_right_wrap_left_btn:hover {
    color: #F5AC1D;
}

#im_pt_header .im_pt_pc_right_wrap_right {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

#im_pt_header .im_pt_pc_right_wrap_right li {
    display: inline-flex;
    align-items: center;
}

#im_pt_header .im_pt_pc_right_wrap_right li a {
    display: inline-flex;
    align-items: center;
}

#im_pt_header .im_pt_pc_btn {
    padding: 6px 16px;
    border-radius: 30px;
}

#im_pt_header .im_pt_pc_btn.basic {
    background: #F5AC1D;
    color: #fff !important;
}

#im_pt_header .im_pt_pc_btn.basic:hover {
    filter: brightness(1.2);
}

#im_pt_header .im_pt_pc_right_wrap .im_pt_pc_menu_sub {
    right: 0;
    left: auto !important;
    min-width: 100% !important;
}

#im_pt_header .im_pt_pc_right_wrap .im_pt_pc_menu_sub.im_pt_menu {
    min-width: 360px !important;
    max-width: 360px;
}

#im_pt_header .im_pt_pc_right_wrap .im_pt_pc_menu_sub.im_pt_nt {
    min-width: 480px !important;
    max-width: 480px;
    max-height: 480px;
    overflow-y: scroll;
}

#im_pt_header .im_pt_pc_menu_sub.im_pt_nt .im_pt_pc_menu_area_tit {
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#im_pt_header .im_pt_nt_footer_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

#im_pt_header .im_pt_nt_date {
    font-size: 13px;
}

#im_pt_header .im_pt_nt_go_btn {
    font-size: 15px;
    text-align: right;
}

#im_pt_header .im_pt_nt_go_btn input {
    color: #F5AC1D;
    font-weight: 500;
}

#im_pt_header .im_pt_nt_go_btn svg {
    width: 7px;
    height: 7px;

    fill: none;
    stroke: #F5AC1D;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

#im_pt_header .im_pt_pc_menu_sub.im_pt_lang {
    min-width: 160px !important;
    max-width: 160px !important;
}

#im_pt_header .im_pt_pc_menu_sub.im_pt_lang .im_pt_pc_menu_area_tit {
    font-size: 15px;
}

#im_pt_header .im_pt_mb_log_wrap {
    width: 100%;
    display: inline-grid;
    gap: 6px;
    padding: 0 16px;
}

#im_pt_header .im_pt_mb_btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;
    text-align: center;
}

#im_pt_header .im_pt_mb_btn:hover {
    filter: brightness(1.2);
}

#im_pt_header .im_pt_mb_btn.classic {
    background: #242424;
    color: #fff;
}

#im_pt_header .im_pt_mb_btn.basic {
    background: #F5AC1D;
    color: #fff;
}

#im_pt_header .im_pt_pc_right_ico_qr {
    min-width: 130px;
    max-width: 130px;
}

#im_pt_header .im_pt_pc_right_qr_p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.2;
    opacity: .5;
    text-align: center;
    margin-top: 12px;
}

#im_pt_header .im_pt_pc_menu_sub hr {
    margin: 12px 0;
}

#im_pt_header .im_pt_pc_menu_ico_wrap {
    max-width: 180px;
}

#im_pt_header .im_pt_comming {
    opacity: .3;
    cursor: no-drop;
}

@media screen and (max-width:1200px) {
    #im_pt_header .im_pt_mb_open_btn {
        display: block;
    }

    #im_pt_header .im_pt_pc_right_wrap {
        display: none !important;
    }

    #im_pt_header .im_pt_mb_total_menu {
        display: none;
    }
}

@media screen and (max-width:960px) {
    #im_pt_header .im_pt_mb_open_btn {
        display: block;
    }

    #im_pt_header .im_pt_pc_menu_wrap {
        display: none;
    }

    #im_pt_header .im_pt_mb_total_menu {
        display: block;
    }
}







#im_pt_footer {
    padding: 72px 0;
}

#im_pt_footer .im_pt_footer_wrap {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 36px;
}

#im_pt_footer .im_pt_footer_menu li+li {
    margin-top: 24px;
}

#im_pt_footer .im_pt_footer_menu_desc {
    font-size: 13px;
    font-weight: 300;
    opacity: .5;
    margin-top: 6px;
}

#im_pt_footer .im_pt_footer_menu p {
    transition: all .2s ease-in-out;
    position: relative;
}

#im_pt_footer .im_pt_footer_menu p:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#im_pt_footer .im_pt_footer_menu p:first-child img {
    width: 15px;
    height: 16px;
}

#im_pt_footer .im_pt_footer_menu a:hover p:first-child {
    color: #F5AC1D;
}

#im_pt_footer .im_pt_footer_menu_ico {
    display: block;
}

#im_pt_footer .im_pt_footer_menu_ico_dark {
    display: none;
}

html[color-scheme=dark] #im_pt_footer .im_pt_footer_menu_ico {
    display: none;
}

html[color-scheme=dark] #im_pt_footer .im_pt_footer_menu_ico_dark {
    display: block;
}

#im_pt_footer .im_pt_footer_menu_left img {
    width: 130px;
    transition: all .2s ease-in-out;
}

#im_pt_footer .im_pt_footer_menu_left img:hover {
    filter: brightness(1.2);
}

#im_pt_footer .im_pt_footer_menu_logo {
    display: block;
}

#im_pt_footer .im_pt_footer_menu_logo_dark {
    display: none;
}

html[color-scheme=dark] #im_pt_footer .im_pt_footer_menu_logo {
    display: none;
}

html[color-scheme=dark] #im_pt_footer .im_pt_footer_menu_logo_dark {
    display: block;
}

#im_pt_footer .im_pt_footer_menu_right {
    display: inline-flex;
    gap: 36px;
}

#im_pt_footer .im_pt_footer_copy {
    text-align: center;
    font-size: 13px;
}

#im_pt_footer .im_pt_footer_powered {
    font-size: 13px;
    font-weight: 300;
    opacity: .5;
    margin-top: 6px;
    text-transform: uppercase;
}

@media screen and (max-width:1200px) {
    #im_pt_footer {
        padding: 0;
        padding-bottom: 20px;
    }

    #im_pt_footer .im_pt_footer_wrap {
        display: none;
    }
}






#im_pt_top_btn {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    right: 50px;
    bottom: -50px;
    z-index: 9996;

    background: #f9f9f9;
    background-image: url(../../assets/img/common/arrow_up.svg);
    background-position: center;
    background-size: 21px;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0;
    transition: 0.7s ease;
    box-shadow: rgb(0 0 0 / 8%) 1px 2px 2px 1px;
}

html[color-scheme=dark] #im_pt_top_btn {
    background: #323232;
    background-image: url(../../assets/img/common/arrow_up_dark.svg);
    background-position: center;
    background-size: 21px;
    background-repeat: no-repeat;

    box-shadow: rgb(255 255 255 / 10%) 0px 0px 0px 1px;
}

#im_pt_top_btn.on {
    opacity: 1;
    cursor: pointer;
    bottom: 50px;
}

@media screen and (max-width:960px) {
    #im_pt_top_btn {
        right: 25px;
    }

    #im_pt_top_btn.on {
        bottom: 25px;
    }
}






#im_pt_cs_btn {
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    right: 50px;
    bottom: -110px;
    z-index: 9996;

    background: #F5AC1D;
    background-image: url(../../assets/img/common/message.svg);
    background-position: center;
    background-size: 24px;
    background-repeat: no-repeat;
    border-radius: 50%;
    opacity: 0;
    transition: 0.7s ease;
    box-shadow: rgb(255 255 255 / 10%) 0px 0px 0px 1px;
}

#im_pt_cs_btn.on {
    opacity: 1;
    cursor: pointer;
    bottom: 110px;
}

@media screen and (max-width:960px) {
    #im_pt_cs_btn {
        right: 25px;
    }

    #im_pt_cs_btn.on {
        bottom: 80px;
    }
}







.container {
    width: 100%;
    max-width: 1248px;
    padding: 0 24px;
    margin: auto;
}

.container_narrow {
    width: 100% !important;
    max-width: 760px;
    padding: 0 24px;
    margin: auto;
}

.im_pt_common_several_modal_area .container_narrow {
    padding: 0;
}

.basic_btn {
    background: #F5AC1D !important;
    color: #fff !important;
    border-radius: 30px;
}

.basic_btn:hover {
    filter: brightness(1.2);
}

.classic_btn {
    background: #242424 !important;
    color: #fff !important;
    border-radius: 30px;
}

.classic_btn:hover {
    filter: brightness(1.2);
}

.badge {
    display: inline-flex;
    align-items: center;
    max-height: 22px;
    font-size: 10px;
    padding: 2px 6px;
    background: #F5AC1D;
    color: #fff;
    border-radius: 30px;
    margin-left: 6px;
}

.up {
    color: #72cf8f;
}

.up::before {
    content: '▲';
    font-size: 10px;
}

.up.up_arrow {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.down {
    color: #eb7575;
}

.down::before {
    content: '▼';
    font-size: 10px;
}

.down.down_arrow {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.cm_tit {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cm_txt {
    font-weight: 500;
    margin-bottom: 24px;
}

.wb_only {
    display: block;
}

.tb_only {
    display: none;
}

.mb_only {
    display: none;
}

/* 
    / input text 잘못썻을경우 class 추가 / valid , valid_txt
    / 적용가능 페이지 명 :     
    certified_e
    certified_m
    certified_o
    login
    reset_pw_01
    reset_pw_02_e
    reset_pw_02_m
    signup    
*/
.valid {
    box-shadow: none !important;
    border: 1px solid rgb(255 0 0 / 25%) !important;
    transition: all .2s ease-in-out !important;
}

html[color-scheme=dark] .valid {
    box-shadow: none !important;
    border: 1px solid rgb(255 0 0 / 25%) !important;
    transition: all .2s ease-in-out !important;
}

.valid_txt {
    font-size: 14px;
    color: red;
}

@media screen and (max-width:1200px) {
    .wb_only {
        display: none;
    }

    .tb_only {
        display: block;
    }

    .mb_only {
        display: none;
    }
}

@media screen and (max-width:960px) {
    .cm_tit {
        font-size: 24px;
    }

    .wb_only {
        display: none;
    }

    .tb_only {
        display: none;
    }

    .mb_only {
        display: block;
    }
}


/* select box custom css */
.im_pt_common_selectbox_wrap select {
    display: none;
}

.im_pt_common_selectbox_wrap {
    position: relative;
    font-size: 14px;
    font-weight: 400;
}

.im_pt_common_custom_select {
    width: 140px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    outline: none;
}

html[color-scheme=dark] .im_pt_common_custom_select {
    background: #242424;
}

.im_pt_common_custom_select.selected .im_pt_select_arrow {
    transform: scaleY(-1);
}

.im_pt_common_origin_select_list {
    position: absolute;
    right: 10px;
}

.im_pt_common_custom_select_arrow {
    width: 9px;
    height: 9px;
    min-width: 9px;
    min-height: 9px;
    transition: all ease .5s;
}

.im_pt_common_custom_select_list {
    position: absolute;
    width: 140px;
    z-index: 15;
    background: #fff;
    text-align: left;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px;
    margin-top: 4px;
    display: none;
}

html[color-scheme=dark] .im_pt_common_custom_select_list {
    background: #242424;
    box-shadow: rgb(255 255 255 / 8%) 0px 0px 8px;
}

.im_pt_common_custom_select_option {
    padding: 12px 16px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
}

.im_pt_common_custom_select_option:hover {
    color: #fff;
    background: #F5AC1D;
    box-sizing: border-box;
}

.im_pt_common_custom_select_option:first-child {
    border-radius: 15px 15px 0 0;
}

.im_pt_common_custom_select_option:last-child {
    border-radius: 0 0 15px 15px;
}

.im_pt_common_custom_select_option_part {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.im_pt_common_custom_select_option_part p:last-child {
    opacity: .5;
}

.im_pt_select_arrow {
    fill: none;
    stroke: #121212;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

html[color-scheme=dark] .im_pt_select_arrow {
    stroke: #fff;
}

.im_pt_common_custom_select_option.comming {
    opacity: .2;
    cursor: no-drop;
}

.im_pt_common_custom_select_option.comming .im_pt_common_custom_select_option_part:after {
    content: '점검중';
    margin-left: auto;
}




/* bookmark */
.im_pt_bookmark_wrap {
    width: 100%;
    max-width: 18px;
    position: relative;
}

.im_pt_bookmark_checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.im_pt_bookmark_checkbox:checked~.im_pt_bookmark_star {
    animation: star 0.5s ease both;
}

.im_pt_bookmark_label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
}

.im_pt_bookmark_star {
    z-index: 1;
    width: 100%;
    height: 100%;
    fill: #dee0e0;
}

@keyframes star {
    0% {
        transform: scale(1);
    }

    20% {
        fill: #ffde3e;
        transform: scale(0);
    }

    30% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        fill: #ffde3e;
        transform: scale(1);
    }
}




/* chceckbox */
.im_pt_common_checkbox_area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.im_pt_common_checkbox_wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.im_pt_common_checkbox_wrap input {
    display: none;
}

.im_pt_common_checkbox_ico {
    display: inline-block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

html[color-scheme=dark] .im_pt_common_checkbox_ico {
    border: 1px solid #424242;
}

.im_pt_common_checkbox_ico::before,
.im_pt_common_checkbox_ico::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0;
    background: #F5AC1D;
    position: absolute;
    transform-origin: left top;
}

.im_pt_common_checkbox_ico::before {
    top: 9px;
    left: 4px;
    transform: rotate(-45deg);
}

.im_pt_common_checkbox_ico::after {
    top: 12px;
    left: 8px;
    transform: rotate(-150deg);
}

.im_pt_common_checkbox_wrap input:checked+.im_pt_common_checkbox_ico {
    border-color: #F5AC1D;
}

.im_pt_common_checkbox_wrap input:checked+.im_pt_common_checkbox_ico::before {
    height: 5px;
    transition: all 0.15s ease;
}

.im_pt_common_checkbox_wrap input:checked+.im_pt_common_checkbox_ico::after {
    height: 9px;
    transition: all 0.15s ease 0.15s;
}

.im_pt_common_checkbox_txt {
    font-size: 12px;
    white-space: nowrap;
}








/* range */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    display: inline-flex;
    align-items: center;

    background: #f9f9f9;
    border-radius: 5px;
    background-image: linear-gradient(#F5AC1D, #F5AC1D);
    background-size: 80% 100%;
    background-repeat: no-repeat;

}




/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #F5AC1D;
    cursor: ew-resize;
    /* box-shadow: 0 0 2px 0 #555; */
    transition: background .3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #F5AC1D;
    cursor: ew-resize;
    /* box-shadow: 0 0 2px 0 #555; */
    transition: background .3s ease-in-out;
}

input[type="range"]::-ms-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #F5AC1D;
    cursor: ew-resize;
    /* box-shadow: 0 0 2px 0 #555; */
    transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background: #F5AC1D;
}

input[type="range"]::-moz-range-thumb:hover {
    background: #F5AC1D;
}

input[type="range"]::-ms-thumb:hover {
    background: #F5AC1D;
}





/* Input Track */
input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

input[type="range"]::-ms-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}





/* page nation */
.im_pt_common_page_wrap {
    text-align: center;
    font-size: 0;
    margin-top: 24px;
}

.im_pt_common_page_nation {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.im_pt_common_page_nation .none {
    display: none;
}

.im_pt_common_page_nation input {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

html[color-scheme=dark] .im_pt_common_page_nation input {
    border: 1px solid #404040;
}

.im_pt_common_page_nation input:hover {
    background-color: #f9f9f9;
}

html[color-scheme=dark] .im_pt_common_page_nation input:hover {
    background-color: #404040;
    filter: brightness(1.2);
}

.im_pt_common_page_nation input.active {
    color: #fff;
    background: #F5AC1D;
    border: 1px solid #F5AC1D;
}

html[color-scheme=dark] .im_pt_common_page_nation input.active:hover {
    color: #fff;
    background: #F5AC1D;
    filter: brightness(1);
}

.im_pt_common_page_arrow.pprev {
    background: url('../../assets/img/dashboard/arrow_right_double.svg') no-repeat center center;
    background-size: 11px;
    transform: rotate(180deg);
}

html[color-scheme=dark] .im_pt_common_page_arrow.pprev {
    background: #404040 url('../../assets/img/dashboard/arrow_right_double.svg') no-repeat center center;
    background-size: 11px;
}

.im_pt_common_page_arrow.prev {
    background: url('../../assets/img/dashboard/arrow_right.svg') no-repeat center center;
    background-size: 9px;
    transform: rotate(180deg);
}

html[color-scheme=dark] .im_pt_common_page_arrow.prev {
    background: #404040 url('../../assets/img/dashboard/arrow_right.svg') no-repeat center center;
    background-size: 9px;
}

.im_pt_common_page_arrow.next {
    background: url('../../assets/img/dashboard/arrow_right.svg') no-repeat center center;
    background-size: 9px;
}

html[color-scheme=dark] .im_pt_common_page_arrow.next {
    background: #404040 url('../../assets/img/dashboard/arrow_right.svg') no-repeat center center;
    background-size: 9px;
}

.im_pt_common_page_arrow.nnext {
    background: url('../../assets/img/dashboard/arrow_right_double.svg') no-repeat center center;
    background-size: 11px;
}

html[color-scheme=dark] .im_pt_common_page_arrow.nnext {
    background: #404040 url('../../assets/img/dashboard/arrow_right_double.svg') no-repeat center center;
    background-size: 11px;
}



/* check box */
.im_pt_common_checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.im_pt_common_checkbox+.im_pt_common_checkbox {
    margin-top: 12px;
}

.im_pt_common_checkbox input {
    display: none;
}

.im_pt_common_checkbox_ico {
    display: inline-block;
    width: 18px;
    min-width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

html[color-scheme=dark] .im_pt_common_checkbox_ico {
    border: 1px solid #424242;
}

.im_pt_common_checkbox_ico::before,
.im_pt_common_checkbox_ico::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 0;
    background: #F5AC1D;
    position: absolute;
    transform-origin: left top;
}

.im_pt_common_checkbox_ico::before {
    top: 9px;
    left: 4px;
    transform: rotate(-45deg);
}

.im_pt_common_checkbox_ico::after {
    top: 12px;
    left: 8px;
    transform: rotate(-150deg);
}

.im_pt_common_checkbox input:checked+.im_pt_common_checkbox_ico {
    border-color: #F5AC1D;
}

.im_pt_common_checkbox input:checked+.im_pt_common_checkbox_ico::before {
    height: 5px;
    transition: all 0.15s ease;
}

.im_pt_common_checkbox input:checked+.im_pt_common_checkbox_ico::after {
    height: 9px;
    transition: all 0.15s ease 0.15s;
}

.im_pt_common_checkbox span {
    font-size: 12px;
}

.im_pt_common_op {
    opacity: .5;
}





/* copy btn */
.im_pt_common_copy_ico {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;

    background-image: url(../../assets/img/common/ico_copy.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
}




/* qr btn */
.im_pt_common_qr_ico {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;

    background-image: url(../../assets/img/common/ico_qr.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
}

/* qr btn mouse hover content  */
.im_pt_common_qr_ico_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

#im_pt_common_qr_ico_content_wrap {
    display: none;
    position: absolute;
    z-index: 9998;
    top: 24px;
    right: 0;
    width: auto;
    padding: 16px;
    border-radius: 15px;
    background: #fff;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px;
}

#im_pt_common_qr_ico_content_wrap img {
    min-width: 130px;
    max-width: 130px;
}





/* date wrap */
.im_pt_common_date_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

@media screen and (max-width:960px) {
    .im_pt_common_date_wrap {
        display: inline-grid;
    }
}





/* date btn group */
.im_pt_common_date_btn_group_wrap {
    display: inline-flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 15px;
    font-size: 12px;
}

html[color-scheme=dark] .im_pt_common_date_btn_group_wrap {
    background: #242424;
}

.im_pt_common_date_btn_group {
    position: relative;
    padding: 6px 16px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    text-transform: uppercase;
}

.im_pt_common_date_btn_group:hover {
    background: #ececec;
}

.im_pt_common_date_btn_group.im_pt_common_date_btn_group_active:hover {
    background: #F5AC1D !important;
}

html[color-scheme=dark] .im_pt_common_date_btn_group:hover {
    background: #323232;
}

.im_pt_common_date_btn_group:first-child {
    border-radius: 15px 0 0 15px;
}

.im_pt_common_date_btn_group:last-child {
    border-radius: 0 15px 15px 0;
}

.im_pt_common_date_btn_group_active {
    background: #F5AC1D !important;
    color: #fff;
}

@media screen and (max-width:960px) {
    .im_pt_common_date_btn_group {
        width: 100%;
        text-align: center;
    }
}





/* date group */
.im_pt_common_date_group_wrap {
    max-width: 272px;
    min-width: 272px;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    border-radius: 15px;
    font-size: 14px;
}

html[color-scheme=dark] .im_pt_common_date_group_wrap {
    background: #242424;
}

.im_pt_common_date_group_wrap input {
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.im_pt_common_date {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 16px;
}

.im_pt_common_date_ico_light {
    width: 17px;
    display: block;
}

html[color-scheme=dark] .im_pt_common_date_ico_light {
    display: none;
}

.im_pt_common_date_ico_dark {
    width: 17px;
    display: none;
}

html[color-scheme=dark] .im_pt_common_date_ico_dark {
    display: block;
}

@media screen and (max-width:960px) {
    .im_pt_common_date_group_wrap {
        max-width: 100%;
    }
}



/* modal */
.container_narrow.alert_width {
    max-width: 420px;
}

.im_pt_common_modal {
    display: block;
    background: rgba(0, 0, 0, .3);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    animation: fadein .5s;
    -moz-animation: fadein .5s;
    /* Firefox */
    -webkit-animation: fadein .5s;
    /* Safari and Chrome */
    -o-animation: fadein .5s;
    /* Opera */
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {

    /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {

    /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {

    /* Opera */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.im_pt_common_modal_content_wrap {
    width: 100% !important;
    display: inline-grid !important;
    background: #fff;
    /* padding: 36px; */
    border-radius: 15px;
    position: relative;
    text-align: left;
}

html[color-scheme=dark] .im_pt_common_modal_content_wrap {
    background: #242424;
}

.im_pt_common_modal_close_btn {
    position: absolute;
    top: 36px;
    right: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.im_pt_common_modal_close_btn svg {
    width: 16px;
    height: 16px;
    transition: all .2s ease-in-out;
}

html[color-scheme=dark] .im_pt_common_modal_close_btn svg {
    fill: #fff;
}

.im_pt_common_modal_close_btn svg:hover {
    fill: #F5AC1D;
}

html[color-scheme=dark] .im_pt_common_modal_close_btn svg:hover {
    fill: #F5AC1D;
}

.im_pt_common_modal_txt_wrap {
    margin-bottom: 24px;
}

.im_pt_common_modal_txt_wrap+.im_pt_common_modal_btn_wrap {
    margin-top: 0;
}

.im_pt_common_modal_tit {
    font-weight: 700;
    padding-right: 36px;
    text-align: left !important;
}

.im_pt_common_modal_tit+.im_pt_common_modal_txt {
    margin-top: 6px;
}

.im_pt_common_modal_txt+.im_pt_common_modal_txt {
    margin-top: 3px;
}

.im_pt_common_modal_btn_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px !important;
    margin-top: 24px;
}

.im_pt_common_modal_btn {
    width: 100%;
    color: #fff !important;
    padding: 12px 16px;
    border-radius: 30px;
    transition: all .2s ease-in-out;
}

.im_pt_common_modal_btn:hover {
    filter: brightness(1.2);
}

.im_pt_common_modal_btn.confirm {
    background: #F5AC1D;
}

.im_pt_common_modal_btn.cancle {
    background: #242424;
}

@media screen and (max-width:960px) {
    .im_pt_common_modal_content_wrap {
        padding: 24px 16px;
    }

    .im_pt_common_modal_close_btn {
        top: 24px;
        right: 16px;
    }

    .im_pt_common_several_modal_content_wrap {
        max-height: 420px;
        overflow-y: auto;
    }
}







/* input type:text */
.im_pt_common_input_text_line {
    width: 100% !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #f7f7f7;
    border-radius: 30px;
    padding: 0 24px;
    position: relative;
}

/* 2023.08.31 edit start */
html[color-scheme=dark] .im_pt_common_input_text_line {
    border: 1px solid #323232 !important;
}
/* 2023.08.31 edit end */

.im_pt_common_input_text_line:focus-within {
    box-shadow: rgb(245 172 29 / 20%) 0px 0px 24px;
    border: 1px solid rgb(245 172 29 / 25%) !important;
    transition: all .2s ease-in-out;
}

.im_pt_common_input_text_line+.im_pt_common_input_text_line {
    margin-top: 12px;
}

.im_pt_common_input_text_line input[type="text"] {
    width: 100%;
    padding: 12px 0;
}

.im_pt_common_input_authentication_ico {
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    background-image: url(../../assets/img/common/security_safe.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 20px !important;
    transition: all .2s ease-in-out;
}

html[color-scheme=dark] .im_pt_common_input_authentication_ico {
    background-image: url(../../assets/img/common/security_safe_dark.svg) !important;
}

.im_pt_common_input_authentication_ico:hover {
    opacity: .7;
}

.im_pt_common_authentication_sp {
    font-size: 13px;
    margin-bottom: 6px;

}

.im_pt_common_authentication_sp span:first-child {
    opacity: .5;
}

.im_pt_common_authentication_sp span:last-child {
    opacity: 1;
}

.im_pt_common_code_btn_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: right;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
}

.im_pt_common_code_btn {
    color: #F5AC1D !important;
}

.im_pt_common_code_btn:hover {
    filter: brightness(1.2) !important;
}

.im_pt_common_code_btn_split {
    font-weight: 300;
    opacity: .3;
}





/* tooltip */
.im_pt_common_tooltip {
    width: auto !important;
    position: relative;
    display: inline-block;
}

.im_pt_common_tooltip .im_pt_common_tooltiptext {
    font-size: 14px;
    visibility: hidden;
    background: #555;
    color: #fff;
    border-radius: 15px;
    padding: 6px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.im_pt_common_tooltip .im_pt_common_tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -4px;
    border-width: 4px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.im_pt_common_tooltip:hover .im_pt_common_tooltiptext {
    visibility: visible;
    opacity: 1;
}

.im_pt_common_tooltip .im_pt_common_tooltiptext.nowrap {
    white-space: nowrap;
}






/* count */
.im_pt_common_input_authentication_count {
    width: 34px;
}






/* search select box */
.im_pt_common_search_selectbox {
    width: 100%;
    display: inline-flex;
    align-items: center;
}

.im_pt_common_search_selectbox input {
    width: 100%;
}

.im_pt_common_search_selectbox datalist {
    overflow-y: scroll;
}

.im_pt_common_search_selectbox input::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.im_pt_common_search_selectbox_arrow {
    width: 9px;
    height: 9px;
    transition: all ease .5s;

    fill: none;
    stroke: #121212;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

html[color-scheme=dark] .im_pt_common_search_selectbox_arrow {
    stroke: #fff;
}

.im_pt_common_search_selectbox:focus-within .im_pt_common_search_selectbox_arrow {
    transform: scaleY(-1);
}






/* link */
.im_pt_common_link_ico {
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    background-image: url(../../assets/img/common/ico_link.svg) !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: 12px !important;
}





/* bookmark click btn */
.im_pt_bookmark_click_btn {
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.im_pt_bookmark_click_btn svg {
    fill: #ffde3e;
}

.im_pt_bookmark_click_btn_wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

.im_pt_bookmark_click_content {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 100%;
    right: 0;
    width: 100%;
    min-width: 240px;
    max-height: 240px;
    overflow-y: scroll;
    border-radius: 15px;
    box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px;
}

html[color-scheme=dark] .im_pt_bookmark_click_content {
    box-shadow: rgb(255 255 255 / 8%) 0px 0px 8px;
}

.im_pt_bookmark_click_content_item {
    padding: 10px;
    cursor: pointer;
    background: #fff;
    transition: all .2s ease-in-out;
}

html[color-scheme=dark] .im_pt_bookmark_click_content_item {
    padding: 10px;
    cursor: pointer;
    background: #242424;
}

.im_pt_bookmark_click_content_item:hover {
    background: #f9f9f9;
}

html[color-scheme=dark] .im_pt_bookmark_click_content_item:hover {
    background: #404040;
}

.im_pt_bookmark_click_content_item:first-child {
    border-radius: 15px 15px 0 0;
}

.im_pt_bookmark_click_content_item:last-child {
    border-radius: 0 0 15px 15px;
}

.im_pt_bookmark_click_content_item .item {
    width: 100%;
    display: inline-flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 12px;
}








/* several modal */
.im_pt_common_several_modal_wrap {
    display: none;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadein .5s;
    -moz-animation: fadein .5s;
    -webkit-animation: fadein .5s;
    -o-animation: fadein .5s;
}

.im_pt_common_several_modal_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 24px;

    width: 100% !important;
    max-width: 1200px;
}

.im_pt_common_several_modal {
    width: 100% !important;
    max-width: 760px;
    background: #fff;
    padding: 36px;
    border-radius: 15px;
    position: relative;
    font-size: 16px !important;
}

html[color-scheme=dark] .im_pt_common_several_modal {
    background: #242424;
}

.im_pt_common_several_modal_close_btn {
    position: absolute;
    top: 36px;
    right: 36px;
}

.im_pt_common_several_modal_close_btn svg {
    width: 16px;
    height: 16px;
    transition: all .2s ease-in-out;
    fill: #121212;
}

html[color-scheme=dark] .im_pt_common_several_modal_close_btn svg {
    fill: #fff;
}

.im_pt_common_several_modal_close_btn svg:hover {
    fill: #F5AC1D;
}

html[color-scheme=dark] .im_pt_common_several_modal_close_btn svg:hover {
    fill: #F5AC1D;
}

.im_pt_common_several_modal_btn_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.im_pt_common_several_modal_btn {
    width: 100%;
    padding: 12px 16px;
    border-radius: 30px;

    position: relative;
    top: 0;
    left: 0;

    text-align: center;
}

.im_pt_common_several_modal_btn:hover {
    filter: brightness(1.2);
}

.im_pt_common_several_modal_btn.basic {
    background: #F5AC1D !important;
    color: #fff !important;
}

.im_pt_common_several_modal_btn.classic {
    background: #242424 !important;
    color: #fff !important;
}

html[color-scheme=dark] .im_pt_common_several_modal_btn.classic {
    background: #404040 !important;
    color: #fff !important;
}

.im_pt_common_several_modal_close_btn.cofirm {
    position: relative !important;
    top: auto !important;
    right: auto !important;
}

.im_pt_common_modal_txt_wrap+.im_pt_common_several_modal_btn_wrap {
    margin-top: 0;
}

.alert_width {
    max-width: 420px;
}

@media screen and (max-width:960px) {
    .im_pt_common_several_modal {
        font-size: 15px !important;
    }

    .im_pt_common_several_modal {
        padding: 24px 16px;
    }

    .im_pt_common_several_modal_close_btn {
        top: 24px;
        right: 20px;
    }

    .im_pt_common_several_modal_btn {
        top: 0;
        left: 0;
    }
}















/* table */
.im_pt_common_table_wrap {
    margin-top: 12px;
    text-align: center;
}

.im_pt_common_table_flex {
    width: 100%;
    display: inline-flex;
    align-items: center;
}

.im_pt_common_table_tit_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    background: #f9f9f9;

    padding: 6px 12px;
    border-radius: 15px;
}

html[color-scheme=dark] .im_pt_common_table_tit_wrap {
    background: #242424;
}

.im_pt_common_table_tit {
    width: 100%;
    font-size: 14px;
    opacity: .5;
}

.im_pt_common_table_txt_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;

    padding: 12px;
    border-bottom: 1px solid #f9f9f9;
}

html[color-scheme=dark] .im_pt_common_table_txt_wrap {
    border-bottom: 1px solid #242424;
}

.im_pt_common_table_txt {
    width: 100%;
}

.im_pt_common_table_symbol_img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    overflow: hidden;
    border: 1px solid rgb(249 249 249 / 10%);
    border-radius: 50%;
}

@media screen and (max-width:1200px) {
    .im_pt_common_table_flex {
        display: inline-grid;
        gap: 3px;
    }
}





.im_pt_common_dim {
    width: 100%;
    height: 100%;
    filter: blur(5px);
}






/* input type:password */
.im_pt_common_input_text_line [type="password"] {
    width: 100%;
    padding: 12px 0;
}

.im_pt_common_input_text_line .eyes {
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.im_pt_common_input_text_line .eyes:hover {
    opacity: .7;
}

.im_pt_common_input_text_line .eyes_open {
    background-image: url(../../assets/img/common/eye.svg);
}

.im_pt_common_input_text_line .eyes_close {
    background-image: url(../../assets/img/common/eye_slash.svg);
}

html[color-scheme=dark] .im_pt_common_input_text_line .eyes_open {
    background-image: url(../../assets/img/common/eye_dark.svg);
}

html[color-scheme=dark] .im_pt_common_input_text_line .eyes_close {
    background-image: url(../../assets/img/common/eye_slash_dark.svg);
}






/* password modal */
.im_pt_common_password_modal {
    display: none;

    position: absolute;
    top: 50px;
    right: -1px;
    z-index: 100;
    background: #fff;
    padding: 24px;
    border-radius: 15px;
    box-shadow: rgb(18 18 18 / 8%) 0px 5px 12px;
}

html[color-scheme=dark] .im_pt_common_password_modal {
    background: #242424;
    /* box-shadow: rgba(255, 255, 255, 0.08) 0px 5px 12px; */
    border: 1px solid #323232;
}

.im_pt_common_input_text_line:hover .im_pt_common_password_modal {
    display: inline-grid;
    gap: 12px;
}

.im_pt_common_password_condition {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.im_pt_common_password_condition_check {
    width: 11px;
    height: 11px;

    background-image: url(../../assets/img/common/check.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px;
}

html[color-scheme=dark] .im_pt_common_password_condition_check {
    background-image: url(../../assets/img/common/check_dark.svg);
}

.im_pt_common_password_condition_check.active {
    background-image: url(../../assets/img/common/check_active.svg);
}

html[color-scheme=dark] .im_pt_common_password_condition_check.active {
    background-image: url(../../assets/img/common/check_active.svg);
}





/* output text */
.im_pt_common_output_txt_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 0 24px;
}

html[color-scheme=dark] .im_pt_common_output_txt_wrap {
    background: #404040;
}

.im_pt_common_output_txt_wrap input {
    width: 100%;
    padding: 12px 0;
}





/* 2023.02.02 add start */
/* new select */
.im_pt_common_select_wrap {
    width: 100%;
    border-radius: 30px;
    position: relative;
    font-size: 14px;
    border: 1px solid #ececec;
    background: transparent !important;
    outline: none;
}


.im_pt_common_select_wrap.active {
    box-shadow: rgb(135 51 255 / 20%) 0px 0px 24px;
    border: 1px solid rgb(135 51 255 / 25%) !important;
    transition: all .2s ease-in-out;
}

.im_pt_common_select_wrap .im_pt_common_select {
    cursor: pointer;

    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 16px;

    outline: none;
}

.im_pt_common_select_wrap.active .im_pt_common_select svg {
    transform: scaleY(-1);
}

.im_pt_common_select_wrap .im_pt_common_select_dropdown {
    position: absolute;
    z-index: 9;
    left: 0;

    width: 100%;
    max-height: 144px;
    overflow: hidden;
    overflow-y: auto;

    background: #fff;
    border-radius: 15px;
    margin-top: 4px;

    display: none;
}

.im_pt_common_select_wrap .im_pt_common_select_dropdown li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}

.im_pt_common_select_wrap .im_pt_common_select_dropdown li:hover {
    background: #F5AC1D;
    color: #fff;
}

.im_pt_common_select_wrap .im_pt_common_select_dropdown li.search:hover {
    background: none;
    color: inherit;
}

.im_pt_common_select_dropdown_searchform {
    width: 100%;
    background: #f9f9f9;
    border-radius: 30px;
    padding: 10px;
    outline: none;
    border: none;
}

.im_pt_common_select_arrow {
    width: 9px;
    height: 9px;
    transition: all ease .5s;

    fill: none;
    stroke: #121212;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

html[color-scheme=dark] .im_pt_common_select_arrow {
    stroke: #fff;
}

.im_pt_common_select_flex {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.im_pt_common_select_img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    overflow: hidden;
    border: 1px solid rgb(249 249 249 / 10%);
    border-radius: 50%;
}

.im_pt_common_select_desc_wrap {
    width: 100%;
    display: inline-grid;
    gap: 1px;
}


.im_pt_common_select_desc_wrap p:last-child {
    opacity: .5;
}

/* 2023.02.02 add end */





/* 2023.02.03 add start */
/* select coin btn modal css 부분 */
.im_pt_common_select_coin_flex {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.im_pt_common_select_coin_img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    overflow: hidden;
    border: 1px solid rgb(249 249 249 / 10%);
    border-radius: 50%;
}

.im_pt_common_select_coin_name {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.im_pt_common_select_coin_name p:last-child {
    opacity: .5;
}

.im_pt_common_select_coin_area {
    max-height: 320px;
    overflow-y: auto;
}

.im_pt_common_select_coin_grid {
    width: 100%;
    display: inline-grid;
    gap: 1px;
    text-align: right;
}

.im_pt_common_select_coin_grid.price {
    font-size: 14px;
}

.im_pt_common_select_coin_grid.price div:last-child {
    opacity: .5;
}

.im_pt_common_select_coin_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 24px;

    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    transition: all .2s ease-in-out;
}

.im_pt_common_select_coin_wrap:hover {
    background: #F5AC1D;
    color: #fff;
}

.im_pt_common_select_coin_wrap+.im_pt_common_select_coin_wrap {
    /* margin-top: 6px; */
}


.im_pt_search_input_btn_wrap {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 6px;
}

html[color-scheme=dark] .im_pt_search_input_btn_wrap {
    background: #404040;
}

.im_pt_search_input_btn_wrap .im_pt_search_input {
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
}

.im_pt_search_input_btn_wrap .im_pt_search_btn {
    width: 100%;
    max-width: 18px;
    display: inline-flex;
    align-items: center;
}

.im_pt_search_input_btn_wrap .im_pt_search_btn svg {
    fill: #121212;
}

html[color-scheme=dark] .im_pt_search_input_btn_wrap .im_pt_search_btn svg {
    fill: #fff;
}

/* 2023.02.03 add end */








/* 2023.02.14 add start */
.im_pt_common_faq_more_btn_wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.im_pt_common_faq_more_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.im_pt_common_faq_more_btn>a {
    padding: 7px 16px;
    margin-right: 12px;
    border-radius: 30px;
    background: #F5AC1D;
    color: #fff;
}

.im_pt_common_faq_more_btn>a:hover {
    filter: brightness(1.2);
}

/* .im_pt_common_faq_more_btn:hover {
    filter: brightness(1.2);
} */

.im_pt_common_toggleSwitch {
    width: 38px;
    height: 22px;
    display: block;
    position: relative;
    border-radius: 30px;
    /* box-shadow: 0 0 6px 1px rgb(0 0 0 / 15%); */
    border: 1px solid #ececec;
    cursor: pointer;
}

html[color-scheme=dark] .im_pt_common_toggleSwitch {
    border: 1px solid #404040;
}

.im_pt_common_toggleSwitch .im_pt_common_toggleButton {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #F5AC1D;
}

#toggle_faq:checked~.im_pt_common_toggleSwitch,
#toggle_info:checked~.im_pt_common_toggleSwitch {
    background: #F5AC1D;
}

#toggle_faq:checked~.im_pt_common_toggleSwitch .im_pt_common_toggleButton,
#toggle_info:checked~.im_pt_common_toggleSwitch .im_pt_common_toggleButton {
    left: calc(100% - 18px);
    background: #fff;
}

.im_pt_common_toggleSwitch,
.im_pt_common_toggleButton {
    transition: all 0.2s ease-in;
}

/* 2023.02.14 add end */







/* 2023.02.15 start */
@media screen and (max-width:1200px) {
    .im_pt_common_table_d_none {
        display: none;
    }
}

/* 2023.02.15 end */



/* 2023.02.23 start */
/* 검색, 초기화 버튼 */
.im_pt_filter_btn {
    padding: 6px 16px;
    font-size: 13px;
}

/* 2023.02.23 end */

















/* 2023.03.02 add start */
.im_pt_common_filter_pop_wrap {
    display: none;
}

@media screen and (max-width:1200px) {
    .im_pt_common_date_wrap {
        display: none !important;
    }

    .im_pt_common_filter_pop_wrap {
        display: inherit;
        text-align: right;
        margin-bottom: 12px;
    }

    /* new filter pop here start */
    .im_pt_common_filter_pop_content_wrap {
        width: 100%;
        height: 100%;
        background: #fff;
        box-shadow: rgb(0 0 0 / 8%) 0px 0px 20px;
        border-radius: 15px 15px 0 0;
        margin: 0;
        padding: 24px;
        transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);

        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 9996;

        text-align: left;
    }

    html[color-scheme=dark] .im_pt_common_filter_pop_content_wrap {
        background: #242424;
    }

    .im_pt_common_filter_pop_wrap.modal-open .im_pt_common_filter_pop_content_wrap {
        max-height: 50%;
        top: 50%;
    }

    .im_pt_common_filter_pop_top {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 12px;
    }

    .im_pt_common_filter_pop_tit {
        font-size: 16px;
        font-weight: 700;
    }

    .im_pt_common_filter_pop_close_btn svg {
        width: 16px;
        height: 16px;
        fill: #121212;
        transition: all .2s ease-in-out;
    }

    html[color-scheme=dark] .im_pt_common_filter_pop_close_btn svg {
        fill: #fff;
    }

    .im_pt_common_filter_pop_close_btn:hover svg {
        fill: #F5AC1D;
    }

    .im_pt_common_filter_wrap+.im_pt_common_filter_wrap {
        margin-top: 12px;
    }

    .im_pt_common_filter_wrap .im_pt_common_selectbox_wrap {
        font-size: 13px;
    }

    .im_pt_common_filter_wrap .im_pt_common_custom_select {
        width: 100%;
        border-radius: 30px;
    }

    html[color-scheme=dark] .im_pt_common_filter_wrap .im_pt_common_custom_select {
        background: #404040;
    }

    .im_pt_common_filter_wrap .im_pt_common_custom_select_list {
        width: 100%;
    }

    .im_pt_common_filter_wrap .im_pt_common_date_group_wrap {
        max-width: 100%;
        min-width: 100%;
        font-size: 13px;
        border-radius: 30px;
    }

    html[color-scheme=dark] .im_pt_common_filter_wrap .im_pt_common_date_group_wrap {
        background: #404040;
    }

    .im_pt_common_filter_wrap .im_pt_common_date {
        padding: 10px 16px;
    }

    .im_pt_common_filter_tit {
        font-weight: 700;
        margin-bottom: 6px;
    }

    .im_pt_common_filter_flex {
        width: 100%;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .im_pt_common_filter_flex input[type=radio] {
        display: none;
    }

    .im_pt_common_filter_flex input[type=radio]+label {
        width: 100%;
        padding: 10px 16px;
        text-align: center;
        border-radius: 30px;
        font-size: 13px;
        background: #f9f9f9;

        cursor: pointer;
    }

    html[color-scheme=dark] .im_pt_common_filter_flex input[type=radio]+label {
        background: #404040;
    }

    .im_pt_common_filter_flex input[type=radio]:checked+label {
        background: none;
        border: 1px solid #F5AC1D;
        color: #F5AC1D;
    }

    html[color-scheme=dark] .im_pt_common_filter_flex input[type=radio]:checked+label {
        background: none;
    }

    .im_pt_common_filter_btn_wrap {
        width: 100%;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
    }

    .im_pt_common_filter_btn {
        width: 100%;
        padding: 10px 16px;
    }

    .im_pt_common_filter_btn.classic_btn {
        background: none;
        border: 1px solid #404040;
    }

    .im_pt_common_filter_open_btn svg {
        max-width: 20px;
        fill: #F5AC1D;
        transition: all .2s ease-in-out;
    }

    .im_pt_common_filter_open_btn:hover svg {
        filter: brightness(1.2);
    }

    /* new filter pop here end */
}

/* 2023.03.02 add end */






/* 2023.03.06 add start */
.im_pt_common_input_text_line_wrap.otp {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.im_pt_common_input_text_line_wrap.otp .im_pt_common_input_text_line {
    width: 100% !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ececec;
    border-radius: 5px;
    padding: 0 12px;
    position: relative;

    margin-top: 0;
    max-width: 42px;
}

.im_pt_common_input_text_line_wrap.otp .im_pt_common_input_text_line input[type="text"] {
    text-align: center;
}

.im_pt_common_input_text_line_desc {
    font-size: 13px;
    opacity: .5;
}

.im_pt_common_input_text_line_desc+.im_pt_common_input_text_line_wrap {
    margin-top: 6px;
}

/* 2023.03.06 add end */







/* 모달 백그라운드 스크롤 방지 // 2023.06.08 edit start */
body.oy_hidden_on,
html.oy_hidden_on {
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    overscroll-behavior: none;

    /* overflow-y: hidden; */
}

body.oy_hidden_off,
html.oy_hidden_off {
    overflow: auto;
}

/* 모달 백그라운드 스크롤 방지 // 2023.06.08 edit end */