﻿@import url('open-iconic-1-1-1/font/css/open-iconic-bootstrap.min.css');

#dpp h1 {
    word-break: break-word;
}
html, body, .kl-app {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    display: flex;
    width: 100%;
    height: 100%;
}

.header {
    background-color: #ffffff;
}

.header-title {
    color: #ffffff;
    font-size: larger;
}

.header-link, .header-link:visited {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

    .header-link:hover, .header-link:active, .header-link:focus {
        color: #ffb800;
        text-decoration: none;
    }

.header-nav-icon, .header-nav-icon:visited {
    color: #ffb800;
    font-size: x-large;
    text-decoration: none;
    text-align: center;
}

    .header-nav-icon:hover, .header-nav-icon:active, .header-nav-icon:focus {
        color: #000000;
        text-decoration: none;
    }

.new-version-toast {
    color: #ffffff;
    background-color: #555;
    position: absolute;
    width: 300px;
    height: 140px;
    bottom: 0px;
    right: 25%;
    left: 50%;
    margin-left: -150px;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ffb800;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#blazor-error-ui {
    color: #000000;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
