.tr-dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.5;
	display: none;
	z-index: 1000;
}

.tr-dialog {
	position: absolute;
	top: 5%;
	left: 50%;
	width: 50%;
	/*min-height: 50%;*/
	-webkit-box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 10px 10px 16px 0px rgba(0, 0, 0, 0.75);
	background: white;
	border-radius: 4px;
	overflow: hidden;
}

.tr-dialog>div {
  overflow: hidden;
  padding: 4%;
}

.tr-dialog .tr-dialog-head {
  font-size: 20px;
  background-color: #73b227;
  color: white;
}

.tr-dialog .tr-dialog-foot a.action {
	background-color: #c00;
	border-radius: 2px;
	bottom: 5%;
	color: white;
	font-size: 0.8em;
	padding: 4px 14px;
	text-transform: uppercase;
}

.tr-dialog .tr-dialog-head {
	position: relative;
	min-height: 24px;
}

.tr-dialog .tr-dialog-content {
	position: relative;
}

.tr-dialog.tr-loading .tr-dialog-content {
	opacity: 0.5;
}

.tr-dialog-loading {
	background: url('loading.gif') center center no-repeat;
	display: block;
	float: right;
	width: 160px;
	height: 24px;
}

.tr-dialog-content .messages{
   list-style-type:none;
   margin:0px;
   padding:0px;
}

// toDO
.tr-dialog .container{
  width:auto !important;
}