html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.input-group-icon {
    min-width: 44px;
    vertical-align: central;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-gray {
    background-color: var(--bs-gray-200);
}

/* Bootstrap overrides */

.list-group-item-action:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

    .list-group-item-action:hover > .text-muted {
        color: var(--bs-white);
    }

.card-table {
    margin-bottom: 0px;
}

    .card-table tbody tr:last-of-type td, .card-table tbody tr:last-of-type th {
        border-bottom: 0px;
    }

.azsj-list-group .list-group-item {
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-bottom: 1px solid var(--bs-gray-100);
}

    .azsj-list-group .list-group-item:last-child {
        border-bottom: 0px;
    }

.azsj-list-group li:hover {
    color: var(--bs-primary);
}

.azsj-list-group a.list-group-item:hover {
    color: var(--bs-primary);
}

/* No layout, just triggers for jquery functions */
.auto-dispose-alert {
}


.idpUrl {
    color: black;
    text-decoration: none;
}

.loaderDiv {
    vertical-align: middle;
    text-align: center;
    margin-top: 10px;
}

.loader {
    width: 36px;
    height: 36px;
    border: 5px solid black;
    border-bottom-color: #7F87B5;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 