#rgpd {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 9999;
    padding: 10px;
	display:none;
	box-sizing:border-box;
}

#rgpd p {
    color: #ffffff;
}

#rgpd a {
    text-decoration: none;
}

#rgpd button {
    padding: 10px 15px;
    color: #ffffff;
    font-weight: 600;
    border: none;
    margin-top: 5px;
    cursor: pointer;
}

#rgpd div {
    float: left;
}

#rgpd div.col9 {
    width: 75%;
}

#rgpd div.col3 {
    width: 25%;
    margin-left: 0;
	padding-left: 2%;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	#rgpd .flexed{
		display:-webkit-flex;
		display:flex;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	#rgpd div.col9{
		width:100%;
	}
	#rgpd div.col3{
		width:100%;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		padding-left:0;
	}
	#rgpd div.col3 a{
		margin-right:10px;
	}
}