.cookie {
    position: fixed;
    max-height: 100%;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999999;
    max-width: 410px;
    border-radius: 3px;
    box-shadow: 0 5px 20px 0 #0000001f;
    width: auto;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    animation: toggle_opacity 200ms;
    background: #ffffff;
    padding: 32px 35px 30px 35px;
    flex-direction: column;
    transition: opacity .4s ease;
    opacity: 1;
}
.cookie.hidden {
    opacity: 0;
    display: none;
}

.svg_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.cookie .cookie_header {
    font-size: 16px;
    margin: 0;
    margin-bottom: 20px;
}

.cookie .cookie_text  {
    font-size: 14px;
    margin-bottom: 24px;
}
.cookie .cookie_text a {
    color: #003399;
    border-bottom: 1px solid transparent;
}
.cookie .cookie_text a:hover {
    border-bottom: 1px solid #003399;
    text-decoration: none;
}

.cookie .accept_btn {
    padding: 14px 30px;
    background: #003399;
    color: #ffffff;
    font-size: 14px;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    text-align: center;
    border: unset;
}

.cookie .accept_btn:hover {
    background: #24282d;
    color: #ffffff;
    text-decoration: none;
}