﻿@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Public Sans" !important;
    font-feature-settings: 'liga' off, 'clig' off;
    color: #242424;
}

bodySection {
    display: block;
    margin: 0px auto;
    width: 100%;
    height: calc(100% - 76px);
    /*border: 1px solid #000;*/
}

bodyNavi {
    display: block;
    width: 100%;
    height: 50px;
    align-content: center;
    border: 0px solid #000;
}

    bodyNavi span.NaviBack {
        margin-left: 20px;
        font-size: 16px;
        cursor: pointer;
    }

        bodyNavi span.NaviBack i {
            margin-right: 10px;
        }

bodyContents {
    display: block;
    margin: 0 auto;
    width: calc(100% - 30px);
    padding: 0px 15px;
    border: 0px solid #000;
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: auto;
}

    bodyContents h3 {
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        margin: 10px 0px;
        padding: 0px;
    }

    bodyContents h2 {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        margin: 10px 0px;
        padding: 0px;
    }

    bodyContents hr {
        border: 0px;
        margin: 15px 0px;
    }

    bodyContents hr.small {
        border: 0px;
        margin: 5px 0px;
    }

        bodyContents hr.line {
            border-top: 1px solid #B0B0B0;
            margin: 5px 0px;
            margin-bottom: 30px;
        }

div.TableList {
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    background: #FFF;
    align-content: center;
    padding: 20px 25px;
    margin-bottom: 10px;
}

    div.TableList::after {
        content: '\f054';
        font-family: 'fontAwesome';
        float: right;
    }

    div.TableList label {
        margin-bottom: 0px;
    }

AppfooterSection {
    position: fixed;
    bottom: 0px;
    display: grid;
    grid-template-columns: repeat(5, 20%);
    width: 100%;
    height: 75px;
    border-top: 1px solid #E0E0E0;
    background: #FFF;
    z-index: 10001;
}

    AppfooterSection p {
        display: grid;
        padding: 0px;
        margin: 0;
        align-content: center;
        text-align: center;
        grid-row-gap: 10px;
    }
    AppfooterSection p i {
        font-size: 18px;
    }
        AppfooterSection p label {
            color: #555;
            font-size: 11px;
            font-style: normal;
            font-weight: 600;
            margin-bottom: 0px;
        }

        AppfooterSection p.active,
        AppfooterSection p.active label {
            color: #19AA75;
        }

div.inputForm {
    margin: 0;
    padding: 0;
    display: grid;
    grid-row-gap: 3px;
    margin-bottom: 24px;
}


    div.inputForm lable {
        color: #242424;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        /*height: 20px;*/
        margin-bottom: 5px;
    }

        div.inputForm lable.required::after {
            content: '\2a';
            font-family: 'fontAwesome';
            margin-left: 3px;
            font-size: 8px;
            color: #242424;
            vertical-align: top;
        }


    div.inputForm small {
        color: #555;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 14px;
    }

        div.inputForm small:before {
            color: #555;
            /*content: '·';*/
            content: ' ';
            margin-right: 5px;
            font-weight: bold;
        }

    div.inputForm input {
        border-radius: 4px;
        border: 1px solid #242424;
        width: calc(100% - 40px);
        padding: 16px;
        margin-top: 10px;
        z-index: 100;
    }

    div.inputForm input {
        background: #FFF;
    }

    div.inputForm select {
        border-radius: 4px;
        border: 1px solid #242424;
        width: calc(100% - 40px);
        padding: 16px;
        margin-top: 10px;
        z-index: 100;
        height: initial;
    }

select {
    -webkit-appearance: none; /* for chrome */
    -moz-appearance: none; /*for firefox*/
    appearance: none;
    background: url('/contents/images/v2/login/ic_arrow_bottom.png') no-repeat center right;
    padding: 30px;
    /*background-position-x: 460px;*/
}

    select::-ms-expand {
        display: none; /*for IE10,11*/
    }

div.radiostyle b {
    display: inline-block;
    line-height: 32px;
    margin-right: 20px;
    margin-left: 30px;
    font-weight: normal;
}

    div.radiostyle b span.iRadio {
       /* position: absolute;*/
        margin-left: -30px;
        margin-top: 0px;
    }

span.iRadio {
    display: inline-flex;
    cursor: pointer;
    padding: 0px;
    color: #22272B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    align-items: center;
}

    span.iRadio:before {
        content: ' ';
        border: 1px solid #000;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        margin-right: 10px;
    }
    span.iRadio.active:before {
        content: '\f058';
        font-family: 'fontAwesome';
        font-size: 22px;
        color: #19AA75;
        border: 0px solid #19AA75;
    }


    .column2 {
        display: grid;
        grid-template-columns: 50% auto;
    }

.column3 {
    display: grid;
    grid-template-columns: 33% 33% auto;
}

div.searchType {
    display: grid;
    grid-template-columns: auto 100px;
}
    div.searchType input {
        border-radius: 4px 0px 0px 4px;
        border: 1px solid #242424;
        border-right: 0px;
        width: calc(100% - 32px);
        padding: 16px;
        margin-top: 10px;
        z-index: 100;
    }

    div.searchType button {
        border: 1px solid #19AA75;
        border-left: 0px;
        border-radius: 0px 4px 4px 0px;
        background: #19AA75;
        color: #fff;
        margin-top: 10px;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
    }

div.checkForm {
    /*height: 30px;*/
    border: 0px solid #000;
    padding: 5px 0px;
    margin: 10px 0px;
    display: grid;
    grid-template-columns: 30px auto;
    align-content: center;
}

span.iCheck {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 3px;
    margin-top: 2px;
    cursor: pointer;
    padding: 0px;
}

    span.iCheck.active {
        border: 1px solid #19AA75;
    }

div.checkForm label {
    margin: 0px;
    padding: 0px;
    color: #242424;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    align-content: center;
}


span.iCheck.active:before {
    content: '\f14a';
    font-family: 'fontAwesome';
    margin-left: 1px;
    margin-top: 0px;
    font-size: 20px;
    color: #19AA75;
}

div.selectList {
    width: calc(100% - 10px);
    display: grid;
}

    div.selectList span {
        display: block;
    }
        div.selectList span b {
            display: inline-block;
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.07);
            padding: 3px 6px;
            margin-bottom: 4px;
            color: #242424;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
        }

        div.selectList span b:after {
            content: '\f00d';
            font-family: 'fontAwesome';
            margin-left: 10px;
            font-size: 14px;
        }

button.WideButton {
    width: 100%;
    padding: 20px 0px;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    margin: 10px 0px;
    border-radius: 4px;
    cursor: default;
}

.gray {
    color: #22272B;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.07) 100%), #FFF;
    cursor: pointer !important;
}

.green {
    color: #fff;
    background: #19AA75;
    opacity: 0.5;
}

    .green.active {
        color: #fff;
        background: #19AA75;
        opacity: 1;
        cursor: pointer !important;
    }

.white {
    padding: 15px 0px !important;
    color: #19AA75;
    background: #fff;
    border-radius: 4px;
    border: 2px solid #19AA75;
    width: calc(100% - 4px) !important;
    cursor: pointer !important;
}

.w80 {
    width: 80% !important;
}

.right {
    float: right;
}

.wFree {
    width: initial !important;
    padding: 8px 15px !important;
}

div.denyForm lable,
div.denyForm lable::after,
div.denyForm small {
    color: #D4254C !important;
}

div.denyForm input,
div.denyForm select {
    border: 1px solid #D4254C;
}

denymsg {
    display: none;
    margin-top: 5px;
    color: #D4254C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

    denymsg:before {
        content: '\f057';
        font-family: 'fontAwesome';
        margin-right: 5px;
    }

div.denyForm denymsg {
    display: block;
}

div.borderbox {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #DADADA;
}

/*.closemark {
    position: absolute;
    float: right;
}*/
    .closemark:before {
        content: '\f00d';
        font-family: 'fontAwesome';
        font-size: 24px;
        float: right;
        display: block;
        height: 2px;
    }

@media screen and (max-width: 993px) {
}