.oidc {
    --oidc-border-color: rgba(0, 0, 0, 0.175);
    --oidc-border-width: 1px;
    --oidc-border-radius: 0.375rem;
    --oidc-background-color: #fff;
}

.oidc-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-height: 10rem;
    width: 340px;
    background-color: white;
    border: 1px solid var(--oidc-border-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .oidc-dialog iframe {
        border: 0px;
        width: 100%;
        min-height: 20rem;
        margin: 0px;
        padding: 0px;
    }

.oidc-dialog-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 10px;
}

    .oidc-dialog-head .title {
        user-select: none;
        cursor: move;
        flex: 100%;
    }

    .oidc-dialog-head .close {
        font-family: Cambria, Cochin, Georgia, Times, Times New Roman, serif;
        font-size: 10px;
        display: block;
        width: 14px;
        height: 14px;
        background-color: brown;
        text-align: center;
        border: 1px solid #bbb;
        border-radius: 3px;
        padding: 2px;
    }

        .oidc-dialog-head .close:hover {
            background-color: red;
            color: white;
            font-weight: bold;
            cursor: pointer;
        }

.oidc-dialog-body {
    margin: 0px 10px;
    /*padding: 10px;
    border: 1px solid var(--oidc-border-color);*/
    flex: 100%;
}

.oidc-dialog-foot {
    color: #bbb;
    font-size: 10px;
    padding: 5px 10px;
}

.oidc-card {
    border: var(--oidc-border-width) solid var(--oidc-border-color);
    border-radius: var(--oidc-border-radius);
    background-color: var(--oidc-background-color);
}

.oidc-card_head, .oidc-card_foot {
    padding: 0.5rem;
}

.oidc-card_head {
    text-align: left;
    border-bottom: var(--oidc-border-width) solid var(--oidc-border-color);
}

.oidc-card_body {
    padding: 1rem;
}

.oidc-card_foot {
    text-align: right;
    border-top: var(--oidc-border-width) solid var(--oidc-border-color);
}

.oidc-list {
    width: 100%;
    margin: 0 auto;
}

.oidc-list-item {
    border-radius: var(--oidc-border-radius);
    border: var(--oidc-border-width) solid var(--oidc-border-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px;
    cursor: pointer;
    overflow: hidden;
    margin: 5px;
}

    .oidc-list-item:hover {
        background-color: aliceblue;
    }

    .oidc-list-item .logo {
        width: 24px;
        height: 24px;
    }

        .oidc-list-item .logo > img {
            display: block;
            height: 100%;
            width: 100%;
            border-radius: .25rem !important;
        }

    .oidc-list-item .line {
        width: 1px;
        height: 22px;
        content: " ";
        background-color: #e7e9eb;
    }

    .oidc-list-item .text {
        flex: 1;
    }

    .oidc-list-item .tips {
        color: #BBB;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
    }

.oidc-list-icon {
    padding: 5px;
    border-radius: var(--oidc-border-radius);
    cursor: pointer;
    border: var(--oidc-border-width) solid var(--oidc-background-color);
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

    .oidc-list-icon:hover {
        border: var(--oidc-border-width) solid var(--oidc-border-color);
    }

    .oidc-list-icon .logo {
        text-align: center;
        width: 24px;
        height: 24px;
    }

        .oidc-list-icon .logo > img {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: .25rem !important;
        }

.oidc-list-card {
    padding: 10px;
    border-radius: var(--oidc-border-radius);
    cursor: pointer;
    border: var(--oidc-border-width) solid var(--oidc-background-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .oidc-list-card:hover {
        border: var(--oidc-border-width) solid var(--oidc-border-color);
    }

    .oidc-list-card .logo {
        text-align: center;
        width: 32px;
        height: 32px;
    }

        .oidc-list-card .logo > img {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: .25rem !important;
        }

    .oidc-list-card .text {
        margin-top: 10px;
        border: 1px solid #f8f8f8;
        line-height: 20px;
        border-radius: 3px;
        background-color: #fafafa;
        width: 100%;
        word-wrap: normal;
        overflow: hidden;
    }

    .oidc-list-card .tips {
        display: none;
    }
