html.model-open {
	overflow: hidden;
	position: relative;
	overflow: hidden;
}
.agent-model-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	background: rgba( 0,0,0,.7);
	z-index: 1000;
}
.agent-model-window {
    position: absolute;
    top: 50px;
    left: 50%;
    max-width: 98%;
    width: 600px;
    margin-left: -200px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid darkgray;
    max-height: 880px;
	box-sizing: border-box;
}
.agent-model-window #leftcolumn {
	width: 100%;
	float: none;
	flex: 100%;
}
.agent-model-window .account-heading,
.agent-model-window #account_history {
	display: none;
}
.agent-model-header {
	text-align: right;
}
.agent-model-window .profile-box:after {
	width: 100%;
}
.agent-model-body {
	overflow: auto;
	max-height: 738px;
}
.agent-model-body th {
	padding: .5em 0;
}
@media(max-width: 1024px) {
	.agent-model-window {
	    top: 0;
	    left: 1%;
	    margin: 0 auto;
	    max-height: 750px;
	 /*   position: absolute;*/
		overflow: scroll;
	}
	.agent-model-body {
		max-height: 700px;
	}
	.agent-model-bg{
		position:fixed;
	}
}