.wmodal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0 0 0 / .9);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  z-index: 2000;
}

.wmodal--hidden {
  display: none;
}

.wmodal__frame {
  background: white;
  padding: 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.wmodal__content {
  box-shadow: 0 0 1px rgba(0 0 0 / 0.2);
}

.wmodal__close {
  font-size: 20px;
  margin: 0.5rem 0 0;
  cursor: pointer;
  background-color: #E7E7E7;
  border: 1px solid #909090;
  border-radius: 10px;
  padding: 0 4px;
  font-weight: bold;
  color: #848484;
  box-shadow: 2px 2px 4px #848484;
}

.wmodal__close:hover {
  background: #78206e;
  color: #ffffff;
}