﻿.global-menu-container {
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .global-menu-container > button {
        background-color: transparent;
        color: white;
        border: 0;
        box-shadow: none;
        border-radius: unset;
        width: 68px;
        height: 48px;
        line-height: 48px;
    }

        .global-menu-container > button:hover {
            background-color: #0077c4;
            color: white;
            border: 0;
            box-shadow: none;
            border-radius: unset;
        }

    .global-menu-container nav.global-menu-navigation {
        position: fixed;
        /*top: 48px;*/
        left: 0;
        height: 0;
        width: 0;
        overflow: hidden;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
    }

    .global-menu-container.isExpanded nav.global-menu-navigation {
        position: fixed;
        box-shadow: rgb(0 0 0 / 22%) 0px 25.6px 57.6px 0px, rgb(0 0 0 / 18%) 0px 4.8px 14.4px 0px;
        -webkit-animation-name: slideInFrames;
        animation-name: slideInFrames;
        background-color: #fff;
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        box-sizing: border-box;
        outline: none;
        overflow-y: auto;
        visibility: visible;
        pointer-events: auto;
        top: 0;
        left: 0;
        height: 100vh;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-duration: .18s;
        animation-duration: .18s;
        -webkit-animation-timing-function: ease;
        animation-timing-function: ease;
    }

    .global-menu-container.isExpanded button.global-menu-button {
        z-index: 2;
        position: relative;
        color: black;
        background-color: #f6f6f8;
    }

        .global-menu-container.isExpanded button.global-menu-button:hover,
        .global-menu-container.isExpanded button.global-menu-button:active,
        .global-menu-container.isExpanded button.global-menu-button:focus {
            background-color: #f6f6f8 !important;
            box-shadow: unset !important;
        }


@keyframes slideInFrames {
    from {
        visibility: hidden;
        opacity: 0;
        height: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
        height: 100vh;
    }
}



.global-menu__inner {
    margin: 5.5rem 1rem 20px 1rem;
}

.global-menu--title {
    color: #252423;
    font-weight: 500;
    font-size: 1.375rem;
    display: inline-block;
    padding: 0;
}

.global-menu--items {
    margin-top: 1.75rem;
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 0;
}

    .global-menu--items li {
        display: flex;
        position: relative;
        box-sizing: border-box;
        border: 1px solid transparent !important;
        height: 48px;
        line-height: normal;
        text-decoration: none !important;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        transition: border-color 83ms linear,box-shadow 83ms linear;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0.5rem;
    }

        .global-menu--items li:hover {
            border-color: #f4f4f4 !important;
            box-shadow: 0 8px 16px 0 rgb(0 0 0 / 10%);
            transition: border-color .167s linear,box-shadow .167s linear;
        }


h1.app-title {
    color: white;
    transition: color 500ms ease-out;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.global-menu-container.isExpanded h1.app-title {
    position: relative;
    color: black;
    z-index: 1
}

.application-item-container {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    flex: 1 0 auto;
}

    .application-item-container a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        .application-item-container a:hover {
            text-decoration: none;
        }

    .application-item-container .active {
        background-color: var(--accent);
    }

.application-item--link {
}

.application-item--image {
    width: 30px;
    margin-right: 0.5rem;
}

    .application-item--image img {
        max-height: 26px;
        max-width: 26px;
    }

.application-item--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}

.k-pager-numbers .k-state-selected {
    z-index: unset !important;
}


.global-menu-container .global-menu__inner {
    opacity: 0;
    transform: translateX(-1rem);
    transition: opacity 400ms ease-in-out, transform 350ms ease-in-out;
}

.global-menu-container.isExpanded .global-menu__inner {
    opacity: 1;
    transform: translateX(0);
}

.application-item--text {
    color: black;
}

.link-disabled {
    color: gray;
}

    .link-disabled .application-item--image {
        filter: gray;
        -webkit-filter: grayscale(100%);
    }

span.culture-dropdown span.k-input-inner > span {
    display: flex;
    align-items: center;
}

    span.culture-dropdown span.k-input-inner > span > span {
        margin-right: 0.5rem;
    }

.culture-dropdown button {
    display: none;
}

.circular_image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
}

    .circular_image img {
        width: 100%;
    }

.circular_image_initials {
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    background-color: yellowgreen;
    display: inline-block;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }