@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400;700&family=Rubik&display=swap');

body {
    font-family: 'Rubik', sans-serif;
    font-size: 12pt;
}

h2 {
    font-weight:700;
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-size: 28pt;
}

h3 {
    font-family: 'Baloo Bhaijaan 2', cursive;
    font-size: 20pt;
}

/* Blazor */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Styles */
:root {
    --red: #e6332d;
    --white: #FFFFFF;
    --gray: #575756;/*#4c4c4c*/
    --light-gray: #d8d8d8;
}


.background-red {
    background-color: var(--red) !important;
}

.background-white {
    background-color: var(--white) !important;
}

.background-gray {
    background-color: var(--gray) !important;
}

.background-light-gray {
    background-color: var(--light-gray) !important;
}


.border-red {
    border-color: var(--red) !important;
}


.color-red {
    color: var(--red);
}

.color-white {
    color: var(--white);
}

.color-gray {
    color: var(--gray);
}


.fs-7 {
    font-size: 0.75rem;
}


.w-3 {
    width: 3.333333% !important;
}


.box-shadow-none {
    box-shadow: none !important;
}


.validation-message {
    color: red;
}


.chart {
    max-height: 300px;
    max-width: 300px;
    margin: auto;
}

.material-icons.red600 {
    color: var(--red);
}

.total-box {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}