.bm-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

.bm-active {
    display: flex;
}

.blazor-modal {
    display: flex;
    flex-direction: column;
    min-width: 50%;
    max-width: 90%;
    max-height: 98%;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 9999;
    filter: drop-shadow(2px 4px 6px black);
   
}

.blazor-modal-fixed {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 90%;
    max-width: 1000px;
    max-height: 650px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 9999;
    filter: drop-shadow(2px 4px 6px black);
   
}

.blazor-modal-large {
    display: flex;
    flex-direction: column;
    width: 85%;
    height: 80%;
    max-width: 1400px;
    max-height: 700px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 9999;
    filter: drop-shadow(2px 4px 6px black);
    
}

.blazor-modal-full {
    display: flex;
    flex-direction: column;
    width: 98%;
    height: 98%;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #fff;
    z-index: 9999;
    filter: drop-shadow(2px 4px 6px black);
   
}

.bm-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
}

.bm-content {
    padding: 0.5rem 1.5rem 0 1.5rem;
    margin-bottom: 1.5rem;
    height: 100%;
    min-height: 48px;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.bm-separator {
    margin: 0 1.5rem 0 1.5rem;
    height: 1px;
    background-color: #cbcbcb;
}

.bm-footer {
    text-align: right;
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.bm-flex-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.bm-left-footer {
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.bm-button {
    min-width: 100px;
}

/* .bm-title {
    margin-bottom: 0;
} */

.bm-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
}

.progress-bar {
    transition: 0.3s;
}

.modal-dark-lg {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #121212;
    color: #ffffff;
    border: 1px solid #333333;
    z-index: 9999;
}

.modal-dark-header-n {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #000000;
    padding: 0.5rem 0 0.5rem 0;
}

.modal-dark-header-r {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #000000;
    padding: 0.5rem 0.5rem 0.5rem 0;
}

.modal-dark-subheader-r {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: start;
    padding: 0.8rem 1rem 0.8rem 0;
}

.modal-dark-subheader-lr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem 0.8rem 1rem;
}

@media (max-width:768px)
{
    .bm-content {
        padding: 0.5rem !important;
    }
    .blazor-modal, .blazor-modal-fixed, .blazor-modal-large, .blazor-modal-full {
        width: 95% !important;
        overflow-y: auto !important;
    }
}