@charset "UTF-8";

.modalForm{
    position: fixed;
    width: 45%;
    top: 10%;
    left: 25%;
    box-sizing: border-box;
    border: solid 1px #383294;
    background-color: #12a89f;    
    box-shadow: 1px 1px 10px #555;
    padding: 2% 5%;
    font-size: 16px;
    display:none;
}
.modalForm:target {
    display: block;
    pointer-events: auto;
}
.modalinf{
    position: fixed;
    width: 60%;
	max-height: 70%;
    top: 5%;
    left: 15%;
    border: solid 1px #383294;
    background-color: #ccc;    
    box-shadow: 1px 1px 10px #555;
    padding: 2% 2%;
    font-size: 14px;
    display:none;
	overflow-y: scroll;
}
.modalinf:target {
    display: block;
    pointer-events: auto;
}
div.modalinf {
	width: auto;
	float: left;
}
.imagem {
	width: 50%;
}
.modal h3{
    text-align: center;
    text-transform: uppercase;
    padding: 0 10px;
}

.fechar_modal {
    position: absolute;
    box-sizing: border-box;
    padding: 10px;
    top: 0;
    right: 0;
    background-color:#033a61;
}
a.fechar_modal {
    color: #fff;
}
.fechar_modal:hover {
    transition: 0.2s;
    background-color: #a60363;
    text-decoration: none;
}

.form_modal label {
    line-height: 30px;
    display: block;
    float:left;
    margin-right: 5%;
}
.form_modal input {
    display: block;
    padding: 4px;
    width: 90%;
}
.form_modal textarea {
    width: 92%;
    height: 80px;
}
.form_modal .btn{
    width: 100px;
    background: #033a61;
	padding: 10px 10px;
	border-radius: 3px;
	color: #ebebeb;
	cursor: pointer;
	margin: 5px;
	display: inline-block;
	border: none;
    box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.form_modal .btn:hover{
    background: #A60363;
	text-decoration: none;
}
@media only screen and (max-width: 480px) {
    .modal{width: 80%; top: 2%;left: 5%;        
    }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .modal{width: 70%; top: 3%;left: 5%;        
    }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
    .modal{width: 60%; top: 5%;left: 10%;        
    }
}