#cookie_note{
	display: none;
	flex-direction: column;
	gap: 16px;
	position: fixed;
	bottom: 15px;
	left: 50%;
	width: 818px;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 24px;
	box-sizing: border-box;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
	z-index: 999;
}
#cookie_note p {
	font: 400 15px/160% 'Open Sans', Ubuntu;
	text-align: left;
	color: black;
}
#cookie_note button {
	height: 39px;
	box-sizing: border-box;
	font: 500 15px/37px 'Open Sans', Ubuntu;
	border-radius: 4px;
	cursor: pointer;
}
.cookie_accept {
	width: 118px;
	color: #fff;
	background: #2b436f;
	border: none;
}
.cookie_no {
	width: 133px;
	margin-left: 8px;
	color: #2b436f;
	background: #fff;
	border: solid 1px #2b436f;
}

@media (max-width: 1200px){
    #cookie_note.show{
        width: 90%;
    }
}
@media (min-width: 480px){
    #cookie_note.show{
        display: flex;
    }
}
