pre.native{
    background-color: white;
}

.small-window{
    display: flex;
    justify-content: center;
    align-items : center;
    min-height: calc(100vh - 24rem);
}

.small-window>*{
    max-width: 520px;
    flex-grow: 1;
}

.flex-grid {
    display: grid;
    gap : 1px;
    background-color: rgba(219,219,219,.5);
    padding: 1px;
}

.item-detail.flex-grid, .order-detail.flex-grid{
    grid-template-columns: 100px 1fr 100px 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow:row;
}
/*
.order-detail.flex-grid{
    grid-template-columns: repeat(2, 100px) auto;
    grid-template-rows: auto auto; 
    grid-auto-flow:column;
}
*/
.flex-grid>* {
    /*outline: 1px solid red;*/
    padding: 0.2em 0.5em ;
}

.flex-grid dt{
    font-weight: bold;

    background-color: #F5F5F5;
}

.flex-grid dd{
    background-color: white;
}

.wide-grid{
    grid-column-end: span 3;
}

@media only screen and (max-width: 520px) {
    .item-detail.flex-grid, .order-detail.flex-grid {
        grid-template-columns:  100px auto;
        grid-auto-flow:row;    
    }

    .wide-grid{
        grid-column-end: unset;
    }    
}

.fixed-width-btn {
    width: 5em;
}

/*quotation table, shared by design page and account page */
.field.is-floating-label.has-numberinput-compact.has-numberinput-is-medium.is-control-right .label{
    margin-left: 0;
}

.is-fullwidth{
    width: 100%;
}

.is-fullheight{
    height: 100%;
}

table.bill{
    min-width: 270px;
}

table.bill td, table.bill th{
    color: #4a4a4a;
    font-size: .875rem;
    line-height: 1.2;
    border-collapse: collapse;
    padding: .5em .75em;
}

table.bill th, table.bill .th{
    color: #363636;
    vertical-align: bottom; 
    font-weight: 700;   
}

table.bill td[colspan]{
    text-align: right;
}

table.bill td:last-child{
    text-align: right;    
}

table.bill .border{
    border: 1px solid #dbdbdb;
}

table.bill .bot-border{
    border-width: 0 0 1px;
}

table.bill .top-border{
    border-width: 1px 0 0;
}

.content.bill-tip ul{
    margin-top: 0;
    line-height: 1;
}

.content.bill-tip h5{
    margin-bottom: 0.5em;
    font-size: 110%;
}

.bill-step{
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;    
}
/*end of quotation table*/