:root {
  --azul: #05bdf5;
  --azul-claro: #f1faff;
  --azul-hover: #04aadc;
  --vermelho: #bc141a;
  --fundo: #faf8e0;
  --fundo-hover: #f3f0d0;
  --fundo-light: #e1dfc8;
  --placeholder: #d7d6cd;
  --cardIconSR: #ffc04c;
  --amarelo: #efbd00;
  --shadown: rgba(0, 0, 0, 0.075);
  --shadown-sm: rgba(0, 0, 0, 0.5);
  --shadown-lg: rgba(0, 0, 0, 0.1);
  --input-focus: #ced4da;
  --hr: #878578;
  --nota-1: #b4ebfc;
  --nota-5: #f6d9fb;
  --nota-10: #fff4d6;
  --nota-50: #fce7d2;
  --nota-100: #e8f5cc;
  --nota-500: #fff;
  --purple: rgb(207, 0, 207);
  --violet: rgb(95, 0, 173);
  --orange: #e09200;
  --yellow: #f0c319;
  --green: rgb(0, 175, 0);
  --bluemarine: #2667b6;
  --dashed: rgba(0, 0, 0, 0.199);
}
@font-face {
  font-family: "Kessel-105-Text";
  src: url("../fonts/kessel-105-text-book.woff") format("woff"),
    url("../fonts/kessel-105-text-book-oblique.woff") format("woff"),
    url("../fonts/kessel-105-text-bold.woff") format("woff"),
    url("../fonts/kessel-105-text-bold-oblique.woff") format("woff"),
    url("../fonts/kessel-105-text-heavy.woff") format("woff"),
    url("../fonts/kessel-105-text-heavy-oblique.woff") format("woff"),
    url("../fonts/kessel-105-text-light.woff") format("woff"),
    url("../fonts/kessel-105-text-light-oblique.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
body {
  background-color: var(--fundo);
  font-family: "Kessel-105-Text", sans-serif;
  overflow-x: hidden;
}
/**************************************************************************/
/* Padronização dos títulos */
.titleBI {
  background-color: var(--vermelho);
  text-transform: uppercase;
  color: #fff;
  padding: 12px 0px 0px 10px;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}
@media only screen and (max-width: 600px) {
  .titleBI {
    font-size: 1.5rem;
    padding-top: 20px;
    padding-bottom: 14px;
  }
}
p.title {
  margin-top: -15px;
  font-weight: 600;
  background-color: var(--azul);
  text-transform: uppercase;
  color: #fff;
  padding: 10px 0px 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.1px;
  text-align: center;
}
p.title.w-100 {
  margin-left: -20px !important;
  width: calc(100% + 60px) !important;
}
p.title-black {
  background-color: black;
  margin-bottom: -16px;
}
/* Padronização dos títulos */
/**************************************************************************/
/* Alteração do padrão do Bootstrap */
.text-muted {
  color: #91989e !important;
}
.shadow {
  box-shadow: 0 0.5rem 1.5rem 0.5rem var(--shadown) !important;
}
.shadow-sm {
  box-shadow: 0 0.1rem 1rem 0.25rem var(--shadown-sm) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 2rem 1rem var(--shadown-lg) !important;
}
.mb-n04 {
  margin-bottom: -0.4rem;
}
.form-control {
  font-weight: 600;
}
.form-control:focus,
.form-select:focus {
  border-color: none;
  box-shadow: none;
  border: 1px solid var(--input-focus);
}
:-moz-placeholder {
  text-transform: none;
  font-weight: 200 !important;
  font-size: 1rem;
  color: var(--placeholder) !important;
}
::-moz-placeholder {
  text-transform: none;
  font-weight: 200 !important;
  font-size: 1rem;
  color: var(--placeholder) !important;
}
:-ms-input-placeholder {
  text-transform: none;
  font-weight: 200 !important;
  font-size: 1rem;
  color: var(--placeholder) !important;
}
::placeholder {
  text-transform: none;
  font-weight: 200 !important;
  font-size: 1rem;
  color: var(--placeholder) !important;
}
select option:first-child {
  color: var(--placeholder);
}
.btn-primary {
  background-color: var(--azul);
  border-color: var(--azul);
  text-transform: uppercase;
  font-weight: 600;
}
.btn-primary:hover,
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--azul-hover);
  border-color: var(--azul-hover);
}
hr {
  margin: 1rem 1rem 2rem;
  color: inherit;
  background-color: var(--hr);
  border: 0;
  opacity: 0.25;
}
p.text-align-left {
  text-align: left;
}
/* FIM - Alteração do padrão do Bootstrap */
/**************************************************************************/
/* Configuração dos estilos das notas em opções */
.nota {
  text-align: center;
}
input.form-control {
  text-transform: capitalize;
}
.input-group-text.group-notas {
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-group-text.group-notas.nota-1 {
  background-color: var(--nota-1);
}
.input-group-text.group-notas.nota-5 {
  background-color: var(--nota-5);
}
.input-group-text.group-notas.nota-10 {
  background-color: var(--nota-10);
}
.input-group-text.group-notas.nota-50 {
  background-color: var(--nota-50);
}
.input-group-text.group-notas.nota-100 {
  background-color: var(--nota-100);
}
.input-group-text.group-notas.nota-500 {
  background-color: var(--nota-500);
}
p.qtdPadrao {
  text-align: right;
  font-size: 0.8em;
  margin-top: -8px;
  margin-right: 10px;
  margin-bottom: -8px;
  color: var(--fundo-light);
}
.qtdPadrao::before {
  content: "Valor padrão: ";
}
p.qtdPadrao::after {
  content: " " attr(data-quantidade);
  font-weight: 600;
}
/* FIM - Configuração dos estilos das notas em opções */
/**************************************************************************/
/* Configuração do ícone de saída da prisão de quem tiver */
.cardOutPrison {
  background-color: var(--cardIconSR);
  box-shadow: 0 2px 4px var(--shadown);
  padding: 0.2rem;
  border-radius: 5px;
  border: 2px solid #000;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  padding-top: 7px;
}
/* FIM - Configuração do ícone de saída da prisão de quem tiver */
/**************************************************************************/
/* Configurações dos jogadores */
.playerMoney {
  font-weight: 600;
  color: var(--azul-hover);
  text-align: center;
  font-size: 2rem;
}
.btn.btn-outline.btn-outline-dashed {
  border-color: var(--placeholder);
  border-width: 1px;
  border-style: dashed;
}
.btn-check:checked + .btn.btn-active-light-primary,
.btn-check:active + .btn.btn-active-light-primary,
.btn.btn-active-light-primary:focus:not(.btn-active),
.btn.btn-active-light-primary:hover:not(.btn-active),
.btn.btn-active-light-primary:active:not(.btn-active),
.btn.btn-active-light-primary.active,
.btn.btn-active-light-primary.show,
.show > .btn.btn-active-light-primary {
  border-color: var(--azul);
  background-color: #fff !important;
}
label.btn {
  width: 100%;
}
@media only screen and (min-width: 769px) {
  .playersLine {
    background-color: var(--fundo);
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: -1px;
    z-index: 10;
  }
}
/* FIM - Jogadores */
/**************************************************************************/
/* Botões de ações dos cards */
.btn-with-image {
  position: relative;
  padding-left: 90px;
  padding-right: 20px;
  padding-top: 15px;
  height: 80px;
  width: 100%;
  background-color: var(--fundo);
  border: 1px solid black;
  color: black;
  transition: background-color 0.3s ease;
  font-weight: 600;
}
.btn-with-image span {
  color: var(--azul);
  font-size: 1.4rem;
}

.btn-with-image:hover {
  background-color: var(--fundo-hover);
}

.btn-with-image img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
}
/* FIM - Botões de ações dos cards */
/**************************************************************************/
/* Resumo de fim de jogo */
.endGame {
  padding: 20px;
  cursor: pointer;
  background-color: var(--fundo-light);
  color: var(--hr);
  margin-bottom: 0;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  letter-spacing: 0.1px;
  text-align: center;
  margin-top: 50px;
}
.totalResumo {
  float: right;
}
.valoresFinais {
  font-size: 1.5rem;
  color: var(--azul);
  font-weight: 600;
}
.titleAccordion {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}

.left-content {
  justify-self: start;
}
.right-content {
  justify-self: end;
}
.valorResumo {
  color: var(--azul);
  margin-left: 10px;
}
.modal-body hr {
  margin-top: 20px;
  margin-bottom: 0;
}
.modal-body hr.row-last {
  margin-top: 0;
  margin-bottom: 0;
}
.resumeDetails {
  padding: 0;
  margin: 0;
  justify-content: space-between;
}
.resumeDetails .valorResumo {
  float: right;
  font-weight: 600;
}
.resumeColor {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 5px;
  padding: 6px;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
}
.color-blue {
  background-color: var(--azul);
}
.color-purple {
  background-color: var(--purple);
}
.color-violet {
  background-color: var(--violet);
}
.color-orange {
  background-color: var(--orange);
}
.color-yellow {
  background-color: var(--yellow);
}
.color-green {
  background-color: var(--green);
}
.color-bluemarine {
  background-color: var(--bluemarine);
}
.color-black {
  background-color: #000;
}
div.title{
  background-color: var(--fundo);
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.90rem;
  border-radius: 15px;
  border: 3px dashed var(--amarelo);
  margin-top: -5px;
  margin-bottom: 10px;
}
/* FIM - Resumo de fim de jogo */

/* .btn-money{
  width: 24px;
  text-decoration: none;
  color: #5e5e5e;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background-color: var(--fundo-hover);
}
.btn-money:hover{
  cursor: pointer;
  color: #494949;
  background-color: var(--fundo-light);
} */

.btn-money {
  width: 50px;
  max-height: 24px;
  text-decoration: none;
  color: #5e5e5e;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background-color: var(--fundo-hover);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-money:hover {
  cursor: pointer;
  color: #494949;
  background-color: var(--fundo-light);
  width: auto;
}

.btn-money:hover span {
  display: inline-block;
}

.btn-money:hover img {
  margin-left: 8px;
}
