/* CSS Window Prompt */

.wPromptBody{
	overflow: hidden;
	left: 0;
	right: 0;
}
#wPromptOverlay{
	background: #000;
	opacity: 0.7;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9998;
}
#wPrompt{
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	color: #000;
	font-size: 12px;
	position: fixed;
	z-index: 9999;
}
.wPromptClose{
	background: url(/js/windowPrompt/icon.png) no-repeat 0 -36px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 40px;
	z-index: 10000;
}
#wPrompt:hover .wPromptClose{
	display: block;
}
.wPromptWrapper{
	position: relative;
	overflow: auto;
	width: 100%;
	height: 100%;
}
.wPromptTitle{
	color: #D8052B;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.wPromptAlert, .wPromptConfirm{
	line-height: 150%;
	padding: 15px 15px 15px 50px;
	position: relative;
}
.wPromptAlert i, .wPromptConfirm i{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 10px;
	left: 10px;
}
.wPromptAlert i{
	background: url(/js/windowPrompt/icon.png) no-repeat 0 -76px;
}
.wPromptConfirm i{
	background: url(/js/windowPrompt/icon.png) no-repeat 0 -106px;
}
.wPromptAlertButton, .wPromptConfirmButton{
	margin-top: 15px;
	text-align: center;
}
.wPromptInputButton{
	border: 1px solid #E5E5E5;
	background: #F5F5F5;
	cursor: default;
	font-weight: normal;
	padding: 5px 15px;
}
.wPromptInputButtonTrue{
	margin-right: 10px;
}
.wPromptIframe{
	border: none;
	display: block;
	width: 100%;
	height: 100%;
}
@media only screen and (min-width: 1022px){
	.wPromptClose{ display: none; }
}