#sso-page {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    overflow-y: auto;
}

#sso-content {
    min-width: 320px;
    max-width: 375px;
}

#sso-content.wide {
    max-width: 80%;
    margin: 100px auto auto;
}

.text-error>a {
    text-decoration: underline;
}

.button--idp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.debug::before {
    content: "[-]";
    display: block;
    font-family: Fixed, monospace;
    font-size: 12px;
    color: #666666;
    background-color: #eeeeee;
}

.debug--collapsed::before {
    content: "[+]";
}

.debug--collapsed > * {
    display: none;
}

.debug__code {
    font-family: Fixed, monospace;
    white-space: pre-wrap;
    width: 100%;
    font-size: 12px;
    color: #666;
    background-color: #eee;
    padding-top: 10px;
}

table.cookie > tbody > tr > td {
    vertical-align: top;
    padding: 0 2rem 0 0;
}
table.cookie > tbody > tr > td:nth-child(1) {
    color: #017c6b;
}
table.cookie > tbody > tr > td:nth-child(1) > .chip {
    background-color: #017c6b;
    color: #fff;
}
table.cookie > tbody > tr > td:nth-child(3) {
    color: #d580b0;
}
table.cookie > tbody > tr > td:nth-child(3) > .chip {
    background-color: #d580b0;
    color: #fff;
}
table.cookie > tbody > tr > td:nth-child(5) {
    color: #8381c6;
}
table.cookie > tbody > tr > td:nth-child(5) > .chip {
    background-color: #8381c6;
    color: #fff;
}

table.kv > tbody > tr > th,
table.kv > tbody > tr > td {
    padding: 0;
}
table.kv > tbody > tr > th {
    text-align: left;
    vertical-align: top;
    padding-right: 1rem;
}

.client-id {
    color: #017c6b;
}

#auth-check {
    display: inline-block;
}

.auth-result span {
    font-size: 120%;
    line-height: 1;
}

.auth-result svg {
    display: none;
    vertical-align: top;
    max-width: 24px;
}

.auth-result.status2xx {
    color: #017c6b;
}
.auth-result.status2xx .status2xx {
    display: inline-block;
}
.auth-result.status4xx {
    color: #dc0045;
}
.auth-result.status4xx .status4xx {
    display: inline-block;
}
.auth-result.status5xx {
    color: #dc0045;
}
.auth-result.status5xx .status5xx {
    display: inline-block;
}

.introspect .debug__code {
    padding-top: 0;
}

.loading-spinner {
    animation: rotator 1.4s linear infinite;
}

.loading-spinner > .loading-spinner__path {
    stroke: #ffcd00;
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: dash 1.4s ease-in-out infinite;
}

input::placeholder {
    /*noinspection CssUnresolvedCustomProperty*/
    color: var(--color-grey) !important;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 187;
    }

    50% {
        stroke-dashoffset: 46.75;
        transform: rotate(135deg);
    }

    100% {
        stroke-dashoffset: 187;
        transform: rotate(450deg);
    }
}


/*# sourceMappingURL=ui.0dd5b7553c2842b8a33f.css.map*/