@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;900&display=swap");
/** Font defines **/
@font-face {
  font-family: "Code128";
  src: url("../fonts/WebCode128H3.otf") format("opentype");
}
/** Reset **/
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}

/** Core layout **/
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: #eee;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
}

a.naked-link {
  text-decoration: none;
  color: #133b6a;
}
a.naked-link:hover {
  text-decoration: underline;
}

/** Buttons **/
.btn {
  display: inline-block;
  background: #BA0C2F;
  color: #fff;
  padding: 10px 15px;
  margin-right: 10px;
  cursor: pointer;
}
.btn:hover {
  background: #cd0c31;
}
.btn:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.btn.btn-sm {
  font-size: 85%;
  padding: 8px 13px;
}
.btn.disabled {
  opacity: 0.5;
  cursor: no-drop;
  background: #BA0C2F !important;
  box-shadow: none !important;
}

/** Labels **/
.workspace {
  text-align: center;
  margin: 15px;
}
.workspace .no-labels {
  display: block;
  color: #666;
  font-size: 28px;
  padding: 50px;
}
.workspace .no-labels small {
  font-size: 18px;
}
.workspace .no-labels .local-storage-tip {
  font-size: 16px;
  color: #999;
}

.label {
  float: left;
  text-align: left;
  margin: 15px;
  padding: 15px;
  width: 285px;
  height: 130px;
  overflow: hidden;
  border: 1px solid #ccc;
  position: relative;
  background: #fff;
  cursor: pointer;
}
.label.editing {
  text-align: left;
  display: block;
  width: auto;
  height: auto;
  border-color: #2a83e6;
}
.label.sample {
  display: none;
}
.label .editable {
  display: none;
  min-width: 253px;
}
.label .editable h2 {
  margin-bottom: 10px;
}
.label .editable label {
  font-size: 13px;
  margin: 0 0 5px 0;
}
.label .editable input {
  font-size: 13px;
  border-bottom: 1px solid #ccc;
  display: block;
  width: 100%;
  margin: 8px 0 13px 0;
  padding: 1px 0;
  color: #222;
  outline: none;
}
.label .editable input:active {
  border-color: #aaa;
}
.label .editable .btn {
  margin-top: 10px;
  margin-bottom: 4px;
}
.label h2 {
  font-family: "Nunito Sans", sans-serif, serif;
  color: #BA0C2F;
  text-transform: uppercase;
  max-height: 69px;
  overflow: hidden;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.label h3.price {
  font-family: "Nunito Sans", sans-serif;
  margin-top: 8px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 100%;
  display: block;
  text-align: right;
  font-weight: 700;
}
.label .info {
  float: left;
}
.label svg {
  height: 50px;
  position: absolute;
  display: block;
  width: auto;
  left: 10px;
  bottom: 5px;
}
.label .barcodeVal {
  font-family: "Code128";
  position: absolute;
  bottom: 15px;
  right: 15px;
}

/** Controls area **/
.controls {
  width: 100%;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.25);
  background: #fff;
  overflow-x: hidden;
}
.controls .scout-adventures-brand {
  width: auto;
  height: 119px;
  margin: 12px auto 0;
  display: block;
}
.controls .usage-tips {
  color: #666;
}
.controls .inner {
  padding: 40px;
  padding-top: 25px;
  text-align: center;
}
.controls h1 {
  font-family: "Nunito Sans", sans-serif;
  color: #BA0C2F;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
}

/** Print markup **/
@media print {
  div {
    page-break-inside: avoid;
  }

  html, body, .workspace {
    margin: 0 !important;
    padding: 0 !important;
  }

  .controls {
    display: none;
  }

  .dialogs {
    display: none;
  }

  .label .editable {
    display: none;
  }
}
/** Disable text select on labels and buttons **/
.label, .btn {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     not supported by any browser */
  cursor: pointer;
}

/*# sourceMappingURL=scouts.labelgen.css.map */
