.dropzone {
  position: relative;
}
.dropzone .dz-message {
  width: 100%;
  border: 1px solid #E9E9E9;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: border-color 250ms;
  color: var(--color-text);
}
.dropzone .dz-message__message {
  font-family: "Inter", Tahoma, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.714em;
}
.dropzone .dz-message__message .link {
  color: var(--color-secondary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 250ms;
}
.dropzone .dz-message__formats {
  opacity: 0.73;
  font-family: "Inter", Tahoma, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5em;
  letter-spacing: 0.042em;
  text-transform: none;
}
.dropzone .dz-message:focus,
.dropzone .dz-message:hover {
  border-color: var(--color-primary);
}
.dropzone .dz-message:focus .link,
.dropzone .dz-message:hover .link {
  color: var(--color-primary);
}
.dropzone .dz-message:disabled {
  border-color: var(--color-text-o-17);
  background-color: var(--color-text-o-17);
  box-shadow: none;
  cursor: not-allowed;
}
.dropzone .dz-message:disabled .link {
  color: var(--color-secondary);
}
.dropzone .dz-preview {
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Inter", Tahoma, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5em;
  letter-spacing: 0.042em;
  text-transform: none;
  margin-top: 0.75rem;
}
.dropzone .dz-preview > .icon {
  margin-right: 0.375rem;
}
.dropzone .dz-preview .dz-filename {
  display: flex;
  align-items: center;
}
.dropzone .dz-preview .data-dz-size {
  margin-left: 0.25rem;
}
.dropzone .dz-preview .dz-remove-button {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 0.75rem;
}
.dropzone .dz-preview .dz-remove-button .icon {
  width: calc(1.5rem - 0.25rem);
  height: calc(1.5rem - 0.25rem);
  fill: #E71A3F;
}
.dropzone .dz-preview .dz-error-message {
  color: #E71A3F;
  display: none;
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  display: none;
  margin-left: 0.375rem;
}
.dropzone .dz-preview .dz-success-mark {
  color: var(--color-price);
}
.dropzone .dz-preview .dz-error-mark {
  color: #E71A3F;
}
.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-error .dz-error-mark {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  display: block;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  display: none;
}
.dropzone .dz-progress {
  display: block;
  height: 0.25rem;
  margin-top: 0.25rem;
  border-radius: 0.25rem;
  background: var(--color-price-o-17);
}
.dropzone .dz-progress .dz-upload {
  border-radius: 0.25rem;
  display: block;
  height: 100%;
  width: 0;
  background: var(--color-price);
}
