.invert {
    filter: invert(1);
}

.pointer:hover {
    cursor: pointer;
}

.inline {
    display: inline-block;
}

textarea,
select {
    border: 1px solid var(--color-black);
    width: 100%;
    background-color: transparent;
    color: var(--color-black);
    resize: none;
}

select {
    padding: 15px;
}

select option {
    padding: 10px;
}

*:focus {
    outline: none;
}

.good {
    color: green;
}

.check {
    color: var(--color-blue-light);
}

.jaune {
    color: var(--color-orange);
}

.red {
    color: var(--color-red);
}

.relativeCenter {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.text-center {
    text-align: center;
}

marquee {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

marquee.ok {
    background-color: green;
}

marquee.erreur {
    background-color: var(--color-red);
}

select {
    background-color: var(--main-white);
}

.unselectable {
    opacity: 0.2;
}

img.small {
    height: 15px;
}

.padding {
    padding: 3%;
}

.margin-left {
    margin-left: 20px;
}

.noBorder {
    border: none !important;
}

.borderBottom {
    border: none !important;
    border-bottom: 1px solid var(--color-black) !important;
}

.borderTop {
    border: none !important;
    border-top: 1px solid var(--color-black) !important;
}

.noBackground {
    background-color: transparent !important;
}

fieldset legend {
    padding-left: 20px;
    padding-right: 20px;
}

fieldset {
    border: none;
    border-left: 3px solid var(--color-blue-light);
    transition: border-left 0.2s ease-in-out;
}

fieldset:hover {
    border-left: 3px solid var(--color-blue-dark);
}

.todolist::before {
    content: "•";
    margin-right: 10px;
}

.tdl-good::before {
    color: green;
}

.tdl-check::before {
    color: var(--color-blue-light);
}

.tdl-jaune::before {
    color: var(--color-orange);
}

.tdl-red::before {
    color: var(--color-red);
}

.caption {
    font-size: 25px !important;
    padding-bottom: 5px;
    font-weight: bold;
    border-bottom: 2px solid var(--main-white);
}

.hover-borderBottom:hover {
    border-bottom: 1px solid var(--color-black);
}

#sortable>tr::before {
    content: "↕";
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    color: var(--color-black);
    cursor: move;
}

table .show-hovered-tr {
    transition: background-color 0.1s ease-in-out;
}

table .show-hovered-tr:hover {
    background-color: var(--main-white);
}

.sortable_item::before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    background-image: url("../images/move.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
    width: 15px;
    height: 15px;
    cursor: move;
}