@font-face {
    font-family: MavenPro;
    src: url('fonts/MavenPro-Regular.ttf');
}

@font-face {
    font-family: Roboto-Light;
    src: url('fonts/Roboto-Light.ttf');
}


@font-face {
    font-family: Roboto-Regular;
    src: url('fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto-Thin;
    src: url('fonts/Roboto-Thin.ttf');
}

body {
    font-family: Roboto-Light;
    font-size: 12pt;
    color: hsl(180, 38.3%, 84.1%);
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /* background-color: #8f8f8f; */
    /* background-color: #000; */
    background-color: #15141a;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


::-webkit-input-placeholder {
    color: hsl(194,87%,67%);
}

input:focus, textarea:focus, select:focus{
    outline: none;
}

.txt-input {
    border: 0;
    border-bottom: 1px solid hsl(202,39%,68%);
    border-radius: 0;
    color:hsl(210,100%,50%);
    padding:10px 5px 2px 5px;
    box-sizing: border-box;
    margin-bottom: 15px;
    width: 80%;
    font-size: 1.1em;
    font-family: roboto-light;
}

/* display the elements in a row */

.flx-nw {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.flx-w {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


.flx-nw-rr {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
}

.v-scroll {
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.text-ovf {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compulsory {
    background-color: yellow;
}

.compulsory-mark {
}

    .compulsory-mark:after {
        content: '*';
        color: red;
        margin-left: 5px;
    }

.compulsory-mark2 {
}

    .compulsory-mark2:after {
        content: '**';
        color: red;
        margin-left: 5px;
    }

    
#blk, .blk {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #aba7a7;
    opacity: .6;
    z-index: 100;
}

/* message box */
#msgbox {
    z-index: 30000;
    position: fixed;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 2px;
    top: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    outline: none;
}

    #msgbox > div {
        display: flex;
        flex-direction: row;
    }

    #msgbox .col1 {
        max-width: 500px;
    }

    /* #msgbox .col2 {
        width: 15px;
        margin-left: 5px;
    }

    #msgbox .col3 {
        width: 15px;
    } */

    #msgbox .msgbox-msg {
        color: #fff;
        font-size: 1.2em;
    }

    #msgbox .remarks0 {
        margin-top: 10px;
    }

    #msgbox .remarks {
        display: none;
    }

    #msgbox .remarks2 {
    }

        #msgbox .remarks2 > input {
            border: 0;
            border-bottom: 3px solid #82c0ff;
            color: #0066cc;
            height: 30px;
            padding-left: 5px;
            padding-right: 5px;
            padding-top: 0;
            padding-bottom: 0;
            width: 90%;
            box-sizing: border-box;
        }

    #msgbox .opt0 {
        margin-right: 30px;
    }

        #msgbox .opt0 > .button {
            margin-right: 20px;
            cursor: pointer;
            border: 1px solid #fff;
            padding: 8px 20px 8px 12px;
            box-sizing: border-box;
            border-radius: 2px 10px 25px 5px;
        }

    #msgbox .opt {
        display: none;
    }

    #msgbox .opt2 {
        display: flex;
        flex-direction: row-reverse;
        margin-top: 20px;
    }

    /* #msgbox .msgbox-pin {
        line-height: 15px;
        vertical-align: middle;
        cursor: pointer;
        width: 16px;
        height: 16px;
        background-image: url('images/ui-icons_ffffff_256x240.png');
    }

    #msgbox .msgbox-pinit {
        background-position: -128px -144px;
    }

    #msgbox .msgbox-unpinit {
        background-position: -144px -144px;
    }

    #msgbox .msgbox-cls {
        line-height: 15px;
        vertical-align: middle;
        cursor: pointer;
        width: 16px;
        height: 16px;
        background-image: url('images/ui-icons_ffffff_256x240.png');
        background-position: -96px -128px;
    } */

.msgbox-info {
    background-color: rgb(206, 138, 223);
    color: #fff;
}

.msgbox-err {
    background-color: #f6481c;
    color: #fff;
}

.msgbox-warn {
    background-color: #ce4506;
    color: #fff;
}

/* popup dialog */
.pp_dlg, .pp-dlg {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 2000;
}

.pp_dlg_title, .pp-dlg-title {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #6c6b74;
    color: #fff;
    width: 100%;
    line-height: 70px;
    font-size: 20pt;
    cursor: pointer;
    padding-left: 20px;
    box-sizing: border-box;
}

.pp_close_btn, .pp-close-btn {
    cursor: pointer;
    margin-right: 5px;
    margin-top: -4px;
}



.cel-tips {
    position: absolute;
    background-color: transparent;
    z-index: 1000;
}

    .cel-tips .cel-tips-arrow {
        z-index: 1001;
    }

    .cel-tips .cel-tips-arrow-l {
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #ffe563;
    }

    .cel-tips .cel-tips-arrow-r {
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #ffe563;
    }

    .cel-tips .cel-tips-arrow-u {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffe563;
    }


    .cel-tips .cel-tips-arrow-d {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #ffe563;
    }

    .cel-tips .cel-tips-content {
        padding: 10px;
        background-color: #ffe563;
        box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
        border-radius: 5px;
    }

    
/********************/
/* cel radio button list*/
/********************/
.rbl-item0 {
}

    .rbl-item0 > div {
        line-height: 30px;
        margin-left: 10px;
    }

.rbl-chk {
    font-size: 18pt;
    color: hsl(34,100%,54%);
}

    .rbl-chk:after {
        content: 'radio_button_checked';
    }

.rbl-chk0 {
    font-size: 18pt;
    color: hsl(34,100%,54%);
}

    .rbl-chk0:after {
        content: 'radio_button_unchecked';
    }


.no-data {
    font-size: 16pt;
    color: hsl(195,34%,70%);
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}



/**** checkbox ****/
.btn-checkbox0 {
    font-size: 22pt;
    cursor: pointer;
}

    .btn-checkbox0:after {
        content: 'check_box_outline_blank';
        color: hsl(34,100%,54%);
    }

.btn-checkbox {
    font-size: 22pt;
    cursor: pointer;
}

    .btn-checkbox:after {
        content: 'check_box';
        color: hsl(34,100%,54%);
    }

.chk-lbl {
    line-height: 30px;
    cursor: pointer;
    margin-left: 10px;
}

/*************/
/* standard popup*/
/*************/
.std-pp {
    position: absolute;
    position: fixed;
    width: 300px;
    top: 0;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3000;
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

    .std-pp > div {
        padding: 10px;
        /* margin-top: 10px; */
    }


    .std-pp .pp-item-div {
        width: 98%;
        margin-bottom: 2px;
        padding: 10px 12px;
        border-bottom: 1px solid #cfd8dc;
        cursor: pointer;
    }

        .std-pp .pp-item-div:hover {
            background-color: hsl(214,22%,26%);
            color: #fff;
        }

        .std-pp .pp-item-div .ico {
            color: hsl(49,57%,54%);
            margin-right: 10px;
        }

            .std-pp .pp-item-div .ico:after {
                content: 'slow_motion_video';
            }

        .std-pp .pp-item-div .text {
            margin-top: 2px;
        }

        

.spinner {
    background-image: url('images/spinner.gif');
    background-size: 30px 30px;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}
