/*outline check*/
/*
* { outline: 1px solid magenta; }
*/

html, body {
    height: 100%;
}

body {
    padding-top: 120px;
}

    body > footer {
        position: sticky;
        top: 120vh;
    }

a {
    text-decoration: none;
    color: #000000;
}

rt {
    position: relative;
    top: -.3em;
    transform: translateY(-.3em);
}

.form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}

.ko-hidden {
    display: none;
}

.notel {
    pointer-events: none;
}


.ui-widget-overlay {
    background: #444444;
    opacity: 0.8;
    filter: Alpha(Opacity=80);
}

.ui-front {
    z-index: 2000;
}

.modal-content {
    background: #444444;
    opacity: 0.8;
    filter: Alpha(Opacity=80);
}

.box {
    position: relative;
    z-index: 1;
    background: #ffffff;
}

    .box .form-control:focus {
        background-color: transparent;
    }

    .box input {
        background: transparent;
        box-sizing: border-box;
    }

.placeholder {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: #808080;
    padding: 20px 5px;
}

    .placeholder.hidden {
        display: none;
    }

    .placeholder .ph1 {
        font-size: 23px;
    }

    .placeholder .ph2 {
        font-size: 13px;
    }

.placeholder2 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: #808080;
    padding: 20px 5px 20px 153px;
}

    .placeholder2.hidden {
        display: none;
    }

    .placeholder2 .ph1 {
        font-size: 22px;
    }

    .placeholder2 .ph2 {
        font-size: 13px;
    }

    .placeholder2 .ph3 {
        font-size: 23px;
    }

.placeholder3 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: #808080;
    padding: 20px 5px 20px 153px;
}

    .placeholder3.hidden {
        display: none;
    }

    .placeholder3 .ph1 {
        font-size: 22px;
    }

    .placeholder3 .ph2 {
        font-size: 13px;
    }

    .placeholder3 .ph3 {
        font-size: 23px;
    }


.video {
    width: 70%;
    height: auto;
}

.btn-primary {
    color: #fff;
    background-color: #004D98;
    border-color: #004D98;
}

    .btn-primary:focus, .btn-primary:hover {
        background-color: #195ea2;
    }

.btn-link {
    color: #004D98;
}

    .btn-link:focus, .btn-link:hover {
        color: #195ea2;
    }
/* bootstrap-select */
.bootstrap-select button {
    background-color: #fff;
    border: 1px solid #ced4da;
}

.bootstrap-select .dropdown-toggle:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.customSelect {
    border: 1px solid #ced4da !important;
}

    .customSelect:hover {
        background-color: #ffffff !important;
    }

    .customSelect:focus { /*  outline:none !important; */
    }

.filter-option {
    font-size: 18px;
}
/* */
.change-color {
    background-color: #969CA2;
    color: #fff;
    transition: 0.3s;
}

.w-18 {
    width: 18% !important;
}

.h-30 {
    height: 30% !important;
}

.w-60 {
    width: 60% !important;
}

.w-80 {
    width: 80% !important;
}

.w-100 {
    width: 100% !important;
}

.line-even:nth-child(even) {
}

    .line-even:nth-child(even) .line-01 {
        border-left: 4px solid #dee2e6 !important;
    }

.b-radius-10 {
    border-radius: 10px;
}

.better {
    box-shadow: 0 2.5rem 2rem -2rem hsl(200 50% 20% / 40%);
}

.better2 {
    box-shadow: 0 1.5rem 2rem -2rem hsl(200 50% 20% / 40%);
}

.cmn-sender-10 {
    padding: 14px 8px 3px 8px;
    border: 3px solid;
    border-radius: 8px;
}

.i-010 {
    font-size: 10px;
}

.marker-normal-g {
    background: linear-gradient(transparent 75%, #B0E8D2 75%);
}

.marker-bold-g {
    background: linear-gradient(transparent 50%, #B0E8D2 50%);
}

.marker-all-g {
    background: linear-gradient(transparent 0%, #B0E8D2 0%);
}

.marker-normal-y {
    background: linear-gradient(transparent 75%, #ffff7f 75%);
}

.marker-bold-y {
    background: linear-gradient(transparent 50%, #ffff7f 50%);
}

.marker-all-y {
    background: linear-gradient(transparent 0%, #ffff7f 0%);
}

.marker-normal-r {
    background: linear-gradient(transparent 75%, #ff7f7f 75%);
}

.marker-bold-r {
    background: linear-gradient(transparent 50%, #ff7f7f 50%);
}

.marker-all-r {
    background: linear-gradient(transparent 0%, #ff7f7f 0%);
}

.marker-normal-b {
    background: linear-gradient(transparent 75%, #afdfe4 75%);
}

.marker-bold-b {
    background: linear-gradient(transparent 50%, #E2EDFF 50%);
}

.marker-all-b {
    background: linear-gradient(transparent 0%, #afdfe4 0%);
}

.bg-g {
    background: rgba(176,232,210,0.3);
}

.bg-y {
    background: rgba(255,255,127,0.3);
}

.bg-r {
    background: rgba(255,127,127,0.3);
}

.bg-b {
    background: rgba(226,237,255,0.3);
}

.blink {
    -webkit-animation: blink 1s ease infinite;
    animation: blink 1s ease infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.sbc_field {
    ime-mode: disabled;
}

.w-135 {
    width: 135px;
}

.w-75 {
    width: 75px;
}

.cusfixed {
    padding-top: 100px;
}

.holder::placeholder {
    font-size: 16px;
}

.ps_fldr::placeholder {
    font-size: 22px;
}

.ps_fldr_p::placeholder {
    font-size: 18px;
}
/*
    .shortcut-icon { margin: 10px; height: 60px; background: url(../../Images/Common/shortcut.png) center top no-repeat; display: block; background-size: contain; text-indent: -10000px; cursor: pointer; }
*/
.shortcut-icon {
    margin: 10px;
    height: 60px;
    background: url(../../Images/Common/test/shortcut-1.png) center top no-repeat;
    display: block;
    background-size: contain;
    text-indent: -10000px;
    cursor: pointer;
}

.mo-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}


*:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav-tabs .nav-link {
    color: #495057;
}

    .nav-tabs .nav-link.active {
        color: #004D98;
    }

.navbar-nav .nav-item .nav-link:hover {
    color: #004D98;
}

.cmn-sp-header-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: env(safe-area-inset-top);
    background-color: #e0e0e0;
}

.nav-tabs .nav-link2 {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

    .nav-tabs .nav-link2.active {
        color: #004D98;
        background-color: #deecfa;
        border-color: #dee2e6 #dee2e6 #fff;
    }

.q-dialog {
    text-align: center;
}

    .q-dialog .ui-dialog-title {
        width: 100%;
        font-size: 20px;
    }

.cmn-clr-001 {
    color: #000000;
}

.cmn-clr-010 {
    color: #cc0000;
}

.cmn-clr-011 {
    color: #dc3545;
}

.cmn-clr-012 {
    color: #F2E700;
}

.cmn-clr-013 {
    color: #dc3545;
}
/*.cmn-clr-014 { color: #0d6efd; }*/
.cmn-clr-014 {
    color: #004D98;
}

.cmn-clr-015 {
    color: red;
}

.cmn-clr-016 {
    color: #212529;
}

.cmn-clr-017 {
    color: #ffffff;
}

.cmn-bgc-001 {
    background-color: #af1d7b;
}

.cmn-bgc-002 {
    background-color: #fafafa;
}

.cmn-bgc-010 {
    background-color: #f4f4f4;
}

.cmn-bgc-011 {
    background-color: #ebebeb;
}

.cmn-bgc-012 {
    background-color: #e7e7e7;
}

.cmn-bgc-013 {
    background-color: #fcfcfc;
}

.cmn-bgc-014 {
    background-color: #F1F5FF;
}

.cmn-bgc-015 {
    background-color: #efefef;
}

.cmn-bgc-016 {
    background-color: #F2E700;
}

.cmn-bgc-017 {
    background-color: #004D98;
}

.cmn-bgc-018 {
    background-color: #DE0000;
}

.cmn-bgc-019 {
    background-color: #ffffff;
}

.cmn-bgc-020 {
    background-color: #F8F9FA;
}

.cmn-bgc-021 {
    background-color: #f3f3f3;
}

.cmn-bgc-022 {
    background-color: #efefef;
}

    .cmn-bgc-022:hover {
        background-color: #e3e3e3;
    }

.cmn-bgc-023 {
    background-color: #e9e9e9;
}

.cmn-bgc-024 {
    background-color: #008bd6;
}

.jis-bgc-001 {
    background-color: #FF4B00;
}

.jis-bgc-002 {
    background-color: #F6AA00;
}

.jis-bgc-003 {
    background-color: #F2E700;
}

.jis-bgc-004 {
    background-color: #00B06B;
}

.jis-bgc-005 {
    background-color: #1971FF;
}

.jis-bgc-006 {
    background-color: #990099;
}

.cmn-cursor-pointer {
    cursor: pointer;
}



.underline {
    color: #cc0000;
    font-weight: bold;
    text-decoration-color: #cc0000;
    text-decoration-line: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
    text-decoration-style: solid;
    letter-spacing: 0.4px;
}

.cmn-box-010 {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 14px;
    z-index: 10;
}

.cmn-box-011 {
    background: #f4f4f4;
    padding: 6px;
    text-align: center;
}

.cmn-box-sdw-001 {
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.45);
}

.cmn-box-012 {
    background-color: #e9e9e9;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #ddd;
    color: #333;
    font-weight: bold;
    padding: .4em 1em;
}

.cmn-fnt-010 {
    font-size: 26px;
}

.cmn-fnt-011 {
    font-size: 38px;
    font-weight: bold;
}

.cmn-fnt-012 {
    font-size: 12px;
}

.cmn-fnt-013 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.cmn-fnt-014 {
    font-size: 14px;
}

.cmn-fnt-015 {
    font-size: 26px;
}

.cmn-fnt-016 {
    font-size: 11px;
}

.cmn-fnt-017 {
    font-size: 12px;
}

.cmn-fnt-018 {
    font-size: 13px;
}

.cmn-fnt-019 {
    font-size: 14px;
}

.cmn-fnt-020 {
    font-size: 10px;
}

.cmn-fnt-021 {
    font-size: 20px;
}

.cmn-fnt-022 {
    font-size: 8px;
}

.cmn-fnt-023 {
    font-size: 28px;
}

.cmn-fnt-024 {
    font-size: 16px;
}

.cmn-fnt-025 {
    font-size: 17px;
}

.cmn-fnt-026 {
    font-size: 24px;
}

.res-fnt-001 {
    font-size: 1.25rem;
}

.res-fnt-002 {
    font-size: 1rem;
}

.res-fnt-003 {
    font-size: 1rem;
}

.res-fnt-004 {
    font-size: 1rem;
}

.cmn-bor-010 {
    border: 2px solid #dee2e6;
}

.cmn-bor-011 {
    border: 3px solid #4070FF;
}

.cmn-bor-012 {
    border: 1px solid #c5c5c5;
}

.cmn-btn-001 {
    background-color: #fe0002;
    color: #ffffff;
    margin: 20px auto 0 auto;
    font-weight: bold;
}

.cmn-btn-002 {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    margin: 20px auto 0 auto;
    font-weight: bold;
}

.cmn-btn-003 {
    background: #000000;
    color: #ffffff;
    margin: 20px auto 20px auto;
    font-weight: bold;
}

    .cmn-btn-003:hover {
        color: #ffffff;
    }

    .cmn-btn-003 a {
        color: #ffffff;
    }

        .cmn-btn-003 a:hover {
            color: #ffffff;
        }

.cmn-btn-004 {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    margin: 20px auto 0 auto;
    font-weight: bold;
}

    .cmn-btn-004:hover {
        color: #000000;
    }

    .cmn-btn-004 a {
        color: #000000;
    }

        .cmn-btn-004 a:hover {
            color: #000000;
        }

.cmn-btn-005 {
    background-color: #f8f9fa;
    color: #000;
    border: 1px solid #ccc;
    margin: 0 auto 0 auto;
    font-weight: bold;
}

.cmn-btn-006 {
    background-color: #4070FF;
    color: #fff;
}

    .cmn-btn-006:hover {
        color: #fff;
    }

.cmn-btn-007 {
    background: #4070FF;
    border: 2px solid #4070FF;
    color: #fff;
}

    .cmn-btn-007:focus, .cmn-btn-007:hover {
        background-color: #0b62e5;
        color: #fff;
    }

.cmn-mt-40 {
    margin-top: 40px;
}

.cmn-num {
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.cmn-width-300 {
    width: 100%;
    max-width: 300px;
}

.cmn-mt-120 {
    margin-top: 120px;
}

.cmn-mr-10 {
    margin-right: 10px;
}

.cmn-ml-20 {
    margin-left: 20px;
}

.cmn-udr-line-001 {
    text-decoration: underline;
    text-decoration-color: #cc0000;
    text-decoration-thickness: 2.4px;
    text-underline-offset: 6px;
}


.cmn-va-b {
    vertical-align: bottom;
}

.cmn-card-footer {
    background: #fff;
    border-top: 0px;
}

.sticky-top {
    top: 112px;
}

.cmn-pic {
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    /* cursor: pointer; */
    padding: 0.3rem 0.3rem;
    border-radius: 0.25rem;
    border: 1px solid #004D98;
}

.cmn-warning-sub {
    background-color: #fff8e0;
    /*background-color: #fff3cd;
        color: #664d03;
    */
    color: #333;
    /*border: 1px solid #ffe69c;*/
}

.cmn-warning {
    background-color: #ffe2e2;
    color: #cc0000;
}

.cmn-pb-60 {
    padding-bottom: 60px;
}

.cmn-comment {
    text-align: center;
    margin: 40px auto 10px;
    padding: 14px 0;
    width: 100%;
    background-color: #f8f9fa; /*background-color: #f6f6e7;*/
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:active:focus,
.btn-dark:active:hover,
.btn-dark:active.focus,
.btn-dark.active,
.btn-dark.active:focus,
.btn-dark.active:hover,
.btn-dark.active.focus,
.open > .dropdown-toggle.btn-dark,
.open > .dropdown-toggle.btn-dark:hover,
.open > .dropdown-toggle.btn-dark:focus,
.open > .dropdown-toggle.btn-dark.focus,
.btn-dark.disabled:hover,
.btn-dark[disabled]:hover,
fieldset[disabled] .btn-dark:hover,
.btn-dark.disabled:focus,
.btn-dark[disabled]:focus,
fieldset[disabled] .btn-dark:focus,
.btn-dark.disabled.focus,
.btn-dark[disabled].focus,
fieldset[disabled] .btn-dark.focus {
    background: #555;
    color: #fff;
}

.cmn-va-001 {
    vertical-align: super;
}

.cmn-lh-001 {
    line-height: 1.2;
}

.cmn-bg-img1 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #F1F5FF;
}

.cmn-bg-img2 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #F8F9FA;
    height: 280px;
}

.cmn-bg-img3 {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #F8F9FA;
    border: 1px solid #F4F4F5;
    height: 280px;
}

.inlineframe {
    background-color: #FFFFFF;
    height: 200px;
    overflow: auto;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #e7e7e7;
}

.carousel-indicators [data-bs-target] {
    height: 12px;
    background-color: #4070FF;
}

.carousel-inner {
    overflow: initial;
    padding-bottom: 16px;
}

.cmn-home-customeselect {
}

    .cmn-home-customeselect button {
        padding: 8px;
        line-height: 2;
    }

.cmn-blk-a a, .cmn-blk-a:visited, .cmn-blk-a:hover {
    color: #212529;
}

/*.infolink a, .infolink a:visited, .infolink a:hover { color: #0d6efd; text-decoration: underline !important; }*/
.infolink a, .infolink a:visited, .infolink a:hover {
    color: #004D98;
    text-decoration: underline !important;
}

/* inquiry */
.sw > .tab-content {
    overflow: visible;
}

.sw .toolbar {
    text-align: center;
}

.radio-inline__input {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}

.radio-inline__label {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 5px;
    border-radius: 3px;
    transition: all .2s;
    background: #ffffff;
    border: 1px solid #333333;
}

.radio-inline__input:checked + .radio-inline__label {
    background: #198754;
    color: #fff;
}

.radio-inline__input:focus + .radio-inline__label {
    outline-color: #4D90FE;
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 5px;
}

.form-ctl {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-sct {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.inlineframe {
    background-color: #FFFFFF;
    height: 300px;
    overflow: auto;
    overflow-y: scroll;
    overflow-x: hidden;
}

.parts-button {
    width: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    font-size: 0;
    line-height: 0;
    overflow: visible;
    cursor: pointer;
}

.disp-none {
    display: none;
}

/* login */
.cmn-login {
    margin-top: 2%;
}

.cmn-login-logo {
    width: 340px;
}

.cmn-login-browser {
    position: relative;
    display: block;
    padding: 0.5rem 0.25rem;
    color: #212529;
    text-decoration: none;
}

/* login user confirm */
.cmn-login-user-confirm-w {
    background: #F2E700;
    border: 3px solid #000;
}

/* cart */
.cmn-cart-r-cnt-01 {
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
}

/* fap */
.cmn-faq {
    font-size: 20px;
}

    .cmn-faq dt {
        margin-left: 30px;
        text-indent: -25px;
    }

        .cmn-faq dt:before {
            content: "Q.";
            font-weight: bold;
            margin-right: 7px;
        }

    .cmn-faq dd {
        border-bottom: 1px solid #e7e7e7;
        margin: 2px 0 18px 0px;
        padding: 2px 0 4px 30px;
        text-indent: -25px;
    }

        .cmn-faq dd:before {
            content: "A.";
            color: #cc0000;
            font-weight: bold;
            margin-right: 7px;
        }

.cmn-txt-ind {
    text-indent: 0;
}

.cmn-q {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #000000;
    color: #fff;
    text-align: center;
    line-height: 26px;
    margin-bottom: 10px;
    margin-right: 6px;
    font-size: 24px;
    font-weight: bold;
}

.cmn-a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 24px;
    margin-bottom: 10px;
    margin-right: 6px;
    font-size: 24px;
    font-weight: bold;
}

/* law */
.cmn-law {
}

    .cmn-law table th {
        background-color: #f4f4f4;
    }

/* terms */
.cmn-terms {
}

    .cmn-terms ol {
        margin-left: 3.5em;
    }

        .cmn-terms ol li {
            list-style-type: none;
            counter-increment: cnt;
            position: relative;
        }

            .cmn-terms ol li:before {
                content: "(" counter(cnt) ")";
                display: inline-block;
                margin-left: -3.5em;
                width: 3em;
                text-align: right;
                position: absolute;
                top: 0;
                left: 0;
            }

/* header navi pc */
.cmn-header-nav {
    border-bottom: 1px solid #e7e7e7;
}

.cmn-header-menu i {
    font-size: 28px;
}

.cmn-header-menu li {
    text-align: center;
    font-size: 12px;
}

    .cmn-header-menu li a {
        padding: 0.5rem 0;
    }

.cmn-header-search {
    width: 48%;
    margin: 0 auto;
}

/* footer PC */
.cmn-footer-li {
    border-left: 1px solid #e7e7e7;
    padding-left: 10px;
}

.cmn-footer-hr {
    background-color: #e7e7e7;
}

.cmn-footer-col {
    border-left: 1px solid #e7e7e7;
}

.cmn-footer-qr {
    font-size: 14px;
    font-weight: bold;
    margin-left: 28px;
}

    .cmn-footer-qr img {
        width: 60px;
    }

.cmn-footer-up {
}

    .cmn-footer-up span {
        font-size: 12px;
        font-weight: bold;
        vertical-align: bottom;
    }

    .cmn-footer-up img {
        width: 110px;
    }

.cmn-footer-copy {
    font-size: 12px;
    font-weight: bold;
}

/* home search */
.cmn-home-search {
}

    .cmn-home-search .search-btn {
        background: #004D98;
        border: 2px solid #004D98;
        color: #fff;
    }

        .cmn-home-search .search-btn:focus, .cmn-home-search .search-btn:hover {
            background-color: #195ea2;
        }

    .cmn-home-search .search-input {
        border: 2px solid #004D98;
        line-height: 2;
        font-size: 26px;
    }

.inquiry-btn {
    background: #004D98;
    border: 2px solid #004D98;
    color: #fff;
}

    .inquiry-btn:focus, .inquiry-btn:hover {
        background-color: #195ea2;
        color: #fff;
    }

/*
.cmn-home-search {}
.cmn-home-search .search-btn { background: #4070FF; border: 2px solid #4070FF; color: #fff; }
.cmn-home-search .search-btn:focus,.cmn-home-search .search-btn:hover { background-color: #0b62e5; }
.cmn-home-search .search-input { border: 2px solid #4070FF; line-height: 2; font-size: 26px; }
.inquiry-btn { background: #4070FF; border: 2px solid #4070FF; color: #fff; }
.inquiry-btn:focus, .inquiry-btn:hover { background-color: #0b62e5; color: #fff; }
*/
/* home info PC */
.cmn-home-info {
}

    .cmn-home-info .title {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e7e7e7;
    }

        .cmn-home-info .title p {
            width: 70%;
            margin: 0;
            padding: 0;
            font-size: 26px;
            font-weight: bold;
        }

/* home history PC */
.cmn-home-history {
}

    .cmn-home-history .title {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e7e7e7;
    }

        .cmn-home-history .title p {
            width: 70%;
            margin: 0;
            padding: 0;
            font-size: 26px;
            font-weight: bold;
        }

/* home order history PC */
.cmn-home-order-history {
}

    .cmn-home-order-history .title {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e7e7e7;
    }

        .cmn-home-order-history .title p {
            width: 80%;
            margin: 0;
            padding: 0;
            font-size: 26px;
            font-weight: bold;
        }

/* home history PC */
.cmn-home-inquiry-history {
}

    .cmn-home-inquiry-history .title {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e7e7e7;
    }

        .cmn-home-inquiry-history .title p {
            width: 80%;
            margin: 0;
            padding: 0;
            font-size: 26px;
            font-weight: bold;
        }

/* search stock Item */
.cmn-search-stock {
}

.cmn-search-no-data-p {
    margin: 0 10px 10px 10px;
    padding: 5px;
    border-radius: 8px;
    background-color: pink;
    text-align: center;
}

.cmn-search-no-data-b {
    margin: 0 10px 10px 10px;
    padding: 5px;
    border-radius: 8px;
    background-color: lightskyblue;
    text-align: center;
}

.cmn-search-no-data-g {
    margin: 0 10px 10px 10px;
    padding: 5px;
    border-radius: 8px;
    background-color: greenYellow;
    text-align: center;
}

.cmn-search-no-data-o {
    margin: 0 10px 10px 10px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f3ecee;
    border: solid 1px rgba(122,184,148,0.1);
    text-align: center;
}

.cmn-search-no-data-t {
    margin: 0 10px 10px 10px;
    padding: 5px;
    border-radius: 8px;
    border: 4px solid #004D98;
}

.cmn-search-select-sd {
}

.cmn-search-select-sd-001 {
    margin-top: 6px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 6px;
}

.cmn-search-select-sd-002 {
    text-align: center;
    padding: 4px;
    background: #fdd;
    font-weight: bold;
}

/*------- SP -------*/
/* header SP */
.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0);
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: none;
}

.cmn-sp-header-nav {
    border-bottom: 1px solid #e7e7e7;
}

.cmn-sp-header-search {
    width: 80%;
    margin: 0px auto 20px auto;
}

.csm-sp-header-cart {
    font-size: 20px;
    margin-right: 6px;
}

.smn-sp-header-sub-nav {
    font-size: 10px;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    margin: 0 auto;
}

    .smn-sp-header-sub-nav .col {
        padding: 0;
    }

    .smn-sp-header-sub-nav i {
        font-size: 24px;
        margin-right: 4px;
        vertical-align: sub;
    }

.cmn-sp-header-logo {
    vertical-align: -webkit-baseline-middle;
}

/* footer SP */
.cmn-sp-footer-search {
    width: 80%;
    margin: 0px auto 20px auto;
}

.cmn-sp-footer {
    text-align: center;
    background: #f4f4f4;
    margin-top: 10px;
    padding-top: 30px;
    padding-bottom: 80px;
}

.cmn-sp-footer-li {
    border-left: 1px solid #e7e7e7;
    padding-left: 10px;
}

.cmn-sp-footer-menu-bar {
    text-align: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: 999;
}

    .cmn-sp-footer-menu-bar i {
        font-size: 28px;
    }

    .cmn-sp-footer-menu-bar .col {
        font-size: 10px;
        padding: 0;
    }

.cmn-sp-footer-col {
    border-left: 1px solid #e7e7e7;
}

.cmn-sp-footer-up {
}

    .cmn-sp-footer-up span {
        font-size: 12px;
        font-weight: bold;
        vertical-align: bottom;
    }

    .cmn-sp-footer-up img {
        width: 100px;
    }

@media screen and (max-width: 1024px) {
    body {
        padding-top: 120px;
    }

    .sticky-top {
        top: 80px;
    }

    .cusfixed {
        padding-top: 0.5em;
    }

    .sw-theme-arrows > .nav .nav-link {
        overflow: unset;
        text-align: left !important;
        font-size: 8px;
        padding-right: 0px;
    }

    .sw > .nav .nav-link > .num {
        font-size: 1.2em;
        font-weight: 400;
    }

    .ps_fldr_p::placeholder {
        font-size: 14px;
    }

    .placeholder {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 10px 5px;
    }

        .placeholder.hidden {
            display: none;
        }

        .placeholder .ph1 {
            font-size: 20px;
        }

        .placeholder .ph2 {
            font-size: 14px;
            padding-left: 16px;
        }
}

@media screen and (max-width: 991px) {
    body {
        padding-top: 80px;
    }

    .sticky-top {
        top: 80px;
    }

    .cusfixed {
        padding-top: 0.5em;
    }

    .sw-theme-arrows > .nav .nav-link {
        overflow: unset;
        text-align: left !important;
        font-size: 8px;
        padding-right: 0px;
    }

    .sw > .nav .nav-link > .num {
        font-size: 1.2em;
        font-weight: 400;
    }

    .ps_fldr_p::placeholder {
        font-size: 14px;
    }

    .placeholder {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 10px 5px;
    }

    .placeholder.hidden {
        display: none;
    }

    .placeholder .ph1 {
        font-size: 20px;
    }

    .placeholder .ph2 {
        font-size: 14px;
        padding-left: 16px;
    }
}



@media screen and (max-width: 660px) {

    body {
        padding-top: 80px;
    }

    .sticky-top {
        top: 80px;
    }

    .cusfixed {
        padding-top: 0.5em;
    }

    .sw-theme-arrows > .nav .nav-link {
        font-size: 14px;
    }

    .sw > .nav .nav-link > .num {
        font-size: 1.5em;
        font-weight: 400;
    }

    .ps_fldr_p::placeholder {
        font-size: 14px;
    }

    .placeholder {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 10px 5px;
    }

        .placeholder.hidden {
            display: none;
        }

        .placeholder .ph1 {
            font-size: 20px;
        }

        .placeholder .ph2 {
            font-size: 14px;
            padding-left: 16px;
        }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    .sticky-top {
        top: 80px;
    }

    .cusfixed {
        padding-top: 0.5em;
    }

    .cmn-fnt-015 {
        font-size: unset;
    }

    input::placeholder {
        font-size: 14px;
    }

    .res-fnt-001 {
        font-size: 13px;
    }

    .res-fnt-002 {
        font-size: 12px;
    }

    .res-fnt-003 {
        font-size: 11px;
    }

    .res-fnt-004 {
        font-size: 12px;
    }

    .cmn-pic-detail {
        font-size: 12px;
        padding: 0;
    }

        .cmn-pic-detail li {
            padding: 3px;
        }

        .cmn-pic-detail h4 {
            font-size: 16px;
        }

    .q-dialog {
        text-align: center;
    }

        .q-dialog .ui-dialog-title {
            width: 100%;
            font-size: 8px;
        }

    .ps_fldr_p::placeholder {
        font-size: 13px;
    }

    .placeholder {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 10px 5px;
    }

        .placeholder.hidden {
            display: none;
        }

        .placeholder .ph1 {
            font-size: 20px;
        }

        .placeholder .ph2 {
            font-size: 14px;
            padding-left: 16px;
        }

    .placeholder2 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 10px 5px 20px 140px;
    }

    .placeholder3 {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        color: #808080;
        padding: 20px 5px 20px 140px;
    }
}
