/* 
 * Override Fullscreen Button Behavior for Mobile and Tablet
 * Sovrascrive il comportamento del bottone fullscreen per dispositivi mobili e tablet
 * Disabilita il popup fullscreen e nasconde il bottone da 1024px in giù
 */

/* Mobile and Tablet devices: max-width 1024px */
@media screen and (max-width: 1024px) {
  
  /* Nasconde completamente il bottone fullscreen su mobile e tablet */
  .rsFullscreenBtn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  
  /* Disabilita anche il comportamento del popup fullscreen */
  .royalSlider.rsFullscreen {
    position: relative !important;
    z-index: 1 !important;
  }
  
  /* Previene l'attivazione del fullscreen mode */
  .w-slider .rsFullscreenBtn {
    cursor: default !important;
    opacity: 0 !important;
  }
}
