* {
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;         
}

body{
    font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
}

header{
    background-image: linear-gradient(180deg, #FFFFFF 0%, #EEEEEE 100%);
    height: 96px;
}

.container{
    margin: 0 auto;
    width: 1140px;
}

#topo {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#topo img{
    padding-top: 10px;
    padding-right: 30px;
}

.menor{
    width: 100%;
    font-weight: bold;
    line-height: 18px;
    font-size: 14px;
    color: #101010;        
}

.maior{
    width: 100%;
    font-weight: bold;
    line-height: 18px;
    font-size: 18px;
    color: #101010; 
}    

.title{
    font-weight: 800;
    line-height: 36px;
    font-size: 24px;
    color: #005394;
    padding: 30px;
}

.title5{
    font-weight: 800;
    font-size: 18px;
    color: #005394;
    padding: 20px;
}    

#linha1{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D6DFE6;
}

#linha2{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

#linha2 div:first-child{
    border: 1px solid #005394;
    border-bottom: 5px solid #005394;
}

#linha2 div{
    width: 18%;
    height: 50px;
    padding: 10px 40px;
    font-weight: bold;
    line-height: normal;
    font-size: 16px;
    text-align: left;
    text-shadow: none;
    color: #005394;
    cursor: pointer;
    background: #F5F5F5;
    box-sizing: border-box;        
}

h3, h4 {
    padding: 30px 0;
}

ul{
    padding: 10px 30px;
}
li{
    padding-bottom: 10px;
}

#linha3 #item1{
    width: 65%;
    float: left;
    padding-right: 20px;
}

#linha3 #item2{
    width: 35%;        
    float: left;
}

#boxconsulta{
    width: 100%;
    border: 1px solid #005394;
    margin-top: 30px;
    padding: 15px;
    min-height: 400px;
}

label{
    font-weight: bold;
    line-height: 18px;
    font-size: 16px;
    color: #101010 !important;        
}

input[type=text]{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-style: solid;
    border-width: 1px;
    border-color: #DFE4E7;
    border-radius: 2px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 28px;
    margin: 0px;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    width: 300px;
    padding: 5px 10px;
    font-style: normal;
    font-weight: normal;
    line-height: 21px;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #4F4F4F;
    cursor: text;    
    box-sizing: border-box !important;    
}

input[type=tel]{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-style: solid;
    border-width: 1px;
    border-color: #DFE4E7;
    border-radius: 2px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 28px;
    margin: 0px;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #BDBDBD;
    box-sizing: border-box;
    width: 300px;
    padding: 5px 10px;
    font-style: normal;
    font-weight: normal;
    line-height: 21px;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #4F4F4F;
    cursor: text;    
    box-sizing: border-box !important;    
}


button{
    background-color: #005394;
    padding: 10px 30px 10px 30px;
    cursor: pointer;
    font-style: normal;
    font-weight: bold;
    line-height: 21px;
    font-size: 15px;
    text-align: center;
    text-shadow: none;
    border: 1px solid transparent;
    border-radius: 0px;
    color: #F5F5F5;        
}

td {
    padding: 5px;
}

.disabled{
    background-color: #EEEEEE !important;
    color: #9e9e9e;
    background-color: transparent;
    -webkit-text-fill-color: #9e9e9e;
}


@media only screen and (max-width: 600px) {

    .container{
        width: 100%;
    }

    .small-hide{
        display: none;
    }

    #linha2{
        display: none;
    }

    #linha3 #item1{
        width: 100%;
        padding: 0 10px;
    }    

    #linha3 #item2{
        width: 100%;
        padding: 0 10px;
    }

    #boxconsulta{
        width: 100% !important;
    }

        #linha4{
            padding: 20px;
            border: 1px solid #005394;
        }

        .dadosveiculo{
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
        }

        .dadosveiculo .column{
            float: left;
            width: 50% !important;
        }

        .dadospagamento .column{
            float: left;
            width: 100% !important;
        }

        .mob-hidden{
            display: none;
        }

        .boxpg{
            flex-direction: column;
        }

        .boxpg .column{
            float: left !important;
            width: 100% !important;
        }
    
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

    .container{
        width: 100%;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

    .container{
        width: 100%;
    }

    #linha1 img{
        width: 100% !important;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

    .container{
        width: 100%;
    }

    #linha1 img{
        width: 100% !important;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .container{
        width: 1140px;
    }

}