#popup {
    opacity: 0;
    transition: opacity .5s ease-in-out;
}

#popup.show {
    opacity: 1;
    z-index: 99;
}
#bannerbox {
    display: flex;
    justify-content: flex-start;
    top: 60%;
    position: fixed;
    width: 20%;
    background-color: rgba(222, 224, 224, 0.9);
    border: 5px solid #134979;
    margin-left: 2px;
    padding: 10px 10px;
    pointer-events: all;
}

#acceptbtn {
    position: absolute;
    cursor: pointer;
    position: absolute;
    top: 5%;
    right: 2%;
    padding: 0.1px 0.1px;
    transform: translate(0%, -50%);
}

#acceptbtn:hover {
    background: #bbb;
}