.overlay-container {
  height: 100%;
  width: 100%;
  position: absolute;
  justify-content: center;
  align-items: center;
  display: flex;
  opacity: 0;
  z-index: 1070;
  visibility: hidden;
  .overlay {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    width: 100%;
  }
  &.open {
    opacity: 1;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    visibility: visible;
  }
}