.is-modal{
	font-family:'body';
	color:#333333;
	position:fixed;
	right:0px;
	left:0px;
	top:0px;
	bottom:0px;
	background:rgba(0,0,0,0.5);
	backdrop-filter:blur(16px);
	-moz-backdrop-filter:blur(16px);
	-webkit-backdrop-filter:blur(16px);
	z-index:1000;
}

.is-modal .is-modal-container{
	position:relative;
	background:#ffffff;
    border:1px solid #333333;
   	-moz-box-shadow:0 0 10px #333333;
    -webkit-box-shadow:0 0 10px #333333;
    box-shadow:0 0 10px #333333;
	-webkit-border-radius:0px;
    -moz-border-radius:0px;
    border-radius:0px;
	margin:0px auto;
    margin-top:5%;
	padding:10px;
	max-width:600px;
}

.is-modal .is-modal-container .is-modal-close{
	background:transparent url(../images/is-modal-close.png) center center no-repeat;
    height:20px;
    width:20px;
    position:absolute;
    right:20px;
    top:20px;
    cursor:pointer;
    padding:2px;
    -webkit-border-radius:0px;
    -moz-border-radius:0px;
    border-radius:0px;
	z-index:1;
}

.is-modal .is-modal-container .is-modal-close:hover{
	background-color:transparent;
}

.is-modal .is-modal-container .is-modal-title{
	font-size:20px;
	line-height:26px;
	padding:10px;
	padding-right:40px;
	text-overflow:ellipsis;
	white-space:nowrap;
	overflow:hidden;
}

.is-modal:not(.is-gallery-popup) .is-modal-container .is-modal-title{
	padding-left:50px;
	background:url(../images/is-modal-title.png) 7px center no-repeat;
	background-size:34px;
}

.is-modal .is-modal-container .is-modal-body{
	overflow:hidden;
	overflow-y:auto;
	-webkit-border-radius:0px;
    -moz-border-radius:0px;
    border-radius:0px;
	margin:10px;
	padding:10px;
	max-height:412px;
}

.is-modal .is-modal-container .is-modal-body::-webkit-scrollbar{
	width:8px;
}

.is-modal .is-modal-container .is-modal-body::-webkit-scrollbar-track{
	border-radius:0px;
	background:#eeeeee;
}

.is-modal .is-modal-container .is-modal-body::-webkit-scrollbar-thumb{
	border-radius:0px;
	background:#dddddd;
}

.is-modal .is-modal-container .is-modal-body .is-prompt-container:only-child{
	margin:0px;
}
	
@media all and (max-width:1024px){	
	/* extra styles for iPad landscape*/
	
}

@media all and (max-width:924px){
	/* extra styles for iPad portrait*/
	
	.is-modal .is-modal-container{
		position:absolute;
		margin:0px;
		top:20px;
		right:20px;
		left:20px;
		bottom:20px;
		max-width:unset;
	}

	.is-modal .is-modal-container .is-modal-body{
	    position:absolute;
		top:54px;
		right:10px;
		bottom:10px;
		left:10px;
		max-height:unset;
	}
}

@media all and (max-width:896px){
	/* extra styles for iPhone landscape*/

}

@media all and (max-width:414px){
	/* extra styles for iPhone portrait*/
	
}