/* Common classes */
/* Float */
.left {
    float: left;
}

.right {
    float: right;
}

/* Fonts */
.small-font {
    font-size: 11px;
}

.normal-font {
    font-size: 14px;
}

.big-font {
    font-size: 16px;
}

/* Colors */
.white {
    color: #FFFFFF;
}

.black {
    color: #000000;
}

.red {
    color: #FF0000;
}

.width-100 {
    width: 100%;
}

.width-50 {
    width: 50%;
}

.height-100 {
    height: 100%;
}

.height-50 {
    height: 50%;
}

.vertical-center {
    display: flex;
    align-items: center;
}

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

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