@font-face{
    font-family: 'Louis George';
    src: url("fonts/Louis_George_Cafe.ttf");
}
* {
    font-family: 'Louis George';
}
body{
    text-align: center;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
}
.contenedor{
    width: 99vw;
    max-width: 1367px;
    height: 99vh;
    max-height: 767px;
    display: block;
    position: static;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}
.contenedor img{
    width: 100%;
    max-width: 1367px;
    }
/*clase para los divs*/
.div_pasos{
    margin-top: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}
/*clase instruccion (span de texto)*/
.texto_instruccion {
    display: block;
    margin: 20px auto;
    color: #4d4d4d;
    width: 100%;
    font-weight: bold;
    font-size: 1.6rem;
}
input[type="text"] {
    display: block;
    margin: 25px auto;
    width: 100%;
    max-width: 300px;
    height: calc(2.5rem + 2px);
    font-size: 1rem;
    padding-bottom: 2px;
    padding-left: 5px;
    border:none;
   -webkit-border-radius:5px;
   -moz-border-radius:5px;
   border-radius:5px;
   -webkit-box-shadow:0 0 5px #666;
   -moz-box-shadow:0 0 5px #666;
   box-shadow:0 0 5px #666;
}
.margen_top_chico{
    margin-top: 8px !important;
}
input[type="button"] {
    display: block;
    margin: 20px auto;
    text-transform: uppercase;
    font-size: 1.6rem;
    color: #fff;
    background-color: #333333;
    padding: 4px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
label{
    display: inline-block;
    font-size: 22px;
    color: #4d4d4d;
    width: 100%;
    font-weight: bold;
}
.item_lista{
    cursor: pointer;
    display: block;
    min-width:250px;
    max-width: 300px;
    border: solid 2px #c5c5c5;
    border-radius: 5px;
    padding: 2px 10px;
    color: #666;
    font-size: 22px;
    margin-bottom: 15px;
    margin-left:auto;
    margin-right: auto;
}
.item_lista:last-child{
    margin-bottom: 0 !important;
}
.item_lista:hover{
    background-color: #1f42b6;
    color: #fff !important;
    border-color: #1f42b6 !important;
}
/*Al seleccionar un nombre de la lista argegar la clase item_lista_seleccion*/
.seleccionar{
    background-color: #1f42b6;
    color: #fff !important;
}
/*Al cambiar de paso quitar o agregar la clase .mostrar*/
.pasos{
    display: none;
}
.mostrar{
    display: inline-block !important;
}
/*Condicionales*/
@media screen and (max-width: 800px){
    .div_pasos{
        margin-top: 50px !Important;
        top:50% !important;
    }
    .texto_instruccion{
        max-width: 80%;
        font-size: 30px !important;
    }
    input[type="text"]{
        width: 80%;
        max-width: 300px !important;
        height: auto !important;
        font-size:30px;
    }
        input[type="button"]{
        font-size:30px !important;
    }
    .item_lista{
        max-width: 100% !important;
    }
    label{
        font-size: 30px;
    }
}