#cookie_note {
	display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #3E96A9;
	border-radius: 20px;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 20px;
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

#cookie_note p {
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

#cookie_note a {
    color: blue;
}

.cookie_accept {
  background-color: #20606d;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  margin-top: 10px;
  width: 15%;
  height: 50px;
  text-align: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px) {
    #cookie_note.show{
        display: block;
        text-align: left;
    }
	.cookie_accept { width: 100%; }
}