div.displays-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 40px);
  background-color: #212121;
  height: 600px;
}

div.displays-selector > div.screen-wrapper {
  top: 10px;
  height: 10px;
  left: 10px;
  right: 10px;
  background-color: #0091ea;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 20px;
  border: 5px solid #0091ea;
  box-shadow: 2px 5px 14px 0px rgba(0, 0, 0, 0.45);
}

div.displays-selector > div.editmode-screen-wrapper {
  /* top: 10px;
    height: 10px;
    left: 10px;
    right: 10px; */
  background-color: var(--background-dark-color);
  /*border-radius: 6px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  /* margin-top: 20px;
    margin-bottom: 20px; */
  border: 3px solid black;
  box-sizing: border-box;
  /*box-shadow: 2px 5px 14px 0px rgba(0, 0, 0, 0.45);*/
}

div.displays-selector > div.screen-wrapper:hover {
  border: 5px solid rgb(255, 255, 255);
  background-color: #00b0ff;
}

div.displays-selector > div.screen-wrapper > div.label {
  font-size: 16px;
}

div.displays-selector > div.screen-wrapper > div.resolution {
  font-size: 14px;
}

div.displays-selector > div.screen-wrapper > div.number {
  font-size: 30px;
}

div.window-editor-wrapper {
  grid-area: editor-container;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: grid;
  grid-template-columns: auto 250px;
  grid-template-rows: auto 50px;
  overflow: hidden;
  grid-template-areas: "center-container properties" "center-container new-window";
}

div.window-editor-wrapper > div.document {
  grid-area: center-container;
  background-color: #303030;
  position: relative;
  overflow: auto;
  margin-left: 20px;
  margin-top: 20px;
}

div.window-editor-wrapper > div.document > div.canvas-wrapper {
  position: absolute;
  transform: translate(0);
}

div.window-editor-wrapper > div.properties-editor {
  grid-area: properties;
}

div.window-editor-wrapper > div.new-window-button {
  grid-area: new-window;
}

.movable {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0px;
}

.resizable {
  background: white;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 165px;
  left: 140px;
}

.resizable .resizers {
  width: 100%;
  height: 100%;
  border: 3px solid #4286f4;
  box-sizing: border-box;
}

.resizable .resizers .resizer {
  width: 10px;
  height: 10px;
  /* border-radius: 50%; magic to turn square into circle */
  background: white;
  border: 3px solid #4286f4;
  position: absolute;
}

.resizable .resizers .resizer.top-left {
  left: 0px;
  top: 0px;
  cursor: nwse-resize; /*resizer cursor*/
}
.resizable .resizers .resizer.top-right {
  right: 0px;
  top: 0px;
  cursor: nesw-resize;
}
.resizable .resizers .resizer.bottom-left {
  left: 0px;
  bottom: 0px;
  cursor: nesw-resize;
}
.resizable .resizers .resizer.bottom-right {
  right: 0px;
  bottom: 0px;
  cursor: nwse-resize;
}
