body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    
}
.stream{
    margin: 0;
    padding: 0;
    width: 100%;
}
.stream1{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: black;
}
.load{
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #cccccc;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.load .loading{
    margin: 5px auto;
    border: 3px solid hsla(185, 100%, 62%, 0.2);
    border-top-color: #3cefff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
  }
  .load .msg{
    margin: 5px auto;
  }
  
  .load .OpenVideo{
    margin: 5px auto;
    width: 48px;
    height: 48px;
    background-image: url("img/video.png");
    cursor: pointer;
    display:none;
  }

  .record{
    width: 32px;
    height: 32px;
    display: flex;
    background-image: url("img/record_open.png");
    right: 30px;
    bottom: 15px;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    cursor: pointer;
  }
  .record.record_close{
    background-image: url("img/record_close.png");
  }
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  