.cookie {
    position: fixed;
    left: 48px;
    bottom: 48px;
    z-index: 50;
    background: rgb(27 27 35 / 50%);
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    padding: 16px;
    color: white;
    backdrop-filter: blur(3px);
}


.cookie-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cookie-button {
    padding: 10px 15px;
    border: 1px solid #ff9b54;
    border-radius: 10px;
    transition: background 0.3s ease 0s;
}

.cookie-button:hover {
    background: #ff9b54;
}

.cookie-content__description {
    line-height: 128%;
}

.cookie-content__description a {
    text-decoration: underline;
    -webkit-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
}

.cookie-content__buttons .button {
    color: #ff9b54;
    background: transparent;
    border: none;
    text-transform: uppercase;
    -webkit-transition: color .3s ease 0s, background .3s ease 0s;
    transition: color .3s ease 0s, background .3s ease 0s;
    font-size: 1.25rem;
}

@media (max-width: 48.06125em) {
    .cookie {
        left: 1rem;
        bottom: 1.75rem;
        width: calc(100% - 32px);
    }

    .cookie-content__description {
        font-size: 0.875rem;
        line-height: 130%;
    }

    .cookie-content__buttons .button {
        font-size: 1rem;
    }
}

@media (any-hover: hover) {
    .glass.cookie:hover {
        background: rgba(27, 27, 35, .4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

@media (any-hover: hover) {
    .cookie-content__description a:hover {
        color: #ffab70;
    }

    .cookie-content__buttons .button:hover {
        background: #ffab70;
        color: #fff;
    }
}