/*
 * Media processing
 *
 * Media Presentations Styles
 *
 * Pavlin Georgiev
 * 2023 Softel Labs
 *
*/


.move-media-frame {
  position: absolute;
  border: 3px solid black;
  /* box-sizing: border-box; */
  width: 320px;
  /* height: 300px; */
  top: 30%;
  left: 30%;
}

.move-media-controls {
  display: none;
}
/* .move-media-frame:hover .move-media-controls {
  display: block;
} */

.move-media {
  display: block;
  max-width: 100%;
  height: auto;
	cursor: grab;
}

.move-media-dimensions {
  position: absolute;
  bottom: -30px;
  left: 10px;
  background-color: black;
  color: white;
  font-size: 12px;
  padding: 2px;
}

.resize-media-handle {
  position: absolute;
  bottom: -35px;
  left: -35px;
  width: 30px;
  height: 30px;
  background-color: gray;
  text-align: center;
  cursor: zoom-in;
}
.resize-media-handle:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f00e";
  color: white;
  font-size: 30px;
}

.rotate-media-handle {
  position: absolute;
  bottom: -80px;
  left: 100px;
  width: 30px;
  height: 30px;
  background-color: gray;
  cursor: row-resize;
}
.rotate-media-handle:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f01e";
  color: white;
  font-size: 30px;
}

.presentation-page-button {
  background-color: #2196F3;
  color: white;
  border: none;
  width: 400px;
  height: 50px;
  border-radius: 50px 50px 50px 50px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}
.presentation-page-button:hover {
  background-color: #1e88e5;
}