.modal__open {
  overflow: hidden;
}

.modal {
  height: 100%;
  width: 100%;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0,0,0,.75);
}

.modal--visible {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__content {
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  position: relative;
}

.modal__show {
  background-color: transparent;
  border: 1px solid transparent;
}

.modal__show:hover,
.modal__show:focus {
  background-color: transparent;
  transform: scale(1.04, 1.04);
}

.modal__close {
  color: #fff;
  background-color: #000;
  border: 1px solid transparent;
  position: absolute;
  right: -1rem;
  top: -1rem;
}

.modal__close:hover,
.modal__close:focus {
  color: #000;
  background-color: #fff;
}