/* definindo variáveis para cores */
:root{
    --primary: #004AAD;
    --secondary: #faf3fc;
    /* tertiary não é um padrão do Bootstrap, mas pode ser adicionado! */
    --tertiary: #72F2EB;
    --success: #0099DD;
    --info: #A1C7E0;
    --warning: #00C9A5;
    --danger: #E3371E;
}
/* sobrescrevendo classes padrão do Bootstrap */
/* a marcação !important dá um peso maior a regra, sobrescrevendo regras prévias */
.bg-primary, .btn-primary{
    background-color: var(--primary) !important;
}


html{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.quadro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    width: 300px;
    background-color: #AEB6BF;
    border-radius:10px;
}

.espaco{
    padding: 0.01rem;
}

.espacoBotaoAposta{
    padding-top: 15px;
}

.button {
    background-color: #2A48BC;
    border: none;
    color: white;
    padding:10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.button:disabled,
.button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}

.botaoAposta {
    background-color: white;
    color: black; 
    border: 2px solid #f44336;
    font-size: 12px;
    border-radius: 15px;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    width: max-content;
}

.botaoFazAposta{
    border: 2px solid #4CAF50;
}

.quadro_time {
    background-color: #e4e6e9;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius:10px;
    width: auto;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pequeno {
    font-size: 12px;
}

.centraliza {
    text-align: center;
}

.alinha{ align-items: center; }

.centraliza_tab {
    margin-left: auto;
    margin-right: auto;
}

.centraliza_geral {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    text-align: center;
}

.jogos{
    position: static;
    padding-top: 2rem;
}

.usuario{
/*    color: black;*/
    font-size: 18px;
/*    background-color: #AEB6BF;*/
    border: 1px solid white;
    border-radius:2rem;
    padding: 0.2rem;
}

.botao_redondo{
    color: black;
    background-color: hsl(226, 94%, 65%);
    border: 0;
    border-radius:1rem;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 1px;
}

.botao_redondo_g{
    font-size: 1.2rem;
    color: white;
    background-color: hsl(226, 94%, 65%);
    border: 0;
    border-radius:1rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    line-height: 1.3rem;
    cursor: pointer;
    text-decoration: none;


}

.botao_redondo_2{
    color: #004AAD;
    background-color: #ffa500;
    font-weight: 600;
    border: 0;
    border-radius:1rem;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 16px;
    padding-left: 16px;
    line-height: 3px;
    text-decoration: none;
}

.botao_redondo_3{
    color: white;
    background-color: #794bf5;
    font-weight: 600;
    border: 0;
    border-radius:1rem;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 30px;
    padding-left: 30px;
    line-height: 3px;
    text-decoration: none;
}

.botao_redondo_4{
    font-weight: 400;
    color: black;
    background-color: #ffa500;
}

.botao_redondo_5{
    width: 280px;
    height: 35px;
    color: white;
    background-color: red;
    font-weight: 600;
    border: 0;
    border-radius:1rem;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 30px;
    padding-left: 30px;
    text-decoration: none;
}

.botao_redondo_6{
    background-color: blue;
}

.botao_redondo_7{
    width: 280px;
    height: 35px;
    color: white;
    background-color: green;
    font-weight: 600;
    border: 0;
    border-radius:1rem;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 30px;
    padding-left: 30px;
    text-decoration: none;
}

.formulario{
    max-width: 500px !important;
}

.cadastro_ok{
    font-size: larger;
    font-weight: 700;
    color: red;
}

.esqueceu_senha{
    color: white;
}

.botao_login{
    padding-top: 8px;
    margin-top: auto;
    margin-bottom: auto;
}


.divide_tela{
    column-count: 2;
    text-align: center;
    padding-top: 10%;
}


.g4 tr:nth-child(-n+4){
    color: blue;
}

.zr tr:nth-child(n+17):nth-child(-n+20){
    color: red;
}

#tabela_cad{
    border-collapse: collapse;
    width: 100%;
}

#tabela_cad th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: gray;
}
  
#tabela_cad td, #tabela_cad th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

#tabela_cad tr:nth-child(even){background-color: #f2f2f2;}

#tabela_cad tr:hover {background-color: #ddd;}


#elemento1 {float:left;}
#elemento2 {float:right;}

.elemento1 {display:inline-block;margin-right:10px;} 
.elemento2 {display:inline-block;} 

.titulo {
    padding-top: 5px;
}

/*
body {margin: 0;}
*/
/*
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #004AAD;
}
  
li {
    float: left;
}
  
li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}
  
li.dropdown {
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.dropdown-content a:hover {background-color: #f1f1f1;}
  
.dropdown:hover .dropdown-content {
    display: block;
}
*/
.mesmalinha{
    display:inline;
}

.texto_titulo{
    color: white;
    font-size: 2rem;
    font-weight: bold;
    line-height: 2rem;
    text-align: left;
}

.texto_normal{
    color: white;
    font-size: 1rem;
    line-height: 1.2rem;
    text-align: justify;
}

.quadro_cad {
/*    text-align: center; */
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    width: max-content;
/*    background-color: #AEB6BF; */
    border-radius:10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1%;
}

.partidaencerrada {
/*    background-color: white; */
    color: red; 
/*    border: 2px solid #f44336; */
    font-size: 10px;
/*    border-radius: 15px; */
    padding-top: 3%;
/*    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    width: max-content; */
}

/* Pagina inicio */

.bg-menu{
    background-color: #004AAD;
}

.logo_login{
    font-family: "Carter One", Helvetica, sans-serif;
    color: #ffa500;
    font-size: 4rem;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 3px;
    -webkit-text-stroke: 0.3rem #004AAD;
}

.logo{
    font-family: "Carter One", Helvetica, sans-serif;
    color: #ffa500;
    font-size: 3rem;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 3px;
    -webkit-text-stroke: 0.2rem white;
}

.menu{
    border-radius: 20px;
}


.logo_inicio{
    width: 90%;
}

thead{
    color: white;
    background-color: #004AAD;
    border-radius: 40%;
}

@media screen and (max-width: 500px) {
    ul.topnav li.right, 
    ul.topnav li {float: none;}
}