
.cookie_modal {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
}

.cookie_modal_content {
    padding: 25px;
    background: #F1F1F2;
    width: 490px;
    box-shadow: 0 0 5px 0px rgb(0 0 0 / 50%);
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875em;
    text-align: left;
}

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

.cookie_modal_content a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

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

.cookie_modal_content_close {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    background: #93BF48;
    color: #FFF !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: #014D99;
    color: #FFF !important;
    border:none;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    text-decoration: none !important;
}
