.popup {
  margin: 20px;
  font-size: 15px;
  background: #fff;
  text-align: left;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
/* Добавлено для поддержки IE<9 */
}
.popup__overlay .popup__close {
  width: 46px;
  height: 47px;
  top: 0;
  right: 0;
  padding: 16px;
  position: absolute;
  background: #f9f9f7;
  color: #222;
  border-bottom: none;
}
.popup__overlay .popup__close:hover > .pic-icon-close {
  transition: 0.05 -webkit-transform linear;
  transition: 0.05 transform linear;
  transition: 0.05 transform linear, 0.05 -webkit-transform linear;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.popup__overlay .popup__close:hover,
.popup__overlay .popup__close:active,
.popup__overlay .popup__close:focus {
  color: #222;
  text-decoration: underline;
}
.popup__overlay .popup__content {
  width: 100%;
  height: 100%;
}
.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  font-size: 0;
  display: none;
  overflow: auto;
  overflow-y: scroll;
  text-align: center;
  background: rgba(0,0,0,0.7);
}
.popup__overlay:after {
  width: 0;
  height: 100%;
  content: '';
  display: inline-block;
  vertical-align: middle;
}
.popup__overlay_ie {
  background: #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.popup__overlay .popup__v-align_fix {
  width: 0;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}