
/* 
    Created on : 17/03/2023, 14:12:52
    Author     : BRUNO
*/

*{
    margin: 0;
    padding: 0;
}


.campo-input{
    height: 45px;
    width: 100%;
    text-align: center;
    border: none;
}
.campo{
    height: 45px;
    width: 30%;
    text-align: center;
    margin: 25px 0;

}

/* Apply styles to the link */

.conteiner-registro{
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.conteiner-registro .span a.bta {
    width: 120px;
    background-color: #ff6600;
    color: #fff;
    line-height: 35px;
    text-align: center;
    border-radius: 3px;
    position: relative;
    text-decoration: none;
    float: right;
    margin: 0 40px 10px 10px; 
    font-weight: 600;

}
.conteiner-registro .span{
    position: relative;
    margin: 10px auto 0;
    
    float: top;
    width: 100%;
    height: 50px;
}
/* Apply styles to the submit button */
.conteiner-registro .span input.bt {
    background-color: blue; /* Set the background color to blue */
    color: white; /* Set the text color to white */
    border: none; /* Remove the border */
    position: relative;
    float: right;
    cursor: pointer; /* Change the cursor to a pointer when hovering over the button */
    width: 120px;
    height: 35px;
    border-radius: 3px;
    font-weight: 600;
}



#ord-display{
    width: 100%;
    margin: 0px auto;
    border: 1px #dcdcdc solid;
    border-collapse: collapse;
}
#ord-display th{
    background-color: #0099cc;
    height: 40px;
    color: #fff;
}
#ord-display td{
    background-color: #fff;
    height: 45px;
    text-align: center;
}
#ord-display .tr:hover{
    border: 1px #194574 solid;
}
.img-ord{
    width: 15px;   
}

#ord-display span{
    background-color: rgba(0,0,0,.65);
    color:#fff;
    padding: 10px;
    border-radius: 5px;
    position: relative;
    z-index: 3;
    left: 0;
    top: -25px;
    display: none;

}
td:hover span{
    position: absolute;
    display:block;
    top: initial;
    left: 93px;
}


.bt:hover{
    background-color: #28a745;
}
@media only screen and (max-width:820px){
    #form-ord{
        box-sizing: border-box;
        padding: 10px;
    }
}