﻿html, body {
    width: 100%;
    height: 100%;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic';
    color: #4b4b4b;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-size: 100%;
}

    body form {
        height: 100%;
    }

div, header, ul, li, p, span, table, input, select, textarea, h1, h2 {
    display: block;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

    input[type="radio"], input[type="checkbox"] {
        display: none;
    }

.login-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-wrap .login-box {
        width: 435px;
        padding: 55px 70px;
        text-align: center;
        background-color: #48c7f0;
        box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
    }

        .login-wrap .login-box h1 {
            color: #fff;
            font-size: 1.875em;
        }

            .login-wrap .login-box h1 > span {
                width: 50px;
                height: 52px;
                background-image: url(../images/images-userlogin.png);
                background-repeat: no-repeat;
                background-position: 0 0;
                margin: 0 auto;
            }

        .login-wrap .login-box .btn-login-wrap {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .login-wrap .login-box .btn-login {
            width: 95px;
            height: 95px;
            border-radius: 50%;
            box-shadow: 3px 2px 10px rgba(0,0,0,0.3);
            background-color: #fff;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

            .login-wrap .login-box .btn-login > span {
                width: 50px;
                height: 40px;
                background-image: url(../images/images-userlogin.png);
                background-repeat: no-repeat;
                background-position: -70px 0;
            }

/*test*/
.id-wrap {
    margin: 30px 0;
}

.pw-wrap {
    margin-bottom: 50px;
}

input.login-input {
    width: 100%;
    display: block;
    border: none;
    padding: 10px 0;
    -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, rgba(255,255,255,.8) 4%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, rgba(255,255,255,.8) 4%);
    background-position: -300px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    border-bottom: solid 2px rgba(255,255,255,.3);
    color: #fff;
    font-size: 1.5rem;
}

    input.login-input:focus, input:valid {
        box-shadow: none;
        outline: none;
        background-position: 0 0;
        border-bottom: solid 2px rgba(255,255,255,0);
    }

    input.login-input + label {
        content: '';
        -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
        transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
        background: -webkit-linear-gradient(top, red 90%, red 10%);
        background: linear-gradient(to bottom, red 90%, red 10%);
        background-position: -300px 0;
        background-size: 100%;
        background-repeat: no-repeat;
    }

        input.login-input + label:focus {
            content: '';
            background-position: 0 0;
        }

    input.login-input::-webkit-input-placeholder {
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        font-size: 2rem;
        color: rgba(255,255,255,.8);
        padding-bottom: 10px;
    }

    input.login-input:focus::-webkit-input-placeholder, input.login-input:valid::-webkit-input-placeholder {
        color: rgba(255,255,255,.2);
        /*font-size: 0.875rem;
 -webkit-transform: translateY(-40px);
 transform: translateY(-40px);
        visibility: visible !important;*/
    }

.company-wrap {
    margin-top: 75px;
    position: relative;
}

    .company-wrap .select-company {
        width: 100%;
        font-size: 1.5rem;
        letter-spacing: -1px;
        padding: 15px 0;
        color: rgba(255,255,255,.8);
        border: 0;
        margin-bottom: 10px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        appearance: none;
        border-bottom: 2px solid rgba(255,255,255,.3);
        background: transparent;
    }

    select::-ms-expand {
    display: none;
}
.company-wrap .select-company:focus {
    outline: 0;
}

        .company-wrap .select-company option {
            background-color: transparent;
            color: #48c7f0;
            padding: 5px;
        }

    .company-wrap > span {
        position: absolute;
        top: 50%;
        transform: translateY(-25%);
        right: 0px;
        width: 14px;
        height: 20px;
        border-top: 10px solid #3d798d;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 10px solid transparent;
        cursor: pointer;
        pointer-events: none;
    }

/* List Page*/
.container {
    width: 100%;
    height: 100%;
}


header.gnb {
    display: flex;
    align-items: center;
    height: 110px;
    padding: 0 50px;
    background-color: #48c7f0;
}

    header.gnb * {
        color: #fff;
    }

    header.gnb h1 {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
    }

        header.gnb h1 > span {
            width: 40px;
            height: 42px;
            background-image: url(../images/images-userlogin.png);
            background-size: 102px 130px;
            background-repeat: no-repeat;
            background-position: 0 0;
            margin-right: 15px;
        }

    header.gnb .tools {
        margin-left: auto;
    }

        header.gnb .tools ul li {
            display: inline-flex;
            align-content: center;
            padding: 20px;
            cursor: pointer;
        }

            header.gnb .tools ul li:hover {
                background-color: #0a9ccb;
                box-shadow: inset 1px 1px 0px #087da2;
            }
            header.gnb .tools ul li:active {
                background-color: #008cbf;
            }

            header.gnb .tools ul li > span {
                display: inline-block;
                background-image: url(../images/images-userlogin.png);
                background-repeat: no-repeat;
                background-position: 0 0;
                margin-right: 15px;
            }

            header.gnb .tools ul li.btn-query > span {
                width: 24px;
                height: 20px;
                background-position: 0 -82px;
            }

            header.gnb .tools ul li.btn-session-exp > span {
                width: 24px;
                height: 24px;
                background-position: -46px -82px;
            }

            header.gnb .tools ul li.btn-logout > span {
                width: 22px;
                height: 24px;
                background-position: -90px -82px;
            }

section.content {
    padding: 50px;
}

.section-wrap {
    margin-bottom: 60px;
}

    .section-wrap h2 {
        font-size: 1.625rem;
        font-weight: normal;
    }

        .section-wrap h2 > span.total-sum {
            display: inline-block;
            background-color: #48c7f0;
            border-radius: 50px;
            padding: 5px 20px;
            font-size: 1.125rem;
            color: #fff;
            margin-left: 10px;
        }

            .section-wrap h2 > span.total-sum span.nb {
                display: inline-block;
                font-size: 1.25rem;
                font-weight: bold;
            }

.list-wrap {
    margin-top: 30px;
}

    .list-wrap table {
        display: inline-block;
        background-color: #f0f0f0;
        border: 0;
    }

        .list-wrap table th, .list-wrap table td {
            padding: 10px 22px;
        }

        .list-wrap table thead.license-code th {
            background-color: #1cabd9;
            color: #fff;
            font-size: 1.125rem;
            font-weight: normal;
            letter-spacing: 0;
        }

        .list-wrap table thead th {
            background-color: #48c7f0;
            color: #fff;
            letter-spacing: -1px;
        }


        .list-wrap table tbody td {
            text-align: center;
            font-size: 0.875rem;
            border-right: 1px solid #cfcfcf;
            border-bottom: 1px solid #cfcfcf;
        }

            .list-wrap table.user-login-list tbody td:first-child, .list-wrap table tbody td:last-child {
                border-right: 0;
            }

        .list-wrap table tbody tr:last-child td {
            border-bottom: 0;
        }

.list-style-border table thead th {
    background: #fff;
    color: #48c7f0;
    border-bottom: 3px solid #48c7f0;
}

.list-style-border table tbody {
    background: #fff;
}

.list-style-border table tbody tr.selected {
    background-color: #f0f0f0;
}



/*리스트 행 체크박스*/
.list-checkbox {
    display: flex;
    cursor: pointer;
}

    .list-checkbox input[type="checkbox"]:checked + i {
        position: relative;
        -webkit-animation: icon-beat 0.1s ease;
        animation: icon-beat 0.1s ease;
    }

@keyframes icon-beat {
    0% {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.list-checkbox i {
    display: inline-block;
    width: 17px;
    height: 17px;
}


.list-checkbox input[type="checkbox"] + i:before {
    content: "";
    width: 17px;
    height: 17px;
    border: 1px solid #a7a7a7;
    border-radius: 50%;
}

.list-checkbox.checkall input[type="checkbox"] + i:before {
    border: 1px solid #48c7f0;
}

.list-checkbox input[type="checkbox"] + i:before {
    width: 17px;
    height: 17px;
    display: inline-block;
}

.list-checkbox input[type="checkbox"]:checked + i:before {
    content: "";
    border: 0;
    background-image: url(../images/images-userlogin.png);
    background-repeat: no-repeat;
    background-position: 0 -136px;
}
