.clickable {
    cursor: pointer;
}

.no_select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.split_flexbox {
    display: flex;
}

.split_flexbox_left {
    width: 50%;
}

.split_flexbox_right {
    width: 50%;
}

.centered {
    margin: auto;
}

.text_centered {
    text-align: center;
}

.small_text {
    font-size: 16px;
}

.tiny_text {
    font-size: 12px;
}

.indent {
    text-indent: 20px;
}

.reverse_indent {
    text-indent: -20px;
    padding-left: 20px;
}

.hidden {
    display: none;
}

/* FLEXCOL */

.flex_col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.gap10 {
    gap: 10px;
}

/* MARGINS */

.margin_bottom_1 {
    margin-bottom: 1px;
}

.margin_bottom_5 {
    margin-bottom: 5px;
}

.margin_bottom_10 {
    margin-bottom: 10px;
}

.margin_bottom_15 {
    margin-bottom: 15px;
}

.margin_bottom_20 {
    margin-bottom: 20px;
}

.margin_left_20 {
    margin-left: 20px;
}

.margin_top_20 {
    margin-top: 20px;
}

/* PADDING */

.padding_left_20 {
    padding-left: 20px;
}

.padding_top_10 {
    padding-top: 10px;
}

.padding_top_5 {
    padding-top: 5px;
}

/* FLEX SPACERS */

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.flex4 {
    flex: 4;
}

/* FONT SIZES */

.font12 {
    font-size: 12px;
}

.font18 {
    font-size: 18px;
}