.u-table{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    list-style-type: none;
    padding: 0px;
    margin: 0px auto 6px;

    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.u-table *{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    font-style: normal;
    font-weight: normal;
}

.u-header{
    display: none;
}

.u-body{
    display: block;
    height: 3rem;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
}

.u-footer{
    width: 100%;
    height: 3rem;
    flex-grow: 0;
}

.u-row{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 0.8rem;
    vertical-align: middle;
    height: auto;
}

.u-cell{
    display: block;
    width: 100%;
    height: 100%;
    padding: 0px 1px;
    overflow: hidden;
    margin: 0.4rem auto;
    border-bottom: 1px solid #ccc;
}

.u-header .u-cell{
    vertical-align: middle;
    text-align: center;
}

/* .u-cell:nth-child(even){
    background-color: aqua;
} */

.u-cell .u-value,
.u-cell .u-label {
    display: inline-block;
    width: 30%;
    height: 100%;
    text-align: left;
    vertical-align: top;
    overflow: hidden;
    word-wrap: normal;
}
.u-cell .u-value{
    width: 68%;
}


.u-search{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0px auto;
    padding: 0.5rem 0.8rem;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
}
.u-search .u-search-label, 
.u-search .u-search-input,
.u-search .u-search-button{
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    width: 18%;
    flex-grow: 0;
    text-align: center;
    border: none;
    background-color: transparent;
    padding: 2px 5px;
    margin: 0px;
}
.u-search .u-search-input{
    background-color: beige;
    flex-grow: 1;
    text-align: left;
}

.u-grow{
    flex-grow: 1;
}


/**
desktop
*/
@media  screen and  (min-width: 601px) {


    .u-header {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 3rem;
        flex-grow: 0;
        padding: 1px 2px;
        margin: 0px;
    }
    .u-row{
        flex-direction: row;
        margin: 0px;
        padding: 1px 2px;
        border-bottom: 1px solid #ccc;
    }
    .u-cell{
        border: none;
        display: inline-block;
        margin:  0px;
        padding: 0px 1px;
    }

    .u-strip .u-row:nth-child(even){
        background-color: #d9d9d9 !important;
    }

    .u-cell .u-label {
        display: none;
    }

    .u-cell .u-value{
        width: 100%;
    }
     
}