body {
    height:100vh;
    width:100vw
    }
    
    img {
      width: 98%;
      display: flex;
      justify-content: center;  
    }
    
    
      .v-container {
         display:flex;
         flex-direction:column;
         background: #f4a51d;
         border: 0px solid #BFBFBF;
         margin: 0px;
         padding: 0px;
         margin-left: 0.0px;
         flex-basis: 0;
         align-items:flex-start;
         justify-content: space-around;
         border-radius: 5px;
         font-family: Poppings, sans-serif;
         font-size: 2.1vw;    
        -webkit-overflow-scrolling: touch;
        
       }
    .v-container::-webkit-scrollbar {
        display: none; /* for Chrome, Safari, and Opera */
    }          
    
     .h-container {
        display:flex;
        flex-direction:row;
        background: #f4a51d;
        border: 0px solid #FEFEFE;
        padding: 1px;
        align-items:center;
        margin-left: 0.1px;
        border-radius: 0px; 
        font-family: 'Poppings', sans-serif;
        font-size: 12px;    
        color: #cea62a;    
       }
    
     .ticket {
            font: 12px/16px "Lucida Grande", Tahoma, Verdana, sans-serif;			  
            margin: 1px;
            padding: 1px;
            overflow-y:auto;
            background-color: transparent;
            overflow-x:scroll;
            scroll-behavior: smooth;
            overflow: touch;
           }
    
    ::-webkit-scrollbar {display: none;}
        


::-webkit-scrollbar {display: none;} 


#twitch-player {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
z-index: 9999;
}







  /* Estilos para el banner */
  #warningBanner {
    position: fixed;
    bottom: 0; /* Colocar el banner en la parte inferior */
    left: 0;
    width: 100%;
    background-color: #1b0f9d;
    color: rgb(255, 255, 255);
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6vw;
    font-weight: 700;
    text-align: center;
    display: none; /* Ocultar el banner inicialmente */
    animation: slideInUp 1s; /* Aplicar la animaciÃ³n slide-in up */
  }

  /* Nueva clase para la animaciÃ³n */
  @keyframes slideInUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  #bannerTextContainer {
    max-width: 90%; /* Establecer un ancho mÃ¡ximo para el texto del banner */
    margin: 0 auto; /* Centrar el contenedor del texto horizontalmente */
    font-weight: 500;
  }
