.pbl-popup-fadeout{
    position: fixed;
    top:10vh;
    left:50%;

    background-color: white;
    padding: 1em;
    border-radius: 8px;
    border: 1px solid black;

    transform: translate(-50%,0%);

    animation-duration: 0.25s;
    animation-name: fadein;

}

.pbl-popup-fadeout.removing{
    top:-10vh;
    opacity: 0;
}
@keyframes fadein {
    from {
        transform: translate(-50%,0%) scale(0);
    }
  
    to {
        transform: translate(-50%,0%) scale(1);
    }
  }