﻿.blazor-modal-container {
    display: none;
    position: fixed;
    width: 75%;
    padding-left: 25%;
    padding-top: 25vh;
    z-index: 100;
}

.blazor-modal-containerOld {
    height: 75%;
}

.blazor-modal-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 101;
}

.blazor-modal-overlay-old {
    background-color: rgba(0,0,0,0.5);
}

.blazor-modal-active {
    display: flex;
}

.blazor-modal {
    display: flex;
    flex-direction: column;
    width: 50rem;
    padding: 1.5rem;
    background-color = blue;
}

.blazor-modalOld {
    display: flex;
    flex-direction: column;
    width: 50rem;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    box-shadow: 0 2px 2px rgba(0,0,0,.25);
}

.blazor-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 2rem 0;
}

.blazor-modal-title {
    margin-bottom: 0;
}

.blazor-modal-close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
}

.blazor-modal-center {
    align-items: center;
    justify-content: center;
}

.blazor-modal-wraper {
    display: flex;
    flex-direction: column;
    width: 50rem;
    background-color: rgba(65,105,225,0.8);
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.5rem;
    z-index: 102;
}

.blazor-modal-wraperOld {
    background-color: #fff;
}

.blazor-modal-topleft .blazor-modal-wraper {
    position: absolute;
    top: 32px;
    left: 32px;
}

.blazor-modal-topright .blazor-modal-wraper {
    position: absolute;
    top: 32px;
    right: 32px;
}

.blazor-modal-bottomleft .blazor-modal-wraper {
    position: absolute;
    bottom: 32px;
    left: 32px;
}

.blazor-modal-bottomleft .blazor-modal-wraper {
    position: absolute;
    bottom: 32px;
    right: 32px;
}
