
#buglog {
  z-index: 40;
  display: none;
  position: absolute;
  background-color: #CCC;
  top: 100px;
  left: 200px;
  width: 600px;
  padding: 30px;
  height: 500px;
  font-size: 10px;
}
#buglog > #buglogContent {
  display: block;
  position: relative;
  height: 480px;
  overflow-y: auto;
}

#buglog > #buglogTitle {
  display: block;
  position: absolute;
  z-index: 41;
  top: 25px;
  left: 75px;
  height: 25px;
  font-size: 12px;
  font-weight: bold;
}

  #buglog > #bulogClear {
    display: block;
    position: absolute;
    z-index: 42;
    top: 25px;
    left: 25px;
    width: 25px;
    height: 25px;
    background: no-repeat center url("../img/svg/TRASHBIN.svg");
    background-size: contain;
  }

    #buglog > #bulogX {
      display: block;
      position: absolute;
      z-index: 43;
      top: 25px;
      right: 25px;
      width: 25px;
      height: 25px;
      background: no-repeat center url("../img/svg/CLOSE.svg");
      background-size: contain;
    }
      #buglog > #bulogX:hover {
          cursor: pointer;
      }

      #buglog > #bulogClear:hover {
          cursor: pointer;
      }
