.dropzone {
  cursor: pointer;
  border-radius: 0.3125rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #2C2C2C;
  filter: drop-shadow(0px 4px 15px rgba(50, 24, 194, 0.3));
  width: 100%;
  min-height: 100px;
  border-radius: 0;
}

.dropzone .dz-message {
  margin: 0px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.dropzone .dz-message button {
  background: none;
  border: none;
  color: #000;
  font-family: "Gilroy";
  font-size: 20px;
  padding: 0;
}

.dropzone .dz-image-preview {
  width: 100%;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 0.3125rem;
  padding: 27px 30px 30px 25px;
}

.dropzone .dz-image-preview .dz-preview {
  width: 100%;
}

.dropzone .dz-image-preview .dz-preview .dz-remove button {
  border: none;
  margin-left: auto;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  width: 14px;
  height: 14px;
  background-image: url('../images/icon-x-black.svg');
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  background-color: transparent;
}

.dropzone .dz-image-preview .dz-preview .dz-remove button svg {
  fill: #f3ae7b;
}

.dropzone .dz-image-preview .dz-preview .dz-remove button:hover svg {
  fill: #ff6c00;
}

.dropzone .dz-image-preview .dz-preview .dz-details {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0px;
}

.dropzone .dz-image-preview .dz-preview .dz-details .dz-img {
  width: 54px;
  height: 54px;
  margin-right: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dropzone .dz-image-preview .dz-preview .dz-details .dz-img img {
  min-width: 3.1rem;
  min-height: 3.1rem;
  width: auto;
  height: auto;
}

.dropzone .dz-image-preview .dz-preview .dz-details .media-body {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.dropzone .dz-image-preview .dz-preview .dz-details .media-body .dz-filename {
  margin-bottom: 0.25rem;
}

.dropzone .dz-image-preview .dz-preview .dz-details .media-body .dz-filename .dz-title {
  font-size: 20px;
  padding: 0px;
  background: none;
  border: none;
  color: #2C2C2C;
  font-family: "Gilroy";
}

.dropzone .dz-image-preview .dz-preview .dz-details .media-body .dz-size {
  font-size: 12px;
  color: #999;
  font-family: "Gilroy";
}

.dropzone .dz-image-preview .dz-preview .dz-details .media-body .dz-size strong {
  font-weight: 400;
}

.dropzone .dz-image-preview .dz-preview .dz-progress {
  position: relative;
  margin: 0px;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  background: #D7372C;
  border-radius: 0;
  height: 5px;
}

.dropzone .dz-image-preview .dz-preview .dz-progress div {
  height: 5px;
  width: 0%;
  background: #2C2C2C;
}

.dropzone .dz-image-preview .dz-preview .dz-resuls-status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dropzone .dz-image-preview .dz-preview .dz-resuls-status .dz-success-mark {
  color: #66E440;
  display: none;
}

.dropzone .dz-image-preview .dz-preview .dz-resuls-status .dz-error-mark {
  color: red;
  display: none;
}

.dropzone .dz-image-preview .dz-preview .dz-resuls-status .dz-error-message {
  position: relative;
  width: 100%;
  background: none;
  padding: 0px;
  font-size: 14px;
  color: #D7372C;
}

.dropzone .dz-image-preview.dz-error .dz-preview .dz-progress div {
  background: #D7372C;
}

.dropzone .dz-image-preview.dz-error .dz-preview .dz-resuls-status .dz-error-message {
  display: block;
}

.dropzone .dz-image-preview.dz-error .dz-preview .dz-resuls-status .dz-error-mark {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 22px;
  border: none;
  padding: 3px;
  color: #fff;
  background: #D7372C;
  font-weight: 700;
  font-size: 0;
  line-height: 0;
  background-image: url('../images/ico-x.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.dropzone .dz-image-preview.dz-success .dz-preview .dz-progress div {
  background: #66E440;
}

.dropzone .dz-image-preview.dz-success .dz-preview .dz-resuls-status .dz-success-mark {
  border-radius: 100%;
  width: 26px;
  height: 24px;
  font-size: 0;
  background-color: #66E440;
  background-image: url('../images/icon-white-check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-color: #66E440;
  display: block;
}

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