/* POSITIONING */

.display-flex {
    display: flex;
}

.display-flex-column {
    display: flex;
    flex-direction: column;
}

.center-childs {
    align-items: center;
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.space-evenly {
    justify-content: space-evenly;
}

.flex-1 {
    flex: 1;
}

/* SIZES */

.width-100 {
    width: 100%;
}

.width-75 {
    width: 75%;
}

.width-65 {
    width: 65%;
}

.height-100 {
    height: 100%;
}

/* MARGIN + PADDING */

.padding-0 {
    padding: 0;
}

.padding-5-horizontal {
    padding: 0 5%;
}

.margin-0 {
    margin: 0;
}

.margin-0-auto {
    margin: 0 auto;
}

/* VISIBILITY */
.hidden {
    display: none !important;
}