.modal-container {clear: both; display: none;}
.modal-container.show {display: block !important;}
.modal-container.show {
    position: fixed;
    /*left: 50%;*/
    top: 35%;
    z-index: 1100;
    padding: 30px;
}

.modal-dialog {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: auto;
    overflow-y: auto;
    padding: 20px;
}
.modal-footer{
	padding: 10px;
	margin: 0 auto;
	width: 100%;
	text-align: right;
}
.modal-dialog .btn-close {position: absolute; right: 15px; top: 5px;}
.modal-header {padding: 10px 10px 0 10px; position: relative;}
.modal-body {margin: 10px; font-size: 1em;}
.modal-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #aaa;
    opacity: .80;
    -webkit-opacity: .8;
    -moz-opacity: .8;
    filter: alpha(opacity=80);
    z-index: 1000;
}
body.modal .modal-background {display: block;}
