.simple-alert-overlay{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
	background:rgba(0, 0, 0, 0.3);
	width: inherit;
	height: inherit;
	overflow-x: hidden;
	overflow-y: auto
	
}


.simple-alert{
    width: 820px;
    margin:auto;
    background:#fff;
    border-top: 3px solid #ff4719;
    border-radius:2px;
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
}

@media all and (max-width: 767px) {
  .simple-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}



.simple-alert h3,
.simple-alert-content{
    float:left;
    width:100%;
}

.simple-alert h3{
    margin:0;
    padding:10px 20px;
    border-bottom:1px solid #eee;
    font-size: 17px;
    color:#6d6d6d;
}

.simple-alert h3 span{
    float:right;
    cursor:pointer;
    font-size: 22px;
    background: #ff4719;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    position: relative;
    top: -13px;
}

.simple-alert-content{
    padding:20px;
    font: 14px 'Montserrat';
    line-height:25px;
    color:#6d6d6d;
}