/* The container */
/* .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */

.checkcontainer {
  width: 100%;
  text-align: end;
}

/* Hide the browser's default checkbox */
.container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.photo-editor {
  position: relative;

  overflow: hidden;
}

.photo-preview {
  position: relative;
}

.photo-preview .photo-preview-text.moving {
  cursor: move;

  border: 1px dashed red;
}
.photo-preview .photo-preview-text-sub.moving {
  cursor: move;

  border: 1px dashed red;
}

.photo-preview .photo-preview-text,
.photo-preview .photo-preview-text-sub {
  position: absolute;

  top: 10px;

  left: 10px;

  color: #fff;

  padding: 2px;

  width: 100px;

  word-wrap: break-word;

  font-size: 15px;
}

.photo-preview .mask {
  position: absolute;

  left: 0px;

  top: 0px;

  bottom: 0px;

  right: 0px;

  background: #000 !important;

  opacity: 0 !important;
}

@media screen and (min-width: 992px) {
  .box-view {
    height: 150px;
    overflow: hidden;
  }
}

@media screen and (max-width: 992px) {
  .box-view {
    width: 85%;

    display: block;

    margin: auto;
  }
}

/* @font-face {
  font-family: "A Jannat LT";
  src: url("https://ecards.jazancci.org.sa/fonts/AJannatLT.woff2")
      format("woff2"),
    url("https://ecards.jazancci.org.sa/fonts/AJannatLT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NeoSansArabic";
  src: url("https://ecards.jazancci.org.sa/fonts/neo/NeoSansArabic.woff2")
      format("woff2"),
    url("https://ecards.jazancci.org.sa/fonts/neo/NeoSansArabic.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
} */

@font-face {
  font-family: "A Jannat LT";

  src: url("../fonts/AJannatLT.woff2") format("woff2"),
    url("../fonts/AJannatLT.woff") format("woff");

  font-weight: normal;

  font-style: normal;
}

@font-face {
  font-family: "NeoSansArabic";

  src: url("../fonts/neo/NeoSansArabic.woff2") format("woff2"),
    url("../fonts/neo/NeoSansArabic.woff") format("woff");

  font-weight: normal;

  font-style: normal;
}

.photo-preview-text,
.photo-preview-text-sub {
  direction: ltr;
}
