/* HELPERS */

.content-size{
    max-width: var(--contentSize);
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.oh,
.overflow-hidden
{
    overflow: hidden;
}

.text-center,
.tac
{
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.ttu {
    text-transform: uppercase;
}

.p-relative,
.pos-rel,
.p-rel
{
    position: relative;
}

.p-absolute,
.pos-abs,
.p-abs
{
    position: absolute;
}

.r0{
    right: 0;
    top: 0;
    bottom: 0;
}

.l0{
    left: 0;
    top: 0;
    bottom: 0;
}

.full-div{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.d-flex {
    display: flex;
}

.d-flex-row {
    display: flex;
    flex-direction: row;
}

.d-flex-column {
    display: flex;
    flex-direction: column;
}

.dib,
.d-ib {
    display: inline-block;
}

.db,
.d-b {
    display: block;
}

.d-flex.equal>* {
    flex: 1;
}

.bold {
    font-weight: 600;
}

.full-width {
    width: 100%;
}

.full-screen{
    width: 100vw;
    height: 100vh;
}

.full-div{
    width: 100%;
    height: 100%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-auto {
    flex: auto;
}

.abs-centered,
.absolute-centered,
.absolute-center,
.abs-center
{   
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.d-flex-centered,
.d-flex.centered,
.align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.align-center,
.alc
{
    display: flex;
    align-items: center;
}

.align-start,
.als
{
    display: flex;
    align-items: flex-start;
}

.align-end,
.ale,
.alfe
{
    display: flex;
    align-items: flex-end;
}

.text-align-right,
.tar
{
    text-align: right;
}

.justify-content-flex-start {
    display: flex;
    justify-content: flex-start;
}

.justify-content-flex-end,
.jcfe
{
    display: flex;
    justify-content: flex-end;
}

.justify-content-between,
.jcsb,
.jsb
{
    display: flex;
    justify-content: space-between;
}

.no-wrap {
    white-space: nowrap;
}

.drag {
    cursor: move;
}

.pointer {
    cursor: pointer;
}

.no-select {
    user-select: none;
}

.can-select {
    user-select: text;
}

.can-copy {
    user-select: all;
}

.font-italic {
    font-style: italic;
}

.m05{
    margin: 0.5rem;
}

.m1{
    margin: 1rem;
}

.m2{
    margin: 2rem;
}

.m3{
    margin: 3rem;
}

.mt05 {
    margin-top: 0.5rem;
}

.mt1 {
    margin-top: 1rem;
}

.mt2 {
    margin-top: 2rem;
}

.mt3 {
    margin-top: 3rem;
}

.mr05 {
    margin-right: 0.5rem;
}

.mr1 {
    margin-right: 1rem;
}

.mr2 {
    margin-right: 2rem;
}

.mr3 {
    margin-right: 3rem;
}

.mb0 {
    margin-bottom: 0;
}

.mb05 {
    margin-bottom: 0.5rem;
}

.mb1 {
    margin-bottom: 1rem;
}

.mb2 {
    margin-bottom: 2rem;
}

.mb3 {
    margin-bottom: 3rem;
}

.ml05 {
    margin-left: 0.5rem;
}

.ml1 {
    margin-left: 1rem;
}

.ml2 {
    margin-left: 2rem;
}

.ml3 {
    margin-left: 3rem;
}

.p05{
    padding: 0.5rem;
}

.p1{
    padding: 1rem;
}

.p2{
    padding: 2rem;
}

.p3{
    padding: 3rem;
}

.pt05 {
    padding-top: 0.5rem;
}

.pt1 {
    padding-top: 1rem;
}

.pt2 {
    padding-top: 2rem;
}

.pt3 {
    padding-top: 3rem;
}

.pr05 {
    padding-right: 0.5rem;
}

.pr1 {
    padding-right: 1rem;
}

.pr2 {
    padding-right: 2rem;
}

.pr3 {
    padding-right: 3rem;
}

.pb05 {
    padding-bottom: 0.5rem;
}

.pb1 {
    padding-bottom: 1rem;
}

.pb2 {
    padding-bottom: 2rem;
}

.pb3 {
    padding-bottom: 3rem;
}

.pl05 {
    padding-left: 0.5rem;
}

.pl1 {
    padding-left: 1rem;
}

.pl2 {
    padding-left: 2rem;
}

.pl3 {
    padding-left: 3rem;
}

.mh100 {
    min-height: 100vh;
}

.no-mobile {
    display: block;
}

.mobile {
    display: none;
}

.tablettes-only {
    display: none;
}

.smartphone-only {
    display: none;
}