
.botao-add{
    width: 100%;
    height: 100px;
    border: 1px solid rgb(58, 58, 58);
    background-color: rgb(210, 211, 213);
    transition: 0.5s;
}

.botao-combustivel{
    /*height: 100px;
    width: 100%;
    border-radius: 10px;
    color: white;*/
    border: 1px solid rgb(58, 58, 58);
    transition: 600s;
}

.bc1 {background-color: rgb(126, 195, 89);}
.bc2 {background-color: rgb(237, 50 ,55);}
.bc3 {background-color: rgb(62, 64 ,149);}
.bc4 {background-color: rgb(245, 134 ,52);}
.bc5 {background-color: rgb(245, 134 ,52);}

/*button:active {
    opacity: 1;
    transition: 0.1s;
    color: black;
    background-color:yellow;    
    box-shadow: 5px 5px 3px 2px  #585858;
}*/
.add {
    opacity: 1;
    transition: 0.1s;
    color: black;
    background-color:yellow;    
    box-shadow: 5px 5px 3px 2px  #585858;
}

.inputDados{
    width: 100%;
    height: 100px;
    text-align: center;
}

.margem-direita{
    text-align: left;
}

input[type="text"]
{
    font-size:60px;
}
.money2
{
    font-size:50px !important;
    height: 80px !important;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: 50%;
    margin-top: 20px;
    margin-right: 20px;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    bottom: 80%;
    font-size: 32px;
  }
  
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 9.5s;
  }
  
  @-webkit-keyframes fadein {
    from {
      bottom: 70%;
      opacity: 0;
    }
    to {
      bottom: 80%;
      opacity: 1;
    }
  }
  
  @keyframes fadein {
    from {
      bottom: 70%;
      opacity: 0;
    }
    to {
      bottom: 80%;
      opacity: 1;
    }
  }
  
  @-webkit-keyframes fadeout {
    from {
      bottom: 80%;
      opacity: 1;
    }
    to {
      bottom: 70%;
      opacity: 0;
    }
  }
  
  @keyframes fadeout {
    from {
      bottom: 80%;
      opacity: 1;
    }
    to {
      bottom: 70%;
      opacity: 0;
    }
  }