/* cyrillic-ext */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFWkU1Z4Y.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFU0U1Z4Y.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFVUU1Z4Y.woff2) format('woff2');
    unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFWUU1Z4Y.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/rubik/v23/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFV0U1.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --rz-text-font-family: "Rubik", serif !important;
}

html, body {
    font-family: "Rubik", serif !important;
    height: 100%;
}

body {    
    font-family: "Rubik", serif;
    font-size: 0.875rem;
}

main {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: auto;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgb(0 0 0 / 10%);
    
}

.sidebar .nav-link.active {
    color: #2470dc;
}

.sidebar .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

link.active .feather {
    color: inherit;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

.error {
    color: rgba(220, 53, 69, 1) !important;
}

.text-center {
    text-align: center !important;
}
.vertical-align-top {
    vertical-align: top
}

.grid {
    display: grid;
    min-width: 100% !important;
    width: 100% !important;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10px;
    row-gap: 5px;
}

.grid-col-2 {
    grid-column-start: auto;
    grid-column-end: span 2;
}

.grid-col-3 {
    grid-column-start: auto;
    grid-column-end: span 3;
}

.grid-col-4 {
    grid-column-start: auto;
    grid-column-end: span 4;
}

.grid-col-5 {
    grid-column-start: auto;
    grid-column-end: span 5;
}

.grid-col-6 {
    grid-column-start: auto;
    grid-column-end: span 6;
}

.grid-col-7 {
    grid-column-start: auto;
    grid-column-end: span 7;
}

.grid-col-8 {
    grid-column-start: auto;
    grid-column-end: span 8;
}

.grid-col-9 {
    grid-column-start: auto;
    grid-column-end: span 9;
}

.grid-col-10 {
    grid-column-start: auto;
    grid-column-end: span 10;
}

.grid-col-11 {
    grid-column-start: auto;
    grid-column-end: span 11;
}

.grid-col-12 {
    grid-column-start: auto;
    grid-column-end: span 12;
}

.verticalTextAlign {
    vertical-align: top;
}

form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}