
#page-load .backdrop{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
    padding: 0;
    margin: 0;
}

#page-load .backdrop.fade {
    transition: opacity .15s linear;
}

.parent-modal{
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1056;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

#page-load .parent-modal .dialog{
    position: relative;
    width: 300px;
    margin: 1rem;
    pointer-events: none;
    transition: transform .3s ease-out;
}

#page-load .parent-modal .dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(1rem) * 2);
}

#page-load .parent-modal .dialog .content-modal{
    border: none;
    border-radius: 24px;
    box-shadow: 0 5px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    outline: 0;
    padding: 1rem;
}

.load-spiner {
    width: 40px;
    height: 40px;
    border: 3px solid #11432e;
    border-top: 3px solid transparent;
    border-radius: 100%;
    margin-right: 20px;
    animation: spiner 1s ease infinite;
}
@keyframes spiner {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
