#purePopupWrap {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.1s;
}

#purePopupWrap.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

#purePopupWrap.open.pop {
  background-color: rgba(0, 0, 0, 0.6);
}
#purePopupWrap.prompt > div {
  background-color: #74d1fd;
}
#purePopupWrap > div {
  z-index: 99999;
  max-width: 470px;
  min-width: 300px;
  width: 100%;
  flex-basis: 90%;
  padding: 30px 30px 100px 30px;
  background-color: #fff;
  transition: all 0.3s;
  opacity: 0;
  position: relative;
  max-height: 90%;
  display: flex;
  flex-direction: column;
} /*
#purePopupWrap > div > div{
	padding-bottom:2.5rem;
}*/
#purePopupWrap.pop > div {
  opacity: 1;
}
#purePopupWrap button.close:after {
  content: "\e90f";
}
#purePopupWrap button.close {
  border: 0;
  background: transparent;
  right: 20px;
  top: 20px;
  padding: 0;
}
#purePopupWrap button.close:after {
  box-shadow: none;
  font-size: 2rem;
  background: transparent;
  width: 100%;
  height: 100%;
  line-height: normal;
}
#purePopupWrap .purePopupTitle {
  text-align: center;
}
#purePopupWrap .purePopupButton {
  width: 40%;
  justify-content: center;
}
#purePopupWrap.alert .purePopupButton {
  width: 55%;
}
#purePopupWrap .purePopupText {
  font-size: 1rem;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}
#purePopupWrap .purePopupText a {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  #purePopupWrap .purePopupText {
    font-size: 1.5rem;
  }
}
#purePopupWrap .avatar,
#purePopupWrap .game {
  height: 0;
  background: #74d1fd;
  position: relative;
  padding-top: 50%;

  margin: 0 -30px 40px -30px;
}
#purePopupWrap .game .price-fold {
  bottom: 0;
}
#purePopupWrap .avatar img,
#purePopupWrap .game > div {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 90%;
  border-radius: 50%;
  background: #fff;
}
#purePopupWrap .game > div {
  height: 90%;
  background-size: cover;
}
.purePopupButtons {
  position: absolute;
  top: calc(100% - 80px);
  width: 100%;
  left: 0;
  display: flex;
  display: -ms-flexbox;
  justify-content: space-around;
}
#purePopupWrap .purePopupTitle p:last-of-type,
#purePopupWrap .purePopupText p:last-of-type {
  margin-bottom: 0;
}
#purePopupWrap .purePopupTitle p:first-of-type,
#purePopupWrap .purePopupText p:first-of-type {
  margin-top: 0;
}
