/* Custom Styling */


#lock { 
 display:none; 
 
}
    
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  
  #lock { 
      display:block; 
  }
  #container { 
      display:none;
  }
  .img-fit{
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    bottom: 0px;
  }
  
  /* Hide the ChatBot & Chatbot Trigger Button */
  #pickaxe-fab-container {
      display: none;
  }
}

/* Portrait Mode - Show the app */
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: portrait) {
   #lock { 
       display:none; 
   }
  #container { 
      display:block; 
      
  }
  /* Show the ChatBot & Chatbot Trigger Button */
  #pickaxe-fab-container {
      display: block;
  }
}

#fullscreen-toggle {
    position: fixed;
    left: 20px;
    top: 20px;
}

.theme-blue {
    background: #000;
}

.theme-dark-blue {
    background: #152756 !important;
}
.click-here {
    position: fixed;
    right: 100px;
    bottom: 10px;
    -webkit-backface-visibility: hidden;
    width: 150px;
    height: 150px;
    transform: scale(1);
    animation: pulse 2s 5;
}

@keyframes pulse {
    0% {
        transform: scale(0.90);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.90);
    }
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.home {
    height: 100vh;
    position: relative;
    z-index: 0;
    background-image: url('img/pm_ai_static_bg_mobile.png') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
video {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

#home-static {
    display: none;
    
    max-height: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

.turnDeviceNotification {
  position:fixed;
  top: 0;
  left:0;
  height:100%;
  width:100%;
  display: none;
  background-image:url('img/rotate_device_bg.jpg');
  background-size:cover;
}

.logout-btn {
    position: fixed;
    left: 20px;
    top: 20px;
    -webkit-backface-visibility: hidden;
    width: 50px;
    height: 50px;
}

.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

