.popup-window {
-webkit-transform: translate(0, 100%);
-moz-transform: translate(0, 100%);
-o-transform: translate(0, 100%);
-ms-transform: translate(0, 100%);
transform: translate(0, 100%);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
opacity: 0;
}
.popup-window:target {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
opacity: 1;
}
.popup-window .popup-inner {
position: absolute;
top: 100px;
left: 50%;
z-index: 20;
margin-left: -280px;
width: 500px;
padding:20px;
overflow-x: hidden;
text-align:center;
border-radius: 2px;
background: #fff;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.popup-window .popup-inner p {
padding: 0 20px;
}
.popup-window .popup-close {
display: block;
text-indent: -100px;
overflow: hidden;
}
.popup-window .popup-close:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
background-color: rgba(0,0,0,0.6);
}
.popup-window .popup-close:after {
content: '\00d7';
position: absolute;
top: 70px;
left: 50%;
z-index: 20;
margin-left: 220px;
background: #fff;
border-radius: 2px;
padding: 2px 15px;
font-size: 18px;
text-decoration: none;
text-indent: 0;
}
.popup-window {
-webkit-transition: opacity 0.4s;
-o-transition: opacity 0.4s;
transition: opacity 0.4s;
}