#cookie-popup {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: fit-content;
    width: 100%;
    background-color: #3d57a2;
    color: #fff;
    text-align: center;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 12;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#cookie-popup p {
    margin: 0;
    text-align: left;
}

#cookie-popup button {
    background-color: #fff;
    color: #3d57a2;
    border: none;
    padding: 10px 20px;
    font-size: large;
    cursor: pointer;
    border-radius: 12px;
}

#cookie-popup button:hover {
    background-color: #9EABD1;
}

#cookie-a{
    color: #9AB1DF;
}