/*********************
* Dialogue modale
*********************/

.overlayDialog{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.scrollabel-div{
	overflow:auto;
}

.popup_block{
	background: #fff;
	padding: 10px;
    border: 10px solid #ddd;
	position: relative;
	margin: 5% auto;
	width: 90%;
	height: 90%;
	box-shadow: 0px 0px 5px #000;
	border-radius: 10px;
}

#dialogHeader {
    position:absolute;
    top:10px;
    left:20px;
    right:20px;
    height:30px;
}

#dialogFooter {
    position:absolute;
    bottom:0px;
    left:20px;
    right:20px;
    height:30px;
}

#dialogBox {
	height: 100%;
	max-height: calc(100% - 80px);
    overflow-y: scroll;
    margin-top: 40px !important;
    /*position:relative;*/
    
}