﻿
:root {
    --color-background: #F4F6F7;
    --color-background-darker: #F4F2F2;
    --color-border: #CCCCCC;
    --color-border-darker: #707070;
    --color-primary: #8DC492;
    --color-primary-darker: #3E6C52;
    --color-secondary: #A4E5EA;
    --color-secondary-darker: #007783;
    --color-accent: #9A2D92;
    --color-white: #FFFFFF;
    --color-black: #3A434F;
    --color-grey: #455261;
}

@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 300;
    src: url("/css/icons/material-icons.woff2") format("woff2");
}

*[class*=icon__]::before {
    content: "";
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    height: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    vertical-align: middle;
    width: 1.5rem;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -moz-font-feature-settings: "liga";
    -moz-osx-font-smoothing: grayscale;
}

.icon--large::before {
    font-size: 2.5rem;
    height: 2.5rem;
    width: 2.5rem;
}

.icon--white::before {
    color: var(--color-white);
}

.icon--black::before {
    color: var(--color-black);
}

.icon--grey::before {
    color: var(--color-grey);
}

.icon--primary::before {
    color: var(--color-primary-darker);
}

.icon--secondary::before {
    color: var(--color-secondary-darker);
}

.icon--accent::before {
    color: var(--color-accent);
}

.icon__search::before {
    content: "\e8b6";
}

.icon__touch_app::before {
    content: "\e913";
}

.icon__add::before {
    content: "\e145";
}

.icon__compare::before {
    content: "\e3b9";
}

.icon__visibility::before {
    content: "\e8f4";
}

.icon__visibility_off::before {
    content: "\e8f5";
}

.icon__calendar_month::before {
    content: "\ebcc";
}

.icon__location_on::before {
    content: "\e0c8";
}

.icon__send::before {
    content: "\e163";
}

.icon__ink_eraser::before {
    content: "\e6d0";
}

.icon__arrow_back::before {
    content: "\e317";
}

.icon__expand_more::before {
    content: "\e5cf";
}

.icon__navigate_next::before {
    content: "\e409";
}

.icon__navigate_before::before {
    content: "\e408";
}

.icon__arrow_drop_down::before {
    content: "\e5c5";
}

.icon__arrow_right::before {
    content: "\e5df";
}

.icon__arrow_left::before {
    content: "\e5de";
}

.icon__edit::before {
    content: "\e3c9";
}

.icon__stylus::before {
    content: "\f604";
}

.icon__delete::before {
    content: "\e872";
}

.icon__person::before {
    content: "\e7fd";
}

.icon__check_box::before {
    content: "\e835";
}

.icon__select_check_box::before {
    content: "\f1fe";
}

.icon__close::before {
    content: "\e5cd";
}

.icon__more_horiz::before {
    content: "\e5d3";
}

.icon__more_vert::before {
    content: "\e5d4";
}

.icon__lock::before {
    content: "\e897";
}

.icon__page_info::before {
    content: "\f614";
}

.icon__sunny::before {
    content: "\e81a";
}

.icon__partly_cloudy_day::before {
    content: "\f172";
}

.icon__rainy::before {
    content: "\f176";
}

.icon__air::before {
    content: "\efd8";
}

.icon__event::before {
    content: "\e878";
}

.icon__file_present::before {
    content: "\ea0e";
}

.icon__dock_to_left::before {
    content: "\f7e5";
}

.kanban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.34375vw;
    width: 100%;
}

.kanban__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
    min-width: 0;
}

.kanban__title {
    border-bottom: 0.125rem solid var(--color-border);
    font-size: max(12px, 1.3020833333vw);
    margin-bottom: 0.3125rem;
    overflow: hidden;
    padding-bottom: 0.625rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kanban__container {
    background: var(--color-white);
    border: 0.0625rem solid var(--color-border);
    min-height: 3.125rem;
}

.popin {
    border: none;
    background: transparent;
    margin: auto;
    max-height: calc(100vh - 2.8125rem);
    max-width: 75.75rem;
    opacity: 0;
    overflow: hidden;
    padding: 2.8125rem;
    z-index: 200;
    width: calc(100vw - 3.125rem);
}

    .popin::-ms-backdrop {
        background-color: white;
    }

    .popin::backdrop {
        background-color: white;
    }

    .popin[open] {
        -webkit-animation: popinFadeIn 0.15s ease-in forwards;
        animation: popinFadeIn 0.15s ease-in forwards;
    }

        .popin[open]::-ms-backdrop {
            animation: backdropFadeIn 0.15s ease-in forwards;
            opacity: 0.75;
        }

        .popin[open]::backdrop {
            -webkit-animation: backdropFadeIn 0.15s ease-in forwards;
            animation: backdropFadeIn 0.15s ease-in forwards;
            opacity: 0.75;
        }

@-webkit-keyframes popinFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popinFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.75;
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.75;
    }
}

.popin__content {
    background: var(--color-white);
    border: 0.0625rem solid var(--color-border-darker);
    max-height: calc(100vh - 8.4375rem);
    padding: 2.1875rem;
    overflow: auto;
}

.popin__close {
    aspect-ratio: 1;
    background: var(--color-white);
    border: 0.0625rem solid var(--color-border-darker);
    border-radius: 50%;
    position: absolute;
    right: 0.4375rem;
    top: 0.4375rem;
    width: 4.75rem;
    z-index: 1;
}

    .popin__close:active {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: var(--color-background);
    color: var(--color-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    scrollbar-color: var(--color-primary-darker) var(--color-primary);
}

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 1rem;
        height: 1rem;
    }

    html::-webkit-scrollbar-thumb,
    body::-webkit-scrollbar-thumb {
        background-color: var(--color-primary-darker);
    }

    html::-webkit-scrollbar-track,
    body::-webkit-scrollbar-track {
        background: var(--color-primary);
    }

img {
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    background: none;
    cursor: pointer;
    border: none;
}

    button::-moz-focus-inner {
        border: none;
    }

    button:active {
        -webkit-transform: translateY(0.125rem);
        transform: translateY(0.125rem);
    }

    a:focus-visible,
    button:focus-visible {
        outline: 2px dotted var(--color-accent);
        outline-offset: 0.125em;
    }

.spacer {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

h1 {
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 100;
    line-height: 1em;
    margin: 0.9375rem 0;
}

h2 {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.9375rem 0;
}

h3 {
    font-size: 2.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.9375rem 0;
}

h4 {
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 100;
    line-height: 1em;
    margin: 0.9375rem 0;
}

h5 {
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.9375rem 0;
}

h6 {
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0.9375rem 0;
}

p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2em;
}

    p:not(:first-child) {
        margin-top: 1.25rem;
    }

a {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    color: var(--color-black);
    -webkit-transition: color 0.1s linear;
    transition: color 0.1s linear;
}

    a:focus, a:hover {
        color: var(--color-secondary-darker);
    }

    a.current {
        color: var(--color-secondary-darker);
        text-decoration: underline;
    }

small {
    font-size: 0.9375rem;
    line-height: 1.2em;
}

hr {
    background: var(--color-border-darker);
    border: none;
    height: 0.125rem;
    margin: 1.25rem auto;
    width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__welcome {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: white !important;
    color: var(--color-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5.1875rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 2.1875rem;
    border-bottom: 2mm solid #714b67 !important;
}

.header__name {
    margin-right: 4.4270833333vw;
    color:#212529 !important;
}

.header__quick-access {
    color: var(--color-white);
}

    .header__quick-access:hover, .header__quick-access:focus {
        color: var(--color-white);
    }

.header__campaign::before {
    content: "";
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.header__nav {
    background: #002e78 !important;
    color: var(--color-white);
    height: 3.1875rem;
}

.header__categories {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    list-style-type: none;
    position: relative;
    width: 100%;
}

.header__category {
    height: 100%;
}

    .header__category > a {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--color-white);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: max(12px, 1.3020833333vw);
        height: 100%;
        padding: 0 0.78125vw;
        text-align: center;
        -webkit-transition: color 0.05s linear;
        transition: color 0.05s linear;
    }

        .header__category > a:hover, .header__category > a.header__category--current {
            color: #c0191d;
        }

        .header__category > a.header__category--current {
            text-decoration: underline;
        }

.header__layer {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: var(--color-background-darker);
    border: 0.0625rem solid var(--color-border-darker);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    inset: 3.1875rem 0 auto;
    opacity: 0;
    pointer-events: none;
    padding: 1.5625vw 2.34375vw 3.90625vw;
    position: absolute;
    -webkit-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
    z-index: 100;
}

.header__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 1.0416666667vw;
}

    .header__column:not(:last-child) {
        margin-right: 3.125vw;
    }

    .header__column > a {
        color: var(--color-black);
        font-size: max(12px, 1.3020833333vw);
        -webkit-transition: color 0.1s linear;
        transition: color 0.1s linear;
    }

        .header__column > a:focus, .header__column > a:hover {
            color: var(--color-secondary-darker);
        }

        .header__column > a.current {
            color: var(--color-secondary-darker);
            text-decoration: underline;
        }

.header__category a:focus-visible + .header__layer,
.header__category a:hover + .header__layer,
.header__layer:hover,
.header__layer:focus-within {
    opacity: 1;
    pointer-events: auto;
}

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.main-container {
    padding: 1.5625rem 1.25rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.menu {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--color-background-darker);
    border: 0.0625rem solid var(--color-border-darker);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 5.3125rem;
    list-style-type: none;
    margin-bottom: 0.625rem;
    padding: 0 1.5625vw;
    width: 100%;
}

    .menu li {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: var(--color-black);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: max(12px, 1.3020833333vw);
        height: 100%;
    }

        .menu li.separator {
            background: var(--color-border-darker);
            height: 2.5rem;
            width: 0.0625rem;
        }

.menu--static {
    position: sticky;
    top: 7.375rem;
}

.menu__back {
    padding-right: 1.0416666667vw;
    position: relative;
    z-index: 1;
}

    .menu__back::before {
        margin: 0 1.25rem 0 0.8125rem;
    }

    .menu__back::after {
        aspect-ratio: 1;
        background: var(--color-secondary);
        border-radius: 50%;
        content: "";
        left: 0;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 3.75rem;
        z-index: -1;
    }

*[class*=menu__link] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: max(12px, 1.3020833333vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding: 0 1.0416666667vw;
    text-align: left;
    -webkit-transition: color 0.05s linear;
    transition: color 0.05s linear;
}

    *[class*=menu__link]:focus, *[class*=menu__link]:hover {
        color: var(--color-secondary-darker);
    }

    *[class*=menu__link][class*=icon__]::before {
        font-size: max(20px, 2.0833333333vw);
        height: max(20px, 2.0833333333vw);
        width: max(20px, 2.0833333333vw);
    }

.menu__link--small {
    font-size: max(10px, 1.0416666667vw);
}

.menu__link--current {
    color: var(--color-secondary-darker);
    text-decoration: underline;
}


.menu__link {
    cursor: pointer !important;
}


#search {
    border: 0.0625rem solid var(--color-border-darker);
    border-radius: 0;
    font-size: max(10px, 1.0416666667vw);
    height: 2.25rem;
    padding: 0 0.625rem;
    width: 16.6666666667vw;
}

    #search + button {
        background: var(--color-secondary-darker);
        border: 0.0625rem solid var(--color-border-darker);
        border-left: 0;
        border-radius: 0 0.3125rem 0.3125rem 0;
        height: 2.25rem;
        width: 3.125rem;
    }

    #search:focus-visible {
        outline: none;
        border-color: var(--color-accent);
    }

        #search:focus-visible + button {
            border-color: var(--color-accent);
        }

.sidebar {
    background: #f4f6f7;
    width: 33.3333333333vw;
    margin-right: 0.625rem;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.sidebar--hidden {
    margin: 0;
    opacity: 0;
    overflow: hidden;
    width: 0;
}
