.b-cookies {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    padding: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 940px;
    background-color: #1f262e;
    border-radius: 5px;
    z-index: 120;
    transition: opacity;
}

@media (min-width: 768px) {
    .b-cookies {
        flex-direction: row;
    }
}

.b-cookies.inactive {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
}

.b-cookies__text {
    font-size: 12px;
    color: #fff;
}

@media (min-width: 540px) {
    .b-cookies__text {
        font-size: 14px;
    }
}

.b-cookies__text a {
    text-decoration: underline;
    color: #fff;
    transition: text-decoration-color 0.4s ease, opacity 0.4s ease
}

.b-cookies__text a:hover {
    text-decoration-color: transparent;
    color: #fff;
    opacity: 0.7;
}

.b-cookies__button {
    cursor: pointer;
    border: none;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

