:root {
    --primary-color: DodgerBlue;
    --grey-soft: #f2f2f2;
    --grey-light: #ccc;
    --grey-medium: #373e44;
    --grey-dark: #212529;
    --grey-darker: #181b1e;
    --layout-gap: 0rem;
}

/*
 * ----------------------------------------------------------------------------------------
 * GMS-Symbols.
 * ----------------------------------------------------------------------------------------
 */
@font-face {
    font-family: 'Material Symbols Round';
    font-style: normal;
    src: url('../fonts/material-symbols-round.woff2') format('woff');
    font-display: block;
}

.msr,
.material-symbols-round {
    font-family: 'Material Symbols Round';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings:
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}

.msr.filled-light,
.material-symbols-round.ms-filled-light {
    font-variation-settings:
        'FILL' 1,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

.msr.outlined,
.material-symbols-round.ms-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
}

.msr.outlined-light,
.material-symbols-round.ms-outlined-light {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

/*
 * ----------------------------------------------------------------------------------------
 * Layout
 * ----------------------------------------------------------------------------------------
 */
html,
body {
    margin: 0;
    background-color: #f3f3f3;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-lg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#topbar {
    flex: 0 0 auto;
    margin-bottom: var(--layout-gap);
}

.main-row {
    flex: 1 0 auto;
    display: flex;
    align-items: stretch;
    gap: var(--layout-gap);
    min-height: 0;
}

.sidebar {
    flex: 0 0 25%;
}

.content {
    flex: 1 1 0;
    min-width: 0;
}

.layout-content {
    background-color: #fff;
}

#breadcrumbs {
    flex: 0 0 auto;
    margin-bottom: var(--layout-gap);
}


label{
    font-weight:500;
}
.fs-4{
    font-weight:300 !important;
}
.breadcrumb {
    margin-bottom: 0;
}

/*
 * ----------------------------------------------------------------------------------------
 * Dropdown
 * ----------------------------------------------------------------------------------------
 */
#my-btn-more::after {
    display: none;
}
