.e-box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

.e-box-title{
    display: block;
    width: 90%;
    height: auto;
    line-height: 3rem;
    margin: 0.3rem auto;
    padding: 0px;
    text-align: center;
}

.e-block{
    display: block;
    height: 3.5rem;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    
}

.e-form{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    list-style-type: none;
    width: 90%;
    height:max-content;
    padding: 0px 0px 1rem 0px;
    margin: 0.4rem auto;
    overflow: hidden hidden;
}
.e-form-head{
    list-style-type: none;
    padding: 0px;
    margin: 6px auto 0px auto;
}

.e-form-head .e-head,
.e-form .e-head{
    display: none;
    margin: 3px auto 0px auto;
    padding: 0px;
}
.e-form-head .e-body,
.e-form .e-body{
    margin: 0px auto;
    padding: 0px;
}

.e-form-head .e-row,
.e-form .e-row-title,
.e-form .e-row{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0px 0px 4px 0px;
    padding: 6px 20px;
}
.e-form-head .e-row:last-child,
.e-form .e-row:last-child{
    border-bottom: none
}

.e-form .e-row-title{
    flex-direction: row;
    justify-content: space-between;
    margin: 0px auto;
    padding: 0px;
}

.e-form-head .e-cell,
.e-form .e-cell{
    display: block;
    width: 100%;
    margin:  0px;
    padding: 0px 1px;
    overflow: hidden;
}

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

.e-title{
    display: inline-block;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.2rem;
    text-align: left;

}
.e-label{
    width: 100%;
    flex-grow: 0;
    text-align: left;
}
.e-input{
    width: 100%;
    flex-grow: 1;
    margin: 0px;
    padding: 0.3rem;
    border: none;
}

.e-input:first-child{
    /* margin-bottom: 5px; */
    width: 35%;
    flex-grow: 0;
}
.e-input:nth-of-type(2){
    width: 50%;
    flex-grow: 1;
    margin-left: 5px;
}

.e-textarea{
    width: 100%;
}

.e-form .e-row-inline{
    flex-direction: row;
}

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

.e-strip .e-cell:nth-child(even){
    background-color: #e1e1e1;
    color: #505050;
}

.e-block-bottom{
    align-self: flex-end;
    overflow-y: hidden;
}
.e-block-top{
    align-self: flex-start;
    overflow-y: hidden;
}

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

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

    .e-block{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin: 0px auto;
        width: 96%;
    }

    .e-block-top,
    .e-block-bottom{
        grid-template-columns: auto;
    }

    .e-box-title{
        width: 100%;
    }

    .e-form{
        min-width: 80%;
        width: 100%;
    }

    .e-form-head .e-head,
    .e-form .e-head{
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    .e-form-head .e-cell .e-label,
    .e-form .e-cell .e-label {
        display: none;
    }
    .e-row,
    .e-form .e-row{
        flex-direction: row;
        margin: 0px;
        padding: 0.2rem 1.2rem;
        border:none;
    }

    .e-input:first-child,
    .e-label{
        width: 25%;
        flex-grow: 0;
        text-align: left;
    }
    .e-input{
        width: 60%;
        flex-grow: 1;
        margin: 0px 5px;
    }

    .e-button-small{
        border: none;
        display: inline-block;
        padding: 8px 16px;
        vertical-align: middle;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        background-color: inherit;
        text-align: center;
        cursor: pointer;
        white-space: nowrap;

        margin: 0px auto;
        width: 5rem;
    }
    

    .e-form-head .e-cell,
    .e-form .e-cell{
        display: inline-block;
        margin:  0px;
        padding: 0px 1px;
    }

    .e-strip .e-row:nth-child(even){
        background-color: #d1d1d1;
        color: #202020;
    }
     
    .e-strip .e-cell:nth-child(even){
        background-color: transparent;
        color: inherit;
    }
     
}