.button_accept {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family: "Open Sans", Georgia, sans-serif;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.button_accept:hover {
	background:linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
	background-color:#f6f6f6;
}
.button_accept:active {
	position:relative;
	top:1px;
}

#container-privacy-policy {
    margin-left: -380px;
    padding: 5px 10px;
    width: calc(100% - 20px);
    max-width: 750px;
    display: none;
	background: rgba(46,50,52,.75);
	box-shadow: 0 3px 4px 0 rgba(46,50,52,.1);
    border-radius: 5px;
    position: fixed;
    left: 50%;
    bottom: 10px;
    z-index: 999;
    font-weight: normal;
    font-family: "Open Sans", Georgia, sans-serif;
}
.content-privacy-policy {
    display: flex;
    align-items: center;
}
.content-privacy-policy span.alert_close a {
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: #fff;
    border: 3px rgba(46,50,52,.75) solid;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -14px;
    right: -14px;
    padding: 4px;
}

.content-privacy-policy div:nth-child(1n) {
    color: #fff;
    padding-left: 10px;
}
.content-privacy-policy div:nth-child(3n) {
    margin-left: 20px;
}
@media only screen and (max-width: 768px) {
    #container-privacy-policy {
        width: 100%;
        margin-left: 0;
        padding: 15px 10px 10px 10px;
        left: 0;
        bottom: 0;
        border-radius: 0px;
    }
    .content-privacy-policy {
        display: block;
    }
    .content-privacy-policy span.alert_close a {
        right: 8px;
    }
    .content-privacy-policy div:nth-child(3n) {
        margin-left: 0;
    }
}
