@font-face {
  font-family: "Passions Conflict";
  src: url("../../fonts/PassionsConflict-Regular.ttf");
}
@font-face {
  font-family: "Dancing Script";
  src: url("../../fonts/DancingScript-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Caramel";
  src: url("../../fonts/Caramel-Regular.ttf");
}
.rpcropper {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  /*background: rgba(0, 0, 0, 0.9);*/
  background: white;
  border: 2px solid white;
  z-index: 1050;
}
.rpcropper .btn-secondary {
  background: black;
  color: white;
  border: 0px;
  /*border-radius: 100%;*/
  transition: all 0.3s;
}
.rpcropper .btn-secondary:hover {
  background: #444;
  color: white;
}
.rpcropper .rpcropper-controls {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  background: #B71D25;
  background: black;
  height: auto;
  padding: 3px 0px;
  z-index: 200;
  text-align: center;
}
.rpcropper .rpcropper-controls button {
  margin: 0 2px;
}
.rpcropper .text-controls {
  position: fixed;
  display: none;
  top: calc(50% - 160px);
  left: calc(50% - 160px);
  flex-direction: column;
  background: white;
  padding: 15px 15px;
  border-radius: 8px;
  box-shadow: 0px 0px 2px black;
  height: auto;
  width: 320px;
  z-index: 200;
}
.rpcropper .text-controls.active {
  display: flex;
}
.rpcropper .text-controls textarea {
  display: block;
  width: 100%;
}
.rpcropper .text-controls .font-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 10px;
}
.rpcropper .text-controls .font-controls button {
  color: white;
}
.rpcropper .text-controls .font-controls button,
.rpcropper .text-controls .font-controls input,
.rpcropper .text-controls .font-controls select {
  margin: 0 2px;
}
.rpcropper .text-controls .font-controls #input-text {
  background: black;
  border: 1px solid #444;
  color: white;
}
.rpcropper .text-controls .font-controls .font-controls-item {
  display: block;
}
.rpcropper .rpcropper-wrapper {
  position: absolute;
  display: block;
  margin: auto auto;
  top: 10vh;
  /*touch-action: none;*/
}
.rpcropper .rpcropper-wrapper .rpcropper-border {
  display: block;
  position: absolute;
  border: 0px dashed white;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.85);
  cursor: move;
  z-index: 100;
  /*pointer-events: none;*/
}
.rpcropper .rpcropper-wrapper .rpcropper-border.ramecek {
  outline: 5px solid white;
}
.rpcropper .rpcropper-wrapper .rpcropper-border.ram {
  border-width: 10px;
  border-style: solid;
}
.rpcropper .rpcropper-wrapper .rpcropper-border.ram.ram-white {
  border-color: white;
}
.rpcropper .rpcropper-wrapper .rpcropper-border.ram.ram-black {
  border-color: black;
}
.rpcropper .rpcropper-wrapper img {
  position: absolute;
  z-index: 40;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.rpcropper .rpcropper-wrapper img.grayscale {
  filter: grayscale(1);
}
.rpcropper .rpcropper-wrapper .text-layer {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 101;
  /*touch-action: none;*/
  pointer-events: none;
  overflow: hidden;
}
.rpcropper .rpcropper-wrapper .text-layer span,
.rpcropper .rpcropper-wrapper .text-layer input,
.rpcropper .rpcropper-wrapper .text-layer .textbox {
  display: inline-block;
  position: absolute;
  left: 100px;
  top: 100px;
  padding: 5px;
  border: 1px dashed transparent;
  color: white;
  background: transparent;
  user-select: none;
  pointer-events: visible;
  touch-action: auto;
  cursor: move;
  outline: none;
  width: auto;
  height: auto;
  /*overflow: hidden;*/
  resize: both;
  white-space: pre;
  /*z-index: 9999;*/
}
.rpcropper .rpcropper-wrapper .text-layer span.active,
.rpcropper .rpcropper-wrapper .text-layer input.active,
.rpcropper .rpcropper-wrapper .text-layer .textbox.active {
  border: 1px dashed white;
}
.rpcropper .rpcropper-wrapper .text-layer span:hover,
.rpcropper .rpcropper-wrapper .text-layer input:hover,
.rpcropper .rpcropper-wrapper .text-layer .textbox:hover {
  border: 1px dashed yellow;
}
.rpcropper .rpcropper-wrapper .text-layer .textbox .edit {
  content: "";
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 16px;
  height: 16px;
  background-color: white;
  background-image: url("../../images/icon-edit.png");
  background-size: 100% auto;
  border-radius: 4px;
  cursor: pointer;
}
.rpcropper .rpcropper-wrapper .text-layer .textbox.active .edit {
  display: block;
}
.rpcropper-image-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px dotted #ccc;
  cursor: grab;
  /*touch-action: none;*/
}
.rpcropper-image-wrapper img {
  position: absolute;
  transform: translate(0px, 0px);
  inset: 0px;
  user-select: none;
  pointer-events: none;
  touch-action: none;
}
.image-cropper {
  /*
	&:hover .toggle-controls {
		opacity: 1;
	}
	*/
}
.image-cropper .toggle-controls {
  position: absolute;
  display: inline-block;
  padding: 5px;
  background: rgba(0, 0, 0, 0.75);
  top: 0px;
  margin-top: 5px;
  right: 5px;
  opacity: 0.3;
  transition: all 0.3s;
  z-index: 100;
}
.image-cropper .toggle-controls a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 14pt;
}
.image-cropper .toggle-controls a:hover {
  background: gray;
}
.image-wrapper:hover .image-cropper .toggle-controls {
  opacity: 1;
}
.photo-container .toggle-controls {
  position: absolute;
  display: inline-block;
  padding: 5px;
  background: rgba(0, 0, 0, 0.75);
  top: 5px;
  right: 5px;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
.photo-container .toggle-controls a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 14pt;
}
.photo-container .toggle-controls a:hover {
  background: gray;
}
.photo-container:hover .toggle-controls {
  opacity: 1;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .rpcropper .rpcropper-wrapper {
    top: 30vh;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .rpcropper .rpcropper-wrapper {
    top: 25vh;
  }
}
/*# sourceMappingURL=rpcropper.css.map */