/* Estilos Base */
*{
    color: #000000;
    font: 24px sans-serif;
}
body {
    background: #ffffff;
}
/* Estilos del formulario */
form.contacto {
    margin: 25px auto 0;
    width: 400px;
}
form.contacto fieldset {
    background: white;
    border: 1px solid #E1E1E1;
    box-shadow: 0 0 10px #ffffff;
    -webkit-box-shadow: 0 0 10px #d0d0d0;
    -moz-box-shadow: 0 0 10px #DADADA;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 40px;
    padding-bottom: 30px;
}
form.contacto fieldset > div {
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
}
form.contacto fieldset div label {
    display: block;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
    text-align: right;
   /*  text-transform: uppercase;
   width: 100%;*/
    font-size: 18px;
}
form.contacto input[type="text"], form.contacto textarea {
    background: #ffffff;
    border: 1px solid #E8E8E8;
    color: #000000;
    display: block;
    float: left;
    padding: 10px;
    resize: none;
    width: 100%;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus {
    background: #ffffff;
    border: 1px solid #D3D3D3;
    outline: none;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto .btn {
    background: #be0000;
    color: #f0f0f0;
    /* float: right; */
    font-weight: bold;
    height: 50px;
    padding: 0 ;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    margin-right: 40%;
    width: 100%;
}
form.contacto .btn:hover{
    background: #840000;
}
 
/* AJAX Gif y mensajes de exito o fracaso */
.hide{
    display: none;
}
.ajaxgif{
    position: absolute;
    right: 150px;
    top: 5px;
}
.msg{
    color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
    right: -155px;
    text-transform: uppercase;
    min-width: 121px;
}
.msg_ok{
    background: #589D05;
}
.msg_error{
    background: red;
}
.blink_text {

    animation:1s blinker linear infinite;
    -webkit-animation:1s blinker linear infinite;
    -moz-animation:1s blinker linear infinite;

     color: red;
    }

    @-moz-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @-webkit-keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }

    @keyframes blinker {  
     0% { opacity: 1.0; }
     50% { opacity: 0.0; }
     100% { opacity: 1.0; }
     }