:root {
    --primary: #45494C;
    --secondary: #C4C8BF;
    --error: #ff0000;

    --shades-white: #FFFFFF;

    --neutral-50: #FDFEFF;
    --neutral-200: #F3FAFE;
    --neutral-400: #C4C8BF;
    --neutral-500: #CFDDE4;
    --neutral-600: #A1ACB1;
    --neutral-700: #737B7F;
    --neutral-800: #45494C;
    --neutral-900: #171819;

    --navLink_HoverBackground: #1de9b6;     /*Hardcode in backend.css*/
    --dropdownContent_Background: #f9f9f9;  /*Hardcode in backend.css*/
    --accountIcon_Background: grey;
    --dropdownContent_Achor: black;
    --customContainer_Background: white;    /*Hardcode in backend.css*/
    --header_Background: #f0f0f0;
    --dropdownContent_AchorHover: #f1f1f1;
    --headerRow_BorderBottom: #ddd;
    --th_td: #ddd;
    --pagination_Pagelink: grey;
    --pagination_PagelinkActive: black;
    --iconContainer: #737B7F;
    --popup_Background: white;
    --createWarningIcon_Background: #208D33;
    --deleteWarningIcon_Background: #E7162F;
    --warningIcon: white;
    --statusBlocked: red;       /*Hardcode in backend.css*/
    --statusActive: #208D33;    /*Hardcode in backend.css*/
    --accountIconView_Background: #CFDDE4;
    --upDownBtn_Color: #737B7F;
    --upDownBtn_Border: #737B7F;
    --upDownBtn_SelectedColor: white;
    --upDownBtn_SelectedBackground: #737B7F;
    --permissionTable_Border: #ccc;
    --customBtnOutlineDark_Border: #45494C;
    --customBtnOutlineDark_Color: #45494C;
    --customBtnOutlineDark_HoverBorder: #45494C;
    --customBtnOutlineDark_HoverColor: #45494C;

    --designWidth: 1920;
    --designHeight: 1080;

    --font-family: Helvetica;
}

* {
    font-family: var(--font-family);
}

.text-center {
    text-align: center !important;
}

.alert {
    font-size: 14px;
    text-align: left;
    margin: 5px 0;
}

.alert-danger {
    color: var(--error);
}

.cursor-pointer,
.cursor-pointer * {
    cursor: pointer;
}

.flex-box {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-between {
    justify-content: space-between;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

a *, button {
    cursor: pointer;
}

a {
    display: flex;
    color: inherit;
    text-decoration: none;
}

.highcharts-credits {
    display: none;
}

#chart_one path.highcharts-point {
    stroke-width: 0 !important;
}

.no-data {
    text-align: center;
}

.require-span {
    color: var(--statusBlocked);
}