:root {
    --secondary-color: #00ABD0;
    --secondary-light: #bff9ff;
    --primary-color: #162953;
    --primary-light: #25468d;
    --dark-gray: #979797;
    --white: white;
    --border-color: #f5f5f5;
}

@media print {
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        padding: 0 !important;
    }

    .chart_wrapper--donut {
        margin-left: 0 !important;
        gap: 0 !important;
        page-break-before: avoid !important;
    }

    #primary-chart {
        height: 375px !important;
    }

    .table-cell--age {
        gap: 0 !important;
        flex-wrap: nowrap !important;
    }

    .result-table td,
    .result-table th {
        padding: 1rem 0.5rem !important;
    }
}

* {
    font-family: Inter, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed
}

p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.hidden {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #111827;
    text-decoration: none;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
    gap: 0.5rem;
    padding: 0.5rem;
}

.wrapper {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #f3f4f6;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

.ml-auto {
    margin-left: auto;
}

html[dir=rtl] .ml-auto {
    margin-left: 0;
    margin-right: auto;
}

b,
span {
    color: inherit;
}

.regular {
    font-weight: 400 !important;
}

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

.related-item-hidden {
    display: none !important;
}