#gdpr-warning {
	display: none;
	padding: 10px;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	color: #444;
	box-sizing: border-box;
	box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

#gdpr-warning > span {
	line-height: 20px;
	font-size: 14px;
	display: block;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 400;
}

@media(min-width: 1000px){
    #gdpr-warning {
        padding: 10px 10%

    }
    #gdpr-warning >span{
        line-height: 20px;
        font-size: 14px;
    }
}
@media(min-width: 1400px){
    #gdpr-warning {
        padding: 10px 31%
    }
}

#gdpr-warning span a {
	color: #18a3fa;
	text-decoration: underline;
}

#gdpr-close {
	width: 150px;
	background-color: #18a3fa;
	text-align: center;
	position: relative;
	-webkit-box-shadow: 0 3px 0 0 #1387cf;
	box-shadow: 0 3px 0 0 #1387cf;
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	line-height: 19px;
	padding: 5px 5px;
	font-weight: 300;
}