﻿.AutoTableLayout {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.AutoTableLayoutRow {
    display: flex;
    flex-direction: row;
}

.AutoTableLayoutCol2 {
    width: calc(100% * (1/2) - 10px);
}

.AutoTableLayoutCol3 {
    width: calc(100% * (1/3) - 10px);
}

.AutoTableLayoutCol4 {
    width: calc(100% * (1/4) - 10px);
}

.AutoTableLayoutCol5 {
    width: calc(100% * (1/5) - 10px);
}

.AutoTableLayoutCol6 {
    width: calc(100% * (1/6) - 10px);
}

.AutoTableLayoutCol7 {
    width: calc(100% * (1/7) - 10px);
}

.AutoTableLayoutCol8 {
    width: calc(100% * (1/8) - 10px);
}

.AutoTableLayoutCol9 {
    width: calc(100% * (1/9) - 10px);
}

.AutoTableLayoutCol10 {
    width: calc(100% * (1/10) - 10px);
}

.AutoTableLayoutCol {
    min-height: 50px;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: auto;
}


.AutoTableLayoutHide{
    display:none;
}


.AutoTableLayoutCol.Wrap > *:first-child {
    width: 90%!important;
    word-break: break-word;
}
