.fixdiv {
    position: fixed;
    top: 2%;
    right: 2%;
    padding: 10px;
    width: 8%;
    font-family: Arial;
    background: white;
    border: 1px solid #fc0;
}

.viewdiv {
    position: absolute;
    top: 10px;
    left: 200px;
    padding: 10px;
    width: 250px;
	height: 180px;
    font-family: Arial;
    background: white;
    border: 1px solid #fc0;
	opacity: 1;
}

.draggable {
  width: 300px;
  height: 200px;
  background: #ccc;
  position: relative;
}
.draggable.dragging {
  user-select: none;
}
.dragger {
  height: 30px;
  background: #555;
}
.dragger::before {
  content: "window";
  color: #fff;
  margin: 5px;
  display: inline-block;
}
