/* RESULTADOS CP */

.resultados-cp .jogos {
  height: 40px;
  overflow-x: auto;
}

.resultados-cp .jogos .result {
  min-width: 40px;
  width: 40px;
  height: 40px;
  font-size: 12px;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 10px;
}

.resultados-cp .table-responsive {
  height: calc(100% - 50px);
  margin-top: 10px;
}

.resultados-cp .table {
  border-color: #5B5B5B;
  text-align: center;
}

.resultados-cp .table tr td {
  background-color: #363636;
  color: #fff;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  border: 1px solid #5B5B5B;
  font-weight: 100;
}

.resultados-cp .table tr td.highlight {
  background-color: #5b5b5b;
}

.resultados-cp .table tr td:hover {
  background-color: #747474;
}

.resultados-cp .table .header td,
.resultados-cp .table tr td:first-child {
  background-color: var(--blue)!important;
  font-weight: 900;
  text-transform: uppercase;
}

.resultados-cp .table tr td:first-child {
  width: 100px;
  min-width: 100px;
  position: sticky;
  left: 0;
  z-index: 99;
}

.resultados-cp .table tr td.white {
  background-color: #fff;
  color: var(--blue);
}

.resultados-cp .table tr td.white.highlight  {
  background: #bababa;
  color: #fff;
  font-weight: 900;
}


.resultados-cp .table .header td {
  position: sticky;
  top: 0;
  z-index: 9;
}

.resultados-cp .table .header:nth-child(1) td {
  top: -2px;
}

.resultados-cp .table .header:nth-child(2) td {
  top: 32px;
  background-color: #134b23!important;
}

.resultados-cp .table .header:nth-child(3) td {
  top: 65px;
  background-color: #b03131!important;
}

.resultados-cp .table tr td.atual {
  background-color: var(--blue);
  color: #fff;
}


/* ZERO LOSS */
.zero-loss .indicadores div {
  display: flex;
  justify-content: start;
  align-items: center;
}

.zero-loss .indicadores div > span:first-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 10px;
}

.zero-loss .indicadores div > span.green {
  background-image: radial-gradient(50% 50.00% at 50.00% 50.00%, #2A9B17 0%, rgba(50, 174, 30, 0.00) 100%);
}

.zero-loss .indicadores div > span.yellow {
  background-image: radial-gradient(50% 50.00% at 50.00% 50.00%, #FFC633 0%, rgba(174, 142, 30, 0.00) 100%);
}

.zero-loss .indicadores div > span.red {
  background-image: radial-gradient(50% 50.00% at 50.00% 50.00%, #F33 0%, rgba(174, 30, 30, 0.00) 100%);
}

.zero-loss .indicadores div > span:last-child {
  color: #fff;
  font-weight: 100;
  font-size: 13px;
}

.zero-loss .table-responsive {
  width: 80%;
  margin: 20px auto;
}

.zero-loss .table-responsive table thead td {
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border: 1px solid #5B5B5B;
  border-bottom: 0;
}

.zero-loss .table-responsive table tbody td {
  color: #fff;
  border: 1px solid #5B5B5B;
  text-align: center;
  font-weight: 100;
}

.zero-loss .table-responsive table tbody tr {
  cursor: pointer;
  background-color: #363636;
}

.zero-loss .table-responsive table tbody tr:hover td {
  backdrop-filter: contrast(0.5);
}

.zero-loss .table-responsive table tr.d_verde {
  background-color: rgb(29 113 39 / 79%);
}

.zero-loss .table-responsive table tr.d_amarelo {
  background-color: rgb(255 197 2 / 55%);
}

.zero-loss .table-responsive table tr.d_laranja {
  background-color: rgb(255 2 2 / 55%);
}

.zero-loss .table-responsive table tbody tr.active td {
  background: rgba(0,0,0,.4);
}

.zero-loss .table-responsive table tbody tr.deleted td {
  position: relative;
  z-index: 99;
}

.zero-loss .table-responsive table tbody tr.deleted td::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #a53636;
}

.zero-loss .table-responsive table tbody tr.deleted td:nth-child(4)::before {
  animation: deleted 1s linear forwards;
}

.zero-loss .table-responsive table tbody tr.deleted td:nth-child(3)::before {
  animation: deleted 1s linear 1s forwards;
}

.zero-loss .table-responsive table tbody tr.deleted td:nth-child(2)::before {
  animation: deleted 1s linear 2s forwards;
}

.zero-loss .table-responsive table tbody tr.deleted td:nth-child(1)::before {
  animation: deleted 1s linear 3s forwards;
}

@keyframes deleted {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}


/* ESTATISTICAS */
.estatisticas .body {
  overflow-x: hidden;
}

.estatisticas .info  {
  display: flex;
  flex-direction: column;
}


.estatisticas .info span:first-child {
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  font-weight: 200;
}

.estatisticas .info span:last-child {
  margin: 0 auto;
  width: 70%;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

.estatisticas .info.destaque span:last-child {
  background-color: var(--blue);
  border-color: var(--blue);
}

.estatisticas .info span.small {
  font-size: 12px;
  line-height: 1;
}


/* paginas */
.page {
  width: 100%;
  height: calc(100vh - var(--header-height));
  position: absolute;
  top: var(--header-height);
  left: 0;
}

.page iframe {
  width: 100%;
  height: 100%;
  border: 0;
}