@import "left.css";
@import "main.css";
@import "main_platform.css";
@import "component.css";
@import "media.css";
@import "media02.css"; /*hiw작업 media.css와 병합할것*/
@import "dcp/equipment.css";

* {
    font-family: 'Pretendard GOV' !important;
    font-weight: 500;
    font-size: 15px;
}

strong{
    font-weight: 700;
}

a:focus{
    outline:2px solid #badaff;
}

a.addBtn {
    display: inline-block;
    min-width: 110px;
    padding: 10px 0 8px;
    background: #0455B2;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
}

html {
    min-height: 100%;
    background: #f0f3f7 url('../images/bg.png') no-repeat 98% 97%;
    background-size: 320px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    display: flex;
    min-height: 100vh;
}

body.modal-open {
    overflow: hidden;
}

button {
    cursor: pointer;
}

/*label {*/
/*    display: block;*/
/*    color: #667080;*/
/*    margin-bottom: .3rem;*/
/*}*/

::-webkit-scrollbar {
    width: 10px;  /* 스크롤바의 너비 */
    height: 10px;
}

::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #667080; /* 스크롤바의 색상 */
    border-radius: 50px;
}

::-webkit-scrollbar-track {
    background: #C2C6CC;  /*스크롤바 뒷 배경 색상*/
    border-radius: 100px;
}

input[type=file]::file-selector-button {
    min-width: 120px;
    padding: 10px 0 8px;
    margin-right: 10px;
    background: #00BF58;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'GmarketSans';
    text-align: center;
    color: #fff;
    cursor: pointer;
}
input[type=file]::file-selector-button:hover{
    background: #00b253;
}

/*radio Default style*/
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox],
    input[type=radio] {
        --active: #275EFE;
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #BBC1E1;
        --border-hover: #275EFE;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    input[type=checkbox]:after,
    input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    input[type=checkbox]:checked,
    input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    input[type=checkbox]:disabled,
    input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    input[type=checkbox]:disabled:checked,
    input[type=radio]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    input[type=checkbox]:disabled + label,
    input[type=radio]:disabled + label {
        cursor: not-allowed;
    }
    input[type=checkbox]:hover:not(:checked):not(:disabled),
    input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    input[type=checkbox]:focus,
    input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    input[type=checkbox]:not(.switch),
    input[type=radio]:not(.switch) {
        width: 21px;
        min-width: 21px;
    }
    input[type=checkbox]:not(.switch):after,
    input[type=radio]:not(.switch):after {
        opacity: var(--o, 0);
    }
    input[type=checkbox]:not(.switch):checked,
    input[type=radio]:not(.switch):checked {
        --o: 1;
    }
    input[type=checkbox] + label,
    input[type=radio] + label {
        font-size: 15px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
        padding-top: 3px;
    }

    input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }
    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 6px;
        top: 2px;
        transform: rotate(var(--r, 20deg));
    }
    input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
    input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }
    input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }
    input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }
    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }

    input[type=radio] {
        border-radius: 50%;
    }
    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }
    input[type=radio]:checked {
        --s: .5;
    }

}

.glyphicon {
    /* 20180329, remove for picker icon position position: relative;*/
    display: inline-block;
    font-family: 'Glyphicons Halflings' !important;
    font-style: normal;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media  all and (min-width: 1020px){
    html {
        background: #f0f3f7 no-repeat 98% 95%;
        background-size: 480px;
    }
}
