#div_cookie_ind {
    background-color: rgba(0, 0, 0, 0.8);
	padding: 20px 100px 30px 5%;
	color: #fff;
	bottom: 0;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	max-width: 100%;
	z-index: 50000;
	font-size: 14px;
    display: none;
	position: fixed;
	left: 0;
    right: 0;
}
.cookieind_close {
	display: inline;
}

.cookieind_close:hover {
	cursor: pointer;
}

.cookieind_close:after {
    content: 'OK';
	width: 60px;
	height: 30px;
    position: absolute;
    float: right;
	font-size: 16px;
	right: 20px;
	bottom: 30px;
	line-height: 28px;
	text-align: center;
	background-color: rgb(241, 241, 241);
	color: #212121;
	border-style: none;
	border-radius: 3px;
}

@media screen and (max-width: 620px) {
	#div_cookie_ind {
		padding: 5px 15px 50px;
		font-size: 13px;
	}
	
	.cookieind_close:after {
		width: calc(100% - 30px);
		right: 15px;
		bottom: 10px;
		left: 15px;
	}
}