.Fc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.Fr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.row-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Fct {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.Fcb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.Fcl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.Fcr {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.Frt {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}

.Frl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.Frr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.Frlt {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

.Frsb {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.Frsa {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.Br {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    overflow: visible;
}

.Tes {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
}