﻿.lc-csp-blockui-host {
    position: relative;
}

.lc-csp-blockui-page-open {
    cursor: wait;
}

.lc-csp-blockui[hidden] {
    display: none !important;
}

.lc-csp-blockui {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.lc-csp-blockui.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lc-csp-blockui--page {
    position: fixed;
    z-index: 1000;
}

.lc-csp-blockui--no-overlay .lc-csp-blockui__backdrop {
    display: none;
}

.lc-csp-blockui--no-overlay.is-active {
    pointer-events: none;
}

.lc-csp-blockui--no-overlay .lc-csp-blockui__box {
    pointer-events: auto;
}

.lc-csp-blockui__backdrop {
    background-color: rgba(255, 255, 255, 0.68);
    inset: 0;
    position: absolute;
}

.lc-csp-blockui--page .lc-csp-blockui__backdrop {
    background-color: rgba(0, 0, 0, 0.35);
}

.lc-csp-blockui__content {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: absolute;
}

.lc-csp-blockui__content--passive {
    pointer-events: none;
}

.lc-csp-blockui__box {
    align-items: center;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.16);
    color: #212529;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    max-width: min(100%, 22rem);
    min-width: 8rem;
    padding: 1rem 1.25rem;
    text-align: center;
}

.lc-csp-blockui--page .lc-csp-blockui__box {
    min-width: 9rem;
}

.lc-csp-blockui__spinner {
    animation: lc-csp-blockui-spin 0.75s linear infinite;
    border: 0.25rem solid rgba(13, 110, 253, 0.18);
    border-radius: 50%;
    border-top-color: #0d6efd;
    height: 2.5rem;
    width: 2.5rem;
}

.lc-csp-blockui__message {
    line-height: 1.5;
}

.lc-csp-blockui__message[hidden] {
    display: none;
}

@keyframes lc-csp-blockui-spin {
    to {
        transform: rotate(360deg);
    }
}

