.cookies {
    position: fixed;
    bottom: 2rem;
    left: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: 23rem;
    max-width: 92%;
    background: #202225;
    height: 80px;
    padding: 22px 22px 22px 20px;
    border-radius: 10px;
    box-shadow: 2px 1px 10px #000000;
    opacity: 0;
    visibility: hidden;
    filter: blur(100);
    z-index: 100;
    transition: all 300ms ease-in-out;
}

.cookies__content {
    display: flex;
    font-size: .8rem;
    line-height: 1.5;
}

.cookies__icon {
    height: 36px;
    width: 36px;
}

.cookies__description {
    padding: 0 .5rem;
}

.cookies__button {
    height: 30px;
    padding: 0 10px;
    line-height: 30px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .5px;
    text-align: center;
    cursor: pointer;
    outline: none;
    user-select: none;
    border: none;
    border-radius: 10px;
    background: #616B75;
    transition: background 250ms ease-in-out;
}