.weebox-popin{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000000;
    display: none;
}
.weebox-popin .weebox-popin-wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    padding: 5vw;
}
.weebox-popin .weebox-popin-container{
    position: relative;
    background: rgba(255,255,255,1);
    max-width: 1000px;
    width: 100%;
    opacity: 0;
    transform: translateY(50%);
    transition: all 500ms ease-in-out;
}
.weebox-popin .close{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    background: rgba(0,0,0,0.05);
    font-size: 30px;
    cursor: pointer;
    transition: all 180ms ease-in-out;
    border-radius: 0;
}
.weebox-popin .close:hover{
    background: rgba(0,0,0,0.1);
}
.weebox-popin.show .weebox-popin-container{
    opacity: 1;
    transform: translateY(0%);
}
.weebox-popin.hide .weebox-popin-container{
    transform: translateY(-50%);
}