.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(30px);
    display: none;
}
.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .9;
    display: block;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-dialog {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
    z-index: 1041;
}

.modal.in {
	overflow:auto;
	}

.modal.in .modal-dialog {
    -webkit-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.modal-dialog button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.modal-dialog .close {
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);  
	position:absolute;
	top:0;
	right:0;
	height:50px;
	width:50px;
	background:url(../images/icon-close-popup.png) no-repeat center center #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
    cursor:pointer;
}
.modal-dialog button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}

.modal-dialog .content-popup {
   max-width:800px;
   text-align:center;
   margin:auto;
    
}
@media only screen and (max-width: 767px){
	.modal-dialog  {
		margin-top:60px;
		}
	.modal-dialog .close {
		height:40px;
	width:40px;
	
	top:-40px;
	right:5px;
	background:url(../images/icon-close-popup.png) no-repeat center center #fff;
	background-size: 40%;
		}
	.modal-dialog .content-popup  { padding:0 10px;}	
	}