#cookiePopup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 320px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
    font-family: "Montserrat", sans-serif;
    border-bottom: 5px solid #07122b;
    text-align: center;
border-top: 5px solid #07122b;
}
#cookiePopup p {
  font-size: 14px;
  margin-bottom: 10px;
}
#cookiePopup button {
    margin: 2px 5px;
    padding: 8px 24px;
    border: none;
    line-height: normal;
    cursor: pointer;
    font-size: 14px;
    border-radius: 64px;
}
#acceptCookies {
    background: #07122b;
    color: #fff;
}
#declineCookies {
    background: #f2f2f2;
    color: #000;
}
#cookiePopup  #closePopup {
    position: absolute;
    top: -10px;
    right: -10px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
    background: #07122b;
    padding: 5px;
    width: 25px;
    height: 25px;
    line-height: normal;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}