.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.jcs {
    justify-content: space-around;
}

.jcb {
    justify-content: space-between;
}

.jce {
    justify-content: end
}

.aic {
    align-items: center
}

.fxw {
    flex-wrap: wrap
}

.pahc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}
/* btn */
.btnWrap button {
    margin-right: 5px;
}

    .btnWrap button:last-child {
        margin-right: 0px;
    }

.btnDefault {
    background: #0072CE;
    border: 1px solid #015DA8;
    min-width: 90px;
    font-size: 0.75rem;
    color: #fff;
    height: 30px;
    line-height: 30px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: all .2s;
}

    .btnDefault span {
        text-align: center;
        display: block;
    }

.btnDefault span:first-child {
    background: #0168BC;
    border-right: 1px solid #015DA8;
    width: 28px;
    height: 100%;
    font-size: 14px;
    color: #fff;
}

    .btnDefault span:last-child {
        min-width: 48px;
        padding: 0 0.625rem;
    }

.btnDefault:hover {
    background: #fff;
    border: 1px solid #D5E2EA;
    color: #91ADBF;
    transition: all .2s;
}

.btnDefault:hover span:first-child {
    background: #f5f5f5;
    border-right: 1px solid #D5E2EA;
    color: #91ADBF;
    transition: all .2s;
}


/* select */
.selectWrap {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 1px solid #ebebeb;
    height: 25px;
    outline: 0;
    background: #f8f8f8;
}

.select {
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
    color: #858585;
    font-size: 11px;
    padding-left: 10px;
    font-weight: 300;
}

.selectButton {
    background-color: #f8f8f8;
    right: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
    /*text-align: center; vertical-align: middle; */
    width: 23px;
    height: 23px;
    border-left: 1px solid #ebebeb;
}

.smallArrowDown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #2a2a2a;
    background: url(../images/select-arrow.svg) no-repeat center center / 8px 18px;
    width: 100%;
    height: 100%;
}
/* input */

.searchWrap, .inputWrap {
    display: inline-block;
    width: 100%;
    position: relative;
}

    .searchWrap button {
        position: absolute;
        right: 1px;
        top: 1px;
        background: #f8f8f8;
        width: 23px;
        height: 23px;
        border-left: 1px solid #ebebeb;
        font-size: 10px;
    }

/*
.input[type=text]{
    border: 1px solid #ebebeb;
    width: 100%;
    height: 23px;
}
.input[type=text]::placeholder{
    font-size: 12px;
    padding-left: 10px;
    color: #858585;
}
.input[type=text]:disabled{
    background: #FBFBFB;
    
}
*/
/* checkbox */
.chk {
    display: none;
}

    .chk + label {
        width: 15px;
        height: 15px;
        border: 1px solid #e3e3e3;
        display: inline-block;
        position: relative;
        vertical-align: middle;
    }

    .chk:checked + label:after {
        content: '\e929';
        background: #0072CE;
        border: 1px solid #0165B6;
        position: absolute;
        left: 0;
        top: 0;
        font-family: 'xeicon';
        color: #fff;
        width: 15px;
        height: 15px;
        line-height: 15px;
    }

/* textarea */
textarea {
    border: 1px solid #ededed;
    width: 100%;
    outline: 0;
}
/* table */
.tbl {
    width: 100%;
    border: 1px solid #ededed;
    border-right: none;
}

    .tbl thead th {
        padding: 11px 0;
        text-align: center;
        font-size: 12px;
        font-weight: 500;
        background: #f8f8f8;
        border-right: 1px solid #ededed;
        border-bottom: 1px solid #ededed;
    }

        .tbl thead th:last-child, .tbl tbody td:last-child {
            border-right: none;
        }

    .tbl tbody td {
        background: #fff;
        font-weight: 500;
        text-align: center;
        padding: 7px 10px;
        border-right: 1px solid #ededed;
        font-size: 12px;
    }
/* ico */
.new, .docu {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #FC7F0C;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    font-family: 'Montserrat';
}

.docu {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #0B51B7;
}
/* align */
.tar {
    text-align: left !important;
}
/* widht */
.col-1 {
    width: 10%;
}

/* button */
.btn-serch {
    background: #f8f8f8;
    width: 25px;
    height: 25px;
    border: 1px solid #ebebeb;
    font-size: 10px;
    vertical-align: middle;
}
