.cookies {
    width: 100%;
    position: fixed;
    z-index: 12;
    bottom: 0;
    text-align: center;
    justify-content: center;
    background-color: rgb(124, 124, 124, 0.8);
    color: #fff;
    display: none;
}

.cookies-text {
    display: inline-block;
    font-weight: bold;
}

.cookies-btn {
    display: inline-block;
    background-color: #c6261a;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cookies-btn:hover {
    background-color: #f12f21;
    transition: 0.3s;
}

.hide-anim {
    transition: 0.5s;
    transform: translateY(100%);
}

.hide-anim::after {
    display: none;
}

@media screen and (max-width: 767px) {
    .cookies {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .cookies {
        font-size: 12px;
    }
}