.cookie-notice {
    display: none;
    position: fixed;
    bottom: 85px;
    right: 0;
    left: 0;
    padding: 0.7rem 0;
    background-color: #363636;
    color: white;
    z-index: 1000;
}
.cookie-notice .cookie-notice-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.cookie-notice p {
    flex-grow: 1;
    margin: 0;
    font-size: 15px;
}
.cookie-notice a {
    flex-grow: 1;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: white;
    text-decoration: underline;
}
.cookie-notice .cookie-notice-dismiss {
    display: inline-flex;
    padding: 10px;
    flex-shrink: 0;
    cursor: pointer;
}
.cookie-notice .cookie-notice-dismiss svg {
    display: block;
    width: 20px;
    height: 20px;
}
.cookie-notice .cookie-notice-dismiss path {
    stroke-width: 3px;
    stroke: white;
}
.cookie-notice .cookie-notice-dismiss:hover path {
    stroke: rgba(255, 255, 255, 0.75);
}
