@charset "utf-8";

.flex-r{
    display: flex;
    flex-direction: row;
}
.flex-c{
    display: flex;
    flex-direction: column;
}
.j-c{
    justify-content: center;
}
.j-s-b{
    justify-content: space-between;
}
.j-s-e{
    justify-content: space-evenly;
}
.j-s-a{
    justify-content: space-around;
}
.a-c{
    align-items: center;
}
.flex-1{
    flex: 1;
    overflow: auto;
}
*{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.flex-w{
    flex-wrap: wrap;
}
.flex-n{
    flex-wrap:nowrap ;
}
flex-sh{
    flex: shrink 0; ;
}
