.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: 10px;
    justify-content: space-between;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.cookie-notification_info {
    font-family: Roboto;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    color: #453224;
    font-size: 12px;
}

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

.cookie-notification_content button {
    width: 100px;
    height: 30px;
    line-height: 25px;
    font-family: Roboto;
    font-size: 12px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: .38px;
    text-align: center;
    color: #fff;
    border: 1px solid #7a522e;
    background: #7a522e;
    border-radius: 2px;
    -webkit-transition: .2s;
    transition: .2s;
}

.cookie-notification_content button:hover {
    text-decoration: none;
    transition: .2s;
    border: 1px solid #453224;
    background: #453224;
}
