
.cookie_modal {
    box-sizing: border-box;
    position: fixed;
    text-align: center;
    left: 0;
    bottom: 0;
    padding: 40px;
    z-index: 9999;
}

.cookie_modal_content {
    padding: 30px;
    background: var(--color-white);
    width: 360px;
    box-shadow: 0 0 5px 0px rgb(0 0 0 / 50%);
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875em;
}

.cookie_modal_content p {
    margin-bottom: 20px;
}

.cookie_modal_content a {
    text-decoration: none;
    font-weight: bold;
    color: var(--color-black);
}

.cookie_modal_content a:hover {
    text-decoration: underline;
}

.cookie_modal_content_close {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    background: var(--color-blue);
    color: var(--color-white) !important;
    border:none;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
}

.cookie_modal_content_close:hover {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    background: var(--hover-color-blue);
    color: var(--color-white) !important;
    border:none;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    text-decoration: none !important;
}