body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #333;
  margin: 0 0;
  background: #999;
}

button span {
  margin-left: 4px;
}

.cursor-pointer {
  cursor: pointer;
}

#Wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

#FormContainer {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  margin: 1em;
  padding: 1em;
  background: #eaeaea;
  position: fixed;
  top: 0;
  right: 0;
  max-width: 30%;
}

.intro-text {
  color: #555;
  font-size: 14px;
  font-style: italic;
}

.instruction {
  color: #555;
  font-size: 14px;
}

#FormContainerItems {
  overflow-y: scroll;
  height: 90vh;
}

#FormContainer input[type="text"] {
  display: block;
  padding: 8px 12px;
  font-size: 16px;
  border: 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

#FormContainer .form-block input[type="text"] {
  border-radius: 4px 0 0 4px;
}
#FormContainer .form-block input[type="submit"] {
  background: #005595;
  color: #fff;
  border: 1px solid #1065a5;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 1200px) {
  #FormContainer {
    position: relative;
    height: auto;
    max-width: none;
  }
}

/* FORM INPUTS */

.category-form {
  margin-bottom: 2em;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px;
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 16px;
}
.category-form .category-form-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.category-form img {
  height: 45px;
}

.category-form-header > * {
  margin: 0 5px;
}

.category-form-header button {
  margin-left: auto;
  background: #005595;
  color: #fff;
  border: 0;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  display: grid;
  align-content: center;
  justify-content: center;
  place-content: center;
  transition: 0.2s all;
}

.category-form.collapsed .category-form-header button {
  transform: rotate(90deg);
}

.category-form label {
  display: flex;
  align-items: center;
}

.category-form label span {
  margin: 4px auto 4px 8px;
}

.category-form .form-block {
  display: flex;
  margin-top: 8px;
}

.category-form.collapsed label,
.category-form.collapsed .form-block {
  display: none;
}

/* GLOBAL INFO */

#GlobalInfo {
  padding-bottom: 2em;
}

#GlobalInfo label {
  display: block;
  margin: 1em auto;
}

#GlobalInfo label span {
  font-size: 70%;
  display: block;
  margin-bottom: 4px;
}

/* BUTTONS */

#MainButtons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 12px 24px;
}

#LogoUploadButton,
#PrintButton,
#ResetButton {
  background: transparent;
  color: #1065a5;
  border: 1px solid transparent;
  padding: 8px 12px;
  display: inline-block;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
}

#LogoUploadButton,
#PrintButton {
  background: #005595;
  color: #fff;
  border: 1px solid #1065a5;
}

/****************************************/
/****************************************/
/*************     OUTPUT    ************/
/****************************************/
/****************************************/

#OutputContainer {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
  margin: 1em;
  max-width: 670px;
  background: #fff;
  overflow: hidden;
}

/* HEADER */

#Header {
  text-align: center;
}
#Header img {
  width: 100%;
}
#Header p {
  text-align: center;
  margin: 1em auto;
  max-width: 90%;
  font-size: 16px;
  line-height: 1.3em;
}
#Header h3 {
  font-size: 24px;
  margin-bottom: 0;
}

/* Body */

#Body {
  padding: 0 2em;
  overflow: hidden;
}

#BodyContent {
  padding: 1.2em 0;
}

#BodyContent.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#BodyContent.flex .dropzone {
  max-width: 50%;
}

#BodyContent.flex button span {
  display: none;
}

#BodyContent.flex button i {
  transform: rotate(-90deg);
}

.dropzone {
  display: none;
  margin: 12px auto;
}

.dropzone.active {
  display: flex;
}

.dropzone .img-container {
  position: relative;
}

.dropzone .img-container.hover {
  background: rgba(0, 0, 0, 0.5);
}
.dropzone .img-container button {
  display: none;
  font-size: 14px;
  transition: 0.2s all;
  color: #fff;
  background: #509fcf;
  border: 0;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 8px 12px;
  position: absolute;
  z-index: 99;
  width: 100%;
}

.dropzone .img-container.hover button {
  display: block;
}
.dropzone .img-container.hover button.move-up {
  top: 0;
}
.dropzone .img-container.hover button.move-down {
  bottom: 0;
}
.output-icon {
  width: 4em;
  height: 4em;
  flex-shrink: 0;
}

.item-list {
  margin: 0;
  padding-left: 32px;
  padding-right: 8px;
}

.dropzone-item {
  position: relative;
  transition: 0.2s all;
  margin: 0.2em 0;
}

.dropzone-item.hover {
  background: rgba(0, 0, 0, 0.2);
}

.dropzone-item.delete-hover {
  background: rgba(187, 86, 86, 0.472);
}

.dropzone-item p {
  margin: 0;
  font-size: 1em;
}

.dropzone-item .hover-text {
  display: none;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px;
  border-radius: 2px;
  z-index: 99;
  font-size: 12px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.dropzone-item button {
  transition: 0.2s all;
  display: none;
  color: #f06457;
  background: #fff;
  border: #f06457 1px solid;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  font-size: 16px;
}

.dropzone-item.hover button {
  display: block;
}

.dropzone-item.hover .hover-text {
  display: block;
}

#OutputContainer hr.thick-hr {
  height: 4px;
  background: #999;
  border: 0;
}

/* Footer */

#Subfooter {
  display: flex;
  align-items: center;
  height: 100px;
  justify-content: space-around;
  padding: 0 2em 2em;
}

#Subfooter #Logo {
  height: 100px;
  margin-left: 24px;
  float: right;
  margin-right: 12px;
}

#Subfooter p {
  font-size: 16px;
  font-weight: bold;
}

/* Print only */

@media print {
  @page {
    size: 8in 11in;
    margin: 0 0.25cm;
  }
  @page: footer {
    color: #fff;
    height: 0;
  }
  @page: header {
    color: #fff;
    height: 0;
  }
  #FormContainer {
    display: none;
  }
  body {
    margin: 0 0 0 0;
  }
  #OutputContainer {
    width: 100%;
    max-width: 95%;
    padding: 1em;
    box-shadow: none;
    padding: 0 0 0 0;
    color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    width: 8.5in;
    height: 11in;
  }
  .dropzone-item button {
    display: none;
  }
  html,
  body,
  main,
  header,
  footer,
  .container {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    position: relative !important;
    text-indent: 0 !important;
    clear: both !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    overflow: visible;
    margin: 0 auto 0.5% auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 0 !important;
    text-align: left !important;
    max-width: none !important;
    min-width: auto !important;
    min-height: auto !important;
    max-height: auto !important;
    direction: ltr !important;
  }
}

/*# sourceMappingURL=bundle.css.map */
