.cookie_police.pending{
	opacity: 0;
	visibility: hidden;
}

.cookie_police.hid{
	transform: translateY(100%) translateX(-50%);
    bottom: -15px;
    transition: .4s ease-in-out;
}
.cookie_police{
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 920px;
    max-width: 85%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 999;
	transition: 1s ease-in-out;
}

.cookie_police .content{
	display: flex;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    justify-content: center;
	align-items: center;
    gap: 20px;
}

.cookie_police .content .btn__default{
	height: 40px;
    width: 100%;
    max-width: 200px;
    font-size: 13px;
    cursor: pointer;
    transition: .4s ease;
}

.cookie_police .content .btn__default:hover {
	background: #0169FF;
	color: #fff;
}

.cookie_police .content .txt a {
	color: #568DFC;
	text-decoration: none;
}

.cookie_police .content .txt a:hover {
	text-decoration: underline;
}

.cookie_police .content .txt{
	display: flex;
	align-items: center;
}

.cookie_police .content .txt p{
	margin:0;
	font-size: 14px;
	color: #1f2531;
}

@media (max-width:640px) {
	.cookie_police .content {
        flex-direction: column;
        align-items: center;
    }
	.cookie_police .content .btn {
        margin: 10px 0 0 0;
    }
}