/* AttachmentsDropZone */
.attachments-drop-zone__dragover-border {
  background: rgba(255, 255, 255, 0);
  border: 3px dashed #f79232;
  border-radius: 5px;
  bottom: 0;
  left: 0;
  margin: 2px;
  position: absolute;
  right: 0;
  top: 0;
  transition: z-index 0s step-end 0.2s, background 0s step-end 0.2s, visibility 0s step-end 0.2s;
  visibility: hidden;
  z-index: -1;
}
.attachments-drop-zone__dragover .attachments-drop-zone__dragover-border {
  transition: z-index 0s, background 0s, visibility 0s;
  visibility: visible;
  z-index: 2500;
}
.attachments-drop-zone__dragover-fade .attachments-drop-zone__dragover-border {
  background: rgba(255, 255, 255, 0.3);
}
div.attachments-drop-zone__dragover-info {
  background: white;
  border: 3px solid #f79232;
  border-radius: 5px;
  left: 40%;
  padding: 10px 20px 10px 20px;
  position: absolute;
  right: 40%;
  text-align: center;
  top: 10px;
  transition: z-index 0s step-end 0.2s, visibility 0s step-end 0.2s;
  visibility: hidden;
  width: 20%;
  z-index: -1;
}
.attachments-drop-zone__dragover .attachments-drop-zone__dragover-info {
  transition: z-index 0s, visibility 0s, top 0.1s ease;
  visibility: visible;
  z-index: 2500;
}
div.attachments-drop-zone__window-dragover-mask {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: z-index 0s step-end 0.2s;
  z-index: -1;
}
.attachments-drop-zone__window-dragover .attachments-drop-zone__window-dragover-mask {
  transition: z-index 0s;
  z-index: 2499;
}
