/*
---------------------- Swipe up to Fullscreen content here ----------------------
*/

#swipeTip {
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    z-index: 12;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
}
  
#fsWarningOverlay {
    width: 100vw;
    height: 101%;
  }
  
#fsWarningIosIcon {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    content: url('../img/swipe_up_half.gif');
}

#fsWarningAosIcon {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  content: url('../img/touch_half.gif');
}
  
.fsWarningText {
    color: white;
    font-size: 32px;
    position: relative;
    top: 50%; 
    width: 100%; 
    text-align: center;
    font-family: Helvetica, Verdana, Arial, sans-serif;
    margin-top: 30px; /* top margin to avoid conflict on smaller screens */
}