.component-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #2C272D;
  opacity: 0.6;
  cursor: pointer;
  z-index: 10001;
  transition: opacity 0.2s linear 0s;
}
.component-overlay.hidden {
  display: none;
}
