.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 46px;
    width: 100%; /* Full width */
    height: calc(100% - 46px); /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
	position:absolute;
	left:1%;
	top:1%;
    background-color: var(--theme-Settings-background);
    border: 1px solid #888;
    width: 98%;
	height: 98%;
	border-radius:4px;
}
#leftList {
	position:absolute;
	left:0px;
	top:0px;
	width:210px;
	height:100%;
    background-color: var(--theme-background);
	border-radius:4px 0px 0px 4px;
}
#subList {
	position:absolute;
	left:210px;
	top:0px;
	width:190px;
	height: 100%;
	border-left: 1px solid var(--theme-table-border-color);
    border-right: 1px solid var(--theme-table-border-color);
	padding-top:10px;
	padding-bottom:10px;
	overflow-y:auto;
}
#modalContent {
	position:absolute;
	left: 400px;
	width: calc(100% - 400px);
	height: 100%;
	padding:10px 25px;
}
#modalSettingsTitle {
	line-height:32px;
	font-size: 21px;
	margin: 0;
    border: 0;
	padding:10px 10px 20px 10px;
}
.modalItem {
    height: 36px;
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    padding: 0px 14px;
    background-color: transparent;
    border: 0px;
    text-align: left;
    color: var(--theme-text-color);
}
.modalItem:hover {
	background-color: var(--theme-Settings-button-hover);
}
.modalItem.activee {
	background-color:var(--theme-Settings-button);
	font-weight:bold;
}
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 55px;
    margin-right: 12px;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.close.WhiteRed {
    color: #fff;
}
.close.WhiteRed:hover,
.close.WhiteRed:focus {
    color: rgb(238, 28, 28);
}


#ModalDialogInputs {
    height: calc(100% - 80px);
    overflow-y: scroll;
}
.modal-content.PasswordReset{
    padding: 50px;
    width: 420px;
    height: 460px;
    left: calc(50% - 210px);
    top: calc(50% - 230px);
}
#ModalDialogHeader, #ModalDialogInputs {
    padding: 20px;
}
.modal-content.Main-modal-content {
    position: absolute;
    left: calc(50% - 400px);
    top: 20px;
    width: 800px;
    height: calc(100% - 40px);
    box-shadow: var(--ds-shadow-overlay,0 0 0 1px rgba(9,30,66,0.08),0 2px 1px rgba(9,30,66,0.08),0 0 20px -6px rgba(9,30,66,0.31));
}
#ModButtonArea {
    float: right;
    line-height: 12px;
    margin-right: 8px;
    width: 400px;
}
.ModButton_button {
    line-height: 12px;
    border: 1px solid #0a0a0a;
    height: 30px;
    overflow: hidden;
    font-size: 14px;
    padding: 0px 24px;
    text-align: center;
    margin-right: 8px;
    float: right;
    width: auto;
	background-color:#eee;
	font-weight:bold;
}
.ModButton_button:hover {
	background-color:#d0d0d0;
}
#titleName { display: inline-block;}