.cookie_notification {
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 700px;
    max-width: 80%;
    transform: translateX(-50%);
    padding: 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    box-shadow: 2px 3px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

.cookie_notification p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: #000000;
}
.cookie_notification.left-m {
    margin-left: 35px;
}
.cookie_notification a {
    text-decoration: underline;
    color: #3d3d3d;
    transition: all 0.4s;
}
.cookie_notification a:hover {
    text-decoration: none;
    color: #757575;
}
.cookie_accept {
    background-color: rgb(39, 39, 39);
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    margin: 0 0 0 25px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1400px) {
    .cookie_accept {
        margin: 0 40px 0 auto;
    }
}

@media (max-width: 992px) {
    .cookie_notification {
        flex-direction: column;
        text-align: left;
        align-items: end;
    }
    .cookie_accept {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .cookie_notification {
        left: 50%;
        bottom: 10px;
        max-width: 98%;
    }
    .cookie_notification p {
        font-size: 13px;
    }
    .cookie_accept {
        margin: 0 50px 0 auto;
    }
    .cookie_notification.left-m {
        margin-left: 0;
    }
}
@media (max-width: 520px) {
    .cookie_notification p {
        font-size: 11px;
    }
    .cookie_notification {
        padding: 10px;
    }
    .cookie_accept {
        padding: 0 10px;
        font-size: 12px;
    }
    .cookie_accept {
        margin: 5px 60px 0 auto;
    }
}
