.windowjs{
    position: fixed;
    top: 0px;
    left: 0px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 1;
    animation-duration: 0.6s;
}
.windowjs .windowjs-close {
    text-align:center;
    margin: 20px 0;
    opacity: 1;
}
.windowjs .windowjs-close img {
    width: 50px;
    height: 50px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    cursor:pointer;
}
.windowjs .windowjs-close img:hover {
    transform:rotate(90deg);
}
.windowjs .windowjs-content {
    width: 100%;
    float: left;
}
