﻿/* #region Modal Bootstrap */

.modal-dialog {
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    background: white;
    border: 1px solid rgba(0,0,0,.2);
}

    .modal-dialog .modal-header {
        color: white;
        height: 36px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .modal-dialog .modal-header .close {
            margin-top: 2px;
        }

    .modal-dialog .modal-footer {
        height: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .modal-dialog .modal-body {
        height: calc( 100% - 110px);
        overflow-y: auto;
    }

.modal-backdrop {
    height: 1000%; /* TODO a ameliorer*/
    z-index: 1000;
}


@media (min-width: 768px) {
    .modal-dialog.modal-dialog-grande {
        width: calc( 100% - 60px);
        max-width: 1600px;
        margin: 30px auto;
    }
}
/* #endregion */
