body {
    border: 0;
    margin: 0;
    display: block;
}

.container {
    display: flex;
}

.width--100 {
    width: 100%;
}

.flex {
    display: flex;
}

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

.cursor--pointer {
    cursor: pointer;
}

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

.justify--content--center {
    justify-content: center;
}

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

.justify--content--end {
    justify-content: flex-end;
}

.align--items--center {
    align-items: center;
}

.align--items--start {
    align-items: flex-start;
}

.align--items--end {
    align-items: flex-end;
}

.flex--1 {
    flex: 1;
}

.flex--2 {
    flex: 2;
}

.flex--3 {
    flex: 3;
}

.flex--3-5 {
    flex: 3.5;
    height: 100%;
}

.flex--4 {
    flex: 4;
}

.flex--5 {
    flex: 5;
}

.flex--6 {
    flex: 6;
}

.flex--10 {
    flex: 10;
}

.flex--13 {
    flex: 13;
}

.font--size--12 {
    font-size: 12px;
}

.height--100vh {
    height: 100vh;
}