.overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    transform: translateZ(0);
}
.overlay-back {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity:0.6;	
}
.overlay-main {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align:center;
	z-index:2;
}
.overlay-content {
	display:inline-block;
	background: var(--back-gradient);
	text-align:left;
	overflow:auto;
	margin-top:30px;
	padding:10px;
	-webkit-overflow-scrolling: touch;
}
.overlay-content-top {
	display:block;
	height:40px;
	line-height:40px;
}
button.overlay-close {
	float:right;
	background:none;
	color:#000;
	font-size:25px;
}
.overlay-content-inner .confirm_buttons {
	text-align:center;
}
.overlay-content-inner .confirm_buttons button {
	margin: 0 10px;
}
