
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,700;1,100&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    
    
}
*:focus{
    outline: 0;
}
html,body,#app{
    height: 100%;
    width:100%;
    padding: 0;
    margin: 0;
   box-sizing: border-box;
   
}
#buscar{
    width:98%;
    margin:0;
}
#buscar input{
    border: 1px solid #00723E;
    width:95%;
}
body{
    
    padding: 0;
    margin: 0;
    font-size: 14px 'Roboto' sans-serif;
    background-color: rgb(5, 5, 5);
   box-sizing: border-box;
   overscroll-behavior-y: contain;
 
}

a{
    text-decoration: none;
    transition: opacity 0.2s ease;
}
a:visited {
    color:  inherit;
    text-decoration: none;
}
 a:hover{
    opacity: 0.7;
    
  }
a:focus{
    outline: 0;
    
}
ul{
    list-style: none;
}
.button{
    width:80%;
    background-color: #002D07;
    color:#fff;
    /*color:yellowgreen;*/
    font-weight:bold;
    margin-bottom: 15px;
    height: 35px;
    border:0;
    border-radius: 3px;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    cursor:pointer;
}
.bt_salvar{
    position:fixed;
    bottom:0;
    left: 50%;
    transform: translate(-50% , 0);
    width:50%;
    z-index: 1;
}
form{
 
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  form h1{
    text-align: center;
    margin-bottom: 0.5em;
    color: #fff;
  }
  input{
    margin-bottom: 15px;
    height: 35px;
    border:0;
    border-radius: 3px;
    padding: 10px;
    margin:10px;
    font-size: 15px;
    background-color: #FFF;
    text-align: center;
  }
h3{
  color:#fff;
}
.versao{
    color:gray;
    font-size: 10px;
}
.add-button {
  
    background-color:#fff;
    color:#000;
    border-radius:8px;
    box-sizing: border-box;
    display :none;
    padding:10px;
    width:80%;
    font-weight:bold;
    text-overflow: auto;
    text-align:center;
    margin: 10px auto;
    cursor:pointer;
    /*position: absolute;*/
    /*top: 5px;
    left: 50%;*/
    
    /*top:50%;
    left: 50%;*/
    /*transform: translate(-50% , 0);*/
 
 
}
p{
      -webkit-touch-callout: none;  /* iPhone OS, Safari */
    -webkit-user-select: none;    /* Chrome, Safari 3 */
    -khtml-user-select: none;     /* Safari 2 */
    -moz-user-select: none;       /* Firefox */
    -ms-user-select: none;        /* IE10+ */
    user-select: none;    
}
.modalBaixar {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align:center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.bt-download{
    background-color:lightgreen; 
    padding:10px;
    margin:10px;
    border:1px solid green;
    border-radius:8px;
    font-weight:bold;
    cursor: pointer;
}
.bt-cancell{
    padding:10px;
    margin:10px;
    border-radius:8px;
    border:1px solid gray;
    cursor: pointer;
}

