/*	--------------------------------------------------
	Reveal Modals
	-------------------------------------------------- */
		
	.reveal-modal-bg { 
		position: fixed; 
		height: 100%;
		width: 100%;
		background: #000;
		background: rgba(0,0,0,.8);
		z-index: 100;
		display: none;
		top: 0;
		left: 0; 
	}
	
	.reveal-modal {
		display:none;
    width: 450px;
    background: #FFF;
    visibility: hidden;
    top: 100px;
    left: 50%;
    margin-left: -185px;
    position: absolute;
    z-index: 101;
    padding: 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -box-shadow: 0 0 10px rgba(0,0,0,.4);
	}

	.reveal-modal .close-reveal-modal {
    background: url('/productos/paquetes-corporativos/IMG/Close.png') no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 17px;
    right: 13px;
    cursor: pointer;
    line-height: 1000;
    color: transparent;
}
		
@media screen and (max-width: 1000px) {	
	.reveal-modal {
    width: 90%;
		top:10px;
    left: 0;
    right: 0;
    margin: auto;
		box-sizing: border-box;
	}
	.reveal-modal .close-reveal-modal {font-size:40px;}
}
@media screen and (max-width: 400px) {	
	.reveal-modal {
		width: 95%;
		padding: 10px;
		-moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
	}
	.Trivia-Box {
		min-height:auto;
		padding-bottom:50px;
	}
}


		
		
