.cookie-notification {
    --font: "Roboto", sans-serif;
    --main-bg: white;
    --cookies-width: 1216px;
    --btn-color: #760000;
    --btn-text-color: white;
    --title-color: #333;
    --text-color: #333;
    --link-color: #760000;
}


.cookie-notification {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    padding: 36px 0;
    z-index: 999;
    font-size: 16px;
    box-shadow: 4px 4px 32px 0px rgba(0, 0, 0, 0.12);
    background: var(--main-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-notification__body {
    display: flex;
    gap: 64px;
    align-items: center;
    width: var(--cookies-width);
}

.cookie-notification__body-text {
    color: black;
}

.cookie-notification__body-title {
    color: var(--title-color);
    font-family: var(--font);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;

    margin-bottom: 12px;
}

.cookie-notification__body-info {
    color: var(--text-color);
    font-family: var(--font);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;

    max-width: 952px;
    width: 100%;
}

.cookie-notification__body-info a {
    color: var(--link-color);
    text-decoration: unset;
    font-weight: 400;
}

.cookie-notification__button {
    background: var(--btn-color);
    color: var(--btn-text-color);
    font-family: var(--font);
    max-width: 200px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.32px;
    border: unset;

    &:hover {
        cursor: pointer;
    }

    border-radius: 10px;
}

.cookie-notification_hidden_yes {
    display: none;
}

@media(max-width:991px) {
    .cookie-notification {
        padding: 32px 0;
    }

    .cookie-notification__body {
        gap: 40px;
        padding: 0 40px;
        flex-direction: column;
        align-items: flex-start;

        width: unset;
    }

    .cookie-notification__body-title {
        font-size: 24px;
    }

    .cookie-notification__body-info {
        font-size: 16px;
    }

}

@media(max-width:600px) {
    .cookie-notification {
        padding: 24px 0;
    }

    .cookie-notification__body {
        gap: 32px;
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;

        width: unset;
    }

    .cookie-notification__body-title {
        font-size: 20px;

        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
    }

    .cookie-notification__body-info {
        font-size: 16px;

        font-style: normal;
        font-weight: 300;
        line-height: 24px;
    }
    .cookie-notification__button{
        max-width: unset;
    }

}