.container {
  position: relative;

  .control {
    margin-top: 16px;
  }

  .ptz {
    position: absolute;
    bottom: 60px;
    left: 12px;
  }

  .record {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    &.recording {
      display: flex;
    }
  }
}