.cookie-policy {
    position: fixed;
    z-index: 1100;
    bottom: 15px;
    right: 15px;
    left: 15px;
    transform: translateY(120%);
    transition: transform 400ms ease-in-out;
}

@media screen and (min-width: 768px) {
    .cookie-policy {
        max-width: 40%;
        left: auto;
    }
}

@media screen and (min-width: 1200px) {
    .cookie-policy {
        max-width: 30%;
        left: auto;
    }
}

.cookie-policy.notify {
    transform: translateY(0%);
}