#cookiePopup {
    background-color: #ffffff;
    position: absolute;
    font-size: 14px;
    width: 650px;
    height: 240px;
    /*box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);*/
    /*font-family: "Poppins", sans-serif;*/
    text-align: center;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    border: 1px solid #000000;

    box-sizing: border-box;
    /*transition: all 0.5s ease-in;*/

    /*show in center*/
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    /*top: 0;*/
    /*bottom: 0;*/
    /*margin-top: auto;*/
    /*margin-bottom: auto;*/
}
#cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
}
#cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
}
#cookiePopup button {
    background-color: #5c82a6;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 10px;
    display: inline-block;
    position: relative;
    margin: 8px 10px auto;
    border-radius: 5px;
}
#cookiePopup a {
    color: #6859fe;
}
.hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
}
.show {
    visibility: visible;
    bottom: 2em;
    right: 2em;
}