.popup {
  z-index: 999999999;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  overflow-y: auto;
}

.popup * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.popup .content {
  display: table;
  padding: 30px;
  width: 100%;
  height: 100%;
}

.popup .content .middle {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.popup .content .middle .box {
  background: #fff;
  border: 10px solid #576da3;
  max-width: 660px;
  display: inline-block;
  font-size: 16px;
  color: #666;
  padding-bottom: 20px;
  position: relative;
  z-index: 999;
  position: relative;
  font-family: 'din_lightregular';
  line-height: 1.4;
  text-align: justify;
}

.popup .content .middle .box img {
  display: inline-block;
  max-width: 100%;
}

.popup .content .middle .box .close {
  position: absolute;
  top: -54px;
  right: -15px;
  color: #fff;
  font-size: 25px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.popup .content .middle .box .close:hover {
  color: #576da3;
}

.popup .content .middle .box p {
  padding: 0 25px;
  margin-bottom: 15px;
}

.popup .overflow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
/*# sourceMappingURL=popup.css.map */