body {
	font-family: 'Arial';
}

hr {
	color: #333;
}

.dlg-container1 {
	position: fixed;
	left: 10%;
	top: -30%;
	transform: translateX(0%) translateY(-50%);
	width: 300px;
	background: #fff;
	padding: 10px;
	border: 2px solid #ddd;
	box-shadow: 1px 1px 5px 1px #ccc;
	border-radius: 10px;
	opacity: 0;
	transition: all 0.3s linear 0s;
	background-color: #FFFFFF;
	z-index: 2;
}

.dlg-container2 {
	position: fixed;
	left: 0;
	top: -30%;
	transform: translateX(0%) translateY(-50%);
	width: 300px;
	background: #fff;
	padding: 10px;
	border: 2px solid #ddd;
	box-shadow: 1px 1px 5px 1px #ccc;
	border-radius: 10px;
	opacity: 0;
	transition: all 0.3s linear 0s;
	background-color: #FFFFFF;
	z-index: 5;
}

.dlg-container4 {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 300px;
	background: #fff;
	padding: 10px;
	border: 2px solid #ddd;
	box-shadow: 1px 1px 5px 1px #ccc;
	border-radius: 10px;
	opacity: 0;
	transition: all 0.3s linear 0s;
	background-color: #FFFFFF;
	z-index: 100;
}
.dlg-container3 {
	position: fixed;
	left: 10%;
	top: -30%;
	transform: translateX(-50%) translateY(-50%);
	width: 180;
	background: #fff;
	padding: 10px;
	border: 2px solid #ddd;
	box-shadow: 1px 1px 5px 1px #ccc;
	border-radius: 10px;
	opacity: 0;
	transition: all 0.3s linear 0s;
	background-color: white;
	z-index: 2;
}

.dlgbp-close:before {
  content: 'X';
  color: #333;
}
.dlgbp-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.dlg-header {
	padding: 10px;
	font-weight: bold;
	background: #575757;
	color: #f6f7f8;
}

.dlg-body {
	padding: 5px;
	line-height: 15px;
	
}

.dlg-bodyc {
	padding: 5px;
	line-height: 20px;	
}

.dlg-body2 {
	line-height: 30px;	
}

.dlg-footer {
	text-align: center;
	padding: 3px 0;
}

.dlg-footer a {
	display: inline-block;
	width: 100px;
	padding: 5px 0;
	border: 1px solid #ccc;
	border-radius: 0px;
	background: #eee;
	cursor: pointer;
	margin-right: 16px;
}

.dlg-footer a:active {
	box-shadow: inset 2px 2px 4px 0 #ccc;
	color: #666;
}

.freeze-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.dlg-close {
	width: 80%;
	/*border-radius: 25px;*/
	border: 2px solid Black;
	padding: 15px 15px 15px 15px;
	margin: 20px 20px 20px 20px;
	background: #A4D3EE;
	overflow: visible;
	box-shadow: 5px 5px 2px #888888;
	position: relative;
}

span.dlg-button.b-close {
	position: absolute;
	top: 20px;
	right: 15px;
	cursor: pointer;
}

.beyond-dlg-chatButton {
    background-color: #000;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}