
.cookie{
    position: fixed;
    right: 40px;
    bottom: 50px;
    background: rgba(25,25,25,0.9);
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: #fff;
    border-radius: 20px;
    gap: 20px;
    max-width: 300px;
    z-index: 9999;
}
.cookie__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}
.cookie a {
    color:inherit;
    text-decoration:underline;
}
.cookie a:hover {
    color:#E79623;
}
@media (max-width: 960px) {
    .cookie{
        right: 10px
    }
}