.blazored-modal-container {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.blazored-modal-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(0,0,0,0.5);
}

.blazored-modal-active {
    display: flex;
}

.blazored-modal {
    display: flex;
    flex-direction: column;
    width: 60rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 4;
}

.blazored-modal-small {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #aeaeae;
    padding: 1.5rem;
    z-index: 4;
}

.blazored-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 2rem 0;
}

.blazored-modal-title {
    margin-bottom: 0;
}

.blazored-modal-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
}

.blazored-modal-wrapper {
    z-index: 102;
}

.blazored-modal-topright .blazored-modal-wrapper {
    position: absolute;
    top: 32px;
    right: 32px;
}

.blazored-modal-topleft .blazored-modal-wrapper {
    position: absolute;
    top: 32px;
    left: 32px;
}

.blazored-modal-topcenter .blazored-modal-wrapper {
    position: absolute;
    top: 32px;
    left: 29%;
}

.blazored-modal-bottomleft .blazored-modal-wrapper {
    position: absolute;
    bottom: 32px;
    left: 32px;
}

.blazored-modal-bottomright .blazored-modal-wrapper {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.blazored-modal-content {
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 84vh;
}

.blazored-modal-content-no-overflow {
    overflow-y: hidden;
}

.blazored-modal-content-no-overflow-height {
    overflow-y: hidden;
    height: 81vh;
}

.blazored-modal-content-overflow-height {
    overflow-y: auto !important;
    max-height: 75vh !important;
}

