.pop {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(15, 27, 45, 0.9);
  padding: 60px;
}
.pop>div {
  cursor: default;
  max-width: 100%;
}
.pop div {
  line-height: 1.5em;
}
.pop .closeicon {
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  background: transparent;
  z-index: 999;
  box-shadow: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}
.pop .closeicon:hover {
  -webkit-transform: translateX(2px) translateY(-2px);
  transform: translateX(2px) translateY(-2px);
}
.pop .closeicon:focus {
  outline: none;
}
.pop .closeicon::before, .pop .closeicon::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  outline: 1px solid transparent;
  left: -1px;
  background: #92986c;
}
.pop .closeicon::before {
  content: '';
  -webkit-transform: translateY(-1px) rotateZ(-45deg);
  transform: translateY(-1px) rotateZ(-45deg);
  background: #fff;
}
.pop .closeicon::after {
  content: '';
  -webkit-transform: translateY(-1px) rotateZ(45deg);
  transform: translateY(-1px) rotateZ(45deg);
  background: #fff;
}
.pop .close:hover {
  background-color: transparent;
}
.pop .close.label {
  width: auto;
  padding: 0 36px 0 0;
  background: no-repeat right center;
  background-size: 32px 32px;
  background-image: url(close.png);
}
.mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
  cursor: progress;
}
.pop .content-pop {
  border-radius: 10px 0 10px 10px;
  background-color: #f9fdff;
  max-height: 90vh;
  transition: all .3s;
}
.pop .content-pop-max {
  border-radius: 10px 0 10px 10px;
  background-color: #f9fdff;
  max-height: 90vh;
  overflow-y: auto;
}