.cookie-warning {
	transition: transform .4s ease, opacity .4s ease;
    transform: translateY(0);
    opacity: 1;
    max-width: 460px;
    padding: 2%;
    margin-right: auto;
    position: fixed;
    bottom: 16px;
	right: 16px;
    left: 16px;
    background: #fff;
    box-shadow: 0 4px 40px rgba(0, 0, 0, .15);
    font-size: 13px;
    line-height: 150%;
    z-index: 9;
    color: black;
    display: none; /* По умолчанию скрыто */
    animation-delay: 0s;
}

.cookie-warning:hover {
	animation-play-state: paused;
}


.cookie-warning p {
    margin-bottom: 10px;
}
.cookie-warning a {
	border-bottom:1px solid #00000030!important;
	transition: .25s; 
}
.cookie-warning a:hover {
	border-bottom:1px solid #00000090;
	transition: .25s;
}
.cookie-warning button {
    margin-top: 10px;
    width: 100%;
    padding: 24px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    background-color: #1f2020;
    border: 1px solid #1f2020;
    transition: .25s 
ease;
	cursor:pointer;
}

.cookie-warning button:hover {
    background-color: #fff;
    color: #1f2020;
	transition: .25s 
}
button#reject-cookie {
	background-color: #fff;
    color: #1f2020;
	border: 1px solid #1f202070;
	transition: .25s;
	width: 50%;
}
button#reject-cookie:hover {
	color: #1f2020;
	border: 1px solid #1f2020;
	transition: .25s 
}
.cookie-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

@media(max-width:700px){
.cookie-warning {
	transition: transform .4s ease, opacity .4s ease;
    opacity: 1;
    max-width: 400px;
    padding: 14px;
    margin-right: auto;
    position: fixed;
	font-size:12px;
}
.cookie-warning button {
	margin-top: 0px;
	padding:14px;
	}
}
