.mdel-popcontent {
  position: relative;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-transform-origin: center;
          transform-origin: center;
  margin: 0 20px 20px 0;
}

.mdel-popcontent .mdel-pop-front,
.mdel-popcontent .mdel-pop-back {
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mdel-popcontent .mdel-pop-front ul,
.mdel-popcontent .mdel-pop-back ul {
  margin: 20px 0;
}

.mdel-popcontent .mdel-pop-front ul li,
.mdel-popcontent .mdel-pop-back ul li {
  color: #fff;
}

.mdel-popcontent .mdel-pop-back {
  -webkit-transform: translate3d(20px, 20px, 0);
          transform: translate3d(20px, 20px, 0);
  opacity: 0.2;
  z-index: -1;
}

.mdel-popcontent:hover .mdel-pop-back {
  -webkit-transform: translate3d(0px, 0px, 0);
          transform: translate3d(0px, 0px, 0);
  opacity: 1;
  z-index: 2;
}
/*# sourceMappingURL=pop-content.css.map */