*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
#titulo_model
{
    font-size: 21px;
    color:#fff;
}
#texto_modal
{
    font-size: 18px;
    margin-bottom: 2px;
    text-align: justify;
}
.flex{
	width: 100%;
	height:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.textos{
	padding:300px;
	color:#fff;
	text-align: center;
}



.modal{
	display: block;
	position: fixed;
	z-index:1;
	overflow: auto;
	left: 0;
	top:0;
	width: 100%;
	height:100%;
	background: rgba(0, 0, 0, 0.452);
}

.contenido-modal{
	position: relative;
	background-color: #fefefe;
	margin: auto;
	width: 50%;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, .4);
	animation-name: modal;
	animation-duration: 1s;
}
@keyframes modal{
	from{top:-330px; opacity:0;}
	to{top:0; opacity:1;}
}
.close{
	color: #f2f2f2;
	font-size:30px;
	font-weight: bold;
}
.close:hover{
	color:#7f8c8d;
	text-decoration: none;
	cursor: pointer;
}

.modal-header, .footer{
	padding: 8px 16px;
	background: #a11010 ;
	color:#f2f2f2;
}



.modal-body{
	padding: 20px 16px;
}
#continuar
{
    width: 40%;
    padding: 5px 16px;
    background: #fe0000;
    color:#f2f2f2;
    font-size: 18px;
}
#continuar:hover
{
    cursor: pointer;
}
@media screen and (max-width:900px){
	.contenido-modal{
		width: 90%;
	}
	.textos{
		padding: 150px;
	}
        #continuar
        {
            width: 90%;
        }
}

@media screen and (max-width:500px){
	.textos{
		padding:50px;
	}
}

