/* ===================== ANIMAÇÕES ===================== */
@keyframes blinking {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes blinkingText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes effectColor {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes pulsar {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes piscarAlerta {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ⭐ NOVA ANIMAÇÃO PARA ODDS SELECIONADAS */
@keyframes pulseSelection {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes glowEffect {
  0%, 100% {
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
  }
}

/* ===================== COMPONENTES GERAIS ===================== */
.button-circle {
  display: inline-block;
  background-color: rgba(200, 0, 0, 0.837);
  color: white;
  text-align: center;
  border-radius: 10%;
  padding: 2px 10px;
  animation: blinking 7s infinite;
}

.live-pisca {
  animation: blinkingText 1.2s infinite;
}

.pisca {
  animation: blink 1s infinite;
}

.nav-ao-vivo {
  padding: 10px 5px !important;
  color: #e6350e !important;
  font-weight: 400 !important;
  animation: effectColor 0.7s infinite alternate;
}

.nav-ao-vivo.ajustado:hover {
  background-color: #c92f3c;
}

.nav-ao-vivo.ajustado .linha {
  display: block;
  line-height: 1;
}

.nav-day {
  padding: 10px 10px !important;
}

/* ===================== MENU DE JOGOS ===================== */
.menu-jogos {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 12px;
  margin: 0;
  list-style: none;
  background: linear-gradient(135deg, #1b2430, #212b39);
  border: 1px solid #131b25;
  border-radius: 6px;
  gap: 12px;
  scrollbar-width: none;
}

.menu-jogos::-webkit-scrollbar {
  display: none;
}

.menu-jogos li {
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.menu-jogos li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #2c3647;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 8px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
}

.menu-jogos li a:hover {
  background-color: #76e70d;
  color: #000;
  transform: scale(1.05);
}

.menu-jogos li.ativo a {
  background-color: #131b25;
  border: 1px solid #76e70d;
  color: #76e70d;
  font-weight: 600;
}

.menu-jogos .icon img {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
}

.menu-jogos .label {
  font-size: 11px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.icone-esporte {
  background-color: black;
  border-radius: 50%;
  height: 30px;
  padding: 2px;
  width: 30px;
}

/* ===================== CUPOM ===================== */
.cupon-title {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
}

.cupon-title li {
  flex: 1 1 auto;
  text-align: left;
}

.cupon-title li.ativo {
  background: rgb(83, 79, 79);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.cupon-title li a {
  display: block;
  padding: 10px;
  cursor: pointer;
}

.cupon-title li.ativo a {
  color: #fff;
}

.box-cupon {
  width: 100%;
  height: auto;
  padding: 5px;
  border-bottom: 1px dashed #002b88;
  background: url('https://cdn.easports.net.br/bl.png') no-repeat center center;
  background-size: cover;
}

.box-cupon li {
  list-style: none;
}

.ganho-cupon {
  width: 100%;
  height: auto;
  background: #850400;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  padding: 5px;
  margin-top: 15px;
  border-radius: 3px;
}

.header-campeonato-cupon {
  width: 100%;
  height: auto;
  padding: 4px;
  background: #001b51;
  color: #FFF !important;
  font-size: 16px;
}

.delete-palpite-cupon {
  color: #f00000;
  float: right;
  font-size: 18px;
  cursor: pointer;
}

.cupon-confronto {
  height: auto;
  font-size: 20;
  display: block;
}

.cupon-data {
  color: #D73925;
}

.cupon-right {
  float: right;
}

.val-retorno-ind {
  float: right;
}

.box-rodape-cupon {
  width: 100%;
  height: auto;
  padding: 3px;
  padding-bottom: 15px;
}

.btn-valor {
  margin: 2px;
}

.box-rodape-cupon h4 {
  font-size: 16px;
}

/* ===================== LISTA DE JOGOS ===================== */
.container-lista-jogos {
  border-radius: 3px;
  color: #a5a4a4;
  margin: 1px 2px;
  padding: 0px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  line-height: 19px;
  box-shadow: 0px 0px 5px 0px rgba(56, 56, 56, 0.5);
}

.container-lista-jogos .btn-apostas .btn {
  width: 24%;
  background-color: #b6b6b6 !important;
  line-height: 1.32 !important;
}

.container-lista-jogos .btn-apostas .btn span {
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.container-lista-jogos .jogos {
  border-right: 1px solid #5e5e5e86;
}

.container-lista-jogos .data-hora {
  margin-top: 10px;
}

.container-lista-jogos .data-hora span {
  color: #77cc00;
  font-weight: 700;
  padding-left: 3px;
}

/* ===================== HEADERS ===================== */
.header-campeonato-matchs {
  width: 100%;
  height: auto;
  background: #77cc00;
  color: #FFF;
  font-size: 17px;
  padding: 8px;
  border-radius: 5px;
  margin: 5px 1px;
  margin-bottom: 0px;
  display: flex;
  box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.5);
  align-items: center;
  font-weight: bold;
}

.header-campeonato-matchs .flag {
  margin-right: 1px;
}

.header-jogos {
  background: #363636;
  color: #FFF;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

/* ===================== BOTÕES ===================== */
.btn-home-header {
  border: none;
  float: left;
  margin: 0px;
  width: 24%;
  text-align: center;
  cursor: pointer;
}

.btn-home {
  background: #2c2c2c;
  border: 1px solid #3e3e3e;
  color: #ff8c00;
  float: left;
  margin: 2px 1px;
  width: 24%;
  height: 33px;
  line-height: 15px !important;
  text-align: center;
  font-size: 14px !important;
  padding-top: 8px;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Hover para as odds no desktop */
.btn-home:hover {
  background: #1f1f1f !important;
  
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(29, 29, 29, 0.2);
  transition: all 0.2s ease;
}

/* Transição suave para o botão */
.btn-home {
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Hover mais específico caso não funcione */
.cotacoes-principais .btn-home:hover {
  background: #494949 !important;
  border: 1px solid #444444;
  color: #fff !important;
}

/* Hover para odds mobile também */
.btn-odd-mobile:hover {
  background: #504e4e !important;
  border: 1px solid #444444;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-odd-mobile {
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Não aplicar hover em odds bloqueadas */
.btn-home[data-letter="C"]:hover {
  background: #6c757d !important;
  cursor: not-allowed;
  transform: none;
}

.btn-odd-mobile.locked:hover {
  background: #6c757d !important;
  cursor: not-allowed;
  transform: none;
}

/* ⭐ ESTILO PARA BOTÕES SELECIONADOS - DESKTOP */
.btn-home.selected {
  background-color: #4CAF50 !important;
  color: white !important;
  border: 2px solid #45a049 !important;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
  animation: pulseSelection 2s infinite;
}

.btn-home.selected:hover {
  background-color: #45a049 !important;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.7) !important;
}

.selecionado {
  background: #ffa600;
  color: #fff;
  font-size: 14px !important;
  float: left;
  margin: 2px 0px;
  width: 24%;
  height: 33px;
  line-height: 15px !important;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  border-radius: 1px;
  border: 1px solid #ffa600;
}

.plus-odd {
  background: #77cc00;
  border: 1px solid #ffa600;
  color: #000;
  font-size: 14px !important;
  float: left;
  margin: 2px 1px;
  width: 24%;
  height: 33px;
  line-height: 1px !important;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  border-radius: 1px;
}

.plus-odd:hover {
  background: #1e974a;
  border: 1px solid #494848;
  color: #fff;
}

.btn-acao {
  min-width: 50px;
}

/* Botões de Login/Logout */
button.btn-login,
button.btn-logout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  color: white;
  margin-top: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.541);
  text-align: center;
  background-color: #77cc00;
}

button.btn-login:hover,
button.btn-login:focus,
button.btn-logout:hover,
button.btn-logout:focus {
  background-color: #d37f00;
  outline: none;
  box-shadow: 0 4px 12px rgba(120, 247, 130, 0.6);
  transform: scale(1.05);
}

button.btn-login:active,
button.btn-logout:active {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Botões Animados */
.btn-animado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin: 5px 0;
}

.btn-animado i {
  font-size: 14px;
}

.entrar {
  background-color: #ffa600;
  color: #fff;
}

.entrar:hover {
  background-color: #2dc88b;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(65, 240, 163, 0.7);
}

.sair {
  background-color: #ff4d4f;
  color: #fff;
}

.sair:hover {
  background-color: #e0383a;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.6);
}

/* ===================== BUSCA ===================== */
.custom-search-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.custom-search-input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border-radius: 20px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.custom-search-input::placeholder {
  color: #aaa;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 16px;
  pointer-events: none;
}

.search-container {
  width: 100%;
  display: flex;
  padding: 3px;
  box-sizing: border-box;
}

.search-input {
  flex: 1;
  padding: 10px 10px;
  font-size: 10px;
  border: 1px solid #444;
  border-right: none;
  border-radius: 30px 0 0 30px;
  background-color: #3d3d3d;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #bbb;
}

.search-input:focus {
  border-color: #77cc00;
}

.search-button {
  padding: 0 18px;
  border: none;
  background: #77cc00;
  color: #000;
  font-size: 16px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.search-button:hover {
  background: #77cc00;
  transform: scale(1.03);
}

.search-button:active {
  transform: scale(0.98);
}

.input-group-text {
  padding: 0.5rem 0.75rem;
  background-color: #f0f0f0;
  border: none;
  font-size: 14px;
}

.form-control {
  font-size: 14px;
  height: 38px;
}

/* ===================== FILTROS E CONTROLES ===================== */
.input-group-append {
  margin-left: -1px;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}

.rodape-cliente {
  font-size: 11px;
  font-weight: normal;
}

.filter {
  outline: 0;
  width: 12.5rem;
  padding: .4375rem .875rem;
  padding-right: 2rem;
  line-height: 1.5385;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: .1875rem;
  z-index: 99;
}

.filterPerPage {
  cursor: pointer;
  outline: 0;
  display: block;
  padding: .4375rem 0;
  line-height: 1.5385;
  color: #333;
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: .1875rem;
  transition: all ease-in-out .15s;
}

.btn-filter {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
}

.sort-control {
  cursor: pointer;
}

.ascending:after {
  content: "\25b2";
  margin-left: 3px;
  margin-bottom: 2px;
  font-size: 10px;
}

.descending:after {
  content: "\25bc";
  margin-left: 3px;
  margin-bottom: 2px;
  font-size: 10px;
}

.navFirstLast {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ===================== AO VIVO ===================== */
.time-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  justify-content: space-between;
}

.bandeira-time {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.team-text {
  font-size: 1.3rem;
  line-height: 1.2;
  word-break: break-word;
  white-space: normal;
  flex: 1;
}

.tempo-status {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background-color: #e63946;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.live-icon {
  font-size: 14px;
  color: #fff;
  animation: pulsar 1s infinite;
}

/* ===================== ALERTAS ===================== */
.alerta-gol {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 9999;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: piscarAlerta 1s infinite;
}

.pisca-icon {
  margin-right: 10px;
}

/* ===================== ODDS E LETRAS ===================== */
.letra-odd {
  color: #acacab;
  font-weight: bold;
  margin-right: 4px;
}

/* ===================== MATCH CONTAINER MOBILE ===================== */
.match-container-mobile {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 5px solid #d4d4d4;
  margin-bottom: 5px;
  background: #d4d4d4;
  border-radius: 8px;
  box-shadow: 0 1px 3px #4d4d4d1a;
}

.left-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-time-section {
  min-width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.time-display {
  font-size: 14px;
  font-weight: bold;
  color: #666565;
  line-height: 2.9;
}

.date-display {
  font-size: 10px;
  color: #667a46;
  margin-top: 2px;
  position: relative; /* Adiciona posicionamento relativo para permitir movimento */
}



.badge {
  font-size: 8px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #28a745;
  color: white;
}

.teams-section {
  flex: 1;
  min-width: 0;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 3px;
}

.team-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;

}

.team-name {
  font-size: 14px;
  color: #313131;
  font-weight: 500;
  margin-top: 10px;
   max-width: 100px;
    white-space: nowrap;
    overflow: hidden;

}

.score-display {
  text-align: left;
  margin-top: 5px;
  font-size: 14px;
  color: #28a745;
  font-weight: bold;
}

.odds-section {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  align-items: center;
}

.odds-labels {
  display: flex;
  gap: 2px;
  margin-bottom: -5px;
}

.odd-label {
  font-size: 8px;
  color: #555555;
  text-align: center;
  min-width: 50px;
  font-weight: 500;
}

.plus-label {
  min-width: 35px !important;
  color: #555555;
}

.odds-buttons-container {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.odds-buttons {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.btn-odd-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 50px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 11px;
  border: 1px solid;
  cursor: pointer;
}

.btn-odd-mobile.locked {
  background: #f8f9fa;
  border-color: #dee2e6;
  cursor: not-allowed;
  color: #6c757d;
}

.btn-odd-mobile.available {
  background: #303030;
  border: 1px solid #5f5f5f;
  color: #fff;
}

/* ⭐ ESTILO PARA BOTÕES ODDS MOBILE SELECIONADOS */
.btn-odd-mobile.selected {
  background-color: #4CAF50 !important;
  color: white !important;
  border: 2px solid #45a049 !important;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
  animation: pulseSelection 2s infinite;
}

.btn-odd-mobile.selected:hover {
  background-color: #45a049 !important;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.7) !important;
}

.btn-odd-mobile.available:hover {
  background: #e8f5e8;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.odd-value {
  font-size: 12px;
  font-weight: bold;
  color: #d1d1d1;
  text-align: center;
}

/* ⭐ EFEITO ESPECIAL PARA ODDS SELECIONADAS */
.btn-home.selected .odd-value,
.btn-odd-mobile.selected .odd-value {
  color: #ffffff !important;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.plus-odd-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 45px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 2px;
  flex-shrink: 0;
}

.plus-odd-mobile:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.plus-odd-mobile i {
  font-size: 10px;
  color: #6c757d;
}

.plus-odd-mobile span {
  font-size: 13px;
  color: #202122;
}

/* ⭐ EFEITOS VISUAIS ADICIONAIS PARA SELEÇÃO */
.btn-home.selected::before,
.btn-odd-mobile.selected::before {
  content: '✓';
  position: absolute;
  top: -5px;
  right: -5px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-home,
.btn-odd-mobile {
  position: relative;
}

/* ⭐ INDICADOR DE MÚLTIPLA SELEÇÃO */
.odds-container.multiple-selected .btn-home.selected,
.odds-container.multiple-selected .btn-odd-mobile.selected {
  animation: glowEffect 1.5s infinite;
}

/* ⭐ TRANSIÇÕES SUAVES */
.btn-home,
.btn-odd-mobile {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-home.selected,
.btn-odd-mobile.selected {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== MOBILE ESPECÍFICO ===================== */
@media (max-width: 767px) {
  body {
    margin-top: 40px !important;
    padding-bottom: 70px;
  }

  .user-panel {
    margin-top: 60px !important;
  }

  #nav-mobile {
    display: block;
    padding: 8px;
    background: #222D32;
  }

  #cupom-site {
    display: none;
  }

  #tabs-mobile {
    font-size: 11px;
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }

  #tabs-mobile li {
    flex: 0 0 auto;
    margin-right: 5px;
  }

  #input-mobile-top {
    width: 23%;
    float: left;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 13px;
    outline: none;
  }

  #btn-finalizar-mobile,
  #btn-zerar-mobile {
    float: right;
    padding: 8px 12px;
    background-color: #77cc00;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #btn-finalizar-mobile:hover,
  #btn-zerar-mobile:hover {
    background-color: #77cc00;
  }

  .ganho-mobile {
    margin-left: 10px;
    color: #dcdcdc;
    margin-top: 3px;
    width: 25%;
    padding: 5px;
    float: left;
  }

  #btn-zerar-mobile {
    margin-left: 10px;
  }

  /* Menu jogos mobile */
  .menu-jogos {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: 1px solid #131b25;
    z-index: 9999;
    justify-content: space-between;
    padding: 5px 3px;
  }

  .menu-jogos li {
    width: 56px;
    height: 46px;
    flex-shrink: 0;
    text-align: center;
  }

  .menu-jogos li a {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    font-size: 9px;
    gap: 2px;
    line-height: 1;
  }

  .menu-jogos li img {
    width: 21px;
    height: 21px;
    padding: 1px;
    border-radius: 50%;
    background-color: black;
  }

  .menu-jogos .label::after {
    content: attr(data-short);
  }

  .menu-jogos .label {
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  /* Busca mobile */
  .custom-search-wrapper {
    width: 100%;
    padding: 0 2px;
  }

  .custom-search-input {
    font-size: 14px;
  }

  /* Match container mobile */
  .match-container-mobile {
    padding: 3px;
  }
  
  .left-section {
    gap: 3px;
  }
  
  .date-time-section {
    min-width: 1px;
  }
  
  .time-display {
    font-size: 12px;
  }
  
  
  
  
  
  .btn-odd-mobile {
    min-height: 45px;
    min-width: 45px;
  }
  
  .plus-odd-mobile {
    min-height: 42px;
    min-width: 40px;
  }
  
  .odd-label {
    min-width: 45px;
  }
  
  .plus-label {
    min-width: 30px !important;
  }

  /* ⭐ AJUSTES MOBILE PARA ODDS SELECIONADAS */
  .btn-odd-mobile.selected::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
    top: -3px;
    right: -3px;
  }

  .btn-home.selected::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
    top: -3px;
    right: -3px;
  }
}

/* ===================== DESKTOP ESPECÍFICO ===================== */
@media (min-width: 768px) {
  #nav-mobile {
    display: none;
  }

  /* Menu jogos desktop */
  .menu-jogos li {
    width: auto;
    height: auto;
  }

  .menu-jogos li a {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .menu-jogos .icon img {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .menu-jogos .label::after {
    content: unset;
  }

  .menu-jogos .label {
    font-size: 13px;
    white-space: nowrap;
    text-align: left;
  }

  /* Busca desktop */
  .custom-search-wrapper {
    width: 57vw;
    padding: 0 2px;
  }

  .custom-search-input {
    font-size: 15px;
  }

  /* ⭐ EFEITOS DESKTOP PARA ODDS SELECIONADAS */
  .btn-home.selected,
  .btn-odd-mobile.selected {
    transform: scale(1.08);
  }

  .btn-home.selected:hover,
  .btn-odd-mobile.selected:hover {
    transform: scale(1.12);
  }
}

/* ===================== MOBILE EXTRA PEQUENO ===================== */
@media (max-width: 480px) {
  .odds-buttons-container {
    gap: 2px;
  }
  
  .btn-odd-mobile {
    min-width: 45px;
    min-height: 42px;
  }
  
  .odd-value {
    font-size: 13px;
  }
  
  .odd-label {
    font-size: 7px;
    min-width: 45px;
  }
  
  .plus-label {
    min-width: 43px !important;
  }
  
  

  /* ⭐ AJUSTES EXTRA PEQUENO PARA SELEÇÃO */
  .btn-odd-mobile.selected {
    transform: scale(1.03);
  }

  .btn-odd-mobile.selected::before {
    width: 14px;
    height: 14px;
    font-size: 9px;
    top: -2px;
    right: -2px;
  }
}

/* ===================== ESTADOS ESPECIAIS PARA ODDS ===================== */
/* ⭐ Odds desabilitadas quando máximo atingido */
.btn-home.disabled,
.btn-odd-mobile.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ⭐ Efeito de loading durante atualizações */
.btn-home.loading,
.btn-odd-mobile.loading {
  position: relative;
  overflow: hidden;
}

.btn-home.loading::after,
.btn-odd-mobile.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ⭐ Indicador de odds em conflito */
.btn-home.conflict,
.btn-odd-mobile.conflict {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3) !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* ⭐ Tooltip para odds selecionadas */
.btn-home.selected,
.btn-odd-mobile.selected {
  position: relative;
}

.btn-home.selected:hover::after,
.btn-odd-mobile.selected:hover::after {
  content: 'Selecionado';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ⭐ Contador de seleções múltiplas */
.selection-counter {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #4CAF50;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
  z-index: 1000;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.selection-counter.show {
  transform: scale(1);
}

.selection-counter.pulse {
  animation: pulseCounter 0.6s ease;
}

@keyframes pulseCounter {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ⭐ Estilo para modo escuro específico das odds */
@media (prefers-color-scheme: dark) {
  .btn-home.selected,
  .btn-odd-mobile.selected {
    background-color: #66BB6A !important;
    border-color: #4CAF50 !important;
  }
  
  .btn-home.selected::before,
  .btn-odd-mobile.selected::before {
    background: #66BB6A;
  }
}

/* ⭐ Animação de entrada para novos botões */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-home.new,
.btn-odd-mobile.new {
  animation: fadeInScale 0.4s ease forwards;
}

/* ⭐ Efeito de ripple ao clicar */
.btn-home,
.btn-odd-mobile {
  overflow: hidden;
  position: relative;
}

.btn-home::before,
.btn-odd-mobile::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.btn-home.clicked::before,
.btn-odd-mobile.clicked::before {
  width: 300px;
  height: 300px;
}



/* ⭐ MELHORIAS VISUAIS PARA ODDS SELECIONADAS */
/* Usa as classes que já existem no seu sistema jQuery */

/* Botão selecionado (desktop) - classe que já existe */
.selecionado {
  background: #4CAF50 !important; /* Verde em vez de laranja */
  color: #ffffff !important; /* TEXTO BRANCO quando selecionado */
  border: 2px solid #45a049 !important;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
  animation: pulseGreen 2s infinite; /* ANIMAÇÃO EM TODOS OS DISPOSITIVOS */
}

/* Efeito hover para selecionados */
.selecionado:hover {
  background: #45a049 !important;
  color: #ffffff !important; /* MANTÉM TEXTO BRANCO no hover */
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.7) !important;
  transform: scale(1.08);
}

/* ⭐ MUDANÇA DE COR DO TEXTO DENTRO DA ODD SELECIONADA */
.selecionado .odd-value {
  color: #ffffff !important; /* Texto da odd fica branco */
  font-weight: bold !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important; /* Sombra no texto para destaque */
}

/* Para botões que não têm .odd-value (texto direto) */
.selecionado {
  font-weight: bold !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}
/* Melhoria para botões normais */
.btn-home {
  transition: all 0.3s ease;
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-odd-mobile {
  transition: all 0.3s ease;
}

.btn-odd-mobile:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ⭐ ÍCONE DE CHECK BEM NA QUINA DIREITA DO BOTÃO */
.selecionado::before {
  content: '✓';
  position: absolute;
  top: -6px;
  right: -12px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
  z-index: 100;
}

/* Garante que os botões tenham overflow visível para mostrar o ícone */
.btn-home {
  position: relative;
  overflow: visible !important;
}

.btn-odd-mobile {
  position: relative;
  overflow: visible !important;
}

/* ⭐ GARANTE QUE O "MAIS ODDS" TAMBÉM MOSTRE O ÍCONE */
.plus-odd-mobile {
  position: relative !important;
  overflow: visible !important;
  transition: all 0.3s ease;
}

/* Garante que containers também mostrem o ícone */
.btn-home,
.btn-odd-mobile,
.plus-odd-mobile,
.odds-buttons,
.odds-buttons-container {
  overflow: visible !important;
}

/* Melhorias para mobile - COM ANIMAÇÃO */
@media (max-width: 767px) {
  .selecionado::before {
    width: 16px;
    height: 16px;
    font-size: 11px;
    top: -5px;
    right: -10px;
    z-index: 100;
    animation: pulseIcon 1.5s infinite; /* ANIMAÇÃO DO ÍCONE NO MOBILE */
  }
  
  .selecionado {
    transform: scale(1.03);
    animation: pulseGreen 2s infinite; /* MANTÉM ANIMAÇÃO NO MOBILE */
  }
  
  .selecionado:hover {
    transform: scale(1.06);
  }
  
  /* Texto da odd no mobile */
  .selecionado .odd-value {
    color: #ffffff !important;
    font-weight: bold !important;
  }

  /* ⭐ MAIS ODDS NO MOBILE */
  .plus-odd-mobile.has-selection::before {
    width: 16px;
    height: 16px;
    font-size: 11px;
    top: -5px;
    right: -10px;
    z-index: 100;
    animation: pulseIcon 1.5s infinite;
  }

  .plus-odd-mobile.has-selection {
    transform: scale(1.03);
    animation: pulseGreen 2s infinite;
  }
}

/* Para telas muito pequenas - COM ANIMAÇÃO */
@media (max-width: 480px) {
  .selecionado::before {
    width: 14px;
    height: 14px;
    font-size: 10px;
    top: -4px;
    right: -8px;
    z-index: 100;
    animation: pulseIcon 1.5s infinite; /* ANIMAÇÃO DO ÍCONE EM TELAS PEQUENAS */
  }
  
  .selecionado {
    animation: pulseGreen 2s infinite; /* ANIMAÇÃO EM TELAS PEQUENAS */
  }

  /* ⭐ MAIS ODDS EM TELAS PEQUENAS */
  .plus-odd-mobile.has-selection::before {
    width: 14px;
    height: 14px;
    font-size: 10px;
    top: -4px;
    right: -8px;
    z-index: 100;
    animation: pulseIcon 1.5s infinite;
  }

  .plus-odd-mobile.has-selection {
    animation: pulseGreen 2s infinite;
  }
}

/* ⭐ ANIMAÇÃO ESPECIAL PARA O ÍCONE */
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* CSS para estilizar o ícone AO VIVO */

.live-content {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.live-icon {
  display: flex;
  align-items: center;
  color: #fff;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.8));
}

.live-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.nav-ao-vivo.ajustado {
  background: linear-gradient(135deg, #ff1744 0%, #d50000 50%, #b71c1c 100%);
  color: white;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  box-shadow: 
    0 4px 15px rgba(255,23,68,0.6),
    0 0 20px rgba(255,23,68,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  transform: scale(1.1);
  z-index: 10;
}

.nav-ao-vivo.ajustado .linha {
  font-size: 0.9em;
  letter-spacing: 1px;
  font-weight: 900;
  text-transform: uppercase;
}


/* Animação de brilho mais intensa */
.nav-ao-vivo.ajustado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
  animation: shine 3s infinite;
  border-radius: 12px;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
  }


  
@media (max-width: 768px) {
  /* Estilos para dispositivos com largura até 768px (tablets e smartphones) */

  .main-footer .col-md-4,
  .main-footer .col-sm-12 {
    width: 100%; /* Faz com que cada seção ocupe a largura total */
    margin-bottom: 20px; /* Espaçamento entre as seções */
  }

  .social-links a {
    display: inline-block; /* Faz com que os ícones fiquem um ao lado do outro */
    margin: 0 10px; /* Aumenta o espaçamento entre os ícones */
  }

  .footer-text {
    text-align: center; /* Garante que o texto esteja centralizado */
  }

  /* Ajustes adicionais podem ser feitos aqui conforme necessário */
}

.scroll-top {
  display: none;
}

.scroll-top a,
.voltar a {
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 9%;
  right: 33px;
  z-index: 10;
  cursor: pointer;
  font-size: 20px;
  border-radius: 100px;
  background-color: #e06d27;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 27px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.scroll-top:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: 20%;
    right: 8px !important;
  }
}
.bg-green-2 {
  background-color: #00a65a !important;
}

.icon-m {
  width: 32px;
  height: 32px;
}

[class*="icon"] {
  display: inline-block;
  vertical-align: text-bottom;
  background-size: cover;
}

.social-icon {
  padding: 0 8px;
}

@media only screen and (max-device-width: 480px) {
  .imgTeams {
    width: 20px;
    height: 20px;
  }
}

.timeMatch {
  color: #222d32;
  font-size: 20px;
}

.real-time {
  /*background-image: url("~/img/soccer.jpg");
  background-size: 100% 100%;*/
  color: #dcdcdc;

  background: url("https://cdn.easports.net.br/bg/fundo_futebol.jpeg") center;
  background-size: 100% !important;
  box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 20%) !important;

  margin-bottom: 20px;
  width: 100%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
.placar {
  width: 100%;
  height: auto;
  padding: 6px;
  background-color: rgba(0, 0, 0, 0.5);
}
.score-real-time {
  font-size: 20px;
}

.center-loader {
  width: 100%;
  height: auto;
  padding: 4px;
  text-align: center !important;
}

.tabela-class-home {
  background: #3c8dbc;
  color: #fff;
}
.bilhetes-content {
  width: 100%;
  height: auto;
  padding: 8px;
  background: #fff;
  border-radius: 7px;
}

.pin {
  font-size: 25px;
}
.dados-logado p {
  margin-bottom: 0px;
  margin-top: 0px;
}

.relatorio {
  width: 100%;
  height: auto;
  padding: 4px;
  margin-bottom: 15px;
}

.header-print-share {
  width: 100%;
  height: 50px;
  background: #ffe4b5;
}

.header-print-pre-share {
  width: 320px;
  max-width: 320px;
  height: 50px;
  background: #3c8dbc;
}

.share-float {
  float: right;
}

.pre-aposta-resul {
  padding: 10px;
  text-align: center;
  background: #3c8dbc;
  color: #dcdcdc;
  width: 320px;
  max-width: 320px;
  min-width: 250px;
  margin: 0 auto;
  font-size: 16px;
}

.modal-content-pre {
  border-radius: 0;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  border: 0;
  width: 300px;
  margin: 0 auto;
  color: #dcdcdc;
  text-align: center;
}

.btn-valor-mobile {
  text-align: center;
}
.imgTeams {
  width: 40px;
  height: 40px;
}

.regras {
  width: 100%;
  height: auto;
  /* text-align: justify; */
  font-size: 12px;
  margin-top: 20px;
}

.send-whats {
  color: #008d4c;
  font-size: 40px;
}

.send-whats-pre {
  color: #fff;
  font-size: 40px;
  margin-right: 5px;
}
.send-print {
  color: #333333;
  font-size: 40px;
  margin-right: 15px;
  cursor: pointer;
}

.busca-time {
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
  margin-right: 10px;
  height: 35px;
  padding: 12px;
  border: none;
  border-radius: 3px;
  color: #000;
}


/* inicio das opçoes que estava no geral */
/* ========================================
   SEÇÃO: GRUPOS E TÍTULOS
   ======================================== */

.titulo-grupo {
  width: 100%;
  height: 35px;
  line-height: 35px;
  font-size: 17px;
  page-break-after: 10px;
  background: #255625;
  color: #fff;
  text-align: center;
}

/* ========================================
   SEÇÃO: ODDS E APOSTAS
   ======================================== */

.odd-match-plus {
  width: 100%;
  height: auto;
  color: #222d32;
  float: left;
  margin-top: 10px;
  font-size: 15px;
  padding: 4px;
  border-bottom: 1px solid #dcdcdc;
}

.odd-match-plus-left {
  float: left;
}

.btns-pricin {
  text-align: center;
}

.odd-match-plus-right {
  float: right;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #fafafa;
  padding: 5px;
  width: 60px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  margin-top: -6px;
}

.odd-match-plus-right-selecionado {
  float: right;
  background: #cf2900;
  color: rgb(255, 255, 255);
  padding: 5px;
  width: 60px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #000;
}

.match-odd-data {
  color: #014586;
}

/* ========================================
   SEÇÃO: BILHETES - ESTRUTURA GERAL
   ======================================== */

#cod {
  text-align: center;
}

.body-bilhete {
  background: #f8ecc2;
  color: #000;
}

.title-bilhete {
  text-align: center;
}

.tipo-aposta {
  text-align: center;
  font-size: 16px;
  border-bottom: #000 1px dashed;
  padding-bottom: 8px;
}

.pre-bilhete {
  width: 320px;
  max-width: 320px;
}

.cupom-bilhete {
  text-align: center;
}

.modal-bilhete {
  max-height: 100vh !important;
}

/* ========================================
   SEÇÃO: BILHETES - HEADER
   ======================================== */

.info-aposta-header {
  padding: 5px;
  border-bottom: #000 1px dashed;
  padding-bottom: 8px;
  font-size: 15px;
}

.info-aposta-header p {
  margin-bottom: 0px;
}

.header-palpite {
  width: 100%;
  height: 22px;
  margin-bottom: 20px;
  border-bottom: 1px #000 dashed;
  font-size: 15px;
  padding-bottom: 9px;
}

.palpite-left {
  width: 49%;
  float: left;
  text-align: left;
}

.palpite-right {
  width: 49%;
  float: right;
  text-align: right;
}

/* ========================================
   SEÇÃO: BILHETES - CORPO DO PALPITE
   ======================================== */

.body-palpite-bolao {
  width: 100%;
  height: 80px;
  margin-bottom: 10px;
  border-bottom: 1px #000 dashed;
  font-size: 13px;
  padding-bottom: 9px;
}

.body-palpite {
  width: 100%;
  min-height: 150px !important;
  height: 100%;
  margin-bottom: 20px;
  border-bottom: 1px #000 dashed;
  font-size: 13px;
  padding-bottom: 9px;
}

.body-palpite p {
  margin-bottom: 0px;
}

.body-palpite-left {
  width: 59%;
  float: left;
  text-align: left;
}

.body-palpite-right {
  width: 39%;
  float: right;
  text-align: right;
}

/* ========================================
   SEÇÃO: BILHETES - FOOTER
   ======================================== */

.aposta-footer-bolao {
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
  border-top: 1px #000 dashed;
  border-bottom: 1px #000 dashed;
  padding-top: 5px;
}

.aposta-footer {
  width: 100%;
  height: 120px;
  margin-bottom: 10px;
  border-top: 1px #000 dashed;
  border-bottom: 1px #000 dashed;
  padding-top: 5px;
}

.info-aposta-footer-left p {
  margin-bottom: 0px;
}

.info-aposta-footer-left {
  width: 59%;
  height: auto;
  float: left;
  text-align: left;
  font-size: 13px;
}

.info-aposta-footer-right p {
  margin-bottom: 0px;
}

.info-aposta-footer-right {
  width: 39%;
  height: auto;
  float: right;
  text-align: right;
  font-size: 13px;
}

/* ========================================
   SEÇÃO: STATUS DOS BILHETES
   ======================================== */

.Aberto {
  background: #3c8dbc !important;
  color: #fff;
}

.Perdeu {
  background: #ff0000;
  color: #fff;
}

.Ganhou {
  background: #008d4c;
  color: #fff;
}

.Cancelado {
  background: #e69222;
  color: #fff;
}

/* ========================================
   SEÇÃO: LOADING E EFEITOS
   ======================================== */

.loadSendBet {
  visibility: hidden;
  font-size: 25px;
}

/* Efeito pisca */
@keyframes pisca {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  80% {
    opacity: 0;
  }
}

.pisca {
  -webkit-animation: pisca 0.75s linear infinite;
  -moz-animation: pisca 0.75s linear infinite;
  -ms-animation: pisca 0.75s linear infinite;
  -o-animation: pisca 0.75s linear infinite;
  animation: pisca 0.75s linear infinite;
}

/* ========================================
   SEÇÃO: PLACAR AO VIVO - CONTAINER
   ======================================== */

.tempo {
  width: 100%;
  border: 1px solid #eee;
  text-align: center;
}

.icon,
.sc1,
.sc2,
.sc3 {
  display: inline-block;
}

.info,
.sc1,
.sc2,
.sc3,
.tempo {
  vertical-align: middle;
  box-sizing: border-box;
}

.overflow-handle,
.sc1,
.sc2,
.sc3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info,
.sc1,
.sc2,
.sc3,
.score,
.scoreContainer,
.scoreSpan,
.tempo,
.tempoSpan {
  box-sizing: border-box;
}

.scoreContainer {
  width: 100%;
  max-width: 640px;
  height: 280px;
  border: 1px solid #eee;
  font-family: verdana !important;
  margin: 0 auto;
}

.scoreContainer.tenis {
  height: 340px !important;
}

.score {
  width: 100%;
  height: 50px;
  border: 1px solid #eee;
}

.tempo {
  height: 30px;
}

.info {
  height: 200px;
}

/* ========================================
   SEÇÃO: PLACAR AO VIVO - ESPORTES
   ======================================== */

.info.soccer {
  /* background: url(../img/widget_aovivo/soccer.jpg); */
  background-size: 100% 100%;
}

.info.basquete {
  /* background: url(../img/widget_aovivo/basquete.jpg); */
  background-size: 100% 100%;
}

.info.hockey {
  /* background: url(../img/widget_aovivo/hockey.jpg); */
  background-size: 100% 100%;
}

.info.tenis {
  /* background: url(../img/widget_aovivo/tenis.jpg); */
  background-size: 100% 100%;
}

.info.volei {
  /* background: url(../img/widget_aovivo/volei.jpg); */
  background-size: 100% 100%;
}

/* ========================================
   SEÇÃO: PLACAR AO VIVO - ÍCONES
   ======================================== */

.icon {
  background: url("~/img/icons.svg") no-repeat;
  width: 12px;
  height: 12px;
  margin: 0 auto;
}

.left {
  text-align: left !important;
}

.cell-soccer,
.cell-volei,
.sc1,
.sc2,
.sc3 {
  text-align: center;
}

.icon.corner {
  background-position: -12px -12px;
}

.icon.yellow-card {
  background-position: -73px 0;
}

.icon.red-card {
  background-position: -48px 0;
}

.icon.yellow-ball {
  background-position: 0 0;
}

/* ========================================
   SEÇÃO: PLACAR AO VIVO - TABELAS
   ======================================== */

.tableInfo {
  margin: 0px auto;
  border: 1px solid #444;
  height: 100px;
  width: 95%;
  border-collapse: collapse;
}

.tableInfo th {
  padding-top: 5px;
  padding-bottom: 5px;
}

.table-header {
  background-color: #333;
  color: #fff;
  opacity: 0.95;
  border: 0;
}

.table-row {
  background-color: #444;
  color: #fff;
  opacity: 0.95;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}

.cell-soccer,
.cell-volei {
  width: 25px;
  border: 0;
}

.cell-basquete,
.cell-hockey,
.cell-tenis {
  width: 30px;
  text-align: center;
  border: 0;
}

/* ========================================
   SEÇÃO: PLACAR AO VIVO - PONTUAÇÃO
   ======================================== */

.sc1 {
  width: 39%;
  height: 50px;
}

.sc2 {
  width: 20%;
  height: 48px;
  background-color: #b6041a;
  color: #fff;
}

.sc3 {
  width: 39%;
  height: 50px;
  float: right;
}

.scoreSpan {
  line-height: 50px;
}

.placar-soccer,
.placar-tenis {
  font-size: 30px;
}

.placar-basquete {
  font-size: 20px;
}

.placar-volei {
  font-size: 25px;
}

.placar-hockey {
  font-size: 30px;
}

.tempoSpan {
  line-height: 30px;
}

.padding-10 {
  padding-left: 1px;
}

/* ========================================
   SEÇÃO: BOLÃO - CONTAINER E EVENTOS
   ======================================== */

.bolao-container-evento {
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  color: #333;
  margin: 2px 1px;
  padding: 8px 10px;
  background-color: #f4f4f4;
  font-size: 1.2rem;
  line-height: 1.5rem;
}

.bolao-titulo {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: #252323;
}

.bolao-descricao {
  font-size: 1.2rem;
  line-height: 1.5rem;
}

/* ========================================
   SEÇÃO: BOLÃO - INFORMAÇÕES
   ======================================== */

.bolao-info {
  background-color: #1c2026;
  margin: 1.2rem 1rem 1.2rem 0;
  border-radius: 0.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  color: #b6bcc6;
}

.bolao-info-subtitle {
  color: #ffffff;
  line-height: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  align-items: center;
  text-align: center;
}

.bolao-text {
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
}

.bolao-score {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ========================================
   SEÇÃO: BOLÃO - INPUTS E TABELAS
   ======================================== */

.bolao-input-score {
  width: 45px;
  text-align: center;
  height: 30px;
  border: 1px solid #d2d6de;
}

.bolao-tabela-palpite {
  min-width: 350px;
  max-width: 1000px !important;
}

.bolao-premio-container {
  display: flex;
  align-items: center;
}

.bolao-premio {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #1d1b1b;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 10px;
}

/* ========================================
   SEÇÃO: TABELAS GERAIS
   ======================================== */

.table-row td {
  color: white !important;
}

table thead,
table tbody {
  font-size: 15px;
}

table thead tr {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

table tbody td {
  vertical-align: baseline !important;
}

/* ========================================
   SEÇÃO: FORMULÁRIOS
   ======================================== */

.form-busca-bilhete {
  font-size: 13px;
}

/* ========================================
   SEÇÃO: UTILITÁRIOS FLEXBOX
   ======================================== */

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.d-flex {
  display: flex;
}

.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ========================================
   SEÇÃO: BANNERS POR ESPORTE
   ======================================== */

.div-banner-futebol {
  background: url("https://cdn.easports.net.br/bg/fundo_futebol.jpeg") center;
}

.div-banner-basquete {
  background: url("https://cdn.easports.net.br/bg/fundo-basquete.jpg") center;
}

.div-banner-tênis {
  background: url("https://cdn.easports.net.br/bg/fundo-tenis.jpg") center;
}

.div-banner-vôlei {
  background: url("https://cdn.easports.net.br/bg/fundo-volei.jpg") center;
}

.div-banner-luta {
  background: url("https://cdn.easports.net.br/bg/fundo-luta.jpg") center;
}

.banner-sports {
  background-size: 100% !important;
  box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 20%) !important;
  background-repeat: no-repeat;
  opacity: 0.8;
}

#banner-sports h1 {
  opacity: 1 !important;
}

#banner-sports h4 {
  opacity: 1 !important;
}

/* ========================================
   SEÇÃO: MODAL E COMPONENTES
   ======================================== */

#modal-match .modal-header {
  padding: 0px !important;
  max-height: 200px;
}

.bg-dark {
  background-color: #343a40 !important;
}

.modal-header {
  border-bottom-color: #f4f4f4;
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.text-white {
  color: #fff;
  opacity: 1 !important;
}

/* ========================================
   SEÇÃO: RESPONSIVIDADE MOBILE
   ======================================== */

@media only screen and (max-width: 480px) {
  .body-palpite-bolao {
    height: 90px;
  }
  
  .scoreContainer {
    font-size: 12px !important;
  }
  
  .placar-soccer,
  .placar-tenis {
    font-size: 20px;
  }
  
  .placar-basquete {
    font-size: 13px;
  }
  
  .placar-hockey {
    font-size: 20px;
  }
  
  .placar-volei {
    font-size: 16px;
  }
}