@charset "utf-8";
/* CSS Document */
/* MODAL  */
#modal-screen{
	width:100%;
	height:100%;
	background:#000;
	position:fixed;
	z-index:1200;
	opacity:.75;
	margin:0;
	padding:0;
	display:none;
	top:0;
	left:0;
	overflow:hidden;
}
#modal-container{
	margin:auto;
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:1201;
	display:none;
	padding:0;
	overflow:hidden;
}

#modal-container .modal-header{
    background: url("../images/bg-black-75.png");
    width: 100%;
    height: 3vw;
	font-size:2vw;
	font-weight:fontBold;
	padding:5px 10px;

}
#modal-container .modal-titulo{
	
}
#modal-container .modal-close{
	float:right;
	width:5%;
	height:100%;
	background: url("../images/ico-bt-close.svg") no-repeat center center;
    background-size: contain;
	cursor:pointer;
}
#modal-container .modal-close:hover{
}
#modal-container #modal-contenido{
	width:auto;
	height:85%;
	margin:auto;
	padding:20px;	
	overflow-y:auto;
	overflow-x:hidden;
	
}
@media handheld, only screen and (max-width: 1000px){
    #modal-screen{
    }
    #modal-container{
    }

    #modal-container .modal-header{
        height: 10vw;
        font-size:4vw;
    }
    #modal-container .modal-titulo{

    }
    #modal-container .modal-close{
        width:15%;
    }
    #modal-container .modal-close:hover{
    }
    #modal-container #modal-contenido{
    }
}