.dialog-pl {

  padding: 0;
  border: unset;
  box-shadow: 5px 4px 24px -4px #000;
  border-radius: 5px;
  overflow: hidden;
  max-width: 400px;
}

.dialog-pl .dialog-pl__content {
  text-align: center;
}
.dialog-pl.scrollable {
  height: 100vh;
  overflow: scroll;
}
.dialog-pl img {
  max-width: 100%;
}
.dialog-pl__header {
  font-weight: bold;
  font-size: 1.3em;
  margin: 10px 0;
}
.dialog-pl button#pl-cancel {
  position: absolute;
  top: 0;
  right: 0;
  color: #052ee9;
  border: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 35px;
  height: 35px;
  font-weight: bold;
  margin: 10px;
  border-radius: 5px;
}

.dialog-pl button#pl-cancel:active {
 border: unset;
}
.dialog-pl__button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 17px;
}
.dialog-pl__content {

  display: none;
}
@media (max-width: 500px) {
  .dialog-pl {
    max-width: 300px;
  }
}
.dialog-close.active{
  z-index: 100001;
  position: fixed;
  width: 100%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-pl .dialog-pl__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
.dialog-enabled.show {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000;
  top: 0;
  opacity: 0.7;
}
