/*
.frame-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}

.empty-frame {
  height: 1px;
  background-color: transparent;
}

.shadow-frame {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.5);
  margin-left: -1px;
}

body.shaded-95 .shadow-frame {
  background-color: rgba(0, 0, 0, 0.95);
}

body.shaded-8 .shadow-frame {
  background-color: rgba(0, 0, 0, 0.8);
}
*/

.frame-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  justify-content: space-between;
}

.empty-frame {
  height: 1px;
  background-color: transparent;
}

.shadow-frame {
  background-color: rgba(0, 0, 0, 0.5);
}

body.shaded-95 .shadow-frame {
  background-color: rgba(0, 0, 0, 0.95);
}

body.shaded-8 .shadow-frame {
  background-color: rgba(0, 0, 0, 0.8);
}
