﻿.h_100 {
    height: 100% !important;
}

.h_40px {
    height: 40px;
}

.w_100 {
    width: 100% !important;
}

.mw_0 {
    min-width: 0;
}

.m_auto {
    margin: auto !important;
}

.ml_auto {
    margin-left: auto !important;
}

.ml_0 {
    margin-left: 0px !important;
}

.ml_8 {
    margin-left: 8px;
}

.mr_4 {
    margin-right: 8px;
}

.ml_12 {
    margin-left: 12px;
}

.mt_4 {
    margin-top: 4px;
}

.mt_12 {
    margin-top: 12px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_30 {
    margin-top: 30px;
}

.mb_12 {
    margin-bottom: 12px;
}

.mb_24 {
    margin-bottom: 24px;
}

.mb_30 {
    margin-bottom: 30px;
}

.gap_4 {
    gap: 4px !important;
}

.gap_8 {
    gap: 8px !important;
}

.gap_16 {
    gap: 16px !important;
}

.gap_24 {
    gap: 24px !important;
}

.cursor_pointer {
    cursor: pointer;
}

.flex_row_center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flex_row_center_jr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.flex_row_center_jc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.flex_column_center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex_column_center_jc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.combobox_item_template {
    display: flex;
    align-items: center;
}

img + .combobox_item_template_text {
    margin-left: 1rem;
}

.combobox_item_template_text {
    display: flex;
    flex-direction: column;
}

.text_align_center {
    text-align: center;
}

.cursor_help {
    cursor: help;
}