.caixaNumeros{
    position: relative;
    top: -140px;
    width: 100%;
    margin-bottom: -75px;
    justify-content: center!important;
     pointer-events: none;

}
.caixaNumeros .alert-info{
    padding: 20px 40px;
    border-radius: 20px;    
}
.caixaNumeros .alert-info .lead{
    white-space: nowrap;
}

.cartoes {
    font-family: "Nerko One", cursive;
    justify-content: space-around;
    align-items: center;
}

.cartoes .cartao {
    padding-top: 15px;
    padding-bottom: 15px;
    border: 3px solid #00758d;
    background-color: #ffffff;
}

.cartoes .cartao .row:first-child {
    background-color: #00758d;
    color: white;
}

.cartoes .cartao .row:not(:first-child) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.cartoes .cartao .row:not(:first-child) .col {
    font-family: "Nerko One", cursive;
    font-size: 20px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    width: 100%;

    border-radius: 50%;
    color: #000000;
    flex-direction: column;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Edge, Opera and Firefox */

    border:2px solid transparent;
}

.cartoes .cartao .row:not(:first-child) .col:hover {
    color: #ffffff;
    background-color: #17a2b8;
    transition: all 0.5s ease;
}

.cartoes .cartao .row:not(:first-child) .col.activo {
    color: #ffffff;
    background-color: #17a2b8;
    transition: all 0.5s ease;
    border:2px solid #00758d;
}
.cartoes .cartao .row.numeros .col.pLinha,
.cartoes .cartao .row.numeros .col.pColuna,
.cartoes .cartao .row.numeros .col.pDiagonal,
.cartoes .cartao .row.numeros .col.pDiagonalA,
.cartoes .cartao .row.numeros .col.pCantosCentro{
    border:2px solid gold;
}
.cartoes .cartao .row.numeros .col.pBINGO{
    background-color: goldenrod;
    border:2px solid #00758d;
}
.cartoes .cartao .row.numeros .col.errado{
    background-color: #dc3545;
    color:#ffffff;
}

/* Mapa */
.mapa {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    background: white;
    z-index: 1;
    transition: all .1s ease;
    position: absolute;
    left: 0;
    right: 0;
}
.mapa.mostra{
    display: flex;    
}
.mapa .numero {
    width: 10%;
    padding-bottom: 10%; /* Same as width, sets height */
    position: relative;  
    min-width: 30px;
}

.mapa .numero.activo {
    background-color: #17a2b8;
    color: #ffffff;
}

.mapa .numero span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -50%;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 125%;
}

.ultimosNumSair {
    height: 37px;
    display: flex;
    justify-content: flex-start;
}

.ultimosNumSair .numberCircle {
    display: flex;
    justify-content: center;
    align-items: center;
    /* CENTRALIZADO */

    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    margin: 0 1rem;
    background: #fff;
    border: 0.2rem solid #00758d;

    font: 1rem Arial, sans-serif;
    text-align: center;
    color: #00758d;
}
.ultimosNumSair .numberCircle:first-child{
    border: 0.2rem solid gold;
    margin-left: 0;
    font-size: 1.2em;
}
.ultimosNumSair .numberCircle:last-child{
    margin-right: 0;
}

.chatNotificacoes{
    max-height: 500px;
    overflow-y: auto;
    min-height: 200px;
}
.botoesControlo{
    margin-top: 30px;
}
.botoesControlo button{
    position: relative;

}
.botoesControlo button .badge{
    position: absolute;
    right: 3px;
    top:3px;
}
