:root {
    --theme-dark-primary: #2d2e30;
    --theme-dark-secondary: #595959;

    --theme-light-primary: #cfcfcf;
    --theme-light-secondary: #e0e0e0;
}
.text__dark_primary {
    color: var(--theme-dark-primary);
}
.text__dark_secondary {
    color: var(--theme-dark-secondary);
}

.bg__dark_primary {
    background-color: var(--theme-dark-primary);
}
.bg__dark_secondary {
    background-color: var(--theme-dark-secondary);
}

.text__light_primary {
    color: var(--theme-light-primary);
}
.text__light_secondary {
    color: var(--theme-light-secondary);
}

.bg__light_primary {
    background-color: var(--theme-light-primary);
}
.bg__light_secondary {
    background-color: var(--theme-light-secondary);
}

/* Bootstrap class overwrite */
.text-primary {
    color: var(--theme-dark-primary) !important;
}
a.text-primary:focus,
a.text-primary:hover {
    color: var(--theme-dark-secondary) !important;
}

/* custom select */
.custom-select {
    border-left: 4px solid #c41b1b;
}

.check-input {
    width: 20px !important;
    padding: 0px !important;
    height: 20px !important;
    border: 2px solid #58c85f !important;
    margin-left: 0px !important;
}

.white-space-nowrap {
    white-space: nowrap;
}
.action-dropdown .dropdown-menu {
    min-width: max-content !important;
}
.custom-table-design {
    cursor: grab;
}
.custom-table-design .table td,
.custom-table-design .table th {
    padding: 8px 4px;
    border-top-color: #e4e5e7;
    line-height: 17px;
    font-size: 14px;
}
