/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --theme-font-family: 'Roboto', sans-serif;
    /*NAVBAR COLORS*/
    --ob-nav-text-color: #1b1b1b;
    --ob-nav-bg-color: #c3def0;
    /*Background button active sidenav*/
    --ob-nav-list-active-bg-color: #edf5fb;
    /*color-theme*/
    --theme-primary-50: #f8fbfd;
    --theme-primary-100: #edf5fb;
    --theme-primary-200: #e1eff8;
    --theme-primary-300: #d5e8f5;
    --theme-primary-400: #cce3f2;
    --theme-primary-500: #c3def0;
    --theme-primary-600: #bddaee;
    --theme-primary-700: #b5d5ec;
    --theme-primary-800: #aed1e9;
    --theme-primary-900: #a1c8e5;
    --theme-primary-A100: #ffffff;
    --theme-primary-A200: #ffffff;
    --theme-primary-A400: #ffffff;
    --theme-primary-A700: #ffffff;
    /*color-contrast*/
    --theme-primary-contrast-50: #1b1b1b;
    --theme-primary-contrast-100: #1b1b1b;
    --theme-primary-contrast-200: #1b1b1b;
    --theme-primary-contrast-300: #1b1b1b;
    --theme-primary-contrast-400: #1b1b1b;
    --theme-primary-contrast-500: #1b1b1b;
    --theme-primary-contrast-600: #1b1b1b;
    --theme-primary-contrast-700: #1b1b1b;
    --theme-primary-contrast-800: #1b1b1b;
    --theme-primary-contrast-900: #1b1b1b;
    --theme-primary-contrast-A100: #1b1b1b;
    --theme-primary-contrast-A200: #1b1b1b;
    --theme-primary-contrast-A400: #1b1b1b;
    --theme-primary-contrast-A700: #1b1b1b;
}

/*color oscuro para que cuando se seleccione la fecha, no quede el número blanco y genere problemas de contraste*/
.ob-date-range-picker .mat-calendar-body-cell-container .mat-calendar-body-cell .mat-calendar-body-selected,
.ob-date-range-picker .mat-calendar-body-cell-container .mat-calendar-body-cell .mat-calendar-body-range-start,
.ob-date-range-picker .mat-calendar-body-cell-container .mat-calendar-body-cell .mat-calendar-body-range-active {
    color: #1b1b1b;
    background-color: var(--theme-primary-500);
    border: 0;
    box-shadow: unset
}