.wpwmodal {
}

.wpwmodal {
  display: flex;
}
.wpwmodal > .button {
  display: flex;
  padding: 0;
}

.wpwmodal > .button > p {
  margin: 0;
  padding: 7px 7px 7px 7px;
}

.wpwmodal > .button > p > .icon-style > svg {
  display: inline-block;
}

.modal {
  display: none;
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.wpwmodal > .modal > .overlay {
  display: block;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.wpwmodal > .modal > .content {
  display: flex;
  flex-direction: column;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  margin: 7%;
  background-color: yellow;
}

.wpwmodal > .modal > .content > .close {
    z-index: 3;
    padding:6px;
}
