@font-face {
    font-family:'Poppins';
  font-weight: normal;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

:focus{
    outline: none;
}

body{
    background: #DBDBDB;
    font-family:'Poppins';
}

/* FORMULARIO =================================== */

.form_wrap{
    width: 90%;
    height: 100%;
    margin: 50px auto;

    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

/* Informacion de Contacto*/

.cantact_info{
    width: 100%;
    height: 100%;

    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;

    background: #44974f;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);

}
img{
    display:block;
    margin:auto;
    }

.info_title,
.info_items{
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    justify-content: center;
}

.info_title h2{
    font-size: 1.5em;
    text-align: center;
}

form.form_contact .user_info{
    display: flex;
   flex-direction: column;
   
}

/* Formulario de contacto*/
form.form_contact{
    width: 100%;
    padding: 20px 30px;
}

form.form_contact h2{
	font-size: 1.4em;
	font-weight: 600;
	color: #303030;
	margin-bottom: 10px;
}


form.form_contact label{
    font-weight: 600;
}

form.form_contact input,
form.form_contact textarea{
    /*width: 100%;*/
    padding: 8px 0px 5px;
    margin-bottom: 20px;

    border: none;
    border-bottom: 2px solid #D1D1D1;

    font-family:'Poppins';
	color: #5A5A5A;
	font-size: 14px;
	font-weight: 400;
}

form.form_contact textarea{
    max-width: 100%;
    min-width: 100%;
    max-height: 90px;
}

form.form_contact input[type="submit"]{
    width: 100%;
	background: #44974f;
	padding: 10px;
	border: none;
	border-radius: 25px;


    color: rgb(61, 58, 58);
	font-family: 'Poppins';
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
    background: rgb(62, 172, 99);
}

form.form_contact input[type="button"]{
    width: 100%;
	background: #8a161c;
	padding: 10px;
	border: none;
	border-radius: 25px;

    align-self: flex-end;

    color: #fff;
	font-family: 'Poppins';
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="button"]:hover{
    background: #882328;
}


a:link {
    color:rgb(255, 255, 255); 
    text-decoration: none; 
}
a:visited {color:rgb(255, 255, 255); 
    text-decoration: none; }
a:active {color:rgb(255, 255, 255); 
    text-decoration: none; }
a:hover {color:rgb(255, 255, 255); 
    text-decoration: none; }

/* Ventana de errores*/
.modal_wrap{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;

    display: flex;
    justify-content: center;
    align-items: center;
}

.mensaje_modal{
    background: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    width: 400px;
    padding: 30px 20px 15px;
}

.mensaje_modal h3{
    text-align: center;
    font-family: 'Poppins';
	font-size: 20px;
	font-weight: 400;
}

.mensaje_modal h3:after{
    content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #C5C5C5;
	margin: 10px 0px 15px;
}

.mensaje_modal p{
    font-size: 16px;
    color: #606060;
}

.mensaje_modal p:before{
    content: "\f00d";
    font-family: 'Poppins';
    display: inline-block;
    color: #E25151;
    margin-right: 8px;
}

#btnClose{
    display: inline-block;
	padding: 3px 10px;
	margin-top: 10px;

	background: #E25151;
	color: #fff;
	border: 2px solid #B14141;
	cursor: pointer;

	float: right;
}
table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
    margin: 0 0 1em 0;
    caption-side: top;
 }
 caption, td, th {
    padding: 0.3em;
 }
 tbody {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
 }
 tbody th, tfoot th {
    border: 0;
 }
 th.name {
    width: 25%;
 }
 th.location {
    width: 20%;
 }
 th.lasteruption {
    width: 30%;
 }
 th.eruptiontype {
    width: 25%;
 }
 tfoot {
    text-align: center;
    color: #555;
    font-size: 0.8em;
 }