#cookie_note{
    display: none;
    position: fixed;
    left: 50%;
	width: 800px;
    transform: translateX(-50%);
    padding: 10px;
    background-color: var(--colorBlock1);
	border: 2px solid var(--border1);
    border-radius: 15px;
	box-shadow: 0px 0px 14px #000000;
	z-index: 99;
	bottom: -100px;
    animation: ani 3s forwards;
	animation-delay: -1s;
}

@keyframes ani {
  70% {bottom: -100px;}
  100% {bottom: 15px;}
}

#cookie_note p{
    text-align: left;
	font-size: 18px;
    color: var(--text);
	margin-top: auto;
    margin-bottom: auto;
	margin-right: 10px;
}

.cookie_accept{
	font-family: "Affect", sans-serif;
	transition: background-color .2s;
	text-transform: uppercase;
	color: var(--text2);
    font-size: 20px;
    background-color: var(--text);
    padding: 4px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-left: auto;
	margin-top: auto;
    margin-bottom: auto;
	cursor: pointer;
}
.cookie_accept:hover{
	background-color: var(--hover);
	color: var(--text);
}
#cookie_note.show{
        display: flex;
}


@media screen and (max-width: 930px) {
  #cookie_note{
	width: 100%;
	border: 0;
	border-radius: 0;
	border-top: 1px solid hsla(0, 0%, 100%, .1);
	bottom: 0;
	padding-bottom: 15px;
}
@keyframes ani {
  70% {bottom: -100px;}
  100% {bottom: 0;}
}
#cookie_note p{
    margin-left: 10px;
}
.cookie_accept{
	margin-right: 10px;
}
}