#cookie_notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    right:0;
    width: 45%;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.670);
    z-index: 21470000010000000;
    color: white;
    font-size: smaller;
    border-radius: 2rem 0 0 2rem;
}

#cookie_notification a {
    color: #efefef;
}
#cookie_notification button {
    margin-left: 2rem;
}

@media (max-width: 575px) {
    #cookie_notification {
        display: block;   
    }
    
    #cookie_notification button {
    	margin-left: 0;
	}
}

@media (max-width: 1280px) {
#cookie_notification {
width: 75%;
left:0;
border-radius: 0 2rem 2rem 0;
}
}

@media (max-width: 860px) {
#cookie_notification {
width: 100%;
left:0;
border-radius: 0;
}
}