/* Modal */
#overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    background-color: rgba(0, 0, 0, .65);
}
#modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    max-width: 70vw;
    max-height: 70vh;
    box-sizing: border-box;
    padding: 32px;
    border-radius: 8px;
    background-color: #fff;
}
#modal div{
	text-align:center;
	text-decoration: underline;
	cursor: pointer;
}
.active {
    display: block !important;
}
.color_red{
	color:red;
}
.form_fin{
padding-top:10%;
text-align: center;
}
