/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
 #map {
    height: 100%;
    overflow: hidden;
  }
  
  /* 
   * Optional: Makes the sample page fill the window. 
   */
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  
  #video_streams {
    position: absolute;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    /*align-items: center;*/

    left: 0px;
    top: 70px;
    /*height: 240px;*/
    z-index: 9999;
  }

  /*
  #map {
    pointer-events: none;
  }
  */

  .ui-button {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 0 0.5em;
    font: 400 14px Roboto, Arial, sans-serif;
    overflow: hidden;
    height: 40px;
    cursor: pointer;
  }
  .ui-button:hover {
    background: rgb(235, 235, 235);
  } 


  .ui-button:active {
    transform: scale(0.98);
    /* Scaling button to 0.98 to its original size */
    /*box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);*/
    /* Lowering the shadow */
    /*box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24);*/
    transform: translateY(4px);
  /* Moving button 4px to y-axis */
}

