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

.cookie-notification_hidden {
    display: none;
}

.cookie-notification_content {
    background-color: rgba(255, 255, 255, .85);
    order: 1px solid rgba(214, 22, 129, .5);
    width: fit-content;
    height: 50px;
    margin: 0 auto;
    padding: 0 20px;
    border-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-weight: 400;
    font-stretch: normal;
    font-style: normal;
    color: rgb(214, 22, 129);
    font-size: 12px;
}

.cookie-notification_info a {
    color: rgb(214, 22, 129);
    text-decoration: underline;
}

.cookie-notification_content button {
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    padding: 0 10px;
    height: 40px;
    border: 0;
    background: rgba(214, 22, 129, .8);
    border-radius: 3px;
    color: #fff;
    box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .12);
    transition: .3s;
}

.cookie-notification_content button:hover {
    text-decoration: none;
    transition: .2s;
    border: 1px solid rgba(214, 22, 129, .5);
    background: rgba(214, 22, 129, .5);
}