@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');
body {
    margin: 0;
    background: rgb(104, 255, 129);
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

header {
    text-align: right;
}
header button {
    width: auto;
}

.centralize {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header{
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    color: #5c5c5c;
}
.box, .endereco{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.cabecalho{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    position: relative;
    top: 20px;
    background-color: rgb(218, 254, 225);
    border-bottom: 1px solid gray;
}
p{
    width: 25%;
    padding: 10px;
}



.form-field {
    margin-bottom: 10px;
}

.filtro{
    display: flex;
    align-items: center;
}
.filtro input{
    height: 20px;
    margin-right:15px ;
    margin-left: 15px;
    border-radius: 10px;
    border: 1px solid lightgray;
}

.filtro button{
    border: none;
    height: 35px;
    border-radius: 10px;
    margin-left: 5px;
}
.filtro button:hover{
    background-color: rgb(191, 247, 201);
}
.ordenar{
    position: relative;
    top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ordemAlf{
    width: 100%;
    display:flex ;
    justify-content: flex-end;
    align-items: center;
}
.ordenar p{
    width: auto;
    font-size: 0.7em;
}
.ordenador{
    width: 100px;
    height: 40px;
    border: none;
    margin: 5px;
    border-radius:15px ;
    font-size: 0.7em;
}
.ordenador:hover{
    background: rgb(191, 247, 201);

}
li{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print{
    display: none;
}
input,
button,
select {
   padding: 10px;
   width: -webkit-fill-available;
}
input[type="radio"] {
    width: auto;
}

.loading {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
}
.loading label {
    font-size: 24px;
}

button {
    cursor: pointer;
}
button:active {
    opacity: 0.8;
}
button[disabled] {
    opacity: 0.8;
}

button.fab {
    background-color: rgb(202, 253, 126);
    width: 54px;
    height: 54px;
    border-radius: 50px;
    border: none;
    font-size: 24px;
    box-shadow: 2px 2px 2px gray;
}
button.fab:hover{
    background-color: rgb(184, 251, 83);
}
button.fab.fixed {
    position: fixed;
}
button.fab.bottom {
    bottom: 32px;
}
button.fab.right {
    right: 32px;
}

.clear {
    background: transparent;
    border: none;
    color: #8e8a8a;
}
.solid {
    background: white;
    border: none;
    color: rgb(45, 211, 111);
}

.outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}
.outline.danger {
    color: red;
    border-color: red;
    font-size: 0.5em;
    height: 30px;
}

.error {
    background: red;
    color: white;
    display: none;
} 