.player-title {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-weight: 800;
  letter-spacing: -2px;
}

.main-news {
  background: #f1f1f1;
}

.main-ytlist {
  background-color: #f1f1f1;
}

@media (min-width: 768px) {
  .player-title {
    font-size: 3rem;
  }

  .player-description {
    font-size: 1.5rem;
  }
}

.program-super {
  --program-accent: #4B22F5;
  --program-active-color: #fff;
  --program-cols-min: 14rem;
  --program-accent-active: #4b22f5;
}

.nexo-schedule-item.is-current .nexo-schedule-item-content::before {
  content: "Al aire";
  background-color: var(--program-accent);
  font-size: 10px;
  text-transform: uppercase;
  padding: .25rem .5rem;
  border-radius: 25rem;
  margin-bottom: .5rem;
  display: inline-flex;
  font-weight: 800;
  font-family: Montserrat, sans-serif;
  line-height: 1.5;
}

/* =================================================================== */
/* == CORRECCIÓN PARA EL HEADER-BAR EN MODO OSCURO (COMPORTAMIENTO == */
/* ==                IDÉNTICO AL MODO CLARO)                      == */
/* =================================================================== */

/* 1. Hacemos que la barra sea transparente por defecto en modo oscuro */
body.dark-mode .header-bar {
    background-color: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* 2. Aplicamos el fondo oscuro SÓLO cuando se hace scroll (cuando se añade la clase .header-fixed) */
body.dark-mode .header-bar.header-fixed {
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

/* =================================================================== */
/* ==   SOLUCIÓN DEFINITIVA PARA LA BARRA SUPERIOR Y EL DESTELLO    == */
/* =================================================================== */

/* 1. Solución al Destello (FOUC) */
body.preload {
    visibility: hidden;
}

/* 2. Solución a la Barra Superior Fija */
/* Hacemos que el contenedor principal del reproductor se quede fijo en la parte superior */
.player {
    position: -webkit-sticky;
    /* Para compatibilidad con Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Asegura que esté por encima del contenido principal */
}

/* Aseguramos que la barra superior se vea bien cuando se hace scroll */
.header-bar.header-fixed {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Y que se vea bien en modo oscuro también */
body.dark-mode .header-bar.header-fixed {
    background-color: rgba(18, 18, 18, 0.85);
}
/* Botón play intermitente verde */
.player-button-play{
  background: #00c853 !important;
  color: #fff !important;
  border-color: transparent !important;
  animation: playBlink 1.2s infinite;
}

.player-button-play svg{
  fill: currentColor;
}

/* animación */
@keyframes playBlink{
  0%   { background:#00c853; box-shadow:0 0 0 rgba(0,200,83,0.7); }
  50%  { background:#00ff6a; box-shadow:0 0 15px rgba(0,255,106,0.9); }
  100% { background:#00c853; box-shadow:0 0 0 rgba(0,200,83,0.7); }
}
/* MINI PLAYER PRO */
.mini-player{
  position:fixed;
  left:10px;
  right:10px;
  bottom:70px;
  z-index:9999;
  transform:translateY(120%);
  opacity:0;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}

.mini-player.is-visible{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mini-player__inner{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(20,20,20,.85);
  backdrop-filter:blur(14px);
  border-radius:18px;
  padding:10px 12px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.mini-player__cover{
  width:44px;
  height:44px;
  border-radius:10px;
  object-fit:cover;
}

.mini-player__meta{
  flex:1;
  overflow:hidden;
}

.mini-player__title{
  font-size:13px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
}

.mini-player__title span{
  display:inline-block;
  padding-left:100%;
  animation:miniScroll 10s linear infinite;
}

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

.mini-player__artist{
  font-size:11px;
  color:#aaa;
}

.mini-player__controls{
  display:flex;
  gap:6px;
}

.mini-player__nav,
.mini-player__play{
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.mini-player__nav{
  background:#2a2a2a;
}

.mini-player__play{
  background:#e51b2e;
}

.mini-player__play.is-playing{
  background:#00c853;
  animation:playPulse 1.2s infinite;
}

@keyframes playPulse{
  0%{box-shadow:0 0 0 rgba(0,200,83,.6);}
  50%{box-shadow:0 0 14px rgba(0,255,106,.9);}
  100%{box-shadow:0 0 0 rgba(0,200,83,.6);}
}
/* MINI PLAYER PRO (SAFE) */

.mini-player{
  position:fixed;
  left:10px;
  right:10px;
  bottom:70px;
  z-index:9999;
  transform:translateY(120%);
  opacity:0;
  transition:all .3s ease;
  pointer-events:none;
}

.mini-player.is-visible{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mini-player__inner{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(20,20,20,.9);
  border-radius:16px;
  padding:10px 12px;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.mini-player__cover{
  width:44px;
  height:44px;
  border-radius:8px;
  object-fit:cover;
}

.mini-player__meta{
  flex:1;
  overflow:hidden;
}

.mini-player__title{
  font-size:13px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mini-player__artist{
  font-size:11px;
  color:#aaa;
}

.mini-player__controls{
  display:flex;
  gap:6px;
}

.mini-player__nav,
.mini-player__play{
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.mini-player__nav{
  background:#2a2a2a;
}

/* MINI PLAYER PRO (SAFE) */

.mini-player{
  position:fixed;
  left:10px;
  right:10px;
  bottom:70px;
  z-index:9999;
  transform:translateY(120%);
  opacity:0;
  transition:all .3s ease;
  pointer-events:none;
}

.mini-player.is-visible{
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.mini-player__inner{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(20,20,20,.9);
  border-radius:16px;
  padding:10px 12px;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.mini-player__cover{
  width:44px;
  height:44px;
  border-radius:8px;
  object-fit:cover;
}

.mini-player__meta{
  flex:1;
  overflow:hidden;
}

.mini-player__title{
  font-size:13px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mini-player__artist{
  font-size:11px;
  color:#aaa;
}

.mini-player__controls{
  display:flex;
  gap:6px;
}

.mini-player__nav,
.mini-player__play{
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.mini-player__nav{
  background:#2a2a2a;
}

.mini-player__play{
  background:#00c853; /* PLAY = verde */
}

.mini-player__play.is-playing{
  background:#e51b2e; /* PAUSA = rojo */
}
@media (max-width: 768px){
  .mini-player{
    bottom:68px;
  }
}
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
}
.footer {
  padding-bottom: 180px;
}
/* Base (móvil primero) */
.footer {
  padding-bottom: 160px;
}

/* Tablets */
@media (min-width: 768px) {
  .footer {
    padding-bottom: 180px;
  }
}

/* Escritorio */
@media (min-width: 1024px) {
  .footer {
    padding-bottom: 200px;
  }
}

/* SOLO botón principal play/pause */
button.player-button-play{
  color:#fff !important;
  border-color:transparent !important;
  transition: background-color .25s ease, box-shadow .25s ease;
}

/* Estado normal: verde */
body:not(.is-playing) button.player-button-play{
  background:#00c853 !important;
  box-shadow:0 0 14px rgba(0,255,106,.65) !important;
}

/* Estado reproduciendo: rojo */
body.is-playing button.player-button-play{
  background:#e53935 !important;
  box-shadow:0 0 14px rgba(255,75,71,.75) !important;
}

/* NO tocar botones pequeños */
button.player-button:not(.player-button-play),
button.player-button-volume-toggle{
  background: initial !important;
  box-shadow: none !important;
}

.player-controls{
  background-image: none !important;
}
.btn-masmegahits i{
  display:none !important;
}

.btn-masmegahits::before{
  content:"";
  width:22px;
  height:22px;
  display:inline-block;
  flex:0 0 22px;
  background:url("/assets/icono+.png") center/contain no-repeat;
  border-radius:6px;
  margin-right:4px;
}

@media (max-width: 768px){

  .header-right{
    gap: 6px !important;
  }

  .header-right .btn{
    padding: 0.5rem !important;
    min-width: 40px !important;
    height: 40px !important;
  }

  .header-right .btn i,
  .header-right .btn svg{
    width: 18px !important;
    height: 18px !important;
  }

}

/* Botón Meteo */
/* ===== BOTÓN METEO ===== */
.btn.btn-clima{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  width: auto !important;
  min-width: auto !important;
  height: auto !important;
  padding: .75rem 1rem !important;
  border-radius: 999px !important;
  font-size: .875rem !important;
  line-height: 1.5 !important;
}

.btn.btn-clima .btn-clima__icon{
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  display: inline-block !important;
  margin: 0 !important;
  background: center/contain no-repeat !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 18a4 4 0 0 0 0-8 5.98 5.98 0 0 0-11.31-1.74A4.5 4.5 0 0 0 8.5 18H19Z'/%3E%3C/svg%3E") !important;
}

.btn.btn-clima .btn-clima__text{
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: .875rem !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

/* ===== MÓVIL: solo icono ===== */
@media (max-width: 768px){
  .btn.btn-clima{
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    gap: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .btn.btn-clima .btn-clima__text{
    display: none !important;
  }

  .btn.btn-clima .btn-clima__icon{
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
  }
}
  /* botón + Megahits: círculo perfecto */

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
  }

  /* ocultar cualquier resto del icono/texto original */
  .header-right .btn.btn-masmegahits i,
  .header-right .btn.btn-masmegahits span{
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* tu logo centrado de verdad */

  }

}

@media (max-width: 768px){

  .header-right{
    gap: 6px !important;
  }


/* ===== BLOQUE BUSCA TU CINE PRO ===== */

.cine-search-section{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0 50px;
}

.cine-search-container{
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

/* CAJA PRINCIPAL */
.cine-search-box{
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* CABECERA */
.cine-search-head h2{
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 10px;
  background: linear-gradient(90deg,#facc15,#f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cine-search-head p{
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 22px;
}

/* FORMULARIO */
.cine-search-form{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cine-search-form input{
  flex: 1;
  min-width: 240px;
  max-width: 420px;
  height: 50px;
  border-radius: 14px;
  border: none;
  padding: 0 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}

.cine-search-form input::placeholder{
  color: rgba(255,255,255,0.5);
}

/* BOTONES */
.cine-search-form button{
  height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

#cineSearchBtn{
  background: linear-gradient(90deg,#facc15,#f97316);
  color: #000;
}

#cineSearchBtn:hover{
  transform: translateY(-2px);
}

.cine-search-geo{
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.cine-search-geo:hover{
  background: rgba(255,255,255,0.18);
}

/* STATUS */
.cine-search-status{
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* RESULTADOS */
.cine-search-results{
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

/* TARJETAS */
.cine-search-card{
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cine-search-card h3{
  margin: 0 0 5px;
  font-size: 18px;
  color: #fff;
}

.cine-search-card p{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.cine-search-card__actions{
  display: flex;
  gap: 8px;
}

.cine-search-card__actions a{
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.cine-search-card__actions a:first-child{
  background: #fff;
  color: #000;
}

.cine-search-card__actions a:last-child{
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* MÓVIL */
@media (max-width: 760px){
  .cine-search-box{
    padding: 24px 18px;
  }

  .cine-search-head h2{
    font-size: 26px;
  }

  .cine-search-form{
    flex-direction: column;
  }

  .cine-search-form input,
  .cine-search-form button{
    width: 100%;
  }

  .cine-search-card{
    flex-direction: column;
    align-items: flex-start;
  }
}
	
/* ===== FIX BUSCA TU CINE (centrado tipo cards superiores) ===== */

.cine-search-section .container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cine-search-box{
  margin: 0 auto;
  max-width: 1100px; /* mismo aire que sliders */
}

/* Centrar título y texto */
.cine-search-head{
  text-align: center;
}

/* Centrar formulario */
.cine-search-form{
  justify-content: center;
}

/* Para escritorio: que no se estire demasiado */
@media (min-width: 900px){
  .cine-search-form{
    max-width: 700px;
    margin: 0 auto;
  }
}
	
/* ===== BUSCA TU CINE - AJUSTES ===== */

.cine-search-card__meta{
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
	
	
.conciertos-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.concierto-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
}

.concierto-card__img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
}

.concierto-card__body{
  padding:14px;
}

.concierto-card__body h3{
  margin:0 0 8px;
  color:#fff;
}

.concierto-card__body p{
  margin:0 0 6px;
  color:rgba(255,255,255,.75);
}

.concierto-card__body a{
  display:inline-flex;
  margin-top:10px;
  min-height:42px;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  background:#fff;
  color:#111;
}

.conciertos-empty{
  padding:18px;
  text-align:center;
  color:#fff;
}

@media (max-width: 900px){
  .conciertos-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .conciertos-grid{
    grid-template-columns:1fr;
  }
}
	
.program-reminder-btn {
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 10px;
    border: none;
    background: #03447a;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.program-reminder-btn:hover {
    background: #0560ad;
}

.program-reminder-btn:active {
    transform: scale(0.95);
}

.program-reminder-btn.saved {
    background: #16a34a; /* verde éxito */
}
	
	.icon-bell {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: url('data:image/svg+xml;utf8,\
<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24">\
<path d="M12 2a6 6 0 00-6 6v3.586L4.707 13.88A1 1 0 005.414 15h13.172a1 1 0 00.707-1.707L18 11.586V8a6 6 0 00-6-6zm0 20a2.5 2.5 0 002.45-2h-4.9A2.5 2.5 0 0012 22z"/>\
</svg>') no-repeat center;
    background-size: contain;
}

/* ===== DVR / INICIO EXACTO DEL PROGRAMA ===== */
.player-button-dvr,
.player-button-live{
  background:#03447a !important;
  color:#fff !important;
  border-color:transparent !important;
  font-weight:900 !important;
  text-transform:uppercase;
}

.player-button-live{
  background:#e51b2e !important;
}

body.is-dvr-program .player-button-dvr{
  display:none !important;
}

body.is-dvr-program .player-button-live{
  display:inline-flex !important;
}

body.is-dvr-program .badge{
  background:#e51b2e !important;
}

body.is-dvr-program .badge::after{
  content:" · DESDE EL INICIO";
}

.mh-dvr-status{
  display:block;
  margin-top:8px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
  text-transform:none;
}

@media (max-width:768px){
  .player-button-dvr,
  .player-button-live{
    width:100%;
    justify-content:center;
  }
}

	.mh-dvr-status,
.player-info .mh-dvr-status,
.player-content .mh-dvr-status,
.player-details .mh-dvr-status{
  color:#ffffff !important;
  font-weight:900 !important;
  text-shadow:0 1px 3px rgba(0,0,0,.9) !important;
}
	
	/* === DVR STATUS MOBILE FIX: BLANCO + BOLD + LEGIBLE === */
@media (max-width: 768px) {
  #dvrStatus,
  .dvr-status,
  .rewind-status,
  .timeshift-status,
  #rewindStatus {
    color: #ffffff !important;
    font-weight: 900 !important;
    font-family: inherit !important;
    text-transform: uppercase !important;
    text-align: center !important;
    font-size: 1.55rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    
    /* sombra potente para eliminar efecto “negro” visual */
    text-shadow:
      0 2px 8px rgba(0,0,0,0.85),
      0 0 12px rgba(0,0,0,0.65),
      0 1px 2px rgba(0,0,0,1) !important;

    display: block !important;
    width: 100% !important;
    max-width: 95% !important;
    margin: 14px auto 8px auto !important;
    padding: 8px 12px !important;

    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 999 !important;
  }

  /* si hay parte secundaria tipo “72 min atrás” */
  #dvrStatus small,
  .dvr-status small,
  .rewind-status small,
  .timeshift-status small,
  #rewindStatus small,
  #dvrStatus span,
  .dvr-status span {
    color: #ffffff !important;
    font-weight: 900 !important;
    opacity: 1 !important;
  }
}

/* ===== BOTONES DVR -15 +15 ===== */
.player-button-back15,
.player-button-forward15{
  display:none !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  min-height:44px !important;
  min-width:58px !important;
  padding:0 14px !important;
  border-radius:999px !important;
  border-color:transparent !important;
  background:#03447a !important;
  color:#fff !important;
  font-weight:900 !important;
  line-height:1 !important;
}

.player-button-forward15{
  background:#0a5ea8 !important;
}

body.is-dvr-program .player-button-back15,
body.is-dvr-program .player-button-forward15{
  display:inline-flex !important;
}

body:not(.is-dvr-program) .player-button-back15,
body:not(.is-dvr-program) .player-button-forward15{
  display:none !important;
}

@media (max-width:768px){
  .player-button-back15,
  .player-button-forward15{
    flex:1 1 calc(50% - 6px) !important;
  }
}

/* ===== ICONOS INLINE DVR ===== */
.player-button-dvr,
.player-button-live{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
}

.player-button-dvr svg,
.player-button-live svg{
  width:18px !important;
  height:18px !important;
  flex:0 0 18px !important;
  color:currentColor !important;
  display:block !important;
}

.player-button-dvr span,
.player-button-live span{
  display:inline-block !important;
}

@media (max-width: 768px) {
  body.modal-article .modal-article-safe-space {
    height: 320px;
    min-height: 320px;
    display: block;
  }
}
	
.player-button-identify {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  font-size: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .player-button-identify {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 16px !important;
  }
}
.player-button-identify {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  line-height: 1 !important;
  aspect-ratio: 1 / 1 !important;
}

.player-button-identify svg {
  width: 20px !important;
  height: 20px !important;
}

@media (max-width: 768px) {
  .player-button-identify {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .player-button-identify svg {
    width: 18px !important;
    height: 18px !important;
  }
}

