/* Glue exit popup */
.glue_popup {
    height: 320px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    background: var(--website-dark-blue);
    color: #212529;
}
.glue_content {
    padding: 40px;
}
.glue_content a {
    color: #fff;
}
.glue_close {
    cursor: pointer;
    position: relative;
    top: 50px;
    right: 50px;
    float: right;
    font-family: Arial;
    font-size: 17px;
    background-color: #ffffff00;
    border: 1px solid white;
    border-radius: 4px;
    color: #fff;
    padding: 5px 12px;
    text-decoration: none;
}
.glue_close:hover {
    color: #000;
    background-color: #ffffff;
}