﻿/* ORIGINALI MODIFICATI (overwrite) */
/* overflow-y: auto; SCROLLABLE Y DA MOBILE */
.blazored-modal-container {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    /*Aggiunto*/
    overflow-y: auto;
}

/* overflow-y: auto; +TopCenter SCROLLABLE Y DA MOBILE */
.blazored-modal-topcenter {
    justify-content: center;
    /*align-items: center;*/
    /*Aggiunto*/
    align-items: flex-start;
    top: 10px;
    overflow-y: auto;
}

/* Ombra top -10*/
/*.blazored-modal-overlay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 101;
    background-color: rgba(0,0,0,0.5);*/
/*Aggiunto*/
/*margin-top: -10px;
}*/

/*.blazored-modal-wrapper {
    z-index: 102;
    width: 100%;
}*/
