.dn-toast {
    width: 100%;
    max-width: 23rem;
    background-color: var(--nds-color-core_white);
    border-radius: .25rem;
    box-shadow: var(--nds-box-shadow-drop_core_5);
    transform: translateY(100%);
    transition: transform .125s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2001;
}
.dn-toast--visible {
    transform: translateY(-100%);
}

.dn-toast__header {
    align-items: center;
    background-color: var(--nds-color-core_grey_900);
    border-radius: .25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--nds-color-core_white);
    display: flex;
    justify-content: space-between;
    padding: .5rem;
}
.dn-toast__header--nds-color-semantic_error_500 { background-color: var(--nds-color-semantic_error_500); }

.dn-toast__subject {
   font: var(--nc-t-body_black); 
}

.dn-toast__body {
    font: var(--nc-t-sub_text_regular);
}

.dn-toast__close_button {
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: var(--nds-color-core_white);
    font-size: 1.125rem;
}

.dn-toast__progress {
    background-color: var(--nds-color-core_white);
    position: absolute;
    left: 0;
    bottom: 0;
    height: .25rem;
    animation-fill-mode: forwards;
}

@keyframes toastProgress {
    0% { width: 100%; }
    100% { width: 0; }
}

.dn-toasts {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2000;
}

.dn-loading {
    display: inline-block;
    position: relative;
    height: 3.25rem;
    width: 3.25rem;
    border-radius: 3.25rem;
    animation: rotate 3s linear infinite;
    transform-origin: 50% 50%;
}
.dn-loading--blockui {
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    z-index: 4000;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dn-loading__icon {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    height: 6rem;
    width: 6rem;
}

@keyframes rotate {
    from { transform: rotate(0); transform-origin: 50% 50%; }
    to { transform: rotate(360deg); transform-origin: 50% 50%; }
}

.dn-content_skip {
    background-color: var(--nds-color-core_white);
    border-radius: 0.25rem;
    display: block;
    filter: drop-shadow(0px 0px 2px rgba(14, 27, 37, 0.12))
        drop-shadow(0px -2px 16px rgba(14, 27, 37, 0.1));
    left: -12rem;
    opacity: 0;
    padding: 1rem;
    position: absolute;
    text-align: center;
    top: 1rem;
    transform: translateX(0);
    transition: opacity .125s;
    width: 12rem;
}
.dn-content_skip:focus {
    transform: translateX(13rem);
    z-index: 4000;
    opacity: 1;
}

:root {
  /*
    Custom Branding Values
    These have Daupler colors here as an absolute fallback.
  */
  --header_color: var(--nds-color-core_grey_800);
  --header_text: var(--nds-color-core_white);
}


/*
  App declarations
  Global styles, non-component styles (overrides for 3rd party things)
*/
* { outline-color: var(--nds-color-core_blue_500); }
html {
  height: 100%;
  font-family: sans-serif;
}
body {
  background-color: var(--nds-color-core_white);
  min-height: 100vh;
}

a {
  color: var(--nds-color-semantic_primary_500);
}
a:hover {
  color: var(--nds-color-semantic_primary_900);
}

button { cursor: pointer; }

.grecaptcha-badge { visibility: hidden; }

.app_layout {
  display: grid;
  grid-template-rows: 1fr;
  min-height: 100vh;
}

