.welcome_box {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #87B50D;
  border-radius: .25rem;
  background: rgba(240,243,225,0.95);
}

.imprint_box {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: .25rem;
  background: rgba(241,242,247);
  font-size: 0.7rem;
}

.card-header {
	background: rgb(241,242,247);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.dropzone {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  inline-size: 100%;
}

.dropzone-area {
    padding: 30px;
	min-height: 15rem;
}

.dropzone:not(.dz-clickable) {
  cursor: not-allowed;
  opacity: 0.5;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dz-message {
  font-size: 1.625rem;
  margin-top: 4.5rem;
}

.dz-message .note {
  font-size: 0.9375rem;
}

.dz-browser-not-supported.dropzone-box {
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: default !important;
  inline-size: auto !important;
  min-block-size: auto !important;
  transition: none;
}

.dz-browser-not-supported .dz-message {
  display: none !important;
}

.dz-started .dz-message {
  display: none;
}

.dz-message {
  font-weight: 500;
  margin-inline: 0;
  text-align: center;
}

.dz-message .note {
  display: block;
  font-weight: 400;
  margin-block-start: 0.625rem;
}

.dz-preview {
  position: relative;
  box-sizing: content-box;
  background: #fff;
  cursor: default;
  font-size: 0.8125rem;
  margin-block: 1.15rem 0;
  margin-inline: 1.5rem 0;
  vertical-align: top;
}

.dz-filename {
  position: absolute;
  overflow: hidden;
  background: #fff;
  inline-size: 100%;
  padding-block: 0.625rem 0;
  padding-inline: 0.625rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dz-filename:hover {
  text-overflow: inherit;
  white-space: normal;
}

.dz-size {
  font-size: 0.6875rem;
  font-style: italic;
  padding-block: 1.875rem 0.625rem;
  padding-inline: 0.625rem;
}

.dz-preview .progress,
.dz-preview .progess-bar {
  block-size: 0.5rem;
}

.dz-preview .progress {
  /* position: absolute; */
  z-index: 30;
  inset-block-start: 50%;
  inset-inline: 1.25rem;
  margin-block-start: -0.25rem;
  border-radius: 0;
}

.dz-complete .progress {
  display: none;
}

.dz-thumbnail {
  position: relative;
  box-sizing: content-box;
  padding: 0.625rem;
  block-size: 7.5rem;
  text-align: center;
}

.dz-thumbnail > img,
.dz-thumbnail .dz-nopreview {
  position: relative;
  display: block;
  inset-block-start: 50%;
  margin-block: 0;
  margin-inline: auto;
  transform: translateY(-50%) scale(1);
}

.dz-thumbnail > img {
  max-block-size: 100%;
  max-inline-size: 100%;
}

.dz-nopreview {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.dz-thumbnail img[src] ~ .dz-nopreview {
  display: none;
}

.dz-remove {
  display: block;
  font-size: 0.75rem;
  padding-block: 0.375rem;
  padding-inline: 0;
  text-align: center;
}

.dz-remove:hover,
.dz-remove:focus {
  border-block-start-color: transparent;
  text-decoration: none;
}

.dz-error-mark,
.dz-success-mark {
  position: absolute;
  display: none;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 1.875rem 1.875rem;
  block-size: 3.75rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 6%);
  inline-size: 3.75rem;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  margin-block-start: -1.875rem;
  margin-inline-start: -1.875rem;
}

.dz-success-mark {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%235cb85c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E");
}

.dz-error-mark {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9534f' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
}

.dz-error-message {
  position: absolute;
  z-index: 40;
  display: none;
  overflow: auto;
  padding: 0.75rem;
  color: #fff;
  font-weight: 600;
  inset: -1px;
  text-align: start;
}

[dir="rtl"] .dz-error-message {
  text-align: end;
}

.dz-error .dz-error-message {
  display: none;
}

.dz-error .dz-error-mark {
  display: block;
}

.dz-error:hover .dz-error-message {
  display: block;
}

.dz-error:hover .dz-error-mark {
  display: none;
}

.dz-success .dz-success-mark {
  display: block;
}

[dir="rtl"] .dz-hidden-input {
  inset-inline: auto 0 !important;
}

.light-style .dropzone {
  border: 2px dashed #dbdade;
}

.light-style .dz-preview {
  border: 0 solid #dbdade;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 10%);
}

.light-style .dz-message {
  color: #5d596c;
}

.light-style .dz-message::before {
  background: rgba(75, 70, 92, 8%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-upload' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='%235d596c' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2' /%3E%3Cpolyline points='7 9 12 4 17 9' /%3E%3Cline x1='12' y1='4' x2='12' y2='16' /%3E%3C/svg%3E") !important;
}

.light-style .dz-message .note {
  color: #6f6b7d;
}

.light-style .dz-thumbnail {
  background: rgba(75, 70, 92, 1.5%);
  border-block-end: 1px solid #dbdade;
  border-start-end-radius: calc(0.375rem - 1px);
  border-start-start-radius: calc(0.375rem - 1px);
}

.light-style .dz-size {
  color: #a5a3ae;
}

.light-style .dz-remove {
  border-block-start: 1px solid #dbdade;
  border-end-end-radius: calc(0.375rem - 1px);
  border-end-start-radius: calc(0.375rem - 1px);
  color: #6f6b7d;
}

.light-style .dz-remove:hover,
.light-style .dz-remove:focus {
  background: rgba(75, 70, 92, 5%);
  color: #6f6b7d;
}

.light-style .dz-nopreview {
  color: #a5a3ae;
}

.light-style .dz-error-mark,
.light-style .dz-success-mark {
  background-color: rgba(75, 75, 75, 50%);
}

.light-style .dz-error-message {
  background: rgba(234, 84, 85, 80%);
  border-start-end-radius: 0.375rem;
  border-start-start-radius: 0.375rem;
}

@media (min-width: 576px) {
  .light-style .dz-preview {
    display: inline-block;
    inline-size: 11.25rem;
  }

  .light-style .dz-thumbnail {
    inline-size: 10rem;
  }
}

.dark-style .dropzone {
  border: 2px dashed #434968;
}

.dark-style .dz-preview {
  border: 0 solid #434968;
  border-radius: 0.375rem;
  background: #2f3349;
  box-shadow: 0 0.25rem 1.25rem rgba(15, 20, 34, 40%);
}

.dark-style .dz-message {
  color: #cfd3ec;
}

.dark-style .dz-message::before {
  background: rgba(134, 146, 208, 8%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-upload' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='%23cfd3ec' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2' /%3E%3Cpolyline points='7 9 12 4 17 9' /%3E%3Cline x1='12' y1='4' x2='12' y2='16' /%3E%3C/svg%3E") !important;
}

.dark-style .dz-message .note {
  color: #b6bee3;
}

.dark-style .dz-filename {
  background: #2f3349;
  border-block-end: 0 solid #434968;
  padding-block: 0.25rem;
}

.dark-style .dz-size {
  color: #7983bb;
}

.dark-style .dz-thumbnail {
  background: rgba(255, 255, 255, 1.5%);
  border-block-end: 1px solid #434968;
  border-start-end-radius: calc(0.375rem - 1px);
  border-start-start-radius: calc(0.375rem - 1px);
}

.dark-style .dz-nopreview {
  color: #7983bb;
}

.dark-style .dz-remove {
  border-block-start: 1px solid #434968;
  border-end-end-radius: calc(0.375rem - 1px);
  border-end-start-radius: calc(0.375rem - 1px);
  color: #b6bee3;
}

.dark-style .dz-remove:hover,
.dark-style .dz-remove:focus {
  background: rgba(255, 255, 255, 80%);
  color: #b6bee3;
}

.dark-style .dz-error-mark,
.dark-style .dz-success-mark {
  background-color: rgba(215, 216, 222, 50%);
}

.dark-style .dz-error-message {
  background: rgba(234, 84, 85, 80%);
  border-start-end-radius: 0.375rem;
  border-start-start-radius: 0.375rem;
}

@media (min-width: 576px) {
  .dark-style .dz-preview {
    display: inline-block;
    inline-size: 11.25rem;
  }

  .dark-style .dz-thumbnail {
    inline-size: 10rem;
  }
}
