html {
    box-sizing: border-box;
    background:#5fa5da;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.center-me {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
}

/********* HEADER *********/

.header {
    text-align: center;
}
.header img {
    margin-top: 20px;
    width: 150px;
    height: auto;
}
.header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 600;
      text-align: center;
      line-height: 25px;
}
.header p {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 300;
      text-align: center;
}

.nota {
    margin: 0 30px;
    /*border-radius: 3px;
    border: 1px solid #216391;*/
    font-size: 14px!important;
    padding: 20px 10px;
    font-family: 'Open Sans', sans-serif;
    color: white;
    text-align: center;
}

/********* SEARCH *********/

.search {
    width: 80%;
    height: 40px;
    border-radius: 6px;
    padding:20px;
    margin:20px 20px 0 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.19);
    text-align: center;
    font-size: 20px;
    background-color: #BBE2FB;
}


/********* RESULTS *********/

.suggestions {
    width: 80%;
    margin-top: 8px;
    background-color: white;
    padding: 0 20px;
    font-family: 'Open Sans', sans-serif;
    background-color: ;
    border-radius: 6px;
}
.suggestions ul {
}

.suggestions li {
    list-style: none;
    border-bottom: 1px solid #D8D8D8;
    padding:20px 5px;
    transition:background 0.2s;
    justify-content:space-between;
    text-transform: capitalize;
    min-height: 60px;
}

.datos-colegiado {
    float: left;
    width: 700px;
    padding: 10px 0;
    margin-right: 10px;
}
.datos-mesa {
    float: left;
    width: 600px;
    padding: 10px 0;
    font-size: 17px;
}

/********* FONTS STYLES *********/

.nombre {
    font-size: 20px;
    line-height: 30px;
}

.direccion {
    font-size: 14px;
    color: #666;
}
.cuadro {
    width: 50px;
    float: left;
    /*border:1px solid #ccc;*/
    background-color: #58bd78;
    color: #58bd78;
    border-radius: 6px;
    padding: 5px 10px;
    margin-right:20px;
    text-align: center;
}

.mesa-numero {
    font-size: 30px!important;
    font-weight: 600;
    color: white;
}
.mesa-titulo {
    color: #fff;
}
.detalle {
    line-height: 17px;
    color: #000;
}

/********* BREAKPOINTS *********/

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .header img {
        margin-top: 40px;
        width: 280px;
        height: auto;
    }    
    h1 {
        font-size: 60px!important;
    }
    p {
        font-size: 30px!important;
    }
    .search-form {
        margin-top: 20px!important;
/*        background-color: red!important;*/
    }
    .search {
        height: 80px;
        font-size: 40px;
        border-radius: 20px!important;
    }
    .datos-colegiado {
        width: 800px;
    }
    .datos-mesa {
        font-size: 30px;
        width: 800px;
    }
    .nombre { font-size: 44px; }
    .direccion { font-size: 30px; }
    .detalle { line-height: 44px; }
    .mesa-titulo {
        font-size: 19px;
    }
    .cuadro {
        width: 70px;
        margin-bottom: 50px;
    }    
}
