.notification {
    z-index: 100;
    position: fixed;
    max-width: 90%;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1019607843);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}
@media (min-width: 992px) {
    .notification {
        right: 2rem;
        bottom: 2rem;
        padding: 1.6rem;
    }
}

.notification__text {
    display: flex;
    flex-direction: column;
    color: #39393d;
    margin-right: 0.5rem;
    font-size: 1.2rem;
    line-height: 1rem;
}
@media (min-width: 992px) {
    .notification__text {
        margin-right: 2rem;
    }
}

.notification__text-cookie p {
    margin-bottom: 1rem;
}
