.main {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    box-sizing: border-box;
    direction: ltr;
    background-color: #fff;
    &.rtl {direction: rtl;}
    td,th {
        border: 1px solid #e4e1e1;
    }
    thead {
        text-align: center;
        tr {
            height: 50px;
            justify-content: center;
        }
        th {
            text-align: center;
        }
        .title {
            width: 250px;
        }
        .column {
            color: #949494;
        }
    }
    tbody {
        tr {
            height: 50px;
            th {
            }
            td {
                position: relative;
            }
            .name {
                color: #0e70ab;
                text-align: justify;
                >a {
                    display: inline-block;
                    margin: 0 20px;
                }
            }
            .item {
                position: absolute;
                top:0;
                right:0;
                bottom: 0;
                left:0;
                cursor: pointer;
                background-color: inherit;
                transform: scale(1);
                transition: transform 100ms ease;
                &:hover,&.hover {
                    z-index: 1;
                    border:inherit;       
                    border-color: #e0e0e0;             
                    transform: scale(1.1);
                }
                &:active,&.active {transform: scale(1.05);}
            }
        }
    }
}