﻿/*ModalWind.css*/
/*14/02/2016*/

/*Preloading*/
.win-modal-loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: url(img/loading_white.gif) no-repeat center center;
	visibility: hidden;
	opacity: 0;
}


/*Botón cierrar*/
.win-modal-close {
	display: inline-block;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0;
    position: absolute;
    top: -46px;
    right: -46px;
	background: #FFF;
	cursor: pointer;
	text-decoration: none;
	
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	z-index:70002;
	
	-moz-border-radius: 46px;
	-webkit-border-radius: 46px;
	-o-border-radius: 46px;
	border-radius: 46px;

}
	.win-modal-close.win-modal-close-full-screen {
		top: 10px;
		right: 10px;
	}
	.win-modal-close:before {
		width: 46px;
		height: 46px;
		margin: 0;
		padding: 0;
		line-height: 46px;
		font-size: 30px;
		color: rgb(2, 78, 153);
		z-index: 999999999999;
	}
		/*Con Fontello*/
		.win-modal-close:before {
			content: '\e81b';
			font-family: "rss";
			font-style: normal;
			font-weight: normal;
			line-height: 44px;
			color: rgb(2, 78, 153);
			speak: none;
			display: inline-block;
			text-decoration: inherit;
			text-align: center;
			font-variant: normal;
			text-transform: none;
			
			/* Font smoothing. That was taken from TWBS */
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
		}
		/**/
		.win-modal-close:hover, .win-modal-close:hover:before {
			text-decoration: none;
			color: #CCC;
		}
		
.win-modal-child-scroll {
	width: 70%;
	margin: 10px auto;
}

/*Para ocultar el scroll de página al mostraese el modal*/
.win-modal-overflow {
	overflow: hidden;
}


/*Modal message*/
.modal-alert-message {
	width: 100%;
	height: 100%;
	text-align: center;
	display: table;
}
	.modal-alert-message > div {
		padding: 20px;
		display: table-cell;
		vertical-align: middle;
		
	}
		.modal-alert-message > div div {
			padding: 20px;
			position: relative;
			display: inline-block;
			font: normal 14px/18px "Guamatur-Bold", sans-serif;
			color: #333;
			background: #DDD;
		}
			.modal-alert-message.modal-alert-text-left > div div  {
				text-align: left;
			}
		.modal-alert-message > div div span {
			padding: 0 0 10px 0;
			display: block;
			font-size: 30px;
			color: #333;
		}
		.modal-alert-message > div div em {
			position: absolute;
			top: -10px;
			right: -12px;
			font-size: 24px;
			cursor: pointer;
		}