/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 27/11/2020, 22:43:15
    Author     : Paulo Pinto
*/
:root {
    --dark: #012739;
    --primary: #00a1aa;
    --secondary: #00798d;
    --light:#b6dfe8;
    --gray:#e6e6e6;
}

* {
    font-family: 'Palanquin Dark', sans-serif;
}
body{
    background-image: url("../img/fundo.png");
    background-position: center;
    background-size: contain;
}
html,
body {
    height: 100%;
}
body {
    display: flex;
    align-items: center;
    /*padding-top: 40px;*/
    /*padding-bottom: 40px;*/
    /*background-color: #f5f5f5;*/
}
.texto-escuro{
    color:var(--dark);
}
.board {
    max-width: 90%;
    /*padding: 15px;*/
    /*background-color: red;*/
}
.coluna{
    border-radius: 25px;
}

.col-esq .coluna,
.col-dir .coluna{
    background-color: var(--dark);
}
.col-esq .coluna .imagem,
.col-dir .coluna .imagem{
    background-image: url(../img/argolas_claras.png);
    width: 100%;
    text-align: center;
    height: 40px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    top: -20px;
}
.col-centro .coluna{
    background-color: var(--light);
}
.col-centro .coluna .imagem {
    background-image: url("../img/argolas_escuras.png");
    width: 100%;
    text-align: center;
    height: 40px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    top: -20px;
}


h2{
    text-transform: uppercase;
    color:var(--light);
    font-size: 20px;
}
.separador{
    border-top:5px solid var(--light);
    display: block;
    width: 100%;
}
.separador.escuro{
    border-top:1px solid var(--secondary);
}
.avatar{

}

.logoJogo img{
    max-height: 100%;
    width: auto;
}

.chat{
    height: -webkit-calc(100% - 40px);
    height:    -moz-calc(100% - 40px);
    height:         calc(100% - 40px);
    padding: 0 10px;
}
.chatNotificacoes{
    height: -webkit-calc(100% - 40px);
    height:    -moz-calc(100% - 40px);
    height:         calc(100% - 40px);
    text-align: left;
    color: white;
}
.chatNotificacoes p{
    margin-bottom:0;
}
.chatNotificacoes .eu{
    text-align: left;
}
.chatNotificacoes .outros{
    text-align: right;
}
.chat-footer{
    position: relative;
    bottom: 5px;
}
.chat-footer #mensagemEnviar{
    margin-right: 20px;
    text-transform: none;
    border-radius: 30px;
    border: none;
}
.chat-footer #mensagemEnviar:focus,
.chat-footer #mensagemEnviar:focus-visible{
    border: none;
    outline: none;
    box-shadow: none;
}
.chat-footer #mensagemEnviarButton{
    width: 30px;
    height: 30px;
    background-image: url("../img/chat-envia.png");
    background-size: cover;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: inline-block;
    position: absolute;
    right: 5px;
    top: 4px;
}

.text-left{
    text-align: left;
}
.btn-secondary{
    background-color: var(--secondary);
}