
/* Office Overlay */
.excel-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 27px;
  background-color: rgba(249, 249, 249, 1);
  z-index: 1;
}

.document-preview-container ~ .excel-overlay {
  bottom: 6px;
  right: -2px;
  width: 102%;
}

.word-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 27px;
  background-color: rgba(249, 249, 249, 1);
  z-index: 1;
}

.powerpoint-overlay:before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 40%;
  height: 22px;
  background-color: rgba(68, 68, 68, 1);
  z-index: 1;
}

.powerpoint-overlay:after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 40%;
  height: 22px;
  background-color: rgba(68, 68, 68, 1);
  z-index: 1;
}

.document-preview-container ~ .powerpoint-overlay:before,
.document-preview-container ~ .powerpoint-overlay:after {
  bottom: 7px;
}
