/* GENERAL */

.hidden {
    display: none;
}

.f_right {
    float: right;
}

.f_left {
    float: left;
}

.t_italic {
    font-style: italic;
}

.no_border {
    border: none !important;
}

.bg_white {
    background-color: white;
}

.second_title {
    font-size: 12px;
}

.vertical_center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.horizontal_center {
    display: flex;
    justify-content: center;
}

/* WIDTH */

.w_100 {
    width: 100%;
}

/* COLOR */

.color_green {
    color: green;
}

.color_red {
    color: red;
}

/* CURSOR */

.cursorPointer {
    cursor: pointer;
}

.cursorInfo {
    cursor: help;
}

.cursorDefault {
    cursor: default;
}

.cursorNotAllowed {
    cursor: not-allowed;
}

/* BOUTON */

.btn_invalid {
    cursor: no-drop !important;
}

.btn_select {
    cursor: auto !important;
}

.btn_unselect {
    cursor: pointer !important;
}