.cookie-notification  {
    position: sticky;
    top: 0px;
    bottom: 0px;
    z-index: 510;
    box-sizing: border-box;
}

.cookie-notification_hidden {
    display: none;
}

.cookie-notification_content {
    background-color: rgba(255, 255, 255, .85);
    width: fit-content;
    height: 45px;
    margin: 0 auto;
    padding: 0 20px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cookie-notification_content[data-is-mobile="1"] {
    gap: 5px;
    justify-content: space-between;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cookie-notification_info {
    font-family: Gill Sans;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    color: #1b1918;
    font-size: 12px;
}

.cookie-notification_info a {
    color: #8c1915;
    text-decoration: underline;
}

.cookie-notification_content button {
    width: 110px;
    height: 30px;
    font-family: Baskerville;
    font-size: 12px;
    font-weight: 600;
    color: #d7c28f;
    border: 1px solid #d7c28f;
    background: #8c1915;
    border-radius: 14.5px;
    -webkit-transition: .2s;
    transition: .2s;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cookie-notification_content button:hover {
    text-decoration: none;
    transition: .2s;
    background: #1b1918;
}
